403Webshell
Server IP : 103.234.187.230  /  Your IP : 216.73.216.216
Web Server : Apache
System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/junkdata/backup12042024/20240416/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/junkdata/backup12042024/20240416/svezzair.sql
-- MySQL dump 10.13  Distrib 8.0.27, for Linux (x86_64)
--
-- Host: localhost    Database: svezzair
-- ------------------------------------------------------
-- Server version	8.0.27

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

--
-- Current Database: `svezzair`
--

CREATE DATABASE /*!32312 IF NOT EXISTS*/ `svezzair` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;

USE `svezzair`;

--
-- Table structure for table `admin_user`
--

DROP TABLE IF EXISTS `admin_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_user` (
  `user_id` mediumint unsigned NOT NULL AUTO_INCREMENT,
  `firstname` varchar(32) NOT NULL DEFAULT '',
  `lastname` varchar(32) NOT NULL DEFAULT '',
  `email` varchar(128) NOT NULL DEFAULT '',
  `username` varchar(40) NOT NULL DEFAULT '',
  `password` varchar(40) NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` datetime DEFAULT NULL,
  `logdate` datetime DEFAULT NULL,
  `is_active` tinyint(1) NOT NULL DEFAULT '1',
  `role` enum('admin','superadmin') NOT NULL,
  PRIMARY KEY (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_user`
--

LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'Travnet','','svezzair@svezz.com','admin','ebe0bfd266384707470a9160c0056b0a','2010-10-30 22:51:18','2010-10-30 22:51:18','2010-10-30 23:39:32',1,'admin'),(2,'baibhav','kumar','https://agent.svezzair.com/','admin123','ce78cd40b64fe3c07694a644341816c9','2021-07-28 00:00:00','2021-07-28 00:00:00','2021-07-28 00:00:00',1,'admin');
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_agency_cancellation_charges`
--

DROP TABLE IF EXISTS `tb_agency_cancellation_charges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_cancellation_charges` (
  `SupplierType` smallint NOT NULL DEFAULT '0',
  `ServiceType` smallint NOT NULL,
  `AgencySysId` bigint NOT NULL,
  `ItemSourceType` smallint NOT NULL,
  `MPType` smallint NOT NULL,
  `Currency` smallint NOT NULL,
  `MarkUpType` smallint NOT NULL,
  `MarkUp` decimal(18,2) NOT NULL,
  `CreateDate` datetime(3) NOT NULL,
  `UpdateDate` datetime(3) NOT NULL,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`AgencySysId`,`ServiceType`,`MPType`,`ItemSourceType`,`SupplierType`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_cancellation_charges`
--

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

--
-- Table structure for table `tb_agency_credit`
--

DROP TABLE IF EXISTS `tb_agency_credit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_credit` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `CreditSysId` int NOT NULL DEFAULT '0',
  `CreditAmount` decimal(18,2) NOT NULL,
  `CreditDays` int NOT NULL,
  `BalanceAmount` decimal(18,2) NOT NULL,
  `CreateDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_credit`
--

LOCK TABLES `tb_agency_credit` WRITE;
/*!40000 ALTER TABLE `tb_agency_credit` DISABLE KEYS */;
INSERT INTO `tb_agency_credit` VALUES (1,12728,7002,0.00,0,2922.00,'2022-07-18 17:51:14'),(2,13985,8207,100000.00,15,99064.50,'2022-08-29 14:19:58');
/*!40000 ALTER TABLE `tb_agency_credit` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_agency_credit_history`
--

DROP TABLE IF EXISTS `tb_agency_credit_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_credit_history` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `CreditSysId` int NOT NULL,
  `CurrencyType` int NOT NULL,
  `BalanceAmount` decimal(18,2) NOT NULL,
  `CreditDays` int NOT NULL,
  `CreditDate` date NOT NULL,
  `UserSysId` int NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `IsMarkForDel` int NOT NULL,
  `IsActive` int NOT NULL,
  `CreditAmount` decimal(18,2) NOT NULL,
  `historyUpdateDate` datetime NOT NULL,
  `Remark` varchar(200) NOT NULL,
  `TrxType` int NOT NULL,
  `Amount` decimal(18,2) NOT NULL,
  `historyCreditAmount` decimal(18,2) NOT NULL,
  `historyBalanceAmount` decimal(18,2) NOT NULL,
  `IsCredit` int NOT NULL,
  `HistoryCreditSysId` int NOT NULL,
  `RefrenceNo` varchar(150) NOT NULL,
  `PlanType` int NOT NULL,
  `PaymentMode` varchar(100) NOT NULL,
  `Agencyname` varchar(200) NOT NULL,
  `IsOneTime` varchar(100) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_credit_history`
--

LOCK TABLES `tb_agency_credit_history` WRITE;
/*!40000 ALTER TABLE `tb_agency_credit_history` DISABLE KEYS */;
INSERT INTO `tb_agency_credit_history` VALUES (1,12728,7002,1,10000.00,0,'2022-05-24',14124,'2022-05-24 12:14:00','2022-07-18 17:51:51',0,1,0.00,'2022-07-18 17:51:51','sda',1,10000.00,0.00,10000.00,2,17001,'dsd',7,'CASH','Komal Test','0'),(2,12728,7002,1,10000.00,0,'2022-05-24',14124,'2022-05-24 12:14:00','2022-07-18 17:51:51',0,1,0.00,'2022-05-24 12:14:00','Welcome',1,0.00,0.00,0.00,1,14463,'',7,'Start Account','Komal Test','0'),(3,12728,7002,1,2922.00,0,'2022-05-24',14124,'2022-05-24 12:14:00','2022-07-18 17:51:51',0,1,0.00,'2022-07-18 18:06:43','Flight Booking ',0,2994.50,0.00,2922.00,2,17004,'DMCS103800299101',1,'Wallet','Komal Test','1'),(4,12728,7002,1,2922.00,0,'2022-05-24',14124,'2022-05-24 12:14:00','2022-07-18 17:51:51',0,1,0.00,'2022-07-18 18:04:10','Flight Booking - today test',0,4083.50,0.00,5916.50,2,17003,'DMCS100900299099',1,'Wallet','Komal Test','1'),(5,13985,8207,1,99064.50,15,'2022-09-10',14026,'2022-08-26 20:09:00','2022-08-26 20:09:00',0,1,100000.00,'2022-08-29 14:14:57','Flight Booking ',0,935.50,100000.00,99064.50,2,18355,'DMCS108800327228',1,'Wallet','Trial company 1','0'),(6,13985,8207,1,99064.50,15,'2022-09-10',14026,'2022-08-26 20:09:00','2022-08-26 20:09:00',0,1,100000.00,'2022-08-26 20:09:00','Trial limit given',1,100000.00,100000.00,100000.00,1,18232,'1661524425',7,'Add Credit','Trial company 1','0'),(7,13985,8207,1,99064.50,15,'2022-09-10',14026,'2022-08-26 20:09:00','2022-08-26 20:09:00',0,1,100000.00,'2022-07-08 13:39:00','Welcome',1,0.00,0.00,0.00,1,16661,'',7,'Start Account','Trial company 1','0');
/*!40000 ALTER TABLE `tb_agency_credit_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_agency_userrole_mapping`
--

DROP TABLE IF EXISTS `tb_agency_userrole_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_userrole_mapping` (
  `MapSysId` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `AgentSysId` int NOT NULL,
  `IsPermission` enum('1','0') NOT NULL DEFAULT '0',
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDelete` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`MapSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_userrole_mapping`
--

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

--
-- Table structure for table `tb_agency_userrole_permission`
--

DROP TABLE IF EXISTS `tb_agency_userrole_permission`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_agency_userrole_permission` (
  `PermissionSysId` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `AgentSysId` int NOT NULL,
  `Parent_Id` int DEFAULT NULL,
  `Title` varchar(256) DEFAULT NULL,
  `val` varchar(256) DEFAULT NULL,
  `url` varchar(256) DEFAULT NULL,
  `UpdateDate` datetime DEFAULT NULL,
  `CreateDate` datetime DEFAULT NULL,
  `IsActive` enum('0','1') DEFAULT '1',
  `IsMarkForDelete` enum('0','1') DEFAULT '0',
  `IsOrder` int DEFAULT NULL,
  `IsDisplayLeftNev` enum('0','1') DEFAULT '0',
  `ModuleName` varchar(256) DEFAULT NULL,
  `ModuleType` int DEFAULT NULL,
  `ParentCode` varchar(256) DEFAULT NULL,
  `ControllerName` varchar(256) DEFAULT NULL,
  PRIMARY KEY (`PermissionSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_agency_userrole_permission`
--

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

--
-- Table structure for table `tb_b2b_homebanner_detail`
--

DROP TABLE IF EXISTS `tb_b2b_homebanner_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_b2b_homebanner_detail` (
  `banner_id` int NOT NULL AUTO_INCREMENT,
  `heading` varchar(256) NOT NULL,
  `image` varchar(256) NOT NULL,
  `description` text NOT NULL,
  `url` varchar(256) NOT NULL,
  `opt` int NOT NULL,
  `isDisplayOnHome` enum('0','1') NOT NULL DEFAULT '0',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`banner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_b2b_homebanner_detail`
--

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

--
-- Table structure for table `tb_deposit_payment`
--

DROP TABLE IF EXISTS `tb_deposit_payment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_deposit_payment` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `MasterAgencySysId` int NOT NULL,
  `PaymentMode` varchar(100) NOT NULL,
  `TransactionId` varchar(250) DEFAULT NULL,
  `Amount` float NOT NULL,
  `RefrenceNo` varchar(100) DEFAULT NULL,
  `CreditDate` date NOT NULL,
  `Remark` varchar(200) DEFAULT NULL,
  `PlanType` int NOT NULL,
  `CurrencyType` int NOT NULL,
  `UserSysId` int NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL,
  `IsMarkForDel` tinyint NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '0',
  `IsActive` tinyint NOT NULL DEFAULT '0',
  `error_Message` varchar(200) DEFAULT NULL,
  `error` varchar(200) DEFAULT NULL,
  `paymentStatus` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_deposit_payment`
--

LOCK TABLES `tb_deposit_payment` WRITE;
/*!40000 ALTER TABLE `tb_deposit_payment` DISABLE KEYS */;
INSERT INTO `tb_deposit_payment` VALUES (1,12606,12211,'ONLINE',NULL,1000,'122','2022-05-17','',7,1,13988,'2022-05-17 14:56:58','2022-05-17 14:56:58',0,0,0,NULL,NULL,NULL),(2,12691,12211,'ONLINE',NULL,10,'11000000226617','2022-05-22','',7,1,14087,'2022-05-22 08:53:25','2022-05-22 08:53:25',0,4,0,'INVALID SUBCHANNEL/SUBCHANNEL IS NOT ALLOWED.',NULL,'3'),(3,12728,12577,'ONLINE',NULL,3000,'dsd','2022-07-18','sda',7,1,14124,'2022-07-18 17:50:02','2022-07-18 17:50:02',0,0,0,NULL,NULL,NULL),(4,12728,12577,'CASH','1B3C1E2F1A0D4BC3B86136329B2BDF50',10000,'dsd','2022-07-18','sda',7,1,14124,'2022-07-18 17:50:36','2022-07-18 17:51:02',0,1,1,NULL,NULL,NULL),(5,13985,12577,'ONLINE',NULL,1000,'123','2022-08-29','bsadfasdf',7,1,15506,'2022-08-29 14:12:37','2022-08-29 14:12:37',0,0,0,NULL,NULL,NULL),(6,12728,12577,'ONLINE',NULL,100,'NA','2022-10-31','',7,1,14124,'2022-10-31 17:13:34','2022-10-31 17:13:34',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(7,12728,12577,'ONLINE',NULL,100,'NA','2022-10-31','',7,1,14124,'2022-10-31 17:14:09','2022-10-31 17:14:09',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(8,12728,12577,'ONLINE',NULL,100,'NA','2022-12-28','',7,1,14124,'2022-10-31 17:15:17','2022-10-31 17:15:17',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(9,12728,12577,'ONLINE',NULL,100,'NA','2022-10-31','',7,1,14124,'2022-10-31 17:18:55','2022-10-31 17:18:55',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(10,12728,12577,'ONLINE',NULL,500,'NA','2022-11-01','',7,1,14124,'2022-11-01 13:45:44','2022-11-01 13:45:44',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(11,12728,12577,'ONLINE',NULL,100,'NA','2022-11-01','',7,1,14124,'2022-11-01 13:46:42','2022-11-01 13:46:42',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(12,12728,12577,'ONLINE',NULL,100,'NA','2022-11-01','test',7,1,14124,'2022-11-01 13:50:02','2022-11-01 13:50:02',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(13,12728,12577,'ONLINE',NULL,100,'NA','2022-11-01','',7,1,14124,'2022-11-01 13:53:37','2022-11-01 13:53:37',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(14,12728,12577,'ONLINE',NULL,100,'NA','2022-11-01','',7,1,14124,'2022-11-01 15:38:03','2022-11-01 15:38:03',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(15,12728,12577,'ONLINE',NULL,100,'NA','2022-11-01','',7,1,14124,'2022-11-01 15:48:02','2022-11-01 15:48:02',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(16,12728,12577,'ONLINE',NULL,100,'NA','2022-11-01','',7,1,14124,'2022-11-01 15:51:02','2022-11-01 15:51:02',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(17,12728,12577,'ONLINE',NULL,1000,'NA','2022-10-31','',7,1,14124,'2022-11-01 16:07:54','2022-11-01 16:07:54',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(18,12728,12577,'ONLINE',NULL,4000,'NA','2022-10-31','',7,1,14124,'2022-11-01 16:09:46','2022-11-01 16:09:46',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(19,12728,12577,'ONLINE',NULL,4000,'NA','2022-10-31','',7,1,14124,'2022-11-01 18:39:39','2022-11-01 18:39:39',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(20,12728,12577,'ONLINE',NULL,50000,'3333','2022-10-31','',7,1,14124,'2022-11-01 18:40:27','2022-11-01 18:40:27',0,0,0,NULL,NULL,NULL),(21,12728,12577,'ONLINE',NULL,50000,'3333','2022-10-31','',7,1,14124,'2022-11-01 18:48:53','2022-11-01 18:48:53',0,0,0,NULL,NULL,NULL),(22,12728,12577,'ONLINE',NULL,5000,'3333','2022-10-31','dd',7,1,14124,'2022-11-01 18:50:44','2022-11-01 18:50:44',0,0,0,NULL,NULL,NULL),(23,12728,12577,'ONLINE',NULL,5000,'3333','2022-11-01','dd',7,1,14124,'2022-11-01 18:58:15','2022-11-01 18:58:15',0,0,0,NULL,NULL,NULL),(24,12728,12577,'ONLINE',NULL,4000,'NA','2022-11-01','',7,1,14124,'2022-11-01 19:13:37','2022-11-01 19:13:37',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(25,12728,12577,'ONLINE',NULL,4000,'34567','2022-11-01','Test',7,1,14124,'2022-11-01 19:16:20','2022-11-01 19:16:20',0,0,0,NULL,NULL,NULL),(26,12728,12577,'ONLINE',NULL,4000,'NA','2022-11-02','',7,1,14124,'2022-11-02 10:34:36','2022-11-02 10:34:36',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(27,12728,12577,'ONLINE',NULL,5000,'4000','2022-11-02','',7,1,14124,'2022-11-02 10:42:16','2022-11-02 10:42:16',0,0,0,NULL,NULL,NULL),(28,12728,12577,'ONLINE',NULL,5000,'4000','2022-11-02','',7,1,14124,'2022-11-02 10:47:02','2022-11-02 10:47:02',0,0,0,NULL,NULL,NULL),(29,12728,12577,'ONLINE',NULL,5000,'4000','2022-11-02','',7,1,14124,'2022-11-02 11:27:52','2022-11-02 11:27:52',0,0,0,NULL,NULL,NULL),(30,12728,12577,'ONLINE',NULL,40000,'345','2022-11-02','',7,1,14124,'2022-11-02 11:28:09','2022-11-02 11:28:09',0,0,0,NULL,NULL,NULL),(31,12728,12577,'ONLINE',NULL,50000,'NA','2022-11-02','',7,1,14124,'2022-11-02 12:01:20','2022-11-02 12:01:20',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(32,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 15:59:05','2022-11-02 15:59:05',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(33,12728,12577,'ONLINE',NULL,4000,'NA','2022-11-02','',7,1,14124,'2022-11-02 16:00:12','2022-11-02 16:00:12',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(34,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 16:03:28','2022-11-02 16:03:28',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(35,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 16:25:28','2022-11-02 16:25:28',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(36,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 16:28:09','2022-11-02 16:28:09',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(37,12728,12577,'ONLINE',NULL,6000,'55555','2022-11-02','',7,1,14124,'2022-11-02 16:32:43','2022-11-02 16:32:43',0,0,0,NULL,NULL,NULL),(38,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 16:34:21','2022-11-02 16:34:21',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(39,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 16:36:26','2022-11-02 16:36:26',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(40,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 16:38:24','2022-11-02 16:38:24',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(41,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 16:41:13','2022-11-02 16:41:13',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(42,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 17:08:10','2022-11-02 17:08:10',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(43,12728,12577,'ONLINE',NULL,5000,'NA','2022-11-02','',7,1,14124,'2022-11-02 17:09:15','2022-11-02 17:09:15',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(44,12728,12577,'ONLINE',NULL,50000,'NA','2022-11-02','',7,1,14124,'2022-11-02 17:11:08','2022-11-02 17:11:08',0,4,0,'UNIDENTIFIED MERCHANT DOMAIN.',NULL,'3'),(45,12728,12577,'ONLINE',NULL,50000,'123456','2022-11-02','',7,1,14124,'2022-11-02 17:22:46','2022-11-02 17:22:46',0,0,0,NULL,NULL,NULL),(46,12728,12577,'ONLINE',NULL,5000,'1234567','2022-11-07','',7,1,14124,'2022-11-07 19:33:37','2022-11-07 19:33:37',0,0,0,NULL,NULL,NULL),(47,12728,12577,'ONLINE',NULL,5000,'123456','2022-11-07','',7,1,14124,'2022-11-07 19:34:18','2022-11-07 19:34:18',0,0,0,NULL,NULL,NULL),(48,12728,12577,'ONLINE',NULL,50000,'1234567','2022-11-07','',7,1,14124,'2022-11-07 19:35:07','2022-11-07 19:35:07',0,0,0,NULL,NULL,NULL),(49,12728,12577,'ONLINE',NULL,50000,'1234567','2022-11-07','',7,1,14124,'2022-11-07 19:38:28','2022-11-07 19:38:28',0,0,0,NULL,NULL,NULL),(50,12728,12577,'ONLINE',NULL,5000,'123456','2022-11-07','',7,1,14124,'2022-11-07 19:41:53','2022-11-07 19:41:53',0,0,0,NULL,NULL,NULL),(51,12728,12577,'ONLINE',NULL,5000,'123456','2022-11-07','',7,1,14124,'2022-11-07 19:47:14','2022-11-07 19:47:14',0,0,0,NULL,NULL,NULL),(52,12728,12577,'ONLINE',NULL,5000,'123456','2022-11-07','',7,1,14124,'2022-11-07 19:51:13','2022-11-07 19:51:13',0,0,0,NULL,NULL,NULL),(53,12728,12577,'ONLINE',NULL,5000,'123456','2022-11-07','',7,1,14124,'2022-11-07 19:52:43','2022-11-07 19:52:43',0,0,0,NULL,NULL,NULL),(54,12728,12577,'ONLINE',NULL,6000,'123456','2022-11-07','',7,1,14124,'2022-11-07 20:03:17','2022-11-07 20:03:17',0,0,0,NULL,NULL,NULL),(55,12728,12577,'ONLINE',NULL,6000,'123456','2022-11-07','',7,1,14124,'2022-11-07 20:04:21','2022-11-07 20:04:21',0,0,0,NULL,NULL,NULL),(56,12728,12577,'ONLINE',NULL,50000,'123456','2022-11-07','',7,1,14124,'2022-11-07 20:05:31','2022-11-07 20:05:31',0,0,0,NULL,NULL,NULL),(57,12728,12577,'ONLINE',NULL,50000,'1234567','2022-11-07','1234567',7,1,14124,'2022-11-07 20:06:53','2022-11-07 20:06:53',0,0,0,NULL,NULL,NULL),(58,12728,12577,'ONLINE',NULL,50000,'123456','2022-11-07','',7,1,14124,'2022-11-07 20:07:44','2022-11-07 20:07:44',0,0,0,NULL,NULL,NULL),(59,12728,12577,'ONLINE',NULL,100,'123456','2022-11-08','',7,1,14124,'2022-11-08 10:20:14','2022-11-08 10:20:14',0,0,0,NULL,NULL,NULL),(60,12728,12577,'ONLINE',NULL,100,'11000139385215','2022-11-08','',7,1,14124,'2022-11-08 10:59:17','2022-11-08 10:59:17',0,4,0,'TRANSACTION IS CANCELLED BY USER ON PAYMENT PAGE.',NULL,'2'),(61,33779,12577,'ONLINE',NULL,100,'11000139666966','2022-11-09','test',7,1,35656,'2022-11-09 14:31:57','2022-11-09 14:31:57',0,4,0,'TRANSACTION IS CANCELLED BY USER ON PAYMENT PAGE.',NULL,'2'),(62,12728,12577,'ONLINE',NULL,1000,'11','2022-11-09','',7,1,14124,'2022-11-09 14:59:16','2022-11-09 14:59:16',0,0,0,NULL,NULL,NULL);
/*!40000 ALTER TABLE `tb_deposit_payment` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_flight_modification`
--

DROP TABLE IF EXISTS `tb_flight_modification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_flight_modification` (
  `ModificationId` int NOT NULL AUTO_INCREMENT,
  `apiTraceId` varchar(200) NOT NULL,
  `ChangeRequestId` varchar(150) NOT NULL,
  `ChangeRequestStatus` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `MasterTPSysId` int NOT NULL DEFAULT '0',
  `BookingId` varchar(150) NOT NULL,
  `RequestType` varchar(150) NOT NULL,
  `Remarks` varchar(300) NOT NULL,
  `RequestData` text NOT NULL,
  `APIResponseData` text NOT NULL,
  `RefundMode` varchar(150) DEFAULT NULL,
  `status` int DEFAULT NULL,
  `servicefee` decimal(18,2) NOT NULL DEFAULT '0.00',
  `refundedamount` decimal(18,2) NOT NULL DEFAULT '0.00',
  `amendmentcharges` decimal(18,0) NOT NULL DEFAULT '0',
  `nameData` varchar(500) DEFAULT NULL,
  `sectors` varchar(300) DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime DEFAULT NULL,
  PRIMARY KEY (`ModificationId`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_flight_modification`
--

LOCK TABLES `tb_flight_modification` WRITE;
/*!40000 ALTER TABLE `tb_flight_modification` DISABLE KEYS */;
INSERT INTO `tb_flight_modification` VALUES (1,'e2c45-b65a8-4708e-fbbfb','1',1,12728,12577,'TJS103800299101','CANCELLATION_QUOTATION','jn','{\"bookingId\":\"TJS103800299101\",\"type\":\"CANCELLATION_QUOTATION\",\"remarks\":\"jn\",\"trips\":[{\"src\":\"DEL\",\"dest\":\"BOM\",\"departureDate\":\"2022-07-26\",\"travellers\":[{\"fn\":\"Mohammad\",\"ln\":\"sabir\"}]}]}','[]',NULL,NULL,0.00,0.00,0,NULL,NULL,'2022-07-18 18:10:12','2022-07-18 18:10:12'),(2,'e2c45-b65a8-4708e-fbbfb','2',1,12728,12577,'TJS103800299101','CANCELLATION_QUOTATION','jn jjn','{\"bookingId\":\"TJS103800299101\",\"type\":\"CANCELLATION_QUOTATION\",\"remarks\":\"jn jjn\",\"trips\":[{\"src\":\"DEL\",\"dest\":\"BOM\",\"departureDate\":\"2022-07-26\",\"travellers\":[{\"fn\":\"Mohammad\",\"ln\":\"sabir\"}]}]}','[]',NULL,NULL,0.00,0.00,0,NULL,NULL,'2022-07-18 18:10:43','2022-07-18 18:10:43'),(3,'230ce-63b00-d965f-e230b','7000299112',1,12728,12577,'TJS100900299099','CANCELLATION','sdfsd ','{\"bookingId\":\"TJS100900299099\",\"type\":\"CANCELLATION\",\"remarks\":\"sdfsd \",\"isCancelType\":null,\"trips\":[{\"src\":\"DEL\",\"dest\":\"BOM\",\"departureDate\":\"2022-07-27\",\"travellers\":[{\"fn\":\"Mohammad\",\"ln\":\"sabir\"}]}],\"paxDetailArray\":{\"Mohammad-sabir\":1}}','{\"bookingId\":\"TJS100900299099\",\"amendmentId\":\"7000299112\",\"status\":{\"success\":true,\"httpStatus\":200}}','',NULL,0.00,0.00,0,'','Array','2022-07-18 18:14:15','2022-07-18 18:14:15');
/*!40000 ALTER TABLE `tb_flight_modification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_happycustomer`
--

DROP TABLE IF EXISTS `tb_happycustomer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_happycustomer` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `image` varchar(255) NOT NULL,
  `status` enum('0','1') NOT NULL,
  `isDisplayOnHome` enum('0','1') NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_happycustomer`
--

LOCK TABLES `tb_happycustomer` WRITE;
/*!40000 ALTER TABLE `tb_happycustomer` DISABLE KEYS */;
INSERT INTO `tb_happycustomer` VALUES (4,'xfdgbvd','https://www.youtube.com/watch?v=3SsK-cxlj_w','4_1672916285.jpeg','1','1','0');
/*!40000 ALTER TABLE `tb_happycustomer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_homebanner_detail`
--

DROP TABLE IF EXISTS `tb_homebanner_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_homebanner_detail` (
  `banner_id` int NOT NULL AUTO_INCREMENT,
  `image` varchar(100) DEFAULT NULL,
  `heading` varchar(80) DEFAULT NULL,
  `description` varchar(150) DEFAULT NULL,
  `url` varchar(250) DEFAULT NULL,
  `opt` tinyint NOT NULL DEFAULT '0',
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  `isDisplayOnHome` tinyint NOT NULL DEFAULT '0',
  `isDisplayOnBanner` enum('0','1') NOT NULL DEFAULT '0',
  `bannerType` int NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '0',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`banner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_homebanner_detail`
--

LOCK TABLES `tb_homebanner_detail` WRITE;
/*!40000 ALTER TABLE `tb_homebanner_detail` DISABLE KEYS */;
INSERT INTO `tb_homebanner_detail` VALUES (4,'4_1658146489.jpg','best deals','description','',0,'1',1,'0',0,1,0),(12,'12_1663426096.jpg','','','',0,'0',1,'0',0,1,0),(13,'13_1663426111.jpg','','','',0,'0',1,'0',0,1,0),(14,'14_1663426122.jpg','','','',0,'0',1,'0',0,1,0),(15,'15_1663426133.jpg','','','',0,'0',1,'0',0,1,0);
/*!40000 ALTER TABLE `tb_homebanner_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_itinerary_description`
--

DROP TABLE IF EXISTS `tb_itinerary_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_itinerary_description` (
  `ItineraryDesId` int NOT NULL AUTO_INCREMENT,
  `GtxRefId` int NOT NULL,
  `StartCity` int NOT NULL,
  `DestinationCity` int NOT NULL,
  `Title` varchar(100) NOT NULL,
  `Description` text NOT NULL,
  `StartCityName` varchar(100) NOT NULL,
  `DestinationCityName` varchar(100) NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`ItineraryDesId`),
  KEY `GtxRefId` (`GtxRefId`),
  KEY `ItineraryDesId` (`ItineraryDesId`),
  KEY `DestinationCity` (`DestinationCity`),
  KEY `IsActive` (`IsActive`),
  KEY `IsMarkForDel` (`IsMarkForDel`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_itinerary_description`
--

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

--
-- Table structure for table `tb_master_geo_city`
--

DROP TABLE IF EXISTS `tb_master_geo_city`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_master_geo_city` (
  `CityId` bigint NOT NULL AUTO_INCREMENT,
  `TBBCityId` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
  `Title` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
  `Alias` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
  `Code` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL,
  `StateOrZone` char(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
  `Country` char(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
  `SeoTitle` varchar(250) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '',
  `StateSysId` bigint DEFAULT '0',
  `ZoneSysId` bigint NOT NULL DEFAULT '0',
  `ContSysId` bigint NOT NULL DEFAULT '0',
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `IsApproved` tinyint(1) NOT NULL DEFAULT '0',
  `IsMarkForDel` tinyint(1) NOT NULL DEFAULT '0',
  `IsActive` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`CityId`)
) ENGINE=InnoDB AUTO_INCREMENT=25309 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_master_geo_city`
--

LOCK TABLES `tb_master_geo_city` WRITE;
/*!40000 ALTER TABLE `tb_master_geo_city` DISABLE KEYS */;
INSERT INTO `tb_master_geo_city` VALUES (1,'10379','Shimla','SHIMLA',NULL,'','India','Shimla',1,0,101,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(2,'16951','Thai Muang','THAI MUANG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(3,'4105','Indre-et-loire','INDRE-ET-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(4,'25378','Manning Provincial Park','MANNING PROVINCIAL PARK',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(5,'25379','100 Mile House','100 MILE HOUSE',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(6,'25381','108 Mile Ranch','108 MILE RANCH',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(7,'37544','6Th Of October City','6TH OF OCTOBER CITY',NULL,'','Egypt','',0,0,65,'2016-10-17 10:38:26','1900-01-01 00:00:00',1,0,1),(8,'25382','70 Mile House','70 MILE HOUSE',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(9,'41940','A Arnoia','A ARNOIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(10,'42995','A Capela','A CAPELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(11,'1724','A Coruna','A CORUNA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(12,'1258','A Coruña','A CORUÑA',NULL,'','SPAIN','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(13,'41498','A Estrada','A ESTRADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(14,'41488','A Fonsagrada','A FONSAGRADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(15,'39423','A Mezquita','A MEZQUITA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(16,'38684','A Pobra De Trives','A POBRA DE TRIVES',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(17,'2109','Aabenraa','AABENRAA',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(18,'2110','Aabybro','AABYBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:27','2018-01-23 05:09:29',1,0,1),(19,'27318','Aachen','AACHEN','','','Germany','',0,0,83,'2016-10-17 10:38:27','2018-02-03 06:11:20',1,0,1),(20,'2351','Aalbaek','AALBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(21,'2350','Aalborg','AALBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:27','1900-01-01 00:00:00',1,0,1),(22,'22471','Aalen','AALEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(23,'2111','Aalestrup','AALESTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(24,'1131','Aalesund','AALESUND',NULL,'','NORWAY','',0,0,164,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,0),(25,'14617','Aalsmeer','AALSMEER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(26,'24574','Aalst','AALST',NULL,'','Belgium','',0,0,21,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(27,'24714','Aalter','AALTER',NULL,'','Belgium','',0,0,21,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(28,'23466','Aarau','AARAU','','','Switzerland','',0,0,210,'2016-10-17 10:38:28','2017-05-12 01:39:43',1,0,1),(29,'23426','Aarburg','AARBURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(30,'22990','Aare River','AARE RIVER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(31,'36111','Aarhus','AARHUS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:28','1900-01-01 00:00:00',1,0,1),(32,'29792','Aaronsburg','AARONSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(33,'43845','Aars','AARS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(34,'24603','Aartselaar','AARTSELAAR',NULL,'','Belgium','',0,0,21,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(35,'42244','Abaco Island','ABACO ISLAND',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(36,'13455','Abaiang','ABAIANG',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(37,'16241','Abakan','ABAKAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(38,'14126','Abala','ABALA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(39,'5792','Abancourt','ABANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(40,'11513','Abano Terme','ABANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(41,'42218','Abant','ABANT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(42,'43181','Abashiri','ABASHIRI',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(43,'13981','Abasolo','ABASOLO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(44,'11514','Abbadia San Salvatore','ABBADIA SAN SALVATORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(45,'11515','Abbasanta','ABBASANTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(46,'7441','Abberley','ABBERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(47,'6278','Abbeville','ABBEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:38:29','1900-01-01 00:00:00',1,0,1),(48,'17821','Abbeville','ABBEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(49,'6860','Abbeyhill','ABBEYHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(50,'43705','Abbeyleix','ABBEYLEIX',NULL,'','Ireland','',0,0,105,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(51,'11092','Abbiadori','ABBIADORI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(52,'11516','Abbiategrasso','ABBIATEGRASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(53,'7442','Abbots Ripton','ABBOTS RIPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(54,'25383','Abbotsford','ABBOTSFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(55,'31677','Abbotsford','ABBOTSFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(56,'15290','Abbottabad','ABBOTTABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(57,'29793','Abbottstown','ABBOTTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(58,'14674','Abcoude','ABCOUDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(59,'3427','Abejar','ABEJAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(60,'43037','Abel Tasman National Park','ABEL TASMAN NATIONAL PARK',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(61,'44167','Abeliona','ABELIONA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(62,'13456','Abemama','ABEMAMA',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(63,'13115','Abeno','ABENO',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(64,'9253','Aberaeron','ABERAERON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(65,'30426','Abercrombie','ABERCROMBIE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:30','1900-01-01 00:00:00',1,0,1),(66,'7443','Aberdare','ABERDARE',NULL,'','United Kingdom','Aberdare',0,0,229,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(67,'35772','Aberdare National Park','Aberdare National Park',NULL,'','Kenya','',0,0,113,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(68,'29225','Aberdeen','ABERDEEN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(69,'7444','Aberdeen','ABERDEEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(70,'9897','Aberdeen','ABERDEEN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:38:31','1900-01-01 00:00:00',1,0,1),(71,'6864','Aberdeenshire','ABERDEENSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(72,'7445','Aberdour','ABERDOUR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(73,'6865','Aberdovey','ABERDOVEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(74,'7446','Aberfeldy','ABERFELDY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(75,'9300','Aberfoyle','ABERFOYLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(76,'7447','Abergavenny','ABERGAVENNY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(77,'7448','Abergele','ABERGELE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(78,'7449','Aberlady','ABERLADY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(79,'7450','Aberlour','ABERLOUR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(80,'7451','Aberporth','ABERPORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(81,'42234','Abersee','ABERSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(82,'7452','Abersoch','ABERSOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(83,'7453','Abertillery','ABERTILLERY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(84,'7454','Aberystwyth','ABERYSTWYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(85,'11517','Abetone','ABETONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(86,'16506','Abha','ABHA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(87,'30427','Abilene','ABILENE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(88,'7455','Abingdon','ABINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(89,'31024','Abingdon','ABINGDON','','','United States','rtyrt',0,0,231,'2016-10-17 10:38:32','2018-02-05 01:38:48',1,0,1),(90,'7456','Abington','ABINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(91,'21287','Abington','ABINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:32','1900-01-01 00:00:00',1,0,1),(92,'28482','Abiquiu','ABIQUIU',NULL,'','United States','',0,0,231,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(93,'21159','Abita Springs','ABITA SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(94,'37228','Ablitas','ABLITAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(95,'7457','Aboyne','ABOYNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(96,'16363','Abramtsevo','ABRAMTSEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(97,'16040','Abrantes','ABRANTES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(98,'11093','Abruzzo','ABRUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(99,'39897','Absam','ABSAM',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(100,'28181','Absecon','ABSECON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(101,'27151','Abtenau','ABTENAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(102,'23110','Abtwil','ABTWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(103,'13214','Abu','ABU',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(105,'25906','Abu Dhabi','ABU DHABI',NULL,'','United Arab Emirates','Abu Dhabi',0,0,228,'2016-10-17 10:38:33','1900-01-01 00:00:00',1,0,1),(106,'2413','Abu Simbel','ABU SIMBEL',NULL,'','Egypt','',0,0,65,'2016-10-17 10:38:34','1900-01-01 00:00:00',1,0,1),(107,'1741','Abuja','ABUJA',NULL,'','Nigeria','',0,0,160,'2016-10-17 10:38:34','1900-01-01 00:00:00',1,0,1),(108,'13215','Abuta','ABUTA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:34','1900-01-01 00:00:00',1,0,1),(109,'21819','Acadia','ACADIA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:34','1900-01-01 00:00:00',1,0,1),(110,'42157','Acadie','ACADIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(111,'16575','Acajutla','ACAJUTLA',NULL,'','El Salvador','',0,0,66,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(112,'24106','Acandi','ACANDI',NULL,'','Colombia','',0,0,49,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(113,'13787','Acapulco','ACAPULCO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(114,'32209','Acarigua','ACARIGUA',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(115,'11518','Acate','ACATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(116,'11094','Acaya','ACAYA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(117,'11519','Acciaroli','ACCIAROLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(118,'21288','Accord','ACCORD',NULL,'','United States','',0,0,231,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(119,'9350','Accra','ACCRA',NULL,'','Ghana','',0,0,84,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(120,'7458','Accrington','ACCRINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(121,'3653','Acebeiro','ACEBEIRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(122,'9397','Achaea','ACHAEA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(123,'9398','Acharavi','ACHARAVI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:35','1900-01-01 00:00:00',1,0,1),(124,'38943','Achau','ACHAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:36','1900-01-01 00:00:00',1,0,1),(125,'24443','Achenkirch','ACHENKIRCH',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:36','1900-01-01 00:00:00',1,0,1),(126,'24444','Achensee','ACHENSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:36','1900-01-01 00:00:00',1,0,1),(127,'22472','Achern','ACHERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:36','1900-01-01 00:00:00',1,0,1),(128,'35385','Achill Island','ACHILL ISLAND',NULL,'','Ireland','',0,0,105,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(129,'7459','Achiltibuie','ACHILTIBUIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(130,'495','Achim','ACHIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(131,'38492','Achlada','ACHLADA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(132,'7460','Achnasheen','ACHNASHEEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:37','1900-01-01 00:00:00',1,0,1),(133,'14452','Achterhoek','ACHTERHOEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:38','1900-01-01 00:00:00',1,0,1),(134,'11520','Aci Castello','ACI CASTELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:38','1900-01-01 00:00:00',1,0,1),(135,'11521','Acireale','ACIREALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(136,'11095','Acitrezza','ACITREZZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(137,'7461','Acle','ACLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(138,'21961','Acme','ACME',NULL,'','United States','',0,0,231,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(139,'28483','Acoma','ACOMA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:39','1900-01-01 00:00:00',1,0,1),(140,'38436','Acornhoek','ACORNHOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:38:40','1900-01-01 00:00:00',1,0,1),(141,'15784','Acoteias','ACOTEIAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:40','1900-01-01 00:00:00',1,0,1),(142,'11522','Acquafredda','ACQUAFREDDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:40','1900-01-01 00:00:00',1,0,1),(143,'11523','Acqualagna','ACQUALAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(144,'11524','Acquapendente','ACQUAPENDENTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(145,'11525','Acquappesa','ACQUAPPESA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(146,'11526','Acquasparta','ACQUASPARTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(147,'11527','Acquaviva','ACQUAVIVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:41','1900-01-01 00:00:00',1,0,1),(148,'43050','Acquedolci','ACQUEDOLCI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:42','1900-01-01 00:00:00',1,0,1),(149,'11079','Acqui Terme','ACQUI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:42','1900-01-01 00:00:00',1,0,1),(150,'28594','Acra','ACRA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:42','1900-01-01 00:00:00',1,0,1),(151,'35408','Acre','ACRE',NULL,'','Israel','',0,0,106,'2016-10-17 10:38:42','1900-01-01 00:00:00',1,0,1),(152,'7462','Acton','ACTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(153,'21289','Acton','ACTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(154,'40484','Acton','ACTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(155,'14001','Actopan','ACTOPAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(156,'14054','Acuna','ACUNA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(157,'19688','Acworth','ACWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(158,'22297','Ada','ADA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(159,'20144','Adair','ADAIR',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(160,'19689','Adairsville','ADAIRSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(161,'17543','Adak Island','ADAK ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(162,'9808','Adamas','ADAMAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:43','1900-01-01 00:00:00',1,0,1),(163,'21290','Adams','ADAMS',NULL,'','United States','',0,0,231,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(164,'34077','Adamstown','ADAMSTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(165,'29795','Adamstown','ADAMSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(166,'15364','Adamstown','ADAMSTOWN',NULL,'','Pitcairn','',0,0,487,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(167,'17822','Adamsville','ADAMSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(168,'17374','Adana','ADANA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(169,'10894','Adare','ADARE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(170,'7463','Adderbury','ADDERBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(171,'15178','Addington','ADDINGTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(172,'3836','Addis Ababa','ADDIS ABABA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(173,'20421','Addison','ADDISON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(174,'32430','Addo','ADDO',NULL,'','South Africa','',0,0,195,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(175,'38831','Addu Atoll','ADDU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:38:44','1900-01-01 00:00:00',1,0,1),(176,'29227','Addyston','ADDYSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(177,'3800','Adeje','ADEJE',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(178,'19690','Adel','ADEL',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(179,'26790','Adelaide','ADELAIDE',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(180,'35933','Adelaide-gepps Cross','ADELAIDE-GEPPS CROSS',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(181,'34831','Adelaide-glenelg','ADELAIDE-GLENELG',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(182,'34806','Adelaide-oakbank','ADELAIDE-OAKBANK',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(183,'18243','Adelanto','ADELANTO',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(184,'23111','Adelboden','ADELBODEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(185,'43687','Adelong','ADELONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(186,'21628','Adelphi','ADELPHI',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(187,'22683','Adelsdorf','ADELSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(188,'22473','Adelshofen','ADELSHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(189,'32343','Aden','ADEN',NULL,'','Yemen','',0,0,240,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(190,'599','Adenau','ADENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(191,'496','Adendorf','ADENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(192,'18244','Adin','ADIN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(193,'28596','Adirondack','ADIRONDACK',NULL,'','United States','',0,0,231,'2016-10-17 10:38:45','1900-01-01 00:00:00',1,0,1),(194,'17236','Adiyaman','ADIYAMAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(195,'15730','Adjuntas','ADJUNTAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(196,'16348','Adler','ADLER',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(197,'1993','Adlershof','ADLERSHOF',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(198,'23112','Adliswil','ADLISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(199,'27152','Adnet','ADNET',NULL,'','Austria','',0,0,14,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(200,'3158','Adra','ADRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(201,'39935','Adrar','ADRAR',NULL,'','Algeria','',0,0,3,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(202,'42681','Adrasan','ADRASAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(203,'21962','Adrian','ADRIAN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(204,'16620','Adriatic Coast - Karst','ADRIATIC COAST - KARST',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(205,'3728','Adsubia','ADSUBIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(206,'14781','Adventure Road','ADVENTURE ROAD',NULL,'','Norway','',0,0,164,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(207,'9831','Aegina','AEGINA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:46','1900-01-01 00:00:00',1,0,1),(208,'11096','Aeolian Islands','AEOLIAN ISLANDS',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(209,'2184','Aeroskobing','AEROSKOBING',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(210,'497','Aerzen','AERZEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(211,'23113','Aeschi','AESCHI',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(212,'22991','Aeschlen Ob Gunten','AESCHLEN OB GUNTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(213,'9401','Afandou','AFANDOU',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(214,'16152','Afareaitu','AFAREAITU',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(215,'11529','Affi','AFFI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(216,'27569','Affton','AFFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(217,'38799','Afik','AFIK',NULL,'','Israel','',0,0,106,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(218,'40156','Afissos','AFISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(219,'11530','Afragola','AFRAGOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(220,'13693','Afroud','AFROUD',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:47','1900-01-01 00:00:00',1,0,1),(221,'32869','Afton','AFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(222,'17238','Afyon','AFYON',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(223,'43158','Afyssos','AFYSSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(224,'9402','Afytos','AFYTOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(225,'13687','Agadir','AGADIR',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(226,'3354','Agaete','AGAETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(227,'9888','Agaña','AGAÑA',NULL,'','Guam','',0,0,90,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(228,'23459','Agarn','AGARN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(229,'10677','Agartala','AGARTALA',NULL,'','India','Agartala',45,0,101,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(230,'9889','Agat','AGAT',NULL,'','Guam','',0,0,90,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(232,'21291','Agawam','AGAWAM',NULL,'','United States','',0,0,231,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(233,'6376','Agay','AGAY',NULL,'','France','',0,0,76,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(234,'39574','Agazzano','AGAZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(235,'5876','Agde','AGDE',NULL,'','France','',0,0,76,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(236,'14782','Agder','AGDER',NULL,'','Norway','',0,0,164,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(237,'37447','Agdz','AGDZ',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(238,'2492','Age','AGE',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(239,'35448','Agello','AGELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:48','1900-01-01 00:00:00',1,0,1),(240,'5138','Agen','AGEN',NULL,'','France','',0,0,76,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(241,'11531','Agerola','AGEROLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(242,'2287','Agerskov','AGERSKOV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(243,'3955','Aggelby','AGGELBY',NULL,'','Finland','',0,0,75,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(244,'32431','Aggeneys','AGGENEYS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(245,'7464','Aghadowey','AGHADOWEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(246,'10768','Aghamore','AGHAMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(247,'41632','Aghia Marina','AGHIA MARINA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(248,'43159','Aghii Apostoloi','AGHII APOSTOLOI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(249,'9403','Aghios Constantinos','AGHIOS CONSTANTINOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(250,'17172','Aghir','AGHIR',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(251,'39416','Agia Effimia','AGIA EFFIMIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(252,'9409','Agii Apostoli','AGII APOSTOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(253,'34427','Agincourt','AGINCOURT',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:49','1900-01-01 00:00:00',1,0,1),(254,'26610','Agine','AGINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(255,'43160','Agios Andreas','AGIOS ANDREAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(256,'36365','Agistri','AGISTRI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(257,'11532','Agliana','AGLIANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(258,'11097','Agliano Terme','AGLIANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(259,'5360','Agneaux','AGNEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(260,'35894','Agnes Water','AGNES WATER',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(261,'6279','Agnetz','AGNETZ',NULL,'','France','',0,0,76,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(262,'4837','Agnieres En Devoluy','AGNIERES EN DEVOLUY',NULL,'','France','',0,0,76,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(263,'23469','Agno','AGNO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:50','1900-01-01 00:00:00',1,0,1),(264,'15518','Agoo','AGOO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(265,'18245','Agoura Hills','AGOURA HILLS',NULL,'','United States','',0,0,231,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(266,'10482','Agra','AGRA',NULL,'','India','Trip to Agra | Travel to Agra | Agra Tour | Holida',6,0,101,'2016-10-17 10:38:51','2017-06-20 09:26:44',1,0,1),(267,'3505','Agramunt','AGRAMUNT',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(268,'11533','Agrate Brianza','AGRATE BRIANZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(269,'41079','Agri','AGRI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(270,'12841','Agrigento','AGRIGENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(271,'35545','Agrigento-porto Empe','AGRIGENTO-PORTO EMPE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(272,'42532','Agrinio','AGRINIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(273,'43161','Agrinion','AGRINION',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(274,'11534','Agropoli','AGROPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(275,'3159','Agua Amarga','AGUA AMARGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(276,'18246','Agua Caliente','AGUA CALIENTE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(277,'16088','Agua De Pau','AGUA DE PAU',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(278,'44035','Aguada','AGUADA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(279,'15735','Aguadilla','AGUADILLA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(280,'3160','Aguadulce','AGUADULCE',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(281,'15397','Aguas Calientes','AGUAS CALIENTES',NULL,'','Peru','',0,0,172,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(282,'25192','Aguas De Lindoia','AGUAS DE LINDOIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(283,'16053','Aguas De Moura','AGUAS DE MOURA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(284,'42152','Aguas Zarcas','AGUAS ZARCAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:38:51','1900-01-01 00:00:00',1,0,1),(285,'13890','Aguascalientes','AGUASCALIENTES',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(286,'15848','Agueda','AGUEDA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(287,'3161','Aguilar','AGUILAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(288,'3026','Aguilas','AGUILAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(289,'40444','Agulhas','AGULHAS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(290,'13116','Aguni','AGUNI',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(291,'43690','Agva','AGVA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(292,'26152','Agveran','AGVERAN',NULL,'','Armenia','',0,0,11,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(293,'35842','Ahangama','AHANGAMA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(294,'27319','Ahaus','AHAUS',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(295,'820','Ahlbeck','AHLBECK',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(296,'10375','Ahmedabad','AHMEDABAD',NULL,'','India','Tour Travel Packages Ahmedabad | Ahmedabad Holiday',16,0,101,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(297,'33753','Ahoskie','AHOSKIE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(298,'691','Ahrensburg','AHRENSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(299,'39968','Ahrensfelde','AHRENSFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(300,'4007','Ahtari','AHTARI',NULL,'','Finland','',0,0,75,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(301,'14008','Ahualulco De Mercado','AHUALULCO DE MERCADO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(302,'5987','Ahun','AHUN',NULL,'','France','',0,0,76,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(303,'13608','Ahungalla','AHUNGALLA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(305,'43874','Ahuy','AHUY',NULL,'','France','',0,0,76,'2016-10-17 10:38:52','1900-01-01 00:00:00',1,0,1),(306,'18247','Ahwahnee','AHWAHNEE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(307,'18096','Ahwatukee','AHWATUKEE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(308,'3044','Aibar','AIBAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(309,'43183','Aichi','AICHI',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(310,'11535','Aidone','AIDONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(311,'19974','Aiea','AIEA',NULL,'','United States','',0,0,231,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(312,'42531','Aigio','AIGIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(313,'23444','Aigle','AIGLE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(314,'34980','Aiguablava','AIGUABLAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(315,'43089','Aiguamurcia','AIGUAMURCIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(316,'3506','Aiguamúrcia','AIGUAMÚRCIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(317,'6562','Aigueblanche','AIGUEBLANCHE',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(318,'6064','Aiguefonde','AIGUEFONDE',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(319,'37725','Aigueperse','AIGUEPERSE',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(320,'41601','Aigues Mortes','AIGUES MORTES',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(321,'5877','Aigues-mortes','AIGUES-MORTES',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(322,'37948','Aiguines','AIGUINES',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(323,'30282','Aiken','AIKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(324,'5430','Aillant-sur-tholon','AILLANT-SUR-THOLON',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(325,'14144','Ailuk','AILUK',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(326,'5878','Aimargues','AIMARGUES',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(327,'6563','Aime','AIME',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(328,'4106','Ain','AIN',NULL,'','France','',0,0,76,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(329,'17149','Ain Draham','AIN DRAHAM',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(330,'2414','Ain Sokhna','AIN SOKHNA',NULL,'','Egypt','',0,0,65,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(331,'41833','Ain Taya','AIN TAYA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:38:53','1900-01-01 00:00:00',1,0,1),(332,'5139','Ainhoa','AINHOA',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(333,'34981','Ainsa','AINSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(334,'26623','Ainslie','AINSLIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(335,'7465','Ainstable','AINSTABLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(336,'28092','Ainsworth','AINSWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(337,'25384','Ainsworth Hot Springs','AINSWORTH HOT SPRINGS',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(338,'15566','Airai','AIRAI',NULL,'','Palau','',0,0,167,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(339,'7466','Aird Of Sleat','AIRD OF SLEAT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(340,'7467','Airdrie','AIRDRIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(341,'25268','Airdrie','AIRDRIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(342,'6808','Aire Sur La Lys','AIRE SUR LA LYS',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(343,'31026','Airlie','AIRLIE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(344,'26646','Airlie Beach','AIRLIE BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(345,'23114','Airolo','AIROLO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(346,'7468','Airth','AIRTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(347,'29796','Airville','AIRVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(348,'31428','Airway Heights','AIRWAY HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(349,'4107','Aisne','AISNE',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(350,'37288','Aisonville-et-bernoville','AISONVILLE-ET-BERNOVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(351,'5431','Aisy-sur-armancon','AISY-SUR-ARMANCON',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(352,'38052','Ait Ben Haddou','AIT BEN HADDOU',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(353,'22299','Aitkin','AITKIN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(354,'24063','Aitutaki','AITUTAKI',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(355,'5988','Aix','AIX',NULL,'','France','',0,0,76,'2016-10-17 10:38:54','1900-01-01 00:00:00',1,0,1),(356,'40972','Aix-en-provence','AIX-EN-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(357,'4108','Aix-les-bains','AIX-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(358,'9418','Aiyaleo','AIYALEO',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(359,'9419','Aiyion','AIYION',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(360,'10701','Aizawl','AIZAWL',NULL,'','India','Aizawl',43,0,101,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(361,'43065','Aizuwakamatsu','AIZUWAKAMATSU',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(362,'10483','Ajabgarh','AJABGARH',NULL,'','India','',0,0,101,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(363,'34690','Ajaccio','AJACCIO',NULL,'','France','',0,0,76,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(364,'34428','Ajax','AJAX',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(365,'14009','Ajijic','AJIJIC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(366,'25907','Ajman','AJMAN',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(367,'10668','Ajmer','AJMER',NULL,'','India','Ajmer Trip Packages | Ajmer Holiday Packages | Raj',2,0,101,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(368,'18097','Ajo','AJO',NULL,'','United States','',0,0,231,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(369,'15985','Ajuda','AJUDA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(370,'42861','Akaigawa','AKAIGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(371,'13216','Akakura','AKAKURA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(372,'39296','Akan National Park Area','AKAN NATIONAL PARK AREA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(373,'43012','Akaroa','AKAROA',NULL,'','New Zealand','Akaroa',0,0,157,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(374,'13217','Akashi','AKASHI',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(375,'3922','Akaslompolo','AKASLOMPOLO',NULL,'','Finland','',0,0,75,'2016-10-17 10:38:55','1900-01-01 00:00:00',1,0,1),(376,'4040','Äkäslompolo','ÄKÄSLOMPOLO',NULL,'','Finland','',0,0,75,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(377,'39998','Akbuk','AKBUK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(378,'17271','Akcakoca','AKCAKOCA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(379,'16814','Akersberga','AKERSBERGA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(380,'14618','Akersloot','AKERSLOOT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(381,'9629','Akharnai','AKHARNAI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(382,'17544','Akhiok','AKHIOK',NULL,'','United States','',0,0,231,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(383,'40317','Akhisar','AKHISAR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(384,'17506','Akhtyrka','AKHTYRKA',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:38:56','1900-01-01 00:00:00',1,0,1),(385,'17545','Akiachak','AKIACHAK',NULL,'','United States','',0,0,231,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(386,'17546','Akiak','AKIAK',NULL,'','United States','',0,0,231,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(387,'6836','Akieni','AKIENI',NULL,'','Gabon','',0,0,80,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(388,'2161','Akirkeby','AKIRKEBY',NULL,'','Denmark','',0,0,59,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(389,'13117','Akishima','AKISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(390,'13218','Akita','AKITA',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(391,'24065','Akitua Island','AKITUA ISLAND',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(392,'11027','Akko','AKKO',NULL,'','Israel','',0,0,106,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(393,'17326','Akkoy','AKKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(394,'14507','Akkrum','AKKRUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(395,'43240','Aklan','AKLAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(396,'25759','Aklavik','AKLAVIK',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(397,'37867','Ako','AKO',NULL,'','Japan','',0,0,110,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(398,'9351','Akosombo','AKOSOMBO',NULL,'','Ghana','',0,0,84,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(399,'28598','Akron','AKRON',NULL,'','United States','',0,0,231,'2016-10-17 10:38:57','1900-01-01 00:00:00',1,0,1),(400,'9420','Akrotiri','AKROTIRI',NULL,'','Greece','',0,0,86,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(401,'17352','Aksaray','AKSARAY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(402,'14783','Aksdal','AKSDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(403,'23836','Aksu','AKSU',NULL,'','China','',0,0,46,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(404,'13437','Aktau','AKTAU',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(405,'13434','Aktobe','AKTOBE',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(406,'25932','Akulivik','AKULIVIK',NULL,'','Canada','',0,0,39,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(407,'14072','Akumal','AKUMAL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(408,'11006','Akureyri','AKUREYRI',NULL,'','Iceland','Akureyri',0,0,100,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(409,'17547','Akutan','AKUTAN',NULL,'','United States','',0,0,231,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(410,'17336','Akyaka','AKYAKA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(411,'43553','Al Ahsa','AL AHSA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:38:58','1900-01-01 00:00:00',1,0,1),(412,'25908','Al Ain','AL AIN',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(413,'35702','Al Aqaba','AL AQABA',NULL,'','Jordan','',0,0,111,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(414,'24818','Al Areen','AL AREEN',NULL,'','Bahrain','',0,0,17,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(415,'2415','Al Arish','AL ARISH',NULL,'','Egypt','',0,0,65,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(416,'32360','Al Ghaydah','AL GHAYDAH',NULL,'','Yemen','',0,0,240,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(417,'13688','Al Hoceima','AL HOCEIMA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(418,'13534','Al Jahra','AL JAHRA',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(419,'42629','Al Khor','AL KHOR',NULL,'','Qatar','',0,0,177,'2016-10-17 10:38:59','1900-01-01 00:00:00',1,0,1),(420,'15274','Al Qurm','AL QURM',NULL,'','Oman','',0,0,165,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(421,'17823','Alabaster','ALABASTER',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(422,'17313','Alacati','ALACATI',NULL,'','Turkey','Alacati',0,0,222,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(423,'19242','Alachua','ALACHUA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(424,'24963','Alagoas','ALAGOAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(425,'24194','Alajuela','ALAJUELA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(426,'17548','Alakanuk','ALAKANUK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(427,'18248','Alameda','ALAMEDA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(428,'32790','Alamo','ALAMO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(429,'28485','Alamogordo','ALAMOGORDO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(430,'13945','Alamos','ALAMOS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(431,'34695','Alamosa','ALAMOSA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:00','1900-01-01 00:00:00',1,0,1),(432,'3881','Aland','ALAND',NULL,'','Finland','',0,0,75,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(433,'11099','Alano Di Piave','ALANO DI PIAVE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(434,'21963','Alanson','ALANSON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(435,'17248','Alanya','ALANYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(436,'10381','Alappuzha','ALAPPUZHA',NULL,'','India','',3,0,101,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(437,'16484','Al-aqiq','AL-AQIQ',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(438,'2493','Alaquas','ALAQUAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(439,'3389','Alarcon','ALARCON',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(440,'2878','Alaro','ALARO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(441,'11538','Alassio','ALASSIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(442,'2494','Alava','ALAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(443,'2879','Alayor','ALAYOR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(444,'11539','Alba','ALBA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(445,'30432','Alba','ALBA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(446,'38132','Alba De Tormes','ALBA DE TORMES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(447,'36614','Alba Iulia','ALBA IULIA',NULL,'','Romania','',0,0,179,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(448,'3390','Albacete','ALBACETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(449,'16485','Al-baha','AL-BAHA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(450,'3391','Albalate De Zorita','ALBALATE DE ZORITA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:01','1900-01-01 00:00:00',1,0,1),(451,'1378','Albania','ALBANIA',NULL,'','ALBANIA','',0,0,2,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(452,'11540','Albano Laziale','ALBANO LAZIALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(453,'29606','Albany','ALBANY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(454,'26948','Albany','ALBANY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(455,'38291','Albaret-sainte-marie','ALBARET-SAINTE-MARIE',NULL,'','France','',0,0,76,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(456,'11100','Albaretto Della Torre','ALBARETTO DELLA TORRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(457,'3307','Albarracin','ALBARRACIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(458,'11101','Albavilla','ALBAVILLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(459,'42398','Albay','ALBAY',NULL,'','Philippines','',0,0,173,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(460,'6751','Albé','ALBÉ',NULL,'','France','',0,0,76,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(461,'43755','Albeck','ALBECK',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(462,'2955','Albelda De Iregua','ALBELDA DE IREGUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(463,'33754','Albemarle','ALBEMARLE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(464,'24768','Albena','ALBENA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(465,'11541','Albenga','ALBENGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(466,'11542','Alberese','ALBERESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(467,'39122','Albergaria-a-velha','ALBERGARIA-A-VELHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(468,'38742','Alberique','ALBERIQUE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(469,'33755','Albermarle Sound','ALBERMARLE SOUND',NULL,'','United States','',0,0,231,'2016-10-17 10:39:02','1900-01-01 00:00:00',1,0,1),(470,'11080','Alberobello','ALBEROBELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(471,'35521','Alberobello-fasano','ALBEROBELLO-FASANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(472,'12871','Alberoni','ALBERONI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(473,'5108','Albert','ALBERT',NULL,'','France','',0,0,76,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(474,'22301','Albert Lea','ALBERT LEA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(475,'37542','Albertinia','ALBERTINIA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(476,'32548','Alberton','ALBERTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(477,'27927','Alberton','ALBERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(478,'25811','Alberton','ALBERTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(479,'38047','Albertslund','ALBERTSLUND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(480,'5064','Albertville','ALBERTVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(481,'17824','Albertville','ALBERTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(482,'36612','Albesti','ALBESTI',NULL,'','Romania','',0,0,179,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(483,'23115','Albeuve','ALBEUVE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(484,'6065','Albi','ALBI',NULL,'','France','',0,0,76,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(485,'20145','Albia','ALBIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(486,'4109','Albiez-montrond','ALBIEZ-MONTROND',NULL,'','France','',0,0,76,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(487,'40072','Albinen','ALBINEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(488,'41223','Albinia','ALBINIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(489,'27928','Albion','ALBION',NULL,'','United States','',0,0,231,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(490,'26881','Albion','ALBION',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:03','1900-01-01 00:00:00',1,0,1),(491,'43475','Albir','ALBIR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(492,'22992','Albisrieden','ALBISRIEDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(493,'40554','Albissola Marina','ALBISSOLA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(494,'3162','Albolote','ALBOLOTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(495,'6564','Albon','ALBON',NULL,'','France','',0,0,76,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(496,'41057','Alboraia','ALBORAIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(497,'3729','Alboraya','ALBORAYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(498,'22474','Albstadt','ALBSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(499,'15915','Albufeira','ALBUFEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(500,'2496','Albufereta','ALBUFERETA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(501,'32344','Albuq','ALBUQ',NULL,'','Yemen','',0,0,240,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(502,'28488','Albuquerque','ALBUQUERQUE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(503,'31286','Alburg','ALBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(504,'34079','Albury','ALBURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(505,'15986','Alcabideche','ALCABIDECHE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(506,'16054','Alcacer Do Sal','ALCACER DO SAL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(507,'3355','Alcala','ALCALA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:04','1900-01-01 00:00:00',1,0,1),(508,'12842','Alcamo','ALCAMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(509,'2498','Alcanada','ALCANADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(510,'3507','Alcanar','ALCANAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(511,'16041','Alcanena','ALCANENA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(512,'3308','Alcaniz','ALCANIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(513,'15987','Alcantara','ALCANTARA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(514,'40323','Alcantara','ALCANTARA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(515,'15772','Alcantarilha','ALCANTARILHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(516,'3164','Alcaucin','ALCAUCIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(517,'40454','Alcaudete','ALCAUDETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(518,'3392','Alcazar De San Juan','ALCAZAR DE SAN JUAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(519,'41942','Alceda','ALCEDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(520,'7469','Alcester','ALCESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(521,'33063','Alcoa','ALCOA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(522,'15973','Alcobaca','ALCOBACA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(523,'2970','Alcobendas','ALCOBENDAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(524,'3730','Alcoceber','ALCOCEBER',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:05','1900-01-01 00:00:00',1,0,1),(525,'3393','Alcolea Del Pinar','ALCOLEA DEL PINAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(526,'6867','Alcombe','ALCOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(527,'2975','Alcorcon','ALCORCON',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(528,'44301','Alcossebre','ALCOSSEBRE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(529,'41670','Alcoutim','ALCOUTIM',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(530,'3731','Alcoy','ALCOY',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(531,'2880','Alcudia','ALCUDIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(532,'3732','Aldaya','ALDAYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:06','1900-01-01 00:00:00',1,0,1),(533,'7470','Aldbrough St. John','ALDBROUGH ST. JOHN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(534,'6868','Aldbury','ALDBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(535,'7471','Aldeburgh','ALDEBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(536,'24575','Alden Biesen','ALDEN BIESEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(537,'25385','Aldergrove','ALDERGROVE',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(538,'7472','Alderley Edge','ALDERLEY EDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(539,'7473','Alderminster','ALDERMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(540,'6869','Alderney','ALDERNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(541,'22684','Aldersbach','ALDERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(542,'7474','Aldershot','ALDERSHOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(543,'7475','Alderton','ALDERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:07','1900-01-01 00:00:00',1,0,1),(544,'7476','Aldford','ALDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(545,'30433','Aldine','ALDINE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(546,'38319','Aldingbourne','ALDINGBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(547,'37860','Aldrans','ALDRANS',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(548,'7477','Aldridge','ALDRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(549,'7478','Aldwark','ALDWARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(550,'39506','Alegria','ALEGRIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:39:08','1900-01-01 00:00:00',1,0,1),(551,'17549','Aleknagik','ALEKNAGIK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(552,'16452','Aleksandrovskoye','ALEKSANDROVSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(553,'15642','Aleksandrow','ALEKSANDROW',NULL,'','Poland','',0,0,174,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(554,'3508','Alella','ALELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(555,'5361','Alencon','ALENCON',NULL,'','France','',0,0,76,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(556,'40614','Alenquer','ALENQUER',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(557,'1077','Alentejo','ALENTEJO',NULL,'','PORTUGAL','',0,0,175,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(558,'5879','Alenya','ALENYA',NULL,'','France','',0,0,76,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(559,'16926','Aleppo','ALEPPO',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(560,'5760','Aleria','ALERIA',NULL,'','France','',0,0,76,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(561,'25386','Alert Bay','ALERT BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(562,'5880','Ales','ALES',NULL,'','France','',0,0,76,'2016-10-17 10:39:09','1900-01-01 00:00:00',1,0,1),(563,'12843','Alessandria','ALESSANDRIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(564,'11543','Alessano','ALESSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(565,'17550','Aleutian Islands','ALEUTIAN ISLANDS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(566,'3073','Alevia','ALEVIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(567,'32432','Alexander Bay','ALEXANDER BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(568,'17825','Alexander City','ALEXANDER CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(569,'26882','Alexandra','ALEXANDRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(570,'32549','Alexandra','ALEXANDRA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(571,'15083','Alexandra','ALEXANDRA',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(572,'22303','Alexandria','ALEXANDRIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(573,'6870','Alexandria','ALEXANDRIA',NULL,'','United Kingdom','Alexandria',0,0,229,'2016-10-17 10:39:10','1900-01-01 00:00:00',1,0,1),(574,'2410','Alexandria','ALEXANDRIA',NULL,'','Egypt','Alexandria',0,0,65,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(575,'1133','Alexandria-mediterranean Coast','ALEXANDRIA-MEDITERRANEAN COAST',NULL,'','EGYPT','',0,0,65,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(576,'42530','Alexandroupoli','ALEXANDROUPOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(577,'9752','Alexandroupolis','ALEXANDROUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(578,'43139','Aley','ALEY',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(579,'600','Alf','ALF',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(580,'39092','Alfacar','ALFACAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(581,'3733','Alfafar','ALFAFAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(582,'3309','Alfajarin','ALFAJARIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(583,'15988','Alfama','ALFAMA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(584,'2956','Alfaro','ALFARO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(585,'42996','Alfas Del Pi','ALFAS DEL PI',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(586,'2499','Alfaz Del Pi','ALFAZ DEL PI',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(587,'22475','Alfdorf','ALFDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:11','1900-01-01 00:00:00',1,0,1),(588,'22685','Alfeld','ALFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(589,'3509','Alfes','ALFES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(590,'40269','Alfiano Natta','ALFIANO NATTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(591,'4658','Alfortville','ALFORTVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(592,'15989','Alfragide','ALFRAGIDE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(593,'28603','Alfred','ALFRED',NULL,'','United States','',0,0,231,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(594,'13946','Alfredo V. Bonfil','ALFREDO V. BONFIL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(595,'7480','Alfreton','ALFRETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(596,'7481','Alfriston','ALFRISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(597,'25918','Al-fujairah','AL-FUJAIRAH',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(598,'42343','Algajola','ALGAJOLA',NULL,'','France','',0,0,76,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(599,'3165','Algar','ALGAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(600,'14964','Algard','ALGARD',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(601,'39794','Algarinejo','ALGARINEJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(602,'36003','Algarrobo','ALGARROBO',NULL,'','Chile','',0,0,45,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(603,'15785','Algarve','ALGARVE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(604,'3166','Algeciras','ALGECIRAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(605,'12811','Alghero','ALGHERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(606,'38252','Algiers','ALGIERS',NULL,'','Algeria','',0,0,3,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(607,'21162','Algiers','ALGIERS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:12','1900-01-01 00:00:00',1,0,1),(608,'28491','Algodones','ALGODONES',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(609,'31679','Algoma','ALGOMA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(610,'20146','Algona','ALGONA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(611,'20422','Algonquin','ALGONQUIN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(612,'34429','Algonquin Park','ALGONQUIN PARK',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(613,'39926','Algorfa','ALGORFA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(614,'3696','Algorta','ALGORTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(615,'3310','Alhama De Aragon','ALHAMA DE ARAGON',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(616,'18251','Alhambra','ALHAMBRA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(617,'3167','Alhaurin De La Torre','ALHAURIN DE LA TORRE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(618,'11102','Ali Terme','ALI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(619,'39819','Alia','ALIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(620,'42608','Alibag','ALIBAG',NULL,'','India','Alibag',5,0,101,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(621,'17303','Alibeykoy','ALIBEYKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(622,'2459','Alicante','ALICANTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(623,'35010','Alicante-ciudad Ques','ALICANTE-CIUDAD QUES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:13','1900-01-01 00:00:00',1,0,1),(624,'35021','Alicante-el Campello','ALICANTE-EL CAMPELLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(625,'35039','Alicante-elda','ALICANTE-ELDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(626,'36201','Alicante-petrel','ALICANTE-PETREL',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(627,'35052','Alicante-san Juan','ALICANTE-SAN JUAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(628,'30434','Alice','ALICE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(629,'13032','Alice Bel Colle','ALICE BEL COLLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(630,'26637','Alice Springs','ALICE SPRINGS',NULL,'','Australia','Alice Springs',0,0,13,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(631,'24848','Alice Town','ALICE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(632,'32433','Alicedale','ALICEDALE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(633,'17826','Aliceville','ALICEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(634,'30435','Alief','ALIEF',NULL,'','United States','',0,0,231,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(635,'10484','Aligarh','ALIGARH',NULL,'','India','Aligarh',6,0,101,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(636,'5881','Alignan-du-vent','ALIGNAN-DU-VENT',NULL,'','France','',0,0,76,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(637,'16071','Alijo','ALIJO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(638,'9630','Alikanas','ALIKANAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(639,'39687','Alikes','ALIKES',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(640,'37538','Aliki','ALIKI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(641,'39961','Aliko','ALIKO',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(642,'11544','Alimena','ALIMENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:14','1900-01-01 00:00:00',1,0,1),(643,'43102','Alimos','ALIMOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(644,'16879','Alingsas','ALINGSAS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(645,'10485','Alipur','ALIPUR',NULL,'','India','',0,0,101,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(646,'18252','Aliso Viejo','ALISO VIEJO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(647,'17551','Alitak','ALITAK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(648,'601','Alken','ALKEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(649,'14619','Alkmaar','ALKMAAR',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(650,'10678','Allahabad','ALLAHABAD',NULL,'','India','Allahabad',6,0,101,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(651,'17552','Allakaket','ALLAKAKET',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(652,'28183','Allamuchy','ALLAMUCHY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(653,'5284','Allanche','ALLANCHE',NULL,'','France','',0,0,76,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(654,'3045','Allariz','ALLARIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(655,'6377','Allauch','ALLAUCH',NULL,'','France','',0,0,76,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(656,'32550','Alldays','ALLDAYS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(657,'21965','Allegan','ALLEGAN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(658,'28605','Allegany','ALLEGANY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(659,'18253','Alleghany','ALLEGHANY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(660,'12872','Alleghe','ALLEGHE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(661,'43875','Alleins','ALLEINS',NULL,'','France','',0,0,76,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(662,'6378','Allemagne-en-provence','ALLEMAGNE-EN-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 10:39:15','1900-01-01 00:00:00',1,0,1),(663,'30436','Allen','ALLEN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(664,'21967','Allendale','ALLENDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(665,'6871','Allendale','ALLENDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(666,'22476','Allensbach','ALLENSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(667,'6872','Allensford','ALLENSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(668,'34697','Allenspark','ALLENSPARK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(669,'29798','Allentown','ALLENTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(670,'1767','Alleppey','ALLEPPEY',NULL,'','India','Travel Tour Packages for Alleppey | Trip to Allepp',3,0,101,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(671,'11545','Allerona','ALLERONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(672,'39636','Allersberg','ALLERSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(673,'22686','Allershausen','ALLERSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:16','1900-01-01 00:00:00',1,0,1),(674,'21292','Allerton','ALLERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(675,'7482','Allesley','ALLESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(676,'5140','Alles-sur-dordogne','ALLES-SUR-DORDOGNE',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(677,'6565','Allevard','ALLEVARD',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(678,'42752','Allevard-les-bains','ALLEVARD-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(679,'5285','Alleyras','ALLEYRAS',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(680,'24361','Allgaeu','ALLGAEU',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(681,'28093','Alliance','ALLIANCE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(682,'4110','Allier','ALLIER',NULL,'','France','',0,0,76,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(683,'37794','Allin','ALLIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(684,'2162','Allinge','ALLINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(685,'38175','Alliste','ALLISTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(686,'34430','Alliston','ALLISTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(687,'7483','Alloa','ALLOA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:17','1900-01-01 00:00:00',1,0,1),(688,'6379','Allos','ALLOS',NULL,'','France','',0,0,76,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(689,'21293','Allston','ALLSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(690,'17977','Alma','ALMA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(691,'25933','Alma','ALMA',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(692,'1572','Almada','ALMADA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(693,'3394','Almaden','ALMADEN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(694,'2460','Almagro','ALMAGRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(695,'15916','Almancil','ALMANCIL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(696,'36603','Almancil-vale Do Lob','ALMANCIL-VALE DO LOB',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(697,'3395','Almansa','ALMANSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(698,'13433','Almaty','ALMATY',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(699,'3169','Almayate Bajo','ALMAYATE BAJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(700,'3428','Almazan','ALMAZAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(701,'37957','Almedinilla','ALMEDINILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(702,'15965','Almeida','ALMEIDA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(703,'14743','Almelo','ALMELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(704,'14765','Almen','ALMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(705,'3799','Almendralejo','ALMENDRALEJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(706,'14453','Almere','ALMERE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(707,'3170','Almeria','ALMERIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:18','1900-01-01 00:00:00',1,0,1),(708,'34978','Almeria-adra','ALMERIA-ADRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(709,'34979','Almeria-aguadulce','ALMERIA-AGUADULCE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(710,'35040','Almeria-el Ejido','ALMERIA-EL EJIDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(711,'36174','Almeria-mojacar','ALMERIA-MOJACAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(712,'34984','Almeria-retamar','ALMERIA-RETAMAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(713,'35046','Almeria-roquetas De','ALMERIA-ROQUETAS DE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(714,'35114','Almeria-vera','ALMERIA-VERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(715,'26063','Almirante Brown','ALMIRANTE BROWN',NULL,'','Argentina','',0,0,10,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(716,'1508','Almogordo','ALMOGORDO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(717,'42988','Almonacid','ALMONACID',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(718,'34699','Almont','ALMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(719,'3171','Almonte','ALMONTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(720,'10679','Almora','ALMORA',NULL,'','India','Almora',9,0,101,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(721,'3397','Almorox','ALMOROX',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(722,'3172','Almunecar','ALMUNECAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(723,'2504','Almusafes','ALMUSAFES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(724,'41466','Almussafes','ALMUSSAFES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:19','1900-01-01 00:00:00',1,0,1),(725,'7484','Alne','ALNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(726,'7485','Alnmouth','ALNMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(727,'7486','Alnwick','ALNWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(728,'14451','Alofi','ALOFI',NULL,'','Niue','',0,0,161,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(729,'29607','Aloha','ALOHA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(730,'3173','Alomartes','ALOMARTES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(731,'1728','Alomartes-illora','ALOMARTES-ILLORA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(732,'10486','Along','ALONG',NULL,'','India','Along',40,0,101,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(733,'42529','Alonissos','ALONISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(734,'9631','Alonnisos','ALONNISOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(735,'9421','Alónnisos Island','ALÓNNISOS ISLAND',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(736,'10137','Alor','ALOR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(737,'14353','Alor Setar','ALOR SETAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(738,'3174','Alora','ALORA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(739,'15572','Alotau','ALOTAU',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(740,'43693','Alotenango','ALOTENANGO',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(741,'41433','Alovera','ALOVERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(742,'5432','Aloxe-corton','ALOXE-CORTON',NULL,'','France','',0,0,76,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(743,'39547','Alozaina','ALOZAINA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(744,'3510','Alp','ALP',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(745,'24445','Alpbach','ALPBACH',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(746,'43306','Alpe D Huez','ALPE D HUEZ',NULL,'','France','',0,0,76,'2016-10-17 10:39:20','1900-01-01 00:00:00',1,0,1),(747,'11103','Alpe Di Siusi','ALPE DI SIUSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(748,'2976','Alpedrete','ALPEDRETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(749,'21969','Alpena','ALPENA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(750,'41669','Alpendura E Matos','ALPENDURA E MATOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(751,'4111','Alpes De Sud','ALPES DE SUD',NULL,'','France','',0,0,76,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(752,'26378','Alpha','ALPHA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(753,'29232','Alpha','ALPHA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(754,'19694','Alpharetta','ALPHARETTA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(755,'41770','Alphaville','ALPHAVILLE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(756,'36452','Alphen Aan De Rijn','ALPHEN AAN DE RIJN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(757,'16912','Alphonse Island','ALPHONSE ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(758,'38513','Alpignano','ALPIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(759,'18254','Alpine','ALPINE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(760,'26969','Alpine Foothills','ALPINE FOOTHILLS',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(761,'22477','Alpirsbach','ALPIRSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(762,'40666','Alpnachstad','ALPNACHSTAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(763,'3311','Alquezar','ALQUEZAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(764,'42570','Al-qusair','AL-QUSAIR',NULL,'','Egypt','',0,0,65,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(765,'43565','Alresford','ALRESFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:21','1900-01-01 00:00:00',1,0,1),(766,'7487','Alsager','ALSAGER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(767,'3046','Alsasua','ALSASUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(768,'386','Alsfeld','ALSFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(769,'20423','Alsip','ALSIP',NULL,'','United States','',0,0,231,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(770,'40799','Alsisar','ALSISAR',NULL,'','India','Alsisar',2,0,101,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(771,'7488','Alston','ALSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(772,'692','Alt Duvenstedt','ALT DUVENSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(773,'23116','Alt Sankt Johann','ALT SANKT JOHANN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(774,'33298','Alta','ALTA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(775,'14770','Alta','ALTA',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(776,'11104','Alta Badia','ALTA BADIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(777,'25068','Alta Floresta','ALTA FLORESTA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:22','1900-01-01 00:00:00',1,0,1),(778,'26091','Alta Gracia','ALTA GRACIA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(779,'3511','Altafulla','ALTAFULLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(780,'2366','Altagracia','ALTAGRACIA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(781,'32204','Altagracia','ALTAGRACIA',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(782,'25099','Altamira','ALTAMIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(783,'13774','Altamira','ALTAMIRA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(784,'33065','Altamont','ALTAMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(785,'19243','Altamonte Springs','ALTAMONTE SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(786,'11546','Altamura','ALTAMURA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(787,'24408','Altaussee','ALTAUSSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(788,'11547','Altavilla Milicia','ALTAVILLA MILICIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(789,'31028','Altavista','ALTAVISTA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(790,'23837','Altay','ALTAY',NULL,'','China','',0,0,46,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(791,'23117','Altdorf','ALTDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(792,'22478','Altdorf','ALTDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(793,'11106','Alte Di Montecchio Maggiore','ALTE DI MONTECCHIO MAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(794,'3734','Altea','ALTEA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(795,'602','Altenahr','ALTENAHR',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(796,'39581','Altenau','ALTENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(797,'2021','Altenberg','ALTENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(798,'22479','Altenburg','ALTENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:23','1900-01-01 00:00:00',1,0,1),(799,'693','Altenholz','ALTENHOLZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(800,'27153','Altenmarkt Im Pongau','ALTENMARKT IM PONGAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(801,'23118','Altenrhein','ALTENRHEIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(802,'24362','Altensteig','ALTENSTEIG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(803,'821','Altentreptow','ALTENTREPTOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(804,'16014','Alter Do Chao','ALTER DO CHAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(805,'24964','Alter Do Chao','ALTER DO CHAO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(806,'37192','Alterkulz','ALTERKULZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(807,'1994','Altglienicke','ALTGLIENICKE',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(808,'6803','Altillac','ALTILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(809,'17194','Altinkum','ALTINKUM',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(810,'36798','Altinoluk','ALTINOLUK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(811,'24363','Altmark','ALTMARK',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(812,'39958','Altmünster','ALTMÜNSTER',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(813,'15786','Alto De Sao Joao','ALTO DE SAO JOAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(814,'41771','Alto Paraiso','ALTO PARAISO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(815,'20425','Alto Pass','ALTO PASS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(816,'22687','Altoetting','ALTOETTING',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(817,'11549','Altomonte','ALTOMONTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(818,'7489','Alton','ALTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(819,'29233','Alton','ALTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(820,'34431','Alton','ALTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(821,'26379','Alton Downs','ALTON DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:24','1900-01-01 00:00:00',1,0,1),(822,'26442','Altona','ALTONA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(823,'25578','Altona','ALTONA',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(824,'31680','Altoona','ALTOONA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(825,'11550','Altopascio','ALTOPASCIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(826,'7490','Altrincham','ALTRINCHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(827,'22993','Altstetten','ALTSTETTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(828,'15917','Altura','ALTURA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(829,'18256','Alturas','ALTURAS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(830,'32870','Altus','ALTUS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(831,'24364','Altwarmbüchen','ALTWARMBÜCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(832,'43162','Alupka','ALUPKA',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(833,'17514','Alushta','ALUSHTA',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(834,'32871','Alva','ALVA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(835,'16055','Alvalade','ALVALADE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(836,'30438','Alvarado','ALVARADO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(837,'13891','Alvarado','ALVARADO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(838,'42216','Alvaro Obregon','ALVARO OBREGON',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:25','1900-01-01 00:00:00',1,0,1),(839,'16736','Alvdalen','ALVDALEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(840,'15031','Alversund','ALVERSUND',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(841,'16744','Alvesta','ALVESTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(842,'7491','Alveston','ALVESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(843,'42313','Alviano','ALVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(844,'6066','Alvignac','ALVIGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(845,'16747','Alvik','ALVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(846,'30439','Alvin','ALVIN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(847,'38398','Alvito','ALVITO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(848,'15869','Alvito','ALVITO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(849,'15918','Alvor','ALVOR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(850,'16815','Alvsjo','ALVSJO',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:26','1900-01-01 00:00:00',1,0,1),(851,'10487','Alwar','ALWAR',NULL,'','India','Alwar',2,0,101,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(852,'38136','Alyangula','ALYANGULA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(853,'9423','Alykes','ALYKES',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(854,'40097','Alyth','ALYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(855,'42314','Alzate Brianza','ALZATE BRIANZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(856,'22688','Alzenau','ALZENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(857,'603','Alzey','ALZEY',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(858,'2505','Alzira','ALZIRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(859,'14010','Amacuzac','AMACUZAC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(860,'18257','Amador City','AMADOR CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(861,'15990','Amadora','AMADORA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(862,'43476','Amadores','AMADORES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(863,'28607','Amagansett','AMAGANSETT',NULL,'','United States','',0,0,231,'2016-10-17 10:39:27','1900-01-01 00:00:00',1,0,1),(864,'13219','Amagasaki','AMAGASAKI',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(865,'2112','Amager Island','AMAGER ISLAND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(866,'2227','Amagerbro','AMAGERBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(867,'5707','Amagne','AMAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(868,'10337','Amahai','AMAHAI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(869,'13118','Amakusa','AMAKUSA',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(870,'40421','Amal','AMAL',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(871,'11107','Amalfi','AMALFI',NULL,'','Italy','Amalfi',0,0,107,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(872,'35511','Amalfi-conca Marini','AMALFI-CONCA MARINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(873,'42528','Amaliada','AMALIADA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(874,'2113','Amalienborg - Nyhavn','AMALIENBORG - NYHAVN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(875,'20149','Amana','AMANA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(876,'31429','Amanda Park','AMANDA PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(877,'11552','Amantea','AMANTEA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:28','1900-01-01 00:00:00',1,0,1),(878,'16023','Amarante','AMARANTE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(879,'15877','Amares','AMARES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(880,'32791','Amargosa Valley','AMARGOSA VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(881,'30440','Amarillo','AMARILLO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(882,'9632','Amarinthos','AMARINTHOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(883,'9633','Amarousion','AMAROUSION',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(884,'42516','Amarynthos - Evia','AMARYNTHOS - EVIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(885,'17242','Amasya','AMASYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(886,'2062','Ambach','AMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(887,'43733','Ambala','AMBALA',NULL,'','India','Ambala',20,0,101,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(888,'39335','Ambanja','AMBANJA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(889,'34967','Ambato','AMBATO',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(890,'40123','Ambatomainty','AMBATOMAINTY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(891,'38170','Ambatondrazaka','AMBATONDRAZAKA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(892,'22480','Amberg','AMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(893,'1062','Ambergris Caye','AMBERGRIS CAYE',NULL,'','BELIZE','',0,0,22,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(894,'6566','Amberieux-en-dombes','AMBERIEUX-EN-DOMBES',NULL,'','France','',0,0,76,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(895,'15067','Amberley','AMBERLEY',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(896,'7492','Amberley','AMBERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(897,'39999','Ambialet','AMBIALET',NULL,'','France','',0,0,76,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(898,'4112','Ambilly','AMBILLY',NULL,'','France','',0,0,76,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(899,'7493','Amble','AMBLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(900,'17553','Ambler','AMBLER',NULL,'','United States','',0,0,231,'2016-10-17 10:39:29','1900-01-01 00:00:00',1,0,1),(901,'7494','Ambleside','AMBLESIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(902,'39883','Ambleteuse','AMBLETEUSE',NULL,'','France','',0,0,76,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(903,'4944','Amboise','AMBOISE',NULL,'','France','',0,0,76,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(904,'10338','Ambon','AMBON',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(905,'35773','Amboseli National Park','Amboseli National Park',NULL,'','Kenya','',0,0,113,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(906,'11553','Ambra','AMBRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(907,'16407','Amderma','AMDERMA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(908,'41629','Amealco De Bonfil','AMEALCO DE BONFIL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(909,'37851','Amed','AMED',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(910,'11554','Ameglia','AMEGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(911,'43361','Ameland','AMELAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(912,'11555','Amelia','AMELIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(913,'19245','Amelia City','AMELIA CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(914,'5882','Amelie Les Bains Palalda','AMELIE LES BAINS PALALDA',NULL,'','France','',0,0,76,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(915,'41598','Amelie-les-bains-palalda','AMELIE-LES-BAINS-PALALDA',NULL,'','France','',0,0,76,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(916,'11556','Amendolara','AMENDOLARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(917,'11557','Ameno','AMENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(918,'10488','Amer','AMER',NULL,'','India','',0,0,101,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(919,'18258','American Canyon','AMERICAN CANYON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:30','1900-01-01 00:00:00',1,0,1),(920,'26443','American River','AMERICAN RIVER',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(921,'6826','American Samoa','AMERICAN SAMOA',NULL,'','Micronesia, FS Of','',0,0,143,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(922,'975','Americana','AMERICANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(923,'19695','Americus','AMERICUS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(924,'14675','Amersfoort','AMERSFOORT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(925,'7495','Amersham','AMERSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(926,'31681','Amery','AMERY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(927,'20151','Ames','AMES',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(928,'21294','Amesbury','AMESBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(929,'7496','Amesbury','AMESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(930,'42527','Amfilochia','AMFILOCHIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(931,'21295','Amherst','AMHERST',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(932,'25690','Amherst','AMHERST',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(933,'34432','Amherstburg','AMHERSTBURG',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(934,'43900','Ami','AMI',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(935,'39163','Amiad','AMIAD',NULL,'','Israel','',0,0,106,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(936,'19696','Amicalola','AMICALOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:31','1900-01-01 00:00:00',1,0,1),(937,'6280','Amiens','AMIENS',NULL,'','France','',0,0,76,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(938,'5615','Amilly','AMILLY',NULL,'','France','',0,0,76,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(939,'37656','Amirim','AMIRIM',NULL,'','Israel','',0,0,106,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(940,'21163','Amite','AMITE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(941,'26649','Amity Point','AMITY POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(942,'40800','Amla','AMLA',NULL,'','India','',0,0,101,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(943,'7497','Amlwch','AMLWCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(944,'13103','Amman','AMMAN',NULL,'','Jordan','Amman',0,0,111,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(945,'44182','Ammanford','AMMANFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(946,'3943','Ammansaari','AMMANSAARI',NULL,'','Finland','',0,0,75,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(947,'6752','Ammerschwihr','AMMERSCHWIHR',NULL,'','France','',0,0,76,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(948,'22689','Ammerthal','AMMERTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(949,'20326','Ammon','AMMON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(950,'9424','Ammoudara','AMMOUDARA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(951,'38953','Ammoudia','AMMOUDIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(952,'38055','Amneville','AMNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(953,'9634','Amoliani','AMOLIANI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(954,'3697','Amorebieta','AMOREBIETA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(955,'15870','Amoreiras','AMOREIRAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(956,'9635','Amorgos','AMORGOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(957,'27826','Amory','AMORY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(958,'25934','Amos','AMOS',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(959,'36562','Amosanto','AMOSANTO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:32','1900-01-01 00:00:00',1,0,1),(960,'14998','Amot','AMOT',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(961,'43040','Amoudara','AMOUDARA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(962,'43411','Amouliani Island','AMOULIANI ISLAND',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(963,'14338','Ampang','AMPANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(964,'37797','Ampanihy','AMPANIHY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(965,'39252','Ampfelwang','AMPFELWANG',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(966,'6875','Ampfield','AMPFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(967,'42463','Ampfing','AMPFING',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(968,'1798','Amphur Mueng','AMPHUR MUENG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(969,'3512','Amposta','AMPOSTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(970,'3429','Ampudia','AMPUDIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(971,'41482','Ampuria Brava','AMPURIA BRAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(972,'25935','Amqui','AMQUI',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(973,'10651','Amravati','AMRAVATI',NULL,'','India','Amravati',5,0,101,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(974,'10665','Amritsar','AMRITSAR',NULL,'','India','Amritsar Trip Package | Amritsar Tour & Travel Pac',19,0,101,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(975,'7498','Amroth','AMROTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(976,'40790','Amrum','AMRUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(977,'38053','Amsteg','AMSTEG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(978,'14620','Amstelveen','AMSTELVEEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(979,'14621','Amsterdam','AMSTERDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(980,'16111','Anaa','ANAA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(981,'11558','Anacapri','ANACAPRI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(982,'41116','Anaco','ANACO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(983,'27931','Anaconda','ANACONDA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(984,'31430','Anacortes','ANACORTES',NULL,'','United States','',0,0,231,'2016-10-17 10:39:33','1900-01-01 00:00:00',1,0,1),(985,'19193','Anacostia','ANACOSTIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(986,'32872','Anadarko','ANADARKO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(987,'15773','Anadia','ANADIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(988,'16316','Anadyr','ANADYR',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(989,'11559','Anagni','ANAGNI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(990,'18259','Anaheim','ANAHEIM',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(991,'25387','Anahim Lake','ANAHIM LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(992,'19975','Anahola','ANAHOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(993,'17554','Anaktuvuk Pass','ANAKTUVUK PASS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(994,'39434','Analalava','ANALALAVA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(995,'9425','Analipsi','ANALIPSI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(996,'29802','Analomink','ANALOMINK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:34','1900-01-01 00:00:00',1,0,1),(997,'20153','Anamosa','ANAMOSA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(998,'17299','Anamur','ANAMUR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(999,'16242','Anapa','ANAPA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1000,'41976','Anapolis','ANAPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1001,'28492','Anapra','ANAPRA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1002,'38728','Anascaul','ANASCAUL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1003,'15736','Anasco','ANASCO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1004,'32307','Anatom','ANATOM',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1005,'24965','Anavilhanas Archipelago','ANAVILHANAS ARCHIPELAGO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1006,'9636','Anavyssos','ANAVYSSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1007,'34433','Ancaster','ANCASTER',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1008,'6380','Ancelle','ANCELLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1009,'6209','Ancenis','ANCENIS',NULL,'','France','',0,0,76,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1010,'5708','Anchamps','ANCHAMPS',NULL,'','France','',0,0,76,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1011,'21970','Anchor Bay Harbor','ANCHOR BAY HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1012,'17556','Anchorage','ANCHORAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1013,'25936','Ancienne Lorette','ANCIENNE LORETTE',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1014,'12789','Ancona','ANCONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:35','1900-01-01 00:00:00',1,0,1),(1015,'23477','Ancud','ANCUD',NULL,'','Chile','',0,0,45,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1016,'38069','Andalo','ANDALO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1017,'14905','Andalsnes','ANDALSNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1018,'17827','Andalusia','ANDALUSIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1019,'37713','Andapa','ANDAPA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1020,'39563','Andebu','ANDEBU',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1021,'14912','Andenes','ANDENES',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1022,'24706','Andenne','ANDENNE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1023,'23119','Andermatt','ANDERMATT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1024,'37534','Andernos-les-bains','ANDERNOS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1025,'30284','Anderson','ANDERSON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:36','1900-01-01 00:00:00',1,0,1),(1026,'16717','Anderstorp','ANDERSTORP',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1027,'4659','Andilly','ANDILLY',NULL,'','France','',0,0,76,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1028,'32154','Andizhan','ANDIZHAN',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1029,'39138','Andlau','ANDLAU',NULL,'','France','',0,0,76,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1030,'41887','Andoany','ANDOANY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1031,'35452','Andora','ANDORA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1032,'25871','Andorra','ANDORRA',NULL,'','Andorra','',0,0,5,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1033,'2506','Andorra','ANDORRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1034,'7499','Andover','ANDOVER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1035,'21296','Andover','ANDOVER',NULL,'','United States','',0,0,231,'2016-10-17 10:39:37','1900-01-01 00:00:00',1,0,1),(1036,'38290','Andraitx','ANDRAITX',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1037,'42428','Andratx','ANDRATX',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1038,'39300','Andreas','ANDREAS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1039,'21630','Andrews','ANDREWS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1040,'6567','Andrezieux','ANDREZIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1041,'41597','Andrezieux-boutheon','ANDREZIEUX-BOUTHEON',NULL,'','France','',0,0,76,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1042,'37780','Andriamena','ANDRIAMENA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1043,'3074','Andrin','ANDRIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1044,'42674','Andritsena','ANDRITSENA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1045,'9426','Andros','ANDROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1046,'24873','Andros Island','ANDROS ISLAND',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:39:38','1900-01-01 00:00:00',1,0,1),(1047,'3175','Andujar','ANDUJAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1048,'5883','Anduze','ANDUZE',NULL,'','France','',0,0,76,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1049,'32216','Anegada Island','ANEGADA ISLAND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1050,'43734','Angamali','ANGAMALI',NULL,'','India','',0,0,101,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1051,'10','Angaston','ANGASTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1052,'28493','Angel Fire','ANGEL FIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1053,'15438','Angeles','ANGELES',NULL,'','Philippines','',0,0,173,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1054,'16859','Angelholm','ANGELHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1055,'28610','Angelica','ANGELICA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1056,'18261','Angels Camp','ANGELS CAMP',NULL,'','United States','',0,0,231,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1057,'38561','Anger','ANGER',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1058,'37840','Anger','ANGER',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1059,'11560','Angera','ANGERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1060,'6210','Angers','ANGERS',NULL,'','France','',0,0,76,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1061,'36226','Angers-beaucouze','ANGERS-BEAUCOUZE',NULL,'','France','',0,0,76,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1062,'4660','Angerville','ANGERVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:39:39','1900-01-01 00:00:00',1,0,1),(1063,'10138','Anggi','ANGGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1064,'11561','Anghiari','ANGHIARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1065,'42533','Angistri','ANGISTRI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1066,'38595','Angkhang','ANGKHANG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1067,'5286','Anglards-de-saint-flour','ANGLARDS-DE-SAINT-FLOUR',NULL,'','France','',0,0,76,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1068,'40647','Anglès','ANGLÈS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1069,'26480','Anglesea','ANGLESEA',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1070,'5141','Anglet','ANGLET',NULL,'','France','',0,0,76,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1071,'30443','Angleton','ANGLETON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1072,'34434','Angling Lake','ANGLING LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1073,'20818','Angola','ANGOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1074,'17558','Angoon','ANGOON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1075,'4876','Angouleme','ANGOULEME',NULL,'','France','',0,0,76,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1076,'4113','Angoulins','ANGOULINS',NULL,'','France','',0,0,76,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1077,'16089','Angra Do Heroismo','ANGRA DO HEROISMO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1078,'25129','Angra Dos Reis','ANGRA DOS REIS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1079,'24365','Angrmuende','ANGRMUENDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1080,'25866','Anguilla','ANGUILLA',NULL,'','Anguilla','',0,0,7,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1081,'11562','Anguillara Sabazia','ANGUILLARA SABAZIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1082,'18262','Angwin','ANGWIN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1083,'24366','Anhalt','ANHALT',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:40','1900-01-01 00:00:00',1,0,1),(1084,'40967','Anhee','ANHEE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1085,'17559','Aniak','ANIAK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1086,'24544','Anif','ANIF',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1087,'43128','Anissaras','ANISSARAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1088,'32308','Aniwa','ANIWA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1089,'39066','Anjajavy','ANJAJAVY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1090,'3882','Anjalankoski','ANJALANKOSKI',NULL,'','Finland','',0,0,75,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1091,'23767','Anji','ANJI',NULL,'','China','',0,0,46,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1092,'42862','Anjo','ANJO',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1093,'25937','Anjou','ANJOU',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1094,'24138','Anjouan','ANJOUAN',NULL,'','Comoros','',0,0,50,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1095,'10489','Anjuna','ANJUNA',NULL,'','India','',0,0,101,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1097,'23936','Ankang','ANKANG',NULL,'','China','',0,0,46,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1098,'17371','Ankara','ANKARA',NULL,'','Turkey','Ankara',0,0,222,'2016-10-17 10:39:41','1900-01-01 00:00:00',1,0,1),(1099,'37547','Ankavandra','ANKAVANDRA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1100,'38071','Ankazoabo','ANKAZOABO',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1101,'20154','Ankeny','ANKENY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1102,'42609','Ankleshwar','ANKLESHWAR',NULL,'','India','Ankleshwar',16,0,101,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1104,'498','Ankum','ANKUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1105,'21971','Ann Arbor','ANN ARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1106,'20427','Anna','ANNA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1107,'35893','Anna Bay','ANNA BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1108,'38450','Annaba','ANNABA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1109,'37821','Annaberg','ANNABERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1110,'22481','Annaberg','ANNABERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1111,'44115','Annaberg-buchholz','ANNABERG-BUCHHOLZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:42','1900-01-01 00:00:00',1,0,1),(1112,'7500','Annalong','ANNALONG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1113,'7501','Annan','ANNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1114,'31030','Annandale','ANNANDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1115,'27572','Annapolis','ANNAPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1116,'25691','Annapolis Royal','ANNAPOLIS ROYAL',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1117,'20428','Annawan','ANNAWAN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1118,'7502','Annbank','ANNBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1119,'6568','Annecy','ANNECY',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1120,'6569','Annecy-le-vieux','ANNECY-LE-VIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1121,'5079','Annemasse','ANNEMASSE',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1122,'26650','Annerley','ANNERLEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1123,'6876','Annesley Woodhouse','ANNESLEY WOODHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1124,'17828','Anniston','ANNISTON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1125,'6570','Annonay','ANNONAY',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1126,'40319','Annot','ANNOT',NULL,'','France','',0,0,76,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1127,'11563','Annunziata','ANNUNZIATA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1128,'29803','Annville','ANNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:43','1900-01-01 00:00:00',1,0,1),(1129,'37908','Anogia','ANOGIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1130,'22306','Anoka','ANOKA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1131,'19248','Anona','ANONA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1132,'23671','Anqing','ANQING',NULL,'','China','',0,0,46,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1133,'2335','Ans','ANS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1134,'41844','Ansalonga','ANSALONGA',NULL,'','Andorra','',0,0,5,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1135,'24367','Ansbach','ANSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1136,'13571','Anse Cochon','ANSE COCHON',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1137,'9359','Anse De Toiny','ANSE DE TOINY',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1138,'41885','Anse La Raie','ANSE LA RAIE',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1139,'35453','Ansedonia','ANSEDONIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1140,'37337','Ansfelden','ANSFELDEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1141,'23782','Anshan','ANSHAN',NULL,'','China','',0,0,46,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1142,'36013','Anshun','ANSHUN',NULL,'','China','',0,0,46,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1143,'29235','Ansonia','ANSONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1144,'31944','Ansted','ANSTED',NULL,'','United States','',0,0,231,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1145,'7503','Anstruther','ANSTRUTHER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1146,'6877','Ansty (Dorset)','ANSTY (DORSET)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1147,'867','Anta','ANTA',NULL,'','Peru','',0,0,172,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1148,'13059','Antagnod','ANTAGNOD',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:44','1900-01-01 00:00:00',1,0,1),(1149,'36800','Antakya','ANTAKYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1150,'37906','Antalaha','ANTALAHA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1151,'17249','Antalya','ANTALYA',NULL,'','Turkey','Antalya',0,0,222,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1152,'37480','Antananarivo','ANTANANARIVO',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1153,'2461','Antequera','ANTEQUERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1154,'12861','Anterselva','ANTERSELVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1155,'18099','Anthem','ANTHEM',NULL,'','United States','',0,0,231,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1156,'27155','Anthering','ANTHERING',NULL,'','Austria','',0,0,14,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1157,'21019','Anthony','ANTHONY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1158,'4843','Antibes','ANTIBES',NULL,'','France','',0,0,76,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1159,'40002','Anticoli Corrado','ANTICOLI CORRADO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1160,'31683','Antigo','ANTIGO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1161,'25692','Antigonish','ANTIGONISH',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1162,'3109','Antigua','ANTIGUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1163,'26161','Antigua','ANTIGUA',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1164,'9869','Antigua Guatemala','ANTIGUA GUATEMALA',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1165,'35855','Antigua-deep Bay','ANTIGUA-DEEP BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1166,'35857','Antigua-five Islands','ANTIGUA-FIVE ISLANDS',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1167,'35858','Antigua-jolly Beach','ANTIGUA-JOLLY BEACH',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1168,'35860','Antigua-momora Bay','ANTIGUA-MOMORA BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1169,'35862','Antigua-soldiers Bay','ANTIGUA-SOLDIERS BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:45','1900-01-01 00:00:00',1,0,1),(1170,'35863','Antigua-winthrop Bay','ANTIGUA-WINTHROP BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1171,'5433','Antilly','ANTILLY',NULL,'','France','',0,0,76,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1172,'33300','Antimony','ANTIMONY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1173,'23902','Anting','ANTING',NULL,'','China','',0,0,46,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1174,'18263','Antioch','ANTIOCH',NULL,'','United States','',0,0,231,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1175,'24125','Antioquia','ANTIOQUIA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1176,'38274','Antiparos','ANTIPAROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1177,'32873','Antlers','ANTLERS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1178,'23509','Antofagasta','ANTOFAGASTA',NULL,'','Chile','',0,0,45,'2016-10-17 10:39:46','1900-01-01 00:00:00',1,0,1),(1179,'15351','Anton','ANTON',NULL,'','Panama','',0,0,169,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1180,'14114','Anton Lizardo','ANTON LIZARDO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1181,'34700','Antonito','ANTONITO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1182,'5142','Antonne-et-trigonant','ANTONNE-ET-TRIGONANT',NULL,'','France','',0,0,76,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1183,'4661','Antony','ANTONY',NULL,'','France','',0,0,76,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1184,'9250','Antrim','ANTRIM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1185,'39397','Antsalova','ANTSALOVA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1186,'39119','Antsirabe','ANTSIRABE',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1187,'39713','Antsiranana','ANTSIRANANA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1188,'40626','Antsohihy','ANTSOHIHY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1189,'24604','Antwerp','ANTWERP',NULL,'','Belgium','Antwerp',0,0,21,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1190,'13604','Anuradhapura','ANURADHAPURA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1191,'17560','Anvik','ANVIK',NULL,'','United States','',0,0,231,'2016-10-17 10:39:47','1900-01-01 00:00:00',1,0,1),(1192,'6145','Anvin','ANVIN',NULL,'','France','',0,0,76,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1193,'43816','Anyang','ANYANG',NULL,'','China','',0,0,46,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1194,'35349','Anyer','ANYER',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1195,'40578','Anzère','ANZÈRE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1196,'6146','Anzin-saint-aubin','ANZIN-SAINT-AUBIN',NULL,'','France','',0,0,76,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1197,'11564','Anzio','ANZIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1198,'11565','Anzola Dell\'emilia','ANZOLA DELL\'EMILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1199,'16966','Ao Namao','AO NAMAO',NULL,'','Thailand','',0,0,215,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1200,'43517','Aoa','AOA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1201,'13380','Aomori','AOMORI',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1202,'42291','Aore Island','AORE ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1203,'12870','Aosta','AOSTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1204,'23951','Aotou','AOTOU',NULL,'','China','',0,0,46,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1205,'6571','Aouste-sur-sye','AOUSTE-SUR-SYE',NULL,'','France','',0,0,76,'2016-10-17 10:39:48','1900-01-01 00:00:00',1,0,1),(1206,'32247','Ap Binh Quooi','AP BINH QUOOI',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1207,'18100','Apache Junction','APACHE JUNCTION',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1208,'19249','Apalachicola','APALACHICOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1209,'28611','Apalachin','APALACHIN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1210,'10140','Apalapsili','APALAPSILI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1211,'24088','Apartado','APARTADO',NULL,'','Colombia','',0,0,49,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1212,'16112','Apataki','APATAKI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1213,'43950','Apazapan','APAZAPAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1214,'14525','Apeldoorn','APELDOORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1215,'40349','Apelern','APELERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1216,'39662','Aperion','APERION',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1217,'33758','Apex','APEX',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1218,'24368','Apfelstaedt','APFELSTAEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1219,'32340','Apia','APIA',NULL,'','Samoa','',0,0,183,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1220,'38363','Apikia','APIKIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1221,'14064','Apizaco','APIZACO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1222,'14055','Apodaca','APODACA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1223,'1957','Apolda','APOLDA',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1224,'29804','Apollo','APOLLO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1225,'26883','Apollo Bay','APOLLO BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1226,'19251','Apopka','APOPKA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1227,'23537','Apoquindo','APOQUINDO',NULL,'','Chile','',0,0,45,'2016-10-17 10:39:49','1900-01-01 00:00:00',1,0,1),(1228,'43951','Apozol','APOZOL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1229,'31031','Appalachian Plateau','APPALACHIAN PLATEAU',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1230,'23120','Appenzell','APPENZELL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1231,'37972','Appiano Gentile','APPIANO GENTILE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1232,'37759','Appietto','APPIETTO',NULL,'','France','',0,0,76,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1233,'6878','Appin','APPIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1234,'18264','Apple Valley','APPLE VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1235,'7505','Appleby','APPLEBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1236,'6879','Appledore','APPLEDORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1237,'18265','Applegate','APPLEGATE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1238,'31684','Appleton','APPLETON',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1239,'5434','Appoigny','APPOIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1240,'31032','Appomattox','APPOMATTOX',NULL,'','United States','',0,0,231,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1241,'11566','Aprica','APRICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1242,'11567','Apricale','APRICALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1243,'11568','Aprilia','APRILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:50','1900-01-01 00:00:00',1,0,1),(1244,'43876','Apt','APT',NULL,'','France','',0,0,76,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1245,'18266','Aptos','APTOS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1246,'42197','Apucarana','APUCARANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1247,'15878','Apulia','APULIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1248,'25069','Aquidauana','AQUIDAUANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1249,'38750','Aquileia','AQUILEIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1250,'43164','Aquiraz','AQUIRAZ',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1251,'17829','Arab','ARAB',NULL,'','United States','',0,0,231,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1252,'11109','Arabba','ARABBA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1253,'28495','Arabela','ARABELA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1254,'21164','Arabi','ARABI',NULL,'','United States','',0,0,231,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1255,'25226','Aracaju','ARACAJU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1256,'25054','Aracati','ARACATI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1257,'25027','Aracatuba','ARACATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1258,'3176','Aracena','ARACENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1259,'9784','Arachova','ARACHOVA',NULL,'','Greece','Arachova',0,0,86,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1260,'16207','Arad','ARAD',NULL,'','Romania','',0,0,179,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1261,'11028','Arad','ARAD',NULL,'','Israel','',0,0,106,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1262,'25061','Araguaina','ARAGUAINA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:51','1900-01-01 00:00:00',1,0,1),(1263,'42284','Arakabesang','ARAKABESANG',NULL,'','Palau','',0,0,167,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1264,'13220','Arakawa','ARAKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1265,'43735','Araku','ARAKU',NULL,'','India','',0,0,101,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1266,'26380','Aramac','ARAMAC',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1267,'38395','Aranc','ARANC',NULL,'','France','',0,0,76,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1268,'3430','Aranda De Duero','ARANDA DE DUERO',NULL,'','Spain','Aranda de Duero',0,0,199,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1269,'24233','Aranjuez','ARANJUEZ',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1270,'2977','Aranjuez','ARANJUEZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1271,'24950','Aranjuez','ARANJUEZ',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1272,'43569','Arans','ARANS',NULL,'','Andorra','',0,0,5,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1273,'30446','Aransas Pass','ARANSAS PASS',NULL,'','United States','',0,0,231,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1274,'2508','Arantzazu','ARANTZAZU',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1275,'13457','Aranuka','ARANUKA',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1276,'34701','Arapaho','ARAPAHO',NULL,'','United States','',0,0,231,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1277,'962','Arapongas','ARAPONGAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1278,'16486','Arar','ARAR',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1279,'25194','Araraquara','ARARAQUARA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1280,'26481','Ararat','ARARAT',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1281,'24098','Arauca','ARAUCA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1282,'2978','Aravaca','ARAVACA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1283,'25079','Araxa','ARAXA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:52','1900-01-01 00:00:00',1,0,1),(1284,'3837','Arba Mintch','ARBA MINTCH',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1285,'40981','Arbanasi','ARBANASI',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1286,'37385','Arbanija','ARBANIJA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1287,'12812','Arbatax','ARBATAX',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1288,'6572','Arbigny','ARBIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1289,'38079','Arboga','ARBOGA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1290,'5762','Arbois','ARBOIS',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1291,'23121','Arbon','ARBON',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1292,'38515','Arbonne','ARBONNE',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1293,'26813','Arbor','ARBOR',NULL,'','Australia','',0,0,13,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1294,'12813','Arborea','ARBOREA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1295,'7507','Arbroath','ARBROATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1296,'42786','Arbus','ARBUS',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1297,'4114','Arc 1800','ARC 1800',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1298,'4116','Arc-1600','ARC-1600',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1299,'4117','Arc-2000','ARC-2000',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1300,'5143','Arcachon','ARCACHON',NULL,'','France','',0,0,76,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1301,'41390','Arcade','ARCADE',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1302,'19252','Arcadia','ARCADIA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1303,'32434','Arcadia','ARCADIA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:39:53','1900-01-01 00:00:00',1,0,1),(1304,'5144','Arcangues','ARCANGUES',NULL,'','France','',0,0,76,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1305,'18268','Arcata','ARCATA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1306,'11569','Arce','ARCE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1307,'39469','Arcen','ARCEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1308,'1590','Arc-en-barrois','ARC-EN-BARROIS',NULL,'','France','',0,0,76,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1309,'29608','Arch Cape','ARCH CAPE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1310,'6573','Archamps','ARCHAMPS',NULL,'','France','',0,0,76,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1311,'9428','Archanes','ARCHANES',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1312,'9429','Archangelos','ARCHANGELOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1313,'37190','Archbald','ARCHBALD',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1314,'33759','Archdale','ARCHDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1315,'3028','Archena','ARCHENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1316,'5287','Arches','ARCHES',NULL,'','France','',0,0,76,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1317,'3177','Archidona','ARCHIDONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1318,'11570','Arcidosso','ARCIDOSSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1319,'11571','Arco','ARCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1320,'11572','Arcola','ARCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1321,'20430','Arcola','ARCOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:39:54','1900-01-01 00:00:00',1,0,1),(1322,'3178','Arcos De La Frontera','ARCOS DE LA FRONTERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1323,'40708','Arcos De Valdevez','ARCOS DE VALDEVEZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1324,'9430','Arcoudi','ARCOUDI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1325,'25785','Arctic Bay','ARCTIC BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1326,'17561','Arctic Village','ARCTIC VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1327,'4662','Arcueil','ARCUEIL',NULL,'','France','',0,0,76,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1328,'11573','Arcugnano','ARCUGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1329,'3179','Ardales','ARDALES',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1330,'36467','Ardalstangan','ARDALSTANGAN',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1331,'42403','Ardalstangen','ARDALSTANGEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1332,'41490','Ardara','ARDARA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1333,'11574','Ardea','ARDEA',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1334,'4118','Ardeche','ARDECHE',NULL,'','France','',0,0,76,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1335,'33760','Arden','ARDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1336,'2234','Arden','ARDEN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1337,'6880','Arden','ARDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1338,'4119','Ardennes','ARDENNES',NULL,'','France','',0,0,76,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1339,'39144','Ardersier','ARDERSIER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1340,'11575','Ardesio','ARDESIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:55','1900-01-01 00:00:00',1,0,1),(1341,'40465','Ardez','ARDEZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1342,'39639','Ardgay','ARDGAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1343,'37355','Ardgour','ARDGOUR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1344,'7508','Ardley','ARDLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1345,'10935','Ardmore','ARDMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1346,'15084','Ardmore','ARDMORE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1347,'32874','Ardmore','ARDMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1348,'5616','Ardon','ARDON',NULL,'','France','',0,0,76,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1349,'7509','Ardrishaig','ARDRISHAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1350,'39266','Ardrossan','ARDROSSAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:56','1900-01-01 00:00:00',1,0,1),(1351,'7510','Ardsley','ARDSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1352,'28612','Ardsley','ARDSLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1353,'6881','Arduaine','ARDUAINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1354,'6882','Arduanine','ARDUANINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1355,'16708','Are','ARE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1356,'39145','Areatza','AREATZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1357,'15737','Arecibo','ARECIBO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1358,'16090','Areeiro','AREEIRO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1359,'39703','Arembepe','AREMBEPE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1360,'24208','Arenal','ARENAL',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1361,'42740','Arenal D\'en Castell','ARENAL D\'EN CASTELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1362,'3180','Arenas','ARENAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:57','1900-01-01 00:00:00',1,0,1),(1363,'14856','Arendal','ARENDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1364,'751','Arendsee','ARENDSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1365,'38840','Arenys De Mar','ARENYS DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1366,'11576','Arenzano','ARENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1367,'42526','Areopoli','AREOPOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1368,'15432','Arequipa','AREQUIPA',NULL,'','Peru','Arequipa',0,0,172,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1369,'4120','Arès','ARÈS',NULL,'','France','',0,0,76,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1370,'11577','Arese','ARESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1371,'37221','Arette','ARETTE',NULL,'','France','',0,0,76,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1372,'2870','Areu','AREU',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1373,'12852','Arezzo','AREZZO',NULL,'','Italy','Arezzo',0,0,107,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1374,'2979','Arganda','ARGANDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1375,'2509','Arganzuela','ARGANZUELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1376,'9431','Argassi','ARGASSI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1377,'11578','Argegno','ARGEGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1378,'4121','Argeles Gazost','ARGELES GAZOST',NULL,'','France','',0,0,76,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1379,'42733','Argeles-gazost','ARGELES-GAZOST',NULL,'','France','',0,0,76,'2016-10-17 10:39:58','1900-01-01 00:00:00',1,0,1),(1380,'5884','Argeles-sur-mer','ARGELES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1381,'5362','Argentan','ARGENTAN',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1382,'11111','Argentario','ARGENTARIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1383,'5989','Argentat','ARGENTAT',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1384,'4663','Argenteuil','ARGENTEUIL',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1385,'6814','Argentiere','ARGENTIERE',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1386,'3513','Argentona','ARGENTONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1387,'5885','Argilliers','ARGILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1388,'37331','Argiroupoli','ARGIROUPOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1389,'3698','Argomaniz','ARGOMANIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1390,'39362','Argonay','ARGONAY',NULL,'','France','',0,0,76,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1391,'38289','Argonos','ARGONOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1392,'9789','Argos','ARGOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1393,'43412','Argostoli','ARGOSTOLI',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1394,'9779','Argostolion','ARGOSTOLION',NULL,'','Greece','',0,0,86,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1395,'2510','Arguelles - Moncloa','ARGUELLES - MONCLOA',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1396,'2511','Arguineguin','ARGUINEGUIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1397,'3312','Arguis','ARGUIS',NULL,'','Spain','',0,0,199,'2016-10-17 10:39:59','1900-01-01 00:00:00',1,0,1),(1398,'43402','Argyll','ARGYLL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1399,'9433','Arhanes','ARHANES',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1400,'11579','Ariano Irpino','ARIANO IRPINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1401,'23478','Arica','ARICA',NULL,'','Chile','',0,0,45,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1402,'35454','Ariccia','ARICCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1403,'25693','Arichat','ARICHAT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1404,'35409','Ariel','ARIEL',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1405,'39940','Arilas','ARILAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1406,'16860','Arild','ARILD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1407,'17125','Arima','ARIMA',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1408,'13221','Arima Hot Springs','ARIMA HOT SPRINGS',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1409,'25874','Arinsal','ARINSAL',NULL,'','Andorra','',0,0,5,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1410,'25070','Aripuana','ARIPUANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1411,'7511','Arisaig','ARISAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1412,'12814','Aritzo','ARITZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1413,'2512','Arizkun','ARIZKUN',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1414,'16783','Arjang','ARJANG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1415,'17978','Arkadelphia','ARKADELPHIA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1416,'38489','Arkadi','ARKADI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1417,'21020','Arkansas City','ARKANSAS CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1418,'42906','Arkaroola','ARKAROOLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:00','1900-01-01 00:00:00',1,0,1),(1419,'9798','Arkasa','ARKASA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1420,'31686','Arkdale','ARKDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1421,'16252','Arkhangelsk','ARKHANGELSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1422,'10955','Arklow','ARKLOW',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1423,'36375','Arkoudi','ARKOUDI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1424,'16658','Arlanda','ARLANDA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1425,'41061','Arlandastad','ARLANDASTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1426,'6381','Arles','ARLES',NULL,'','France','',0,0,76,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1427,'38612','Arlesheim','ARLESHEIM',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1428,'33067','Arlington','ARLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1429,'24691','Arlon','ARLON',NULL,'','Belgium','',0,0,21,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1430,'11580','Arluno','ARLUNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1431,'35455','Arma Di Taggia','ARMA DI TAGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:01','1900-01-01 00:00:00',1,0,1),(1432,'15919','Armacao De Pera','ARMACAO DE PERA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1433,'36584','Armacao-porches','ARMACAO-PORCHES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1434,'26482','Armadale','ARMADALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1435,'40695','Armagh','ARMAGH',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1436,'7512','Armagh','ARMAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1437,'37545','Armamar','ARMAMAR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1438,'6147','Armbouts-cappel','ARMBOUTS-CAPPEL',NULL,'','France','',0,0,76,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1439,'44170','Armeni','ARMENI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1440,'24120','Armenia','ARMENIA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1441,'9638','Armenistis','ARMENISTIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1442,'11581','Armeno','ARMENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1443,'40366','Armeria','ARMERIA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1444,'34081','Armidale','ARMIDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1445,'3181','Armilla','ARMILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1446,'3699','Arminza','ARMINZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1447,'28613','Armonk','ARMONK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1448,'39359','Armuña De Almanzora','ARMUÑA DE ALMANZORA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1449,'6211','Arnage','ARNAGE',NULL,'','France','',0,0,76,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1450,'21166','Arnaudville','ARNAUDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:02','1900-01-01 00:00:00',1,0,1),(1451,'17261','Arnavutkoy','ARNAVUTKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1452,'5435','Arnay-le-duc','ARNAY-LE-DUC',NULL,'','France','',0,0,76,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1453,'37889','Arnaz','ARNAZ',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1454,'34082','Arncliffe','ARNCLIFFE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1455,'6884','Arncott','ARNCOTT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1456,'43057','Arnea','ARNEA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1457,'39494','Arneburg','ARNEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1458,'2957','Arnedillo','ARNEDILLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1459,'2958','Arnedo','ARNEDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1460,'25579','Arnes','ARNES',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1461,'3514','Arnes','ARNES',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1462,'40337','Arnesano','ARNESANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1463,'14526','Arnhem','ARNHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1464,'43686','Arnhem Island','ARNHEM ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1465,'6885','Arniston','ARNISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1466,'14145','Arno','ARNO',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1467,'7513','Arnold','ARNOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1468,'21635','Arnold','ARNOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:03','1900-01-01 00:00:00',1,0,1),(1469,'20155','Arnolds Park','ARNOLDS PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1470,'34435','Arnprior','ARNPRIOR',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1471,'22690','Arnsberg','ARNSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1472,'1958','Arnstadt','ARNSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1473,'40359','Arnuero','ARNUERO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1474,'23122','Arolla','AROLLA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1475,'12934','Arona','ARONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1476,'3356','Arona','ARONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1477,'13458','Arorae Island','ARORAE ISLAND',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1478,'24074','Arorangi','ARORANGI',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1479,'23123','Arosa','AROSA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1480,'42698','Arouca','AROUCA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1481,'17128','Arouca','AROUCA',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1482,'4122','Arpaillargues','ARPAILLARGUES',NULL,'','France','',0,0,76,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1483,'5288','Arpajon-sur-cere','ARPAJON-SUR-CERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1484,'11582','Arpino','ARPINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1485,'26173','Arrabury','ARRABURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1486,'39392','Arraial Dajuda','ARRAIAL DAJUDA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:40:04','1900-01-01 00:00:00',1,0,1),(1487,'15911','Arraiolos','ARRAIOLOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1488,'37218','Arranmore Island','ARRANMORE ISLAND',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1489,'5013','Arras','ARRAS',NULL,'','France','',0,0,76,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1490,'6886','Arrathorne','ARRATHORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1491,'11583','Arre','ARRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1492,'5027','Arreau','ARREAU',NULL,'','France','',0,0,76,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1493,'3357','Arrecife','ARRECIFE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1494,'40596','Arriate','ARRIATE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1495,'3075','Arriondas','ARRIONDAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1496,'7514','Arrochar','ARROCHAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1497,'5363','Arromanches-les-bains','ARROMANCHES-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1498,'3515','Arros','ARROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1499,'15085','Arrowtown','ARROWTOWN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1500,'3431','Arroyo','ARROYO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1501,'18270','Arroyo Grande','ARROYO GRANDE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1502,'38068','Arroyo Seco','ARROYO SECO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1503,'6320','Ars-en-re','ARS-EN-RE',NULL,'','France','',0,0,76,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1504,'16735','Arsta','ARSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:05','1900-01-01 00:00:00',1,0,1),(1505,'9854','Arsuk','ARSUK',NULL,'','Greenland','',0,0,87,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1506,'9769','Arta','ARTA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1507,'2881','Arta','ARTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1508,'10091','Artand','ARTAND',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1509,'34083','Artarmon','ARTARMON',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1510,'13958','Arteaga','ARTEAGA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1511,'2946','Arteixo','ARTEIXO',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1512,'42315','Artena','ARTENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1513,'18271','Artesia','ARTESIA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:06','1900-01-01 00:00:00',1,0,1),(1514,'17562','Artesian Village','ARTESIAN VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1515,'20432','Arthur','ARTHUR',NULL,'','United States','',0,0,231,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1516,'15179','Arthur\'s Pass','ARTHUR\'S PASS',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1517,'24823','Arthurs Town','ARTHURS TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1518,'10707','Arthurstown','ARTHURSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1519,'3516','Arties','ARTIES',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1520,'17526','Artigas','ARTIGAS',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1521,'41588','Artigues','ARTIGUES',NULL,'','France','',0,0,76,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1522,'43877','Artigues-pres-bordeaux','ARTIGUES-PRES-BORDEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1523,'11584','Artimino','ARTIMINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1524,'2513','Arturo Soria - Ciudad Lineal','ARTURO SORIA - CIUDAD LINEAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1525,'43618','Artvin','ARTVIN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:07','1900-01-01 00:00:00',1,0,1),(1526,'17476','Arua','ARUA',NULL,'','Uganda','',0,0,226,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1527,'1','Aruba','ARUBA',NULL,'','Aruba','',0,0,12,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1528,'34832','Aruba-druif Beach','ARUBA-DRUIF BEACH',NULL,'','Aruba','',0,0,12,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1529,'34833','Aruba-eagle Beach','ARUBA-EAGLE BEACH',NULL,'','Aruba','',0,0,12,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1530,'16153','Arue','ARUE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1531,'9276','Arundel','ARUNDEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1532,'16968','Arunothai Beach','ARUNOTHAI BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1533,'17453','Arusha','ARUSHA',NULL,'','Tanzania','Arusha',0,0,214,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1534,'24066','Arutanga','ARUTANGA',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1535,'16113','Arutua','ARUTUA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1536,'34702','Arvada','ARVADA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1537,'43878','Arveyres','ARVEYRES',NULL,'','France','',0,0,76,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1538,'25786','Arviat','ARVIAT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1539,'16748','Arvidsjaur','ARVIDSJAUR',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1540,'6382','Arvieux','ARVIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1541,'16784','Arvika','ARVIKA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1542,'9639','Aryiroupolis','ARYIROUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:08','1900-01-01 00:00:00',1,0,1),(1543,'12759','Arzachena','ARZACHENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1544,'42701','Arzano','ARZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1545,'23124','Arzier','ARZIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1546,'12','Arzl Im Piztal','ARZL IM PIZTAL',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1547,'5511','Arzon','ARZON',NULL,'','France','',0,0,76,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1548,'43781','As','AS',NULL,'','Belgium','',0,0,21,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1549,'13222','Asahi','ASAHI',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1550,'13388','Asahikawa','ASAHIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1551,'43901','Asakura','ASAKURA',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1552,'35794','Asan','ASAN',NULL,'','South Korea','',0,0,197,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1553,'16709','Asarna','ASARNA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1554,'32336','Asau','ASAU',NULL,'','Samoa','',0,0,183,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1555,'25938','Asbestos Hill','ASBESTOS HILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1556,'31945','Asbury','ASBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1557,'5145','Ascain','ASCAIN',NULL,'','France','',0,0,76,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1558,'38388','Ascea','ASCEA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1559,'22691','Aschaffenburg','ASCHAFFENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:09','1900-01-01 00:00:00',1,0,1),(1560,'694','Aschau','ASCHAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1561,'695','Ascheberg','ASCHEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1562,'1921','Aschersleben','ASCHERSLEBEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1563,'22692','Aschheim','ASCHHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1564,'11112','Asciano','ASCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1565,'26098','Ascochinga','ASCOCHINGA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1566,'12982','Ascoli Piceno','ASCOLI PICENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1567,'23125','Ascona','ASCONA',NULL,'','Switzerland','Ascona',0,0,210,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1568,'26949','Ascot','ASCOT',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1569,'7515','Ascot','ASCOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1570,'31289','Ascutney','ASCUTNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1571,'3838','Asela','ASELA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1572,'499','Asendorf','ASENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1573,'15017','Aseral','ASERAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1574,'24246','Aserri','ASERRI',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1575,'14784','Asgardstrand','ASGARDSTRAND',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1576,'18101','Ash Fork','ASH FORK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1577,'7517','Ashbourne','ASHBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:10','1900-01-01 00:00:00',1,0,1),(1578,'10908','Ashbourne','ASHBOURNE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1579,'40911','Ashbourne, Co Meath','ASHBOURNE, CO MEATH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1580,'31035','Ashburn','ASHBURN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1581,'21298','Ashburnham','ASHBURNHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1582,'7518','Ashburton','ASHBURTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1583,'15087','Ashburton','ASHBURTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1584,'7519','Ashby De La Zouch','ASHBY DE LA ZOUCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1585,'44183','Ashby-de-la-zouch','ASHBY-DE-LA-ZOUCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1586,'24','Ashcroft','ASHCROFT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1587,'11062','Ashdod','ASHDOD',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1588,'17979','Ashdown','ASHDOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1589,'33761','Asheboro','ASHEBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1590,'33762','Asheville','ASHEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1591,'34084','Ashfield','ASHFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1592,'7520','Ashford','ASHFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1593,'31433','Ashford','ASHFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1594,'38360','Ashford','ASHFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:11','1900-01-01 00:00:00',1,0,1),(1595,'17108','Ashgabat','ASHGABAT',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1596,'26652','Ashgrove','ASHGROVE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1597,'38437','Ashigarashimo','ASHIGARASHIMO',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1598,'7521','Ashington','ASHINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1599,'13223','Ashiya','ASHIYA',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1600,'11029','Ashkelon','ASHKELON',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1601,'17105','Ashkhabad','ASHKHABAD',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1602,'34074','Ashland','ASHLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1603,'26653','Ashmore','ASHMORE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1604,'29237','Ashtabula','ASHTABULA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:12','1900-01-01 00:00:00',1,0,1),(1605,'20327','Ashton','ASHTON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1606,'7522','Ashton In Makerfield','ASHTON IN MAKERFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1607,'6887','Ashton-under-lyne','ASHTON-UNDER-LYNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1608,'32161','Ashtown','ASHTOWN',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1609,'39895','Ashville','ASHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1610,'11585','Asiago','ASIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1611,'41400','Asilah','ASILAH',NULL,'','Morocco','',0,0,148,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1612,'14842','Asker','ASKER',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1613,'16758','Askersund','ASKERSUND',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1614,'14959','Askim','ASKIM',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1615,'7523','Askrigg','ASKRIGG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1616,'2458','Asmara','ASMARA',NULL,'','Eritrea','',0,0,68,'2016-10-17 10:40:13','1900-01-01 00:00:00',1,0,1),(1617,'5436','Asnieres','ASNIERES',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1618,'6321','Asnieres-sur-nouere','ASNIERES-SUR-NOUERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1619,'43879','Asnieres-sur-seine','ASNIERES-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1620,'42863','Aso','ASO',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1621,'11586','Asolo','ASOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1622,'3839','Asosa','ASOSA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1623,'7524','Aspatria','ASPATRIA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1624,'34703','Aspen','ASPEN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1625,'22482','Asperg','ASPERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1626,'37185','Aspermont','ASPERMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1627,'37870','Aspers','ASPERS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1628,'43307','Aspin En Lavedan','ASPIN EN LAVEDAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1629,'5028','Aspin-en-lavedan','ASPIN-EN-LAVEDAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1630,'7525','Aspley Guise','ASPLEY GUISE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1631,'11114','Aspra','ASPRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1632,'39299','Asprangeloi','ASPRANGELOI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1633,'37339','Aspres-sur-buech','ASPRES-SUR-BUECH',NULL,'','France','',0,0,76,'2016-10-17 10:40:14','1900-01-01 00:00:00',1,0,1),(1634,'9640','Asprovalta','ASPROVALTA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1635,'38777','Assaf Harofeh','ASSAF HAROFEH',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1636,'11115','Assago','ASSAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1637,'12815','Assemini','ASSEMINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1638,'14492','Assen','ASSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1639,'2185','Assens','ASSENS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1640,'11116','Assenza Di Brenzone','ASSENZA DI BRENZONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1641,'6281','Assevillers','ASSEVILLERS',NULL,'','France','',0,0,76,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1642,'22936','Assiniboia','ASSINIBOIA',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1643,'11587','Assisi','ASSISI',NULL,'','Italy','Assisi',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1644,'35466','Assisi-bettona','ASSISI-BETTONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1645,'2416','Assiut','ASSIUT',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1646,'24369','Assmannshausen','ASSMANNSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1647,'37734','Assos','ASSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1648,'36801','Assos','ASSOS',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1649,'42525','Astakos','ASTAKOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1650,'13435','Astana','ASTANA',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1651,'14588','Asten','ASTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1652,'12798','Asti','ASTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1653,'6888','Aston','ASTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:15','1900-01-01 00:00:00',1,0,1),(1654,'29805','Aston Mills','ASTON MILLS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1655,'37216','Astor','ASTOR',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1656,'3432','Astorga','ASTORGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1657,'28615','Astoria','ASTORIA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1658,'16306','Astrakhan','ASTRAKHAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1659,'43058','Astros','ASTROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1660,'1414','Asturias','ASTURIAS',NULL,'','SPAIN','',0,0,199,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1661,'42524','Astypalaia','ASTYPALAIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1662,'43177','Asuncion','ASUNCION',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1663,'16108','Asuncion','ASUNCION',NULL,'','Paraguay','',0,0,171,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1664,'2454','Aswan','ASWAN',NULL,'','Egypt','Aswan',0,0,65,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1665,'10348','Atambua','ATAMBUA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1666,'13224','Atami','ATAMI',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1667,'32345','Ataq','ATAQ',NULL,'','Yemen','',0,0,240,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1668,'3182','Atarfe','ATARFE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1669,'18273','Atascadero','ATASCADERO',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1670,'30448','Atascosa','ATASCOSA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:16','1900-01-01 00:00:00',1,0,1),(1671,'36795','Atata Island','ATATA ISLAND',NULL,'','Tonga','',0,0,218,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1672,'17196','Ataturk International Airport (Ist)','ATATURK INTERNATIONAL AIRPORT (IST)',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1673,'21022','Atchison','ATCHISON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1674,'15403','Ate','ATE',NULL,'','Peru','',0,0,172,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1675,'11588','Atena Lucana','ATENA LUCANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1676,'24195','Atenas','ATENAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1677,'25269','Athabasca','ATHABASCA',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1678,'40479','Athboy','ATHBOY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1679,'41968','Athenry','ATHENRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1680,'9434','Athens','ATHENS',NULL,'','Greece','Athens',0,0,86,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1681,'28616','Athens','ATHENS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1682,'7527','Atherstone','ATHERSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1683,'18274','Atherton','ATHERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1684,'26654','Atherton','ATHERTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1685,'6889','Atherton','ATHERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:17','1900-01-01 00:00:00',1,0,1),(1686,'39378','Athirapally','ATHIRAPALLY',NULL,'','India','Athirappilly',3,0,101,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1687,'4664','Athis-mons','ATHIS-MONS',NULL,'','France','',0,0,76,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1688,'10942','Athlone','ATHLONE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1689,'20328','Athol','ATHOL',NULL,'','United States','',0,0,231,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1690,'34383','Atholville','ATHOLVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1691,'42610','Athoor','ATHOOR',NULL,'','India','',0,0,101,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1692,'44316','Athos','ATHOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1693,'44252','Athuruga','ATHURUGA',NULL,'','Maldives','',0,0,133,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1694,'10886','Athy','ATHY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1695,'25195','Atibaia','ATIBAIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1696,'34437','Atikokan','ATIKOKAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1697,'41753','Atitlan','ATITLAN',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1698,'24067','Atiu','ATIU',NULL,'','Cook Islands','',0,0,53,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1699,'14104','Atizapan De Zaragoza','ATIZAPAN DE ZARAGOZA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1700,'17563','Atka','ATKA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1701,'31037','Atkins','ATKINS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1702,'13775','Atlacomulco','ATLACOMULCO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1703,'37071','Atlandtida','ATLANDTIDA',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1704,'19701','Atlanta','ATLANTA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:18','1900-01-01 00:00:00',1,0,1),(1705,'36845','Atlanta-hartsfield','ATLANTA-HARTSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1706,'20156','Atlantic','ATLANTIC',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1707,'39079','Atlantida','ATLANTIDA',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1708,'1664','Atlit','ATLIT',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1709,'14065','Atlixco','ATLIXCO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1710,'17483','Atman','ATMAN',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1711,'17564','Atmautluak','ATMAUTLUAK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1712,'17833','Atmore','ATMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1713,'16537','Atoifi','ATOIFI',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1714,'32876','Atoka','ATOKA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:19','1900-01-01 00:00:00',1,0,1),(1715,'14011','Atoyac','ATOYAC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1716,'17565','Atqasuk','ATQASUK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1717,'11117','Atrani','ATRANI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1718,'38293','Atri','ATRI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1719,'13120','Atsubetsu','ATSUBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1720,'13395','Atsugi','ATSUGI',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1721,'17834','Attalla','ATTALLA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1722,'14194','Attard','ATTARD',NULL,'','Malta','',0,0,135,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1723,'34438','Attawapiskat','ATTAWAPISKAT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1724,'22693','Attenkirchen','ATTENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1725,'27122','Attersee','ATTERSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1726,'10490','Attibele','ATTIBELE',NULL,'','India','',0,0,101,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1727,'28617','Attica','ATTICA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1728,'37996','Attigliano','ATTIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1729,'21300','Attleboro','ATTLEBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1730,'37476','Attleborough','ATTLEBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1731,'43704','Attwood','ATTWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1732,'16154','Atuona','ATUONA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1733,'13609','Aturuwella','ATURUWELLA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:40:20','1900-01-01 00:00:00',1,0,1),(1734,'22310','Atwater','ATWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1735,'13436','Atyrau','ATYRAU',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1736,'6383','Aubagne','AUBAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1737,'5886','Aubais','AUBAIS',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1738,'4123','Aube','AUBE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1739,'6574','Aubenas','AUBENAS',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1740,'5709','Auberive','AUBERIVE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1741,'4665','Aubervilliers','AUBERVILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1742,'5019','Aubiere','AUBIERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1743,'40141','Aubignan','AUBIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1744,'4124','Aubigné-racan','AUBIGNÉ-RACAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1745,'5617','Aubigny-sur-nere','AUBIGNY-SUR-NERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1746,'17835','Auburn','AUBURN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:21','1900-01-01 00:00:00',1,0,1),(1747,'21303','Auburndale','AUBURNDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1748,'5364','Aubusson','AUBUSSON',NULL,'','France','',0,0,76,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1749,'26655','Auchenflower','AUCHENFLOWER',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1750,'7528','Auchterarder','AUCHTERARDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1751,'15180','Auckland','AUCKLAND',NULL,'','New Zealand','Auckland',0,0,157,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1752,'36510','Auckland-manukau','AUCKLAND-MANUKAU',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1753,'36513','Auckland-takapuna','AUCKLAND-TAKAPUNA',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1754,'9314','Audenshaw','AUDENSHAW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1755,'5512','Audierne','AUDIERNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1756,'5365','Audrieu','AUDRIEU',NULL,'','France','',0,0,76,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1757,'28189','Audubon','AUDUBON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1758,'22483','Auendorf','AUENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1759,'22484','Auerbach','AUERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1760,'22694','Aufkirchen','AUFKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:22','1900-01-01 00:00:00',1,0,1),(1761,'5618','Augerville-la-riviere','AUGERVILLE-LA-RIVIERE',NULL,'','France','',0,0,76,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1762,'10956','Aughrim','AUGHRIM',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1763,'6016','Augny','AUGNY',NULL,'','France','',0,0,76,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1764,'22695','Augsburg','AUGSBURG',NULL,'','Germany','Augsburg',0,0,83,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1765,'13090','August Town','AUGUST TOWN',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1766,'21976','Augusta','AUGUSTA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1767,'39456','Augusta','AUGUSTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1768,'26578','Augusta','AUGUSTA',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1769,'2288','Augustenborg','AUGUSTENBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1770,'15681','Augustow','AUGUSTOW',NULL,'','Poland','',0,0,174,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1771,'27123','Auhof','AUHOF',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1772,'16538','Auki','AUKI',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1773,'25694','Auld Cove','AULD COVE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:23','1900-01-01 00:00:00',1,0,1),(1774,'22485','Aulendorf','AULENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1775,'40506','Auli','AULI',NULL,'','India','Auli',9,0,101,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1776,'11589','Aulla','AULLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1777,'5289','Aulnat','AULNAT',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1778,'43094','Aulnay Sous Bois','AULNAY SOUS BOIS',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1779,'4125','Aulnay-sous-bois','AULNAY-SOUS-BOIS',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1780,'5990','Aulon','AULON',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1781,'38716','Ault','AULT',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1782,'7529','Aultbea','AULTBEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1783,'5793','Aumale','AUMALE',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1784,'5887','Aumont-aubrac','AUMONT-AUBRAC',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1785,'5619','Aunay-sous-crecy','AUNAY-SOUS-CRECY',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1786,'25939','Aupaluk','AUPALUK',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1787,'6384','Aups','AUPS',NULL,'','France','',0,0,76,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1788,'14146','Aur','AUR',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1789,'2072','Aurach','AURACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:24','1900-01-01 00:00:00',1,0,1),(1790,'10491','Aurangabad','AURANGABAD',NULL,'','India','Aurangabad',5,0,101,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1791,'5513','Auray','AURAY',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1792,'5146','Aureilhan','AUREILHAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1793,'4844','Auribeau-sur-siagne','AURIBEAU-SUR-SIAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1794,'22486','Aurich','AURICH',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1795,'5290','Aurillac','AURILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1796,'3047','Auritz-burguete','AURITZ-BURGUETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1797,'36469','Aurland','AURLAND',NULL,'','Norway','Aurland',0,0,164,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1798,'6385','Auron','AURON',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1799,'6386','Aurons','AURONS',NULL,'','France','',0,0,76,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1800,'39702','Auronzo Di Cadore','AURONZO DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1801,'34705','Aurora','AURORA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:25','1900-01-01 00:00:00',1,0,1),(1802,'34439','Aurora','AURORA',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1803,'26176','Aurukun Mission','AURUKUN MISSION',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1804,'23476','Ausserberg','AUSSERBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1805,'23126','Aussersihl','AUSSERSIHL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1806,'6575','Aussois','AUSSOIS',NULL,'','France','',0,0,76,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1807,'19705','Austell','AUSTELL',NULL,'','United States','',0,0,231,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1808,'28620','Austerlitz','AUSTERLITZ',NULL,'','United States','',0,0,231,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1809,'22311','Austin','AUSTIN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:26','1900-01-01 00:00:00',1,0,1),(1810,'30454','Austin-bergstrom International Airport (Aus)','AUSTIN-BERGSTROM INTERNATIONAL AIRPORT (AUS)',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1811,'29241','Austinburg','AUSTINBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1812,'29243','Austintown','AUSTINTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1813,'41725','Austrian Alps','AUSTRIAN ALPS',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1814,'4949','Autrans','AUTRANS',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1815,'5437','Autun','AUTUN',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1816,'5438','Auxerre','AUXERRE',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1817,'5888','Auxillac','AUXILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1818,'38548','Auxonne','AUXONNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1819,'5991','Auzances','AUZANCES',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1820,'27576','Ava','AVA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1821,'40089','Availles-en-chatellerault','AVAILLES-EN-CHATELLERAULT',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1822,'14785','Avaldsnes','AVALDSNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1823,'4126','Avallon','AVALLON',NULL,'','France','',0,0,76,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1824,'43685','Avalon','AVALON',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1825,'18277','Avalon','AVALON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1826,'14029','Avandaro','AVANDARO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1827,'17184','Avanos','AVANOS',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:27','1900-01-01 00:00:00',1,0,1),(1828,'16155','Avatoru','AVATORU',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1829,'44310','Avaza','AVAZA',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1830,'38019','Avdira','AVDIRA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1831,'9437','Avdou','AVDOU',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1832,'7530','Avebury','AVEBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1833,'15849','Aveiro','AVEIRO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1834,'39561','Avelengo','AVELENGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1835,'29807','Avella','AVELLA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1836,'26064','Avellaneda','AVELLANEDA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1837,'11590','Avellino','AVELLINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1838,'35659','Avellino-solofra','AVELLINO-SOLOFRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1839,'4127','Avenay-val-d Or','AVENAY-VAL-D OR',NULL,'','France','',0,0,76,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1840,'23127','Avenches','AVENCHES',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1841,'28191','Avenel','AVENEL',NULL,'','United States','',0,0,231,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1842,'37958','Avensan','AVENSAN',NULL,'','France','',0,0,76,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1843,'19255','Aventura','AVENTURA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1844,'31291','Averill','AVERILL',NULL,'','United States','',0,0,231,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1845,'5291','Avermes','AVERMES',NULL,'','France','',0,0,76,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1846,'14786','Averoy','AVEROY',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:28','1900-01-01 00:00:00',1,0,1),(1847,'39041','Aversa','AVERSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1848,'6212','Avessac','AVESSAC',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1849,'16737','Avesta','AVESTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1850,'38591','Avetrana','AVETRANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1851,'4128','Aveyron','AVEYRON',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1852,'40449','Aveze','AVEZE',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1853,'11591','Avezzano','AVEZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1854,'9641','Avgonima','AVGONIMA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1855,'42316','Aviano','AVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1856,'11119','Aviatico','AVIATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1857,'7531','Aviemore','AVIEMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1858,'36225','Aviernoz','AVIERNOZ',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1859,'11592','Avigliana','AVIGLIANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1860,'5763','Avignon','AVIGNON',NULL,'','France','',0,0,76,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1861,'2515','Avila','AVILA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1862,'18278','Avila Beach','AVILA BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1863,'3076','Aviles','AVILES',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1864,'30455','Avinger','AVINGER',NULL,'','United States','',0,0,231,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1865,'2517','Avinyonet De Puigventos','AVINYONET DE PUIGVENTOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:29','1900-01-01 00:00:00',1,0,1),(1866,'20436','Aviston','AVISTON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1867,'2270','Avlum','AVLUM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1868,'29808','Avoca','AVOCA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1869,'41494','Avoca','AVOCA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1870,'34085','Avoca Beach','AVOCA BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1871,'5366','Avoine','AVOINE',NULL,'','France','',0,0,76,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1872,'6213','Avoise','AVOISE',NULL,'','France','',0,0,76,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1873,'40748','Avola','AVOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1874,'33766','Avon','AVON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1875,'5837','Avon','AVON',NULL,'','France','',0,0,76,'2016-10-17 10:40:30','1900-01-01 00:00:00',1,0,1),(1876,'18102','Avondale','AVONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1877,'26177','Avondale Heights','AVONDALE HEIGHTS',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1878,'5620','Avord','AVORD',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1879,'5080','Avoriaz','AVORIAZ',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1880,'4989','Avranches','AVRANCHES',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1881,'41585','Avranches-mont-saint-michel','AVRANCHES-MONT-SAINT-MICHEL',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1882,'6017','Avricourt','AVRICOURT',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1883,'6214','Avrille','AVRILLE',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1884,'22994','Avry-devant-pont','AVRY-DEVANT-PONT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1885,'16436','Avtovo','AVTOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1886,'16539','Avu Avu','AVU AVU',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1887,'35706','Awaji','AWAJI',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1888,'43066','Awajishima','AWAJISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1889,'3840','Awareh','AWAREH',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1890,'2445','Awsim','AWSIM',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1891,'42806','Ax Les Thermes','AX LES THERMES',NULL,'','France','',0,0,76,'2016-10-17 10:40:31','1900-01-01 00:00:00',1,0,1),(1892,'37179','Axams','AXAMS',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1893,'9260','Axbridge','AXBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1894,'4855','Ax-les-thermes','AX-LES-THERMES',NULL,'','France','',0,0,76,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1895,'7532','Axminster','AXMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1896,'3841','Axum','AXUM',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1897,'15389','Ayacucho','AYACUCHO',NULL,'','Peru','',0,0,172,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1898,'41329','Ayala','AYALA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1899,'3183','Ayamonte','AYAMONTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1900,'14030','Ayapango','AYAPANGO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1901,'39893','Ayas','AYAS',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1902,'10141','Ayawasi','AYAWASI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1903,'17324','Aydin','AYDIN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1904,'3048','Ayegui','AYEGUI',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1905,'38847','Ayen','AYEN',NULL,'','France','',0,0,76,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1906,'21305','Ayer','AYER',NULL,'','United States','',0,0,231,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1907,'3313','Ayerbe','AYERBE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1908,'25940','Ayers Cliff','AYERS CLIFF',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1909,'35898','Ayers Rock','AYERS ROCK',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1910,'24279','Ayia Marina','AYIA MARINA',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1911,'9642','Ayia Varvara','AYIA VARVARA',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1912,'9643','Ayioi Anaryiroi','AYIOI ANARYIROI',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1913,'9644','Ayios Dhimitrios','AYIOS DHIMITRIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:32','1900-01-01 00:00:00',1,0,1),(1914,'7533','Aylesbury','AYLESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1915,'43232','Aylesford','AYLESFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1916,'25941','Aylmer','AYLMER',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1917,'7534','Aylmerton','AYLMERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1918,'37291','Ayna','AYNA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1919,'35899','Ayr','AYR',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1920,'7535','Ayr','AYR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1921,'6890','Ayrshire','AYRSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1922,'26656','Ayton','AYTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1923,'39790','Aytre','AYTRE',NULL,'','France','',0,0,76,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1925,'14012','Ayutla','AYUTLA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1926,'36726','Ayutthaya','AYUTTHAYA',NULL,'','Thailand','',0,0,215,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1927,'17348','Ayvali','AYVALI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1928,'17232','Ayvalik','AYVALIK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1929,'38473','Aywaille','AYWAILLE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1930,'19257','Azalea Park','AZALEA PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:33','1900-01-01 00:00:00',1,0,1),(1931,'15912','Azaruja','AZARUJA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1932,'4129','Azay Le Rideau','AZAY LE RIDEAU',NULL,'','France','',0,0,76,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1933,'41584','Azay-le-rideau','AZAY-LE-RIDEAU',NULL,'','France','',0,0,76,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1934,'13970','Azcapotzalco','AZCAPOTZALCO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1935,'36563','Azeitao','AZEITAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1936,'6018','Azerailles','AZERAILLES',NULL,'','France','',0,0,76,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1937,'30456','Azle','AZLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1938,'38525','Aznalcázar','AZNALCÁZAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1939,'2959','Azofra','AZOFRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1940,'11069','Azor','AZOR',NULL,'','Israel','',0,0,106,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1941,'1573','Azores','AZORES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1942,'40087','Azpeitia','AZPEITIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1943,'28498','Aztec','AZTEC',NULL,'','United States','',0,0,231,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1944,'41741','Azul','AZUL',NULL,'','Argentina','',0,0,10,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1945,'42864','Azumino','AZUMINO',NULL,'','Japan','',0,0,110,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1946,'3398','Azuqueca De Henares','AZUQUECA DE HENARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1947,'16024','Azurara','AZURARA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1948,'18279','Azusa','AZUSA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:34','1900-01-01 00:00:00',1,0,1),(1949,'11594','Azzate','AZZATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1950,'32277','Ba Queo','BA QUEO',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1951,'13719','Baa Atoll','BAA ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1952,'43140','Baalbeck','BAALBECK',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1953,'23128','Baar','BAAR',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1954,'14565','Baarlo','BAARLO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1955,'14676','Baarn','BAARN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1956,'16660','Baastad','BAASTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1957,'22313','Babbitt','BABBITT',NULL,'','United States','',0,0,231,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1958,'42285','Babeldaob','BABELDAOB',NULL,'','Palau','',0,0,167,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1959,'387','Babenhausen','BABENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1960,'10306','Babo','BABO',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1961,'21306','Babson Park','BABSON PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1962,'16311','Babushkin','BABUSHKIN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1963,'28624','Babylon','BABYLON',NULL,'','United States','',0,0,231,'2016-10-17 10:40:35','1900-01-01 00:00:00',1,0,1),(1964,'34707','Baca Grande','BACA GRANDE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1965,'39387','Bacalar','BACALAR',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1966,'16208','Bacau','BACAU',NULL,'','Romania','',0,0,179,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1967,'35460','Baccaiano','BACCAIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1968,'6019','Baccarat','BACCARAT',NULL,'','France','',0,0,76,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1969,'2044','Bacharach','BACHARACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1970,'6891','Backbarrow','BACKBARROW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1971,'39470','Baclayon','BACLAYON',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1972,'30457','Bacliff','BACLIFF',NULL,'','United States','',0,0,231,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1973,'11595','Bacoli','BACOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1974,'15479','Bacolod','BACOLOD',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1975,'7536','Bacton','BACTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1976,'22696','Bad Aibling','BAD AIBLING',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1977,'24409','Bad Aussee','BAD AUSSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1978,'21977','Bad Axe','BAD AXE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:36','1900-01-01 00:00:00',1,0,1),(1979,'23129','Bad Ragaz','BAD RAGAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:42','1900-01-01 00:00:00',1,0,1),(1980,'3314','Badaguás','BADAGUÁS',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1981,'3631','Badajoz','BADAJOZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1982,'3517','Badalona','BADALONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1983,'42611','Badami','BADAMI',NULL,'','India','Badami',17,0,101,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1984,'42989','Badaran','BADARAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1985,'2960','Badarán','BADARÁN',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1986,'25695','Baddeck','BADDECK',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:44','1900-01-01 00:00:00',1,0,1),(1987,'40555','Baddi','BADDI',NULL,'','India','Baddi',1,0,101,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1988,'10218','Bade','BADE',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1989,'24540','Baden','BADEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1990,'39463','Baden','BADEN',NULL,'','France','',0,0,76,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1991,'23427','Baden','BADEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1992,'22502','Baden-baden','BADEN-BADEN',NULL,'','Germany','Baden-Baden',0,0,83,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1993,'22503','Badenweiler','BADENWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1994,'12760','Badesi','BADESI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1995,'35873','Badgastein','BADGASTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1996,'14622','Badhoevedorp','BADHOEVEDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1997,'15439','Badian','BADIAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1998,'15291','Badin','BADIN',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(1999,'6892','Badminton','BADMINTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2000,'11596','Badolato','BADOLATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2001,'10383','Badrinath','BADRINATH',NULL,'','India','Badrinath',9,0,101,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2002,'7537','Badsworth','BADSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2003,'26178','Badu Island','BADU ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2004,'6020','Baerenthal','BAERENTHAL',NULL,'','France','',0,0,76,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2005,'44020','Baerum','BAERUM',NULL,'','Norway','',0,0,164,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2006,'3184','Baeza','BAEZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:45','1900-01-01 00:00:00',1,0,1),(2007,'24012','Bafoussam','BAFOUSSAM',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2008,'36395','Bagan','BAGAN',NULL,'','Myanmar','',0,0,150,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2009,'42622','Bagani','BAGANI',NULL,'','Namibia','',0,0,151,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2010,'42612','Bagar','BAGAR',NULL,'','India','',0,0,101,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2011,'18103','Bagdad','BAGDAD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2012,'10384','Bagdogra','BAGDOGRA',NULL,'','India','Bagdogra',12,0,101,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2013,'43242','Bagergue','BAGERGUE',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2014,'38784','Bageshwar','BAGESHWAR',NULL,'','India','Bageshwar',9,0,101,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2015,'3908','Baggholma','BAGGHOLMA',NULL,'','Finland','',0,0,75,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2016,'11597','Baggio','BAGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2017,'42266','Baghdad','BAGHDAD',NULL,'','Iraq','',0,0,104,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2018,'11598','Bagheria','BAGHERIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2019,'11599','Bagnacavallo','BAGNACAVALLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2020,'11600','Bagnaia','BAGNAIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2021,'11121','Bagnatica','BAGNATICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2022,'6068','Bagneres-de-bigorre','BAGNERES-DE-BIGORRE',NULL,'','France','',0,0,76,'2016-10-17 10:40:46','1900-01-01 00:00:00',1,0,1),(2023,'43952','Bagneres-de-luchon','BAGNERES-DE-LUCHON',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2024,'4919','Bagnères-de-luchon','BAGNÈRES-DE-LUCHON',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2025,'11601','Bagni Di Lucca','BAGNI DI LUCCA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2026,'11602','Bagno A Ripoli','BAGNO A RIPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2027,'41583','Bagnoles-de-l Orne','BAGNOLES-DE-L ORNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2028,'5367','Bagnoles-de-l\'orne','BAGNOLES-DE-L\'ORNE',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2029,'4666','Bagnolet','BAGNOLET',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2030,'35461','Bagnoli Irpino','BAGNOLI IRPINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2031,'5292','Bagnols','BAGNOLS',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2032,'5889','Bagnols-sur-ceze','BAGNOLS-SUR-CEZE',NULL,'','France','',0,0,76,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2033,'35462','Bagnore','BAGNORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2034,'11604','Bagnoregio','BAGNOREGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2035,'25942','Bagotville','BAGOTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2036,'7538','Bagshot','BAGSHOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2037,'15506','Baguio','BAGUIO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:47','1900-01-01 00:00:00',1,0,1),(2038,'41060','Bagur','BAGUR',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2039,'1159','Bahamas - Out Island','BAHAMAS - OUT ISLAND',NULL,'','BAHAMAS','',0,0,16,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2040,'35968','Bahamas-nassau','BAHAMAS-NASSAU',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2041,'3842','Bahar Dar','BAHAR DAR',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2042,'34972','Baharia Oasis','BAHARIA OASIS',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2043,'42569','Bahariya Oasis','BAHARIYA OASIS',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2044,'15292','Bahawalpur','BAHAWALPUR',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2045,'26065','Bahia Blanca','BAHIA BLANCA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2046,'41630','Bahia De Banderas','BAHIA DE BANDERAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2047,'2402','Bahia De Caraquez','BAHIA DE CARAQUEZ',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2048,'37204','Bahia Inglesa','BAHIA INGLESA',NULL,'','Chile','',0,0,45,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2049,'34929','Bahia Salinas','BAHIA SALINAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2050,'24107','Bahia Solano','BAHIA SOLANO',NULL,'','Colombia','',0,0,49,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2051,'24819','Bahrain','BAHRAIN',NULL,'','Bahrain','',0,0,17,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2052,'2452','Bahtim','BAHTIM',NULL,'','Egypt','',0,0,65,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2053,'32293','Bai Chay','BAI CHAY',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2054,'16970','Bai Lan','BAI LAN',NULL,'','Thailand','',0,0,215,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2055,'11605','Baia','BAIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:48','1900-01-01 00:00:00',1,0,1),(2056,'16209','Baia Mare','BAIA MARE',NULL,'','Romania','',0,0,179,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2057,'40587','Baião','BAIÃO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2059,'25943','Baie Comeau','BAIE COMEAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2060,'2055','Baiersbronn','BAIERSBRONN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2061,'40956','Baie-sainte-catherine','BAIE-SAINTE-CATHERINE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2062,'25946','Baie-saint-paul Area','BAIE-SAINT-PAUL AREA',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2063,'25947','Baie-st-paul','BAIE-ST-PAUL',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2064,'4130','Baigts-de-béarn','BAIGTS-DE-BÉARN',NULL,'','France','',0,0,76,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2065,'10492','Baihar','BAIHAR',NULL,'','India','',0,0,101,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2066,'16210','Baile Felix','BAILE FELIX',NULL,'','Romania','',0,0,179,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2067,'3185','Bailen','BAILEN',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2068,'33071','Bailey','BAILEY',NULL,'','United States','',0,0,231,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2069,'37909','Baileys Bay','BAILEYS BAY',NULL,'','Bermuda','',0,0,24,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2070,'31038','Baileys Crossroads','BAILEYS CROSSROADS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:49','1900-01-01 00:00:00',1,0,1),(2071,'5890','Baillargues','BAILLARGUES',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2072,'41582','Baillet En France','BAILLET EN FRANCE',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2073,'5368','Bailleul','BAILLEUL',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2074,'5838','Bailly-romainvilliers','BAILLY-ROMAINVILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2075,'14248','Bain Boeuf','BAIN BOEUF',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2076,'9981','Baina','BAINA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2077,'28625','Bainbridge','BAINBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2078,'34993','Baiona','BAIONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2079,'26484','Bairnsdale','BAIRNSDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2080,'15991','Bairro Alto','BAIRRO ALTO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2081,'36014','Baishan','BAISHAN',NULL,'','China','',0,0,46,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2082,'6576','Baix','BAIX',NULL,'','France','',0,0,76,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2083,'43708','Baix Maestrat','BAIX MAESTRAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2084,'15789','Baixa','BAIXA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2085,'23562','Baiyun','BAIYUN',NULL,'','China','',0,0,46,'2016-10-17 10:40:50','1900-01-01 00:00:00',1,0,1),(2086,'23564','Baiyunguan','BAIYUNGUAN',NULL,'','China','',0,0,46,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2087,'38727','Baja','BAJA',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2088,'44237','Baja California','BAJA CALIFORNIA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2089,'3358','Bajamar','BAJAMAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2090,'10349','Bajawa','BAJAWA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2091,'14287','Bakalalan','BAKALALAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2092,'9389','Bakau','BAKAU',NULL,'','Gambia','',0,0,81,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2093,'16523','Bakel','BAKEL',NULL,'','Senegal','',0,0,187,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2094,'21168','Baker','BAKER',NULL,'','United States','',0,0,231,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2095,'25787','Baker Lake','BAKER LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2096,'18281','Bakersfield','BAKERSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2097,'7539','Bakewell','BAKEWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2098,'10967','Bakkafjordur','BAKKAFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2099,'24570','Baku','BAKU',NULL,'','Azerbaijan','',0,0,15,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2100,'42260','Bakuriani','BAKURIANI',NULL,'','Georgia','',0,0,82,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2101,'7540','Bala','BALA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2102,'14249','Balaclava','BALACLAVA',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2103,'16448','Balakovo','BALAKOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:51','1900-01-01 00:00:00',1,0,1),(2104,'5891','Balaruc-les-bains','BALARUC-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2105,'5892','Balaruc-le-vieux','BALARUC-LE-VIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2106,'16364','Balashikha','BALASHIKHA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2107,'43317','Balaton','BALATON',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2108,'10116','Balatonalmadi','BALATONALMADI',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2109,'10102','Balatonfoldvar','BALATONFOLDVAR',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2110,'10117','Balatonfured','BALATONFURED',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2111,'10123','Balatongyorok','BALATONGYOROK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2112,'10118','Balatonkenese','BALATONKENESE',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2113,'40167','Balatonlelle','BALATONLELLE',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2114,'42616','Balatonmariafurdo','BALATONMARIAFURDO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2115,'37510','Balatonmáriafurdo','BALATONMÁRIAFURDO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2116,'38610','Balatonszarszo','BALATONSZARSZO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2117,'10119','Balatonvilagos','BALATONVILAGOS',NULL,'','Hungary','',0,0,99,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2118,'18283','Balboa','BALBOA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2119,'10826','Balbriggan','BALBRIGGAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2120,'30458','Balch Springs','BALCH SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2121,'24814','Balchik','BALCHIK',NULL,'','Bulgaria','Balchik',0,0,34,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2122,'35215','Balcombe','BALCOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:52','1900-01-01 00:00:00',1,0,1),(2123,'42145','Bald Knob','BALD KNOB',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2124,'6753','Baldenheim','BALDENHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2125,'40652','Baldersheim','BALDERSHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2126,'22708','Baldham','BALDHAM',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2127,'7541','Baldock','BALDOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2128,'10827','Baldoyle','BALDOYLE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2129,'19259','Baldwin','BALDWIN',NULL,'','United States','',0,0,231,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2130,'28626','Baldwinsville','BALDWINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2131,'14974','Balestrand','BALESTRAND',NULL,'','Norway','Balestrand',0,0,164,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2132,'40297','Balestrate','BALESTRATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2133,'39056','Balestrino','BALESTRINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2134,'43013','Balfour','BALFOUR',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2135,'32620','Balgowan','BALGOWAN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2136,'10142','Bali','BALI',NULL,'','Indonesia','Bali',22,0,102,'2016-10-17 10:40:53','2018-02-05 06:27:03',1,0,1),(2137,'10143','Baliem Valley','BALIEM VALLEY',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:53','1900-01-01 00:00:00',1,0,1),(2138,'10385','Baliganja','BALIGANJA',NULL,'','India','',0,0,101,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2139,'10386','Balihati','BALIHATI',NULL,'','India','',0,0,101,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2140,'1644','Balikesir','BALIKESIR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2141,'10332','Balikpapan','BALIKPAPAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2142,'22504','Balingen','BALINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2143,'35367','Bali-nusa Dua','BALI-NUSA DUA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2144,'9438','Balio','BALIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2145,'23941','Balizhuang','BALIZHUANG',NULL,'','China','',0,0,46,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2146,'44307','Balkanabat','BALKANABAT',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2147,'10769','Balla','BALLA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2148,'7542','Ballachulish','BALLACHULISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2149,'16540','Ballalae','BALLALAE',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2150,'39969','Ballandean','BALLANDEAN',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2151,'7543','Ballantrae','BALLANTRAE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2152,'26884','Ballarat','BALLARAT',NULL,'','Australia','Ballarat',0,0,13,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2153,'18287','Ballard','BALLARD',NULL,'','United States','',0,0,231,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2154,'1627','Ballatar','BALLATAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2155,'7544','Ballater','BALLATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2156,'40912','Ballbunion, Co.kerry','BALLBUNION, CO.KERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2157,'24234','Ballena','BALLENA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2158,'1924','Ballenstedt','BALLENSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2159,'2204','Ballerup','BALLERUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2160,'38488','Ballesteros De Calatrava','BALLESTEROS DE CALATRAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2161,'10901','Ballina','BALLINA',NULL,'','Ireland','Ballina',0,0,105,'2016-10-17 10:40:54','1900-01-01 00:00:00',1,0,1),(2162,'34086','Ballina','BALLINA',NULL,'','Australia','Ballina',0,0,13,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2163,'38677','Ballinamore','BALLINAMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2164,'10861','Ballinasloe','BALLINASLOE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2165,'10796','Ballincollig','BALLINCOLLIG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2166,'41187','Ballindalloch','BALLINDALLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2167,'10797','Ballingeary','BALLINGEARY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2168,'37253','Ballinskelligs','BALLINSKELLIGS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2169,'37842','Ballintogher','BALLINTOGHER',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2170,'32390','Ballito','BALLITO',NULL,'','South Africa','',0,0,195,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2171,'43275','Balloch','BALLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2172,'10828','Ballsbridge - Sandymount','BALLSBRIDGE - SANDYMOUNT',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2173,'28627','Ballston Spa','BALLSTON SPA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2174,'39698','Ballum','BALLUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2175,'10493','Bally','BALLY',NULL,'','India','',0,0,101,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2176,'10817','Ballybofey','BALLYBOFEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2177,'35386','Ballybunion','BALLYBUNION',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2178,'41523','Ballybunnion','BALLYBUNNION',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2179,'7545','Ballycastle','BALLYCASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2180,'7546','Ballyclare','BALLYCLARE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2181,'35407','Ballyconnell','BALLYCONNELL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2182,'10798','Ballycotton','BALLYCOTTON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2183,'37646','Ballydavid','BALLYDAVID',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2184,'35216','Ballygalley','BALLYGALLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2185,'9249','Ballygally','BALLYGALLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:55','1900-01-01 00:00:00',1,0,1),(2186,'10924','Ballygawley','BALLYGAWLEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2187,'7547','Ballygawley','BALLYGAWLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2188,'10874','Ballyheige','BALLYHEIGE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2189,'41525','Ballyheigue','BALLYHEIGUE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2190,'10708','Ballykisteen','BALLYKISTEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2191,'41526','Ballylickey','BALLYLICKEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2192,'7548','Ballymena','BALLYMENA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2193,'37384','Ballymoney','BALLYMONEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2194,'7549','Ballynahinch','BALLYNAHINCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2195,'10928','Ballyvaughan','BALLYVAUGHAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2196,'6069','Balma','BALMA',NULL,'','France','',0,0,76,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2197,'23506','Balmaceda','BALMACEDA',NULL,'','Chile','',0,0,45,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2198,'7550','Balmaha','BALMAHA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:56','1900-01-01 00:00:00',1,0,1),(2199,'34087','Balmain','BALMAIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2200,'24966','Balneario Camboriu','BALNEARIO CAMBORIU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2201,'39742','Balrampur','BALRAMPUR',NULL,'','India','Balrampur',6,0,101,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2202,'34088','Balranald','BALRANALD',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2203,'33768','Balsam','BALSAM',NULL,'','United States','',0,0,231,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2204,'16780','Balsta','BALSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2205,'23130','Balsthal','BALSTHAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2206,'41445','Baltezers','BALTEZERS',NULL,'','Latvia','',0,0,119,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2207,'44304','Balti City','BALTI CITY',NULL,'','Moldova','',0,0,144,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2208,'1170','Baltic Coast','BALTIC COAST',NULL,'','POLAND','',0,0,174,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2209,'24380','Baltic Sea Coast (Mecklenburg - West Pomerania)','BALTIC SEA COAST (MECKLENBURG - WEST POMERANIA)',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2210,'10799','Baltimore','BALTIMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2211,'21636','Baltimore','BALTIMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2212,'27176','Baltrum','BALTRUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2213,'10494','Balurghat','BALURGHAT',NULL,'','India','',0,0,101,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2214,'16200','Balvanyos','BALVANYOS',NULL,'','Romania','',0,0,179,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2215,'26180','Balwyn','BALWYN',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2216,'25270','Balzac','BALZAC',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2217,'26381','Bamaga','BAMAGA',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2218,'40910','Bamako','BAMAKO',NULL,'','Mali','',0,0,134,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2219,'10387','Bamangachhi','BAMANGACHHI',NULL,'','India','',0,0,101,'2016-10-17 10:40:57','1900-01-01 00:00:00',1,0,1),(2220,'16942','Bambarra','BAMBARRA',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2221,'30287','Bamberg','BAMBERG',NULL,'','United States','',0,0,231,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2222,'22709','Bamberg','BAMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2223,'41297','Bambito','BAMBITO',NULL,'','Panama','',0,0,169,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2224,'35423','Bambora','BAMBORA',NULL,'','India','',0,0,101,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2225,'7551','Bamburgh','BAMBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2226,'43109','Bamburi','BAMBURI',NULL,'','Kenya','',0,0,113,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2227,'24011','Bamenda','BAMENDA',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2228,'25388','Bamfield','BAMFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2229,'7552','Bamford','BAMFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2230,'7553','Bampton (Cumbria)','BAMPTON (CUMBRIA)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2231,'17084','Ban Khlong Tan','BAN KHLONG TAN',NULL,'','Thailand','',0,0,215,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2232,'10144','Banaina','BANAINA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2233,'39115','Banamichi','BANAMICHI',NULL,'','Mexico','',0,0,141,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2234,'43684','Banana','BANANA',NULL,'','Australia','',0,0,13,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2235,'15471','Banaue','BANAUE',NULL,'','Philippines','',0,0,173,'2016-10-17 10:40:58','1900-01-01 00:00:00',1,0,1),(2236,'23883','Banbidian','BANBIDIAN',NULL,'','China','',0,0,46,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2237,'7555','Banbury','BANBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2238,'40185','Banchette','BANCHETTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2239,'7556','Banchory','BANCHORY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2240,'43153','Banciao','BANCIAO',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2241,'34440','Bancroft','BANCROFT',NULL,'','Canada','',0,0,39,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2242,'10273','Banda Aceh','BANDA ACEH',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2243,'10339','Bandanaira','BANDANAIRA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2244,'14288','Bandar Baru Bangi','BANDAR BARU BANGI',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2245,'10145','Bandar Lampung','BANDAR LAMPUNG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2246,'25250','Bandar Seri Begawan','BANDAR SERI BEGAWAN',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2247,'13615','Bandarawela','BANDARAWELA',NULL,'','Sri Lanka','Bandarawela',0,0,200,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2248,'30459','Bandera','BANDERA',NULL,'','United States','',0,0,231,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2249,'40802','Bandhavgarh','BANDHAVGARH',NULL,'','India','',15,0,101,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2250,'1783','Banding Island','BANDING ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2251,'39230','Bandipur','BANDIPUR',NULL,'','India','',17,0,101,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2252,'43974','Bandipur','BANDIPUR',NULL,'','Nepal','',0,0,153,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2253,'17262','Bandirma','BANDIRMA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2254,'6387','Bandol','BANDOL',NULL,'','France','',0,0,76,'2016-10-17 10:40:59','1900-01-01 00:00:00',1,0,1),(2255,'29614','Bandon','BANDON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2256,'32622','Bandundu','BANDUNDU',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2257,'10219','Bandung','BANDUNG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2258,'7557','Banff','BANFF',NULL,'','United Kingdom','Banff',0,0,229,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2259,'25271','Banff','BANFF',NULL,'','Canada','Banff',0,0,39,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2260,'26066','Banfield','BANFIELD',NULL,'','Argentina','',0,0,10,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2261,'17033','Bang Kapi','BANG KAPI',NULL,'','Thailand','',0,0,215,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2262,'10391','Bangalore(bengaluru)','BANGALORE(BENGALURU)',NULL,'','India','',0,0,101,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2263,'10388','Bangaram Island','BANGARAM ISLAND',NULL,'','India','',0,0,101,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2264,'16973','Bangbao Beach','BANGBAO BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2265,'43043','Bangka','BANGKA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2266,'16974','Bangkok','BANGKOK',NULL,'','Thailand','Bangkok Travel | Trip to Bangkok | Bangkok Tour Pa',0,0,215,'2016-10-17 10:41:00','1900-01-01 00:00:00',1,0,1),(2267,'6893','Bangor','BANGOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2268,'21824','Bangor','BANGOR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2269,'14289','Bangsar','BANGSAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2270,'7559','Banham','BANHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2271,'24891','Banja Luka','BANJA LUKA',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2272,'10329','Banjarmasin','BANJARMASIN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2273,'9388','Banjul','BANJUL',NULL,'','Gambia','',0,0,81,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2274,'10086','Bank','BANK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2275,'34089','Bankstown','BANKSTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2276,'24801','Bankya','BANKYA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2277,'5515','Bannalec','BANNALEC',NULL,'','France','',0,0,76,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2278,'33769','Banner Elk','BANNER ELK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2279,'18288','Banning','BANNING',NULL,'','United States','',0,0,231,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2280,'20437','Bannockburn','BANNOCKBURN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2281,'15293','Bannu','BANNU',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2282,'2389','Banos','BANOS',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2283,'3186','Banos De La Encina','BANOS DE LA ENCINA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2284,'42653','Bansin','BANSIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2285,'42274','Banska Bystrica','BANSKA BYSTRICA',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2286,'24766','Bansko','BANSKO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2287,'42938','Bantayan Island','BANTAYAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2288,'42788','Banten','BANTEN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:01','1900-01-01 00:00:00',1,0,1),(2289,'10389','Bantra','BANTRA',NULL,'','India','',0,0,101,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2290,'10800','Bantry','BANTRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2291,'32435','Bantry Bay','BANTRY BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2292,'37298','Banyalbufar','BANYALBUFAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2293,'39485','Banyoles','BANYOLES',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2294,'4132','Banyuls Sur Mer','BANYULS SUR MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2295,'43962','Banyuls-sur-mer','BANYULS-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2296,'42339','Banyuwangi','BANYUWANGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2297,'823','Banzkow','BANZKOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2298,'36015','Bao\'an','BAO\'AN',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2299,'23942','Baodi','BAODI',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2300,'23801','Baoding','BAODING',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2301,'23672','Baoji','BAOJI',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2302,'42175','Baoruco','BAORUCO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2303,'23903','Baoshan','BAOSHAN',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2304,'43817','Baoting','BAOTING',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2305,'23874','Baotou','BAOTOU',NULL,'','China','',0,0,46,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2306,'2952','Baquèira','BAQUÈIRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2307,'41478','Baqueira Beret','BAQUEIRA BERET',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2308,'32365','Bar','BAR',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2309,'21826','Bar Harbor','BAR HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:02','1900-01-01 00:00:00',1,0,1),(2310,'10495','Bara Bazar','BARA BAZAR',NULL,'','India','',0,0,101,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2311,'31690','Baraboo','BARABOO',NULL,'','United States','',0,0,231,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2312,'2519','Baracaldo','BARACALDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2313,'1168','Baracoa','BARACOA',NULL,'','CUBA','',0,0,56,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2314,'21978','Baraga','BARAGA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2315,'2353','Barahona','BARAHONA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2316,'43205','Barajas','BARAJAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2317,'42430','Barakaldo','BARAKALDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2318,'16541','Barakoma','BARAKOMA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2319,'42144','Baralaba','BARALABA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2320,'10685','Baranagar','BARANAGAR',NULL,'','India','',0,0,101,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2321,'11123','Barano D Ischia','BARANO D ISCHIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2322,'4134','Baraqueville','BARAQUEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2323,'42939','Baras','BARAS',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2324,'3049','Barasoain','BARASOAIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:03','1900-01-01 00:00:00',1,0,1),(2325,'6388','Baratier','BARATIER',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2326,'25230','Barbados','BARBADOS',NULL,'','Barbados','',0,0,19,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2327,'34843','Barbados-maxwell','BARBADOS-MAXWELL',NULL,'','Barbados','',0,0,19,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2328,'34845','Barbados-st Lawrence','BARBADOS-ST LAWRENCE',NULL,'','Barbados','',0,0,19,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2329,'11124','Barbarano Di Salo','BARBARANO DI SALO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2330,'5147','Barbaste','BARBASTE',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2331,'3315','Barbastro','BARBASTRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2332,'40129','Barbate','BARBATE',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2333,'9439','Barbati','BARBATI',NULL,'','Greece','',0,0,86,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2334,'37504','Barbatre','BARBATRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2335,'38057','Barbentane','BARBENTANE',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2336,'2521','Barbera Del Valles','BARBERA DEL VALLES',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2337,'2462','Barberà Del Vallès','BARBERÀ DEL VALLÈS',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2338,'6577','Barberaz','BARBERAZ',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2339,'5710','Barberey-saint-sulpice','BARBEREY-SAINT-SULPICE',NULL,'','France','',0,0,76,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2340,'11607','Barberino Di Mugello','BARBERINO DI MUGELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2341,'31436','Barberton','BARBERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:04','1900-01-01 00:00:00',1,0,1),(2342,'32551','Barberton','BARBERTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2343,'4135','Barbet','BARBET',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2344,'38924','Barbirey-sur-ouche','BARBIREY-SUR-OUCHE',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2345,'5839','Barbizon','BARBIZON',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2346,'7560','Barbon','BARBON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2347,'4136','Barbotan-les-thermes','BARBOTAN-LES-THERMES',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2348,'31946','Barboursville','BARBOURSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2349,'33585','Barbourville','BARBOURVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2350,'26162','Barbuda','BARBUDA',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2351,'26382','Barcaldine','BARCALDINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2352,'3518','Barcelona','BARCELONA',NULL,'','Spain','Barcelona',0,0,199,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2353,'32182','Barcelona','BARCELONA',NULL,'','Venezuela','Barcelona',0,0,235,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2354,'6389','Barcelonnette','BARCELONNETTE',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2355,'15790','Barcelos','BARCELOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2356,'14527','Barchem','BARCHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2357,'2524','Barco De Avila','BARCO DE AVILA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2358,'39672','Barcus','BARCUS',NULL,'','France','',0,0,76,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2359,'40056','Bard','BARD',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2360,'32795','Bard','BARD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2361,'37719','Bardejov','BARDEJOV',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:41:05','1900-01-01 00:00:00',1,0,1),(2362,'11608','Bardolino','BARDOLINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2363,'7561','Bardon Mill','BARDON MILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2364,'12790','Bardonecchia','BARDONECCHIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2365,'33586','Bardstown','BARDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2366,'41308','Bardu','BARDU',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2367,'14787','Bardufoss','BARDUFOSS',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2368,'37920','Bareges','BAREGES',NULL,'','France','',0,0,76,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2369,'39542','Bareggio','BAREGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2370,'10680','Bareilly','BAREILLY',NULL,'','India','Bareilly',6,0,101,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2371,'14706','Barendrecht','BARENDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:06','1900-01-01 00:00:00',1,0,1),(2372,'5794','Barentin','BARENTIN',NULL,'','France','',0,0,76,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2373,'6282','Barenton-bugny','BARENTON-BUGNY',NULL,'','France','',0,0,76,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2374,'7562','Barford','BARFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2375,'35463','Barga','BARGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2376,'26657','Bargara','BARGARA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2377,'11609','Barge','BARGE',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2378,'6895','Barham','BARHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2379,'12802','Bari','BARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2380,'35516','Bari-conversano','BARI-CONVERSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2381,'26034','Bariloche','BARILOCHE',NULL,'','Argentina','Bariloche',0,0,10,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2382,'32186','Barinas','BARINAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2383,'34090','Barington Tops','BARINGTON TOPS',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2384,'14290','Bario','BARIO',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2385,'4137','Barisey-la-côte','BARISEY-LA-CÔTE',NULL,'','France','',0,0,76,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2386,'5893','Barjac','BARJAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2387,'21979','Bark River','BARK RIVER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:07','1900-01-01 00:00:00',1,0,1),(2388,'15281','Barka','BARKA',NULL,'','Oman','Barka',0,0,165,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2389,'16661','Barkarby','BARKARBY',NULL,'','Sweden','',0,0,209,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2390,'25389','Barkerville','BARKERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2391,'29809','Barkeyville','BARKEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2392,'7563','Barking','BARKING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2393,'42394','Barlad','BARLAD',NULL,'','Romania','',0,0,179,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2394,'7564','Barlborough','BARLBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2395,'6896','Barlby','BARLBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2396,'1925','Barleben','BARLEBEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2397,'12803','Barletta','BARLETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2398,'1726','Barlovento','BARLOVENTO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2399,'26444','Barmera','BARMERA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2400,'7565','Barmouth','BARMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2401,'10770','Barna','BARNA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2402,'19194','Barnaby Woods','BARNABY WOODS',NULL,'','United States','',0,0,231,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2403,'31292','Barnard','BARNARD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2404,'7566','Barnard Castle','BARNARD CASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2405,'16301','Barnaul','BARNAUL',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2406,'5439','Barnay','BARNAY',NULL,'','France','',0,0,76,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2407,'38926','Barnby In The Willows','BARNBY IN THE WILLOWS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:08','1900-01-01 00:00:00',1,0,1),(2408,'19708','Barnesville','BARNESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2409,'7567','Barnet','BARNET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2410,'6897','Barnetby','BARNETBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2411,'28628','Barneveld','BARNEVELD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2412,'4138','Barneville Carteret','BARNEVILLE CARTERET',NULL,'','France','',0,0,76,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2413,'43963','Barneville-carteret','BARNEVILLE-CARTERET',NULL,'','France','',0,0,76,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2414,'37574','Barneville-la-bertran','BARNEVILLE-LA-BERTRAN',NULL,'','France','',0,0,76,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2415,'37509','Barnham Broom','BARNHAM BROOM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2416,'7568','Barningham','BARNINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2417,'7569','Barnsley','BARNSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2418,'21307','Barnstable','BARNSTABLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2419,'7570','Barnstaple','BARNSTAPLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2420,'6898','Barnton','BARNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2421,'30288','Barnwell','BARNWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2422,'6899','Barnwood','BARNWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2423,'10496','Baroda','BARODA',NULL,'','India','',0,0,101,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2424,'38618','Baronissi','BARONISSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2425,'42143','Barooga','BAROOGA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2426,'16542','Barora Island','BARORA ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2427,'13720','Baros','BAROS',NULL,'','Maldives','',0,0,133,'2016-10-17 10:41:09','1900-01-01 00:00:00',1,0,1),(2428,'42226','Barossa Valey','BAROSSA VALEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2429,'32199','Barquisimeto','BARQUISIMETO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2430,'15850','Barra','BARRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2431,'6900','Barra','BARRA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2432,'24158','Barra Colorado','BARRA COLORADO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2433,'13790','Barra De Navidad','BARRA DE NAVIDAD',NULL,'','Mexico','',0,0,141,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2434,'43783','Barra De Sao Miguel','BARRA DE SAO MIGUEL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2435,'13721','Barrah','BARRAH',NULL,'','Maldives','',0,0,133,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2436,'24123','Barrancabermeja','BARRANCABERMEJA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2437,'23538','Barrancas','BARRANCAS',NULL,'','Chile','',0,0,45,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2438,'845','Barrancas Del Cobre','BARRANCAS DEL COBRE',NULL,'','Mexico','',0,0,141,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2439,'15404','Barranco','BARRANCO',NULL,'','Peru','',0,0,172,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2440,'24080','Barranquilla','BARRANQUILLA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2441,'21308','Barre','BARRE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2442,'41776','Barreiras','BARREIRAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2443,'953','Barreirinhas','BARREIRINHAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:10','1900-01-01 00:00:00',1,0,1),(2444,'976','Barretos','BARRETOS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2445,'7571','Barrhead','BARRHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2446,'34441','Barrie','BARRIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2447,'25390','Barriere','BARRIERE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2448,'9890','Barrigada','BARRIGADA',NULL,'','Guam','',0,0,90,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2449,'20438','Barrington','BARRINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2450,'38517','Barrington','BARRINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2451,'39311','Barro','BARRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2452,'31691','Barron','BARRON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2453,'17566','Barrow','BARROW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2454,'26181','Barrow Island','BARROW ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2455,'6901','Barrow-in-furness','BARROW-IN-FURNESS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:11','1900-01-01 00:00:00',1,0,1),(2456,'7572','Barry','BARRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2457,'34443','Barrys Bay','BARRYS BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2458,'28629','Barryville','BARRYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2459,'27177','Barsinghausen','BARSINGHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2460,'18289','Barstow','BARSTOW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2461,'39903','Bar-sur-aube','BAR-SUR-AUBE',NULL,'','France','',0,0,76,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2462,'17567','Barter Island','BARTER ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2463,'824','Barth','BARTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2464,'4139','Barthenheim','BARTHENHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2465,'37278','Bartholomaeberg','BARTHOLOMAEBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2466,'32877','Bartlesville','BARTLESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2467,'20439','Bartlett','BARTLETT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2468,'7573','Barton','BARTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2469,'26624','Barton','BARTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:12','1900-01-01 00:00:00',1,0,1),(2470,'38323','Barton-on-sea','BARTON-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2471,'29810','Bartonsville','BARTONSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2472,'6902','Barton-upon-humber','BARTON-UPON-HUMBER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2473,'44040','Bartoszyce','BARTOSZYCE',NULL,'','Poland','',0,0,174,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2474,'19260','Bartow','BARTOW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2475,'25196','Barueri','BARUERI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2476,'14788','Barum','BARUM',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2477,'40362','Barumini','BARUMINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2478,'26485','Barwon Heads','BARWON HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2479,'39616','Barzano','BARZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2480,'39275','Basaburua','BASABURUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:13','1900-01-01 00:00:00',1,0,1),(2481,'34708','Basalt','BASALT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2482,'32623','Basankusu','BASANKUSU',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2483,'41397','Basauri','BASAURI',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2484,'11610','Baschi','BASCHI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2485,'15484','Basco','BASCO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2486,'23131','Basel','BASEL',NULL,'','Switzerland','Basel',0,0,210,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2487,'25273','Bashaw','BASHAW',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2488,'2446','Bashtil','BASHTIL',NULL,'','Egypt','',0,0,65,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2489,'11126','Basiglio','BASIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2490,'7576','Basildon','BASILDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2491,'11127','Basilicata','BASILICATA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2492,'1173','Basingstoke','BASINGSTOKE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2493,'7577','Basingstoke','BASINGSTOKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2494,'9982','Baska','BASKA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2495,'28194','Basking Ridge','BASKING RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2496,'7578','Baslow','BASLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2497,'4140','Basque Coast','BASQUE COAST',NULL,'','France','',0,0,76,'2016-10-17 10:41:14','1900-01-01 00:00:00',1,0,1),(2498,'4141','Bas-rhin','BAS-RHIN',NULL,'','France','',0,0,76,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2499,'21828','Bass Harbor','BASS HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2500,'34091','Bass Hill','BASS HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2501,'35464','Bassano De Grappa','BASSANO DE GRAPPA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2502,'26579','Bassendean','BASSENDEAN',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2503,'6903','Bassenthwaite','BASSENTHWAITE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2504,'14234','Basse-pointe','BASSE-POINTE',NULL,'','Martinique','',0,0,137,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2505,'13477','Basseterre','BASSETERRE',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2506,'9376','Basse-terre','BASSE-TERRE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2507,'28098','Bassett','BASSETT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2508,'39860','Bassignac','BASSIGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2509,'5148','Bassussarry','BASSUSSARRY',NULL,'','France','',0,0,76,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2510,'16861','Bastad','BASTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2511,'700','Basthorst','BASTHORST',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2512,'13031','Bastia','BASTIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:15','1900-01-01 00:00:00',1,0,1),(2513,'4884','Bastia','BASTIA',NULL,'','France','',0,0,76,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2514,'24692','Bastogne','BASTOGNE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2515,'22','Bastos','BASTOS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2516,'30461','Bastrop','BASTROP',NULL,'','United States','',0,0,231,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2517,'31039','Basye','BASYE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2518,'11070','Bat Yam','BAT YAM',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2519,'15485','Bataan','BATAAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2520,'39635','Batak','BATAK',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2521,'15774','Batalha','BATALHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2522,'43542','Batam Island','BATAM ISLAND',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2523,'10390','Batanagar','BATANAGAR',NULL,'','India','',0,0,101,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2524,'14291','Batang Ai','BATANG AI',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2525,'15541','Batangas','BATANGAS',NULL,'','Philippines','',0,0,173,'2016-10-17 10:41:16','1900-01-01 00:00:00',1,0,1),(2526,'20440','Batavia','BATAVIA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2527,'26639','Batchelor','BATCHELOR',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2528,'34092','Bateau Bay','BATEAU BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2529,'34093','Batemans Bay','BATEMANS BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2530,'17981','Batesville','BATESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2531,'28631','Bath','BATH',NULL,'','United States','',0,0,231,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2532,'1353','Bath','BATH',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2533,'7580','Bathgate','BATHGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2534,'34094','Bathurst','BATHURST',NULL,'','Australia','Bathurst',0,0,13,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2535,'34384','Bathurst','BATHURST',NULL,'','Canada','Bathurst',0,0,39,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2536,'7581','Batley','BATLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2537,'17359','Batman','BATMAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2538,'21170','Baton Rouge','BATON ROUGE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:17','1900-01-01 00:00:00',1,0,1),(2539,'24009','Batouri','BATOURI',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2540,'43141','Batroun','BATROUN',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2541,'14874','Batsfjord','BATSFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2542,'9440','Batsi','BATSI',NULL,'','Greece','',0,0,86,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2543,'13449','Battambang','BATTAMBANG',NULL,'','Cambodia','',0,0,37,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2544,'39964','Battenheim','BATTENHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2545,'38763','Battery Point','BATTERY POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2546,'11611','Battipaglia','BATTIPAGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2547,'11030','Battir','BATTIR',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2548,'7582','Battle','BATTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2549,'21980','Battle Creek','BATTLE CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2550,'33770','Battleboro','BATTLEBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:41:18','1900-01-01 00:00:00',1,0,1),(2551,'22937','Battleford','BATTLEFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2552,'7583','Battlesbridge','BATTLESBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2553,'42789','Batu','BATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2554,'42415','Batu Pahat','BATU PAHAT',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2555,'43880','Batubulan','BATUBULAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2556,'9344','Batumi','BATUMI',NULL,'','Georgia','',0,0,82,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2557,'43881','Baturiti','BATURITI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2558,'4973','Batz Sur Mer','BATZ SUR MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2559,'22314','Baudette','BAUDETTE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2560,'39316','Baulne-en-brie','BAULNE-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2561,'37383','Baumholder','BAUMHOLDER',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2562,'1995','Baumschulenweg','BAUMSCHULENWEG',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2563,'24382','Baunatal','BAUNATAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2564,'25197','Bauru','BAURU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2565,'13665','Bauska','BAUSKA',NULL,'','Latvia','',0,0,119,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2566,'1870','Bautzen','BAUTZEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2567,'2364','Bavaro','BAVARO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2568,'11612','Baveno','BAVENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2569,'7584','Bawtry','BAWTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2570,'19709','Baxley','BAXLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2571,'22315','Baxter','BAXTER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:19','1900-01-01 00:00:00',1,0,1),(2572,'923','Bay Islands','BAY ISLANDS',NULL,'','Honduras','',0,0,97,'2016-10-17 10:41:20','1900-01-01 00:00:00',1,0,1),(2573,'15089','Bay Of Islands','BAY OF ISLANDS',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2574,'34965','Bayahibe','BAYAHIBE',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2575,'44036','Bayamon','BAYAMON',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2576,'23565','Bayan Nur','BAYAN NUR',NULL,'','China','',0,0,46,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2577,'28099','Bayard','BAYARD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2578,'17296','Bayburt','BAYBURT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2579,'7585','Baydon','BAYDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2580,'22710','Bayerisch Eisenstein','BAYERISCH EISENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:21','1900-01-01 00:00:00',1,0,1),(2581,'22712','Bayersoien','BAYERSOIEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2582,'4867','Bayeux','BAYEUX',NULL,'','France','',0,0,76,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2583,'34709','Bayfield','BAYFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2584,'34444','Bayfield','BAYFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2585,'17244','Bayirkoy','BAYIRKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2586,'3654','Bayona','BAYONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2587,'19264','Bayonet Point','BAYONET POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2588,'5149','Bayonne','BAYONNE',NULL,'','France','',0,0,76,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2589,'28196','Bayonne','BAYONNE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2590,'17838','Bayou La Batre','BAYOU LA BATRE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2591,'46','Bayreuth','BAYREUTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2592,'2065','Bayrischzell','BAYRISCHZELL',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2593,'25696','Bayside','BAYSIDE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2594,'28633','Bayside','BAYSIDE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:22','1900-01-01 00:00:00',1,0,1),(2595,'6906','Bayswater','BAYSWATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2596,'26486','Bayswater','BAYSWATER',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2597,'30465','Baytown','BAYTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2598,'25812','Bayview','BAYVIEW',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2599,'20330','Bayview','BAYVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2600,'28634','Bayville','BAYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2601,'18293','Baywood Park','BAYWOOD PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2602,'41398','Bazaruto','BAZARUTO',NULL,'','Mozambique','',0,0,149,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2603,'4924','Bazas','BAZAS',NULL,'','France','',0,0,76,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2604,'5711','Bazeilles','BAZEILLES',NULL,'','France','',0,0,76,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2605,'5795','Bazincourt-sur-epte','BAZINCOURT-SUR-EPTE',NULL,'','France','',0,0,76,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2606,'4142','Bazouges La Perouse','BAZOUGES LA PEROUSE',NULL,'','France','',0,0,76,'2016-10-17 10:41:23','1900-01-01 00:00:00',1,0,1),(2607,'11613','Bazzano','BAZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2608,'35126','Beachcomber Island','BEACHCOMBER ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2609,'29248','Beachwood','BEACHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2610,'21311','Beacon Hill','BEACON HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2611,'6908','Beacon Hill','BEACON HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2612,'7586','Beaconsfield','BEACONSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2613,'25948','Beaconsfield','BEACONSFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2614,'7587','Beadnell','BEADNELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2615,'37227','Bealanana','BEALANANA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2616,'7588','Beaminster','BEAMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2617,'38651','Beamish','BEAMISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2618,'33073','Bean Station','BEAN STATION',NULL,'','United States','',0,0,231,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2619,'19211','Bear','BEAR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:24','1900-01-01 00:00:00',1,0,1),(2620,'20442','Beardstown','BEARDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2621,'6909','Beare Green','BEARE GREEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2622,'40758','Bearsden','BEARSDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2623,'34445','Bearskin Lake','BEARSKIN LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2624,'22996','Beatenberg','BEATENBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2625,'28100','Beatrice','BEATRICE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2626,'7589','Beattock','BEATTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2627,'32797','Beatty','BEATTY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2628,'33587','Beattyville','BEATTYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2629,'5293','Beaucaire','BEAUCAIRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2630,'6578','Beaucroissant','BEAUCROISSANT',NULL,'','France','',0,0,76,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2631,'26658','Beaudesert','BEAUDESERT',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:25','1900-01-01 00:00:00',1,0,1),(2632,'30289','Beaufort','BEAUFORT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2633,'10771','Beaufort','BEAUFORT',NULL,'','Ireland','',0,0,105,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2634,'38646','Beaufort West','BEAUFORT WEST',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2635,'4981','Beaugency','BEAUGENCY',NULL,'','France','',0,0,76,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2636,'25949','Beauharnois','BEAUHARNOIS',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2637,'4143','Beaujolais','BEAUJOLAIS',NULL,'','France','',0,0,76,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2638,'7590','Beaulieu','BEAULIEU',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2639,'1591','Beaulieu Sur Dordogn','BEAULIEU SUR DORDOGN',NULL,'','France','',0,0,76,'2016-10-17 10:41:26','1900-01-01 00:00:00',1,0,1),(2640,'6390','Beaulieu-sur-mer','BEAULIEU-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2641,'7591','Beauly','BEAULY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2642,'40358','Beaumarches','BEAUMARCHES',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2643,'7592','Beaumaris','BEAUMARIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2644,'26184','Beaumaris','BEAUMARIS',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2645,'6391','Beaumettes','BEAUMETTES',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2646,'30466','Beaumont','BEAUMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2647,'38982','Beaumont-en-veron','BEAUMONT-EN-VERON',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2648,'5796','Beaumont-le-roger','BEAUMONT-LE-ROGER',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2649,'37182','Beaumont-sur-sarthe','BEAUMONT-SUR-SARTHE',NULL,'','France','',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2650,'4891','Beaune','BEAUNE',NULL,'','France','Beaune',0,0,76,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2651,'25950','Beauport','BEAUPORT',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:27','1900-01-01 00:00:00',1,0,1),(2652,'25951','Beaupre','BEAUPRE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2653,'6392','Beaurecueil','BEAURECUEIL',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2654,'25580','Beausejour','BEAUSEJOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2655,'5992','Beausoleil','BEAUSOLEIL',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2656,'43682','Beauty Point','BEAUTY POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2657,'4667','Beauvais','BEAUVAIS',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2658,'5369','Beauvoir','BEAUVOIR',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2659,'5294','Beaux','BEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2660,'33301','Beaver','BEAVER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2661,'22974','Beaver Creek','BEAVER CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:28','1900-01-01 00:00:00',1,0,1),(2662,'29249','Beavercreek','BEAVERCREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2663,'34446','Beaverton','BEAVERTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2664,'29616','Beaverton','BEAVERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2665,'43573','Beaworthy','BEAWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2666,'25055','Beberibe','BEBERIBE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2667,'6755','Beblenheim','BEBLENHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2668,'402','Bebra','BEBRA',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2669,'25952','Becancour','BECANCOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2670,'7593','Beccles','BECCLES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2671,'2980','Becerril De La Sierra','BECERRIL DE LA SIERRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2672,'37606','Bechar','BECHAR',NULL,'','Algeria','',0,0,3,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2673,'40015','Bechyne','BECHYNE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2674,'23132','Beckenried','BECKENRIED',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2675,'22316','Becker','BECKER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2676,'7594','Beckington','BECKINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2677,'31949','Beckley','BECKLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:29','1900-01-01 00:00:00',1,0,1),(2678,'40059','Beckum','BECKUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2679,'7595','Bedale','BEDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2680,'26185','Bedarra Island','BEDARRA ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2681,'7596','Beddgelert','BEDDGELERT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2682,'27178','Bederkesa','BEDERKESA',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2683,'29250','Bedford','BEDFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2684,'25697','Bedford','BEDFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2685,'6910','Bedford','BEDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:30','1900-01-01 00:00:00',1,0,1),(2686,'6911','Bedfordshire','BEDFORDSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2687,'32391','Bedfordview','BEDFORDVIEW',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2688,'25391','Bednesti','BEDNESTI',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2689,'6393','Bedoin','BEDOIN',NULL,'','France','',0,0,76,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2690,'42317','Bedonia','BEDONIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2691,'26383','Bedourie','BEDOURIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2692,'43882','Bedugul','BEDUGUL',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2693,'7597','Bedworth','BEDWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2694,'17982','Beebe','BEEBE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2695,'20826','Beech Grove','BEECH GROVE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2696,'37230','Beechmont','BEECHMONT',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2697,'26885','Beechworth','BEECHWORTH',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2698,'32217','Beef Island','BEEF ISLAND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2699,'14566','Beek','BEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:31','1900-01-01 00:00:00',1,0,1),(2700,'14528','Beekbergen','BEEKBERGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2701,'26659','Beenleigh','BEENLEIGH',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2702,'43574','Beer','BEER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2703,'1649','Beer Sheva','BEER SHEVA',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2704,'11031','Beersheba','BEERSHEBA',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2705,'24744','Beerzel','BEERZEL',NULL,'','Belgium','',0,0,21,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2706,'7598','Beeston','BEESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2707,'14508','Beetsterzwaag','BEETSTERZWAAG',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2708,'754','Beetz','BEETZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2709,'99','Beetzsee','BEETZSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2710,'30470','Beeville','BEEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2711,'34095','Bega','BEGA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2712,'7599','Begelly','BEGELLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2713,'5150','Begles','BEGLES',NULL,'','France','',0,0,76,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2714,'2525','Begues','BEGUES',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2715,'37618','Begunje Na Gorenjskem','BEGUNJE NA GORENJSKEM',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2716,'2526','Begur','BEGUR',NULL,'','Spain','Begur',0,0,199,'2016-10-17 10:41:32','1900-01-01 00:00:00',1,0,1),(2717,'10686','Behala','BEHALA',NULL,'','India','',0,0,101,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2718,'825','Behnkendorf','BEHNKENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2719,'38698','Behror','BEHROR',NULL,'','India','',0,0,101,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2720,'3843','Beica','BEICA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2721,'13558','Beida','BEIDA',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2722,'32346','Beidah','BEIDAH',NULL,'','Yemen','',0,0,240,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2723,'39727','Beignon','BEIGNON',NULL,'','France','',0,0,76,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2724,'23854','Beihai','BEIHAI',NULL,'','China','',0,0,46,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2725,'32347','Beihan','BEIHAN',NULL,'','Yemen','',0,0,240,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2726,'23884','Beijing','BEIJING',NULL,'','China','Beijing',0,0,46,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2727,'22713','Beilngries','BEILNGRIES',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2728,'610','Beilstein','BEILSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2729,'38401','Beinasco','BEINASCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2730,'14220','Beira','BEIRA',NULL,'','Mozambique','',0,0,149,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2731,'44311','Beiras','BEIRAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2732,'13551','Beirut','BEIRUT',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2733,'11032','Beit Israel','BEIT ISRAEL',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2734,'43097','Beit Mery','BEIT MERY',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2735,'32654','Beitbridge','BEITBRIDGE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2736,'43142','Beiteddin','BEITEDDIN',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2737,'41185','Beith','BEITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2738,'14789','Beitostolen','BEITOSTOLEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2739,'36815','Beitou','BEITOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2740,'23885','Beiyuan','BEIYUAN',NULL,'','China','',0,0,46,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2741,'15871','Beja','BEJA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:33','1900-01-01 00:00:00',1,0,1),(2742,'37397','Bejaia','BEJAIA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2743,'39472','Bejuco','BEJUCO',NULL,'','Panama','',0,0,169,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2744,'38165','Bekal','BEKAL',NULL,'','India','Bekal',3,0,101,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2745,'4045','Bekana Island','BEKANA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2746,'10280','Bekasi','BEKASI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2747,'43698','Bekes','BEKES',NULL,'','Hungary','',0,0,99,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2748,'10083','Bekescsaba','BEKESCSABA',NULL,'','Hungary','',0,0,99,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2749,'38549','Bekily','BEKILY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2750,'14261','Bel Ombre','BEL OMBRE',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2751,'40718','Bela','BELA',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2752,'25071','Bela Vista','BELA VISTA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2753,'14373','Belaga','BELAGA',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2754,'40267','Belapur','BELAPUR',NULL,'','India','',0,0,101,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2755,'38570','Belcaire','BELCAIRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2756,'21640','Belcamp','BELCAMP',NULL,'','United States','',0,0,231,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2757,'26625','Belconnen','BELCONNEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2758,'27829','Belden','BELDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:34','1900-01-01 00:00:00',1,0,1),(2759,'17250','Beldibi','BELDIBI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2760,'21984','Belding','BELDING',NULL,'','United States','',0,0,231,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2761,'17251','Belek','BELEK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2762,'25170','Belem','BELEM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2763,'28499','Belen','BELEN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2764,'14421','Belep','BELEP',NULL,'','New Caledonia','',0,0,156,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2765,'31438','Belfair','BELFAIR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2766,'1181','Belfast','BELFAST',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2767,'21830','Belfast','BELFAST',NULL,'','United States','',0,0,231,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2768,'64762','Belfast International Airport','BELFAST INTERNATIONAL AIRPORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2769,'35213','Belfast-int\'l Apt','BELFAST-INT\'L APT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2770,'7600','Belford','BELFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2771,'24967','Belford Roxo','BELFORD ROXO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2772,'5764','Belfort','BELFORT',NULL,'','France','',0,0,76,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2773,'11614','Belforte Del Chienti','BELFORTE DEL CHIENTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2774,'10655','Belgaum','BELGAUM',NULL,'','India','Belgaum',17,0,101,'2016-10-17 10:41:35','1900-01-01 00:00:00',1,0,1),(2775,'39354','Belgern','BELGERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2776,'24577','Belgian Coast','BELGIAN COAST',NULL,'','Belgium','',0,0,21,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2777,'11615','Belgirate','BELGIRATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2778,'31694','Belgium','BELGIUM',NULL,'','United States','',0,0,231,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2779,'4145','Belgodère','BELGODÈRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2780,'16309','Belgorod','BELGOROD',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2781,'36642','Belgrade','BELGRADE',NULL,'','Serbia','',0,0,468,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2782,'32362','Belgrade','BELGRADE',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2783,'27934','Belgrade','BELGRADE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2784,'26116','Belgrano','BELGRANO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2785,'6915','Belgravia','BELGRAVIA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2786,'32436','Belhar','BELHAR',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2787,'33773','Belhaven','BELHAVEN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:36','1900-01-01 00:00:00',1,0,1),(2788,'37939','Belimbing','BELIMBING',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2789,'31951','Belington','BELINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2790,'42790','Belitung','BELITUNG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2791,'24903','Belize','BELIZE',NULL,'','Belize','',0,0,22,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2792,'18298','Bell','BELL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2793,'25392','Bella Bella','BELLA BELLA',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2794,'26106','Bella Vista','BELLA VISTA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2795,'17983','Bella Vista','BELLA VISTA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2796,'36611','Bella Vista','BELLA VISTA',NULL,'','Paraguay','',0,0,171,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2797,'5993','Bellac','BELLAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:37','1900-01-01 00:00:00',1,0,1),(2798,'11616','Bellagio','BELLAGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2799,'21985','Bellaire','BELLAIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2800,'12713','Bellaria','BELLARIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2801,'41795','Bellariva Di Rimini','BELLARIVA DI RIMINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2802,'10656','Bellary','BELLARY',NULL,'','India','Bellary',17,0,101,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2803,'2527','Bellaterra','BELLATERRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2804,'15391','Bellavista','BELLAVISTA',NULL,'','Peru','',0,0,172,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2805,'23482','Bellavista','BELLAVISTA',NULL,'','Chile','',0,0,45,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2806,'21172','Belle Chasse','BELLE CHASSE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2807,'37455','Belle Ile En Mer','BELLE ILE EN MER',NULL,'','France','',0,0,76,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2808,'14250','Belle Mare','BELLE MARE',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:41:38','1900-01-01 00:00:00',1,0,1),(2809,'19268','Belleair','BELLEAIR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2810,'6283','Belle-eglise','BELLE-EGLISE',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2811,'35212','Belleek','BELLEEK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2812,'29252','Bellefontaine','BELLEFONTAINE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2813,'39486','Bellefontaine','BELLEFONTAINE',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2814,'29816','Bellefonte','BELLEFONTE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2815,'5894','Bellegarde','BELLEGARDE',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2816,'43964','Bellegarde-sur-valserine','BELLEGARDE-SUR-VALSERINE',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2817,'5370','Belleme','BELLEME',NULL,'','France','',0,0,76,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2818,'33589','Bellemeade','BELLEMEADE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2819,'18104','Bellemont','BELLEMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:39','1900-01-01 00:00:00',1,0,1),(2820,'5295','Bellenaves','BELLENAVES',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2821,'6579','Bellentre','BELLENTRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2822,'5296','Bellerive-sur-allier','BELLERIVE-SUR-ALLIER',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2823,'39365','Bellevaux','BELLEVAUX',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2824,'19270','Belleview','BELLEVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2825,'29817','Belleville','BELLEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2826,'34447','Belleville','BELLEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2827,'4668','Belleville','BELLEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2828,'29254','Bellevue','BELLEVUE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2829,'4669','Bellevue','BELLEVUE',NULL,'','France','',0,0,76,'2016-10-17 10:41:40','1900-01-01 00:00:00',1,0,1),(2830,'23133','Bellevue','BELLEVUE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2831,'25274','Bellevue','BELLEVUE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2832,'5712','Belley','BELLEY',NULL,'','France','',0,0,76,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2833,'18300','Bellflower','BELLFLOWER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2834,'6580','Bellignat','BELLIGNAT',NULL,'','France','',0,0,76,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2835,'34096','Bellingen','BELLINGEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2836,'7601','Bellingham','BELLINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2837,'31441','Bellingham','BELLINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2838,'40766','Bellingwolde','BELLINGWOLDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2839,'23134','Bellinzona','BELLINZONA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2840,'28198','Bellmawr','BELLMAWR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2841,'30472','Bellmead','BELLMEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2842,'37934','Bellona','BELLONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2843,'16543','Bellona Island','BELLONA ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:41:41','1900-01-01 00:00:00',1,0,1),(2844,'11617','Bellosguardo','BELLOSGUARDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2845,'5371','Bellou-en-houlme','BELLOU-EN-HOULME',NULL,'','France','',0,0,76,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2846,'31294','Bellows Falls','BELLOWS FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2847,'40225','Bellport','BELLPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2848,'33077','Bells','BELLS',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2849,'7602','Bellshill','BELLSHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2850,'34097','Belltrees','BELLTREES',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2851,'11129','Belluno','BELLUNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2852,'2528','Bellver De Cerdanya','BELLVER DE CERDANYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2853,'29255','Bellville','BELLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2854,'34711','Bellvue','BELLVUE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2855,'28199','Belmar','BELMAR',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2856,'18301','Belmont','BELMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:42','1900-01-01 00:00:00',1,0,1),(2857,'15893','Belmonte','BELMONTE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2858,'24917','Belmopan','BELMOPAN',NULL,'','Belize','',0,0,22,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2859,'25019','Belo Horizonte','BELO HORIZONTE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2860,'40613','Belo Tsiribihina','BELO TSIRIBIHINA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2861,'25953','Beloeil','BELOEIL',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2862,'31696','Beloit','BELOIT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2863,'16253','Beloreck','BELORECK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2864,'44205','Belparao','BELPARAO',NULL,'','India','',0,0,101,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2865,'11618','Belpasso','BELPASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2866,'7603','Belper','BELPER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2867,'30473','Belton','BELTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2868,'7604','Belton (Leicestershire)','BELTON (LEICESTERSHIRE)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2869,'21641','Beltsville','BELTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2870,'13717','Beltsy','BELTSY',NULL,'','Moldova, Republic Of','',0,0,144,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2871,'3700','Belunza','BELUNZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:43','1900-01-01 00:00:00',1,0,1),(2872,'11619','Belvedere','BELVEDERE',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2873,'19711','Belvedere','BELVEDERE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2874,'41581','Belves','BELVES',NULL,'','France','',0,0,76,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2875,'5297','Belvezet','BELVEZET',NULL,'','France','',0,0,76,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2876,'28200','Belvidere','BELVIDERE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2877,'32392','Belville','BELVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2878,'3399','Belvis De La Jara','BELVIS DE LA JARA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2879,'40120','Belz','BELZ',NULL,'','France','',0,0,76,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2880,'7606','Bembridge','BEMBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2881,'22318','Bemidji','BEMIDJI',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2882,'15792','Bemposta','BEMPOSTA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2883,'28636','Bemus Point','BEMUS POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2884,'19712','Ben Hill','BEN HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:44','1900-01-01 00:00:00',1,0,1),(2885,'3187','Benacazon','BENACAZON',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2886,'3188','Benahavis','BENAHAVIS',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2887,'26487','Benalla','BENALLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2888,'3189','Benalmadena','BENALMADENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2889,'3190','Benalup De Sidonia','BENALUP DE SIDONIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2890,'39517','Benaoján','BENAOJÁN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2891,'3316','Benasque','BENASQUE',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2892,'10497','Benaulim','BENAULIM',NULL,'','India','',0,0,101,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2893,'3434','Benavente','BENAVENTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2894,'6916','Benbecula','BENBECULA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2895,'30474','Benbrook','BENBROOK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2896,'29617','Bend','BEND',NULL,'','United States','',0,0,231,'2016-10-17 10:41:45','1900-01-01 00:00:00',1,0,1),(2897,'27179','Bendestorf','BENDESTORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2898,'26887','Bendigo','BENDIGO',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2899,'39208','Bendorf','BENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2900,'11071','Bene Beraq','BENE BERAQ',NULL,'','Israel','',0,0,106,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2901,'11621','Bene Vagienna','BENE VAGIENNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2902,'22714','Benediktbeuern','BENEDIKTBEUERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2903,'24304','Benesov','BENESOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2904,'11622','Benevello','BENEVELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2905,'12710','Benevento','BENEVENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2906,'15992','Benfica','BENFICA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:41:46','1900-01-01 00:00:00',1,0,1),(2907,'23673','Bengbu','BENGBU',NULL,'','China','',0,0,46,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2908,'13559','Benghazi','BENGHAZI',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2909,'10278','Bengkulu','BENGKULU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2910,'22938','Bengough','BENGOUGH',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2911,'25844','Benguela','BENGUELA',NULL,'','Angola','',0,0,6,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2912,'5621','Bengy-sur-crao','BENGY-SUR-CRAO',NULL,'','France','',0,0,76,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2913,'32624','Beni','BENI',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2914,'36383','Beni Mellal','BENI MELLAL',NULL,'','Morocco','',0,0,148,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2915,'3735','Benicarlo','BENICARLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2916,'3736','Benicasim','BENICASIM',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2917,'41417','Benicassim','BENICASSIM',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2918,'18303','Benicia','BENICIA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2919,'3737','Benidorm','BENIDORM',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2920,'3738','Benimaurell','BENIMAURELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:47','1900-01-01 00:00:00',1,0,1),(2921,'41956','Benisano','BENISANO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2922,'2873','Benissa','BENISSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2923,'13892','Benito Juarez','BENITO JUAREZ',NULL,'','Mexico','',0,0,141,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2924,'9441','Benitses','BENITSES',NULL,'','Greece','',0,0,86,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2925,'32380','Benmore Gardens','BENMORE GARDENS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2926,'1926','Benneckenstein','BENNECKENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2927,'24850','Bennett\'s Harbour','BENNETT\'S HARBOUR',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2928,'30291','Bennettsville','BENNETTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2929,'31295','Bennington','BENNINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2930,'5516','Benodet','BENODET',NULL,'','France','',0,0,76,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2931,'41580','Benodet-port','BENODET-PORT',NULL,'','France','',0,0,76,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2932,'6322','Benon','BENON',NULL,'','France','',0,0,76,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2933,'32552','Benoni','BENONI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2934,'37879','Bénouville','BÉNOUVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2935,'29818','Bensalem','BENSALEM',NULL,'','United States','',0,0,231,'2016-10-17 10:41:48','1900-01-01 00:00:00',1,0,1),(2936,'27331','Bensberg','BENSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2937,'20447','Bensenville','BENSENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2938,'403','Bensheim','BENSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2939,'22320','Benson','BENSON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2940,'11623','Bentivoglio','BENTIVOGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2941,'26186','Bentleigh','BENTLEIGH',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2942,'7607','Bentley','BENTLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2943,'29820','Bentleyville','BENTLEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2944,'25155','Bento Goncalves','BENTO GONCALVES',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2945,'17984','Benton','BENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:41:49','1900-01-01 00:00:00',1,0,1),(2946,'43170','Bentong','BENTONG',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2947,'20160','Bentonsport','BENTONSPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2948,'17985','Bentonville','BENTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2949,'13610','Bentota','BENTOTA',NULL,'','Sri Lanka','Bentota',0,0,200,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2950,'23866','Benxi','BENXI',NULL,'','China','',0,0,46,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2951,'13225','Beppu','BEPPU',NULL,'','Japan','',0,0,110,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2952,'4046','Beqa Island','BEQA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2953,'42626','Beqaa','BEQAA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2954,'32162','Bequia Island','BEQUIA ISLAND',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2955,'42340','Berastagi','BERASTAGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2956,'42223','Berat','BERAT',NULL,'','Albania','',0,0,2,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2957,'10147','Berau','BERAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2958,'26067','Berazategui','BERAZATEGUI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2959,'5151','Berbiguieres','BERBIGUIERES',NULL,'','France','',0,0,76,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2960,'24737','Berchem','BERCHEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2961,'4909','Bercheres Sur Vesgre','BERCHERES SUR VESGRE',NULL,'','France','',0,0,76,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2962,'57538','Berching','BERCHING',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:50','1900-01-01 00:00:00',1,0,1),(2963,'22715','Berchtesgaden','BERCHTESGADEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2964,'3191','Berchules','BERCHULES',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2965,'4146','Berck','BERCK',NULL,'','France','',0,0,76,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2966,'7608','Bere Regis','BERE REGIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2967,'33592','Berea','BEREA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2968,'25581','Berens River','BERENS RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2969,'41437','Berenty','BERENTY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2970,'32992','Beresford','BERESFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2971,'34386','Beresford','BERESFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2972,'22717','Berg, 823','BERG, 823',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2973,'3519','Berga','BERGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2974,'17314','Bergama','BERGAMA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2975,'14707','Bergambacht','BERGAMBACHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2976,'12782','Bergamo','BERGAMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:51','1900-01-01 00:00:00',1,0,1),(2977,'35530','Bergamo-fuipiano Ima','BERGAMO-FUIPIANO IMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2978,'755','Berge','BERGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2979,'27180','Bergedorf','BERGEDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2980,'14790','Bergen','BERGEN',NULL,'','Norway','Bergen',0,0,164,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2981,'680','Bergen','BERGEN',NULL,'','Germany','Bergen',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2982,'36483','Bergen-os','BERGEN-OS',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2983,'4901','Bergerac','BERGERAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2984,'36285','Bergerac-laveyssiere','BERGERAC-LAVEYSSIERE',NULL,'','France','',0,0,76,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2985,'3956','Berghall','BERGHALL',NULL,'','Finland','',0,0,75,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2986,'5045','Bergheim','BERGHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2987,'27158','Bergheim','BERGHEIM',NULL,'','Austria','',0,0,14,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2988,'27332','Bergisch Gladbach','BERGISCH GLADBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2989,'101','Bergisches Land','BERGISCHES LAND',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2990,'23135','Bergun','BERGUN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2991,'16816','Bergvik','BERGVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2992,'32512','Bergville','BERGVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:41:52','1900-01-01 00:00:00',1,0,1),(2993,'42180','Berhampur','BERHAMPUR',NULL,'','India','',0,0,101,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2994,'41430','Beriain','BERIAIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2995,'14292','Berjaya Hills','BERJAYA HILLS',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2996,'41819','Berkane','BERKANE',NULL,'','Morocco','',0,0,148,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2997,'42838','Berkel Enschot','BERKEL ENSCHOT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2998,'27578','Berkeley','BERKELEY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(2999,'7609','Berkeley','BERKELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3000,'37645','Berkhamsted','BERKHAMSTED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3001,'6917','Berkshire','BERKSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3002,'7610','Berkswell','BERKSWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3003,'14875','Berlevag','BERLEVAG',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3004,'14771','Berlevåg','BERLEVÅG',NULL,'','Norway','',0,0,164,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3005,'1996','Berlin','BERLIN',NULL,'','Germany','Berlin',0,0,83,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3006,'19051','Berlin','BERLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:53','1900-01-01 00:00:00',1,0,1),(3007,'40209','Bermeo','BERMEO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3008,'1871','Bermsgrun','BERMSGRUN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3009,'24926','Bermuda','BERMUDA',NULL,'','Bermuda','',0,0,24,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3010,'18306','Bermuda Dunes','BERMUDA DUNES',NULL,'','United States','',0,0,231,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3011,'24900','Bermudian Landing','BERMUDIAN LANDING',NULL,'','Belize','',0,0,22,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3012,'23432','Bern','BERN',NULL,'','Switzerland','Bern',0,0,210,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3013,'37416','Bernalda','BERNALDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3014,'28501','Bernalillo','BERNALILLO',NULL,'','United States','',0,0,231,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3015,'28202','Bernardsville','BERNARDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3016,'37432','Bernate Ticino','BERNATE TICINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3017,'22506','Bernau','BERNAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3018,'5440','Bernay','BERNAY',NULL,'','France','',0,0,76,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3019,'1927','Bernburg','BERNBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3021,'22998','Bernese Alps','BERNESE ALPS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3022,'23433','Bernex','BERNEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3023,'6581','Bernin','BERNIN',NULL,'','France','',0,0,76,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3024,'1702','Bernkastel','BERNKASTEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3025,'36040','Bernkastel-kaus','BERNKASTEL-KAUS',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:54','1900-01-01 00:00:00',1,0,1),(3026,'2043','Bernkastel-kues','BERNKASTEL-KUES',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3027,'1965','Bernshausen','BERNSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3028,'37604','Beroroha','BEROROHA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3029,'24352','Beroun','BEROUN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3030,'4147','Berrias-et-casteljau','BERRIAS-ET-CASTELJAU',NULL,'','France','',0,0,76,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3031,'26826','Berriedale','BERRIEDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3032,'21989','Berrien Springs','BERRIEN SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3033,'37497','Berrimah','BERRIMAH',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3034,'3050','Berrioplano','BERRIOPLANO',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3035,'2531','Berrón','BERRÓN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3036,'34099','Berry','BERRY',NULL,'','Australia','',0,0,13,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3037,'18307','Berry Creek','BERRY CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3038,'37680','Berry-au-bac','BERRY-AU-BAC',NULL,'','France','',0,0,76,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3039,'31041','Berryville','BERRYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3040,'44124','Bersteland','BERSTELAND',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:55','1900-01-01 00:00:00',1,0,1),(3041,'25954','Berthierville','BERTHIERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3042,'34712','Berthoud','BERTHOUD',NULL,'','United States','',0,0,231,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3043,'12714','Bertinoro','BERTINORO',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3044,'980','Bertioga','BERTIOGA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3045,'24010','Bertoua','BERTOUA',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3046,'6021','Bertrichamps','BERTRICHAMPS',NULL,'','France','',0,0,76,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3047,'2089','Bertsdorf-hornitz','BERTSDORF-HORNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3048,'13459','Beru','BERU',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3049,'3051','Beruete','BERUETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3050,'13590','Beruwela','BERUWELA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3051,'24446','Berwang','BERWANG',NULL,'','Austria','',0,0,14,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3052,'37586','Berwick','BERWICK',NULL,'','United States','',0,0,231,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3053,'7611','Berwick-upon-tweed','BERWICK-UPON-TWEED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3054,'29821','Berwyn','BERWYN',NULL,'','United States','',0,0,231,'2016-10-17 10:41:56','1900-01-01 00:00:00',1,0,1),(3055,'4148','Berze La Ville','BERZE LA VILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3056,'38189','Besalampy','BESALAMPY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3057,'3520','Besalu','BESALU',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3058,'5765','Besancon','BESANCON',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3059,'16461','Besedy','BESEDY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3060,'4149','Besle-sur-vilaine','BESLE-SUR-VILAINE',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3061,'37857','Besse','BESSE',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3062,'5298','Besse-et-saint-anastaise','BESSE-ET-SAINT-ANASTAISE',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3063,'21990','Bessemer','BESSEMER',NULL,'','United States','',0,0,231,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3064,'6582','Bessenay','BESSENAY',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3065,'13122','Bessho Hot Springs','BESSHO HOT SPRINGS',NULL,'','Japan','',0,0,110,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3066,'41579','Bessoncourt','BESSONCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3067,'41578','Bessonies','BESSONIES',NULL,'','France','',0,0,76,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3068,'14590','Best','BEST',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3069,'42783','Besut','BESUT',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:41:57','1900-01-01 00:00:00',1,0,1),(3070,'4150','Bétaille','BÉTAILLE',NULL,'','France','',0,0,76,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3071,'40803','Betalghat','BETALGHAT',NULL,'','India','',0,0,101,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3072,'37387','Betanzos','BETANZOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3073,'7612','Betchworth','BETCHWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3074,'3739','Betera','BETERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3075,'20450','Bethalto','BETHALTO',NULL,'','United States','',0,0,231,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3076,'27579','Bethany','BETHANY',NULL,'','United States','',0,0,231,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3077,'21831','Bethel','BETHEL',NULL,'','United States','',0,0,231,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3078,'21643','Bethesda','BETHESDA',NULL,'','United States','',0,0,231,'2016-10-17 10:41:58','1900-01-01 00:00:00',1,0,1),(3079,'29824','Bethlehem','BETHLEHEM',NULL,'','United States','',0,0,231,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3080,'35411','Bethlehem','BETHLEHEM',NULL,'','Israel','Bethlehem',0,0,106,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3081,'28638','Bethpage','BETHPAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3082,'6148','Bethune','BETHUNE',NULL,'','France','',0,0,76,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3083,'38083','Betioky','BETIOKY',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3084,'3521','Betren','BETREN',NULL,'','Spain','',0,0,199,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3085,'43966','Bettancourt-la-ferree','BETTANCOURT-LA-FERREE',NULL,'','France','',0,0,76,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3086,'13654','Bettembourg','BETTEMBOURG',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3087,'20451','Bettendorf','BETTENDORF',NULL,'','United States','',0,0,231,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3088,'17570','Bettles','BETTLES',NULL,'','United States','',0,0,231,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3089,'23460','Bettmeralp','BETTMERALP',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3090,'35467','Bettolle','BETTOLLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:41:59','1900-01-01 00:00:00',1,0,1),(3091,'10909','Bettystown','BETTYSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3092,'44206','Betul','BETUL',NULL,'','India','',0,0,101,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3093,'14456','Betuwe - Lower Rhine','BETUWE - LOWER RHINE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3094,'40238','Betws Garmon','BETWS GARMON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3095,'6918','Betws-y-coed','BETWS-Y-COED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3096,'27181','Betzendorf','BETZENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3097,'21991','Beulah','BEULAH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3098,'6149','Beuvry','BEUVRY',NULL,'','France','',0,0,76,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3099,'11625','Bevagna','BEVAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3100,'40088','Bevaix','BEVAIX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3101,'24715','Beveren','BEVEREN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3102,'27333','Bevergern','BEVERGERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3103,'7613','Beverley','BEVERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3104,'21314','Beverly','BEVERLY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:00','1900-01-01 00:00:00',1,0,1),(3105,'23136','Bevers','BEVERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3106,'27334','Beverungen','BEVERUNGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3107,'40783','Bevilacqua','BEVILACQUA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3108,'7614','Bewdley','BEWDLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3109,'23137','Bex','BEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3110,'7615','Bexhill','BEXHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3111,'29258','Bexley','BEXLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3112,'7616','Bexley','BEXLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3113,'7617','Bexleyheath','BEXLEYHEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3114,'17282','Beylerbeyi','BEYLERBEYI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3115,'37469','Beylikduzu','BEYLIKDUZU',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3116,'43967','Beynat','BEYNAT',NULL,'','France','',0,0,76,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3117,'6583','Beynost','BEYNOST',NULL,'','France','',0,0,76,'2016-10-17 10:42:01','1900-01-01 00:00:00',1,0,1),(3118,'17198','Beyoglu - Taksim','BEYOGLU - TAKSIM',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3119,'10498','Beypore','BEYPORE',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3120,'5797','Bezancourt','BEZANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3121,'24512','Bezau','BEZAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3122,'4933','Beziers','BEZIERS',NULL,'','France','',0,0,76,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3123,'4670','Bezons','BEZONS',NULL,'','France','',0,0,76,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3124,'15047','Bhadrapur','BHADRAPUR',NULL,'','Nepal','',0,0,153,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3125,'15048','Bhairahawa','BHAIRAHAWA',NULL,'','Nepal','',0,0,153,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3126,'15049','Bhaktapur','BHAKTAPUR',NULL,'','Nepal','Bhaktapur',0,0,153,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3127,'13552','Bhamdoun','BHAMDOUN',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3128,'42067','Bhamo','BHAMO',NULL,'','Myanmar','',0,0,150,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3129,'15050','Bharatpur','BHARATPUR',NULL,'','Nepal','Travel Packages to Bharatpur | Bharatpur Tour Pack',0,0,153,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3130,'10499','Bharatpur','BHARATPUR',NULL,'','India','Travel Packages to Bharatpur | Bharatpur Tour Pack',2,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3131,'40804','Bharuch','BHARUCH',NULL,'','India','Bharuch',16,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3132,'10500','Bhatinda','BHATINDA',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3133,'10632','Bhavnagar','BHAVNAGAR',NULL,'','India','Bhavnagar',16,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3134,'39614','Bhedaghat','BHEDAGHAT',NULL,'','India','Bhedaghat',15,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3135,'40682','Bheeramballi','BHEERAMBALLI',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3136,'42613','Bhenswara','BHENSWARA',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3137,'37655','Bhijhariya','BHIJHARIYA',NULL,'','India','',0,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3138,'37615','Bhimtal','BHIMTAL',NULL,'','India','Bhimtal',9,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3139,'10648','Bhopal','BHOPAL',NULL,'','India','Bhopal',15,0,101,'2016-10-17 10:42:02','1900-01-01 00:00:00',1,0,1),(3141,'10392','Bhubaneswar','BHUBANESWAR',NULL,'','India','',8,0,101,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3142,'10633','Bhuj','BHUJ',NULL,'','India','Bhuj',16,0,101,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3143,'15294','Bhurban','BHURBAN',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3144,'25254','Bhutan city','BHUTAN',NULL,'','Bhutan','',0,0,25,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3145,'10307','Biak','BIAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3146,'39922','Biala Piska','BIALA PISKA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3147,'26099','Bialet Masse','BIALET MASSE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3148,'15690','Bialobrzegi','BIALOBRZEGI',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3149,'15606','Bialowieza','BIALOWIEZA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3150,'15719','Bialystok','BIALYSTOK',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3151,'11626','Biandronno','BIANDRONNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3152,'3740','Biar','BIAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3153,'5152','Biarritz','BIARRITZ',NULL,'','France','',0,0,76,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3154,'6071','Biars-sur-cere','BIARS-SUR-CERE',NULL,'','France','',0,0,76,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3155,'5153','Bias','BIAS',NULL,'','France','',0,0,76,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3156,'23138','Biasca','BIASCA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3157,'37678','Biatorbagy','BIATORBAGY',NULL,'','Hungary','',0,0,99,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3158,'11627','Bibbiena','BIBBIENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3159,'11628','Bibbona','BIBBONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:03','1900-01-01 00:00:00',1,0,1),(3160,'103','Biberach An Der Riss','BIBERACH AN DER RISS',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3161,'24447','Biberwier','BIBERWIER',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3162,'12874','Bibione','BIBIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3163,'42142','Biboohra','BIBOOHRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3164,'7618','Bibury','BIBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3165,'7619','Bicester','BICESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3166,'26827','Bicheno','BICHENO',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3167,'6919','Bicker Bar','BICKER BAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3168,'26187','Bickerton Island','BICKERTON ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3169,'33303','Bicknell','BICKNELL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3170,'39047','Bidadi','BIDADI',NULL,'','India','',0,0,101,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3171,'5154','Bidarray','BIDARRAY',NULL,'','France','',0,0,76,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3172,'5155','Bidart','BIDART',NULL,'','France','',0,0,76,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3173,'21832','Biddeford','BIDDEFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:04','1900-01-01 00:00:00',1,0,1),(3174,'7620','Biddenden','BIDDENDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3175,'7621','Bideford','BIDEFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3176,'37750','Bidegoyan','BIDEGOYAN',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3177,'404','Biedenkopf','BIEDENKOPF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3178,'40507','Biederbach','BIEDERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3179,'23448','Biel','BIEL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3180,'39584','Bielawa','BIELAWA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3181,'7622','Bieldside','BIELDSIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3182,'27335','Bielefeld','BIELEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3183,'11629','Biella','BIELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3184,'3317','Bielsa','BIELSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3185,'15608','Bielsko-biala','BIELSKO-BIALA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3186,'44287','Bien Hoa','BIEN HOA',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3187,'11630','Bientina','BIENTINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3188,'24411','Bierbaum','BIERBAUM',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:05','1900-01-01 00:00:00',1,0,1),(3189,'3318','Bierge','BIERGE',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3190,'105','Bierhuette','BIERHUETTE',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3191,'611','Biersdorf','BIERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3192,'3319','Biescas','BIESCAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3193,'612','Biesdorf','BIESDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3194,'4671','Bievres','BIEVRES',NULL,'','France','',0,0,76,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3195,'21994','Big Bay','BIG BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:06','1900-01-01 00:00:00',1,0,1),(3196,'34449','Big Trout Lake','BIG TROUT LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:07','1900-01-01 00:00:00',1,0,1),(3197,'5156','Biganos','BIGANOS',NULL,'','France','',0,0,76,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3198,'27938','Bigfork','BIGFORK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3199,'22939','Biggar','BIGGAR',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3200,'7623','Biggar','BIGGAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3201,'26660','Biggera Waters','BIGGERA WATERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3202,'7624','Biggin Hill','BIGGIN HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3203,'7625','Biggleswade','BIGGLESWADE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3204,'29619','Biggs Junction','BIGGS JUNCTION',NULL,'','United States','',0,0,231,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3205,'44207','Bigha','BIGHA',NULL,'','India','',0,0,101,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3206,'42345','Biguglia','BIGUGLIA',NULL,'','France','',0,0,76,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3207,'40073','Bihac','BIHAC',NULL,'','Bosnia and Herzegowina','',0,0,27,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3208,'42607','Bijapur','BIJAPUR',NULL,'','India','Bijapur',17,0,101,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3209,'10669','Bikaner','BIKANER',NULL,'','India','Bikaner',2,0,101,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3210,'14147','Bikini Atoll','BIKINI ATOLL',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3211,'37229','Bílá Tremesná','BÍLÁ TREMESNÁ',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3212,'10501','Bilaspur','BILASPUR',NULL,'','India','',0,0,101,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3213,'3701','Bilbao','BILBAO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:08','1900-01-01 00:00:00',1,0,1),(3214,'35036','Bilbao-baracaldo','BILBAO-BARACALDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3215,'35080','Bilbao-santurce','BILBAO-SANTURCE',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3216,'7626','Bilbrough','BILBROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3217,'11019','Bildudalur','BILDUDALUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3218,'17264','Bilecik','BILECIK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3219,'5157','Billere','BILLERE',NULL,'','France','',0,0,76,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3220,'21315','Billerica','BILLERICA',NULL,'','United States','',0,0,231,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3221,'9255','Billesley','BILLESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3222,'5517','Billiers','BILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3223,'27939','Billings','BILLINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3224,'7627','Billingshurst','BILLINGSHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3225,'7628','Billington','BILLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3226,'378','Billstedt','BILLSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3227,'2115','Billum','BILLUM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3228,'2256','Billund','BILLUND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:09','1900-01-01 00:00:00',1,0,1),(3229,'26384','Biloela','BILOELA',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3230,'27830','Biloxi','BILOXI',NULL,'','United States','',0,0,231,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3231,'34100','Bilpin','BILPIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3232,'10347','Bima','BIMA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3233,'24849','Bimini','BIMINI',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3234,'15529','Binangonan','BINANGONAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3235,'11631','Binasco','BINASCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3236,'106','Bindlach','BINDLACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3237,'2116','Bindslev','BINDSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3238,'38247','Bine El Ouidane','BINE EL OUIDANE',NULL,'','Morocco','',0,0,148,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3239,'7629','Binfield','BINFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3240,'107','Bingen','BINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3241,'7630','Bingham','BINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3242,'21833','Bingham','BINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3243,'28639','Binghamton','BINGHAMTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:10','1900-01-01 00:00:00',1,0,1),(3244,'7631','Bingley','BINGLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3245,'17265','Bingol','BINGOL',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3246,'38419','Binic','BINIC',NULL,'','France','',0,0,76,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3247,'2534','Binissaida','BINISSAIDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3248,'2535','Binissalem','BINISSALEM',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3249,'108','Binnenland','BINNENLAND',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3250,'23139','Binningen','BINNINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3251,'37249','Binsar','BINSAR',NULL,'','India','',0,0,101,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3252,'1761','Bintan','BINTAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3253,'14374','Bintulu','BINTULU',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3254,'36041','Binz','BINZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3255,'32637','Binza','BINZA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3256,'39948','Binzen','BINZEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3257,'43818','Binzhou','BINZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3258,'10008','Biograd Na Moru','BIOGRAD NA MORU',NULL,'','Croatia','',0,0,55,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3259,'6394','Biot','BIOT',NULL,'','France','',0,0,76,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3260,'17150','Bir El Bey','BIR EL BEY',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3261,'15051','Biratnagar','BIRATNAGAR',NULL,'','Nepal','',0,0,153,'2016-10-17 10:42:11','1900-01-01 00:00:00',1,0,1),(3262,'7632','Birch','BIRCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3263,'17571','Birch Creek','BIRCH CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3264,'31698','Birchwood','BIRCHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3265,'29825','Bird In Hand','BIRD IN HAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3266,'16913','Bird Island','BIRD ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3267,'7633','Birdlip','BIRDLIP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3268,'25582','Birds Hill','BIRDS HILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3269,'29826','Birdsboro','BIRDSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3270,'26385','Birdsville','BIRDSVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3271,'38109','Birgitz','BIRGITZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3272,'42637','Birigui','BIRIGUI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3273,'2271','Birk','BIRK',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3274,'7634','Birkenhead','BIRKENHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3275,'15090','Birkenhead','BIRKENHEAD',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3276,'756','Birkenwerder','BIRKENWERDER',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:12','1900-01-01 00:00:00',1,0,1),(3277,'2168','Birkerod','BIRKEROD',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3278,'23140','Birmensdorf','BIRMENSDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3279,'7635','Birmingham','BIRMINGHAM',NULL,'','United Kingdom','Birmingham ',0,0,229,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3280,'17840','Birmingham','BIRMINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3281,'10919','Birr','BIRR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3282,'24227','Birri','BIRRI',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3283,'23141','Birsfelden','BIRSFELDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3284,'40628','Birstonas','BIRSTONAS',NULL,'','Lithuania','',0,0,125,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3285,'7636','Birtley','BIRTLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3286,'16387','Biryulevo','BIRYULEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3287,'18106','Bisbee','BISBEE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3288,'4963','Biscarrosse','BISCARROSSE',NULL,'','France','',0,0,76,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3289,'11632','Bisceglie','BISCEGLIE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3290,'39666','Bischofsgrun','BISCHOFSGRUN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3291,'37590','Bischwihr','BISCHWIHR',NULL,'','France','',0,0,76,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3292,'33778','Biscoe','BISCOE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3293,'16487','Bisha','BISHA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3294,'13446','Bishkek','BISHKEK',NULL,'','Kyrgyzstan','',0,0,117,'2016-10-17 10:42:13','1900-01-01 00:00:00',1,0,1),(3295,'32437','Bisho','BISHO',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3296,'18315','Bishop','BISHOP',NULL,'','United States','',0,0,231,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3297,'7637','Bishop Auckland','BISHOP AUCKLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3298,'15091','Bishopdale','BISHOPDALE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3299,'40377','Bishops Castle','BISHOPS CASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3300,'6922','Bishop\'s Stortford','BISHOP\'S STORTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3301,'32438','Bishopscourt','BISHOPSCOURT',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3302,'7638','Bishopsteignton','BISHOPSTEIGNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3303,'37932','Bishopston','BISHOPSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3304,'7639','Bishopstone','BISHOPSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3305,'7640','Bishopton','BISHOPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3306,'30293','Bishopville','BISHOPVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3307,'38778','Biskra','BISKRA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3308,'15499','Bislig','BISLIG',NULL,'','Philippines','',0,0,173,'2016-10-17 10:42:14','1900-01-01 00:00:00',1,0,1),(3309,'17988','Bismarck','BISMARCK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3310,'40187','Bispingen','BISPINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3311,'9392','Bissau','BISSAU',NULL,'','Guinea-Bissau','',0,0,93,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3312,'27182','Bissendorf','BISSENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3313,'23142','Bissone','BISSONE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3314,'36616','Bistrita','BISTRITA',NULL,'','Romania','',0,0,179,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3315,'6837','Bitam','BITAM',NULL,'','Gabon','',0,0,80,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3316,'613','Bitburg','BITBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3317,'40071','Bitche','BITCHE',NULL,'','France','',0,0,76,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3318,'17268','Bitlis','BITLIS',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3319,'38412','Bitonto','BITONTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3320,'1872','Bitterfeld','BITTERFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3321,'109','Bitterfeld-wolfen','BITTERFELD-WOLFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3322,'11633','Bitti','BITTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3323,'11634','Bivigliano','BIVIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3324,'23143','Bivio','BIVIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3325,'22321','Biwabik','BIWABIK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:15','1900-01-01 00:00:00',1,0,1),(3326,'32879','Bixby','BIXBY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3327,'5895','Bize-minervois','BIZE-MINERVOIS',NULL,'','France','',0,0,76,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3328,'17166','Bizerte','BIZERTE',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3329,'14791','Bjerke','BJERKE',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3330,'14792','Bjerkvik','BJERKVIK',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3331,'2336','Bjerringbro','BJERRINGBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3332,'40736','Bjuv','BJUV',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3333,'7641','Blaby','BLABY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3334,'6923','Black Bourton','BLACK BOURTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3335,'29620','Black Butte Ranch','BLACK BUTTE RANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3336,'1351','Black Forest','BLACK FOREST',NULL,'','GERMANY','',38,0,83,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3337,'25698','Black Point','BLACK POINT',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3338,'43644','Black River','BLACK RIVER',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:16','1900-01-01 00:00:00',1,0,1),(3339,'17134','Black Rock','BLACK ROCK',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3340,'25248','Black Rock','BLACK ROCK',NULL,'','Barbados','',0,0,19,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3341,'1188','Black Sea Coast','BLACK SEA COAST',NULL,'','ROMANIA','',0,0,179,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3342,'26386','Blackall','BLACKALL',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3343,'7642','Blackawton','BLACKAWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3344,'6924','Blackbeck','BLACKBECK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3345,'7643','Blackburn','BLACKBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3346,'26188','Blackburn','BLACKBURN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3347,'26661','Blackbutt','BLACKBUTT',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3348,'25395','Blackcomb - Upper Village','BLACKCOMB - UPPER VILLAGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3349,'22322','Blackduck','BLACKDUCK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3350,'20331','Blackfoot','BLACKFOOT',NULL,'','United States','',0,0,231,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3351,'32993','Blackhawk','BLACKHAWK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3352,'34101','Blackheath','BLACKHEATH',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3353,'32553','Blackheath','BLACKHEATH',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:17','1900-01-01 00:00:00',1,0,1),(3354,'7644','Blackpool','BLACKPOOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3355,'1187','Blackpool','BLACKPOOL',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3356,'26662','Blacks Beach','BLACKS BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3357,'31044','Blacksburg','BLACKSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3358,'38635','Blackshear','BLACKSHEAR',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3359,'31046','Blackstone','BLACKSTONE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3360,'34102','Blacktown','BLACKTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3361,'7645','Blackwater','BLACKWATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3362,'26387','Blackwater','BLACKWATER',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3363,'7646','Blackwaterfoot','BLACKWATERFOOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3364,'32880','Blackwell','BLACKWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3365,'19713','Blackwells','BLACKWELLS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3366,'28203','Blackwood','BLACKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:18','1900-01-01 00:00:00',1,0,1),(3367,'37626','Blackwood','BLACKWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3368,'42369','Bladel','BLADEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3369,'21644','Bladensburg','BLADENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3370,'4151','Blagnac','BLAGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3371,'34856','Blagoevgrad','BLAGOEVGRAD',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3372,'16254','Blagoveschensk','BLAGOVESCHENSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3373,'22323','Blaine','BLAINE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3374,'25955','Blainville','BLAINVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3375,'39857','Blainville-sur-mer','BLAINVILLE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3376,'28103','Blair','BLAIR',NULL,'','United States','',0,0,231,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3377,'26361','Blair Athol','BLAIR ATHOL',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3378,'7647','Blair Atholl','BLAIR ATHOLL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:19','1900-01-01 00:00:00',1,0,1),(3379,'7648','Blairgowrie','BLAIRGOWRIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3380,'25275','Blairmore','BLAIRMORE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3381,'18316','Blairsden','BLAIRSDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3382,'18317','Blairsden-graeagle','BLAIRSDEN-GRAEAGLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3383,'28204','Blairstown','BLAIRSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3384,'19714','Blairsville','BLAIRSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3385,'5441','Blaisy-bas','BLAISY-BAS',NULL,'','France','',0,0,76,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3386,'16211','Blaj','BLAJ',NULL,'','Romania','',0,0,179,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3387,'34103','Blakehurst','BLAKEHURST',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3388,'34714','Blakeland','BLAKELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3389,'19715','Blakely','BLAKELY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3390,'7649','Blakeney','BLAKENEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:20','1900-01-01 00:00:00',1,0,1),(3391,'29829','Blakeslee','BLAKESLEE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3392,'25956','Blanc Sablon','BLANC SABLON',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3393,'20332','Blanchard','BLANCHARD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3394,'10829','Blanchardstown','BLANCHARDSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3395,'26445','Blanche Town','BLANCHE TOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3396,'42907','Blanchetown','BLANCHETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3397,'7650','Blanchland','BLANCHLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3398,'31047','Bland','BLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3399,'21316','Blandford','BLANDFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3400,'7651','Blandford Forum','BLANDFORD FORUM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3401,'33304','Blanding','BLANDING',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3402,'33780','Blands','BLANDS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3403,'2463','Blanes','BLANES',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3404,'24721','Blankenberge','BLANKENBERGE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:21','1900-01-01 00:00:00',1,0,1),(3405,'757','Blankenfelde','BLANKENFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3406,'5158','Blanquefort','BLANQUEFORT',NULL,'','France','',0,0,76,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3407,'17989','Blanton','BLANTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3408,'14274','Blantyre','BLANTYRE',NULL,'','Malawi','',0,0,131,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3409,'10801','Blarney','BLARNEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3410,'28641','Blasdell','BLASDELL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3411,'23144','Blatten','BLATTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3412,'22507','Blaubeuren','BLAUBEUREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3413,'111','Blaustein','BLAUSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3414,'28643','Blauvelt','BLAUVELT',NULL,'','United States','',0,0,231,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3415,'7652','Blaydon On Tyne','BLAYDON ON TYNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3416,'40495','Blaye','BLAYE',NULL,'','France','',0,0,76,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3417,'16627','Bled','BLED',NULL,'','Slovenia','Bled',0,0,192,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3418,'40405','Bledington','BLEDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3419,'22508','Bleibach','BLEIBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3420,'43756','Bleiburg','BLEIBURG',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3421,'16662','Blekinge','BLEKINGE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3422,'15068','Blenheim','BLENHEIM',NULL,'','New Zealand','Blenheim',0,0,157,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3423,'34450','Blenheim','BLENHEIM',NULL,'','Canada','Blenheim',0,0,39,'2016-10-17 10:42:22','1900-01-01 00:00:00',1,0,1),(3424,'10709','Blessington','BLESSINGTON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3425,'43795','Blind Bay','BLIND BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3426,'20333','Bliss','BLISS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3427,'21998','Blissfield','BLISSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3428,'35351','Blitar','BLITAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3429,'30241','Block Island','BLOCK ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3430,'7653','Blockley','BLOCKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3431,'32543','Bloemfontein','BLOEMFONTEIN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3432,'5622','Blois','BLOIS',NULL,'','France','',0,0,76,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3433,'39232','Blokzijl','BLOKZIJL',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3434,'39438','Blomberg','BLOMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3435,'2186','Blommenslyst','BLOMMENSLYST',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3436,'5994','Blond','BLOND',NULL,'','France','',0,0,76,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3437,'11004','Blonduos','BLONDUOS',NULL,'','Iceland','Blonduos',0,0,100,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3438,'25583','Bloodvein','BLOODVEIN',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3439,'31700','Bloomer','BLOOMER',NULL,'','United States','',0,0,231,'2016-10-17 10:42:23','1900-01-01 00:00:00',1,0,1),(3440,'26663','Bloomfield','BLOOMFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3441,'28205','Bloomfield','BLOOMFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3442,'34452','Bloomfield','BLOOMFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3443,'20452','Bloomingdale','BLOOMINGDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3444,'20453','Bloomington','BLOOMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:24','1900-01-01 00:00:00',1,0,1),(3445,'29830','Bloomsburg','BLOOMSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3446,'7654','Bloomsbury','BLOOMSBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3447,'43808','Blossom Village','BLOSSOM VILLAGE',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3448,'5046','Blotzheim','BLOTZHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3449,'32393','Bloubergstrand','BLOUBERGSTRAND',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3450,'36713','Bloudan','BLOUDAN',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3451,'826','Blowatz','BLOWATZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3452,'25861','Blowing Point','BLOWING POINT',NULL,'','Anguilla','',0,0,7,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3453,'33781','Blowing Rock','BLOWING ROCK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3454,'24513','Bludenz','BLUDENZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3455,'7655','Blue Anchor','BLUE ANCHOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3456,'29259','Blue Ash','BLUE ASH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3457,'14251','Blue Bay','BLUE BAY',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:42:25','1900-01-01 00:00:00',1,0,1),(3458,'16943','Blue Hills','BLUE HILLS',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:42:26','1900-01-01 00:00:00',1,0,1),(3459,'34104','Blue Mountains','BLUE MOUNTAINS',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:26','1900-01-01 00:00:00',1,0,1),(3460,'25396','Blue River','BLUE RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3461,'31048','Bluefield','BLUEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3462,'32439','Bluewater Bay','BLUEWATER BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3463,'43631','Bluff','BLUFF',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3464,'33305','Bluff','BLUFF',NULL,'','United States','',0,0,231,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3465,'29261','Bluffton','BLUFFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:27','1900-01-01 00:00:00',1,0,1),(3466,'22509','Blumberg','BLUMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3467,'25176','Blumenau','BLUMENAU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3468,'7656','Blunsdon','BLUNSDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3469,'42962','Blyth','BLYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3470,'18320','Blythe','BLYTHE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3471,'17990','Blytheville','BLYTHEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3472,'30296','Blythewood','BLYTHEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3473,'43965','Bmbk','BMBK',NULL,'','France','',0,0,76,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3474,'14793','Bo','BO',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3475,'41205','Bo Phut','BO PHUT',NULL,'','Thailand','',0,0,215,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3476,'25173','Boa Vista','BOA VISTA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3477,'24141','Boa Vista','BOA VISTA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3478,'2982','Boadilla Del Monte','BOADILLA DEL MONTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3479,'29832','Boalsburg','BOALSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3480,'42896','Boao','BOAO',NULL,'','China','',0,0,46,'2016-10-17 10:42:28','1900-01-01 00:00:00',1,0,1),(3481,'23985','Bo\'ao','BO\'AO',NULL,'','China','',0,0,46,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3482,'29262','Boardman','BOARDMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3483,'11635','Boario Terme','BOARIO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3484,'26828','Boat Harbour','BOAT HARBOUR',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3485,'7657','Boat Of Garten','BOAT OF GARTEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3486,'15950','Boaventura','BOAVENTURA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3487,'17843','Boaz','BOAZ',NULL,'','United States','',0,0,231,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3488,'4672','Bobigny','BOBIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3489,'22719','Bobingen','BOBINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3490,'2054','Böblingen','BÖBLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3491,'24748','Bobo Dioulasso','BOBO DIOULASSO',NULL,'','Burkina Faso','',0,0,35,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3492,'3655','Boboras','BOBORAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3493,'26134','Boca','BOCA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:42:29','1900-01-01 00:00:00',1,0,1),(3494,'2363','Boca Chica','BOCA CHICA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3495,'3435','Boca De Huergano','BOCA DE HUERGANO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3496,'43982','Boca De Sabalos','BOCA DE SABALOS',NULL,'','Nicaragua','',0,0,158,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3497,'13791','Boca Del Rio','BOCA DEL RIO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3498,'19273','Boca Grande','BOCA GRANDE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3499,'43206','Bocairent','BOCAIRENT',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3500,'3741','Bocairente','BOCAIRENTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3501,'15346','Bocas Del Toro','BOCAS DEL TORO',NULL,'','Panama','',0,0,169,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3502,'11131','Bocca Di Magra','BOCCA DI MAGRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3503,'35471','Boccheggiano','BOCCHEGGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3504,'11636','Bocenago','BOCENAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3505,'15685','Bochnia','BOCHNIA',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3506,'38766','Bocholt','BOCHOLT',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3507,'2034','Bochum','BOCHUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3508,'27183','Bockenem','BOCKENEM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3509,'22720','Bockhorn','BOCKHORN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:30','1900-01-01 00:00:00',1,0,1),(3510,'1823','Bodega','BODEGA',NULL,'','United States','',0,0,231,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3511,'14708','Bodegraven','BODEGRAVEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3512,'7658','Bodelwyddan','BODELWYDDAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3513,'16749','Boden','BODEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3514,'22721','Bodenmais','BODENMAIS',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3515,'27069','Bodensdorf','BODENSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3517,'40840','Bodhgaya','BODHGAYA',NULL,'','India','',0,0,101,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3518,'27336','Bodingen','BODINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3519,'7659','Bodmin','BODMIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3520,'14913','Bodo','BODO',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3521,'17337','Bodrum','BODRUM',NULL,'','Turkey','Bodrum',0,0,222,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3522,'36805','Bodrum-gumbet','BODRUM-GUMBET',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3523,'36803','Bodrum-ortakent','BODRUM-ORTAKENT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3524,'36812','Bodrum-turgutreis','BODRUM-TURGUTREIS',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:31','1900-01-01 00:00:00',1,0,1),(3525,'36813','Bodrum-yaliciftlik','BODRUM-YALICIFTLIK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3526,'13722','Boduhuraa','BODUHURAA',NULL,'','Maldives','',0,0,133,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3527,'37915','Bodyke','BODYKE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3528,'5159','Boe','BOE',NULL,'','France','',0,0,76,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3529,'39792','Boebingen','BOEBINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3530,'112','Boeblingen','BOEBLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3531,'5160','Boeil-bezing','BOEIL-BEZING',NULL,'','France','',0,0,76,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3532,'14744','Boekelo','BOEKELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3533,'4153','Boën','BOËN',NULL,'','France','',0,0,76,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3534,'32625','Boende','BOENDE',NULL,'','Fiji','',0,0,74,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3535,'30479','Boerne','BOERNE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3536,'39811','Boffalora Sopra Ticino','BOFFALORA SOPRA TICINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3537,'16710','Bofors','BOFORS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3538,'19718','Bogart','BOGART',NULL,'','United States','',0,0,231,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3539,'40111','Bogazici','BOGAZICI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3540,'22722','Bogen','BOGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3541,'2187','Bogense','BOGENSE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:32','1900-01-01 00:00:00',1,0,1),(3542,'37334','Bogliasco','BOGLIASCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3543,'39691','Bogno','BOGNO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3544,'7660','Bognor Regis','BOGNOR REGIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3545,'10281','Bogor','BOGOR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3546,'35369','Bogor-puncak','BOGOR-PUNCAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3547,'24078','Bogota','BOGOTA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3548,'28647','Bohemia','BOHEMIA',NULL,'','United States','',0,0,231,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3549,'43347','Bohinj','BOHINJ',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3550,'16628','Bohinjska Bela','BOHINJSKA BELA',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3551,'16621','Bohinjsko Jezero','BOHINJSKO JEZERO',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3552,'27337','Bohlen','BOHLEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3553,'38650','Bohmstedt','BOHMSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3554,'1997','Bohnsdorf','BOHNSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3555,'36547','Bohol','BOHOL',NULL,'','Philippines','Bohol',0,0,173,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3556,'40627','Bohoyo','BOHOYO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3557,'41387','Boi','BOI',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3558,'28648','Boiceville','BOICEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3559,'26189','Boigu Island','BOIGU ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:33','1900-01-01 00:00:00',1,0,1),(3560,'29833','Boiling Springs','BOILING SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3561,'41979','Boipeba','BOIPEBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3562,'22001','Bois Blanc Island','BOIS BLANC ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3563,'43143','Bois De Boulogne','BOIS DE BOULOGNE',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3564,'25957','Bois-chatel','BOIS-CHATEL',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3565,'4673','Bois-colombes','BOIS-COLOMBES',NULL,'','France','',0,0,76,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3566,'20334','Boise','BOISE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:34','1900-01-01 00:00:00',1,0,1),(3567,'5798','Bois-guillaume','BOIS-GUILLAUME',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3568,'5623','Boismorand','BOISMORAND',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3569,'5624','Boisseaux','BOISSEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3570,'38306','Boisset','BOISSET',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3571,'43969','Boissy-saint-leger','BOISSY-SAINT-LEGER',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3572,'4154','Boissy-saint-léger','BOISSY-SAINT-LÉGER',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3573,'27184','Bokel','BOKEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3574,'42292','Bokissa Island','BOKISSA ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3575,'10220','Bokondini','BOKONDINI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3576,'37776','Bokong','BOKONG',NULL,'','Lesotho','',0,0,121,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3577,'32381','Boksburg','BOKSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3578,'9983','Bol','BOL',NULL,'','Croatia','',0,0,55,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3579,'26168','Bolans','BOLANS',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3580,'5799','Bolbec','BOLBEC',NULL,'','France','',0,0,76,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3581,'7661','Boldon','BOLDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:35','1900-01-01 00:00:00',1,0,1),(3582,'4008','Bole','BOLE',NULL,'','Finland','',0,0,75,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3583,'15630','Boleslawiec','BOLESLAWIEC',NULL,'','Poland','',0,0,174,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3584,'35473','Bolgheri','BOLGHERI',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3585,'44253','Bolifushi Island','BOLIFUSHI ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3586,'42940','Bolinao','BOLINAO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3587,'18322','Bolinas','BOLINAS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3588,'20456','Bolingbrook','BOLINGBROOK',NULL,'','United States','',0,0,231,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3589,'15920','Boliqueime','BOLIQUEIME',NULL,'','Portugal','',0,0,175,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3590,'27585','Bolivar','BOLIVAR',NULL,'','United States','',0,0,231,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3591,'24939','Bolivia','BOLIVIA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3592,'11637','Bollate','BOLLATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:36','1900-01-01 00:00:00',1,0,1),(3593,'614','Bollendorf','BOLLENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3594,'6395','Bollene','BOLLENE',NULL,'','France','',0,0,76,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3595,'6150','Bollezeele','BOLLEZEELE',NULL,'','France','',0,0,76,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3596,'16696','Bollnas','BOLLNAS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3597,'3192','Bollullos De La Mitacion','BOLLULLOS DE LA MITACION',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3598,'6756','Bollwiller','BOLLWILLER',NULL,'','France','',0,0,76,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3599,'7662','Bolney','BOLNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3600,'12715','Bologna','BOLOGNA',NULL,'','Italy','Bologna',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3601,'35444','Bologna-castel Maggi','BOLOGNA-CASTEL MAGGI',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3602,'39238','Bolognetta','BOLOGNETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3603,'43737','Bolpur','BOLPUR',NULL,'','India','',0,0,101,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3604,'5896','Bolquere','BOLQUERE',NULL,'','France','',0,0,76,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3605,'11638','Bolsena','BOLSENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3606,'3320','Boltana','BOLTANA',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3607,'827','Boltenhagen','BOLTENHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3608,'40044','Boltiere','BOLTIERE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:37','1900-01-01 00:00:00',1,0,1),(3609,'23145','Boltigen','BOLTIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3610,'7663','Bolton','BOLTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3611,'1193','Bolton','BOLTON',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3612,'28649','Bolton Landing','BOLTON LANDING',NULL,'','United States','',0,0,231,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3613,'17272','Bolu','BOLU',NULL,'','Turkey','Bolu',0,0,222,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3614,'3522','Bolvir','BOLVIR',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3615,'12862','Bolzano','BOLZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3616,'15793','Bom Jesus Do Monte','BOM JESUS DO MONTE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3617,'32626','Boma','BOMA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3618,'34105','Bomaderry','BOMADERRY',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3619,'41667','Bombarral','BOMBARRAL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3620,'972','Bombinhas','BOMBINHAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3621,'31299','Bomoseen','BOMOSEEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3622,'14999','Bon','BON',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3623,'25276','Bon Accord','BON ACCORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:38','1900-01-01 00:00:00',1,0,1),(3624,'23146','Bonaduz','BONADUZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3625,'25886','Bonaire','BONAIRE',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3626,'405','Bonames','BONAMES',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3627,'40171','Bonassola','BONASSOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3628,'39715','Bonate Sopra','BONATE SOPRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3629,'19275','Bonaventure','BONAVENTURE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3630,'25958','Bonaventure','BONAVENTURE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3631,'24669','Boncelles','BONCELLES',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3632,'6216','Bonchamp-les-laval','BONCHAMP-LES-LAVAL',NULL,'','France','',0,0,76,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3633,'7665','Bonchurch','BONCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3634,'26640','Bond Springs','BOND SPRINGS',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3635,'34106','Bondi','BONDI',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3636,'6151','Bondues','BONDUES',NULL,'','France','',0,0,76,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3637,'31300','Bondville','BONDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3638,'37818','Bonefro','BONEFRO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3639,'25020','Bonfim','BONFIM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:39','1900-01-01 00:00:00',1,0,1),(3640,'30480','Bonham','BONHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3641,'24605','Bonheiden','BONHEIDEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3642,'5761','Bonifacio','BONIFACIO',NULL,'','France','',0,0,76,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3643,'11639','Bonifati','BONIFATI',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3644,'19276','Bonifay','BONIFAY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3645,'23147','Bonigen','BONIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3646,'18323','Bonita','BONITA',NULL,'','United States','',0,0,231,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3647,'25072','Bonito','BONITO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3648,'27338','Bonn','BONN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3649,'5995','Bonnat','BONNAT',NULL,'','France','',0,0,76,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3650,'22510','Bonndorf','BONNDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3651,'27586','Bonne Terre','BONNE TERRE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3652,'113','Bonneberg','BONNEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:40','1900-01-01 00:00:00',1,0,1),(3653,'21030','Bonner Springs','BONNER SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3654,'20337','Bonners Ferry','BONNERS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3655,'5135','Bonneuil Sur Marne','BONNEUIL SUR MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3656,'43971','Bonneuil-en-france','BONNEUIL-EN-FRANCE',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3657,'41577','Bonneuil-sur-marne','BONNEUIL-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3658,'5766','Bonnevaux-le-prieure','BONNEVAUX-LE-PRIEURE',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3659,'5372','Bonneville-la-louvet','BONNEVILLE-LA-LOUVET',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3660,'6396','Bonnieux','BONNIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3661,'39020','Bonnya','BONNYA',NULL,'','Hungary','',0,0,99,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3662,'7666','Bonnyrigg','BONNYRIGG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3663,'25277','Bonnyville','BONNYVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3664,'5625','Bono','BONO',NULL,'','France','',0,0,76,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3665,'7667','Bonsall','BONSALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:41','1900-01-01 00:00:00',1,0,1),(3666,'18324','Bonsall','BONSALL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3667,'5800','Bonsecours','BONSECOURS',NULL,'','France','',0,0,76,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3668,'24969','Bonsucesso','BONSUCESSO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3669,'42791','Bontang','BONTANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3670,'6931','Bontddu','BONTDDU',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3671,'7668','Bontnewydd','BONTNEWYDD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3672,'34107','Bonville','BONVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3673,'10111','Bonyhad','BONYHAD',NULL,'','Hungary','',0,0,99,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3674,'3119','Boo','BOO',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3675,'7669','Bookham','BOOKHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3676,'33783','Boone','BOONE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3677,'27832','Booneville','BOONEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:42','1900-01-01 00:00:00',1,0,1),(3678,'28650','Boonville','BOONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3679,'10830','Booterstown','BOOTERSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3680,'21835','Boothbay','BOOTHBAY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3681,'39847','Boothville','BOOTHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3682,'7670','Bootle','BOOTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3683,'114','Boppard','BOPPARD',NULL,'','Germany','Boppard',54,0,83,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3684,'15738','Boqueron','BOQUERON',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3685,'15347','Boquete','BOQUETE',NULL,'','Panama','',0,0,169,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3686,'16114','Bora Bora','BORA BORA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:42:43','1900-01-01 00:00:00',1,0,1),(3687,'15441','Boracay','BORACAY',NULL,'','Philippines','',0,0,173,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3688,'16880','Boras','BORAS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3689,'25028','Borba','BORBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3690,'12875','Borca Di Cadore','BORCA DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3691,'28206','Bordentown','BORDENTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3692,'7671','Bordesley','BORDESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3693,'11640','Bordighera','BORDIGHERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3694,'39246','Bordj Badji Mokhtar','BORDJ BADJI MOKHTAR',NULL,'','Algeria','',0,0,3,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3695,'6323','Bords','BORDS',NULL,'','France','',0,0,76,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3696,'7672','Borehamwood','BOREHAMWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3697,'2417','Borg El Arab','BORG EL ARAB',NULL,'','Egypt','',0,0,65,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3698,'10968','Borgarfjordur Eystri','BORGARFJORDUR EYSTRI',NULL,'','Iceland','',0,0,100,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3699,'11010','Borgarnes','BORGARNES',NULL,'','Iceland','Borgarnes',0,0,100,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3700,'1557','Borgaro','BORGARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3701,'30481','Borger','BORGER',NULL,'','United States','',0,0,231,'2016-10-17 10:42:44','1900-01-01 00:00:00',1,0,1),(3702,'14493','Borger','BORGER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3703,'828','Borgerende-rethwisch','BORGERENDE-RETHWISCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3704,'16727','Borgholm','BORGHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3705,'38724','Borgia','BORGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3706,'38032','Borglum','BORGLUM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3707,'4674','Borgo','BORGO',NULL,'','France','',0,0,76,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3708,'41017','Borgo S Lorenzo','BORGO S LORENZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3709,'11643','Borgomale','BORGOMALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3710,'40442','Borgomanero','BORGOMANERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3711,'39297','Borispol','BORISPOL',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3712,'17141','Borj Cedria','BORJ CEDRIA',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3713,'27185','Borkum','BORKUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3714,'16738','Borlange','BORLANGE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3715,'1601','Bormes Les Mimosas','BORMES LES MIMOSAS',NULL,'','France','',0,0,76,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3716,'6397','Bormes-les-mimosas','BORMES-LES-MIMOSAS',NULL,'','France','',0,0,76,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3717,'11644','Bormio','BORMIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3718,'3193','Bormujos','BORMUJOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:45','1900-01-01 00:00:00',1,0,1),(3719,'14567','Born','BORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3720,'1787','Borneo Highlands','BORNEO HIGHLANDS',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3721,'406','Bornheim','BORNHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3722,'2117','Bornholm','BORNHOLM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3723,'10294','Borobudur','BOROBUDUR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3724,'26388','Bororen','BOROREN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3725,'7673','Boroughbridge','BOROUGHBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3726,'24811','Borovets','BOROVETS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3727,'2257','Borre','BORRE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3728,'18326','Borrego Springs','BORREGO SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3729,'11645','Borrello','BORRELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3730,'11646','Borro','BORRO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3731,'26373','Borroloola','BORROLOOLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3732,'36615','Bors','BORS',NULL,'','Romania','',0,0,179,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3733,'4157','Bort-l Etang','BORT-L ETANG',NULL,'','France','',0,0,76,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3734,'5996','Bort-les-orgues','BORT-LES-ORGUES',NULL,'','France','',0,0,76,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3735,'3957','Bortre Tolo','BORTRE TOLO',NULL,'','Finland','',0,0,75,'2016-10-17 10:42:46','1900-01-01 00:00:00',1,0,1),(3736,'42770','Borxbourne','BORXBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3737,'11647','Borzonasca','BORZONASCA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3738,'14624','Bos En Lommer','BOS EN LOMMER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3739,'11648','Bosa','BOSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3740,'24131','Bosa','BOSA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3741,'7674','Boscastle','BOSCASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3742,'39899','Boscawen','BOSCAWEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3743,'14677','Bosch En Duin','BOSCH EN DUIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3744,'11649','Bosco','BOSCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3745,'22999','Bosco Luganese','BOSCO LUGANESE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3746,'31701','Boscobel','BOSCOBEL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3747,'13094','Boscobel','BOSCOBEL',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3748,'7675','Boscombe','BOSCOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3749,'40408','Boscotrecase','BOSCOTRECASE',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3750,'27186','Bosen','BOSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3751,'39102','Bosham','BOSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3752,'32513','Boshoek','BOSHOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3753,'36714','Bosra','BOSRA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3754,'14591','Bosschenhoofd','BOSSCHENHOOFD',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:42:47','1900-01-01 00:00:00',1,0,1),(3755,'38769','Bossico','BOSSICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3756,'21173','Bossier City','BOSSIER CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3757,'2536','Bossost','BOSSOST',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3758,'17259','Bostanci','BOSTANCI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3759,'31049','Boston','BOSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3760,'9320','Boston','BOSTON',NULL,'','United Kingdom','Boston',0,0,229,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3761,'25015','Botafogo','BOTAFOGO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3762,'34108','Botany','BOTANY',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3763,'3523','Botarell','BOTARELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3764,'3958','Botby','BOTBY',NULL,'','Finland','',0,0,75,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3765,'31445','Bothell','BOTHELL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:48','1900-01-01 00:00:00',1,0,1),(3766,'40753','Bothwell','BOTHWELL',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3767,'29265','Botkins','BOTKINS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3768,'7676','Botley','BOTLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3769,'36617','Botosani','BOTOSANI',NULL,'','Romania','',0,0,179,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3770,'25267','Botswana','BOTSWANA',NULL,'','Botswana','',0,0,28,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3771,'28047','Bottineau','BOTTINEAU',NULL,'','United States','',0,0,231,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3772,'16944','Bottle Creek','BOTTLE CREEK',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3773,'27339','Bottrop','BOTTROP',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3774,'42638','Botucatu','BOTUCATU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3775,'43566','Bou Saada','BOU SAADA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3776,'4974','Bouaye','BOUAYE',NULL,'','France','',0,0,76,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3777,'43095','Bouc Bel Air','BOUC BEL AIR',NULL,'','France','',0,0,76,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3778,'25959','Boucherville','BOUCHERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3779,'4158','Bouches Du Rhône','BOUCHES DU RHÔNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3780,'42694','Bouctouche','BOUCTOUCHE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3781,'23148','Boudevilliers','BOUDEVILLIERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3782,'15033','Boudha','BOUDHA',NULL,'','Nepal','',0,0,153,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3783,'37501','Boufflers','BOUFFLERS',NULL,'','France','',0,0,76,'2016-10-17 10:42:49','1900-01-01 00:00:00',1,0,1),(3784,'7677','Boughton','BOUGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3785,'4675','Bougival','BOUGIVAL',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3786,'4975','Bouguenais','BOUGUENAIS',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3787,'5442','Bouilland','BOUILLAND',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3788,'9377','Bouillante','BOUILLANTE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3789,'24693','Bouillon','BOUILLON',NULL,'','Belgium','',0,0,21,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3790,'9442','Boukari','BOUKARI',NULL,'','Greece','',0,0,86,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3791,'24042','Boukiero','BOUKIERO',NULL,'','Congo','',0,0,51,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3792,'4902','Boulazac','BOULAZAC',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3793,'6398','Boulbon','BOULBON',NULL,'','France','',0,0,76,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3794,'27941','Boulder','BOULDER',NULL,'','United States','',0,0,231,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3795,'38487','Boulder','BOULDER',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:50','1900-01-01 00:00:00',1,0,1),(3796,'18329','Boulevard','BOULEVARD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3797,'26389','Boulia','BOULIA',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3798,'5161','Bouliac','BOULIAC',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3799,'4676','Boulogne-billancourt','BOULOGNE-BILLANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3800,'4159','Boulogne-sur-mer','BOULOGNE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3801,'41901','Bouloupari','BOULOUPARI',NULL,'','New Caledonia','',0,0,156,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3802,'6399','Boulouris-sur-mer','BOULOURIS-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3803,'40549','Boumalne Dades','BOUMALNE DADES',NULL,'','Morocco','',0,0,148,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3804,'17572','Boundary','BOUNDARY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3805,'24043','Boundji','BOUNDJI',NULL,'','Congo','',0,0,51,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3806,'33307','Bountiful','BOUNTIFUL',NULL,'','United States','',0,0,231,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3807,'42656','Bourail','BOURAIL',NULL,'','New Caledonia','',0,0,156,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3808,'4160','Bourbon Lancy','BOURBON LANCY',NULL,'','France','',0,0,76,'2016-10-17 10:42:51','1900-01-01 00:00:00',1,0,1),(3809,'43975','Bourbon-lancy','BOURBON-LANCY',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3810,'39960','Bourbon-larchambault','BOURBON-LARCHAMBAULT',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3811,'20457','Bourbonnais','BOURBONNAIS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3812,'5713','Bourbonne-les-bains','BOURBONNE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3813,'5162','Bourdeilles','BOURDEILLES',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3814,'21174','Bourg','BOURG',NULL,'','United States','',0,0,231,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3815,'4161','Bourg Achard','BOURG ACHARD',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3816,'5997','Bourganeuf','BOURGANEUF',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3817,'24769','Bourgas','BOURGAS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3818,'6584','Bourg-de-peage','BOURG-DE-PEAGE',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3819,'38108','Bourg-doueil','BOURG-DOUEIL',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3820,'4831','Bourg-en-bresse','BOURG-EN-BRESSE',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3821,'5626','Bourges','BOURGES',NULL,'','France','',0,0,76,'2016-10-17 10:42:52','1900-01-01 00:00:00',1,0,1),(3822,'41575','Bourg-les-valence','BOURG-LES-VALENCE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3823,'5714','Bourgogne','BOURGOGNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3824,'4950','Bourgoin-jallieu','BOURGOIN-JALLIEU',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3825,'5163','Bourgougnague','BOURGOUGNAGUE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3826,'38767','Bourg-saint-andeol','BOURG-SAINT-ANDEOL',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3827,'5065','Bourg-saint-maurice','BOURG-SAINT-MAURICE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3828,'38256','Bourg-saint-pierre','BOURG-SAINT-PIERRE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3829,'36232','Bourg-st Maurice','BOURG-ST MAURICE',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3830,'5627','Bourgueil','BOURGUEIL',NULL,'','France','',0,0,76,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3831,'34109','Bourke','BOURKE',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3832,'21319','Bourne','BOURNE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3833,'1195','Bournemouth','BOURNEMOUTH',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3834,'9238','Bournemouth','BOURNEMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:53','1900-01-01 00:00:00',1,0,1),(3835,'6217','Bournezeau','BOURNEZEAU',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3836,'13645','Bourscheid','BOURSCHEID',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3837,'5801','Bourth','BOURTH',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3838,'36295','Bourton-on-the-water','BOURTON-ON-THE-WATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3839,'6932','Bourton-on-water','BOURTON-ON-WATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3840,'40069','Boussaada','BOUSSAADA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3841,'5628','Boussay','BOUSSAY',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3842,'6072','Boussens','BOUSSENS',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3843,'4677','Boutigny-sur-essonne','BOUTIGNY-SUR-ESSONNE',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3844,'6073','Bouzies','BOUZIES',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3845,'40684','Bouznika','BOUZNIKA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3846,'38754','Bovalino','BOVALINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3847,'39876','Bovec','BOVEC',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3848,'14794','Boverbru','BOVERBRU',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3849,'6284','Boves','BOVES',NULL,'','France','',0,0,76,'2016-10-17 10:42:54','1900-01-01 00:00:00',1,0,1),(3850,'7680','Bovey Tracey','BOVEY TRACEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3851,'7681','Bovingdon','BOVINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3852,'11651','Bovisio Masciago','BOVISIO MASCIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3853,'37745','Bovolenta','BOVOLENTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3854,'32671','Bow','BOW',NULL,'','United States','',0,0,231,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3855,'41184','Bow Street','BOW STREET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3856,'6933','Bowburn','BOWBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3857,'7682','Bowdon','BOWDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3858,'26390','Bowen','BOWEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3859,'21645','Bowie','BOWIE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3860,'31703','Bowler','BOWLER',NULL,'','United States','',0,0,231,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3861,'27588','Bowling Green','BOWLING GREEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:55','1900-01-01 00:00:00',1,0,1),(3862,'28048','Bowman','BOWMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3863,'28651','Bowmansville','BOWMANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3864,'34453','Bowmanville','BOWMANVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3865,'42024','Bowmore','BOWMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3866,'25278','Bowness','BOWNESS',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3867,'43577','Bowness On Windermere','BOWNESS ON WINDERMERE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3868,'1530','Bowness-on-windermer','BOWNESS-ON-WINDERMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3869,'34110','Bowral','BOWRAL',NULL,'','Australia','Bowral',0,0,13,'2016-10-17 10:42:56','1900-01-01 00:00:00',1,0,1),(3870,'25397','Bowser','BOWSER',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3871,'26488','Box Hill','BOX HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3872,'21320','Boxborough','BOXBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3873,'22723','Boxdorf','BOXDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3874,'31050','Boyce','BOYCE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3875,'29834','Boyertown','BOYERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3876,'18330','Boyes Hot Springs','BOYES HOT SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3877,'22002','Boyne City','BOYNE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3878,'19279','Boynton Beach','BOYNTON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3879,'28104','Boys Town','BOYS TOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:57','1900-01-01 00:00:00',1,0,1),(3880,'27942','Bozeman','BOZEMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3881,'24804','Bozhentsi','BOZHENTSI',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3882,'23674','Bozhou','BOZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3883,'24305','Bozi Dar','BOZI DAR',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3884,'19055','Bozrah','BOZRAH',NULL,'','United States','',0,0,231,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3885,'1568','Bq','BQ',NULL,'','Norway','',0,0,164,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3886,'2144','Brabrand','BRABRAND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3887,'9984','Brac','BRAC',NULL,'','Croatia','',0,0,55,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3888,'11653','Bracciano','BRACCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3889,'34454','Bracebridge','BRACEBRIDGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3890,'31051','Bracey','BRACEY',NULL,'','United States','',0,0,231,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3891,'6285','Braches','BRACHES',NULL,'','France','',0,0,76,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3892,'5629','Bracieux','BRACIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3893,'32800','Bracken','BRACKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3894,'25398','Brackendale','BRACKENDALE',NULL,'','Canada','',0,0,39,'2016-10-17 10:42:58','1900-01-01 00:00:00',1,0,1),(3895,'32440','Brackenfell','BRACKENFELL',NULL,'','South Africa','',0,0,195,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3896,'22511','Brackenheim','BRACKENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3897,'30483','Brackettville','BRACKETTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3898,'7684','Brackley','BRACKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3899,'7685','Bracknell','BRACKNELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3900,'26626','Braddon','BRADDON',NULL,'','Australia','',0,0,13,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3901,'19281','Bradenton','BRADENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3902,'31301','Bradford','BRADFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3903,'7686','Bradford','BRADFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:42:59','1900-01-01 00:00:00',1,0,1),(3904,'7687','Bradford-on-avon','BRADFORD-ON-AVON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3905,'33597','Bradfordsville','BRADFORDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3906,'20459','Bradley','BRADLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3907,'7688','Bradworthy','BRADWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3908,'30484','Brady','BRADY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3909,'7689','Brae','BRAE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3910,'2315','Braedstrup','BRAEDSTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3911,'7690','Braemar','BRAEMAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3912,'15879','Braga','BRAGA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3913,'15887','Braganca','BRAGANCA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3914,'25279','Bragg Creek','BRAGG CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3915,'20460','Braidwood','BRAIDWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3916,'36618','Braila','BRAILA',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:00','1900-01-01 00:00:00',1,0,1),(3917,'22327','Brainerd','BRAINERD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3918,'39440','Brain-sur-allonnes','BRAIN-SUR-ALLONNES',NULL,'','France','',0,0,76,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3919,'7691','Braintree','BRAINTREE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3920,'21321','Braintree','BRAINTREE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3921,'7692','Braithwaite','BRAITHWAITE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3922,'32554','Brakpan','BRAKPAN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3923,'5897','Bram','BRAM',NULL,'','France','',0,0,76,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3924,'34455','Bramalea','BRAMALEA',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3925,'38875','Bramans','BRAMANS',NULL,'','France','',0,0,76,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3926,'42768','Bramber','BRAMBER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3927,'7693','Bramhall','BRAMHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3928,'7694','Bramhope','BRAMHOPE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3929,'37304','Bramhult','BRAMHULT',NULL,'','Sweden','',0,0,209,'2016-10-17 10:43:01','1900-01-01 00:00:00',1,0,1),(3930,'39938','Bramley','BRAMLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3931,'34456','Brampton','BRAMPTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3932,'27187','Bramsche','BRAMSCHE',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3933,'16212','Bran','BRAN',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3934,'28207','Branchburg','BRANCHBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3935,'25035','Branco','BRANCO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3936,'24514','Brand','BRAND',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3937,'2272','Brande','BRANDE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3938,'22512','Brandenburg','BRANDENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3939,'33598','Brandenburg','BRANDENBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3940,'758','Brandis','BRANDIS',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3941,'4678','Brando','BRANDO',NULL,'','France','',0,0,76,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3942,'3909','Brando','BRANDO',NULL,'','Finland','',0,0,75,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3943,'7696','Brandon','BRANDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3944,'27833','Brandon','BRANDON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:02','1900-01-01 00:00:00',1,0,1),(3945,'25584','Brandon','BRANDON',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3946,'6935','Brands Hatch','BRANDS HATCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3947,'43700','Brandsen','BRANDSEN',NULL,'','Argentina','',0,0,10,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3948,'32441','Brandwag','BRANDWAG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3949,'19056','Branford','BRANFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3950,'40094','Brannenburg','BRANNENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3951,'7697','Bransford','BRANSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3952,'27589','Branson','BRANSON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3953,'34457','Brantford','BRANTFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3954,'5164','Brantome','BRANTOME',NULL,'','France','',0,0,76,'2016-10-17 10:43:03','1900-01-01 00:00:00',1,0,1),(3955,'5373','Branville','BRANVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3956,'26489','Branxholme','BRANXHOLME',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3957,'2983','Braojos','BRAOJOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3958,'6400','Bras','BRAS',NULL,'','France','',0,0,76,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3959,'41058','Bras De Alportel','BRAS DE ALPORTEL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3960,'19719','Braselton','BRASELTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3961,'25152','Brasilia','BRASILIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3962,'24150','Brasilito','BRASILITO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3963,'16213','Brasov','BRASOV',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3964,'40593','Brasparts','BRASPARTS',NULL,'','France','',0,0,76,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3965,'5299','Brassac-les-mines','BRASSAC-LES-MINES',NULL,'','France','',0,0,76,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3966,'24606','Brasschaat','BRASSCHAAT',NULL,'','Belgium','',0,0,21,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3967,'35353','Brastagi','BRASTAGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3968,'36697','Bratislava','BRATISLAVA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3969,'16320','Bratsk','BRATSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3970,'31303','Brattleboro','BRATTLEBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3971,'7698','Bratton Fleming','BRATTON FLEMING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:04','1900-01-01 00:00:00',1,0,1),(3972,'615','Braubach','BRAUBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3973,'27188','Braunlage','BRAUNLAGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3974,'38026','Braunsbach','BRAUNSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3975,'27189','Braunschweig','BRAUNSCHWEIG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3976,'115','Braunschweiger Land','BRAUNSCHWEIGER LAND',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3977,'7699','Braunton','BRAUNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3978,'23149','Braunwald','BRAUNWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3979,'4163','Bravone','BRAVONE',NULL,'','France','',0,0,76,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3980,'18331','Brawley','BRAWLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3981,'10957','Bray','BRAY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:05','1900-01-01 00:00:00',1,0,1),(3982,'7700','Bray','BRAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3983,'26888','Braybrook','BRAYBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3984,'38280','Bray-et-lû','BRAY-ET-LÛ',NULL,'','France','',0,0,76,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3985,'20830','Brazil','BRAZIL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3986,'24041','Brazzaville','BRAZZAVILLE',NULL,'','Congo','',0,0,51,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3987,'38008','Brcko','BRCKO',NULL,'','Bosnia and Herzegowina','',0,0,27,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3988,'18332','Brea','BREA',NULL,'','United States','',0,0,231,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3989,'21175','Breaux Bridge','BREAUX BRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3990,'11654','Brebbia','BREBBIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3991,'41183','Brechin','BRECHIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:06','1900-01-01 00:00:00',1,0,1),(3992,'22329','Breckenridge','BRECKENRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3993,'29267','Brecksville','BRECKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3994,'24339','Breclav','BRECLAV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3995,'7701','Brecon','BRECON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3996,'14592','Breda','BREDA',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3997,'2316','Bredal','BREDAL',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3998,'24722','Bredene','BREDENE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(3999,'2317','Bredsten','BREDSTEN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(4000,'20461','Breese','BREESE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(4001,'29836','Breezewood','BREEZEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:07','1900-01-01 00:00:00',1,0,1),(4002,'22330','Breezy Point','BREEZY POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4003,'24515','Bregenz','BREGENZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4004,'11655','Breguzzo','BREGUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4005,'1928','Brehna','BREHNA',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4006,'10969','Breiddalsvik','BREIDDALSVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4007,'43156','Breierley Hill','BREIERLEY HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4008,'37450','Breil','BREIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4009,'29837','Breinigsville','BREINIGSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4010,'22513','Breisach','BREISACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4011,'116','Breitnau','BREITNAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4012,'39545','Brekhovo','BREKHOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4013,'14887','Brekke','BREKKE',NULL,'','Norway','',0,0,164,'2016-10-17 10:43:08','1900-01-01 00:00:00',1,0,1),(4014,'40363','Brela','BRELA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4015,'40497','Brelidy','BRELIDY',NULL,'','France','',0,0,76,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4016,'38746','Brembate','BREMBATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4017,'20831','Bremen','BREMEN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4018,'22514','Bremen','BREMEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4019,'1714','Bremen-wehye','BREMEN-WEHYE',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4020,'42714','Bremer Bay','BREMER BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4021,'377','Bremerhaven','BREMERHAVEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4022,'31448','Bremerton','BREMERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4023,'15367','Brena','BRENA',NULL,'','Peru','',0,0,172,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4024,'39262','Brena Alta','BRENA ALTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4025,'30486','Brenham','BRENHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:43:09','1900-01-01 00:00:00',1,0,1),(4026,'7702','Brent','BRENT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4027,'17844','Brent','BRENT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4028,'35476','Brenta River Area','BRENTA RIVER AREA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4029,'11656','Brentonico','BRENTONICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4030,'33079','Brentwood','BRENTWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4031,'7704','Brentwood','BRENTWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4032,'25399','Brentwood Bay','BRENTWOOD BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:10','1900-01-01 00:00:00',1,0,1),(4033,'11657','Brescello','BRESCELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4034,'12783','Brescia','BRESCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4035,'11658','Bressanone','BRESSANONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4036,'43069','Bresso','BRESSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4037,'38376','Bresson','BRESSON',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4038,'6324','Bressuire','BRESSUIRE',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4039,'4911','Brest','BREST',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4040,'24899','Brest','BREST',NULL,'','Belarus','',0,0,20,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4041,'5518','Breteil','BRETEIL',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4042,'6218','Bretignolles-sur-mer','BRETIGNOLLES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4043,'4679','Bretigny-sur-orge','BRETIGNY-SUR-ORGE',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4044,'5374','Bretoncelles','BRETONCELLES',NULL,'','France','',0,0,76,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4045,'22515','Bretten','BRETTEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:11','1900-01-01 00:00:00',1,0,1),(4046,'5375','Bretteville-sur-odon','BRETTEVILLE-SUR-ODON',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4047,'32673','Bretton Woods','BRETTON WOODS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4048,'1966','Breuberg','BREUBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4049,'41502','Breuil-cervinia','BREUIL-CERVINIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4050,'14678','Breukelen','BREUKELEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4051,'407','Breuna','BREUNA',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4052,'4164','Bréval','BRÉVAL',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4053,'33785','Brevard','BREVARD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4054,'5715','Breviandes','BREVIANDES',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4055,'17573','Brevig Mission','BREVIG MISSION',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4056,'5376','Breville-les-monts','BREVILLE-LES-MONTS',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4057,'5377','Breville-sur-mer','BREVILLE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4058,'22004','Brevort','BREVORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4059,'34111','Brewarrina','BREWARRINA',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4060,'21838','Brewer','BREWER',NULL,'','United States','',0,0,231,'2016-10-17 10:43:12','1900-01-01 00:00:00',1,0,1),(4061,'28654','Brewerton','BREWERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4062,'28655','Brewster','BREWSTER',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4063,'17845','Brewton','BREWTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4064,'16595','Brezno','BREZNO',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4065,'33308','Brian Head','BRIAN HEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4066,'5630','Briancon','BRIANCON',NULL,'','France','',0,0,76,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4067,'6401','Brianconnet','BRIANCONNET',NULL,'','France','',0,0,76,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4068,'16255','Briansk','BRIANSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4069,'28656','Briarcliff Manor','BRIARCLIFF MANOR',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4070,'38240','Briare','BRIARE',NULL,'','France','',0,0,76,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4071,'11659','Briatico','BRIATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4072,'28208','Brick','BRICK',NULL,'','United States','',0,0,231,'2016-10-17 10:43:13','1900-01-01 00:00:00',1,0,1),(4073,'5378','Bricquebec','BRICQUEBEC',NULL,'','France','',0,0,76,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4074,'29622','Bridal Veil','BRIDAL VEIL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4075,'1608','Brides Les Bains','BRIDES LES BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4076,'6815','Brides-les-bains','BRIDES-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4077,'7705','Bridestowe','BRIDESTOWE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4078,'28657','Bridgehampton','BRIDGEHAMPTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4079,'7707','Bridgend','BRIDGEND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4080,'31955','Bridgeport','BRIDGEPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:14','1900-01-01 00:00:00',1,0,1),(4081,'27594','Bridgeton','BRIDGETON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4082,'25699','Bridgetown','BRIDGETOWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4083,'29268','Bridgetown','BRIDGETOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4084,'43638','Bridgetown','BRIDGETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4085,'25228','Bridgetown','BRIDGETOWN',NULL,'','Barbados','',0,0,19,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4086,'20463','Bridgeview','BRIDGEVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4087,'19213','Bridgeville','BRIDGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4088,'32674','Bridgewater','BRIDGEWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:43:15','1900-01-01 00:00:00',1,0,1),(4089,'25700','Bridgewater','BRIDGEWATER',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4090,'7708','Bridgnorth','BRIDGNORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4091,'7709','Bridgwater','BRIDGWATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4092,'7710','Bridlington','BRIDLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4093,'7711','Bridport','BRIDPORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4094,'43641','Bridport','BRIDPORT',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4095,'41573','Brie-comte-robert','BRIE-COMTE-ROBERT',NULL,'','France','',0,0,76,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4096,'40654','Briedern','BRIEDERN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4097,'14709','Brielle','BRIELLE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4098,'759','Brielow','BRIELOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4099,'23150','Brienz','BRIENZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:16','1900-01-01 00:00:00',1,0,1),(4100,'43336','Brienzer Rothorn','BRIENZER ROTHORN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4101,'37423','Brierfield','BRIERFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4102,'7712','Brierley Hill','BRIERLEY HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4103,'27190','Brietlingen','BRIETLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4104,'6022','Briey','BRIEY',NULL,'','France','',0,0,76,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4105,'23461','Brig','BRIG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4106,'28212','Brigantine','BRIGANTINE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4107,'7713','Brigg','BRIGG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4108,'33309','Brigham City','BRIGHAM CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4109,'7714','Brighouse','BRIGHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4110,'26446','Bright','BRIGHT',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4111,'34718','Brighton','BRIGHTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:17','1900-01-01 00:00:00',1,0,1),(4112,'7715','Brighton','BRIGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4113,'38647','Brightwood','BRIGHTWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4114,'26977','Brigittenau','BRIGITTENAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4115,'6585','Brignais','BRIGNAIS',NULL,'','France','',0,0,76,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4116,'6402','Brignoles','BRIGNOLES',NULL,'','France','',0,0,76,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4117,'27340','Brilon','BRILON',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4118,'21324','Brimfield','BRIMFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4119,'22007','Brimley','BRIMLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4120,'14293','Brinchang','BRINCHANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4121,'6586','Brindas','BRINDAS',NULL,'','France','',0,0,76,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4122,'12985','Brindisi','BRINDISI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:18','1900-01-01 00:00:00',1,0,1),(4123,'21646','Brinkleigh','BRINKLEIGH',NULL,'','United States','',0,0,231,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4124,'17993','Brinkley','BRINKLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4125,'27191','Brinkum','BRINKUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4126,'26665','Brinsmead','BRINSMEAD',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4127,'6219','Briollay','BRIOLLAY',NULL,'','France','',0,0,76,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4128,'5300','Brion','BRION',NULL,'','France','',0,0,76,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4129,'3656','Brion','BRION',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4130,'23151','Brione','BRIONE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4131,'12791','Brione','BRIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4132,'11138','Brione, Piedmont','BRIONE, PIEDMONT',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4133,'39444','Brionne','BRIONNE',NULL,'','France','',0,0,76,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4134,'40255','Brioude','BRIOUDE',NULL,'','France','',0,0,76,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4135,'26666','Brisbane','BRISBANE',NULL,'','Australia','Brisbane',0,0,13,'2016-10-17 10:43:19','1900-01-01 00:00:00',1,0,1),(4136,'18335','Brisbane','BRISBANE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4137,'35902','Brisbane-ascot','BRISBANE-ASCOT',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4138,'35903','Brisbane-boondall','BRISBANE-BOONDALL',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4139,'35904','Brisbane-hamilton','BRISBANE-HAMILTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4140,'35906','Brisbane-mt Ommaney','BRISBANE-MT OMMANEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4141,'35907','Brisbane-rocklea','BRISBANE-ROCKLEA',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4142,'35905','Brisbane-windsor','BRISBANE-WINDSOR',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4143,'30489','Briscoe','BRISCOE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4144,'11660','Brisighella','BRISIGHELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4145,'23152','Brissago','BRISSAGO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4146,'11661','Brissogne','BRISSOGNE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4147,'7716','Bristol','BRISTOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4148,'43794','British Columbia','BRITISH COLUMBIA',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4149,'32218','British Virgin Islands','BRITISH VIRGIN ISLANDS',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4150,'760','Britz','BRITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4151,'5998','Brive-la-gaillarde','BRIVE-LA-GAILLARDE',NULL,'','France','',0,0,76,'2016-10-17 10:43:20','1900-01-01 00:00:00',1,0,1),(4152,'3436','Briviesca','BRIVIESCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4153,'39950','Brixen Im Thale','BRIXEN IM THALE',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4154,'7717','Brixham','BRIXHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4155,'7718','Brixton','BRIXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4156,'7719','Brize Norton','BRIZE NORTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4157,'24340','Brno','BRNO',NULL,'','Czech Republic','Brno',0,0,58,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4158,'16817','Bro','BRO',NULL,'','Sweden','',0,0,209,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4159,'7720','Broad Chalke','BROAD CHALKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4160,'26668','Broadbeach','BROADBEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4161,'7721','Broadford','BROADFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4162,'26362','Broadmeadows','BROADMEADOWS',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4163,'7722','Broadstairs','BROADSTAIRS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4164,'27944','Broadus','BROADUS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4165,'20464','Broadview','BROADVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:43:21','1900-01-01 00:00:00',1,0,1),(4166,'7723','Broadway','BROADWAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4167,'7724','Broadwell','BROADWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4168,'39225','Broadwindsor','BROADWINDSOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4169,'43846','Broby','BROBY',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4170,'2188','Brobyvaerk','BROBYVAERK',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4171,'38186','Brocas','BROCAS',NULL,'','France','',0,0,76,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4172,'25585','Brochet','BROCHET',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4173,'7725','Brockenhurst','BROCKENHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4174,'28663','Brockport','BROCKPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4175,'21325','Brockton','BROCKTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4176,'34459','Brockville','BROCKVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4177,'18336','Brockway','BROCKWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4178,'7726','Brockworth','BROCKWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4179,'31704','Brodhead','BRODHEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:22','1900-01-01 00:00:00',1,0,1),(4180,'29840','Brodheadsville','BRODHEADSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4181,'7727','Brodick','BRODICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4182,'31055','Brodnax','BRODNAX',NULL,'','United States','',0,0,231,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4183,'39363','Broekhuizen','BROEKHUIZEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4184,'32882','Broken Arrow','BROKEN ARROW',NULL,'','United States','',0,0,231,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4185,'34114','Broken Hill','BROKEN HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4186,'11662','Brolo','BROLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4187,'7728','Bromborough','BROMBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4188,'9259','Bromley','BROMLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4189,'33599','Bromley','BROMLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4190,'16862','Bromma','BROMMA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:43:23','1900-01-01 00:00:00',1,0,1),(4191,'25960','Bromont','BROMONT',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4192,'7730','Brompton Regis','BROMPTON REGIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4193,'7731','Bromsgrove','BROMSGROVE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4194,'7732','Bromyard','BROMYARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4195,'6220','Bron','BRON',NULL,'','France','',0,0,76,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4196,'3321','Bronchales','BRONCHALES',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4197,'2118','Brondby','BRONDBY',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4198,'2205','Brondbyoster','BRONDBYOSTER',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4199,'38795','Bronderslev','BRONDERSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4200,'11663','Broni','BRONI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4201,'14914','Bronnoysund','BRONNOYSUND',NULL,'','Norway','',0,0,164,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4202,'15644','Bronowice','BRONOWICE',NULL,'','Poland','',0,0,174,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4203,'2228','Bronshoj','BRONSHOJ',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4204,'39942','Bronte','BRONTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4205,'43683','Bronte Park','BRONTE PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4206,'28664','Bronx','BRONX',NULL,'','United States','',0,0,231,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4207,'28665','Bronxville','BRONXVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:24','1900-01-01 00:00:00',1,0,1),(4208,'30490','Brookeland','BROOKELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4209,'31305','Brookfield','BROOKFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4210,'19721','Brookhaven','BROOKHAVEN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4211,'32995','Brookings','BROOKINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4212,'19197','Brookland','BROOKLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:43:25','1900-01-01 00:00:00',1,0,1),(4213,'25586','Brooklands','BROOKLANDS',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4214,'21647','Brooklandville','BROOKLANDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4215,'28213','Brooklawn','BROOKLAWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4216,'42140','Brooklet','BROOKLET',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4217,'21840','Brooklin','BROOKLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4218,'21326','Brookline','BROOKLINE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4219,'22008','Brooklyn','BROOKLYN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:26','1900-01-01 00:00:00',1,0,1),(4220,'26793','Brooklyn Park','BROOKLYN PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4221,'31056','Brookneal','BROOKNEAL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4222,'25280','Brooks','BROOKS',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4223,'33600','Brooks','BROOKS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4224,'30491','Brookshire','BROOKSHIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4225,'30492','Brookside Village','BROOKSIDE VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:27','1900-01-01 00:00:00',1,0,1),(4226,'21841','Brooksville','BROOKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4227,'34115','Brookvale','BROOKVALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4228,'29842','Brookville','BROOKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4229,'29843','Broomall','BROOMALL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4230,'26951','Broome','BROOME',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4231,'34719','Broomfield','BROOMFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4232,'7733','Broompark','BROOMPARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4233,'9327','Broomsgrove','BROOMSGROVE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:28','1900-01-01 00:00:00',1,0,1),(4234,'7734','Brora','BRORA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4235,'38538','Brorup','BRORUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4236,'7735','Broseley','BROSELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4237,'25961','Brossard','BROSSARD',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4238,'41780','Brotas','BROTAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4239,'3322','Broto','BROTO',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4240,'42461','Brotterode','BROTTERODE',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4241,'7736','Brotton','BROTTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4242,'40913','Broughton','BROUGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4243,'25789','Broughton Island','BROUGHTON ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4244,'7739','Broughty Ferry','BROUGHTY FERRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4245,'43709','Broulee','BROULEE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4246,'41818','Broumana','BROUMANA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4247,'21177','Broussard','BROUSSARD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4248,'2235','Brovst','BROVST',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:29','1900-01-01 00:00:00',1,0,1),(4249,'30493','Brownfield','BROWNFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:30','1900-01-01 00:00:00',1,0,1),(4250,'20833','Brownsburg','BROWNSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:43:30','1900-01-01 00:00:00',1,0,1),(4251,'25962','Brownsburg-chatham','BROWNSBURG-CHATHAM',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:30','1900-01-01 00:00:00',1,0,1),(4252,'20834','Brownstown','BROWNSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:30','1900-01-01 00:00:00',1,0,1),(4253,'30496','Brownwood','BROWNWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4254,'7740','Broxbourne','BROXBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4255,'37671','Broxburn','BROXBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4256,'7741','Broxted','BROXTED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4257,'7742','Broxton','BROXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4258,'3632','Brozas','BROZAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4259,'5014','Bruay La Buissiere','BRUAY LA BUISSIERE',NULL,'','France','',0,0,76,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4260,'41810','Bruay-la-buissiere','BRUAY-LA-BUISSIERE',NULL,'','France','',0,0,76,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4261,'6152','Bruay-sur-l\'escaut','BRUAY-SUR-L\'ESCAUT',NULL,'','France','',0,0,76,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4262,'27835','Bruce','BRUCE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:31','1900-01-01 00:00:00',1,0,1),(4263,'15182','Bruce Bay','BRUCE BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4264,'22516','Bruchsal','BRUCHSAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4265,'853','Bruck An Der Glockne','BRUCK AN DER GLOCKNE',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4266,'11664','Brucoli','BRUCOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4267,'117','Brueggen','BRUEGGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4268,'118','Bruehl','BRUEHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4269,'6940','Bruera','BRUERA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4270,'11665','Brufa','BRUFA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4271,'41600','Brufut','BRUFUT',NULL,'','Gambia','',0,0,81,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4272,'24723','Bruges','BRUGES',NULL,'','Belgium','Bruges',0,0,21,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4273,'42305','Brugg','BRUGG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4274,'44128','Bruggen','BRUGGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4275,'12739','Brugnera','BRUGNERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4276,'41026','Bruhl','BRUHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4277,'11666','Bruino','BRUINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4278,'42021','Bruma','BRUMA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:43:32','1900-01-01 00:00:00',1,0,1),(4279,'11667','Brumano','BRUMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4280,'38935','Brummen','BRUMMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4281,'3959','Brunakarr','BRUNAKARR',NULL,'','Finland','',0,0,75,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4282,'11668','Brunate','BRUNATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4283,'25253','Brunei','BRUNEI',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4284,'14387','Brunei','BRUNEI',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4285,'6403','Brunet','BRUNET',NULL,'','France','',0,0,76,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4286,'2984','Brunete','BRUNETE',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4287,'11669','Brunico','BRUNICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4288,'22517','Brunlisbach','BRUNLISBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4289,'27098','Brunn Am Gebirge','BRUNN AM GEBIRGE',NULL,'','Austria','',0,0,14,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4290,'23153','Brunnen','BRUNNEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4291,'16663','Brunnsviken','BRUNNSVIKEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4292,'40068','Brunnthal','BRUNNTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4293,'6941','Brunstane','BRUNSTANE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4294,'26490','Brunswick','BRUNSWICK',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4295,'29275','Brunswick','BRUNSWICK',NULL,'','United States','',0,0,231,'2016-10-17 10:43:33','1900-01-01 00:00:00',1,0,1),(4296,'43653','Bruny Island','BRUNY ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4297,'2537','Brunyola','BRUNYOLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4298,'13018','Brusaporto','BRUSAPORTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4299,'616','Bruschied','BRUSCHIED',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4300,'34720','Brush','BRUSH',NULL,'','United States','',0,0,231,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4301,'13019','Brusimpiano','BRUSIMPIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4302,'970','Brusque','BRUSQUE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4303,'39448','Brusque','BRUSQUE',NULL,'','France','',0,0,76,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4304,'24602','Brussels','BRUSSELS',NULL,'','Belgium','Brussels',0,0,21,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4305,'38034','Brusson','BRUSSON',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:34','1900-01-01 00:00:00',1,0,1),(4306,'4165','Bruyères','BRUYÈRES',NULL,'','France','',0,0,76,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4307,'5519','Bruz','BRUZ',NULL,'','France','',0,0,76,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4308,'30498','Bryan','BRYAN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4309,'27596','Bryant','BRYANT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4310,'21651','Bryantown','BRYANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4311,'33311','Bryce Canyon','BRYCE CANYON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4312,'14952','Bryn','BRYN',NULL,'','Norway','',0,0,164,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4313,'14965','Bryne','BRYNE',NULL,'','Norway','',0,0,164,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4314,'41181','Brynsiencyn','BRYNSIENCYN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:35','1900-01-01 00:00:00',1,0,1),(4315,'33788','Bryson City','BRYSON CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4316,'4680','Bry-sur-marne','BRY-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4317,'43174','Bsalim','BSALIM',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4318,'40622','Bsharri','BSHARRI',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4319,'9393','Bubaque','BUBAQUE',NULL,'','Guinea-Bissau','',0,0,93,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4320,'22518','Bubenbach','BUBENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4321,'3194','Bubion','BUBION',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4322,'4681','Buc','BUC',NULL,'','France','',0,0,76,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4323,'36564','Bucaco','BUCACO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4324,'24124','Bucaramanga','BUCARAMANGA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4325,'26392','Bucasia','BUCASIA',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4326,'40496','Buccleuch','BUCCLEUCH',NULL,'','South Africa','',0,0,195,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4327,'14052','Bucerias','BUCERIAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4328,'33083','Buchanan','BUCHANAN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:36','1900-01-01 00:00:00',1,0,1),(4329,'16201','Bucharest','BUCHAREST',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4330,'36632','Bucharest-otopeni','BUCHAREST-OTOPENI',NULL,'','Romania','',0,0,179,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4331,'22520','Buchen','BUCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4332,'22724','Buchenberg','BUCHENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4333,'13482','Bucheon','BUCHEON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4334,'41571','Bucheres','BUCHERES',NULL,'','France','',0,0,76,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4335,'11670','Bucine','BUCINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4336,'7743','Buckden','BUCKDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:37','1900-01-01 00:00:00',1,0,1),(4337,'27192','Buckeburg','BUCKEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4338,'18107','Buckeye','BUCKEYE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4339,'21652','Buckeystown','BUCKEYSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4340,'7744','Buckfastleigh','BUCKFASTLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4341,'31958','Buckhannon','BUCKHANNON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4342,'19724','Buckhead','BUCKHEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4343,'33602','Buckhorn','BUCKHORN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:38','1900-01-01 00:00:00',1,0,1),(4344,'34460','Buckhorn','BUCKHORN',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4345,'7745','Buckhurst Hill','BUCKHURST HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4346,'7746','Buckie','BUCKIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4347,'7747','Buckingham','BUCKINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4348,'29844','Buckingham','BUCKINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4349,'6942','Buckinghamshire','BUCKINGHAMSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4350,'6943','Buckland','BUCKLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4351,'17574','Buckland','BUCKLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4352,'31450','Buckley','BUCKLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4353,'761','Buckow','BUCKOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4354,'7748','Bucksburn','BUCKSBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4355,'33084','Bucksnort','BUCKSNORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:39','1900-01-01 00:00:00',1,0,1),(4356,'21843','Bucksport','BUCKSPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4357,'29279','Bucyrus','BUCYRUS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4358,'30500','Buda','BUDA',NULL,'','United States','',0,0,231,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4359,'40196','Budakeszi','BUDAKESZI',NULL,'','Hungary','',0,0,99,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4360,'10098','Budaors','BUDAORS',NULL,'','Hungary','',0,0,99,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4361,'10085','Budapest','BUDAPEST',NULL,'','Hungary','Budapest',0,0,99,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4362,'10970','Budardalur','BUDARDALUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4363,'28215','Budd Lake','BUDD LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4364,'2206','Buddinge','BUDDINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4365,'38634','Buddusò','BUDDUSÒ',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4366,'7749','Bude','BUDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4367,'15921','Budens','BUDENS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4368,'26393','Buderim','BUDERIM',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:40','1900-01-01 00:00:00',1,0,1),(4369,'34116','Budgewoi','BUDGEWOI',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4370,'10971','Budir','BUDIR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4371,'7750','Budleigh Salterton','BUDLEIGH SALTERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4372,'12740','Budoia','BUDOIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4373,'13030','Budoni','BUDONI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4374,'40070','Budrio','BUDRIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4375,'32366','Budva','BUDVA',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4376,'39478','Buechenbeuren','BUECHENBEUREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4377,'40165','Buechlberg','BUECHLBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4378,'22522','Buehl','BUEHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4379,'2077','Buehlertal','BUEHLERTAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4380,'23001','Buelach','BUELACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4381,'18338','Buellton','BUELLTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:41','1900-01-01 00:00:00',1,0,1),(4382,'28217','Buena','BUENA',NULL,'','United States','',0,0,231,'2016-10-17 10:43:42','1900-01-01 00:00:00',1,0,1),(4383,'24128','Buenaventura','BUENAVENTURA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:43:42','1900-01-01 00:00:00',1,0,1),(4384,'13883','Buenavista','BUENAVISTA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:43:42','1900-01-01 00:00:00',1,0,1),(4385,'37947','Buenavista Del Norte','BUENAVISTA DEL NORTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4386,'26113','Buenos Aires','BUENOS AIRES',NULL,'','Argentina','Buenos Aires',0,0,10,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4387,'27341','Bueren','BUEREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4388,'44130','Buesum','BUESUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4389,'42662','Bueu','BUEU',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4390,'22333','Buffalo','BUFFALO',NULL,'','United States','',0,0,231,'2016-10-17 10:43:43','1900-01-01 00:00:00',1,0,1),(4391,'22940','Buffalo Narrows','BUFFALO NARROWS',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:44','1900-01-01 00:00:00',1,0,1),(4392,'32655','Buffalo Range','BUFFALO RANGE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:43:45','1900-01-01 00:00:00',1,0,1),(4393,'19727','Buford','BUFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:43:45','1900-01-01 00:00:00',1,0,1),(4394,'904','Buga','BUGA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:43:45','1900-01-01 00:00:00',1,0,1),(4395,'39997','Buggiano','BUGGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:45','1900-01-01 00:00:00',1,0,1),(4396,'14195','Bugibba','BUGIBBA',NULL,'','Malta','',0,0,135,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4397,'16256','Bugulma','BUGULMA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4398,'6757','Buhl','BUHL',NULL,'','France','',0,0,76,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4399,'36043','Buhl','BUHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4400,'33789','Buies Creek','BUIES CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4401,'14625','Buiksloot','BUIKSLOOT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:46','1900-01-01 00:00:00',1,0,1),(4402,'7751','Builth Wells','BUILTH WELLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4403,'14626','Buitenveldert','BUITENVELDERT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4404,'37327','Buje','BUJE',NULL,'','Croatia','',0,0,55,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4405,'24572','Bujumbura','BUJUMBURA',NULL,'','Burundi','',0,0,36,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4406,'35336','Buk','BUK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4407,'32627','Bukavu','BUKAVU',NULL,'','Fiji','',0,0,74,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4408,'40712','Bukayriah','BUKAYRIAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4409,'10113','Bukfurdo','BUKFURDO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4410,'32152','Bukhara','BUKHARA',NULL,'','Uzbekistan','Bukhara',0,0,232,'2016-10-17 10:43:47','1900-01-01 00:00:00',1,0,1),(4411,'41790','Bukiskis','BUKISKIS',NULL,'','Lithuania','',0,0,125,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4412,'14361','Bukit Fraser','BUKIT FRASER',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4413,'10371','Bukittinggi','BUKITTINGGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4414,'17454','Bukoba','BUKOBA',NULL,'','Tanzania','',0,0,214,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4415,'42716','Bulahdelah','BULAHDELAH',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4416,'41737','Bulandshahar','BULANDSHAHAR',NULL,'','India','',0,0,101,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4417,'2447','Bulaq Ad Dakrur','BULAQ AD DAKRUR',NULL,'','Egypt','',0,0,65,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4418,'32668','Bulawayo','BULAWAYO',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:43:48','1900-01-01 00:00:00',1,0,1),(4419,'7752','Bulkington','BULKINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4420,'17995','Bull Shoals','BULL SHOALS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4421,'23154','Bulle','BULLE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4422,'33313','Bullfrog','BULLFROG',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4423,'18108','Bullhead City','BULLHEAD CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4424,'33085','Bulls Gap','BULLS GAP',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4425,'30502','Bulverde','BULVERDE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4426,'32628','Bumba','BUMBA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:43:49','1900-01-01 00:00:00',1,0,1),(4427,'39027','Bunbeg','BUNBEG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4428,'26580','Bunbury','BUNBURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4429,'10945','Bunclody','BUNCLODY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4430,'41596','Buncrana','BUNCRANA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4431,'26669','Bundaberg','BUNDABERG',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4432,'26671','Bundall','BUNDALL',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4433,'34117','Bundanoon','BUNDANOON',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4434,'40841','Bundi','BUNDI',NULL,'','India','Bundi',2,0,101,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4435,'26191','Bundoora','BUNDOORA',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4436,'10818','Bundoran','BUNDORAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4437,'34118','Bungendore','BUNGENDORE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4438,'32629','Bunia','BUNIA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4439,'3437','Buniel','BUNIEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4440,'26192','Bunker Bay','BUNKER BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4441,'30503','Bunker Hill Village','BUNKER HILL VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4442,'21178','Bunkie','BUNKIE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:50','1900-01-01 00:00:00',1,0,1),(4443,'19285','Bunnell','BUNNELL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4444,'14679','Bunnik','BUNNIK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4445,'10781','Bunratty','BUNRATTY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4446,'7753','Buntingford','BUNTINGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4447,'39045','Bunyola','BUNYOLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4448,'23155','Buochs','BUOCHS',NULL,'','Switzerland','Buochs',0,0,210,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4449,'10221','Buol','BUOL',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4450,'32276','Buon Ma Thuot','BUON MA THUOT',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4451,'38739','Buonconvento','BUONCONVENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4452,'15993','Buraca','BURACA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4453,'11139','Burago Di Molgora','BURAGO DI MOLGORA',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4454,'42543','Buraidah','BURAIDAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4455,'15276','Buraimi','BURAIMI',NULL,'','Oman','',0,0,165,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4456,'12876','Burano','BURANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4457,'21179','Buras','BURAS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:51','1900-01-01 00:00:00',1,0,1),(4458,'14295','Burau Bay','BURAU BAY',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4459,'16507','Buraydah','BURAYDAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4460,'29280','Burbank','BURBANK',NULL,'','United States','',0,0,231,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4461,'40137','Burcei','BURCEI',NULL,'','Italy','',0,0,107,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4462,'34','Burchen','BURCHEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4463,'28670','Burdett','BURDETT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4464,'17273','Burdur','BURDUR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4465,'4682','Bures-sur-yvette','BURES-SUR-YVETTE',NULL,'','France','',0,0,76,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4466,'4047','Bureta','BURETA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4467,'7754','Burford','BURFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4468,'34857','Burgas','BURGAS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4469,'15922','Burgau','BURGAU',NULL,'','Portugal','',0,0,175,'2016-10-17 10:43:52','1900-01-01 00:00:00',1,0,1),(4470,'40189','Burgau','BURGAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4471,'27193','Burgdorf','BURGDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4472,'23156','Burgdorf','BURGDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4473,'23002','Burgenstock','BURGENSTOCK',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4474,'7755','Burgess Hill','BURGESS HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4475,'29845','Burgettstown','BURGETTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4476,'38354','Burghaslach','BURGHASLACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4477,'22725','Burghausen','BURGHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4478,'7756','Burghfield','BURGHFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4479,'41432','Burgo De Osma','BURGO DE OSMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4480,'3438','Burgohondo','BURGOHONDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4481,'3439','Burgos','BURGOS',NULL,'','Spain','Burgos',0,0,199,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4482,'36167','Burgos-medina Del Po','BURGOS-MEDINA DEL PO',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4483,'22726','Burgstadt','BURGSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4484,'120','Burgstädt','BURGSTÄDT',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:53','1900-01-01 00:00:00',1,0,1),(4485,'3195','Burguillos','BURGUILLOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4486,'15052','Burhanilkantha','BURHANILKANTHA',NULL,'','Nepal','',0,0,153,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4487,'17263','Burhaniye','BURHANIYE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4488,'40842','Burhanpur','BURHANPUR',NULL,'','India','Burhanpur',15,0,101,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4490,'31451','Burien','BURIEN',NULL,'','United States','',0,0,231,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4491,'42258','Burirum','BURIRUM',NULL,'','Thailand','',0,0,215,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4492,'3742','Burjasot','BURJASOT',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4493,'41366','Burjassot','BURJASSOT',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4494,'30504','Burkburnett','BURKBURNETT',NULL,'','United States','',0,0,231,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4495,'33603','Burkesville','BURKESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4496,'26394','Burketown','BURKETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4497,'31059','Burkeville','BURKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4498,'3052','Burlada','BURLADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4499,'34998','Burlanda','BURLANDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:43:54','1900-01-01 00:00:00',1,0,1),(4500,'26672','Burleigh Heads','BURLEIGH HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4501,'30505','Burleson','BURLESON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4502,'7757','Burley','BURLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4503,'20338','Burley','BURLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4504,'18341','Burlingame','BURLINGAME',NULL,'','United States','',0,0,231,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4505,'31707','Burlington','BURLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4506,'34461','Burlington','BURLINGTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:55','1900-01-01 00:00:00',1,0,1),(4507,'25401','Burnaby','BURNABY',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:56','1900-01-01 00:00:00',1,0,1),(4508,'7758','Burnham','BURNHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:56','1900-01-01 00:00:00',1,0,1),(4509,'34462','Burnham Thorpe','BURNHAM THORPE',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4510,'44184','Burnham-on-sea','BURNHAM-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4511,'6944','Burnhouse','BURNHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4512,'26829','Burnie','BURNIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4513,'7760','Burnley','BURNLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4514,'29624','Burns','BURNS',NULL,'','United States','',0,0,231,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4515,'25402','Burns Lake','BURNS LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4516,'7761','Burnsall','BURNSALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4517,'15183','Burnside','BURNSIDE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:43:57','1900-01-01 00:00:00',1,0,1),(4518,'22334','Burnsville','BURNSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4519,'26193','Burnt Pine','BURNT PINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4520,'14436','Burnt Pine','BURNT PINE',NULL,'','Norfolk Island','',0,0,162,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4521,'7762','Burntisland','BURNTISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4522,'37670','Burpham','BURPHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4523,'20468','Burr Ridge','BURR RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4524,'37792','Burrell Boom','BURRELL BOOM',NULL,'','Belize','',0,0,22,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4525,'7763','Burrington','BURRINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4526,'7764','Burry Port','BURRY PORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4527,'17274','Bursa','BURSA',NULL,'','Turkey','Bursa',0,0,222,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4528,'7765','Burscough','BURSCOUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:58','1900-01-01 00:00:00',1,0,1),(4529,'7766','Burslem','BURSLEM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4530,'408','Burstadt','BURSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4531,'37224','Burswood','BURSWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4532,'37255','Burt Plain','BURT PLAIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4533,'22009','Burton','BURTON',NULL,'','United States','',0,0,231,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4534,'6946','Burwardsley','BURWARDSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4535,'43237','Burwash Landing','BURWASH LANDING',NULL,'','Canada','',0,0,39,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4536,'28106','Burwell','BURWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4537,'34119','Burwood','BURWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:43:59','1900-01-01 00:00:00',1,0,1),(4538,'13483','Busan','BUSAN',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4539,'35814','Busan (Pusan)','BUSAN (PUSAN)',NULL,'','South Korea','',0,0,197,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4540,'39319','Busana','BUSANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4541,'7769','Busby','BUSBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4542,'11671','Buscate','BUSCATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4543,'11140','Buseto Palizzolo','BUSETO PALIZZOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4544,'7770','Bushey','BUSHEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4545,'29847','Bushkill','BUSHKILL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4546,'7771','Bushmills','BUSHMILLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4547,'19286','Bushnell','BUSHNELL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4548,'6153','Busigny','BUSIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:44:00','1900-01-01 00:00:00',1,0,1),(4549,'14862','Buskerud','BUSKERUD',NULL,'','Norway','',0,0,164,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4550,'3196','Busquistar','BUSQUISTAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4551,'38963','Bussang','BUSSANG',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4552,'26581','Busselton','BUSSELTON',NULL,'','Australia','Busselton',0,0,13,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4553,'5301','Busset','BUSSET',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4554,'4166','Bussière-galant','BUSSIÈRE-GALANT',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4555,'23157','Bussigny','BUSSIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4557,'11672','Bussolengo','BUSSOLENGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4558,'14627','Bussum','BUSSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4559,'43360','Bussy Saint Georges','BUSSY SAINT GEORGES',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4560,'5095','Bussy-saint-georges','BUSSY-SAINT-GEORGES',NULL,'','France','',0,0,76,'2016-10-17 10:44:01','1900-01-01 00:00:00',1,0,1),(4561,'2985','Bustarviejo','BUSTARVIEJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4562,'11673','Busto Arsizio','BUSTO ARSIZIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4563,'40429','Busua','BUSUA',NULL,'','Ghana','',0,0,84,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4564,'42400','Busuanga','BUSUANGA',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4565,'703','Busum','BUSUM',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4566,'32630','Buta','BUTA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4567,'13460','Butaritari','BUTARITARI',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4568,'11674','Butera','BUTERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4569,'121','Butjadingen','BUTJADINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4570,'29848','Butler','BUTLER',NULL,'','United States','',0,0,231,'2016-10-17 10:44:02','1900-01-01 00:00:00',1,0,1),(4571,'10149','Buton Babau','BUTON BABAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4572,'18342','Buttonwillow','BUTTONWILLOW',NULL,'','United States','',0,0,231,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4573,'15482','Butuan','BUTUAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4574,'42382','Buxted','BUXTED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4575,'27194','Buxtehude','BUXTEHUDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4576,'6948','Buxton','BUXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4577,'33792','Buxton','BUXTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:03','1900-01-01 00:00:00',1,0,1),(4578,'5443','Buxy','BUXY',NULL,'','France','',0,0,76,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4579,'38590','Buyukada','BUYUKADA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4580,'38540','Buyukeceli','BUYUKECELI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4581,'4167','Buzançais','BUZANÇAIS',NULL,'','France','',0,0,76,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4582,'36619','Buzau','BUZAU',NULL,'','Romania','',0,0,179,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4583,'25130','Buzios','BUZIOS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4584,'21329','Buzzards Bay','BUZZARDS BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4585,'43344','Byala','BYALA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4586,'43077','Byblos','BYBLOS',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4587,'15712','Bydgoszcz','BYDGOSZCZ',NULL,'','Poland','',0,0,174,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4588,'34724','Byers','BYERS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4589,'14953','Bygdoy','BYGDOY',NULL,'','Norway','',0,0,164,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4590,'14857','Byglandsfjord','BYGLANDSFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4591,'27836','Byram','BYRAM',NULL,'','United States','',0,0,231,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4592,'33088','Byrdstown','BYRDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:04','1900-01-01 00:00:00',1,0,1),(4593,'22010','Byron','BYRON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4594,'34120','Byron Bay','BYRON BAY',NULL,'','Australia','Byron Bay',0,0,13,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4595,'37277','Byxelkrok','BYXELKROK',NULL,'','Sweden','',0,0,209,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4596,'43078','Bzommar','BZOMMAR',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4597,'43207','Cabana De Bergantinos','CABANA DE BERGANTINOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4598,'15385','Cabanaconde','CABANACONDE',NULL,'','Peru','',0,0,172,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4599,'15923','Cabanas','CABANAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4600,'38024','Cabanatuan','CABANATUAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4601,'5165','Cabannes','CABANNES',NULL,'','France','',0,0,76,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4602,'25963','Cabano','CABANO',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4603,'2371','Cabarete','CABARETE',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4604,'34121','Cabarita Beach','CABARITA BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:05','1900-01-01 00:00:00',1,0,1),(4605,'18343','Cabazon','CABAZON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4606,'37393','Cabeca Gorda','CABECA GORDA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4607,'40322','Cabeceiras De Basto','CABECEIRAS DE BASTO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4608,'5898','Cabestany','CABESTANY',NULL,'','France','',0,0,76,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4609,'41957','Cabezuela Del Valle','CABEZUELA DEL VALLE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4610,'41875','Cabimas','CABIMAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4611,'25846','Cabinda','CABINDA',NULL,'','Angola','',0,0,6,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4612,'10831','Cabinteely','CABINTEELY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4613,'31708','Cable','CABLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4614,'44013','Cable Bay','CABLE BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4615,'24864','Cable Beach','CABLE BEACH',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4616,'26952','Cable Beach','CABLE BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4617,'43477','Cabo Blanco','CABO BLANCO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:06','1900-01-01 00:00:00',1,0,1),(4618,'15739','Cabo Rojo','CABO ROJO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4619,'14139','Cabo San Lucas','CABO SAN LUCAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4620,'27599','Cabool','CABOOL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4621,'17996','Cabot','CABOT',NULL,'','United States','',0,0,231,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4622,'5379','Cabourg','CABOURG',NULL,'','France','',0,0,76,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4623,'39143','Cabras','CABRAS',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4624,'2368','Cabrera','CABRERA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4625,'2539','Cabrera De Mar','CABRERA DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:07','1900-01-01 00:00:00',1,0,1),(4626,'5899','Cabrieres','CABRIERES',NULL,'','France','',0,0,76,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4627,'6404','Cabries','CABRIES',NULL,'','France','',0,0,76,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4628,'3524','Cabrils','CABRILS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4629,'6405','Cabris','CABRIS',NULL,'','France','',0,0,76,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4630,'2100','Cabrits','CABRITS',NULL,'','Dominica','',0,0,500,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4631,'3077','Cabuenes','CABUENES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4632,'40716','Cabuerniga','CABUERNIGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4633,'37822','Cacak','CACAK',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4634,'11141','Cacchiamo','CACCHIAMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4635,'3633','Caceres','CACERES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4636,'4683','Cachan','CACHAN',NULL,'','France','',0,0,76,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4637,'25403','Cache Creek','CACHE CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4638,'41742','Cachi','CACHI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4639,'41779','Cachoeiro De Itapemirim','CACHOEIRO DE ITAPEMIRIM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4640,'41960','Cadalso','CADALSO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:08','1900-01-01 00:00:00',1,0,1),(4641,'3525','Cadaques','CADAQUES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4642,'17997','Caddo Valley','CADDO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4643,'38458','Cadelbosco Di Sopra','CADELBOSCO DI SOPRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4644,'23003','Cademario','CADEMARIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4645,'23158','Cadempino','CADEMPINO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4646,'11142','Cadenabbia','CADENABBIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4647,'37314','Cadenet','CADENET',NULL,'','France','',0,0,76,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4648,'38991','Cadeo','CADEO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4649,'14056','Cadereyta Jimenez','CADEREYTA JIMENEZ',NULL,'','Mexico','',0,0,141,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4650,'13473','Cades Bay','CADES BAY',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4651,'39405','Cádiar','CÁDIAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4652,'22012','Cadillac','CADILLAC',NULL,'','United States','',0,0,231,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4653,'5166','Cadillac','CADILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4654,'3198','Cadiz','CADIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:09','1900-01-01 00:00:00',1,0,1),(4655,'33604','Cadiz','CADIZ',NULL,'','United States','',0,0,231,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4656,'6949','Cadmore End','CADMORE END',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4657,'7772','Cadnam','CADNAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4658,'6406','Cadolive','CADOLIVE',NULL,'','France','',0,0,76,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4659,'38351','Cadoneghe','CADONEGHE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4660,'23159','Cadro','CADRO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4661,'4868','Caen','CAEN',NULL,'','France','',0,0,76,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4662,'7773','Caernarfon','CAERNARFON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4663,'38382','Caerphilly','CAERPHILLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4664,'7774','Caersws','CAERSWS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4665,'11033','Caesarea','CAESAREA',NULL,'','Israel','',0,0,106,'2016-10-17 10:44:10','1900-01-01 00:00:00',1,0,1),(4666,'26138','Cafayate','CAFAYATE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4667,'15542','Cagayan De Oro','CAGAYAN DE ORO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4668,'11675','Cagli','CAGLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4669,'12784','Cagliari','CAGLIARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4670,'35625','Cagliari-quartu Sant','CAGLIARI-QUARTU SANT',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4671,'37341','Cagnano','CAGNANO',NULL,'','France','',0,0,76,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4672,'38298','Cagnano Varano','CAGNANO VARANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4673,'40974','Cagnes Sur Mer','CAGNES SUR MER',NULL,'','France','',0,0,76,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4674,'6407','Cagnes-sur-mer','CAGNES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4675,'39718','Cagraray Island','CAGRARAY ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4676,'15740','Caguas','CAGUAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:44:11','1900-01-01 00:00:00',1,0,1),(4677,'5380','Cahagnes','CAHAGNES',NULL,'','France','',0,0,76,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4678,'10875','Caherdaniel','CAHERDANIEL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4679,'10876','Cahersiveen','CAHERSIVEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4680,'10716','Cahir','CAHIR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4681,'41594','Cahirsiveen','CAHIRSIVEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4682,'20469','Cahokia','CAHOKIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4683,'6074','Cahors','CAHORS',NULL,'','France','',0,0,76,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4684,'24229','Cahuita','CAHUITA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4685,'44306','Cahul','CAHUL',NULL,'','Moldova','',0,0,144,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4686,'6075','Cahuzac-sur-vere','CAHUZAC-SUR-VERE',NULL,'','France','',0,0,76,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4687,'2882','Caimari','CAIMARI',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4688,'41964','Cain','CAIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4689,'38659','Caineville','CAINEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4690,'7775','Cairnbaan','CAIRNBAAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:12','1900-01-01 00:00:00',1,0,1),(4691,'41180','Cairndow','CAIRNDOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4692,'7776','Cairnryan','CAIRNRYAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4693,'26673','Cairns','CAIRNS',NULL,'','Australia','Cairns',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4694,'1118','Cairns- Tropical North Coast','CAIRNS- TROPICAL NORTH COAST',NULL,'','AUSTRALIA','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4695,'35917','Cairns-ellis Beach','CAIRNS-ELLIS BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4696,'35914','Cairns-holloways Bea','CAIRNS-HOLLOWAYS BEA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4697,'35915','Cairns-kewarra Beach','CAIRNS-KEWARRA BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4698,'34786','Cairns-kuranda','CAIRNS-KURANDA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4699,'35918','Cairns-trinity Beach','CAIRNS-TRINITY BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4700,'19729','Cairo','CAIRO',NULL,'','United States','',0,0,231,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4701,'2418','Cairo','CAIRO',NULL,'','Egypt','Cairo',0,0,65,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4702,'5900','Caissargues','CAISSARGUES',NULL,'','France','',0,0,76,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4703,'9278','Caistor St Edmund','CAISTOR ST EDMUND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4704,'15390','Cajamarca','CAJAMARCA',NULL,'','Peru','',0,0,172,'2016-10-17 10:44:13','1900-01-01 00:00:00',1,0,1),(4705,'2542','Cajar','CAJAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:14','1900-01-01 00:00:00',1,0,1),(4706,'6076','Cajarc','CAJARC',NULL,'','France','',0,0,76,'2016-10-17 10:44:14','1900-01-01 00:00:00',1,0,1),(4707,'11143','Cala Di Volpe','CALA DI VOLPE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:14','1900-01-01 00:00:00',1,0,1),(4708,'39686','Calabar','CALABAR',NULL,'','Nigeria','',0,0,160,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4709,'18344','Calabasas','CALABASAS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4710,'33793','Calabash','CALABASH',NULL,'','United States','',0,0,231,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4711,'3078','Calabaza','CALABAZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4712,'1678','Calabogie','CALABOGIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4713,'43042','Calabozo','CALABOZO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4714,'41018','Calabria','CALABRIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:15','1900-01-01 00:00:00',1,0,1),(4715,'2401','Calabria','CALABRIA',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4716,'24951','Calacoto','CALACOTO',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4717,'43688','Calafat','CALAFAT',NULL,'','Romania','',0,0,179,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4718,'35867','Calafate','CALAFATE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4719,'3526','Calafell','CALAFELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4720,'2961','Calahorra','CALAHORRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4721,'21844','Calais','CALAIS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4722,'5015','Calais','CALAIS',NULL,'','France','Calais',0,0,76,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4723,'38491','Calalzo Di Cadore','CALALZO DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4724,'23510','Calama','CALAMA',NULL,'','Chile','Calama ',0,0,45,'2016-10-17 10:44:16','1900-01-01 00:00:00',1,0,1),(4725,'2564','Calamayor','CALAMAYOR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4726,'15515','Calamba','CALAMBA',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4727,'11677','Calambrone','CALAMBRONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4728,'42680','Calamocha','CALAMOCHA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4729,'40632','Calamonte','CALAMONTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4730,'41745','Calamuchita - Valle','CALAMUCHITA - VALLE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4731,'41350','Cala\'n Blanes','CALA\'N BLANES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4732,'15523','Calapan','CALAPAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4733,'36613','Calarasi','CALARASI',NULL,'','Romania','',0,0,179,'2016-10-17 10:44:17','1900-01-01 00:00:00',1,0,1),(4734,'2566','Calas De Mallorca','CALAS DE MALLORCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4735,'37592','Calascibetta','CALASCIBETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4736,'11678','Calasetta','CALASETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4737,'13002','Calatabiano','CALATABIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4738,'11679','Calatafimi','CALATAFIMI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4739,'15486','Calatagan','CALATAGAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4740,'3323','Calatayud','CALATAYUD',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4741,'38134','Calatorao','CALATORAO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4742,'11680','Calavino','CALAVINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4743,'15543','Calbayog','CALBAYOG',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4744,'15393','Calca','CALCA',NULL,'','Peru','',0,0,172,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4745,'11681','Calci','CALCI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4746,'11682','Calcinaia','CALCINAIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:18','1900-01-01 00:00:00',1,0,1),(4747,'28671','Calcium','CALCIUM',NULL,'','United States','',0,0,231,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4748,'11146','Calco','CALCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4749,'37158','Calcutta','CALCUTTA',NULL,'','India','',0,0,101,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4750,'11683','Caldana','CALDANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4751,'42099','Caldas','CALDAS',NULL,'','Colombia','',0,0,49,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4752,'2567','Caldas D Estrac','CALDAS D ESTRAC',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4753,'41665','Caldas Da Felgueira','CALDAS DA FELGUEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4754,'25062','Caldas Novas','CALDAS NOVAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4755,'15880','Caldelas','CALDELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4756,'38078','Caldera','CALDERA',NULL,'','Chile','',0,0,45,'2016-10-17 10:44:19','1900-01-01 00:00:00',1,0,1),(4757,'24235','Caldera','CALDERA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4758,'12954','Calderara Di Reno','CALDERARA DI RENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4759,'3528','Calders','CALDERS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4760,'2568','Caldes De Boi','CALDES DE BOI',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4761,'11147','Caldiero','CALDIERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4762,'11684','Caldogno','CALDOGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4763,'30507','Caldwell','CALDWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:20','1900-01-01 00:00:00',1,0,1),(4764,'34463','Caledon','CALEDON',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4765,'32442','Caledon','CALEDON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4766,'22335','Caledonia','CALEDONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4767,'3079','Calella','CALELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4768,'11685','Calenzano','CALENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4769,'17846','Calera','CALERA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4770,'40193','Calera De Leon','CALERA DE LEON',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4771,'2571','Cales Piques','CALES PIQUES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4772,'3110','Caleta De Fuste','CALETA DE FUSTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:21','1900-01-01 00:00:00',1,0,1),(4773,'24160','Caletas','CALETAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4774,'18345','Calexico','CALEXICO',NULL,'','United States','',0,0,231,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4775,'25281','Calgary','CALGARY',NULL,'','Canada','Calgary',0,0,39,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4776,'34725','Calhan','CALHAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4777,'16056','Calhariz','CALHARIZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4778,'15951','Calheta','CALHETA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:22','1900-01-01 00:00:00',1,0,1),(4779,'19730','Calhoun','CALHOUN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4780,'24129','Cali','CALI',NULL,'','Colombia','',0,0,49,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4781,'2101','Calibishie','CALIBISHIE',NULL,'','Dominica','',0,0,500,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4782,'1764','Calicut','CALICUT',NULL,'','India','',0,0,101,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4783,'29850','California','CALIFORNIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:23','1900-01-01 00:00:00',1,0,1),(4784,'18347','Calimesa','CALIMESA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4785,'18348','Calipatria','CALIPATRIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4786,'18349','Calistoga','CALISTOGA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4787,'11686','Calitri','CALITRI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4788,'17252','Calkaya','CALKAYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4789,'19287','Callahan','CALLAHAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4790,'7777','Callaly','CALLALY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4791,'7778','Callander','CALLANDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4792,'14628','Callantsoog','CALLANTSOOG',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4793,'15392','Callao','CALLAO',NULL,'','Peru','',0,0,172,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4794,'2572','Callao Salvaje','CALLAO SALVAJE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:24','1900-01-01 00:00:00',1,0,1),(4795,'29851','Callapoose','CALLAPOOSE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4796,'6408','Callas','CALLAS',NULL,'','France','',0,0,76,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4797,'38216','Callian','CALLIAN',NULL,'','France','',0,0,76,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4798,'28672','Callicoon','CALLICOON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4799,'36296','Callington','CALLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4800,'7779','Calne','CALNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4801,'38331','Calolziocorte','CALOLZIOCORTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4802,'3529','Calonge','CALONGE',NULL,'','Spain','Calonge',0,0,199,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4803,'15487','Caloocan','CALOOCAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4804,'26674','Caloundra','CALOUNDRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4805,'16091','Caloura','CALOURA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4806,'3743','Calpe','CALPE',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4807,'7780','Calstock','CALSTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:25','1900-01-01 00:00:00',1,0,1),(4808,'12844','Caltagirone','CALTAGIRONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4809,'13043','Caltanissetta','CALTANISSETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4810,'6587','Caluire-et-cuire','CALUIRE-ET-CUIRE',NULL,'','France','',0,0,76,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4811,'22013','Calumet','CALUMET',NULL,'','United States','',0,0,231,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4812,'11687','Caluso','CALUSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4813,'4168','Calvados','CALVADOS',NULL,'','France','',0,0,76,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4814,'15851','Calvao','CALVAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:26','1900-01-01 00:00:00',1,0,1),(4815,'15092','Calversham','CALVERSHAM',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4816,'30508','Calvert','CALVERT',NULL,'','United States','',0,0,231,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4817,'21654','Calverton','CALVERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4818,'4885','Calvi','CALVI',NULL,'','France','',0,0,76,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4819,'2888','Calvia','CALVIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4820,'5901','Calvisson','CALVISSON',NULL,'','France','',0,0,76,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4821,'39453','Calw','CALW',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4822,'3634','Calzadilla De Los Barros','CALZADILLA DE LOS BARROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4823,'37083','Cam Rahn','CAM RAHN',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4824,'25036','Camacari','CAMACARI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4825,'43199','Camacha','CAMACHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4826,'1116','Camaguey','CAMAGUEY',NULL,'','CUBA','',0,0,56,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4827,'11688','Camaiore','CAMAIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:27','1900-01-01 00:00:00',1,0,1),(4828,'2573','Camango','CAMANGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4829,'31453','Camano Island','CAMANO ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4830,'15952','Camara De Lobos','CAMARA DE LOBOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4831,'39852','Camargo','CAMARGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4832,'18350','Camarillo','CAMARILLO',NULL,'','United States','',0,0,231,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4833,'26093','Camarones','CAMARONES',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4834,'43976','Camarsac','CAMARSAC',NULL,'','France','',0,0,76,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4835,'3200','Camas','CAMAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4836,'39268','Camas','CAMAS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4837,'3440','Camasobres','CAMASOBRES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4838,'3657','Cambados','CAMBADOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:28','1900-01-01 00:00:00',1,0,1),(4839,'41980','Cambara Do Sul','CAMBARA DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4840,'7781','Camberley','CAMBERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4841,'6950','Camberwell','CAMBERWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4842,'26363','Camberwell','CAMBERWELL',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4843,'11689','Cambiago','CAMBIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4844,'11690','Cambiano','CAMBIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4845,'7782','Camborne','CAMBORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4846,'6154','Cambrai','CAMBRAI',NULL,'','France','',0,0,76,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4847,'5381','Cambremer','CAMBREMER',NULL,'','France','',0,0,76,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4848,'18351','Cambria','CAMBRIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:29','1900-01-01 00:00:00',1,0,1),(4849,'15093','Cambridge','CAMBRIDGE',NULL,'','New Zealand','Cambridge',0,0,157,'2016-10-17 10:44:30','1900-01-01 00:00:00',1,0,1),(4850,'29282','Cambridge','CAMBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:30','1900-01-01 00:00:00',1,0,1),(4851,'34464','Cambridge','CAMBRIDGE',NULL,'','Canada','Cambridge',0,0,39,'2016-10-17 10:44:30','1900-01-01 00:00:00',1,0,1),(4852,'9279','Cambridge','CAMBRIDGE',NULL,'','United Kingdom','Cambridge',0,0,229,'2016-10-17 10:44:30','1900-01-01 00:00:00',1,0,1),(4853,'26830','Cambridge','CAMBRIDGE',NULL,'','Australia','Cambridge',0,0,13,'2016-10-17 10:44:31','1900-01-01 00:00:00',1,0,1),(4854,'3530','Cambrils','CAMBRILS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:31','1900-01-01 00:00:00',1,0,1),(4855,'829','Cambs','CAMBS',NULL,'','Germany','',0,0,83,'2016-10-17 10:44:32','1900-01-01 00:00:00',1,0,1),(4856,'25080','Cambuquira','CAMBUQUIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:32','1900-01-01 00:00:00',1,0,1),(4857,'33090','Camden','CAMDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:32','1900-01-01 00:00:00',1,0,1),(4858,'6952','Camden','CAMDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:32','1900-01-01 00:00:00',1,0,1),(4859,'26794','Camden Park','CAMDEN PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4860,'27600','Camdenton','CAMDENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4861,'7783','Camelford','CAMELFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4862,'11691','Camerano','CAMERANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4863,'11692','Camerino','CAMERINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:33','1900-01-01 00:00:00',1,0,1),(4864,'30509','Cameron','CAMERON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:34','1900-01-01 00:00:00',1,0,1),(4865,'14362','Cameron Highlands','CAMERON HIGHLANDS',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4866,'37293','Camerota','CAMEROTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4867,'6155','Camiers','CAMIERS',NULL,'','France','',0,0,76,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4868,'11693','Camigliano','CAMIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4869,'11148','Camigliatello','CAMIGLIATELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4870,'15442','Camiguin','CAMIGUIN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4871,'19731','Camilla','CAMILLA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4872,'28674','Camillus','CAMILLUS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:35','1900-01-01 00:00:00',1,0,1),(4873,'16066','Caminha','CAMINHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4874,'3324','Caminreal','CAMINREAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4875,'24956','Camiri','CAMIRI',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4876,'6077','Camjac','CAMJAC',NULL,'','France','',0,0,76,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4877,'34122','Cammeray','CAMMERAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:36','1900-01-01 00:00:00',1,0,1),(4878,'41981','Camocim','CAMOCIM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:37','1900-01-01 00:00:00',1,0,1),(4879,'11694','Camogli','CAMOGLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:37','1900-01-01 00:00:00',1,0,1),(4880,'37628','Campagna','CAMPAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4881,'11695','Campagnano Di Roma','CAMPAGNANO DI ROMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4882,'11696','Campagnatico','CAMPAGNATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4883,'12877','Campalto','CAMPALTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4884,'26068','Campana','CAMPANA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4885,'2889','Campanet','CAMPANET',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4886,'43224','Campania','CAMPANIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4887,'2575','Campanillas','CAMPANILLAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:38','1900-01-01 00:00:00',1,0,1),(4888,'18353','Campbell','CAMPBELL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4889,'25404','Campbell River','CAMPBELL RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4890,'26831','Campbell Town','CAMPBELL TOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4891,'26491','Campbellfield','CAMPBELLFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4892,'39560','Campbellsburg','CAMPBELLSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4893,'33606','Campbellsville','CAMPBELLSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4894,'34387','Campbellton','CAMPBELLTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4895,'34123','Campbelltown','CAMPBELLTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4896,'29854','Campbelltown','CAMPBELLTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4897,'34465','Campbellville','CAMPBELLVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4898,'7784','Campbeltown','CAMPBELTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:39','1900-01-01 00:00:00',1,0,1),(4899,'13792','Campeche','CAMPECHE',NULL,'','Mexico','',0,0,141,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4900,'11697','Campegine','CAMPEGINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4901,'39063','Campelles','CAMPELLES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4902,'11698','Campello Sul Clitunno','CAMPELLO SUL CLITUNNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4903,'34124','Camperdown','CAMPERDOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4904,'41587','Campertogno','CAMPERTOGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4905,'11149','Campertongo','CAMPERTONGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4906,'12962','Campi Bisenzio','CAMPI BISENZIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4907,'35486','Campiglia','CAMPIGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4908,'41339','Campillo De Arenas','CAMPILLO DE ARENAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4909,'25107','Campina Grande','CAMPINA GRANDE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:40','1900-01-01 00:00:00',1,0,1),(4910,'24958','Campinas','CAMPINAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4911,'42955','Campione','CAMPIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4912,'11150','Campitello Di Fassa','CAMPITELLO DI FASSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4913,'25156','Campo Bom','CAMPO BOM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4914,'15794','Campo De Ourique','CAMPO DE OURIQUE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4915,'38067','Campo Nellelba','CAMPO NELLELBA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4916,'12794','Campobasso','CAMPOBASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4917,'34389','Campobello Island','CAMPOBELLO ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:41','1900-01-01 00:00:00',1,0,1),(4918,'11701','Campodarsego','CAMPODARSEGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4919,'11702','Campofelice Di Roccella','CAMPOFELICE DI ROCCELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4920,'11703','Campogalliano','CAMPOGALLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4921,'15995','Campolide','CAMPOLIDE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4922,'11704','Campomarino','CAMPOMARINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4923,'43048','Campos','CAMPOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4924,'25198','Campos Do Jordao','CAMPOS DO JORDAO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4925,'11705','Camposampiero','CAMPOSAMPIERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4926,'2576','Camposeiras','CAMPOSEIRAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4927,'3531','Camprodon','CAMPRODON',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4928,'32428','Camps Bay','CAMPS BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4929,'5167','Campsegret','CAMPSEGRET',NULL,'','France','',0,0,76,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4930,'6954','Campsie','CAMPSIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:42','1900-01-01 00:00:00',1,0,1),(4931,'34125','Campsie','CAMPSIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4932,'32675','Campton','CAMPTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4933,'42395','Campulung Moldovenesc','CAMPULUNG MOLDOVENESC',NULL,'','Romania','',0,0,179,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4934,'25285','Camrose','CAMROSE',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4935,'34126','Cams Wharf','CAMS WHARF',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4936,'15741','Camuy','CAMUY',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4937,'17365','Camyuva','CAMYUVA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4938,'43600','Can Tho','CAN THO',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4939,'37346','Cana Fistula','CANA FISTULA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4940,'28675','Canaan','CANAAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4941,'13649','Canach','CANACH',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4942,'42211','Canacona','CANACONA',NULL,'','India','',0,0,101,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4943,'3111','Cañada Del Río','CAÑADA DEL RÍO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4944,'29855','Canadensis','CANADENSIS',NULL,'','United States','',0,0,231,'2016-10-17 10:44:43','1900-01-01 00:00:00',1,0,1),(4945,'32885','Canadian','CANADIAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4946,'1180','Canadian Rockies','CANADIAN ROCKIES',NULL,'','CANADA','',0,0,39,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4947,'28676','Canajoharie','CANAJOHARIE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4948,'17276','Canakkale','CANAKKALE',NULL,'','Turkey','Canakkale',0,0,222,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4949,'29283','Canal Winchester','CANAL WINCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4950,'38249','Canale','CANALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4951,'11151','Canalicchio Di Collazzone','CANALICCHIO DI COLLAZZONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4952,'41402','Canamares','CANAMARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4953,'28677','Canandaigua','CANANDAIGUA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4954,'6955','Canary Wharf - Docklands','CANARY WHARF - DOCKLANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4955,'24209','Canas','CANAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4956,'41664','Canas De Senhorim','CANAS DE SENHORIM',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:44','1900-01-01 00:00:00',1,0,1),(4957,'28678','Canastota','CANASTOTA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4958,'11152','Canavese Region','CANAVESE REGION',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4959,'26627','Canberra','CANBERRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4960,'34771','Canberra-greenway','CANBERRA-GREENWAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4961,'29628','Canby','CANBY',NULL,'','United States','',0,0,231,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4962,'5520','Cancale','CANCALE',NULL,'','France','',0,0,76,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4963,'14073','Cancun','CANCUN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4964,'41379','Candanchu','CANDANCHU',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4965,'38771','Candanchú','CANDANCHÚ',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4966,'3080','Candas','CANDAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4967,'3801','Candelaria','CANDELARIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:45','1900-01-01 00:00:00',1,0,1),(4968,'3441','Candelario','CANDELARIO',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4969,'3442','Candeleda','CANDELEDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4970,'41019','Candeli','CANDELI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4971,'5631','Cande-sur-beuvron','CANDE-SUR-BEUVRON',NULL,'','France','',0,0,76,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4972,'10150','Candi Dasa','CANDI DASA',NULL,'','Indonesia','Candi Dasa',0,0,102,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4973,'38133','Candia','CANDIA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4974,'25964','Candiac','CANDIAC',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4975,'43518','Candidasa','CANDIDASA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4976,'11706','Candiolo','CANDIOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4977,'17575','Candle','CANDLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4978,'33794','Candler','CANDLER',NULL,'','United States','',0,0,231,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4979,'10502','Candolim','CANDOLIM',NULL,'','India','',0,0,101,'2016-10-17 10:44:46','1900-01-01 00:00:00',1,0,1),(4980,'28679','Candor','CANDOR',NULL,'','United States','',0,0,231,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4981,'25119','Canela','CANELA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4982,'40535','Canelli','CANELLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4983,'41965','Canena','CANENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4984,'36237','Canet','CANET',NULL,'','France','',0,0,76,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4985,'3744','Canet De Berenguer','CANET DE BERENGUER',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4986,'41567','Canet-en-rousillon','CANET-EN-ROUSILLON',NULL,'','France','',0,0,76,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4987,'5902','Canet-plage','CANET-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4988,'12741','Caneva','CANEVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4989,'29284','Canfield','CANFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:44:47','1900-01-01 00:00:00',1,0,1),(4990,'3325','Canfranc','CANFRANC',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4991,'3658','Cangas','CANGAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4992,'5632','Cangey','CANGEY',NULL,'','France','',0,0,76,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4993,'10151','Canggu','CANGGU',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4994,'10222','Cangkringan','CANGKRINGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4995,'36019','Cangzhou','CANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4996,'15881','Canicada','CANICADA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4997,'15953','Canico','CANICO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4998,'25873','Canillo','CANILLO',NULL,'','Andorra','',0,0,5,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(4999,'42103','Caninde De Sao Francisco','CANINDE DE SAO FRANCISCO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5000,'32997','Canistota','CANISTOTA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5001,'17279','Cankiri','CANKIRI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5002,'25286','Canmore','CANMORE',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5003,'11707','Cannara','CANNARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:48','1900-01-01 00:00:00',1,0,1),(5004,'13033','Cannero Riviera','CANNERO RIVIERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5005,'4169','Cannes','CANNES',NULL,'','France','Cannes',0,0,76,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5006,'41916','Cannes-ecluse','CANNES-ECLUSE',NULL,'','France','',0,0,76,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5007,'11153','Canneto','CANNETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5008,'12761','Cannigione','CANNIGIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5009,'25701','Canning','CANNING',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5010,'26582','Cannington','CANNINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5011,'12996','Cannizzaro - Palermo','CANNIZZARO - PALERMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5012,'11708','Cannobio','CANNOBIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5013,'7785','Cannock','CANNOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:49','1900-01-01 00:00:00',1,0,1),(5014,'29629','Cannon Beach','CANNON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5015,'26395','Cannonvale','CANNONVALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5016,'40007','Canoa Quebrada','CANOA QUEBRADA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5017,'42199','Canoas','CANOAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5018,'18355','Canoga Park','CANOGA PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5019,'34726','Canon City','CANON CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5020,'7786','Canonbie','CANONBIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5021,'29856','Canonsburg','CANONSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5022,'3745','Canor','CANOR',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:50','1900-01-01 00:00:00',1,0,1),(5023,'22941','Canora','CANORA',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5024,'37281','Canosa Di Puglia','CANOSA DI PUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5025,'890','Canouan Island','CANOUAN ISLAND',NULL,'','Saint Vincent And The Grenadines','',0,0,204,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5026,'32163','Canouan Island','CANOUAN ISLAND',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5027,'39492','Canoves','CANOVES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5028,'37143','Cantabria','CANTABRIA',NULL,'','SPAIN','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5029,'2578','Cantabrian Coast','CANTABRIAN COAST',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5030,'4172','Cantal','CANTAL',NULL,'','France','',0,0,76,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5031,'3443','Cantalapiedra','CANTALAPIEDRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5032,'3533','Cantallops','CANTALLOPS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5033,'15900','Cantanhede','CANTANHEDE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5034,'38524','Cantarana','CANTARANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5035,'13020','Cantello','CANTELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:51','1900-01-01 00:00:00',1,0,1),(5036,'34127','Canterbury','CANTERBURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:52','1900-01-01 00:00:00',1,0,1),(5037,'7787','Canterbury','CANTERBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:52','1900-01-01 00:00:00',1,0,1),(5038,'29285','Canton','CANTON',NULL,'','United States','',0,0,231,'2016-10-17 10:44:52','1900-01-01 00:00:00',1,0,1),(5039,'39740','Cantu','CANTU',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5040,'17576','Cantwell','CANTWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5041,'38596','Canungra','CANUNGRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5042,'6956','Canvey Island','CANVEY ISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5043,'2893','Canyamel','CANYAMEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5044,'37969','Canyonleigh','CANYONLEIGH',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5045,'29630','Canyonville','CANYONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:44:53','1900-01-01 00:00:00',1,0,1),(5046,'12878','Caorle','CAORLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5047,'25965','Cap Aux Meules','CAP AUX MEULES',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5048,'13580','Cap Estate','CAP ESTATE',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5049,'42549','Cap Malheureux','CAP MALHEUREUX',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5050,'1143','Cap Skiring','CAP SKIRING',NULL,'','SENEGAL','',0,0,187,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5051,'11155','Capaccio','CAPACCIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5052,'37507','Capafonts','CAPAFONTS',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5053,'26675','Capalaba','CAPALABA',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5054,'11709','Capalbio','CAPALBIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5055,'11710','Capannoli','CAPANNOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:54','1900-01-01 00:00:00',1,0,1),(5056,'11711','Capannori','CAPANNORI',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5057,'3201','Caparacena','CAPARACENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5058,'5168','Capbreton','CAPBRETON',NULL,'','France','',0,0,76,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5059,'40160','Capcanes','CAPCANES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5060,'4174','Cap-d\'antibes','CAP-D\'ANTIBES',NULL,'','France','',0,0,76,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5061,'4175','Cap-de-croix','CAP-DE-CROIX',NULL,'','France','',0,0,76,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5062,'4176','Capdenac','CAPDENAC',NULL,'','France','',0,0,76,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5063,'2464','Capdepera','CAPDEPERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5064,'9352','Cape Coast','CAPE COAST',NULL,'','Ghana','',0,0,84,'2016-10-17 10:44:55','1900-01-01 00:00:00',1,0,1),(5065,'25791','Cape Dorset','CAPE DORSET',NULL,'','Canada','',0,0,39,'2016-10-17 10:44:56','1900-01-01 00:00:00',1,0,1),(5066,'26196','Cape Gantheaume','CAPE GANTHEAUME',NULL,'','Australia','',0,0,13,'2016-10-17 10:44:56','1900-01-01 00:00:00',1,0,1),(5067,'15568','Cape Gloucester','CAPE GLOUCESTER',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 10:44:56','1900-01-01 00:00:00',1,0,1),(5068,'41065','Cape Panwa','CAPE PANWA',NULL,'','Thailand','',0,0,215,'2016-10-17 10:44:57','1900-01-01 00:00:00',1,0,1),(5069,'32443','Cape Town','CAPE TOWN',NULL,'','South Africa','Cape Town',0,0,195,'2016-10-17 10:44:57','1900-01-01 00:00:00',1,0,1),(5070,'13123','Cape Zanpa','CAPE ZANPA',NULL,'','Japan','',0,0,110,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5071,'6957','Capel St. Mary','CAPEL ST. MARY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5072,'40576','Capelas','CAPELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5073,'2935','Capellades','CAPELLADES',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5074,'42414','Capelle','CAPELLE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5075,'6958','Capel-le-ferne','CAPEL-LE-FERNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5076,'39983','Capena','CAPENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5077,'4177','Cap-ferrat','CAP-FERRAT',NULL,'','France','',0,0,76,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5078,'3202','Capileira','CAPILEIRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5079,'39113','Capilla Del Monte','CAPILLA DEL MONTE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5080,'18357','Capistrano Beach','CAPISTRANO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5081,'28503','Capitan','CAPITAN',NULL,'','United States','',0,0,231,'2016-10-17 10:44:58','1900-01-01 00:00:00',1,0,1),(5082,'12817','Capitana','CAPITANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5083,'36882','Capitol','CAPITOL',NULL,'','United States','',0,0,231,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5084,'18358','Capitola','CAPITOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5085,'41982','Capitolio','CAPITOLIO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5086,'34834','Capljina','CAPLJINA',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5087,'11156','Capo Caccia','CAPO CACCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:44:59','1900-01-01 00:00:00',1,0,1),(5088,'41671','Capodrise','CAPODRISE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5089,'12975','Capoliveri','CAPOLIVERI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5090,'12969','Capolona','CAPOLONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5091,'31961','Capon Bridge','CAPON BRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5092,'40458','Caponago','CAPONAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5093,'44229','Caposele','CAPOSELE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5094,'1206','Cappadocia','CAPPADOCIA',NULL,'','TURKEY','Cappadocia',0,0,222,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5095,'12879','Cappella Maggiore','CAPPELLA MAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5096,'38337','Capracotta','CAPRACOTTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5097,'40476','Capraia E Limite','CAPRAIA E LIMITE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5098,'35480','Capranica','CAPRANICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5099,'43612','Capreol','CAPREOL',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:00','1900-01-01 00:00:00',1,0,1),(5100,'11714','Caprese Michelangelo','CAPRESE MICHELANGELO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5101,'40491','Caprino Veronese','CAPRINO VERONESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5102,'25967','Cap-rouge','CAP-ROUGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5103,'19977','Captain Cook','CAPTAIN COOK',NULL,'','United States','',0,0,231,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5104,'19291','Captiva','CAPTIVA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5105,'11716','Capua','CAPUA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5106,'762','Caputh','CAPUTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5107,'5029','Capvern','CAPVERN',NULL,'','France','',0,0,76,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5108,'10394','Car Nicobar','CAR NICOBAR',NULL,'','India','',0,0,101,'2016-10-17 10:45:01','1900-01-01 00:00:00',1,0,1),(5109,'4178','Carabacel','CARABACEL',NULL,'','France','',0,0,76,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5110,'13795','Carabalin','CARABALIN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5111,'32192','Caraballeda','CARABALLEDA',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5112,'2583','Carabanchel','CARABANCHEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5113,'19292','Carabelle','CARABELLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5114,'42990','Carabias','CARABIAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5115,'32193','Caracas','CARACAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5116,'977','Caraguatatuba','CARAGUATATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5117,'25100','Carajas','CARAJAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5118,'11717','Caramanico Terme','CARAMANICO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5119,'16081','Caramulo','CARAMULO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5120,'37342','Caranceja','CARANCEJA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:02','1900-01-01 00:00:00',1,0,1),(5121,'13054','Carano','CARANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5122,'16214','Caransebes','CARANSEBES',NULL,'','Romania','',0,0,179,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5123,'5521','Carantec','CARANTEC',NULL,'','France','',0,0,76,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5124,'34391','Caraquet','CARAQUET',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5125,'24247','Carara','CARARA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5126,'43836','Carate','CARATE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5127,'25029','Carauari','CARAUARI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5128,'39856','Caravaca De La Cruz','CARAVACA DE LA CRUZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5129,'35945','Caravelas','CARAVELAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5130,'3635','Carbajo','CARBAJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5131,'37637','Carballo','CARBALLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5132,'7788','Carbis Bay','CARBIS BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5133,'20475','Carbondale','CARBONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:03','1900-01-01 00:00:00',1,0,1),(5134,'3203','Carboneras','CARBONERAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5135,'5169','Carcans','CARCANS',NULL,'','France','',0,0,76,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5136,'4856','Carcassonne','CARCASSONNE',NULL,'','France','',0,0,76,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5137,'15852','Carcavelos','CARCAVELOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5138,'2584','Carchuna','CARCHUNA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5139,'6959','Carcoft','CARCOFT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5140,'22975','Carcross','CARCROSS',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5141,'41996','Cardales','CARDALES',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5142,'12928','Cardano Al Campo','CARDANO AL CAMPO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5143,'3534','Cardedeu','CARDEDEU',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5144,'12818','Cardedu','CARDEDU',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5145,'6960','Cardiff','CARDIFF',NULL,'','United Kingdom','Cardiff',0,0,229,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5146,'7789','Cardigan','CARDIGAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5147,'25813','Cardigan','CARDIGAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5148,'3535','Cardona','CARDONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:04','1900-01-01 00:00:00',1,0,1),(5149,'7790','Cardrona','CARDRONA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:05','1900-01-01 00:00:00',1,0,1),(5150,'25287','Cardston','CARDSTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:05','1900-01-01 00:00:00',1,0,1),(5151,'37653','Cardwell','CARDWELL',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:05','1900-01-01 00:00:00',1,0,1),(5152,'20835','Carefree','CAREFREE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:05','1900-01-01 00:00:00',1,0,1),(5153,'21180','Carencro','CARENCRO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5154,'5382','Carentan','CARENTAN',NULL,'','France','',0,0,76,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5155,'5522','Carhaix-plouguer','CARHAIX-PLOUGUER',NULL,'','France','',0,0,76,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5156,'42318','Cariati','CARIATI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5157,'24161','Caribbean Coast','CARIBBEAN COAST',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5158,'21848','Caribou','CARIBOU',NULL,'','United States','',0,0,231,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5159,'943','Carilo','CARILO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:06','1900-01-01 00:00:00',1,0,1),(5160,'11718','Carimate','CARIMATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5161,'26677','Carindale','CARINDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5162,'41966','Carinena','CARINENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5163,'39342','Cariñena','CARIÑENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5164,'42956','Carini','CARINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5165,'41938','Carisio','CARISIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5166,'11719','Carisolo','CARISOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5167,'10223','Carita','CARITA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5168,'37254','Cark','CARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5169,'28681','Carle Place','CARLE PLACE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5170,'25968','Carleton','CARLETON',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5171,'32802','Carlin','CARLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:45:07','1900-01-01 00:00:00',1,0,1),(5172,'37798','Carlingford','CARLINGFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5173,'20477','Carlinville','CARLINVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5174,'20836','Carlisle','CARLISLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5175,'7791','Carlisle','CARLISLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5176,'1207','Carlisle','CARLISLE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5177,'12819','Carloforte','CARLOFORTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5178,'10710','Carlow','CARLOW',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5179,'24286','Carlsbad','CARLSBAD',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:45:08','1900-01-01 00:00:00',1,0,1),(5180,'18360','Carlsbad','CARLSBAD',NULL,'','United States','',0,0,231,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5181,'28225','Carlstadt','CARLSTADT',NULL,'','United States','',0,0,231,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5182,'22338','Carlton','CARLTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5183,'26891','Carlton','CARLTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5184,'44185','Carluke','CARLUKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:09','1900-01-01 00:00:00',1,0,1),(5185,'20478','Carlyle','CARLYLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5186,'22976','Carmacks','CARMACKS',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5187,'11158','Carmagnola','CARMAGNOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5188,'25587','Carman','CARMAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5189,'7792','Carmarthen','CARMARTHEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5190,'1532','Carmarthenshire','CARMARTHENSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5191,'18363','Carmel','CARMEL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5192,'38201','Carmel','CARMEL',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5193,'17529','Carmelo','CARMELO',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:45:10','1900-01-01 00:00:00',1,0,1),(5194,'20480','Carmi','CARMI',NULL,'','United States','',0,0,231,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5195,'11720','Carmignano','CARMIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5196,'3151','Carmona','CARMONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5197,'10862','Carna','CARNA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5198,'4999','Carnac','CARNAC',NULL,'','France','',0,0,76,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5199,'26583','Carnarvon','CARNARVON',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5200,'43678','Carnarvorn','CARNARVORN',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5201,'17135','Carnbee','CARNBEE',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5202,'29859','Carnegie','CARNEGIE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5203,'18365','Carnelian Bay','CARNELIAN BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5204,'21658','Carney','CARNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:11','1900-01-01 00:00:00',1,0,1),(5205,'28226','Carneys Point','CARNEYS POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5206,'7793','Carnforth','CARNFORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5207,'7794','Carnlough','CARNLOUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5208,'7795','Carno','CARNO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5209,'41565','Carnon','CARNON',NULL,'','France','',0,0,76,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5210,'5903','Carnoules','CARNOULES',NULL,'','France','',0,0,76,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5211,'6964','Carnoustie','CARNOUSTIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5212,'4860','Carnoux-en-provence','CARNOUX-EN-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5213,'22015','Caro','CARO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:12','1900-01-01 00:00:00',1,0,1),(5214,'19293','Carol City','CAROL CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5215,'15742','Carolina','CAROLINA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5216,'33798','Carolina Beach','CAROLINA BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5217,'40266','Caroline Springs','CAROLINE SPRINGS',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5218,'23004','Carona','CARONA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5219,'23434','Carouge','CAROUGE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5220,'11723','Carovigno','CAROVIGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5221,'36608','Carp Island','CARP ISLAND',NULL,'','Palau','',0,0,167,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5222,'40346','Carpegna','CARPEGNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5223,'11724','Carpenedolo','CARPENEDOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5224,'5117','Carpentras','CARPENTRAS',NULL,'','France','',0,0,76,'2016-10-17 10:45:13','1900-01-01 00:00:00',1,0,1),(5225,'12956','Carpi','CARPI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5226,'11725','Carpineti','CARPINETI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5227,'18366','Carpinteria','CARPINTERIA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5228,'6221','Carquefou','CARQUEFOU',NULL,'','France','',0,0,76,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5229,'6409','Carqueiranne','CARQUEIRANNE',NULL,'','France','',0,0,76,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5230,'21849','Carrabassett Valley','CARRABASSETT VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5231,'3400','Carranque','CARRANQUE',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5232,'11726','Carrara','CARRARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5233,'26678','Carrara','CARRARA',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5234,'42991','Carrascal','CARRASCAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5235,'3204','Carratraca','CARRATRACA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5236,'33799','Carrboro','CARRBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:14','1900-01-01 00:00:00',1,0,1),(5237,'7796','Carrbridge','CARRBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5238,'39834','Carrè','CARRÈ',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5239,'9834','Carriacou Island','CARRIACOU ISLAND',NULL,'','Grenada','',0,0,88,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5240,'7797','Carrickfergus','CARRICKFERGUS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5241,'10916','Carrickmacross','CARRICKMACROSS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5242,'41593','Carrick-on-shannon','CARRICK-ON-SHANNON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5243,'42968','Carrieres Sur Seine','CARRIERES SUR SEINE',NULL,'','France','',0,0,76,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5244,'4684','Carrieres-sous-poissy','CARRIERES-SOUS-POISSY',NULL,'','France','',0,0,76,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5245,'37830','Carrieres-sur-seine','CARRIERES-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5246,'10802','Carrigaline','CARRIGALINE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5247,'41592','Carrigans','CARRIGANS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5248,'10718','Carrigart','CARRIGART',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5249,'24210','Carrillo','CARRILLO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5250,'28049','Carrington','CARRINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5251,'30513','Carrizo Springs','CARRIZO SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:45:15','1900-01-01 00:00:00',1,0,1),(5252,'28506','Carrizozo','CARRIZOZO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:16','1900-01-01 00:00:00',1,0,1),(5253,'11727','Carrodano','CARRODANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:16','1900-01-01 00:00:00',1,0,1),(5254,'20167','Carroll','CARROLL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:16','1900-01-01 00:00:00',1,0,1),(5255,'31061','Carrollton','CARROLLTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:16','1900-01-01 00:00:00',1,0,1),(5256,'43088','Carroz D\'araches','CARROZ D\'ARACHES',NULL,'','France','',0,0,76,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5257,'7798','Carrutherstown','CARRUTHERSTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5258,'9280','Carrville','CARRVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5259,'43689','Carry Le Rouet','CARRY LE ROUET',NULL,'','France','',0,0,76,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5260,'6412','Carry-le-rouet','CARRY-LE-ROUET',NULL,'','France','',0,0,76,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5261,'5170','Carsac-aillac','CARSAC-AILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5262,'26679','Carseldine','CARSELDINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:17','1900-01-01 00:00:00',1,0,1),(5263,'18367','Carson','CARSON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5264,'3029','Cartagena','CARTAGENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5265,'24086','Cartagena','CARTAGENA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5266,'24204','Cartago','CARTAGO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5267,'38835','Cartajima','CARTAJIMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5268,'40109','Cartama','CARTAMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5269,'16042','Cartaxo','CARTAXO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5270,'3205','Cartaya','CARTAYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:18','1900-01-01 00:00:00',1,0,1),(5271,'19735','Cartersville','CARTERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5272,'29287','Carthage','CARTHAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5273,'17182','Carthage','CARTHAGE',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5274,'27','Cartwright','CARTWRIGHT',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5275,'25120','Caruaru','CARUARU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5276,'32210','Carupano','CARUPANO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5277,'27606','Caruthersville','CARUTHERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:19','1900-01-01 00:00:00',1,0,1),(5278,'41564','Carvin','CARVIN',NULL,'','France','',0,0,76,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5279,'15925','Carvoeiro','CARVOEIRO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5280,'33801','Cary','CARY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5281,'33093','Caryville','CARYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5282,'11728','Carzago Della Riviera','CARZAGO DELLA RIVIERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5283,'18113','Casa Grande','CASA GRANDE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5284,'43810','Casablanca','CASABLANCA',NULL,'','Chile','Casablanca',0,0,45,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5285,'13690','Casablanca','CASABLANCA',NULL,'','Morocco','Casablanca',0,0,148,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5286,'39426','Casal Borsetti','CASAL BORSETTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:20','1900-01-01 00:00:00',1,0,1),(5287,'12804','Casalabate','CASALABATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5288,'38747','Casalarreina','CASALARREINA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5289,'11730','Casale Monferrato','CASALE MONFERRATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5290,'11731','Casalecchio Di Reno','CASALECCHIO DI RENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5291,'11732','Casalmaggiore','CASALMAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5292,'11733','Casalnuovo Di Napoli','CASALNUOVO DI NAPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5293,'11734','Casamassima','CASAMASSIMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5294,'11159','Casamicciola Terme','CASAMICCIOLA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5295,'11735','Casandrino','CASANDRINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5296,'13048','Casanova Pansarine','CASANOVA PANSARINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5297,'39169','Casapulla','CASAPULLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5298,'37642','Casarabonela','CASARABONELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:21','1900-01-01 00:00:00',1,0,1),(5299,'40263','Casarano','CASARANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5300,'3081','Casares','CASARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5301,'12742','Casarsa Della Delizia','CASARSA DELLA DELIZIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5302,'38909','Casarza Ligure','CASARZA LIGURE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5303,'34728','Cascade','CASCADE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5304,'15996','Cascais','CASCAIS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:22','1900-01-01 00:00:00',1,0,1),(5305,'37804','Cascastel-des-corbieres','CASCASTEL-DES-CORBIERES',NULL,'','France','',0,0,76,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5306,'25037','Cascavel','CASCAVEL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5307,'11736','Cascia','CASCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5308,'12973','Casciana Terme','CASCIANA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5309,'11160','Casciano','CASCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5310,'11737','Cascina','CASCINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5311,'39202','Casekow','CASEKOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5312,'15997','Caselas','CASELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5313,'11738','Caselle','CASELLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5314,'26069','Caseros','CASEROS',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5315,'12711','Caserta','CASERTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:23','1900-01-01 00:00:00',1,0,1),(5316,'13049','Casetta','CASETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5317,'20482','Casey','CASEY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5318,'20483','Caseyville','CASEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5319,'10929','Cashel','CASHEL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5320,'33802','Cashiers','CASHIERS',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5321,'31455','Cashmere','CASHMERE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5322,'15094','Cashmere','CASHMERE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5323,'31714','Cashton','CASHTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5324,'29861','Cashtown','CASHTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5325,'34128','Casino','CASINO',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:24','1900-01-01 00:00:00',1,0,1),(5326,'11740','Casirile','CASIRILE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5327,'23160','Caslano','CASLANO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5328,'37707','Casnate Con Bernate','CASNATE CON BERNATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5329,'39840','Casola Valsenio','CASOLA VALSENIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5330,'35517','Casole','CASOLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5331,'38308','Casorate Sempione','CASORATE SEMPIONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5332,'11743','Casoria','CASORIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5333,'32077','Casper','CASPER',NULL,'','United States','',0,0,231,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5334,'15184','Cass','CASS',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5335,'22017','Cass City','CASS CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:25','1900-01-01 00:00:00',1,0,1),(5336,'40388','Cassago Brianza','CASSAGO BRIANZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5337,'37426','Cassano Allo Ionio','CASSANO ALLO IONIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5338,'11744','Cassaro','CASSARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5339,'19294','Casselberry','CASSELBERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5340,'28050','Casselton','CASSELTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5341,'5171','Cassen','CASSEN',NULL,'','France','',0,0,76,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5342,'11745','Cassine','CASSINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5343,'7799','Cassington','CASSINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5344,'11746','Cassino','CASSINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5345,'4861','Cassis','CASSIS',NULL,'','France','',0,0,76,'2016-10-17 10:45:26','1900-01-01 00:00:00',1,0,1),(5346,'11162','Cassola','CASSOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5347,'43710','Cassowary','CASSOWARY',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5348,'27607','Cassville','CASSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5349,'35491','Castagneto Carducci','CASTAGNETO CARDUCCI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5350,'38564','Castagniers','CASTAGNIERS',NULL,'','France','',0,0,76,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5351,'11747','Castagnito','CASTAGNITO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5352,'38678','Castagnole Delle Lanze','CASTAGNOLE DELLE LANZE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5353,'18368','Castaic','CASTAIC',NULL,'','United States','',0,0,231,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5354,'41285','Castalla','CASTALLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5355,'16072','Castanheira','CASTANHEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5356,'4048','Castaway Island','CASTAWAY ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5357,'24741','Casteau','CASTEAU',NULL,'','Belgium','',0,0,21,'2016-10-17 10:45:27','1900-01-01 00:00:00',1,0,1),(5358,'38018','Castegnato','CASTEGNATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:28','1900-01-01 00:00:00',1,0,1),(5359,'3401','Castejon','CASTEJON',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:28','1900-01-01 00:00:00',1,0,1),(5360,'6965','Castel','CASTEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:28','1900-01-01 00:00:00',1,0,1),(5361,'11758','Castelbuono','CASTELBUONO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5362,'38504','Castelculier','CASTELCULIER',NULL,'','France','',0,0,76,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5363,'11759','Casteldaccia','CASTELDACCIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5364,'11760','Castelfiorentino','CASTELFIORENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5365,'11761','Castelfranco Di Sopra','CASTELFRANCO DI SOPRA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5366,'5172','Casteljaloux','CASTELJALOUX',NULL,'','France','',0,0,76,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5367,'39257','Castellabate','CASTELLABATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5368,'11763','Castellammare Del Golfo','CASTELLAMMARE DEL GOLFO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:29','1900-01-01 00:00:00',1,0,1),(5369,'39978','Castellana Grotte','CASTELLANA GROTTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5370,'12987','Castellaneta Marina','CASTELLANETA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5371,'39281','Castellar De La Frontera','CASTELLAR DE LA FRONTERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5372,'11765','Castellaro','CASTELLARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5373,'3536','Castellbisbal','CASTELLBISBAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5374,'3537','Castelldefels','CASTELLDEFELS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5375,'11766','Castelleone','CASTELLEONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5376,'39205','Castelletto Di Branduzzo','CASTELLETTO DI BRANDUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5377,'26070','Castelli','CASTELLI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5378,'11165','Castelli Romani','CASTELLI ROMANI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5379,'35697','Castellina In Chiant','CASTELLINA IN CHIANT',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:30','1900-01-01 00:00:00',1,0,1),(5380,'3538','Castello','CASTELLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5381,'37990','Castelló Dempúries','CASTELLÓ DEMPÚRIES',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5382,'2586','Castellon','CASTELLON',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5383,'43239','Castellote','CASTELLOTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5384,'11769','Castelluzzo','CASTELLUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5385,'11770','Castelmagno','CASTELMAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5386,'11167','Castelmola','CASTELMOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:31','1900-01-01 00:00:00',1,0,1),(5387,'5173','Castelmoron-sur-lot','CASTELMORON-SUR-LOT',NULL,'','France','',0,0,76,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5388,'42969','Castelnau Le Lez','CASTELNAU LE LEZ',NULL,'','France','',0,0,76,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5389,'41563','Castelnau-de-montmiral','CASTELNAU-DE-MONTMIRAL',NULL,'','France','',0,0,76,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5390,'4179','Castelnau-le-lez','CASTELNAU-LE-LEZ',NULL,'','France','',0,0,76,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5391,'38235','Castelnovo Di Sotto','CASTELNOVO DI SOTTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5392,'11771','Castelnuovo Berardenga','CASTELNUOVO BERARDENGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:32','1900-01-01 00:00:00',1,0,1),(5393,'15894','Castelo Branco','CASTELO BRANCO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5394,'11773','Castelraimondo','CASTELRAIMONDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5395,'11774','Castelrotto','CASTELROTTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5396,'6078','Castelsagrat','CASTELSAGRAT',NULL,'','France','',0,0,76,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5397,'11081','Castelsardo','CASTELSARDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5398,'11775','Casteltermini','CASTELTERMINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5399,'11776','Castelvecchio Pascoli','CASTELVECCHIO PASCOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:33','1900-01-01 00:00:00',1,0,1),(5400,'11777','Castelvetrano','CASTELVETRANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5401,'11778','Castelvetro Di Modena','CASTELVETRO DI MODENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5402,'11779','Castenaso','CASTENASO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5403,'11780','Castenedolo','CASTENEDOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5404,'5174','Castets','CASTETS',NULL,'','France','',0,0,76,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5405,'35485','Castiglion Fiorentin','CASTIGLION FIORENTIN',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5406,'11782','Castiglioncello','CASTIGLIONCELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5407,'11783','Castiglione Del Lago','CASTIGLIONE DEL LAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:34','1900-01-01 00:00:00',1,0,1),(5408,'28682','Castile','CASTILE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5409,'3206','Castilleja De La Cuesta','CASTILLEJA DE LA CUESTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5410,'5904','Castillon-du-gard','CASTILLON-DU-GARD',NULL,'','France','',0,0,76,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5411,'38111','Castillonnes','CASTILLONNES',NULL,'','France','',0,0,76,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5412,'21850','Castine','CASTINE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5413,'35487','Castione Della Preso','CASTIONE DELLA PRESO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:35','1900-01-01 00:00:00',1,0,1),(5414,'34129','Castle Hill','CASTLE HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5415,'25288','Castle Junction','CASTLE JUNCTION',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5416,'18369','Castle Park','CASTLE PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5417,'38933','Castlebaldwin','CASTLEBALDWIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5418,'40915','Castlebar','CASTLEBAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5419,'10903','Castlebar','CASTLEBAR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5420,'7802','Castlebay','CASTLEBAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5421,'38792','Castlebridge','CASTLEBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5422,'10895','Castleconnell','CASTLECONNELL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5423,'41591','Castledermot','CASTLEDERMOT',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:36','1900-01-01 00:00:00',1,0,1),(5424,'9337','Castleford','CASTLEFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5425,'25406','Castlegar','CASTLEGAR',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5426,'10877','Castlegregory','CASTLEGREGORY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5427,'10832','Castleknock','CASTLEKNOCK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5428,'26892','Castlemaine','CASTLEMAINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5429,'10803','Castlemartyr','CASTLEMARTYR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5430,'7803','Castlereagh','CASTLEREAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5431,'7804','Castleton','CASTLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5432,'20839','Castleton','CASTLETON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5433,'28683','Castleton-on-hudson','CASTLETON-ON-HUDSON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5434,'7805','Castletown','CASTLETOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5435,'35389','Castletownbere','CASTLETOWNBERE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5436,'41967','Castrelo','CASTRELO',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5437,'6079','Castres','CASTRES',NULL,'','France','',0,0,76,'2016-10-17 10:45:37','1900-01-01 00:00:00',1,0,1),(5438,'13578','Castries','CASTRIES',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5439,'5905','Castries','CASTRIES',NULL,'','France','',0,0,76,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5440,'3082','Castrillon','CASTRILLON',NULL,'','Spain','Castrillon',0,0,199,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5441,'38007','Castro Marim','CASTRO MARIM',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5442,'18371','Castro Valley','CASTRO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5443,'11788','Castrocaro Terme','CASTROCARO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5444,'27342','Castrop-rauxel','CASTROP-RAUXEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5445,'934','Cat Ba','CAT BA',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5446,'24824','Cat Cay','CAT CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5447,'41557','Catala','CATALA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5448,'9357','Catalan Bay','CATALAN BAY',NULL,'','Gibraltar','',0,0,85,'2016-10-17 10:45:38','1900-01-01 00:00:00',1,0,1),(5449,'18115','Catalina','CATALINA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5450,'26042','Catamarca','CATAMARCA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5451,'13003','Catania','CATANIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5452,'35445','Catania-aci Trezza','CATANIA-ACI TREZZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5453,'15743','Catano','CATANO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5454,'15493','Catarman','CATARMAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5455,'13893','Catavina','CATAVINA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5456,'14115','Catemaco','CATEMACO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5457,'16629','Catez Ob Savi','CATEZ OB SAVI',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5458,'18373','Cathedral City','CATHEDRAL CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5459,'31457','Cathlamet','CATHLAMET',NULL,'','United States','',0,0,231,'2016-10-17 10:45:39','1900-01-01 00:00:00',1,0,1),(5460,'32194','Catia La Mar','CATIA LA MAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5461,'15476','Caticlan','CATICLAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5462,'33610','Catlettsburg','CATLETTSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5463,'15443','Catmon','CATMON',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5464,'21660','Catonsville','CATONSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5465,'32886','Catoosa','CATOOSA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5466,'3746','Catral','CATRAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5467,'9281','Catshill','CATSHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5468,'28684','Catskill','CATSKILL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5469,'11792','Cattolica','CATTOLICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5470,'15472','Cauayan','CAUAYAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5471,'37175','Caucaia','CAUCAIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5472,'43','Caucasia','CAUCASIA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5473,'5523','Caudan','CAUDAN',NULL,'','France','',0,0,76,'2016-10-17 10:45:40','1900-01-01 00:00:00',1,0,1),(5474,'5802','Caudebec-en-caux','CAUDEBEC-EN-CAUX',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5475,'5175','Caudrot','CAUDROT',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5476,'16581','Caue Ilheu Das Rolas','CAUE ILHEU DAS ROLAS',NULL,'','Sao Tome And Principe','',0,0,185,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5477,'26492','Caulfield','CAULFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5478,'5524','Caulnes','CAULNES',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5479,'25969','Causapscal','CAUSAPSCAL',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5480,'6080','Caussade-riviere','CAUSSADE-RIVIERE',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5481,'40530','Causse-et-diège','CAUSSE-ET-DIÈGE',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5482,'5030','Cauterets','CAUTERETS',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5483,'23161','Caux','CAUX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5484,'11793','Cavaglia','CAVAGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5485,'13035','Cavagnolo','CAVAGNOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5486,'6413','Cavaillon','CAVAILLON',NULL,'','France','',0,0,76,'2016-10-17 10:45:41','1900-01-01 00:00:00',1,0,1),(5487,'11794','Cavaion Veronese','CAVAION VERONESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5488,'5111','Cavalaire-sur-mer','CAVALAIRE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5489,'42639','Cavalcante','CAVALCANTE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5490,'11795','Cavalese','CAVALESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5491,'39249','Cavallino','CAVALLINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5492,'40703','Cavallino-treporti','CAVALLINO-TREPORTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5493,'10776','Cavan','CAVAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5494,'23483','Cavancha','CAVANCHA',NULL,'','Chile','',0,0,45,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5495,'38688','Cavareno','CAVARENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5496,'13061','Cavaso Del Tomba','CAVASO DEL TOMBA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:42','1900-01-01 00:00:00',1,0,1),(5497,'40532','Cavedago','CAVEDAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5498,'20484','Cave-in-rock','CAVE-IN-ROCK',NULL,'','United States','',0,0,231,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5499,'10503','Cavelossim','CAVELOSSIM',NULL,'','India','',0,0,101,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5500,'26493','Cavendish','CAVENDISH',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5501,'43581','Cavendish','CAVENDISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5502,'25814','Cavendish','CAVENDISH',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5503,'31309','Cavendish','CAVENDISH',NULL,'','United States','',0,0,231,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5504,'11796','Cavengo Di Brianza','CAVENGO DI BRIANZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5505,'38626','Cavernago','CAVERNAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5506,'42194','Caviahue','CAVIAHUE',NULL,'','Argentina','',0,0,10,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5507,'15519','Cavite','CAVITE',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:43','1900-01-01 00:00:00',1,0,1),(5508,'11176','Cavoli','CAVOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5509,'13050','Cavriglia','CAVRIGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5510,'10053','Cavtat','CAVTAT',NULL,'','Croatia','',0,0,55,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5511,'10224','Cawang','CAWANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5512,'41777','Caxambu','CAXAMBU',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5513,'24960','Caxias Do Sul','CAXIAS DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5514,'34968','Cayambe','CAYAMBE',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5515,'30298','Cayce','CAYCE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5516,'9886','Cayenne','CAYENNE',NULL,'','French Guiana','',0,0,77,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5517,'6286','Cayeux-sur-mer','CAYEUX-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5518,'41971','Caylloma','CAYLLOMA',NULL,'','Peru','',0,0,172,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5519,'40190','Caylus','CAYLUS',NULL,'','France','',0,0,76,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5520,'24254','Cayman Brac','CAYMAN BRAC',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:45:44','1900-01-01 00:00:00',1,0,1),(5521,'35828','Cayman-seven Mile Be','CAYMAN-SEVEN MILE BE',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5522,'899','Cayo','CAYO',NULL,'','Belize','',0,0,22,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5523,'34938','Cayo Coco','CAYO COCO',NULL,'','Cuba','',0,0,56,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5524,'39476','Cayres','CAYRES',NULL,'','France','',0,0,76,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5525,'18374','Cayucos','CAYUCOS',NULL,'','United States','',0,0,231,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5526,'28685','Cayuta','CAYUTA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5527,'18375','Cazadero','CAZADERO',NULL,'','United States','',0,0,231,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5528,'3207','Cazalla De La Sierra','CAZALLA DE LA SIERRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:45','1900-01-01 00:00:00',1,0,1),(5529,'43977','Cazals','CAZALS',NULL,'','France','',0,0,76,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5530,'6081','Cazaubon','CAZAUBON',NULL,'','France','',0,0,76,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5531,'28686','Cazenovia','CAZENOVIA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5532,'3208','Cazorla','CAZORLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5533,'38151','Cazzago Di Pianiga','CAZZAGO DI PIANIGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5534,'24971','Ceara','CEARA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5535,'5302','Ceaux','CEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5536,'6325','Ceaux-en-couhe','CEAUX-EN-COUHE',NULL,'','France','',0,0,76,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5537,'3445','Cebreros','CEBREROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:46','1900-01-01 00:00:00',1,0,1),(5538,'15544','Cebu','CEBU',NULL,'','Philippines','Cebu',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5539,'36549','Cebu(mactan) Airport','CEBU(MACTAN) AIRPORT',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5540,'36546','Cebu-badian','CEBU-BADIAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5541,'36553','Cebu-mactan Island','CEBU-MACTAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5542,'36554','Cebu-san Fernando','CEBU-SAN FERNANDO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5543,'36557','Cebu-sogod','CEBU-SOGOD',NULL,'','Philippines','',0,0,173,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5544,'11797','Cecchignola','CECCHIGNOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5545,'21661','Cecilton','CECILTON',NULL,'','United States','',0,0,231,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5546,'35495','Cecina','CECINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5547,'22018','Cedar','CEDAR',NULL,'','United States','',0,0,231,'2016-10-17 10:45:47','1900-01-01 00:00:00',1,0,1),(5548,'31715','Cedarburg','CEDARBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5549,'34730','Cedaredge','CEDAREDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5550,'43144','Cedars','CEDARS',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5551,'19740','Cedartown','CEDARTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5552,'29288','Cedarville','CEDARVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5553,'26447','Ceduna','CEDUNA',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5554,'38696','Cee','CEE',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5555,'11798','Cefalu','CEFALU',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5556,'35589','Cefalu-castel Di Tus','CEFALU-CASTEL DI TUS',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:50','1900-01-01 00:00:00',1,0,1),(5557,'10099','Cegled','CEGLED',NULL,'','Hungary','',0,0,99,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5558,'3030','Cehegin','CEHEGIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5559,'15744','Ceiba','CEIBA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5560,'40467','Ceillac','CEILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5561,'24306','Celadna','CELADNA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5562,'11799','Celano','CELANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5563,'13933','Celaya','CELAYA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5564,'10887','Celbridge','CELBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5565,'19296','Celebration','CELEBRATION',NULL,'','United States','',0,0,231,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5566,'23162','Celerina','CELERINA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5568,'14127','Celestun','CELESTUN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5569,'23163','Celigny','CELIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5570,'29289','Celina','CELINA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5571,'37747','Celista','CELISTA',NULL,'','Canada','',0,0,39,'2016-10-17 10:45:51','1900-01-01 00:00:00',1,0,1),(5572,'16630','Celje','CELJE',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5573,'37609','Cellarengo','CELLARENGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5574,'40288','Celldomolk','CELLDOMOLK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5575,'27195','Celle','CELLE',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5576,'40333','Celle Di Bulgheria','CELLE DI BULGHERIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5577,'42992','Cellers','CELLERS',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5578,'40436','Cellole','CELLOLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5579,'15966','Celorico Da Beira','CELORICO DA BEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5580,'5767','Cemboing','CEMBOING',NULL,'','France','',0,0,76,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5581,'11178','Cenerente','CENERENTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5582,'3209','Cenes De La Vega','CENES DE LA VEGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5583,'34731','Centennial','CENTENNIAL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:52','1900-01-01 00:00:00',1,0,1),(5584,'42154','Center Region','CENTER REGION',NULL,'','Israel','',0,0,106,'2016-10-17 10:45:53','1900-01-01 00:00:00',1,0,1),(5585,'28687','Centerport','CENTERPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:45:53','1900-01-01 00:00:00',1,0,1),(5586,'29290','Centerville','CENTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:53','1900-01-01 00:00:00',1,0,1),(5587,'11801','Cento','CENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:54','1900-01-01 00:00:00',1,0,1),(5588,'11802','Centocelle','CENTOCELLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5589,'39148','Centola','CENTOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5590,'30299','Central','CENTRAL',NULL,'','United States','',0,0,231,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5591,'1117','Central And North Greece','CENTRAL AND NORTH GREECE',NULL,'','GREECE','',0,0,86,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5592,'122','Central Black Forest','CENTRAL BLACK FOREST',NULL,'','Germany','',0,0,83,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5593,'24287','Central Bohemia','CENTRAL BOHEMIA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5594,'4180','Central Brittany','CENTRAL BRITTANY',NULL,'','France','',0,0,76,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5595,'24770','Central Bulgaria','CENTRAL BULGARIA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5596,'26978','Central Carinthia','CENTRAL CARINTHIA',NULL,'','Austria','',0,0,14,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5597,'2590','Central Catalonia','CENTRAL CATALONIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:55','1900-01-01 00:00:00',1,0,1),(5598,'34130','Central Coast','CENTRAL COAST',NULL,'','Australia','',0,0,13,'2016-10-17 10:45:56','1900-01-01 00:00:00',1,0,1),(5599,'3883','Central Finland','CENTRAL FINLAND',NULL,'','Finland','',0,0,75,'2016-10-17 10:45:56','1900-01-01 00:00:00',1,0,1),(5600,'24162','Central Pacific Coast','CENTRAL PACIFIC COAST',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:45:56','1900-01-01 00:00:00',1,0,1),(5601,'16591','Central Slovakia','CENTRAL SLOVAKIA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5602,'13591','Central Sri Lanka','CENTRAL SRI LANKA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5603,'25919','Central United Arab Emirates','CENTRAL UNITED ARAB EMIRATES',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5604,'20485','Centralia','CENTRALIA',NULL,'','United States','',0,0,231,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5605,'17848','Centre','CENTRE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5606,'1212','Centre Portugal','CENTRE PORTUGAL',NULL,'','PORTUGAL','',0,0,175,'2016-10-17 10:45:57','1900-01-01 00:00:00',1,0,1),(5607,'31062','Centreville','CENTREVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5608,'32555','Centurion','CENTURION',NULL,'','South Africa','',0,0,195,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5609,'32396','Century City','CENTURY CITY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5610,'18376','Century City','CENTURY CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5611,'10152','Cepaka','CEPAKA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5612,'35498','Cerbaia','CERBAIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5613,'41562','Cerbere','CERBERE',NULL,'','France','',0,0,76,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5614,'5906','Cerbère','CERBÈRE',NULL,'','France','',0,0,76,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5615,'37176','Cercola','CERCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5616,'41063','Cerdanyola','CERDANYOLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:58','1900-01-01 00:00:00',1,0,1),(5617,'15901','Cerdeira','CERDEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5618,'18377','Ceres','CERES',NULL,'','United States','',0,0,231,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5619,'38097','Ceres','CERES',NULL,'','South Africa','',0,0,195,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5620,'5907','Ceret','CERET',NULL,'','France','',0,0,76,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5621,'16914','Cerf Island','CERF ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5622,'4685','Cergy','CERGY',NULL,'','France','',0,0,76,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5623,'35497','Ceriale','CERIALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5624,'39057','Ceriana','CERIANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5625,'43978','Cerise','CERISE',NULL,'','France','',0,0,76,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5626,'42193','Cerkezkoy','CERKEZKOY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5627,'16631','Cerklje Na Gorenjskem','CERKLJE NA GORENJSKEM',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5628,'2465','Cerler','CERLER',NULL,'','Spain','',0,0,199,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5629,'42346','Cernay La Ville','CERNAY LA VILLE',NULL,'','France','',0,0,76,'2016-10-17 10:45:59','1900-01-01 00:00:00',1,0,1),(5630,'4686','Cernay-la-ville','CERNAY-LA-VILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5631,'11803','Cernobbio','CERNOBBIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5632,'37994','Cernusco Sul Naviglio','CERNUSCO SUL NAVIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5633,'13947','Cerocahui','CEROCAHUI',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5634,'39201','Céron','CÉRON',NULL,'','France','',0,0,76,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5635,'25199','Cerqueira Cesar','CERQUEIRA CESAR',NULL,'','Brazil','',0,0,30,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5636,'17524','Cerra Colorado','CERRA COLORADO',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5637,'11804','Cerreto Di Spoleto','CERRETO DI SPOLETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5638,'28508','Cerrillos','CERRILLOS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5639,'18378','Cerritos','CERRITOS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5640,'15357','Cerro Azul','CERRO AZUL',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:00','1900-01-01 00:00:00',1,0,1),(5641,'37072','Cerro Colorado','CERRO COLORADO',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5642,'11805','Cerro Maggiore','CERRO MAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5643,'11806','Certaldo','CERTALDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5644,'16257','Certanovo','CERTANOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5645,'11807','Certosa Di Pavia','CERTOSA DI PAVIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5646,'15797','Cerva','CERVA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5647,'26584','Cervantes','CERVANTES',NULL,'','Australia','Cervantes',0,0,13,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5648,'9986','Cervar Porat','CERVAR PORAT',NULL,'','Croatia','',0,0,55,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5649,'3539','Cervera','CERVERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5650,'38309','Cerveteri','CERVETERI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5651,'12716','Cervia','CERVIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5652,'11808','Cesana Torinese','CESANA TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5653,'11179','Cesano Boscone','CESANO BOSCONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:01','1900-01-01 00:00:00',1,0,1),(5654,'42200','Cesario Lange','CESARIO LANGE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5655,'12959','Cesena','CESENA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5656,'12717','Cesenatico','CESENATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5657,'13666','Cesis','CESIS',NULL,'','Latvia','',0,0,119,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5658,'24341','Ceske Budejovice','CESKE BUDEJOVICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5659,'24336','Cesky Krumlov','CESKY KRUMLOV',NULL,'','Czech Republic','Cesky Krumlov',0,0,58,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5660,'17253','Cesme','CESME',NULL,'','Turkey','',0,0,222,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5661,'34131','Cessnock','CESSNOCK',NULL,'','Australia','Cessnock',0,0,13,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5662,'4182','Cesson','CESSON',NULL,'','France','',0,0,76,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5663,'4938','Cesson-sevigne','CESSON-SEVIGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5664,'4926','Cestas','CESTAS',NULL,'','France','',0,0,76,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5665,'39924','Cestlice','CESTLICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5666,'3702','Cestona','CESTONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5667,'11810','Cetona','CETONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:02','1900-01-01 00:00:00',1,0,1),(5668,'11811','Cetraro','CETRARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5669,'2871','Ceuta','CEUTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5670,'4183','Cevannes National Park','CEVANNES NATIONAL PARK',NULL,'','France','',0,0,76,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5671,'36734','Cha Am','CHA AM',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5673,'44254','Chaaya Island','CHAAYA ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5674,'5444','Chablis','CHABLIS',NULL,'','France','',0,0,76,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5675,'5303','Chabreloche','CHABRELOCHE',NULL,'','France','',0,0,76,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5676,'6414','Chabrieres','CHABRIERES',NULL,'','France','',0,0,76,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5677,'32201','Chacao','CHACAO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5678,'43837','Chachagua','CHACHAGUA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5679,'42408','Chachoengsao','CHACHOENGSAO',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5680,'26123','Chacras De Coria','CHACRAS DE CORIA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:46:03','1900-01-01 00:00:00',1,0,1),(5681,'6968','Chadderton','CHADDERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5682,'7806','Chaddesley Corbett','CHADDESLEY CORBETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5683,'29863','Chadds Ford','CHADDS FORD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5684,'7807','Chadlington','CHADLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5685,'28110','Chadron','CHADRON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5686,'28690','Chaffee','CHAFFEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5687,'7808','Chagford','CHAGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5688,'3844','Chagni','CHAGNI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5689,'5445','Chagny','CHAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5690,'9918','Chai Wan','CHAI WAN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:46:04','1900-01-01 00:00:00',1,0,1),(5691,'39931','Chail','CHAIL',NULL,'','India','Chail',1,0,101,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5692,'5840','Chailly-en-bière','CHAILLY-EN-BIÈRE',NULL,'','France','',0,0,76,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5693,'38272','Chailly-sur-armancon','CHAILLY-SUR-ARMANCON',NULL,'','France','',0,0,76,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5694,'5446','Chaintre','CHAINTRE',NULL,'','France','',0,0,76,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5695,'10395','Chak Badrinath','CHAK BADRINATH',NULL,'','India','',0,0,101,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5696,'10504','Chakdaha','CHAKDAHA',NULL,'','India','',0,0,101,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5697,'14031','Chalco De Diaz Covarrubias','CHALCO DE DIAZ COVARRUBIAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5698,'35774','Chale Paradise Islan','CHALE PARADISE ISLAN',NULL,'','Kenya','',0,0,113,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5699,'5768','Chalezeule','CHALEZEULE',NULL,'','France','',0,0,76,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5700,'7809','Chalford','CHALFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5701,'42515','Chalkida - Evia','CHALKIDA - EVIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5702,'9444','Chalkidiki','CHALKIDIKI',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5703,'38967','Chalkidona','CHALKIDONA',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5704,'9785','Chalkis','CHALKIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5705,'17580','Chalkyitsik','CHALKYITSIK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:05','1900-01-01 00:00:00',1,0,1),(5706,'4986','Challain-la-potherie','CHALLAIN-LA-POTHERIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5707,'6222','Challans','CHALLANS',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5708,'6588','Challes-les-eaux','CHALLES-LES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5709,'20342','Challis','CHALLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5710,'21181','Chalmette','CHALMETTE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5711,'42734','Chalons-en-champagne','CHALONS-EN-CHAMPAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5712,'4995','Châlons-en-champagne','CHÂLONS-EN-CHAMPAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5713,'5447','Chalon-sur-saone','CHALON-SUR-SAONE',NULL,'','France','',0,0,76,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5714,'37515','Chalsa','CHALSA',NULL,'','India','Chalsa',12,0,101,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5715,'40018','Cham','CHAM',NULL,'','Germany','',0,0,83,'2016-10-17 10:46:06','1900-01-01 00:00:00',1,0,1),(5716,'28509','Chama','CHAMA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5717,'5304','Chamalieres','CHAMALIERES',NULL,'','France','',0,0,76,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5718,'40735','Chamant','CHAMANT',NULL,'','France','',0,0,76,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5719,'2592','Chamartin - Plaza Castilla','CHAMARTIN - PLAZA CASTILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5720,'10505','Chamba','CHAMBA',NULL,'','India','Chamba',1,0,101,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5721,'2593','Chamberi','CHAMBERI',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5722,'32998','Chamberlain','CHAMBERLAIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5723,'18117','Chambers','CHAMBERS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5724,'29864','Chambersburg','CHAMBERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:46:07','1900-01-01 00:00:00',1,0,1),(5725,'6589','Chambery','CHAMBERY',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5726,'1620','Chambery-le-vieux','CHAMBERY-LE-VIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5727,'23164','Chambesy','CHAMBESY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5728,'19742','Chamblee','CHAMBLEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5729,'5448','Chambolle-musigny','CHAMBOLLE-MUSIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5730,'5305','Chamboulive','CHAMBOULIVE',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5731,'5633','Chambray-les-tours','CHAMBRAY-LES-TOURS',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5732,'6223','Chambretaud','CHAMBRETAUD',NULL,'','France','',0,0,76,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5733,'848','Chame','CHAME',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5734,'40604','Chamois','CHAMOIS',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:08','1900-01-01 00:00:00',1,0,1),(5735,'40975','Chamonix','CHAMONIX',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5736,'5081','Chamonix-mont-blanc','CHAMONIX-MONT-BLANC',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5737,'6287','Chamouille','CHAMOUILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5738,'5176','Champagnac-de-belair','CHAMPAGNAC-DE-BELAIR',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5739,'6590','Champagne-au-mont-d\'or','CHAMPAGNE-AU-MONT-D\'OR',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5740,'5769','Champagnole','CHAMPAGNOLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5741,'5449','Champagny','CHAMPAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5742,'6816','Champagny-en-vanoise','CHAMPAGNY-EN-VANOISE',NULL,'','France','',0,0,76,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5743,'20486','Champaign','CHAMPAIGN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:09','1900-01-01 00:00:00',1,0,1),(5744,'23165','Champery','CHAMPERY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5745,'23445','Champex','CHAMPEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5746,'6224','Champigne','CHAMPIGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5747,'4184','Champigny','CHAMPIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5748,'4687','Champigny-sur-marne','CHAMPIGNY-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5749,'5718','Champillon','CHAMPILLON',NULL,'','France','',0,0,76,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5750,'29865','Champion','CHAMPION',NULL,'','United States','',0,0,231,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5751,'19297','Champions Gate','CHAMPIONS GATE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:10','1900-01-01 00:00:00',1,0,1),(5752,'22340','Champlin','CHAMPLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5753,'4185','Champlitte','CHAMPLITTE',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5754,'6326','Champniers','CHAMPNIERS',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5755,'11812','Champoluc','CHAMPOLUC',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5756,'35992','Champoussin','CHAMPOUSSIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5757,'5841','Champs-sur-marne','CHAMPS-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5758,'37463','Champs-sur-tarentaine-marchal','CHAMPS-SUR-TARENTAINE-MARCHAL',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5759,'38987','Champtoceaux','CHAMPTOCEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5760,'10396','Chamrail','CHAMRAIL',NULL,'','India','',0,0,101,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5761,'4951','Chamrousse','CHAMROUSSE',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5762,'6591','Chanas','CHANAS',NULL,'','France','',0,0,76,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5763,'34392','Chance Harbour','CHANCE HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:11','1900-01-01 00:00:00',1,0,1),(5764,'5177','Chancelade','CHANCELADE',NULL,'','France','',0,0,76,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5765,'10628','Chandigarh','CHANDIGARH',NULL,'','India','Best Tour  Packages for Chandigarh | Chandigarh Tr',23,0,101,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5766,'10397','Chanditala','CHANDITALA',NULL,'','India','',0,0,101,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5767,'18118','Chandler','CHANDLER',NULL,'','United States','',0,0,231,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5768,'25970','Chandler','CHANDLER',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5769,'40914','Chandlers Cross','CHANDLERS CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5770,'36820','Chang Hua','CHANG HUA',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5771,'23762','Changchun','CHANGCHUN',NULL,'','China','',0,0,46,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5772,'23812','Changde','CHANGDE',NULL,'','China','',0,0,46,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5773,'23735','Changdian','CHANGDIAN',NULL,'','China','',0,0,46,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5774,'43979','Change','CHANGE',NULL,'','France','',0,0,76,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5775,'13525','Changhowon','CHANGHOWON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5776,'17377','Changhua','CHANGHUA',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:12','1900-01-01 00:00:00',1,0,1),(5777,'16530','Changi Airport (Sin)','CHANGI AIRPORT (SIN)',NULL,'','Singapore','',0,0,190,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5778,'5842','Changis-sur-marne','CHANGIS-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5779,'16975','Changlang Beach','CHANGLANG BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5780,'39256','Changping','CHANGPING',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5781,'23952','Changsha','CHANGSHA',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5782,'23736','Changshu','CHANGSHU',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5783,'35795','Changwon','CHANGWON',NULL,'','South Korea','',0,0,197,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5784,'13484','Changwon','CHANGWON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5785,'23886','Changxindian','CHANGXINDIAN',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5786,'23914','Changzhi','CHANGZHI',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5787,'23737','Changzhou','CHANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5788,'32278','Chanh Hung','CHANH HUNG',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5789,'22341','Chanhassen','CHANHASSEN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5790,'1535','Chania','CHANIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:13','1900-01-01 00:00:00',1,0,1),(5791,'43064','Chaniotis','CHANIOTIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5792,'1231','Channel Islands','CHANNEL ISLANDS',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5793,'41726','Channel Tunnel','CHANNEL TUNNEL',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5794,'25649','Channel-port Aux Basques','CHANNEL-PORT AUX BASQUES',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5795,'30523','Channelview','CHANNELVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5796,'41554','Chanteloup En Brie','CHANTELOUP EN BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5797,'4186','Chanteloup-en-brie','CHANTELOUP-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5798,'5306','Chantemerle','CHANTEMERLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5799,'6592','Chantemerle-les-grignan','CHANTEMERLE-LES-GRIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5800,'5525','Chantepie','CHANTEPIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:14','1900-01-01 00:00:00',1,0,1),(5801,'41709','Chanthaburi','CHANTHABURI',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5802,'31064','Chantilly','CHANTILLY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5803,'6288','Chantilly','CHANTILLY',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5804,'6225','Chantonnay','CHANTONNAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5805,'21032','Chanute','CHANUTE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5806,'6226','Chanzeaux','CHANZEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5807,'23567','Chaohu','CHAOHU',NULL,'','China','',0,0,46,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5808,'5719','Chaource','CHAOURCE',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5809,'6289','Chaourse','CHAOURSE',NULL,'','France','',0,0,76,'2016-10-17 10:46:15','1900-01-01 00:00:00',1,0,1),(5810,'23867','Chaoyang','CHAOYANG',NULL,'','China','',0,0,46,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5811,'23953','Chaozhou','CHAOZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5812,'13894','Chapala','CHAPALA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5813,'39756','Chapareillan','CHAPAREILLAN',NULL,'','France','',0,0,76,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5814,'5908','Chapeauroux','CHAPEAUROUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5815,'25177','Chapeco','CHAPECO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5816,'1531','Chapel Of Garioch','CHAPEL OF GARIOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5817,'10833','Chapelizod','CHAPELIZOD',NULL,'','Ireland','',0,0,105,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5818,'39084','Chapelle-des-bois','CHAPELLE-DES-BOIS',NULL,'','France','',0,0,76,'2016-10-17 10:46:16','1900-01-01 00:00:00',1,0,1),(5819,'7810','Chapeltown','CHAPELTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5820,'39764','Chapin','CHAPIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5821,'34467','Chapleau','CHAPLEAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5822,'38484','Chaplin','CHAPLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5823,'31963','Chapmanville','CHAPMANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5824,'6593','Chaponnay','CHAPONNAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5825,'6594','Chaponost','CHAPONOST',NULL,'','France','',0,0,76,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5826,'28691','Chappaqua','CHAPPAQUA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5827,'6595','Charbonnieres-les-bains','CHARBONNIERES-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:46:17','1900-01-01 00:00:00',1,0,1),(5828,'7811','Chard','CHARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5829,'23166','Chardonne','CHARDONNE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5830,'7812','Chardstock','CHARDSTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5831,'17106','Chardzhou','CHARDZHOU',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5832,'4187','Charente','CHARENTE',NULL,'','France','',0,0,76,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5833,'4188','Charente-maritime','CHARENTE-MARITIME',NULL,'','France','',0,0,76,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5834,'4688','Charenton-le-pont','CHARENTON-LE-PONT',NULL,'','France','',0,0,76,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5835,'39161','Charette-varennes','CHARETTE-VARENNES',NULL,'','France','',0,0,76,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5836,'40011','Charing','CHARING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5837,'6969','Charingworth','CHARINGWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5838,'20173','Chariton','CHARITON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5839,'17484','Charkiv','CHARKIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5840,'7813','Charlbury','CHARLBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:18','1900-01-01 00:00:00',1,0,1),(5841,'7814','Charlecote','CHARLECOTE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5842,'25971','Charlemagne','CHARLEMAGNE',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5843,'21334','Charlemont','CHARLEMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5844,'24660','Charleroi','CHARLEROI',NULL,'','Belgium','',0,0,21,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5845,'25972','Charlesbourg','CHARLESBOURG',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5846,'20488','Charleston','CHARLESTON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:19','1900-01-01 00:00:00',1,0,1),(5847,'32171','Charlestown','CHARLESTOWN',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5848,'40395','Charlestown','CHARLESTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5849,'20842','Charlestown','CHARLESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5850,'34132','Charlestown','CHARLESTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5851,'35388','Charlestown','CHARLESTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5852,'13480','Charlestown','CHARLESTOWN',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:46:20','1900-01-01 00:00:00',1,0,1),(5853,'10711','Charleville','CHARLEVILLE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5854,'26396','Charleville','CHARLEVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5855,'5720','Charleville-mezieres','CHARLEVILLE-MEZIERES',NULL,'','France','',0,0,76,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5856,'35976','Charlevoix','CHARLEVOIX',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5857,'22021','Charlevoix','CHARLEVOIX',NULL,'','United States','',0,0,231,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5858,'34393','Charlo','CHARLO',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5859,'22022','Charlotte','CHARLOTTE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5860,'32232','Charlotte Amalie','CHARLOTTE AMALIE',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:46:21','1900-01-01 00:00:00',1,0,1),(5861,'16785','Charlottenberg','CHARLOTTENBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5862,'2207','Charlottenlund','CHARLOTTENLUND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5863,'31066','Charlottesville','CHARLOTTESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5864,'25815','Charlottetown','CHARLOTTETOWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5865,'17136','Charlotteville','CHARLOTTEVILLE',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5866,'26397','Charlton','CHARLTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5867,'29292','Charm','CHARM',NULL,'','United States','',0,0,231,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5868,'38738','Charmes','CHARMES',NULL,'','France','',0,0,76,'2016-10-17 10:46:22','1900-01-01 00:00:00',1,0,1),(5869,'23167','Charmey','CHARMEY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5870,'4190','Charnay Les Macon','CHARNAY LES MACON',NULL,'','France','',0,0,76,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5871,'6970','Charnock Richard','CHARNOCK RICHARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5872,'25973','Charny','CHARNY',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5873,'5450','Charolles','CHAROLLES',NULL,'','France','',0,0,76,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5874,'6971','Charter Alley','CHARTER ALLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5875,'18379','Charter Oak','CHARTER OAK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5876,'42715','Charters','CHARTERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5877,'5634','Chartres','CHARTRES',NULL,'','France','',0,0,76,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5878,'5526','Chartres-de-bretagne','CHARTRES-DE-BRETAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:23','1900-01-01 00:00:00',1,0,1),(5879,'32556','Chartwell','CHARTWELL',NULL,'','South Africa','',0,0,195,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5880,'7815','Charwelton','CHARWELTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5881,'25408','Chase','CHASE',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5882,'22342','Chaska','CHASKA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5883,'6596','Chassagny','CHASSAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5884,'6597','Chasselay','CHASSELAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5885,'1592','Chasseneuil','CHASSENEUIL',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5886,'5123','Chasseneuil-du-poitou','CHASSENEUIL-DU-POITOU',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5887,'4952','Chasse-sur-rhone','CHASSE-SUR-RHONE',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5888,'5049','Chassieu','CHASSIEU',NULL,'','France','',0,0,76,'2016-10-17 10:46:24','1900-01-01 00:00:00',1,0,1),(5889,'43902','Chatan','CHATAN',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5891,'6415','Chateau Gombert','CHATEAU GOMBERT',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5892,'43980','Chateau-arnoux-saint-auban','CHATEAU-ARNOUX-SAINT-AUBAN',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5893,'4191','Château-arnoux-saint-auban','CHÂTEAU-ARNOUX-SAINT-AUBAN',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5894,'6327','Chateaubernard','CHATEAUBERNARD',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5895,'5527','Chateaubourg','CHATEAUBOURG',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5896,'6227','Chateaubriant','CHATEAUBRIANT',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5897,'38782','Chateau-chinon','CHATEAU-CHINON',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5898,'5451','Chateau-d\'oex','CHATEAU-D\'OEX',NULL,'','France','',0,0,76,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5899,'23168','Chateau-d\'oex','CHATEAU-D\'OEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:25','1900-01-01 00:00:00',1,0,1),(5900,'6228','Chateau-d\'olonne','CHATEAU-D\'OLONNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5901,'39042','Chateaugiron','CHATEAUGIRON',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5902,'4192','Château-gontier','CHÂTEAU-GONTIER',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5903,'25974','Chateauguay','CHATEAUGUAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5904,'4193','Château-la-vallière','CHÂTEAU-LA-VALLIÈRE',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5905,'5307','Chateauneuf','CHATEAUNEUF',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5906,'41553','Chateauneuf-de-grasse','CHATEAUNEUF-DE-GRASSE',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5907,'38518','Chateauneuf-du-faou','CHATEAUNEUF-DU-FAOU',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5908,'43981','Chateauneuf-du-rhone','CHATEAUNEUF-DU-RHONE',NULL,'','France','',0,0,76,'2016-10-17 10:46:26','1900-01-01 00:00:00',1,0,1),(5909,'4195','Châteauneuf-du-rhône','CHÂTEAUNEUF-DU-RHÔNE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5910,'6416','Chateauneuf-le-rouge','CHATEAUNEUF-LE-ROUGE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5911,'4196','Chateauneuf-sur-isere','CHATEAUNEUF-SUR-ISERE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5912,'25975','Chateau-richer','CHATEAU-RICHER',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5913,'4943','Chateauroux','CHATEAUROUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5914,'6290','Chateau-thierry','CHATEAU-THIERRY',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5915,'4197','Châtel','CHÂTEL',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5916,'43096','Chatelaillon Plage','CHATELAILLON PLAGE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5917,'6328','Chatelaillon-plage','CHATELAILLON-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5918,'4198','Châtelaudren','CHÂTELAUDREN',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5919,'39186','Chatel-censoir','CHATEL-CENSOIR',NULL,'','France','',0,0,76,'2016-10-17 10:46:27','1900-01-01 00:00:00',1,0,1),(5920,'5308','Chatelguyon','CHATELGUYON',NULL,'','France','',0,0,76,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5921,'1613','Chatel-guyon','CHATEL-GUYON',NULL,'','France','',0,0,76,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5922,'23169','Chatel-saint-denis','CHATEL-SAINT-DENIS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5923,'4689','Chatenay-malabry','CHATENAY-MALABRY',NULL,'','France','',0,0,76,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5924,'22343','Chatfield','CHATFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5925,'28692','Chatham','CHATHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5926,'7816','Chatham','CHATHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:28','1900-01-01 00:00:00',1,0,1),(5927,'6972','Chathill','CHATHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5928,'11813','Chatillon','CHATILLON',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5929,'5635','Chatillon','CHATILLON',NULL,'','France','',0,0,76,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5930,'4199','Châtillon-en-michaille','CHÂTILLON-EN-MICHAILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5931,'4690','Chatou','CHATOU',NULL,'','France','',0,0,76,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5932,'34133','Chatswood','CHATSWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5933,'18380','Chatsworth','CHATSWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5934,'34470','Chatsworth','CHATSWORTH',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:29','1900-01-01 00:00:00',1,0,1),(5935,'19298','Chattahoochee','CHATTAHOOCHEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5936,'33098','Chattanooga','CHATTANOOGA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5937,'6598','Chatte','CHATTE',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5938,'7817','Chatton','CHATTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5939,'43601','Chau Doc','CHAU DOC',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5940,'37215','Chaudes-aigues','CHAUDES-AIGUES',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5941,'24670','Chaudfontaine','CHAUDFONTAINE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5942,'5452','Chaulgnes','CHAULGNES',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5943,'6291','Chaulnes','CHAULNES',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5944,'38251','Chaumes-en-brie','CHAUMES-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:46:30','1900-01-01 00:00:00',1,0,1),(5945,'5178','Chaumont','CHAUMONT',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5946,'4691','Chaumontel','CHAUMONTEL',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5947,'6330','Chauray','CHAURAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5948,'15034','Chaurjhari','CHAURJHARI',NULL,'','Nepal','',0,0,153,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5949,'5770','Chaussin','CHAUSSIN',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5950,'28693','Chautauqua','CHAUTAUQUA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5951,'5771','Chaux-des-crotenay','CHAUX-DES-CROTENAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5952,'6229','Chavagnes-les-redoux','CHAVAGNES-LES-REDOUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5953,'23005','Chavannes-de-bogis','CHAVANNES-DE-BOGIS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5954,'5636','Chaveignes','CHAVEIGNES',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5955,'6023','Chavelot','CHAVELOT',NULL,'','France','',0,0,76,'2016-10-17 10:46:31','1900-01-01 00:00:00',1,0,1),(5956,'39044','Chavenay','CHAVENAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5957,'16073','Chaves','CHAVES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5958,'4692','Chaville','CHAVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5959,'41066','Chaweng','CHAWENG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5960,'6599','Chazay-d\'azergues','CHAZAY-D\'AZERGUES',NULL,'','France','',0,0,76,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5961,'7818','Cheadle','CHEADLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5962,'24344','Cheb','CHEB',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5963,'21851','Chebeague Island','CHEBEAGUE ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5964,'16318','Cheboksary','CHEBOKSARY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5965,'22023','Cheboygan','CHEBOYGAN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5966,'44026','Checheng','CHECHENG',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5967,'32888','Checotah','CHECOTAH',NULL,'','United States','',0,0,231,'2016-10-17 10:46:32','1900-01-01 00:00:00',1,0,1),(5968,'7819','Cheddar','CHEDDAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5969,'28694','Cheektowaga','CHEEKTOWAGA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5970,'42221','Chefchaouen','CHEFCHAOUEN',NULL,'','Morocco','',0,0,148,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5971,'38772','Chefchaouene','CHEFCHAOUENE',NULL,'','Morocco','',0,0,148,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5972,'17581','Chefornak','CHEFORNAK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5973,'16215','Cheia','CHEIA',NULL,'','Romania','',0,0,179,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5974,'31462','Chelan','CHELAN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5975,'5843','Chelles','CHELLES',NULL,'','France','',0,0,76,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5976,'15612','Chelm','CHELM',NULL,'','Poland','',0,0,174,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5977,'44186','Chelmno','CHELMNO',NULL,'','Poland','',0,0,174,'2016-10-17 10:46:33','1900-01-01 00:00:00',1,0,1),(5978,'21337','Chelmsford','CHELMSFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5979,'7820','Chelmsford','CHELMSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5980,'6973','Chelsea','CHELSEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5981,'25976','Chelsea','CHELSEA',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5982,'28695','Chelsea','CHELSEA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:34','1900-01-01 00:00:00',1,0,1),(5983,'7821','Cheltenham','CHELTENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5984,'1222','Cheltenham','CHELTENHAM',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5985,'29866','Cheltenham','CHELTENHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5986,'16313','Chelyabinsk','CHELYABINSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5987,'25409','Chemainus','CHEMAINUS',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5988,'6230','Chemille','CHEMILLE',NULL,'','France','',0,0,76,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5989,'14262','Chemin Grenier','CHEMIN GRENIER',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5990,'1873','Chemnitz','CHEMNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5991,'29637','Chemult','CHEMULT',NULL,'','United States','',0,0,231,'2016-10-17 10:46:35','1900-01-01 00:00:00',1,0,1),(5992,'38215','Chenac-saint-seurin-duzet','CHENAC-SAINT-SEURIN-DUZET',NULL,'','France','',0,0,76,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5993,'23006','Chêne-bourg','CHÊNE-BOURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5994,'36242','Chenehutte','CHENEHUTTE',NULL,'','France','',0,0,76,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5995,'4200','Chênehutte-trèves-cunault','CHÊNEHUTTE-TRÈVES-CUNAULT',NULL,'','France','',0,0,76,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5996,'31463','Cheney','CHENEY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5997,'23557','Chengde','CHENGDE',NULL,'','China','',0,0,46,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5998,'23990','Chengdu','CHENGDU',NULL,'','China','',0,0,46,'2016-10-17 10:46:36','1900-01-01 00:00:00',1,0,1),(5999,'7822','Chenies','CHENIES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6000,'10671','Chennai','CHENNAI',NULL,'','India','Chennai Holiday Packages | Chennai Trip Package | ',18,0,101,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6001,'20489','Chenoa','CHENOA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6002,'5637','Chenonceaux','CHENONCEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6003,'5453','Chenove','CHENOVE',NULL,'','France','',0,0,76,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6004,'23813','Chenzhou','CHENZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6005,'35798','Cheong Ju City','CHEONG JU CITY',NULL,'','South Korea','',0,0,197,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6006,'13485','Cheongju','CHEONGJU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6007,'42170','Chepelare','CHEPELARE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6008,'7823','Chepstow','CHEPSTOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6009,'40843','Cherai','CHERAI',NULL,'','India','',0,0,101,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6010,'14339','Cheras','CHERAS',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6011,'11814','Cherasco','CHERASCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:37','1900-01-01 00:00:00',1,0,1),(6012,'14296','Cherating','CHERATING',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6013,'30302','Cheraw','CHERAW',NULL,'','United States','',0,0,231,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6014,'4990','Cherbourg','CHERBOURG',NULL,'','France','',0,0,76,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6015,'16352','Cheremushki','CHEREMUSHKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6016,'16471','Cherepovets','CHEREPOVETS',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6017,'7824','Cheriton Bishop','CHERITON BISHOP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6018,'17485','Cherkassy','CHERKASSY',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6019,'42073','Cherkasy','CHERKASY',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6020,'26681','Chermside','CHERMSIDE',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6021,'23007','Chernex','CHERNEX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6022,'17486','Chernovtsy','CHERNOVTSY',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6023,'33811','Cherokee','CHEROKEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:38','1900-01-01 00:00:00',1,0,1),(6024,'24882','Cherokee Sound','CHEROKEE SOUND',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:46:39','1900-01-01 00:00:00',1,0,1),(6025,'34734','Cherry Creek - Glendale','CHERRY CREEK - GLENDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:39','1900-01-01 00:00:00',1,0,1),(6026,'7825','Cherry Hinton','CHERRY HINTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:39','1900-01-01 00:00:00',1,0,1),(6027,'21852','Cherryfield','CHERRYFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6028,'9445','Chersonissos','CHERSONISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6029,'7826','Chertsey','CHERTSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6030,'43738','Cheruthuruthy','CHERUTHURUTHY',NULL,'','India','',0,0,101,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6031,'22025','Chesaning','CHESANING',NULL,'','United States','',0,0,231,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6032,'31068','Chesapeake','CHESAPEAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:40','1900-01-01 00:00:00',1,0,1),(6033,'37537','Cheseaux-sur-lausanne','CHESEAUX-SUR-LAUSANNE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6034,'7827','Chesham','CHESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6035,'6975','Cheshire','CHESHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6036,'19063','Cheshire','CHESHIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6037,'7828','Cheshunt','CHESHUNT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6038,'23170','Chesieres','CHESIERES',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6039,'7829','Chessington','CHESSINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6040,'5844','Chessy','CHESSY',NULL,'','France','',0,0,76,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6041,'43209','Cheste','CHESTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6042,'7830','Chester','CHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:41','1900-01-01 00:00:00',1,0,1),(6043,'7831','Chesterfield','CHESTERFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6044,'27609','Chesterfield','CHESTERFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6045,'24867','Chesters','CHESTERS',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6046,'20843','Chesterton','CHESTERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6047,'28699','Chestertown','CHESTERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6048,'29293','Chesterville','CHESTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:42','1900-01-01 00:00:00',1,0,1),(6049,'21666','Chestnut Hill','CHESTNUT HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6050,'40191','Chesuncook','CHESUNCOOK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6051,'21667','Cheswolde','CHESWOLDE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6052,'31716','Chetek','CHETEK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6053,'25703','Cheticamp','CHETICAMP',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6054,'14074','Chetumal','CHETUMAL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6055,'25410','Chetwynd','CHETWYND',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6056,'9919','Cheung Chau','CHEUNG CHAU',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6057,'17582','Chevak','CHEVAK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:43','1900-01-01 00:00:00',1,0,1),(6058,'21668','Cheverly','CHEVERLY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6059,'5638','Cheverny','CHEVERNY',NULL,'','France','',0,0,76,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6060,'4693','Chevilly-larue','CHEVILLY-LARUE',NULL,'','France','',0,0,76,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6061,'29294','Cheviot','CHEVIOT',NULL,'','United States','',0,0,231,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6062,'39247','Chevreuse','CHEVREUSE',NULL,'','France','',0,0,76,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6063,'6292','Chevrieres','CHEVRIERES',NULL,'','France','',0,0,76,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6064,'21669','Chevy Chase','CHEVY CHASE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6065,'31464','Chewelah','CHEWELAH',NULL,'','United States','',0,0,231,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6066,'23171','Chexbres','CHEXBRES',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:44','1900-01-01 00:00:00',1,0,1),(6067,'32080','Cheyenne','CHEYENNE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6068,'23172','Chezard-saint-martin','CHEZARD-SAINT-MARTIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6069,'10399','Chharabra','CHHARABRA',NULL,'','India','',0,0,101,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6070,'10506','Chhatarpur','CHHATARPUR',NULL,'','India','Chhatarpur',15,0,101,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6071,'10400','Chhatrapati Shivaji International Airport (Bom)','CHHATRAPATI SHIVAJI INTERNATIONAL AIRPORT (BOM)',NULL,'','India','',0,0,101,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6072,'41972','Chia','CHIA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6073,'11815','Chianciano Terme','CHIANCIANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6074,'17048','Chiang Dao','CHIANG DAO',NULL,'','Thailand','',0,0,215,'2016-10-17 10:46:45','1900-01-01 00:00:00',1,0,1),(6075,'11816','Chianni','CHIANNI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6076,'36818','Chiao-hsi','CHIAO-HSI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6077,'13934','Chiapa De Corzo','CHIAPA DE CORZO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6078,'1230','Chiapas','CHIAPAS',NULL,'','MEXICO','',0,0,141,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6079,'11817','Chiaramonte Gulfi','CHIARAMONTE GULFI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6080,'23173','Chiasso','CHIASSO',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6081,'11818','Chiavari','CHIAVARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6082,'38639','Chiavenna Landi','CHIAVENNA LANDI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:46','1900-01-01 00:00:00',1,0,1),(6083,'39128','Chiaverano','CHIAVERANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6084,'17379','Chiayi','CHIAYI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6085,'13124','Chiba','CHIBA',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6086,'25977','Chibougamau','CHIBOUGAMAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6087,'20491','Chicago','CHICAGO',NULL,'','United States','',0,0,231,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6088,'13796','Chichen Itza','CHICHEN ITZA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6089,'9282','Chichester','CHICHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6090,'35309','Chichicastenango','CHICHICASTENANGO',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6091,'41118','Chichiriviche','CHICHIRIVICHE',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6092,'19744','Chickamauga','CHICKAMAUGA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:47','1900-01-01 00:00:00',1,0,1),(6093,'17849','Chickasaw','CHICKASAW',NULL,'','United States','',0,0,231,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6094,'32890','Chickasha','CHICKASHA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6095,'17583','Chicken','CHICKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6096,'1731','Chiclana','CHICLANA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6097,'15420','Chiclayo','CHICLAYO',NULL,'','Peru','',0,0,172,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6098,'39139','Chicoana','CHICOANA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:46:48','1900-01-01 00:00:00',1,0,1),(6099,'14032','Chicoloapan De Juarez','CHICOLOAPAN DE JUAREZ',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6100,'21341','Chicopee','CHICOPEE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6101,'25978','Chicoutimi','CHICOUTIMI',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6102,'37518','Chiddingfold','CHIDDINGFOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6103,'19299','Chiefland','CHIEFLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6104,'124','Chiemgau - Chiemsee (Area)','CHIEMGAU - CHIEMSEE (AREA)',NULL,'','Germany','',0,0,83,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6105,'11819','Chieri','CHIERI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6106,'11820','Chiesa In Valmalenco','CHIESA IN VALMALENCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6107,'11821','Chieti','CHIETI',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6108,'37465','Chieveley','CHIEVELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6109,'23875','Chifeng','CHIFENG',NULL,'','China','',0,0,46,'2016-10-17 10:46:49','1900-01-01 00:00:00',1,0,1),(6110,'17584','Chignik Lagoon','CHIGNIK LAGOON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6111,'24089','Chigorodo','CHIGORODO',NULL,'','Colombia','',0,0,49,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6112,'13776','Chihuahua','CHIHUAHUA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6113,'10401','Chikkamagaluru','CHIKKAMAGALURU',NULL,'','India','',0,0,101,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6114,'15295','Chilas','CHILAS',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6115,'3747','Chilches','CHILCHES',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6116,'26682','Childers','CHILDERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6117,'17850','Childersburg','CHILDERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6118,'30524','Childress','CHILDRESS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6119,'31072','Chilhowie','CHILHOWIE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6120,'41113','Chiliwack','CHILIWACK',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6121,'26683','Chillagoe','CHILLAGOE',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6122,'36012','Chillan','CHILLAN',NULL,'','Chile','',0,0,45,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6123,'3402','Chillaron De Cuenca','CHILLARON DE CUENCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:50','1900-01-01 00:00:00',1,0,1),(6124,'7834','Chillaton','CHILLATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6125,'36005','Chillian','CHILLIAN',NULL,'','Chile','',0,0,45,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6126,'29295','Chillicothe','CHILLICOTHE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6127,'25411','Chilliwack','CHILLIWACK',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6128,'41393','Chillon','CHILLON',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6129,'5129','Chilly-mazarin','CHILLY-MAZARIN',NULL,'','France','',0,0,76,'2016-10-17 10:46:51','1900-01-01 00:00:00',1,0,1),(6130,'29638','Chiloquin','CHILOQUIN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6131,'31717','Chilton','CHILTON',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6132,'7835','Chilwell','CHILWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6133,'28510','Chimayo','CHIMAYO',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6134,'13427','Chimkent','CHIMKENT',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6135,'33813','Chimney Rock','CHIMNEY ROCK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6136,'14226','Chimoio','CHIMOIO',NULL,'','Mozambique','',0,0,149,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6137,'13929','China','CHINA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6138,'30525','Chinatown','CHINATOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:52','1900-01-01 00:00:00',1,0,1),(6139,'6977','Chinatown','CHINATOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6140,'14297','Chinatown - Sentral','CHINATOWN - SENTRAL',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6141,'906','Chinauta','CHINAUTA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6142,'870','Chincha Alta','CHINCHA ALTA',NULL,'','Peru','',0,0,172,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6143,'40386','Chincheros','CHINCHEROS',NULL,'','Peru','',0,0,172,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6144,'2986','Chinchon','CHINCHON',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6145,'31073','Chincoteague','CHINCOTEAGUE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6146,'7836','Chingford','CHINGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6147,'32644','Chingola','CHINGOLA',NULL,'','Zambia','',0,0,242,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6148,'13532','Chinju','CHINJU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6149,'18119','Chinle','CHINLE',NULL,'','United States','',0,0,231,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6150,'42865','Chino','CHINO',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:53','1900-01-01 00:00:00',1,0,1),(6151,'18386','Chino','CHINO',NULL,'','United States','',0,0,231,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6152,'27948','Chinook','CHINOOK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6153,'44246','Chintsa East','CHINTSA EAST',NULL,'','South Africa','',0,0,195,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6154,'11822','Chiocchio','CHIOCCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6155,'12881','Chioggia','CHIOGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6156,'9818','Chios','CHIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6157,'32649','Chipata','CHIPATA',NULL,'','Zambia','',0,0,242,'2016-10-17 10:46:54','1900-01-01 00:00:00',1,0,1),(6158,'3210','Chipiona','CHIPIONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6159,'34735','Chipita Park','CHIPITA PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6160,'19301','Chipley','CHIPLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6161,'10507','Chiplun','CHIPLUN',NULL,'','India','Chiplun',5,0,101,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6162,'34134','Chippendale','CHIPPENDALE',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6163,'7837','Chippenham','CHIPPENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6164,'7838','Chipperfield','CHIPPERFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6165,'31718','Chippewa Falls','CHIPPEWA FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:46:55','1900-01-01 00:00:00',1,0,1),(6166,'7839','Chipping Campden','CHIPPING CAMPDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:56','1900-01-01 00:00:00',1,0,1),(6167,'850','Chiquiri','CHIQUIRI',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:56','1900-01-01 00:00:00',1,0,1),(6168,'32656','Chiredzi','CHIREDZI',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:46:56','1900-01-01 00:00:00',1,0,1),(6169,'15348','Chiriqui','CHIRIQUI',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:56','1900-01-01 00:00:00',1,0,1),(6170,'36518','Chiriqui-bambito','CHIRIQUI-BAMBITO',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6171,'26198','Chirnside Park','CHIRNSIDE PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6172,'42866','Chiryu','CHIRYU',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6173,'22344','Chisago City','CHISAGO CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6174,'32642','Chisamba','CHISAMBA',NULL,'','Zambia','',0,0,242,'2016-10-17 10:46:57','1900-01-01 00:00:00',1,0,1),(6175,'17585','Chisana','CHISANA',NULL,'','United States','',0,0,231,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6176,'25980','Chisasibi','CHISASIBI',NULL,'','Canada','',0,0,39,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6177,'6978','Chiseldon','CHISELDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6178,'13718','Chisinau','CHISINAU',NULL,'','Moldova, Republic Of','',0,0,144,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6179,'7842','Chislehurst','CHISLEHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:58','1900-01-01 00:00:00',1,0,1),(6180,'5639','Chissay','CHISSAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6181,'6979','Chisworth','CHISWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6182,'16315','Chita','CHITA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6183,'39578','Chitenay','CHITENAY',NULL,'','France','',0,0,76,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6184,'13226','Chitose','CHITOSE',NULL,'','Japan','',0,0,110,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6185,'10402','Chitpur','CHITPUR',NULL,'','India','',0,0,101,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6186,'15296','Chitral','CHITRAL',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6187,'15355','Chitre','CHITRE',NULL,'','Panama','',0,0,169,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6188,'24764','Chittagong','CHITTAGONG',NULL,'','Bangladesh','',0,0,18,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6190,'31314','Chittenden','CHITTENDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6191,'40152','Chittlehamholt','CHITTLEHAMHOLT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:46:59','1900-01-01 00:00:00',1,0,1),(6192,'40805','Chittorgarh','CHITTORGARH',NULL,'','India','Chittorgarh Tour | Travel and Tourism | Rajasthan ',2,0,101,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6193,'10403','Chittur','CHITTUR',NULL,'','India','',0,0,101,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6194,'41806','Chitwan','CHITWAN',NULL,'','Nepal','Chitwan',0,0,153,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6195,'37316','Chiusa','CHIUSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6196,'11823','Chiusanico','CHIUSANICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6197,'11824','Chiusdino','CHIUSDINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6198,'11825','Chiusi','CHIUSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6199,'3748','Chiva','CHIVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6200,'11826','Chivasso','CHIVASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6201,'15386','Chivay','CHIVAY',NULL,'','Peru','',0,0,172,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6202,'43819','Chizhou','CHIZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6203,'2378','Chlef','CHLEF',NULL,'','Algeria','',0,0,3,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6204,'42544','Choc Bay','CHOC BAY',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6205,'32680','Chocorua','CHOCORUA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:00','1900-01-01 00:00:00',1,0,1),(6206,'39565','Chocowinity','CHOCOWINITY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6207,'13414','Chofu','CHOFU',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6208,'5721','Choiseul','CHOISEUL',NULL,'','France','',0,0,76,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6209,'16544','Choiseul Bay','CHOISEUL BAY',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6210,'43986','Choisey','CHOISEY',NULL,'','France','',0,0,76,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6211,'7843','Cholderton','CHOLDERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6212,'6231','Cholet','CHOLET',NULL,'','France','',0,0,76,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6213,'7844','Chollerford','CHOLLERFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6214,'32251','Cholon','CHOLON',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6215,'14002','Cholula','CHOLULA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6216,'9961','Choluteca','CHOLUTECA',NULL,'','Honduras','',0,0,97,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6217,'37326','Chomu','CHOMU',NULL,'','India','',0,0,101,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6218,'24355','Chomutov','CHOMUTOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:47:01','1900-01-01 00:00:00',1,0,1),(6220,'13227','Chonan','CHONAN',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6221,'38880','Chonas-lamballan','CHONAS-LAMBALLAN',NULL,'','France','',0,0,76,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6222,'36736','Chonburi','CHONBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6223,'23569','Chongming','CHONGMING',NULL,'','China','',0,0,46,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6224,'13486','Chongno-gu','CHONGNO-GU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6225,'24003','Chongqing','CHONGQING',NULL,'','China','Chongqing',0,0,46,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6226,'7845','Choppington','CHOPPINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6227,'40043','Chorafakia','CHORAFAKIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6228,'4838','Chorges','CHORGES',NULL,'','France','',0,0,76,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6229,'763','Chorin','CHORIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6230,'43739','Chorla','CHORLA',NULL,'','India','',0,0,101,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6231,'7846','Chorley','CHORLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6232,'15405','Chorrillos','CHORRILLOS',NULL,'','Peru','',0,0,172,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6233,'43629','Chorzow','CHORZOW',NULL,'','Poland','',0,0,174,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6234,'26129','Chos Malal','CHOS MALAL',NULL,'','Argentina','',0,0,10,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6235,'13126','Chosei','CHOSEI',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6236,'27949','Choteau','CHOTEAU',NULL,'','United States','',0,0,231,'2016-10-17 10:47:02','1900-01-01 00:00:00',1,0,1),(6237,'42627','Chouf','CHOUF',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6238,'4202','Chouzy Sur Cisse','CHOUZY SUR CISSE',NULL,'','France','',0,0,76,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6239,'43740','Chowara','CHOWARA',NULL,'','India','',0,0,101,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6240,'18388','Chowchilla','CHOWCHILLA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6241,'42522','Chranoi','CHRANOI',NULL,'','Greece','',0,0,86,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6242,'25231','Christ Church','CHRIST CHURCH',NULL,'','Barbados','',0,0,19,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6243,'6980','Christchurch','CHRISTCHURCH',NULL,'','United Kingdom','Christchurch',0,0,229,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6244,'15095','Christchurch','CHRISTCHURCH',NULL,'','New Zealand','Christchurch',0,0,157,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6245,'884','Christiana','CHRISTIANA',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6246,'44247','Christiana','CHRISTIANA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6247,'19214','Christiana','CHRISTIANA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6248,'31074','Christiansburg','CHRISTIANSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:47:03','1900-01-01 00:00:00',1,0,1),(6249,'2289','Christiansfeld','CHRISTIANSFELD',NULL,'','Denmark','',0,0,59,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6250,'9848','Christianshaab','CHRISTIANSHAAB',NULL,'','Greenland','',0,0,87,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6251,'32244','Christiansted','CHRISTIANSTED',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6252,'7847','Chryston','CHRYSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6253,'43145','Chtaura','CHTAURA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6254,'35938','Chua','CHUA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6255,'17586','Chuathbaluk','CHUATHBALUK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6256,'24826','Chub Cay','CHUB CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6257,'20343','Chubbuck','CHUBBUCK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6258,'35751','Chubu Int Airport','CHUBU INT AIRPORT',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6259,'42095','Chubut','CHUBUT',NULL,'','Argentina','',0,0,10,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6260,'33100','Chuckey Bend','CHUCKEY BEND',NULL,'','United States','',0,0,231,'2016-10-17 10:47:04','1900-01-01 00:00:00',1,0,1),(6261,'15427','Chucuito','CHUCUITO',NULL,'','Peru','',0,0,172,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6262,'7848','Chudleigh','CHUDLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6263,'17587','Chugiak','CHUGIAK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6264,'32082','Chugwater','CHUGWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6265,'19745','Chula','CHULA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6266,'7849','Chulmleigh','CHULMLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6267,'17380','Chulu','CHULU',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6268,'16953','Chumphon','CHUMPHON',NULL,'','Thailand','',0,0,215,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6270,'37562','Chunan','CHUNAN',NULL,'','China','',0,0,46,'2016-10-17 10:47:05','1900-01-01 00:00:00',1,0,1),(6271,'37733','Chunan','CHUNAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6272,'36016','Chun\'an','CHUN\'AN',NULL,'','China','',0,0,46,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6273,'35818','Chuncheon','CHUNCHEON',NULL,'','South Korea','',0,0,197,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6274,'926','Chung Ho City','CHUNG HO CITY',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6275,'35797','Chungju','CHUNGJU',NULL,'','South Korea','',0,0,197,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6276,'17381','Chungli','CHUNGLI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6277,'13487','Chungmun','CHUNGMUN',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6278,'13488','Chungnang-gu','CHUNGNANG-GU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6279,'13489','Chungyn-ri','CHUNGYN-RI',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6280,'13127','Chuo-ku','CHUO-KU',NULL,'','Japan','',0,0,110,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6281,'24940','Chuquisaca','CHUQUISACA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6282,'23174','Chur','CHUR',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6283,'21670','Church Creek','CHURCH CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:06','1900-01-01 00:00:00',1,0,1),(6284,'25588','Churchill','CHURCHILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6285,'29870','Churchtown','CHURCHTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6286,'31075','Churchville','CHURCHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6287,'6981','Churt','CHURT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6288,'39676','Churwalden','CHURWALDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:47:07','1900-01-01 00:00:00',1,0,1),(6289,'23675','Chuzhou','CHUZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6290,'16184','Cialos','CIALOS',NULL,'','Reunion','',0,0,178,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6291,'11827','Ciampino','CIAMPINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6292,'12882','Cibiana Di Cadore','CIBIANA DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6293,'5179','Ciboure','CIBOURE',NULL,'','France','',0,0,76,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6294,'28701','Cicero','CICERO',NULL,'','United States','',0,0,231,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6295,'4049','Cicia','CICIA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6296,'15798','Cidade Universitaria','CIDADE UNIVERSITARIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6297,'41152','Cidade Velha','CIDADE VELHA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6298,'44037','Cidra','CIDRA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:47:08','1900-01-01 00:00:00',1,0,1),(6299,'43621','Ciechocinek','CIECHOCINEK',NULL,'','Poland','',0,0,174,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6300,'41202','Ciego De Avila','CIEGO DE AVILA',NULL,'','Cuba','',0,0,56,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6301,'2987','Ciempozuelos','CIEMPOZUELOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6302,'1153','Cienaga De Zapata','CIENAGA DE ZAPATA',NULL,'','CUBA','',0,0,56,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6303,'1228','Cienfuegos','CIENFUEGOS',NULL,'','CUBA','',0,0,56,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6304,'44041','Cierpice','CIERPICE',NULL,'','Poland','',0,0,174,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6305,'6331','Cierzac','CIERZAC',NULL,'','France','',0,0,76,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6306,'15609','Cieszyn','CIESZYN',NULL,'','Poland','',0,0,174,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6307,'3031','Cieza','CIEZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6308,'14013','Cihuatlan','CIHUATLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6309,'10282','Cikarang','CIKARANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6310,'10295','Cilacap','CILACAP',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6311,'16193','Cilaos','CILAOS',NULL,'','Reunion','',0,0,178,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6312,'7851','Cilcennin','CILCENNIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6313,'42792','Cilegon','CILEGON',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6314,'38979','Cima Di Porlezza','CIMA DI PORLEZZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:09','1900-01-01 00:00:00',1,0,1),(6315,'34736','Cimarron','CIMARRON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6316,'6417','Cimiez','CIMIEZ',NULL,'','France','',0,0,76,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6317,'36620','Cimpulung Moldvenesc','CIMPULUNG MOLDVENESC',NULL,'','Romania','',0,0,179,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6318,'29297','Cincinnati','CINCINNATI',NULL,'','United States','',0,0,231,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6319,'11828','Cinecitta','CINECITTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6320,'39130','Ciney','CINEY',NULL,'','Belgium','',0,0,21,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6321,'11829','Cinigiano','CINIGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:10','1900-01-01 00:00:00',1,0,1),(6322,'13021','Cinisello Balsamo','CINISELLO BALSAMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6323,'11830','Cinisi','CINISI',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6324,'28234','Cinnaminson','CINNAMINSON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6325,'11831','Cinquale','CINQUALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6326,'11183','Cinque Terre','CINQUE TERRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6327,'11832','Cinto Euganeo','CINTO EUGANEO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6328,'3053','Cintruenigo','CINTRUENIGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6329,'10130','Cipanas','CIPANAS',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6330,'41768','Cipolleti','CIPOLLETI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:47:11','1900-01-01 00:00:00',1,0,1),(6331,'42146','Cipolletti','CIPOLLETTI',NULL,'','Argentina','',0,0,10,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6332,'17200','Cirali','CIRALI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6333,'27950','Circle','CIRCLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6334,'29299','Circleville','CIRCLEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6335,'10283','Cirebon','CIREBON',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6336,'7852','Cirencester','CIRENCESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6337,'39338','Cirié','CIRIÉ',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6338,'14180','Cirkewwa','CIRKEWWA',NULL,'','Malta','',0,0,135,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6339,'11833','Ciro Marina','CIRO MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:12','1900-01-01 00:00:00',1,0,1),(6340,'42793','Cisarua','CISARUA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6341,'30526','Cisco','CISCO',NULL,'','United States','',0,0,231,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6342,'12883','Cison Di Valmarino','CISON DI VALMARINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6343,'37743','Cisterna Di Latina','CISTERNA DI LATINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6344,'11834','Cisternino','CISTERNINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6345,'4203','Cite Universitaire','CITE UNIVERSITAIRE',NULL,'','France','',0,0,76,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6346,'35505','Citerna','CITERNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6347,'18390','Citrus Heights','CITRUS HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:13','1900-01-01 00:00:00',1,0,1),(6348,'11838','Cittadella','CITTADELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6349,'37659','Cittaducale','CITTADUCALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6350,'11839','Cittanova','CITTANOVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6351,'11840','Cittiglio','CITTIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6352,'6982','City Of Westminster','CITY OF WESTMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6353,'924','Ciudad Acuna','CIUDAD ACUNA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6354,'32187','Ciudad Bolivar','CIUDAD BOLIVAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6355,'16107','Ciudad Del Este','CIUDAD DEL ESTE',NULL,'','Paraguay','',0,0,171,'2016-10-17 10:47:14','1900-01-01 00:00:00',1,0,1),(6356,'24151','Ciudad Quesada','CIUDAD QUESADA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6357,'2894','Ciudadela','CIUDADELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6358,'2895','Ciudadella De Menorca','CIUDADELLA DE MENORCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6359,'43483','Ciutadella','CIUTADELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6360,'40235','Civenna','CIVENNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6361,'42319','Cividale Del Friuli','CIVIDALE DEL FRIULI',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:15','1900-01-01 00:00:00',1,0,1),(6362,'11841','Civita Castellana','CIVITA CASTELLANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6363,'41677','Civitanova Marche','CIVITANOVA MARCHE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6364,'12762','Civitavecchia','CIVITAVECCHIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6365,'38116','Civitella Dagliano','CIVITELLA DAGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6366,'23676','Cixi','CIXI',NULL,'','China','',0,0,46,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6367,'29639','Clackamas','CLACKAMAS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6368,'7853','Clackmannan','CLACKMANNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:16','1900-01-01 00:00:00',1,0,1),(6369,'34691','Clacton On Sea','CLACTON ON SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6370,'42381','Clacton-on-sea','CLACTON-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6371,'18392','Clairemont','CLAIREMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6372,'19302','Clair-mel City','CLAIR-MEL CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6373,'25289','Clairmont','CLAIRMONT',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6374,'6600','Claix','CLAIX',NULL,'','France','',0,0,76,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6375,'17590','Clam Gulch','CLAM GULCH',NULL,'','United States','',0,0,231,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6376,'4694','Clamart','CLAMART',NULL,'','France','',0,0,76,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6377,'5454','Clamecy','CLAMECY',NULL,'','France','',0,0,76,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6378,'37321','Clane','CLANE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:17','1900-01-01 00:00:00',1,0,1),(6379,'7854','Clanfield','CLANFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6380,'17851','Clanton','CLANTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6381,'32444','Clanwilliam','CLANWILLIAM',NULL,'','South Africa','',0,0,195,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6382,'7855','Clapham','CLAPHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6383,'4204','Clapiers','CLAPIERS',NULL,'','France','',0,0,76,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6384,'19303','Clarcona','CLARCONA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6385,'22027','Clare','CLARE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6386,'26448','Clare','CLARE',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6387,'10720','Clare','CLARE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6388,'10863','Claregalway','CLAREGALWAY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:18','1900-01-01 00:00:00',1,0,1),(6389,'33814','Claremont','CLAREMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6390,'43637','Claremont','CLAREMONT',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6391,'32891','Claremore','CLAREMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6392,'10904','Claremorris','CLAREMORRIS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6393,'28702','Clarence','CLARENCE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6394,'43643','Clarence Point','CLARENCE POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6395,'24861','Clarence Town','CLARENCE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6396,'7857','Clarencefield','CLARENCEFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6397,'30527','Clarendon','CLARENDON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:19','1900-01-01 00:00:00',1,0,1),(6398,'32544','Clarens','CLARENS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6399,'23008','Clarens','CLARENS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6400,'41117','Clarenville','CLARENVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6401,'25290','Claresholm','CLARESHOLM',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6402,'10864','Clarinbridge','CLARINBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6403,'20176','Clarinda','CLARINDA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6404,'20177','Clarion','CLARION',NULL,'','United States','',0,0,231,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6405,'29872','Clark','CLARK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6406,'36550','Clark','CLARK',NULL,'','Philippines','',0,0,173,'2016-10-17 10:47:20','1900-01-01 00:00:00',1,0,1),(6407,'18120','Clarkdale','CLARKDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:21','1900-01-01 00:00:00',1,0,1),(6408,'19746','Clarkesville','CLARKESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:21','1900-01-01 00:00:00',1,0,1),(6409,'20845','Clarks Hill','CLARKS HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:21','1900-01-01 00:00:00',1,0,1),(6410,'31968','Clarksburg','CLARKSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:47:21','1900-01-01 00:00:00',1,0,1),(6411,'27840','Clarksdale','CLARKSDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:22','1900-01-01 00:00:00',1,0,1),(6412,'22028','Clarkston','CLARKSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:22','1900-01-01 00:00:00',1,0,1),(6413,'41178','Clarkston','CLARKSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:22','1900-01-01 00:00:00',1,0,1),(6414,'20846','Clarksville','CLARKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:22','1900-01-01 00:00:00',1,0,1),(6415,'38093','Claryville','CLARYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6416,'29640','Clatskanie','CLATSKANIE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6417,'27196','Clausthal-zellerfeld','CLAUSTHAL-ZELLERFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6418,'28703','Claverack','CLAVERACK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6419,'7858','Claverdon','CLAVERDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6420,'40169','Clavier','CLAVIER',NULL,'','Belgium','',0,0,21,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6421,'11843','Claviere','CLAVIERE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6422,'40177','Clavières','CLAVIÈRES',NULL,'','France','',0,0,76,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6423,'22029','Clawson','CLAWSON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:23','1900-01-01 00:00:00',1,0,1),(6424,'7859','Clawton','CLAWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6425,'19748','Claxton','CLAXTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6426,'17126','Claxton Bay','CLAXTON BAY',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6427,'21034','Clay Center','CLAY CENTER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6428,'7860','Claydon','CLAYDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6429,'5845','Claye-souilly','CLAYE-SOUILLY',NULL,'','France','',0,0,76,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6430,'19215','Claymont','CLAYMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6431,'31077','Claypool Hill','CLAYPOOL HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6432,'29874','Claysburg','CLAYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:47:24','1900-01-01 00:00:00',1,0,1),(6433,'33815','Clayton','CLAYTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:25','1900-01-01 00:00:00',1,0,1),(6434,'7861','Clayton Le Moors','CLAYTON LE MOORS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:25','1900-01-01 00:00:00',1,0,1),(6435,'1528','Clayton-le-moors','CLAYTON-LE-MOORS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:25','1900-01-01 00:00:00',1,0,1),(6436,'6985','Clayton-le-woods','CLAYTON-LE-WOODS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:26','1900-01-01 00:00:00',1,0,1),(6437,'18395','Clear Lake','CLEAR LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:26','1900-01-01 00:00:00',1,0,1),(6438,'25589','Clear Lake','CLEAR LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:26','1900-01-01 00:00:00',1,0,1),(6439,'26684','Clear Mountain','CLEAR MOUNTAIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:26','1900-01-01 00:00:00',1,0,1),(6440,'25413','Clearbrook','CLEARBROOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:27','1900-01-01 00:00:00',1,0,1),(6441,'29875','Clearfield','CLEARFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:47:27','1900-01-01 00:00:00',1,0,1),(6442,'18397','Clearlake','CLEARLAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:27','1900-01-01 00:00:00',1,0,1),(6443,'32083','Clearmont','CLEARMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:27','1900-01-01 00:00:00',1,0,1),(6444,'22345','Clearwater','CLEARWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:28','1900-01-01 00:00:00',1,0,1),(6445,'25414','Clearwater','CLEARWATER',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:28','1900-01-01 00:00:00',1,0,1),(6446,'6986','Clearwell','CLEARWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:28','1900-01-01 00:00:00',1,0,1),(6447,'7862','Cleator','CLEATOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:28','1900-01-01 00:00:00',1,0,1),(6448,'30529','Cleburne','CLEBURNE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6449,'7864','Cleckheaton','CLECKHEATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6450,'5383','Clecy','CLECY',NULL,'','France','',0,0,76,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6451,'7865','Cleethorpes','CLEETHORPES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6452,'6987','Cleeve Hill','CLEEVE HILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6453,'33816','Clegg','CLEGG',NULL,'','United States','',0,0,231,'2016-10-17 10:47:29','1900-01-01 00:00:00',1,0,1),(6454,'6988','Cleish','CLEISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6455,'6601','Clelles','CLELLES',NULL,'','France','',0,0,76,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6456,'33817','Clemmons','CLEMMONS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6457,'30305','Clemson','CLEMSON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6458,'7866','Cleobury Mortimer','CLEOBURY MORTIMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6459,'5803','Cleon','CLEON',NULL,'','France','',0,0,76,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6460,'26398','Clermont','CLERMONT',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6461,'42347','Clermont','CLERMONT',NULL,'','France','',0,0,76,'2016-10-17 10:47:30','1900-01-01 00:00:00',1,0,1),(6462,'19306','Clermont','CLERMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:31','1900-01-01 00:00:00',1,0,1),(6463,'5309','Clermont-ferrand','CLERMONT-FERRAND',NULL,'','France','',0,0,76,'2016-10-17 10:47:31','1900-01-01 00:00:00',1,0,1),(6464,'6293','Clermont-les-fermes','CLERMONT-LES-FERMES',NULL,'','France','',0,0,76,'2016-10-17 10:47:31','1900-01-01 00:00:00',1,0,1),(6465,'38311','Clerques','CLERQUES',NULL,'','France','',0,0,76,'2016-10-17 10:47:31','1900-01-01 00:00:00',1,0,1),(6466,'13646','Clervaux','CLERVAUX',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6467,'43989','Clesse','CLESSE',NULL,'','France','',0,0,76,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6468,'26449','Cleve','CLEVE',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6469,'7867','Clevedon','CLEVEDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6470,'29300','Cleveland','CLEVELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6471,'26685','Cleveland','CLEVELAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:33','1900-01-01 00:00:00',1,0,1),(6472,'36873','Cleveland-hopkins','CLEVELAND-HOPKINS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:34','1900-01-01 00:00:00',1,0,1),(6473,'19307','Clewiston','CLEWISTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6474,'42767','Cley Next The Sea','CLEY NEXT THE SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6475,'4695','Clichy','CLICHY',NULL,'','France','',0,0,76,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6476,'10865','Clifden','CLIFDEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6477,'6989','Clifford Chambers','CLIFFORD CHAMBERS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6478,'28236','Cliffside Park','CLIFFSIDE PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6479,'28237','Clifton','CLIFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6480,'32172','Clifton','CLIFTON',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6481,'32429','Clifton','CLIFTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:47:35','1900-01-01 00:00:00',1,0,1),(6482,'26686','Clifton Beach','CLIFTON BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:36','1900-01-01 00:00:00',1,0,1),(6483,'38685','Climping','CLIMPING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:36','1900-01-01 00:00:00',1,0,1),(6484,'20848','Clinton','CLINTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:36','1900-01-01 00:00:00',1,0,1),(6485,'25415','Clinton','CLINTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:38','1900-01-01 00:00:00',1,0,1),(6486,'31720','Clintonville','CLINTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6487,'18399','Clio','CLIO',NULL,'','United States','',0,0,231,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6488,'6232','Clisson','CLISSON',NULL,'','France','',0,0,76,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6489,'7868','Clitheroe','CLITHEROE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6490,'20181','Clive','CLIVE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6491,'41590','Cloghan','CLOGHAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6492,'40590','Clohars-fouesnant','CLOHARS-FOUESNANT',NULL,'','France','',0,0,76,'2016-10-17 10:47:39','1900-01-01 00:00:00',1,0,1),(6493,'10804','Clonakilty','CLONAKILTY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6494,'41589','Clonbur','CLONBUR',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6495,'26399','Cloncurry','CLONCURRY',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6496,'10834','Clondalkin','CLONDALKIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6497,'10930','Clonmel','CLONMEL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6498,'10835','Clontarf','CLONTARF',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6499,'41893','Cloppenburg','CLOPPENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6500,'22346','Cloquet','CLOQUET',NULL,'','United States','',0,0,231,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6501,'15185','Closeburn','CLOSEBURN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6502,'28513','Cloudcroft','CLOUDCROFT',NULL,'','United States','',0,0,231,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6503,'7869','Clovelly','CLOVELLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6504,'33105','Clover Hill','CLOVER HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:40','1900-01-01 00:00:00',1,0,1),(6505,'33821','Cloverdale','CLOVERDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6506,'25416','Cloverdale','CLOVERDALE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6507,'30532','Cloverleaf','CLOVERLEAF',NULL,'','United States','',0,0,231,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6508,'28514','Clovis','CLOVIS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6509,'5640','Cloyes-sur-le-loir','CLOYES-SUR-LE-LOIR',NULL,'','France','',0,0,76,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6510,'10805','Cloyne','CLOYNE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6511,'1640','Cluj','CLUJ',NULL,'','Romania','',0,0,179,'2016-10-17 10:47:41','1900-01-01 00:00:00',1,0,1),(6512,'16216','Cluj-napoca','CLUJ-NAPOCA',NULL,'','Romania','',0,0,179,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6513,'40281','Clun','CLUN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6514,'26893','Clunes','CLUNES',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6515,'5455','Cluny','CLUNY',NULL,'','France','',0,0,76,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6516,'11844','Clusane Sul Lago','CLUSANE SUL LAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6517,'35507','Clusone','CLUSONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6518,'31079','Cluster Springs','CLUSTER SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6519,'30533','Clute','CLUTE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:42','1900-01-01 00:00:00',1,0,1),(6520,'29303','Clyde','CLYDE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:43','1900-01-01 00:00:00',1,0,1),(6521,'25793','Clyde River','CLYDE RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6522,'7870','Clydebank','CLYDEBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6523,'28708','Clymer','CLYMER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6524,'7871','Clyro','CLYRO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6525,'18402','Coachella','COACHELLA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6526,'18403','Coalinga','COALINGA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:44','1900-01-01 00:00:00',1,0,1),(6527,'33319','Coalville','COALVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6528,'38141','Coalville','COALVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6529,'15745','Coamo','COAMO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6530,'40763','Coarsegold','COARSEGOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6531,'13037','Coassolo Torinese','COASSOLO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6532,'13993','Coatepec','COATEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6533,'29877','Coatesville','COATESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6534,'6990','Coatham Mundeville','COATHAM MUNDEVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6535,'14116','Coatzacoalcos','COATZACOALCOS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6536,'14075','Coba','COBA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:45','1900-01-01 00:00:00',1,0,1),(6537,'42644','Cobano','COBANO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6538,'34135','Cobar','COBAR',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6539,'19751','Cobb Galleria','COBB GALLERIA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6540,'25417','Cobble Hill','COBBLE HILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6541,'33106','Cobbly Nob','COBBLY NOB',NULL,'','United States','',0,0,231,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6542,'1679','Cobden','COBDEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6543,'10806','Cobh','COBH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:47:46','1900-01-01 00:00:00',1,0,1),(6544,'7872','Cobham','COBHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6545,'24954','Cobija','COBIJA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6546,'28709','Cobleskill','COBLESKILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6547,'34472','Cobourg','COBOURG',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6548,'37807','Cobourg','COBOURG',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6549,'26494','Cobram','COBRAM',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6550,'43210','Cobreces','COBRECES',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6551,'22727','Coburg','COBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6552,'26495','Coburg','COBURG',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6553,'2390','Coca','COCA',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6554,'34395','Cocagne','COCAGNE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6555,'11845','Cocconato','COCCONATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6556,'24938','Cochabamba','COCHABAMBA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6557,'23484','Cochamó','COCHAMÓ',NULL,'','Chile','',0,0,45,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6558,'42290','Coche Island','COCHE ISLAND',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:47:47','1900-01-01 00:00:00',1,0,1),(6559,'28710','Cochecton','COCHECTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6560,'617','Cochem','COCHEM',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6561,'59203','Cochin International Airport','COCHIN INTERNATIONAL AIRPORT',NULL,'','India','',0,0,101,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6562,'28515','Cochiti Lake','COCHITI LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6563,'39753','Cochran','COCHRAN',NULL,'','United States','',0,0,231,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6564,'43190','Cochrane','COCHRANE',NULL,'','Chile','',0,0,45,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6565,'25291','Cochrane','COCHRANE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6566,'43635','Cockatoo Island','COCKATOO ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6567,'16933','Cockburn Town','COCKBURN TOWN',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6568,'24890','Cockburn Town','COCKBURN TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6569,'7873','Cockermouth','COCKERMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6570,'21673','Cockeysville','COCKEYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:48','1900-01-01 00:00:00',1,0,1),(6571,'30534','Cockrell Hill','COCKRELL HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6572,'41727','Cocle','COCLE',NULL,'','Panama','',0,0,169,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6573,'34930','Cocles Beach','COCLES BEACH',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6574,'24211','Coco','COCO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6575,'19308','Cocoa','COCOA',NULL,'','United States','',0,0,231,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6576,'19310','Coconut Creek','COCONUT CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:49','1900-01-01 00:00:00',1,0,1),(6577,'26199','Coconut Island','COCONUT ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6578,'43681','Cocos Islands','COCOS ISLANDS',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6579,'14045','Cocoyoc','COCOYOC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6580,'41153','Coculi','COCULI',NULL,'','Cape Verde','',0,0,41,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6581,'35509','Codiponte','CODIPONTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6582,'37897','Codogne','CODOGNE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6583,'26159','Codrington','CODRINGTON',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6584,'38735','Codrongianos','CODRONGIANOS',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6585,'32084','Cody','CODY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6586,'25132','Coelho Da Rocha','COELHO DA ROCHA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:47:50','1900-01-01 00:00:00',1,0,1),(6587,'26400','Coen','COEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6588,'20345','Coeur D\'alene','COEUR D\'ALENE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6589,'14494','Coevorden','COEVORDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6590,'21035','Coffeyville','COFFEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6591,'17592','Coffman Cove','COFFMAN COVE',NULL,'','United States','',0,0,231,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6592,'34136','Coffs Harbour','COFFS HARBOUR',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6593,'41348','Cofino','COFINO',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6594,'41730','Cofresi','COFRESI',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6595,'7874','Coggeshall','COGGESHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:51','1900-01-01 00:00:00',1,0,1),(6596,'6332','Cognac','COGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6597,'4205','Cognat Lyonne','COGNAT LYONNE',NULL,'','France','',0,0,76,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6598,'11846','Cogne','COGNE',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6599,'39185','Cogoleto','COGOLETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6600,'6418','Cogolin','COGOLIN',NULL,'','France','',0,0,76,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6601,'3447','Cogollos','COGOLLOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6602,'11847','Cogolo','COGOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:52','1900-01-01 00:00:00',1,0,1),(6603,'38848','Cogorno','COGORNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6604,'22347','Cohasset','COHASSET',NULL,'','United States','',0,0,231,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6605,'28711','Cohocton','COHOCTON',NULL,'','United States','',0,0,231,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6606,'28712','Cohoes','COHOES',NULL,'','United States','',0,0,231,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6607,'43992','Coignieres','COIGNIERES',NULL,'','France','',0,0,76,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6608,'4206','Coignières','COIGNIÈRES',NULL,'','France','',0,0,76,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6609,'10672','Coimbatore','COIMBATORE',NULL,'','India','Coimbatore',18,0,101,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6610,'15974','Coimbra','COIMBRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:47:53','1900-01-01 00:00:00',1,0,1),(6611,'3211','Coin','COIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6613,'6602','Coise-saint-jean-pied-gauthier','COISE-SAINT-JEAN-PIED-GAUTHIER',NULL,'','France','',0,0,76,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6614,'36384','Col De Kerdous','COL DE KERDOUS',NULL,'','Morocco','',0,0,148,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6615,'26496','Colac','COLAC',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6616,'43741','Colachel','COLACHEL',NULL,'','India','',0,0,101,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6617,'17233','Colakli','COLAKLI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6618,'15998','Colares','COLARES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:47:54','1900-01-01 00:00:00',1,0,1),(6619,'39075','Colayrac-saint-cirq','COLAYRAC-SAINT-CIRQ',NULL,'','France','',0,0,76,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6620,'409','Colbe','COLBE',NULL,'','Germany','',0,0,83,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6621,'37803','Colbordolo','COLBORDOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6622,'21036','Colby','COLBY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6623,'36522','Colca','COLCA',NULL,'','Peru','',0,0,172,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6624,'31315','Colchester','COLCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6625,'7875','Colchester','COLCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:55','1900-01-01 00:00:00',1,0,1),(6626,'17593','Cold Bay','COLD BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6627,'25292','Cold Lake','COLD LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6628,'25704','Coldbrook','COLDBROOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6629,'30535','Coldspring','COLDSPRING',NULL,'','United States','',0,0,231,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6630,'40204','Coldstream','COLDSTREAM',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:56','1900-01-01 00:00:00',1,0,1),(6631,'22032','Coldwater','COLDWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6632,'25887','Cole Bay','COLE BAY',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6633,'32682','Colebrook','COLEBROOK',NULL,'','United States','',0,0,231,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6634,'7876','Coleford','COLEFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6635,'25293','Coleman','COLEMAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6636,'30536','Coleman','COLEMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6637,'7877','Coleraine','COLERAINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6638,'7878','Colerne','COLERNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6639,'26832','Coles Bay','COLES BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6640,'7879','Coleshill','COLESHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:47:57','1900-01-01 00:00:00',1,0,1),(6641,'31469','Colfax','COLFAX',NULL,'','United States','',0,0,231,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6642,'11848','Colico','COLICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6643,'13965','Colima','COLIMA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6644,'41354','Collado Villalba','COLLADO VILLALBA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6645,'2989','Collado-villalba','COLLADO-VILLALBA',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6646,'5310','Collanges','COLLANGES',NULL,'','France','',0,0,76,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6647,'41301','Collbato','COLLBATO',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:58','1900-01-01 00:00:00',1,0,1),(6648,'2596','Collbató','COLLBATÓ',NULL,'','Spain','',0,0,199,'2016-10-17 10:47:59','1900-01-01 00:00:00',1,0,1),(6649,'11851','Collecchio','COLLECCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:47:59','1900-01-01 00:00:00',1,0,1),(6650,'29304','College Corner','COLLEGE CORNER',NULL,'','United States','',0,0,231,'2016-10-17 10:47:59','1900-01-01 00:00:00',1,0,1),(6651,'33107','Collegedale','COLLEGEDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6652,'29878','Collegeville','COLLEGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6653,'5846','Collegien','COLLEGIEN',NULL,'','France','',0,0,76,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6654,'11852','Collegno','COLLEGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6655,'11185','Collelungo Dei Baschi','COLLELUNGO DEI BASCHI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6656,'37833','Collepepe','COLLEPEPE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6657,'11186','Collesalvetti','COLLESALVETTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:00','1900-01-01 00:00:00',1,0,1),(6658,'11853','Collesano','COLLESANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6659,'5384','Colleville-sur-mer','COLLEVILLE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6660,'30539','Colleyville','COLLEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6661,'11854','Colli Del Tronto','COLLI DEL TRONTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6662,'4915','Collias','COLLIAS',NULL,'','France','',0,0,76,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6663,'24256','Colliers Bay','COLLIERS BAY',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6664,'33108','Collierville','COLLIERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6665,'39308','Collinas','COLLINAS',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:01','1900-01-01 00:00:00',1,0,1),(6666,'34474','Collingwood','COLLINGWOOD',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6667,'43014','Collingwood','COLLINGWOOD',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6668,'27843','Collins','COLLINS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6669,'26401','Collinsville','COLLINSVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6670,'20502','Collinsville','COLLINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6671,'5909','Collioure','COLLIOURE',NULL,'','France','',0,0,76,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6672,'40733','Collonges-au-mont-dor','COLLONGES-AU-MONT-DOR',NULL,'','France','',0,0,76,'2016-10-17 10:48:02','1900-01-01 00:00:00',1,0,1),(6673,'39766','Collonges-la-rouge','COLLONGES-LA-ROUGE',NULL,'','France','',0,0,76,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6674,'10925','Collooney','COLLOONEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6675,'6758','Colmar','COLMAR',NULL,'','France','',0,0,76,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6676,'3212','Colmenar','COLMENAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6677,'43583','Colne','COLNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6678,'43946','Coloane','COLOANE',NULL,'','Macau','',0,0,128,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6679,'125','Cologne','COLOGNE',NULL,'','Germany','Cologne',0,0,83,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6680,'11855','Cologno Al Serio','COLOGNO AL SERIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6681,'23010','Cologny','COLOGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:03','1900-01-01 00:00:00',1,0,1),(6682,'11857','Colombaro','COLOMBARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6683,'5722','Colombey-les-deux-églises','COLOMBEY-LES-DEUX-ÉGLISES',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6684,'23176','Colombier','COLOMBIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6685,'9378','Colombier','COLOMBIER',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6686,'5180','Colombier','COLOMBIER',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6687,'39786','Colombiers','COLOMBIERS',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6688,'6603','Colombier-saugnieu','COLOMBIER-SAUGNIEU',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6689,'13616','Colombo','COLOMBO',NULL,'','Sri Lanka','Colombo',0,0,200,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6690,'6082','Colomiers','COLOMIERS',NULL,'','France','',0,0,76,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6691,'41767','Colon','COLON',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6692,'15356','Colon','COLON',NULL,'','Panama','',0,0,169,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6693,'24868','Colonel Hill','COLONEL HILL',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6694,'6834','Colonia','COLONIA',NULL,'','Micronesia, FS Of','',0,0,143,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6695,'872','Colonia','COLONIA',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:48:04','1900-01-01 00:00:00',1,0,1),(6696,'3448','Colonia De La Estacion','COLONIA DE LA ESTACION',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6697,'13797','Colonia Oaxaca','COLONIA OAXACA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6698,'41873','Colonia Tovar','COLONIA TOVAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6699,'31081','Colonial Beach','COLONIAL BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6700,'34739','Colorado City','COLORADO CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:05','1900-01-01 00:00:00',1,0,1),(6701,'11187','Colosseum - Foro Romano','COLOSSEUM - FORO ROMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:06','1900-01-01 00:00:00',1,0,1),(6702,'21344','Colrain','COLRAIN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:06','1900-01-01 00:00:00',1,0,1),(6703,'4207','Colroy La Roche','COLROY LA ROCHE',NULL,'','France','',0,0,76,'2016-10-17 10:48:06','1900-01-01 00:00:00',1,0,1),(6704,'27953','Colstrip','COLSTRIP',NULL,'','United States','',0,0,231,'2016-10-17 10:48:07','1900-01-01 00:00:00',1,0,1),(6705,'18405','Colton','COLTON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:07','1900-01-01 00:00:00',1,0,1),(6706,'28240','Colts Neck','COLTS NECK',NULL,'','United States','',0,0,231,'2016-10-17 10:48:07','1900-01-01 00:00:00',1,0,1),(6707,'28241','Columbia','COLUMBIA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:07','1900-01-01 00:00:00',1,0,1),(6708,'29305','Columbiana','COLUMBIANA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:09','1900-01-01 00:00:00',1,0,1),(6709,'29306','Columbus','COLUMBUS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:09','1900-01-01 00:00:00',1,0,1),(6710,'3083','Colunga','COLUNGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6711,'10404','Colva Beach','COLVA BEACH',NULL,'','India','',0,0,101,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6712,'31471','Colville','COLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6713,'25760','Colville Lake','COLVILLE LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6714,'1394','Colwyn Bay','COLWYN BAY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6715,'7880','Colwyn Bay','COLWYN BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6716,'5181','Coly','COLY',NULL,'','France','',0,0,76,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6717,'7881','Colyton','COLYTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6718,'12718','Comacchio','COMACCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6719,'40786','Comala','COMALA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6720,'30542','Comanche','COMANCHE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:11','1900-01-01 00:00:00',1,0,1),(6721,'25038','Comandatuba','COMANDATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6722,'11858','Comano','COMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6723,'38085','Comares','COMARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6724,'2599','Comarruga','COMARRUGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6725,'9962','Comayagua','COMAYAGUA',NULL,'','Honduras','',0,0,97,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6726,'43216','Comber','COMBER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6727,'24671','Comblain-la-tour','COMBLAIN-LA-TOUR',NULL,'','Belgium','',0,0,21,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6728,'5082','Combloux','COMBLOUX',NULL,'','France','',0,0,76,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6729,'5528','Combourg','COMBOURG',NULL,'','France','',0,0,76,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6730,'40546','Combreux','COMBREUX',NULL,'','France','',0,0,76,'2016-10-17 10:48:12','1900-01-01 00:00:00',1,0,1),(6731,'5529','Combrit','COMBRIT',NULL,'','France','',0,0,76,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6732,'19754','Comer','COMER',NULL,'','United States','',0,0,231,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6733,'11859','Comerio','COMERIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6734,'30543','Comfort','COMFORT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6735,'3120','Comillas','COMILLAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6736,'1418','Coming - Painted Post - Ny','COMING - PAINTED POST - NY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6737,'14181','Comino','COMINO',NULL,'','Malta','',0,0,135,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6738,'39556','Comiso','COMISO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6739,'28716','Commack','COMMACK',NULL,'','United States','',0,0,231,'2016-10-17 10:48:13','1900-01-01 00:00:00',1,0,1),(6740,'18407','Commerce','COMMERCE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6741,'5385','Commes','COMMES',NULL,'','France','',0,0,76,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6742,'11860','Commezzadura','COMMEZZADURA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6743,'34137','Como','COMO',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6744,'12785','Como','COMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:14','1900-01-01 00:00:00',1,0,1),(6745,'26114','Comodoro Rivadavia','COMODORO RIVADAVIA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6746,'13922','Comondu','COMONDU',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6747,'25418','Comox','COMOX',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6748,'3213','Competa','COMPETA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6749,'37963','Compeyre','COMPEYRE',NULL,'','France','',0,0,76,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6750,'6294','Compiegne','COMPIEGNE',NULL,'','France','',0,0,76,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6751,'11861','Compiobbi','COMPIOBBI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6752,'41910','Comporta','COMPORTA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6753,'3661','Compostela','COMPOSTELA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6754,'18408','Compton','COMPTON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6755,'40239','Compton Bassett','COMPTON BASSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:15','1900-01-01 00:00:00',1,0,1),(6756,'7883','Comrie','COMRIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6757,'22034','Comstock Park','COMSTOCK PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6758,'936','Con Dao','CON DAO',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6759,'42615','Conakry','CONAKRY',NULL,'','Guinea','',0,0,92,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6760,'30545','Concan','CONCAN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6761,'4912','Concarneau','CONCARNEAU',NULL,'','France','',0,0,76,'2016-10-17 10:48:16','1900-01-01 00:00:00',1,0,1),(6762,'38370','Concei','CONCEI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6763,'41983','Conceicao Da Barra','CONCEICAO DA BARRA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6764,'23517','Concepcion','CONCEPCION',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6765,'40667','Concepcion De Ataco','CONCEPCION DE ATACO',NULL,'','El Salvador','',0,0,66,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6766,'43268','Concepcion Del Uruguay','CONCEPCION DEL URUGUAY',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6767,'40315','Concesio','CONCESIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6768,'16945','Conch Bar','CONCH BAR',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6769,'23539','Conchali','CONCHALI',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6770,'23500','Concon','CONCON',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6771,'29642','Concord','CONCORD',NULL,'','United States','',0,0,231,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6772,'34138','Concord','CONCORD',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:17','1900-01-01 00:00:00',1,0,1),(6773,'34475','Concord','CONCORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:18','1900-01-01 00:00:00',1,0,1),(6774,'27617','Concordia','CONCORDIA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6775,'26117','Concordia','CONCORDIA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6776,'29880','Concordville','CONCORDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6777,'11862','Concorezzo','CONCOREZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6778,'31472','Concrete','CONCRETE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6779,'15746','Condado','CONDADO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6780,'4208','Condat Sur Vezere','CONDAT SUR VEZERE',NULL,'','France','',0,0,76,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6781,'36566','Conde Ixa-a-nova','CONDE IXA-A-NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:19','1900-01-01 00:00:00',1,0,1),(6782,'5386','Condeau','CONDEAU',NULL,'','France','',0,0,76,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6783,'39210','Conde-en-brie','CONDE-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6784,'15902','Condeixa A Nova','CONDEIXA A NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6785,'1630','Condeixa-a-nova','CONDEIXA-A-NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6786,'6024','Conde-northen','CONDE-NORTHEN',NULL,'','France','',0,0,76,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6787,'34139','Condobolin','CONDOBOLIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6788,'11863','Condofuri','CONDOFURI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6789,'27956','Condon','CONDON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6790,'24108','Condoto','CONDOTO',NULL,'','Colombia','',0,0,49,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6791,'6604','Condrieu','CONDRIEU',NULL,'','France','',0,0,76,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6792,'12884','Conegliano','CONEGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:20','1900-01-01 00:00:00',1,0,1),(6793,'28717','Coney Island','CONEY ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6794,'4209','Conflans Sur Anille','CONFLANS SUR ANILLE',NULL,'','France','',0,0,76,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6795,'4697','Conflans-sainte-honorine','CONFLANS-SAINTE-HONORINE',NULL,'','France','',0,0,76,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6796,'41552','Conflans-ste-honorine','CONFLANS-STE-HONORINE',NULL,'','France','',0,0,76,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6797,'29881','Confluence','CONFLUENCE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6798,'6605','Confrancon','CONFRANCON',NULL,'','France','',0,0,76,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6799,'10905','Cong','CONG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6800,'28718','Congers','CONGERS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6801,'39331','Conghua','CONGHUA',NULL,'','China','',0,0,46,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6802,'7884','Congleton','CONGLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:21','1900-01-01 00:00:00',1,0,1),(6803,'41305','Congosto','CONGOSTO',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6804,'1732','Conil','CONIL',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6805,'37488','Conilhac-corbieres','CONILHAC-CORBIERES',NULL,'','France','',0,0,76,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6806,'7885','Coniston','CONISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6807,'19757','Conley','CONLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6808,'29310','Conneaut','CONNEAUT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6809,'1126','Connecticut Coast Area - Ct','CONNECTICUT COAST AREA - CT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6810,'5804','Connelles','CONNELLES',NULL,'','France','',0,0,76,'2016-10-17 10:48:22','1900-01-01 00:00:00',1,0,1),(6811,'29882','Connellsville','CONNELLSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6812,'33825','Connellys Springs','CONNELLYS SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6813,'10721','Connemara','CONNEMARA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6814,'20854','Connersville','CONNERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6815,'39642','Connolly','CONNOLLY',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6816,'33826','Conover','CONOVER',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6817,'5910','Conques','CONQUES',NULL,'','France','',0,0,76,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6818,'27957','Conrad','CONRAD',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6819,'25294','Conrich','CONRICH',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6820,'30546','Conroe','CONROE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:23','1900-01-01 00:00:00',1,0,1),(6821,'24920','Consejo','CONSEJO',NULL,'','Belize','',0,0,22,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6822,'11864','Conselve','CONSELVE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6823,'43584','Consett','CONSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6824,'29883','Conshohocken','CONSHOHOCKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6825,'25174','Consolacao','CONSOLACAO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6826,'127','Constance','CONSTANCE',NULL,'','Germany','',0,0,83,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6827,'16043','Constancia','CONSTANCIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6828,'16217','Constanta','CONSTANTA',NULL,'','Romania','',0,0,179,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6829,'32445','Constantia','CONSTANTIA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6830,'3215','Constantina','CONSTANTINA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6831,'22035','Constantine','CONSTANTINE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6832,'37362','Constantine','CONSTANTINE',NULL,'','Algeria','',0,0,3,'2016-10-17 10:48:24','1900-01-01 00:00:00',1,0,1),(6833,'6991','Constantine Bay','CONSTANTINE BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6834,'19758','Constitution','CONSTITUTION',NULL,'','United States','',0,0,231,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6835,'37583','Consuegra','CONSUEGRA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6836,'36521','Contadora','CONTADORA',NULL,'','Panama','',0,0,169,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6837,'25081','Contagem','CONTAGEM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6838,'14042','Contepec','CONTEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6839,'23177','Conters','CONTERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6840,'11865','Contessa Entellina','CONTESSA ENTELLINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6841,'6233','Contigne','CONTIGNE',NULL,'','France','',0,0,76,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6842,'9309','Contin','CONTIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6843,'5127','Contrexeville','CONTREXEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6844,'11190','Contursi Terme','CONTURSI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:25','1900-01-01 00:00:00',1,0,1),(6845,'28242','Convent Station','CONVENT STATION',NULL,'','United States','',0,0,231,'2016-10-17 10:48:26','1900-01-01 00:00:00',1,0,1),(6846,'30548','Converse','CONVERSE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:26','1900-01-01 00:00:00',1,0,1),(6847,'18003','Conway','CONWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:26','1900-01-01 00:00:00',1,0,1),(6848,'7886','Conwy','CONWY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:26','1900-01-01 00:00:00',1,0,1),(6849,'19759','Conyers','CONYERS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6850,'29884','Conyngham','CONYNGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6851,'26450','Coober Pedy','COOBER PEDY',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6852,'6992','Cooden','COODEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6853,'26954','Coogee','COOGEE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6854,'26200','Cooinda','COOINDA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6855,'27958','Cooke City','COOKE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:27','1900-01-01 00:00:00',1,0,1),(6856,'33112','Cookeville','COOKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6857,'29885','Cooksburg','COOKSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6858,'28243','Cookstown','COOKSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6859,'7887','Cookstown','COOKSTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6860,'26402','Cooktown','COOKTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6861,'26687','Coolangatta','COOLANGATTA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6862,'26201','Coolangatta-tweed Heads','COOLANGATTA-TWEED HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6863,'10836','Coolock','COOLOCK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6864,'26688','Coolum Beach','COOLUM BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:28','1900-01-01 00:00:00',1,0,1),(6865,'29311','Coolville','COOLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6866,'34141','Cooma','COOMA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6867,'26689','Coomera','COOMERA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6868,'34142','Coonabarabran','COONABARABRAN',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6869,'34143','Coonamble','COONAMBLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6870,'39721','Coonawarra','COONAWARRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6871,'10508','Coonoor','COONOOR',NULL,'','India','Coonoor',18,0,101,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6872,'32219','Cooper Island','COOPER ISLAND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:48:29','1900-01-01 00:00:00',1,0,1),(6873,'17594','Cooper Landing','COOPER LANDING',NULL,'','United States','',0,0,231,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6874,'24879','Cooper\'s Town','COOPER\'S TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6875,'29886','Coopersburg','COOPERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6876,'28719','Cooperstown','COOPERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6877,'22036','Coopersville','COOPERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6878,'34144','Coorabell','COORABELL',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6879,'43375','Coorg','COORG',NULL,'','India','Coorg',17,0,101,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6881,'37214','Cooroy','COOROY',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:30','1900-01-01 00:00:00',1,0,1),(6882,'29643','Coos Bay','COOS BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6883,'34145','Cootamundra','COOTAMUNDRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6884,'10777','Cootehill','COOTEHILL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6885,'24952','Copacabana','COPACABANA',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6886,'31473','Copalis Beach','COPALIS BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6887,'9963','Copan','COPAN',NULL,'','Honduras','',0,0,97,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6888,'11867','Copanello','COPANELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6889,'2142','Copenhagen','COPENHAGEN',NULL,'','Denmark','Copenhagen',0,0,59,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6890,'28721','Copiague','COPIAGUE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6891,'23515','Copiapo','COPIAPO',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6892,'29312','Copley','COPLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:31','1900-01-01 00:00:00',1,0,1),(6893,'38146','Copparo','COPPARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6894,'30549','Coppell','COPPELL',NULL,'','United States','',0,0,231,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6895,'13798','Copper Canyon','COPPER CANYON',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6896,'17595','Copper Center','COPPER CENTER',NULL,'','United States','',0,0,231,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6897,'30550','Copperas Cove','COPPERAS COVE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:32','1900-01-01 00:00:00',1,0,1),(6898,'25794','Coppermine','COPPERMINE',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6899,'18411','Copperopolis','COPPEROPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6900,'23178','Coppet','COPPET',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6901,'6993','Copthorne','COPTHORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6902,'6156','Coquelles','COQUELLES',NULL,'','France','',0,0,76,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6903,'29644','Coquille','COQUILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6904,'23520','Coquimbo','COQUIMBO',NULL,'','Chile','',0,0,45,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6905,'25419','Coquitlam','COQUITLAM',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6906,'42139','Coral Bay','CORAL BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6907,'32233','Coral Bay','CORAL BAY',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6908,'4050','Coral Coast','CORAL COAST',NULL,'','Fiji','',0,0,74,'2016-10-17 10:48:33','1900-01-01 00:00:00',1,0,1),(6909,'25795','Coral Harbour','CORAL HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6910,'20184','Coralville','CORALVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6911,'29887','Coraopolis','CORAOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6912,'11868','Corato','CORATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6913,'6606','Corbas','CORBAS',NULL,'','France','',0,0,76,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6914,'5130','Corbeil-essonnes','CORBEIL-ESSONNES',NULL,'','France','',0,0,76,'2016-10-17 10:48:34','1900-01-01 00:00:00',1,0,1),(6915,'3540','Corbera De Llobregat','CORBERA DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6916,'40637','Corbes','CORBES',NULL,'','France','',0,0,76,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6917,'43374','Corbett','CORBETT',NULL,'','India','',9,0,101,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6918,'44251','Corbetta','CORBETTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6919,'5456','Corbigny','CORBIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6920,'33614','Corbin','CORBIN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6921,'24694','Corbion','CORBION',NULL,'','Belgium','',0,0,21,'2016-10-17 10:48:35','1900-01-01 00:00:00',1,0,1),(6922,'7888','Corbridge','CORBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6923,'7889','Corby','CORBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6924,'38418','Corçà','CORÇÀ',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6925,'11869','Corciano','CORCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6926,'18412','Corcoran','CORCORAN',NULL,'','United States','',0,0,231,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6927,'43211','Corcubion','CORCUBION',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6928,'19760','Cordele','CORDELE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:36','1900-01-01 00:00:00',1,0,1),(6929,'32893','Cordell','CORDELL',NULL,'','United States','',0,0,231,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6930,'5311','Cordes','CORDES',NULL,'','France','',0,0,76,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6931,'3216','Cordoba','CORDOBA',NULL,'','Spain','Cordoba',0,0,199,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6932,'26100','Cordoba','CORDOBA',NULL,'','Argentina','Cordoba',0,0,10,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6933,'14117','Cordoba','CORDOBA',NULL,'','Mexico','Cordoba',0,0,141,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6934,'5847','Cordon','CORDON',NULL,'','France','',0,0,76,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6935,'17597','Cordova','CORDOVA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:37','1900-01-01 00:00:00',1,0,1),(6936,'21854','Corea','COREA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6937,'37778','Coredo','COREDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6938,'40463','Corella','CORELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6939,'6607','Corenc','CORENC',NULL,'','France','',0,0,76,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6940,'9239','Corfe Castle','CORFE CASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6941,'28722','Corfu','CORFU',NULL,'','United States','',0,0,231,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6942,'36359','Corfu-agios Gordis','CORFU-AGIOS GORDIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:38','1900-01-01 00:00:00',1,0,1),(6943,'36369','Corfu-alikes','CORFU-ALIKES',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6944,'36377','Corfu-benitses','CORFU-BENITSES',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6945,'35223','Corfu-dassia','CORFU-DASSIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6946,'35220','Corfu-glyfada','CORFU-GLYFADA',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6947,'35232','Corfu-gouvia','CORFU-GOUVIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6948,'35238','Corfu-ipsos','CORFU-IPSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6949,'35248','Corfu-kanoni','CORFU-KANONI',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6950,'35249','Corfu-kontokali','CORFU-KONTOKALI',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6951,'35289','Corfu-roda','CORFU-RODA',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6952,'42380','Corgarff','CORGARFF',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6953,'11870','Corgeno','CORGENO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6954,'41292','Coria','CORIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6955,'38897','Coriano','CORIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6956,'39357','Corigliano Dotranto','CORIGLIANO DOTRANTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6957,'11871','Corinaldo','CORINALDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:39','1900-01-01 00:00:00',1,0,1),(6958,'31316','Corinth','CORINTH',NULL,'','United States','',0,0,231,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6959,'9448','Corinth','CORINTH',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6960,'10807','Cork','CORK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6961,'37376','Corleone','CORLEONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6962,'42713','Corlette','CORLETTE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6963,'7890','Corley','CORLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6964,'42320','Corlo','CORLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:40','1900-01-01 00:00:00',1,0,1),(6965,'38523','Cormano','CORMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6966,'38531','Cormeilles','CORMEILLES',NULL,'','France','',0,0,76,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6967,'5723','Cormontreuil','CORMONTREUIL',NULL,'','France','',0,0,76,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6968,'43983','Corn Island','CORN ISLAND',NULL,'','Nicaragua','',0,0,158,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6969,'11872','Cornaredo','CORNAREDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6970,'23179','Cornaux','CORNAUX',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6971,'19761','Cornelia','CORNELIA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6972,'33828','Cornelius','CORNELIUS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6973,'41487','Cornella De Llobregat','CORNELLA DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6974,'25652','Corner Brook','CORNER BROOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:41','1900-01-01 00:00:00',1,0,1),(6975,'33115','Cornersville','CORNERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6976,'6994','Cornhill On Tweed','CORNHILL ON TWEED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6977,'11873','Corniglia','CORNIGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6978,'6419','Cornillon-confoux','CORNILLON-CONFOUX',NULL,'','France','',0,0,76,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6979,'20185','Corning','CORNING',NULL,'','United States','',0,0,231,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6980,'32685','Cornish','CORNISH',NULL,'','United States','',0,0,231,'2016-10-17 10:48:42','1900-01-01 00:00:00',1,0,1),(6981,'18122','Cornville','CORNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6982,'34476','Cornwall','CORNWALL',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6983,'6995','Cornwall','CORNWALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6984,'36297','Cornwell','CORNWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6985,'32196','Coro','CORO',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6986,'35939','Coroico','COROICO',NULL,'','Bolivia','',0,0,26,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6987,'33829','Corolla','COROLLA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6988,'15186','Coromandel','COROMANDEL',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6989,'15525','Coron','CORON',NULL,'','Philippines','',0,0,173,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6990,'18414','Corona','CORONA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:43','1900-01-01 00:00:00',1,0,1),(6991,'18415','Coronado','CORONADO',NULL,'','United States','',0,0,231,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6992,'34146','Corowa','COROWA',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6993,'24901','Corozal','COROZAL',NULL,'','Belize','',0,0,22,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6994,'36245','Corps','CORPS',NULL,'','France','',0,0,76,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6995,'30551','Corpus Christi','CORPUS CHRISTI',NULL,'','United States','',0,0,231,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6996,'3802','Corralejo','CORRALEJO',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6997,'28517','Corrales','CORRALES',NULL,'','United States','',0,0,231,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6998,'13800','Corredor','CORREDOR',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(6999,'12957','Correggio','CORREGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:44','1900-01-01 00:00:00',1,0,1),(7000,'4698','Correncon En Vercors','CORRENCON EN VERCORS',NULL,'','France','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7001,'38805','Correns','CORRENS',NULL,'','France','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7002,'5999','Correze','CORREZE',NULL,'','France','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7003,'13801','Corridor','CORRIDOR',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7004,'26107','Corrientes','CORRIENTES',NULL,'','Argentina','',0,0,10,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7005,'41678','Corrubbio Di Negarine','CORRUBBIO DI NEGARINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7006,'26497','Corryong','CORRYONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7007,'11874','Corsano','CORSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7008,'1600','Corse','CORSE',NULL,'','France','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7009,'7891','Corsham','CORSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7010,'1219','Corsica','CORSICA',NULL,'','FRANCE','',0,0,76,'2016-10-17 10:48:45','1900-01-01 00:00:00',1,0,1),(7011,'30553','Corsicana','CORSICANA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7012,'11875','Corsico','CORSICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7013,'7892','Corstorphine','CORSTORPHINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7014,'40717','Cortaillod','CORTAILLOD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7015,'4886','Corte','CORTE',NULL,'','France','',0,0,76,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7016,'40184','Cortegana','CORTEGANA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7017,'38119','Cortemilia','CORTEMILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:46','1900-01-01 00:00:00',1,0,1),(7018,'25420','Cortes Bay','CORTES BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7019,'35024','Cortes De La Fronter','CORTES DE LA FRONTER',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7020,'34745','Cortez','CORTEZ',NULL,'','United States','',0,0,231,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7021,'41024','Cortina Dampezzo','CORTINA DAMPEZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7022,'35475','Cortina-borca Cadore','CORTINA-BORCA CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7023,'28726','Cortland','CORTLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:48:47','1900-01-01 00:00:00',1,0,1),(7024,'28727','Cortlandt','CORTLANDT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7025,'11876','Cortona','CORTONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7026,'40374','Coruche','CORUCHE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7027,'17280','Corum','CORUM',NULL,'','Turkey','',0,0,222,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7028,'25073','Corumba','CORUMBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7029,'27959','Corvallis','CORVALLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7030,'11877','Corvara','CORVARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:48','1900-01-01 00:00:00',1,0,1),(7031,'2602','Corvera','CORVERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7032,'11191','Corviale','CORVIALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7033,'15800','Corvo Island','CORVO ISLAND',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7034,'7893','Corwen','CORWEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7035,'20855','Corydon','CORYDON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7036,'39235','Cosala','COSALA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7037,'33116','Cosby','COSBY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7038,'12705','Cosenza','COSENZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:49','1900-01-01 00:00:00',1,0,1),(7039,'29313','Coshocton','COSHOCTON',NULL,'','United States','',0,0,231,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7040,'2990','Coslada','COSLADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7041,'31474','Cosmopolis','COSMOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7042,'39329','Cosne-cours-sur-loire','COSNE-COURS-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7043,'37787','Cossonay','COSSONAY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7044,'13802','Costa Alegre','COSTA ALEGRE',NULL,'','Mexico','',0,0,141,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7045,'43550','Costa Azul','COSTA AZUL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:48:50','1900-01-01 00:00:00',1,0,1),(7046,'24972','Costa Do Saiupe','COSTA DO SAIUPE',NULL,'','Brazil','',0,0,30,'2016-10-17 10:48:51','1900-01-01 00:00:00',1,0,1),(7047,'11193','Costa Esmeralda','COSTA ESMERALDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:51','1900-01-01 00:00:00',1,0,1),(7048,'18417','Costa Mesa','COSTA MESA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:51','1900-01-01 00:00:00',1,0,1),(7049,'37610','Costa Navarino','COSTA NAVARINO',NULL,'','Greece','',0,0,86,'2016-10-17 10:48:51','1900-01-01 00:00:00',1,0,1),(7050,'35513','Costalunga','COSTALUNGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7051,'11880','Costermano','COSTERMANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7052,'11881','Costigliole D\'asti','COSTIGLIOLE D\'ASTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7053,'15545','Cotabato','COTABATO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7054,'2397','Cotacachi','COTACACHI',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7055,'43947','Cotai','COTAI',NULL,'','Macau','',0,0,128,'2016-10-17 10:48:52','1900-01-01 00:00:00',1,0,1),(7056,'4211','Cote D Emeraude','COTE D EMERAUDE',NULL,'','France','',0,0,76,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7057,'25981','Cote-saint-luc','COTE-SAINT-LUC',NULL,'','Canada','',0,0,39,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7058,'4699','Coti-chiavari','COTI-CHIAVARI',NULL,'','France','',0,0,76,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7059,'24747','Cotonou','COTONOU',NULL,'','Benin','',0,0,23,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7060,'2385','Cotopaxi','COTOPAXI',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7061,'11882','Cotronei','COTRONEI',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:53','1900-01-01 00:00:00',1,0,1),(7062,'33830','Cotswold','COTSWOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7063,'6996','Cotswolds','COTSWOLDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7064,'22351','Cottage Grove','COTTAGE GROVE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7065,'764','Cottbus','COTTBUS',NULL,'','Germany','',0,0,83,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7066,'40028','Cotter','COTTER',NULL,'','United States','',0,0,231,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7067,'39188','Cottesloe','COTTESLOE',NULL,'','Australia','',0,0,13,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7068,'40344','Cottesmore','COTTESMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7069,'17853','Cottondale','COTTONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:54','1900-01-01 00:00:00',1,0,1),(7070,'18123','Cottonwood','COTTONWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:48:55','1900-01-01 00:00:00',1,0,1),(7071,'30554','Cotulla','COTULLA',NULL,'','United States','',0,0,231,'2016-10-17 10:48:55','1900-01-01 00:00:00',1,0,1),(7072,'40425','Couches','COUCHES',NULL,'','France','',0,0,76,'2016-10-17 10:48:55','1900-01-01 00:00:00',1,0,1),(7073,'29888','Coudersport','COUDERSPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:48:55','1900-01-01 00:00:00',1,0,1),(7074,'5387','Coudeville','COUDEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7075,'31475','Cougar','COUGAR',NULL,'','United States','',0,0,231,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7076,'5911','Couiza','COUIZA',NULL,'','France','',0,0,76,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7077,'31476','Coulee City','COULEE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7078,'9265','Coulsdon','COULSDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7079,'18418','Coulterville','COULTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7080,'33117','Counce','COUNCE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:56','1900-01-01 00:00:00',1,0,1),(7081,'20347','Council','COUNCIL',NULL,'','United States','',0,0,231,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7082,'20504','Countryside','COUNTRYSIDE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7083,'1142','Countryside Hotels Uk','COUNTRYSIDE HOTELS UK',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7084,'43186','County Down','COUNTY DOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7085,'7894','Coupar Angus','COUPAR ANGUS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7086,'31478','Coupeville','COUPEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:48:57','1900-01-01 00:00:00',1,0,1),(7087,'43999','Coupvray','COUPVRAY',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7088,'5457','Courban','COURBAN',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7089,'5132','Courbevoie','COURBEVOIE',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7090,'5641','Courcay','COURCAY',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7091,'36248','Courcelles De Tourai','COURCELLES DE TOURAI',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7092,'5642','Courcelles-de-touraine','COURCELLES-DE-TOURAINE',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7093,'4217','Courcelles-sur-vesles','COURCELLES-SUR-VESLES',NULL,'','France','',0,0,76,'2016-10-17 10:48:58','1900-01-01 00:00:00',1,0,1),(7094,'6608','Courchevel','COURCHEVEL',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7095,'6333','Courcon','COURCON',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7096,'4700','Courcouronnes','COURCOURONNES',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7097,'11883','Courmayeur','COURMAYEUR',NULL,'','Italy','',0,0,107,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7098,'40524','Courseulles-sur-mer','COURSEULLES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7099,'5643','Cour-sur-loire','COUR-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7100,'4218','Courtabeufs','COURTABEUFS',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7101,'41551','Courtaboeuf','COURTABOEUF',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7102,'39615','Courtils','COURTILS',NULL,'','France','',0,0,76,'2016-10-17 10:48:59','1900-01-01 00:00:00',1,0,1),(7103,'21182','Coushatta','COUSHATTA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7104,'5388','Coutances','COUTANCES',NULL,'','France','',0,0,76,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7105,'41550','Coutras','COUTRAS',NULL,'','France','',0,0,76,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7106,'23446','Couvet','COUVET',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7107,'5182','Coux-et-bigaroque','COUX-ET-BIGAROQUE',NULL,'','France','',0,0,76,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7108,'42993','Covadonga','COVADONGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7109,'7895','Cove (Aberdeen)','COVE (ABERDEEN)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7110,'43373','Covelong','COVELONG',NULL,'','India','',0,0,101,'2016-10-17 10:49:00','1900-01-01 00:00:00',1,0,1),(7111,'30245','Coventry','COVENTRY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7112,'7896','Coventry','COVENTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7113,'1148','Coventry','COVENTRY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7114,'12963','Covigliaio','COVIGLIAIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7115,'15895','Covilha','COVILHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7116,'18419','Covina','COVINA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7117,'21183','Covington','COVINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:01','1900-01-01 00:00:00',1,0,1),(7118,'33120','Cowan','COWAN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7119,'40437','Cowan Bridge','COWAN BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7120,'25982','Cowansville','COWANSVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7121,'41176','Cowbridge','COWBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7122,'7897','Cowden','COWDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:02','1900-01-01 00:00:00',1,0,1),(7123,'7898','Cowes','COWES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7124,'26498','Cowes','COWES',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7125,'25422','Cowichan Bay','COWICHAN BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7126,'30555','Cowley','COWLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7127,'34147','Cowra','COWRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7128,'6998','Cowshill','COWSHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7129,'24753','Cox\'s Bazar','COX\'S BAZAR',NULL,'','Bangladesh','',0,0,18,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7130,'28728','Coxsackie','COXSACKIE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7131,'23479','Coyhaique','COYHAIQUE',NULL,'','Chile','',0,0,45,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7132,'13971','Coyoacan','COYOACAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7133,'28112','Cozad','COZAD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7134,'13805','Cozumel','COZUMEL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:03','1900-01-01 00:00:00',1,0,1),(7135,'33121','Crab Orchard','CRAB ORCHARD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7136,'26833','Cradle Mountain','CRADLE MOUNTAIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7137,'39915','Cradock','CRADOCK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7138,'26796','Crafers','CRAFERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7139,'31317','Craftsbury','CRAFTSBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7140,'34747','Craig','CRAIG',NULL,'','United States','',0,0,231,'2016-10-17 10:49:04','1900-01-01 00:00:00',1,0,1),(7141,'32309','Craig Cove','CRAIG COVE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7142,'6999','Craigavon','CRAIGAVON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7143,'7899','Craigellachie','CRAIGELLACHIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7144,'7000','Craigleith','CRAIGLEITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7145,'43711','Craiglie','CRAIGLIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7146,'7001','Craiglockhart','CRAIGLOCKHART',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7147,'7900','Craigmillar','CRAIGMILLAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7148,'7901','Craignure','CRAIGNURE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7149,'41175','Crail','CRAIL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7150,'16218','Craiova','CRAIOVA',NULL,'','Romania','',0,0,179,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7151,'5083','Cran Gevrier','CRAN GEVRIER',NULL,'','France','',0,0,76,'2016-10-17 10:49:05','1900-01-01 00:00:00',1,0,1),(7152,'29889','Cranberry','CRANBERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7153,'43558','Cranbook','CRANBOOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7154,'37667','Cranborne','CRANBORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7155,'26499','Cranbourne','CRANBOURNE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7156,'7902','Cranbrook','CRANBROOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7157,'25423','Cranbrook','CRANBROOK',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7158,'28244','Cranbury','CRANBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:06','1900-01-01 00:00:00',1,0,1),(7159,'39170','Crandola Valsassina','CRANDOLA VALSASSINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7160,'31722','Crandon','CRANDON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7161,'30556','Crane','CRANE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7162,'28245','Cranford','CRANFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7163,'7903','Cranford','CRANFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7164,'41549','Cran-gevrier','CRAN-GEVRIER',NULL,'','France','',0,0,76,'2016-10-17 10:49:07','1900-01-01 00:00:00',1,0,1),(7165,'23462','Crans Montana','CRANS MONTANA',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7166,'38679','Cransac','CRANSAC',NULL,'','France','',0,0,76,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7167,'30246','Cranston','CRANSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7168,'11196','Craponi Marina','CRAPONI MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7169,'6609','Craponne','CRAPONNE',NULL,'','France','',0,0,76,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7170,'29648','Crater Lake','CRATER LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7171,'7905','Crathorne','CRATHORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7172,'15803','Crato','CRATO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7173,'11884','Craveggia','CRAVEGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:08','1900-01-01 00:00:00',1,0,1),(7174,'28113','Crawford','CRAWFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7175,'43796','Crawford Bay','CRAWFORD BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7176,'7906','Crawfordsburn','CRAWFORDSBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7177,'20856','Crawfordsville','CRAWFORDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7178,'19318','Crawfordville','CRAWFORDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7179,'24927','Crawl','CRAWL',NULL,'','Bermuda','',0,0,24,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7180,'7907','Crawley','CRAWLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7181,'7908','Crayke','CRAYKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7182,'6334','Crazannes','CRAZANNES',NULL,'','France','',0,0,76,'2016-10-17 10:49:09','1900-01-01 00:00:00',1,0,1),(7183,'28246','Cream Ridge','CREAM RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7184,'5389','Creances','CREANCES',NULL,'','France','',0,0,76,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7185,'7002','Creaton','CREATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7186,'11885','Creazzo','CREAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7187,'41548','Creches-sur-saone','CRECHES-SUR-SAONE',NULL,'','France','',0,0,76,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7188,'39954','Creciente','CRECIENTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7189,'4219','Crecy-la-chapelle','CRECY-LA-CHAPELLE',NULL,'','France','',0,0,76,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7190,'43585','Crediton','CREDITON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7191,'34748','Creede','CREEDE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:10','1900-01-01 00:00:00',1,0,1),(7192,'33831','Creedmoor','CREEDMOOR',NULL,'','United States','',0,0,231,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7193,'13948','Creel','CREEL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7194,'6295','Creil','CREIL',NULL,'','France','',0,0,76,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7195,'40289','Creixell','CREIXELL',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7196,'11886','Cremona','CREMONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7197,'34148','Cremorne','CREMORNE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7198,'39245','Creney-pres-troyes','CRENEY-PRES-TROYES',NULL,'','France','',0,0,76,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7199,'5183','Creon','CREON',NULL,'','France','',0,0,76,'2016-10-17 10:49:11','1900-01-01 00:00:00',1,0,1),(7200,'4220','Crepon','CREPON',NULL,'','France','',0,0,76,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7201,'6296','Crepy-en-valois','CREPY-EN-VALOIS',NULL,'','France','',0,0,76,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7202,'43304','Cres','CRES',NULL,'','Croatia','',0,0,55,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7203,'29649','Crescent','CRESCENT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7204,'25425','Crescent Beach','CRESCENT BEACH',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7205,'20187','Cresco','CRESCO',NULL,'','United States','',0,0,231,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7206,'11887','Crespina','CRESPINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:12','1900-01-01 00:00:00',1,0,1),(7207,'37772','Cresson','CRESSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7208,'23011','Cressy','CRESSY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7209,'34749','Crested Butte','CRESTED BUTTE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7210,'18421','Crestline','CRESTLINE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7211,'20188','Creston','CRESTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7212,'25426','Creston','CRESTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7213,'19320','Crestview','CRESTVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:49:13','1900-01-01 00:00:00',1,0,1),(7214,'6610','Crest-voland','CREST-VOLAND',NULL,'','France','',0,0,76,'2016-10-17 10:49:14','1900-01-01 00:00:00',1,0,1),(7215,'20506','Crestwood','CRESTWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:14','1900-01-01 00:00:00',1,0,1),(7216,'29650','Creswell','CRESWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:49:14','1900-01-01 00:00:00',1,0,1),(7217,'42138','Creswick','CRESWICK',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:14','1900-01-01 00:00:00',1,0,1),(7218,'36361','Crete-agios Nikolaos','CRETE-AGIOS NIKOLAOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7219,'36372','Crete-amoudara','CRETE-AMOUDARA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7220,'35221','Crete-chania','CRETE-CHANIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7221,'35224','Crete-drosia','CRETE-DROSIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7222,'35227','Crete-elounda Beach','CRETE-ELOUNDA BEACH',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7223,'35233','Crete-gouves','CRETE-GOUVES',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7224,'35234','Crete-heraklion','CRETE-HERAKLION',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7225,'35256','Crete-hersonissos','CRETE-HERSONISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7226,'4701','Creteil','CRETEIL',NULL,'','France','',0,0,76,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7227,'35262','Crete-malia','CRETE-MALIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7228,'35281','Crete-panormo','CRETE-PANORMO',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7229,'35287','Crete-rethymnon','CRETE-RETHYMNON',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7230,'35292','Crete-sisi','CRETE-SISI',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7231,'41005','Crete-sissi','CRETE-SISSI',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7232,'35241','Crete-sitia','CRETE-SITIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7233,'35304','Crete-vamos','CRETE-VAMOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7234,'4221','Creuse','CREUSE',NULL,'','France','',0,0,76,'2016-10-17 10:49:15','1900-01-01 00:00:00',1,0,1),(7235,'27619','Creve Coeur','CREVE COEUR',NULL,'','United States','',0,0,231,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7236,'7909','Crewe','CREWE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7237,'7910','Crewkerne','CREWKERNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7238,'7911','Crianlarich','CRIANLARICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7239,'7912','Criccieth','CRICCIETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7240,'25178','Criciuma','CRICIUMA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7241,'7913','Crick','CRICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7242,'7914','Crickhowell','CRICKHOWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:16','1900-01-01 00:00:00',1,0,1),(7243,'7915','Cricklade','CRICKLADE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7244,'5390','Cricqueboeuf','CRICQUEBOEUF',NULL,'','France','',0,0,76,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7245,'7916','Crieff','CRIEFF',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7246,'5805','Criel-sur-mer','CRIEL-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7247,'35327','Crikvenica','CRIKVENICA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7248,'6420','Crillon-le-brave','CRILLON-LE-BRAVE',NULL,'','France','',0,0,76,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7249,'7917','Crinan','CRINAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7250,'34750','Cripple Creek','CRIPPLE CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7251,'21676','Crisfield','CRISFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7252,'23180','Crissier','CRISSIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7253,'41985','Cristiano Otoni','CRISTIANO OTONI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:17','1900-01-01 00:00:00',1,0,1),(7254,'15352','Cristobal','CRISTOBAL',NULL,'','Panama','',0,0,169,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7255,'31723','Crivitz','CRIVITZ',NULL,'','United States','',0,0,231,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7256,'830','Crivitz','CRIVITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7257,'34149','Croa','CROA',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7258,'39719','Croachy','CROACHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7259,'40329','Croagh','CROAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7260,'11198','Croce Di Magara','CROCE DI MAGARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7261,'11888','Crocevie','CROCEVIE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7262,'9841','Crochu','CROCHU',NULL,'','Grenada','',0,0,88,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7263,'30557','Crockett','CROCKETT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7264,'128','Croeffelbach','CROEFFELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:18','1900-01-01 00:00:00',1,0,1),(7265,'1706','Croffelbach','CROFFELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7266,'6611','Crolles','CROLLES',NULL,'','France','',0,0,76,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7267,'7918','Cromarty','CROMARTY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7268,'7919','Cromer','CROMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7269,'19069','Cromwell','CROMWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7270,'15098','Cromwell','CROMWELL',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7271,'9332','Cronton','CRONTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7272,'7920','Crook','CROOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7273,'17600','Crooked Creek','CROOKED CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:49:19','1900-01-01 00:00:00',1,0,1),(7274,'24915','Crooked Tree','CROOKED TREE',NULL,'','Belize','',0,0,22,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7275,'7921','Crooklands','CROOKLANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7276,'22353','Crookston','CROOKSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7277,'11889','Cropani','CROPANI',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7278,'22354','Crosby','CROSBY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7279,'7922','Crosby','CROSBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7280,'7003','Crosby-on-eden','CROSBY-ON-EDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7281,'6234','Crosmieres','CROSMIERES',NULL,'','France','',0,0,76,'2016-10-17 10:49:20','1900-01-01 00:00:00',1,0,1),(7282,'18004','Crossett','CROSSETT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7283,'7004','Crossgates','CROSSGATES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7284,'7923','Crosshouse','CROSSHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7285,'38519','Crosslake','CROSSLAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7286,'33122','Crossville','CROSSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:21','1900-01-01 00:00:00',1,0,1),(7287,'7005','Crosthwaite','CROSTHWAITE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7288,'7924','Croston','CROSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7289,'12706','Crotone','CROTONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7290,'28729','Croton-on-hudson','CROTON-ON-HUDSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7291,'4222','Crots','CROTS',NULL,'','France','',0,0,76,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7292,'6335','Croutelle','CROUTELLE',NULL,'','France','',0,0,76,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7293,'7925','Crowborough','CROWBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:22','1900-01-01 00:00:00',1,0,1),(7294,'30559','Crowley','CROWLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7295,'28730','Crown Point','CROWN POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7296,'17119','Crown Point','CROWN POINT',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7297,'34150','Crows Nest','CROWS NEST',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7298,'7926','Crowthorne','CROWTHORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7299,'7927','Croxdale','CROXDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7300,'7928','Croyde','CROYDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7301,'7929','Croydon','CROYDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:23','1900-01-01 00:00:00',1,0,1),(7302,'26690','Croydon','CROYDON',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7303,'5312','Crozet','CROZET',NULL,'','France','',0,0,76,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7304,'31084','Crozet','CROZET',NULL,'','United States','',0,0,231,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7305,'5530','Crozon','CROZON',NULL,'','France','',0,0,76,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7306,'7930','Crudwell','CRUDWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7307,'37916','Crumlin','CRUMLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7308,'38425','Crump','CRUMP',NULL,'','United States','',0,0,231,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7309,'24707','Crupet','CRUPET',NULL,'','Belgium','',0,0,21,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7310,'6612','Cruseilles','CRUSEILLES',NULL,'','France','',0,0,76,'2016-10-17 10:49:24','1900-01-01 00:00:00',1,0,1),(7311,'32234','Cruz Bay','CRUZ BAY',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7312,'13806','Cruz De Huanacaxtle','CRUZ DE HUANACAXTLE',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7313,'25016','Cruzeiro Do Sul','CRUZEIRO DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7314,'22355','Crystal','CRYSTAL',NULL,'','United States','',0,0,231,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7315,'34151','Crystal Creek','CRYSTAL CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7316,'43809','Crystal Harbour','CRYSTAL HARBOUR',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:49:25','1900-01-01 00:00:00',1,0,1),(7317,'10114','Csepreg','CSEPREG',NULL,'','Hungary','',0,0,99,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7318,'10071','Cserszegtomaj','CSERSZEGTOMAJ',NULL,'','Hungary','',0,0,99,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7319,'35338','Csopak','CSOPAK',NULL,'','Hungary','',0,0,99,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7320,'16980','Cua Dia Beach','CUA DIA BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7321,'41467','Cuacos De Yuste','CUACOS DE YUSTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7322,'13972','Cuajimalpa','CUAJIMALPA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7323,'13959','Cuatrocienegas De Carranza','CUATROCIENEGAS DE CARRANZA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7324,'13935','Cuauhtemoc','CUAUHTEMOC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7325,'13973','Cuautepec','CUAUTEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7326,'41785','Cuautitlan','CUAUTITLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7327,'13960','Cuautla','CUAUTLA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7328,'27620','Cuba','CUBA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:26','1900-01-01 00:00:00',1,0,1),(7329,'7931','Cuckfield','CUCKFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7330,'6157','Cucq','CUCQ',NULL,'','France','',0,0,76,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7331,'40110','Cucugnan','CUCUGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7332,'38966','Cucuron','CUCURON',NULL,'','France','',0,0,76,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7333,'24118','Cucuta','CUCUTA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7334,'18422','Cudahy','CUDAHY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7335,'10509','Cuddapah','CUDDAPAH',NULL,'','India','Cuddapah',7,0,101,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7336,'7932','Cuddington','CUDDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7337,'3084','Cudillero','CUDILLERO',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7338,'38265','Cudrefin','CUDREFIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7339,'26585','Cue','CUE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:27','1900-01-01 00:00:00',1,0,1),(7340,'2391','Cuenca','CUENCA',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7341,'14046','Cuernavaca','CUERNAVACA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7342,'42186','Cuevas De San Marcos','CUEVAS DE SAN MARCOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7343,'23181','Cugy','CUGY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7344,'24961','Cuiaba','CUIABA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7345,'23802','Cuijiazhuang','CUIJIAZHUANG',NULL,'','China','',0,0,46,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7346,'14568','Cuijk','CUIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7347,'5004','Cuincy','CUINCY',NULL,'','France','',0,0,76,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7348,'25898','Cul De Sac','CUL DE SAC',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7349,'9379','Cul De Sac','CUL DE SAC',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7350,'24212','Culebra','CULEBRA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7351,'15747','Culebra','CULEBRA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7352,'14089','Culiacan','CULIACAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:28','1900-01-01 00:00:00',1,0,1),(7353,'7933','Cullen','CULLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7354,'33124','Culleoka','CULLEOKA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7355,'3219','Cullera','CULLERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7356,'43212','Culleredo','CULLEREDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7357,'32557','Cullinan','CULLINAN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7358,'17854','Cullman','CULLMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7359,'37470','Cullompton','CULLOMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7360,'33832','Cullowhee','CULLOWHEE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:29','1900-01-01 00:00:00',1,0,1),(7361,'23182','Cully','CULLY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7362,'31085','Culpeper','CULPEPER',NULL,'','United States','',0,0,231,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7363,'7934','Culrain','CULRAIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7364,'7935','Cultra','CULTRA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7365,'7936','Cults','CULTS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7366,'18423','Cultural District - Japantown','CULTURAL DISTRICT - JAPANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7367,'1435','Cultural Triangle','CULTURAL TRIANGLE',NULL,'','SRI LANKA','',0,0,200,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7368,'20858','Culver','CULVER',NULL,'','United States','',0,0,231,'2016-10-17 10:49:30','1900-01-01 00:00:00',1,0,1),(7369,'32211','Cumana','CUMANA',NULL,'','Venezuela','',0,0,235,'2016-10-17 10:49:31','1900-01-01 00:00:00',1,0,1),(7370,'31724','Cumberland','CUMBERLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:49:31','1900-01-01 00:00:00',1,0,1),(7371,'7937','Cumbernauld','CUMBERNAULD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:31','1900-01-01 00:00:00',1,0,1),(7372,'19764','Cumming','CUMMING',NULL,'','United States','',0,0,231,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7373,'21346','Cummington','CUMMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7374,'7938','Cumnock','CUMNOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7375,'12799','Cuneo','CUNEO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7376,'25200','Cunha','CUNHA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7377,'38869','Cunit','CUNIT',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7378,'26403','Cunnamulla','CUNNAMULLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7379,'40098','Cunovo','CUNOVO',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7380,'43679','Cunungra','CUNUNGRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7381,'38477','Cuorgne','CUORGNE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7382,'7939','Cupar','CUPAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7383,'25899','Cupe Coy','CUPE COY',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:49:32','1900-01-01 00:00:00',1,0,1),(7384,'18425','Cupertino','CUPERTINO',NULL,'','United States','',0,0,231,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7385,'1146','Curacao','CURACAO',NULL,'','CURAÇAO','',0,0,465,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7386,'25897','Curacao','CURACAO',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7387,'15854','Curia','CURIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7388,'36006','Curico','CURICO',NULL,'','Chile','',0,0,45,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7389,'38731','Curiel','CURIEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7390,'39813','Curinga','CURINGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7391,'25112','Curitiba','CURITIBA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7392,'39858','Curno','CURNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7393,'37420','Curon Venosta','CURON VENOSTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7394,'10936','Curragh','CURRAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7395,'26691','Currumbin','CURRUMBIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7396,'38399','Cursi','CURSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:33','1900-01-01 00:00:00',1,0,1),(7397,'11200','Curtatone','CURTATONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7398,'36621','Curtea De Arges','CURTEA DE ARGES',NULL,'','Romania','',0,0,179,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7399,'29314','Curtice','CURTICE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7400,'24163','Curu Reserve','CURU RESERVE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7401,'6336','Curzay-sur-vonne','CURZAY-SUR-VONNE',NULL,'','France','',0,0,76,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7402,'11201','Cusago','CUSAGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7403,'16565','Cuscatlan International Airport (Sal)','CUSCATLAN INTERNATIONAL AIRPORT (SAL)',NULL,'','El Salvador','',0,0,66,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7404,'15368','Cusco','CUSCO',NULL,'','Peru','cusco',0,0,172,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7405,'32894','Cushing','CUSHING',NULL,'','United States','',0,0,231,'2016-10-17 10:49:34','1900-01-01 00:00:00',1,0,1),(7406,'33001','Custer','CUSTER',NULL,'','United States','',0,0,231,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7407,'11890','Custonaci','CUSTONACI',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7408,'28732','Cutchogue','CUTCHOGUE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7409,'19765','Cuthbert','CUTHBERT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7410,'11891','Cutigliano','CUTIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7411,'39370','Cutler','CUTLER',NULL,'','United States','',0,0,231,'2016-10-17 10:49:35','1900-01-01 00:00:00',1,0,1),(7412,'26130','Cutral','CUTRAL',NULL,'','Argentina','',0,0,10,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7413,'39106','Cutro','CUTRO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7414,'40633','Cutrofiano','CUTROFIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7415,'40806','Cuttack','CUTTACK',NULL,'','India','Cuttack',8,0,101,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7416,'27197','Cuxhaven','CUXHAVEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7417,'29315','Cuyahoga Falls','CUYAHOGA FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7418,'15526','Cuyo','CUYO',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7419,'13966','Cuyutlan','CUYUTLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7420,'868','Cuzco','CUZCO',NULL,'','Peru','',0,0,172,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7421,'7007','Cwmbran','CWMBRAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7422,'14298','Cyberjaya','CYBERJAYA',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7423,'1151','Cyclades','CYCLADES',NULL,'','GREECE','',0,0,86,'2016-10-17 10:49:36','1900-01-01 00:00:00',1,0,1),(7424,'18426','Cypress','CYPRESS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7425,'1685','Cyprus','CYPRUS',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7426,'44042','Czeladz','CZELADZ',NULL,'','Poland','',0,0,174,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7427,'15615','Czestochowa','CZESTOCHOWA',NULL,'','Poland','Czestochowa',0,0,174,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7428,'38366','Czorsztyn','CZORSZTYN',NULL,'','Poland','',0,0,174,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7429,'27848','D Iberville','D IBERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7430,'42839','Dabong','DABONG',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7431,'22728','Dachau','DACHAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7432,'16431','Dachnoye','DACHNOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7433,'39043','Daday','DADAY',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7434,'19324','Dade City','DADE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7435,'17856','Dadeville','DADEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:37','1900-01-01 00:00:00',1,0,1),(7436,'23570','Dadonghai','DADONGHAI',NULL,'','China','',0,0,46,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7437,'13490','Daegu','DAEGU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7438,'35800','Daegu','DAEGU',NULL,'','South Korea','',0,0,197,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7439,'35817','Daejeon','DAEJEON',NULL,'','South Korea','',0,0,197,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7440,'15496','Daet','DAET',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7441,'23677','Dagang','DAGANG',NULL,'','China','',0,0,46,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7442,'18427','Daggett','DAGGETT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7443,'15436','Dagupan','DAGUPAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7444,'2420','Dahab','DAHAB',NULL,'','Egypt','',0,0,65,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7445,'39818','Dahej','DAHEJ',NULL,'','India','',0,0,101,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7446,'27198','Dahlem','DAHLEM',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7447,'1967','Dahlewitz','DAHLEWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7448,'31086','Dahlgren','DAHLGREN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7449,'19766','Dahlonega','DAHLONEGA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:38','1900-01-01 00:00:00',1,0,1),(7450,'41029','Dahlwitz Hoppegarten','DAHLWITZ HOPPEGARTEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7451,'765','Dahlwitz-hoppegarten','DAHLWITZ-HOPPEGARTEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7452,'618','Dahn','DAHN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7453,'23887','Dahongmen','DAHONGMEN',NULL,'','China','',0,0,46,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7454,'13228','Daigo','DAIGO',NULL,'','Japan','',0,0,110,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7455,'36299','Dailly','DAILLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7456,'3405','Daimiel','DAIMIEL',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7457,'26692','Daintree','DAINTREE',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7458,'5458','Daix','DAIX',NULL,'','France','',0,0,76,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7459,'42086','Dak Lak','DAK LAK',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7460,'16520','Dakar','DAKAR',NULL,'','Senegal','',0,0,187,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7461,'13675','Dakhla','DAKHLA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7462,'42424','Dakhla Oasis','DAKHLA OASIS',NULL,'','Egypt','',0,0,65,'2016-10-17 10:49:39','1900-01-01 00:00:00',1,0,1),(7463,'39976','Dakota Dunes','DAKOTA DUNES',NULL,'','United States','',0,0,231,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7464,'17201','Dalaman','DALAMAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7465,'23954','Dalang','DALANG',NULL,'','China','',0,0,46,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7466,'16664','Dalarna - Gavlebourg','DALARNA - GAVLEBOURG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7467,'41853','Dalat','DALAT',NULL,'','Vietnam','',0,0,236,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7468,'15297','Dalbandin','DALBANDIN',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7469,'7940','Dalbeattie','DALBEATTIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7470,'26693','Dalby','DALBY',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7471,'21185','Dalcour','DALCOUR',NULL,'','United States','',0,0,231,'2016-10-17 10:49:40','1900-01-01 00:00:00',1,0,1),(7472,'25295','Dalemead','DALEMEAD',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7473,'15000','Dalen','DALEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7474,'20860','Daleville','DALEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7475,'40503','Dalfsen','DALFSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7476,'30561','Dalhart','DALHART',NULL,'','United States','',0,0,231,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7477,'34396','Dalhousie','DALHOUSIE',NULL,'','Canada','Dalhousie',0,0,39,'2016-10-17 10:49:41','1900-01-01 00:00:00',1,0,1),(7478,'10510','Dalhousie','DALHOUSIE',NULL,'','India','Dalhousie',1,0,101,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7479,'23945','Dali','DALI',NULL,'','China','',0,0,46,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7480,'23868','Dalian','DALIAN',NULL,'','China','',0,0,46,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7481,'23955','Daliang','DALIANG',NULL,'','China','',0,0,46,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7482,'14299','Dalit Beach','DALIT BEACH',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7483,'7941','Dalkeith','DALKEITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7484,'10837','Dalkey','DALKEY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7485,'29652','Dallas','DALLAS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:42','1900-01-01 00:00:00',1,0,1),(7486,'30564','Dallas-fort Worth International Airport (Dfw)','DALLAS-FORT WORTH INTERNATIONAL AIRPORT (DFW)',NULL,'','United States','',0,0,231,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7487,'23183','Dallenwil','DALLENWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7488,'40080','Dallgow-doberitz','DALLGOW-DOBERITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7489,'37231','Dallikon','DALLIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7490,'41173','Dalmally','DALMALLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7491,'43228','Dalmatian Riviera','DALMATIAN RIVIERA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7492,'11892','Dalmine','DALMINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:43','1900-01-01 00:00:00',1,0,1),(7493,'7942','Dalry','DALRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7494,'19768','Dalton','DALTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7495,'7943','Dalwhinnie','DALWHINNIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7496,'30565','Dalworthington Gardens','DALWORTHINGTON GARDENS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7497,'18428','Daly City','DALY CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7498,'17202','Dalyan','DALYAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7499,'14300','Damai Beach','DAMAI BEACH',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:44','1900-01-01 00:00:00',1,0,1),(7500,'10702','Daman','DAMAN',NULL,'','India','Daman',37,0,101,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7501,'36440','Damaraland','DAMARALAND',NULL,'','Namibia','',0,0,151,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7502,'21855','Damariscotta','DAMARISCOTTA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7503,'43838','Damas','DAMAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7504,'16925','Damascus','DAMASCUS',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7505,'38451','Damasta','DAMASTA',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7506,'13600','Dambulla','DAMBULLA',NULL,'','Sri Lanka',' Dambulla',0,0,200,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7507,'5531','Damgan','DAMGAN',NULL,'','France','',0,0,76,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7508,'36657','Dammam','DAMMAM',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7509,'16488','Damman','DAMMAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7510,'5096','Dammarie Les Lys','DAMMARIE LES LYS',NULL,'','France','',0,0,76,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7511,'41546','Dammarie-les-lys','DAMMARIE-LES-LYS',NULL,'','France','',0,0,76,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7512,'24695','Damme','DAMME',NULL,'','Belgium','',0,0,21,'2016-10-17 10:49:45','1900-01-01 00:00:00',1,0,1),(7513,'704','Damp','DAMP',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7514,'26586','Dampier','DAMPIER',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7515,'5772','Dampierre-sur-salon','DAMPIERRE-SUR-SALON',NULL,'','France','',0,0,76,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7516,'16981','Dan Markham Tia','DAN MARKHAM TIA',NULL,'','Thailand','',0,0,215,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7517,'18429','Dana Point','DANA POINT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7518,'37085','Danang','DANANG',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7519,'31725','Danbury','DANBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:46','1900-01-01 00:00:00',1,0,1),(7520,'7008','Danby','DANBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7521,'31318','Danby','DANBY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7522,'40844','Dandeli','DANDELI',NULL,'','India','',0,0,101,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7523,'26500','Dandenong','DANDENONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7524,'16818','Danderyd','DANDERYD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7525,'23869','Dandong','DANDONG',NULL,'','China','',0,0,46,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7526,'33126','Dandridge','DANDRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7527,'31726','Dane County Regional Airport (Msn)','DANE COUNTY REGIONAL AIRPORT (MSN)',NULL,'','United States','',0,0,231,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7528,'27199','Dangast','DANGAST',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:47','1900-01-01 00:00:00',1,0,1),(7529,'24922','Dangriga','DANGRIGA',NULL,'','Belize','',0,0,22,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7530,'36884','Dania','DANIA',NULL,'','United States','',0,0,231,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7531,'31970','Daniels','DANIELS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7532,'19072','Danielson','DANIELSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7533,'5773','Danjoutin','DANJOUTIN',NULL,'','France','',0,0,76,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7534,'17445','Danshuei','DANSHUEI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7535,'42304','Danshui','DANSHUI',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7536,'28733','Dansville','DANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:48','1900-01-01 00:00:00',1,0,1),(7537,'26980','Danubian Plains And Plateaus','DANUBIAN PLAINS AND PLATEAUS',NULL,'','Austria','',0,0,14,'2016-10-17 10:49:49','1900-01-01 00:00:00',1,0,1),(7538,'21348','Danvers','DANVERS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:49','1900-01-01 00:00:00',1,0,1),(7539,'31319','Danville','DANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:49','1900-01-01 00:00:00',1,0,1),(7540,'17858','Daphne','DAPHNE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:50','1900-01-01 00:00:00',1,0,1),(7541,'9450','Daphni','DAPHNI',NULL,'','Greece','',0,0,86,'2016-10-17 10:49:50','1900-01-01 00:00:00',1,0,1),(7542,'15509','Dapitan','DAPITAN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:50','1900-01-01 00:00:00',1,0,1),(7543,'42676','Dapoli','DAPOLI',NULL,'','India','Dapoli',5,0,101,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7544,'36021','Daqing','DAQING',NULL,'','China','',0,0,46,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7545,'17455','Dar Es Salaam','DAR ES SALAAM',NULL,'','Tanzania','',0,0,214,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7546,'10625','Darbhanga','DARBHANGA',NULL,'','India','',0,0,101,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7547,'27961','Darby','DARBY',NULL,'','United States','',0,0,231,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7548,'18431','Dardanelle','DARDANELLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:51','1900-01-01 00:00:00',1,0,1),(7549,'6613','Dardilly','DARDILLY',NULL,'','France','',0,0,76,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7550,'9333','Daresbury','DARESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7551,'36836','Dar-es-salaam','DAR-ES-SALAAM',NULL,'','Tanzania','',0,0,214,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7552,'11202','Darfo Boario Terme','DARFO BOARIO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7553,'43015','Dargaville','DARGAVILLE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7554,'39433','Dargle','DARGLE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7555,'20509','Darien','DARIEN',NULL,'','United States','',0,0,231,'2016-10-17 10:49:52','1900-01-01 00:00:00',1,0,1),(7556,'10407','Darjeeling','DARJEELING',NULL,'','India','Darjeeling',12,0,101,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7557,'26202','Darling Downs','DARLING DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7558,'39004','Darlinghurst','DARLINGHURST',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7559,'34154','Darlington','DARLINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7560,'21679','Darlington','DARLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7561,'7944','Darlington','DARLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7562,'40200','Darlowo','DARLOWO',NULL,'','Poland','',0,0,174,'2016-10-17 10:49:53','1900-01-01 00:00:00',1,0,1),(7563,'410','Darmstadt','DARMSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7564,'26203','Darnley Island','DARNLEY ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7565,'39033','Daroca','DAROCA',NULL,'','Spain','',0,0,199,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7566,'21186','Darrow','DARROW',NULL,'','United States','',0,0,231,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7567,'9267','Dartford','DARTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7568,'7010','Dartmeet','DARTMEET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7569,'7011','Dartmoor','DARTMOOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7570,'25705','Dartmouth','DARTMOUTH',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7571,'7945','Dartmouth','DARTMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7572,'21349','Dartmouth','DARTMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 10:49:54','1900-01-01 00:00:00',1,0,1),(7573,'9252','Darwen','DARWEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7574,'26641','Darwin','DARWIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7575,'35930','Darwin-airport','DARWIN-AIRPORT',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7576,'40845','Dasada','DASADA',NULL,'','India','',16,0,101,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7577,'44309','Dashoguz','DASHOGUZ',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7578,'38949','Dashu','DASHU',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7579,'22729','Dasing','DASING',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7580,'41447','Dasman','DASMAN',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7581,'15446','Dasmarinas Village','DASMARINAS VILLAGE',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7582,'831','Dassow','DASSOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7583,'10153','Datadawai','DATADAWAI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7584,'14301','Datai Bay','DATAI BAY',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7585,'17338','Datca','DATCA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7586,'7946','Datchet','DATCHET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:55','1900-01-01 00:00:00',1,0,1),(7587,'42867','Date','DATE',NULL,'','Japan','',0,0,110,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7588,'32348','Dathina','DATHINA',NULL,'','Yemen','',0,0,240,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7589,'23915','Datong','DATONG',NULL,'','China','',0,0,46,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7590,'26204','Dauan Island','DAUAN ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7591,'13667','Daugavpils','DAUGAVPILS',NULL,'','Latvia','',0,0,119,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7592,'15524','Dauin','DAUIN',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7593,'619','Daun','DAUN',NULL,'','Germany','',0,0,83,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7594,'25591','Dauphin','DAUPHIN',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7595,'17859','Dauphin Island','DAUPHIN ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7596,'40807','Dausa','DAUSA',NULL,'','India','Dausa',2,0,101,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7597,'15546','Davao','DAVAO',NULL,'','Philippines','Davao',0,0,173,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7598,'36556','Davao-samal Island','DAVAO-SAMAL ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7599,'19326','Davenport','DAVENPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:49:56','1900-01-01 00:00:00',1,0,1),(7600,'7947','Daventry','DAVENTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7601,'40370','Daveyton','DAVEYTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7602,'6614','Davezieux','DAVEZIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7603,'15349','David','DAVID',NULL,'','Panama','',0,0,169,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7604,'33833','Davidson','DAVIDSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7605,'19327','Davie','DAVIE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7606,'7948','Daviot','DAVIOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:57','1900-01-01 00:00:00',1,0,1),(7607,'32895','Davis','DAVIS',NULL,'','United States','',0,0,231,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7608,'22038','Davison','DAVISON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7609,'23012','Davos','DAVOS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7610,'23013','Davos-dorf','DAVOS-DORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7611,'23014','Davos-platz','DAVOS-PLATZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7612,'40151','Davutlar','DAVUTLAR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7613,'16489','Dawadmi','DAWADMI',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7614,'7949','Dawlish','DAWLISH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7615,'25888','Dawn Beach','DAWN BEACH',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 10:49:58','1900-01-01 00:00:00',1,0,1),(7616,'19771','Dawson','DAWSON',NULL,'','United States','',0,0,231,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7617,'22977','Dawson City','DAWSON CITY',NULL,'','Canada','',0,0,39,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7618,'19772','Dawsonville','DAWSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7619,'23678','Dawuji','DAWUJI',NULL,'','China','',0,0,46,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7620,'4964','Dax','DAX',NULL,'','France','',0,0,76,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7621,'23991','Daxian','DAXIAN',NULL,'','China','',0,0,46,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7622,'23572','Daya Bay','DAYA BAY',NULL,'','China','',0,0,46,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7623,'26205','Daydream Island','DAYDREAM ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:49:59','1900-01-01 00:00:00',1,0,1),(7624,'26895','Daylesford','DAYLESFORD',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:00','1900-01-01 00:00:00',1,0,1),(7625,'17536','Dayman','DAYMAN',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:50:00','1900-01-01 00:00:00',1,0,1),(7626,'1747','Dayong','DAYONG',NULL,'','China','',0,0,46,'2016-10-17 10:50:00','1900-01-01 00:00:00',1,0,1),(7627,'33127','Dayton','DAYTON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:00','1900-01-01 00:00:00',1,0,1),(7628,'1154','Daytona Area - Fl','DAYTONA AREA - FL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:01','1900-01-01 00:00:00',1,0,1),(7629,'39673','Dayuan','DAYUAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:50:01','1900-01-01 00:00:00',1,0,1),(7630,'29653','Dayville','DAYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:01','1900-01-01 00:00:00',1,0,1),(7631,'43903','Dazaifu','DAZAIFU',NULL,'','Japan','',0,0,110,'2016-10-17 10:50:01','1900-01-01 00:00:00',1,0,1),(7632,'36022','Dazu','DAZU',NULL,'','China','',0,0,46,'2016-10-17 10:50:02','1900-01-01 00:00:00',1,0,1),(7633,'43146','Dbayeh','DBAYEH',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:50:02','1900-01-01 00:00:00',1,0,1),(7634,'23','Dead Mans Flats','DEAD MANS FLATS',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7635,'35703','Dead Sea','DEAD SEA',NULL,'','Jordan','',0,0,111,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7636,'11034','Dead Sea','DEAD SEA',NULL,'','Israel','',0,0,106,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7637,'24862','Deadmans Cay','DEADMANS CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7638,'33004','Deadwood','DEADWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:03','1900-01-01 00:00:00',1,0,1),(7639,'7950','Deal','DEAL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7640,'21680','Deale','DEALE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7641,'7951','Deanshanger','DEANSHANGER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7642,'22039','Dearborn','DEARBORN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7643,'25428','Dease Lake','DEASE LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7644,'18433','Death Valley','DEATH VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:04','1900-01-01 00:00:00',1,0,1),(7645,'4869','Deauville','DEAUVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7646,'41334','Deba','DEBA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7647,'17601','Debarr Vista','DEBARR VISTA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7648,'19332','Debary','DEBARY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7649,'15686','Debica','DEBICA',NULL,'','Poland','',0,0,174,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7650,'3845','Debra Marcos','DEBRA MARCOS',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7651,'10087','Debrecen','DEBRECEN',NULL,'','Hungary','',0,0,99,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7652,'28736','Debruce','DEBRUCE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:05','1900-01-01 00:00:00',1,0,1),(7653,'20511','Decatur','DECATUR',NULL,'','United States','',0,0,231,'2016-10-17 10:50:06','1900-01-01 00:00:00',1,0,1),(7654,'33128','Decherd','DECHERD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7655,'24356','Decin','DECIN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7656,'6615','Decines-charpieu','DECINES-CHARPIEU',NULL,'','France','',0,0,76,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7657,'30569','Decker Prairie','DECKER PRAIRIE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7658,'20193','Decorah','DECORAH',NULL,'','United States','',0,0,231,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7659,'9318','Deddington','DEDDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:07','1900-01-01 00:00:00',1,0,1),(7660,'43692','Dededo','DEDEDO',NULL,'','Guam','',0,0,90,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7661,'7952','Dedham','DEDHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7662,'21350','Dedham','DEDHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7663,'16365','Dedovsk','DEDOVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7664,'25653','Deer Lake','DEER LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:08','1900-01-01 00:00:00',1,0,1),(7665,'29319','Deerfield','DEERFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:09','1900-01-01 00:00:00',1,0,1),(7666,'38049','Deerhurst','DEERHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:10','1900-01-01 00:00:00',1,0,1),(7667,'17602','Deering','DEERING',NULL,'','United States','',0,0,231,'2016-10-17 10:50:10','1900-01-01 00:00:00',1,0,1),(7668,'22356','Deerwood','DEERWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:10','1900-01-01 00:00:00',1,0,1),(7669,'44188','Deeside','DEESIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7670,'29320','Defiance','DEFIANCE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7671,'3846','Degahbur','DEGAHBUR',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7672,'37256','Degania Bet','DEGANIA BET',NULL,'','Israel','',0,0,106,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7673,'7953','Deganwy','DEGANWY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7674,'43712','Degarra','DEGARRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7675,'3960','Degero','DEGERO',NULL,'','Finland','',0,0,75,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7676,'22730','Deggendorf','DEGGENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7677,'16388','Degunino','DEGUNINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7678,'41828','Dehesa De Campoamor','DEHESA DE CAMPOAMOR',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:11','1900-01-01 00:00:00',1,0,1),(7680,'10408','Dehradun','DEHRADUN',NULL,'','India','Dehradun',9,0,101,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7681,'43484','Deia','DEIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7682,'620','Deidesheim','DEIDESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7683,'36715','Deie Ez Zor','DEIE EZ ZOR',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7684,'1274','Deir Ez Zor','DEIR EZ ZOR',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7685,'16927','Deirezzor','DEIREZZOR',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7686,'129','Deisslingen','DEISSLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7687,'11893','Deiva Marina','DEIVA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7688,'20513','Dekalb','DEKALB',NULL,'','United States','',0,0,231,'2016-10-17 10:50:12','1900-01-01 00:00:00',1,0,1),(7689,'25296','Delacour','DELACOUR',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7690,'31730','Delafield','DELAFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7691,'19335','Deland','DELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7692,'18435','Delano','DELANO',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7693,'31731','Delavan','DELAVAN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7694,'29322','Delaware','DELAWARE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:13','1900-01-01 00:00:00',1,0,1),(7695,'27343','Delbruck','DELBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7696,'14747','Delden','DELDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7697,'42306','Delemont','DELEMONT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7698,'14710','Delft','DELFT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7699,'10958','Delgany','DELGANY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7700,'28738','Delhi Hills','DELHI',NULL,'','United States','',0,0,231,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7701,'130443','Delhi','DELHI',NULL,'','India','Tour and Travel packages Delhi | New Delhi Holiday',4,0,101,'2016-10-17 10:50:14','1900-01-01 00:00:00',1,0,1),(7702,'2107','Delices','DELICES',NULL,'','Dominica','',0,0,500,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7703,'13897','Delicias','DELICIAS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7704,'25761','Deline','DELINE',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7705,'10131','Delitua','DELITUA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7706,'1874','Delitzsch','DELITZSCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7707,'1707','Delitzsch-leipzig','DELITZSCH-LEIPZIG',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7708,'39653','Delley-portalban','DELLEY-PORTALBAN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7709,'29324','Dellroy','DELLROY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:15','1900-01-01 00:00:00',1,0,1),(7710,'21681','Delmar','DELMAR',NULL,'','United States','',0,0,231,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7711,'27200','Delmenhorst','DELMENHORST',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7712,'29895','Delmont','DELMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7713,'26834','Deloraine','DELORAINE',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7714,'9452','Delphi','DELPHI',NULL,'','Greece','Delphi',0,0,86,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7715,'29326','Delphos','DELPHOS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:16','1900-01-01 00:00:00',1,0,1),(7716,'25429','Delta','DELTA',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7717,'34752','Delta','DELTA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7718,'26206','Delta Downs','DELTA DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7719,'2611','Deltebre','DELTEBRE',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7720,'19337','Deltona','DELTONA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7721,'10511','Delwara','DELWARA',NULL,'','India','',0,0,101,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7722,'3847','Dembidollo','DEMBIDOLLO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:17','1900-01-01 00:00:00',1,0,1),(7723,'28518','Deming','DEMING',NULL,'','United States','',0,0,231,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7724,'44000','Demi-quartier','DEMI-QUARTIER',NULL,'','France','',0,0,76,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7725,'17861','Demopolis','DEMOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7726,'37451','Demre','DEMRE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7727,'17604','Denali','DENALI',NULL,'','United States','',0,0,231,'2016-10-17 10:50:18','1900-01-01 00:00:00',1,0,1),(7728,'4051','Denarau Island','DENARAU ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7729,'7954','Denbigh','DENBIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7730,'38516','Denby Dale','DENBY DALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7731,'36024','Dengfeng','DENGFENG',NULL,'','China','',0,0,46,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7732,'7955','Denham','DENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7733,'26587','Denham','DENHAM',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7734,'21189','Denham Springs','DENHAM SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7735,'3749','Denia','DENIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7736,'34155','Deniliquin','DENILIQUIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:19','1900-01-01 00:00:00',1,0,1),(7737,'16915','Denis Island','DENIS ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7738,'30573','Denison','DENISON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7739,'17283','Denizli','DENIZLI',NULL,'','Turkey','Denizli',0,0,222,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7740,'17203','Denizyaka','DENIZYAKA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7741,'33129','Denmark','DENMARK',NULL,'','United States','',0,0,231,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7742,'26588','Denmark','DENMARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7743,'39030','Denneville','DENNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:50:20','1900-01-01 00:00:00',1,0,1),(7744,'21352','Dennis','DENNIS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:21','1900-01-01 00:00:00',1,0,1),(7745,'41172','Denny','DENNY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:21','1900-01-01 00:00:00',1,0,1),(7746,'10274','Denpasar','DENPASAR',NULL,'','Indonesia','Denpasar',0,0,102,'2016-10-17 10:50:21','1900-01-01 00:00:00',1,0,1),(7747,'7956','Denton','DENTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:21','1900-01-01 00:00:00',1,0,1),(7748,'34753','Denver','DENVER',NULL,'','United States','',0,0,231,'2016-10-17 10:50:22','1900-01-01 00:00:00',1,0,1),(7749,'28248','Denville','DENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:22','1900-01-01 00:00:00',1,0,1),(7751,'40846','Deogarh','DEOGARH',NULL,'','India','',0,0,101,'2016-10-17 10:50:22','1900-01-01 00:00:00',1,0,1),(7752,'29654','Depoe Bay','DEPOE BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7753,'43045','Depok','DEPOK',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7754,'28739','Deposit','DEPOSIT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7755,'7957','Deptford','DEPTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7756,'28249','Deptford','DEPTFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7757,'23956','Deqing','DEQING',NULL,'','China','',0,0,46,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7758,'1666','Dera Ghazi Khan','DERA GHAZI KHAN',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7759,'7958','Derby','DERBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7760,'26477','Derby','DERBY',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7761,'38896','Derchigny','DERCHIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:50:23','1900-01-01 00:00:00',1,0,1),(7762,'40330','Derenburg','DERENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7763,'27344','Derendorf','DERENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7764,'21190','Deridder','DERIDDER',NULL,'','United States','',0,0,231,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7765,'3703','Derio','DERIO',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7766,'13560','Derna','DERNA',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7767,'411','Dernbach','DERNBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7768,'1533','Derry','DERRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7769,'1543','Derry','DERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7770,'1272','Derry-n.irl','DERRY-N.IRL',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7771,'705','Dersau','DERSAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7772,'11894','Deruta','DERUTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7773,'31481','Des Moines','DES MOINES',NULL,'','United States','',0,0,231,'2016-10-17 10:50:24','1900-01-01 00:00:00',1,0,1),(7774,'10154','Desa Sanda','DESA SANDA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:50:25','1900-01-01 00:00:00',1,0,1),(7775,'7959','Desborough','DESBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:25','1900-01-01 00:00:00',1,0,1),(7776,'38999','Descanso','DESCANSO',NULL,'','United States','',0,0,231,'2016-10-17 10:50:25','1900-01-01 00:00:00',1,0,1),(7777,'38603','Dese','DESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7778,'11895','Desenzano Del Garda','DESENZANO DEL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7779,'18436','Desert','DESERT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7780,'10411','Desert National Park','DESERT NATIONAL PARK',NULL,'','India','',0,0,101,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7781,'9380','Deshaies','DESHAIES',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7782,'27622','Desloge','DESLOGE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:26','1900-01-01 00:00:00',1,0,1),(7783,'30577','Desoto','DESOTO',NULL,'','United States','',0,0,231,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7784,'43571','Despenaderos','DESPENADEROS',NULL,'','Argentina','',0,0,10,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7785,'16916','Desroches Island','DESROCHES ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7786,'1929','Dessau','DESSAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7787,'3848','Dessie','DESSIE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7788,'19338','Destin','DESTIN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7789,'6158','Desvres','DESVRES',NULL,'','France','',0,0,76,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7790,'32657','Dete','DETE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7791,'27345','Detmold','DETMOLD',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7792,'22042','Detroit','DETROIT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:27','1900-01-01 00:00:00',1,0,1),(7793,'36892','Detroit-wayne County','DETROIT-WAYNE COUNTY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7794,'22731','Dettelbach','DETTELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7795,'4052','Deuba','DEUBA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7796,'26981','Deutsch Wagram','DEUTSCH WAGRAM',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7797,'4224','Deux-sevres','DEUX-SEVRES',NULL,'','France','',0,0,76,'2016-10-17 10:50:28','1900-01-01 00:00:00',1,0,1),(7798,'3086','Deva','DEVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7799,'16219','Deva','DEVA',NULL,'','Romania','',0,0,179,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7800,'40629','Devanahalli','DEVANAHALLI',NULL,'','India','',0,0,101,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7801,'14748','Deventer','DEVENTER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7802,'40847','Devigarh','DEVIGARH',NULL,'','India','',0,0,101,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7803,'7960','Devils Bridge','DEVILS BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7804,'9884','Devils Island','DEVILS ISLAND',NULL,'','French Guiana','',0,0,77,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7805,'28051','Devils Lake','DEVILS LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7806,'24806','Devin','DEVIN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7807,'7961','Devizes','DEVIZES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7808,'25297','Devon','DEVON',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:29','1900-01-01 00:00:00',1,0,1),(7809,'43312','Devon-moretonhampstead','DEVON-MORETONHAMPSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7810,'15099','Devonport','DEVONPORT',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7811,'26835','Devonport','DEVONPORT',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7812,'24928','Devonshire','DEVONSHIRE',NULL,'','Bermuda','',0,0,24,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7813,'32897','Dewey','DEWEY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7814,'22045','Dewitt','DEWITT',NULL,'','United States','',0,0,231,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7815,'21858','Dexter','DEXTER',NULL,'','United States','',0,0,231,'2016-10-17 10:50:30','1900-01-01 00:00:00',1,0,1),(7816,'2896','Deya','DEYA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7817,'23992','Deyang','DEYANG',NULL,'','China','',0,0,46,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7818,'43820','Dezhou','DEZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7819,'16490','Dhahran','DHAHRAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7820,'24765','Dhaka','DHAKA',NULL,'','Bangladesh','',0,0,18,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7821,'10512','Dhanbad','DHANBAD',NULL,'','India','',0,0,101,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7822,'30578','D\'hanis','D\'HANIS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7823,'42606','Dhar','DHAR',NULL,'','India','Dhar',15,0,101,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7824,'40848','Dharamsala','DHARAMSALA',NULL,'','India','',0,0,101,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7826,'37406','Dhekelia','DHEKELIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:50:31','1900-01-01 00:00:00',1,0,1),(7827,'43742','Dhela','DHELA',NULL,'','India','',0,0,101,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7828,'13723','Dhidhoofinolhu','DHIDHOOFINOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7829,'37876','Dhiffushi','DHIFFUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7830,'13724','Dhigufinolhu','DHIGUFINOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7831,'10412','Dhikuli','DHIKULI',NULL,'','India','',0,0,101,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7832,'40849','Dholpur','DHOLPUR',NULL,'','India','',0,0,101,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7833,'13725','Dhonakulhi','DHONAKULHI',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7834,'43185','Dhour Shweir','DHOUR SHWEIR',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7835,'36503','Dhulikhel','DHULIKHEL',NULL,'','Nepal','',0,0,153,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7836,'13726','Dhunikolhu','DHUNIKOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7837,'9799','Diafani','DIAFANI',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7838,'38917','Diakofti','DIAKOFTI',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7839,'9453','Diakofto','DIAKOFTO',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7840,'11896','Diamante','DIAMANTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7841,'41986','Diamantina','DIAMANTINA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7842,'37746','Diamond Beach','DIAMOND BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:32','1900-01-01 00:00:00',1,0,1),(7843,'10687','Diamond Harbour','DIAMOND HARBOUR',NULL,'','India','',0,0,101,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7844,'27849','Diamondhead','DIAMONDHEAD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7845,'32089','Diamondville','DIAMONDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7846,'23573','Diancun','DIANCUN',NULL,'','China','',0,0,46,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7847,'11897','Diano Marina','DIANO MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7848,'15277','Dibaa','DIBAA',NULL,'','Oman','',0,0,165,'2016-10-17 10:50:33','1900-01-01 00:00:00',1,0,1),(7849,'38636','Dibba','DIBBA',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7850,'43363','Dibba','DIBBA',NULL,'','Oman','',0,0,165,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7851,'30579','Diboll','DIBOLL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7852,'10623','Dibrugarh','DIBRUGARH',NULL,'','India','Dibrugarh',10,0,101,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7853,'3054','Dicastillo','DICASTILLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7854,'35856','Dickenson Bay','DICKENSON BAY',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7855,'28052','Dickinson','DICKINSON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7856,'26629','Dickson','DICKSON',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7857,'33130','Dickson','DICKSON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:34','1900-01-01 00:00:00',1,0,1),(7858,'13592','Dickwella','DICKWELLA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7859,'43588','Didcot','DIDCOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7860,'17204','Didim','DIDIM',NULL,'','Turkey','Didim ',0,0,222,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7861,'25298','Didsbury','DIDSBURY',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7862,'42521','Didymoteicho','DIDYMOTEICHO',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7863,'38006','Die Kelders','DIE KELDERS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7864,'6759','Dieffenthal','DIEFFENTHAL',NULL,'','France','',0,0,76,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7865,'24619','Diegem','DIEGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7866,'17129','Diego Martin','DIEGO MARTIN',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 10:50:35','1900-01-01 00:00:00',1,0,1),(7867,'2031','Diemelsee','DIEMELSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7868,'14632','Diemen','DIEMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7869,'39909','Dien Ban','DIEN BAN',NULL,'','VietNam','',0,0,236,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7870,'27159','Dienten Am Hochkonig','DIENTEN AM HOCHKONIG',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7871,'32558','Diepkloof','DIEPKLOOF',NULL,'','South Africa','',0,0,195,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7872,'5806','Dieppe','DIEPPE',NULL,'','France','',0,0,76,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7873,'34397','Dieppe','DIEPPE',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7874,'13479','Dieppe Bay Town','DIEPPE BAY TOWN',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7875,'14530','Dieren','DIEREN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7876,'41649','Dierhagen','DIERHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7877,'1930','Dieskau','DIESKAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7878,'14593','Diessen','DIESSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7879,'23184','Diessenhofen','DIESSENHOFEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7880,'24620','Diest','DIEST',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:36','1900-01-01 00:00:00',1,0,1),(7881,'22523','Dietfurt','DIETFURT',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7882,'23185','Dietikon','DIETIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7883,'412','Dietzenbach','DIETZENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7884,'621','Diez','DIEZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7885,'3220','Diezma','DIEZMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7886,'40084','Differdange','DIFFERDANGE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7887,'25706','Digby','DIGBY',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7888,'25920','Digdaga','DIGDAGA',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7889,'6421','Digne','DIGNE',NULL,'','France','',0,0,76,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7890,'41543','Digne-les-bains','DIGNE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7891,'5459','Digoin','DIGOIN',NULL,'','France','',0,0,76,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7892,'4892','Dijon','DIJON',NULL,'','France','Dijon',0,0,76,'2016-10-17 10:50:37','1900-01-01 00:00:00',1,0,1),(7893,'44171','Dikaio','DIKAIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7894,'17315','Dikili','DIKILI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7895,'39223','Dikli','DIKLI',NULL,'','Latvia','',0,0,119,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7896,'10009','Diklici','DIKLICI',NULL,'','Croatia','',0,0,55,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7897,'24725','Diksmuide','DIKSMUIDE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7898,'3221','Dilar','DILAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7899,'24621','Dilbeek','DILBEEK',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7900,'17110','Dili','DILI',NULL,'','East Timor','',0,0,63,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7901,'10132','Dili','DILI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7902,'19775','Dillard','DILLARD',NULL,'','United States','',0,0,231,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7903,'30581','Dilley','DILLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7904,'413','Dillingen','DILLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:38','1900-01-01 00:00:00',1,0,1),(7905,'17607','Dillingham','DILLINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7906,'27963','Dillon','DILLON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7907,'32310','Dillons Bay','DILLONS BAY',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7908,'33834','Dillsboro','DILLSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7909,'29899','Dillsburg','DILLSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:50:39','1900-01-01 00:00:00',1,0,1),(7910,'22359','Dilworth','DILWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7911,'42949','Dimakya Island','DIMAKYA ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7912,'10513','Dimapur','DIMAPUR',NULL,'','India','Dimapur',44,0,101,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7913,'11898','Dimaro','DIMARO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7914,'40300','Dimitsana','DIMITSANA',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7915,'22046','Dimondale','DIMONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7916,'5532','Dinan','DINAN',NULL,'','France','',0,0,76,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7917,'24739','Dinant','DINANT',NULL,'','Belgium','',0,0,21,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7918,'5533','Dinard','DINARD',NULL,'','France','',0,0,76,'2016-10-17 10:50:40','1900-01-01 00:00:00',1,0,1),(7919,'7962','Dinas Mawddwy','DINAS MAWDDWY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7920,'40850','Dindigul','DINDIGUL',NULL,'','India','',0,0,101,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7921,'10878','Dingle','DINGLE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7922,'29900','Dingmans Ferry','DINGMANS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7923,'7963','Dingwall','DINGWALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7924,'22732','Dinkelsbuhl','DINKELSBUHL',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7925,'27201','Dinklage','DINKLAGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7926,'7964','Dinnet','DINNET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:41','1900-01-01 00:00:00',1,0,1),(7927,'7015','Dinnington','DINNINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7928,'39477','Dinslaken','DINSLAKEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7929,'18439','Dinuba','DINUBA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7930,'15547','Dipolog','DIPOLOG',NULL,'','Philippines','',0,0,173,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7931,'414','Dipperz','DIPPERZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7932,'38237','Dippoldiswalde','DIPPOLDISWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7933,'1748','Diqing','DIQING',NULL,'','China','',0,0,46,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7934,'42614','Dirang','DIRANG',NULL,'','India','Dirang',40,0,101,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7935,'14966','Dirdal','DIRDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7936,'3849','Dire Dawa','DIRE DAWA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7937,'7965','Dirleton','DIRLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7938,'9898','Discovery Bay','DISCOVERY BAY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7939,'13085','Discovery Bay','DISCOVERY BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:50:42','1900-01-01 00:00:00',1,0,1),(7940,'23186','Disentis','DISENTIS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7941,'38546','Diseworth','DISEWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7942,'9326','Disley','DISLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7943,'18440','Disneyland - Anaheim','DISNEYLAND - ANAHEIM',NULL,'','United States','',0,0,231,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7944,'7966','Diss','DISS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7945,'6337','Dissay','DISSAY',NULL,'','France','',0,0,76,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7946,'4226','Distré','DISTRÉ',NULL,'','France','',0,0,76,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7947,'16982','District 1 - Dong Khoi','DISTRICT 1 - DONG KHOI',NULL,'','Thailand','',0,0,215,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7948,'43261','Distrito Federal','DISTRITO FEDERAL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7949,'7967','Dittisham','DITTISHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:43','1900-01-01 00:00:00',1,0,1),(7950,'22524','Ditzingen','DITZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7951,'10703','Diu','DIU',NULL,'','India','Diu',37,0,101,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7952,'5391','Dives-sur-mer','DIVES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7953,'34757','Divide','DIVIDE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7954,'954','Divinopolis','DIVINOPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7955,'13898','Divisadero','DIVISADERO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7956,'4832','Divonne-les-bains','DIVONNE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7957,'23015','Divonne-les-bains','DIVONNE-LES-BAINS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7958,'20515','Dix','DIX',NULL,'','United States','',0,0,231,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7959,'20516','Dixon','DIXON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:44','1900-01-01 00:00:00',1,0,1),(7960,'32688','Dixville Notch','DIXVILLE NOTCH',NULL,'','United States','',0,0,231,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7961,'17284','Diyarbakir','DIYARBAKIR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7962,'5724','Dizy','DIZY',NULL,'','France','',0,0,76,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7963,'37405','Djanet','DJANET',NULL,'','Algeria','',0,0,3,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7964,'32638','Djelo-binza','DJELO-BINZA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7965,'17151','Djerba','DJERBA',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7966,'2096','Djibouti','DJIBOUTI',NULL,'','Djibouti','',0,0,60,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7967,'11017','Djupivogur','DJUPIVOGUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7968,'16819','Djurgarden','DJURGARDEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7969,'16820','Djursholm','DJURSHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7970,'17487','Dnepropetrovsk','DNEPROPETROVSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:50:45','1900-01-01 00:00:00',1,0,1),(7971,'12863','Dobbiaco','DOBBIACO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7972,'28742','Dobbs Ferry','DOBBS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7973,'38508','Dobele','DOBELE',NULL,'','Latvia','',0,0,119,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7974,'27127','Dobling','DOBLING',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7975,'27070','Dobriach','DOBRIACH',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7976,'24794','Dobrich','DOBRICH',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7977,'42248','Dobrinishte','DOBRINISHTE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7978,'36688','Dobrna','DOBRNA',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7979,'33835','Dobson','DOBSON',NULL,'','United States','',0,0,231,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7980,'26896','Docklands','DOCKLANDS',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7981,'7968','Dockray','DOCKRAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7982,'7969','Doddington','DODDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:46','1900-01-01 00:00:00',1,0,1),(7983,'21043','Dodge City','DODGE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7984,'31732','Dodgeville','DODGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7985,'17456','Dodoma','DODOMA',NULL,'','Tanzania','',0,0,214,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7986,'37499','Dodoni','DODONI',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7987,'3662','Dodro','DODRO',NULL,'','Spain','',0,0,199,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7988,'42371','Doetinchem','DOETINCHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7989,'16577','Dogana','DOGANA',NULL,'','San Marino','',0,0,184,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7990,'35390','Dogheda','DOGHEDA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7991,'11899','Dogliani','DOGLIANI',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:47','1900-01-01 00:00:00',1,0,1),(7992,'7016','Dogmersfield','DOGMERSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7993,'16182','Doha','DOHA',NULL,'','Qatar','',0,0,177,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7994,'17050','Doi Saket','DOI SAKET',NULL,'','Thailand','',0,0,215,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7995,'5725','Dolancourt','DOLANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7996,'25983','Dolbeau','DOLBEAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7997,'11900','Dolcedo','DOLCEDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7998,'5534','Dol-de-bretagne','DOL-DE-BRETAGNE',NULL,'','France','',0,0,76,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(7999,'5774','Dole','DOLE',NULL,'','France','',0,0,76,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(8000,'36695','Dolenjske Toplice','DOLENJSKE TOPLICE',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(8001,'7017','Dolgellau','DOLGELLAU',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:48','1900-01-01 00:00:00',1,0,1),(8002,'28743','Dolgeville','DOLGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8003,'41171','Dollar','DOLLAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8004,'25984','Dollard-des-ormeaux','DOLLARD-DES-ORMEAUX',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8005,'39624','Dollnstein','DOLLNSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8006,'10838','Dollymount','DOLLYMOUNT',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8007,'24307','Dolni Dvoriste','DOLNI DVORISTE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8008,'15582','Dolnoslaskie','DOLNOSLASKIE',NULL,'','Poland','',0,0,174,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8009,'39725','Dolny Kubin','DOLNY KUBIN',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8010,'17608','Dolomi','DOLOMI',NULL,'','United States','',0,0,231,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8011,'34758','Dolores','DOLORES',NULL,'','United States','',0,0,231,'2016-10-17 10:50:49','1900-01-01 00:00:00',1,0,1),(8012,'13982','Dolores Hidalgo','DOLORES HIDALGO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8013,'15035','Dolpa','DOLPA',NULL,'','Nepal','',0,0,153,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8014,'26207','Dolphin Heads','DOLPHIN HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8015,'7970','Dolton','DOLTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8016,'4227','Dolus-d Oleron','DOLUS-D OLERON',NULL,'','France','',0,0,76,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8017,'1875','Dolzig','DOLZIG',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8018,'43315','Domaine De Beauvois','DOMAINE DE BEAUVOIS',NULL,'','France','',0,0,76,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8019,'11901','Domaso','DOMASO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8020,'23187','Domat','DOMAT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8021,'14944','Dombas','DOMBAS',NULL,'','Norway','',0,0,164,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8022,'14694','Domburg','DOMBURG',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:50','1900-01-01 00:00:00',1,0,1),(8023,'39214','Domfront','DOMFRONT',NULL,'','France','',0,0,76,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8024,'42201','Domingos Martins','DOMINGOS MARTINS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8025,'2104','Dominica','DOMINICA',NULL,'','Dominica','',0,0,500,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8026,'24236','Dominical','DOMINICAL',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8027,'2354','Dominican Republic','DOMINICAN REPUBLIC',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8028,'39805','Domme','DOMME',NULL,'','France','',0,0,76,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8029,'13655','Dommeldange','DOMMELDANGE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8030,'16366','Domodedovo','DOMODEDOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8031,'42321','Domodossola','DOMODOSSOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8032,'5535','Dompierre-du-chemin','DOMPIERRE-DU-CHEMIN',NULL,'','France','',0,0,76,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8033,'5313','Dompierre-sur-besbre','DOMPIERRE-SUR-BESBRE',NULL,'','France','',0,0,76,'2016-10-17 10:50:51','1900-01-01 00:00:00',1,0,1),(8034,'11902','Domus De Maria','DOMUS DE MARIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8035,'40950','Domzale','DOMZALE',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8036,'37648','Don Torcuato','DON TORCUATO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8037,'26364','Donald','DONALD',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8038,'19776','Donaldsonville','DONALDSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8039,'19777','Donalsonville','DONALSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8040,'22525','Donaueschingen','DONAUESCHINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8041,'22733','Donaustauf','DONAUSTAUF',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8042,'22734','Donauwoerth','DONAUWOERTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:52','1900-01-01 00:00:00',1,0,1),(8043,'42460','Donauworth','DONAUWORTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8044,'7971','Doncaster','DONCASTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8045,'5726','Donchery','DONCHERY',NULL,'','France','',0,0,76,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8046,'29901','Donegal','DONEGAL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8047,'10819','Donegal','DONEGAL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8048,'17488','Donetsk','DONETSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8049,'32275','Dong Hoi','DONG HOI',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8050,'23888','Dongba','DONGBA',NULL,'','China','',0,0,46,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8051,'23574','Dongcheng - Wangfujing','DONGCHENG - WANGFUJING',NULL,'','China','',0,0,46,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8052,'23679','Dongguan','DONGGUAN',NULL,'','China','',0,0,46,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8053,'37252','Dongnae','DONGNAE',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 10:50:53','1900-01-01 00:00:00',1,0,1),(8054,'23957','Dongshan','DONGSHAN',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8055,'23876','Dongsheng','DONGSHENG',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8056,'40','Dongshi','DONGSHI',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8057,'39109','Dongtan','DONGTAN',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8058,'23693','Dongyang','DONGYANG',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8059,'43821','Dongying','DONGYING',NULL,'','China','',0,0,46,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8060,'7018','Donington','DONINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8061,'27624','Doniphan','DONIPHAN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8062,'41194','Donji Seget','DONJI SEGET',NULL,'','Croatia','',0,0,55,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8063,'30583','Donna','DONNA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8064,'20348','Donnelly','DONNELLY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:54','1900-01-01 00:00:00',1,0,1),(8065,'38231','Donnersbachwald','DONNERSBACHWALD',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8066,'11903','Donnini','DONNINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8067,'10839','Donnybrook','DONNYBROOK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8068,'39570','Donore','DONORE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8069,'42520','Donoussa','DONOUSSA',NULL,'','Greece','',0,0,86,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8070,'16596','Donovaly','DONOVALY',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8071,'39724','Donzdorf','DONZDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8072,'6000','Donzenac','DONZENAC',NULL,'','France','',0,0,76,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8073,'10782','Doolin','DOOLIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8074,'26208','Doomadgee Mission','DOOMADGEE MISSION',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8075,'10783','Doonbeg','DOONBEG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8076,'31734','Door Peninsula','DOOR PENINSULA',NULL,'','United States','',0,0,231,'2016-10-17 10:50:55','1900-01-01 00:00:00',1,0,1),(8077,'34156','Dooralong','DOORALONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8078,'14531','Doorwerth','DOORWERTH',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8079,'11068','Dor','DOR',NULL,'','Israel','',0,0,106,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8080,'17609','Dora Bay','DORA BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8081,'39619','Dora Creek','DORA CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8082,'15748','Dorado','DORADO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8083,'19339','Doral','DORAL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8084,'19778','Doraville','DORAVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8085,'21354','Dorchester','DORCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 10:50:56','1900-01-01 00:00:00',1,0,1),(8086,'7972','Dorchester','DORCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8087,'14711','Dordrecht','DORDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8088,'42322','Dorf Tirol','DORF TIROL',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8089,'27160','Dorfgastein','DORFGASTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8090,'11904','Dorgali','DORGALI',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8091,'7973','Dorking','DORKING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8092,'27346','Dormagen','DORMAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8093,'11203','Dormelletto','DORMELLETTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8094,'22526','Dornach','DORNACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8095,'23188','Dornach','DORNACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:50:57','1900-01-01 00:00:00',1,0,1),(8096,'7974','Dornie','DORNIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8097,'7975','Dornoch','DORNOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8098,'39848','Dorotea','DOROTEA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8099,'27202','Dorpen','DORPEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8100,'18442','Dorris','DORRIS',NULL,'','United States','',0,0,231,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8101,'31322','Dorset','DORSET',NULL,'','United States','',0,0,231,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8102,'21683','Dorsey','DORSEY',NULL,'','United States','',0,0,231,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8103,'27347','Dorsten','DORSTEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8104,'33836','Dortches','DORTCHES',NULL,'','United States','',0,0,231,'2016-10-17 10:50:58','1900-01-01 00:00:00',1,0,1),(8105,'27348','Dortmund','DORTMUND',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8106,'26209','Dorunda Station','DORUNDA STATION',NULL,'','Australia','',0,0,13,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8107,'25985','Dorval','DORVAL',NULL,'','Canada','',0,0,39,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8108,'38509','Dossenheim-sur-zinsel','DOSSENHEIM-SUR-ZINSEL',NULL,'','France','',0,0,76,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8109,'11905','Dossobuono','DOSSOBUONO',NULL,'','Italy','',0,0,107,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8110,'766','Dossow','DOSSOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8111,'31091','Doswell','DOSWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8112,'17863','Dothan','DOTHAN',NULL,'','United States','',0,0,231,'2016-10-17 10:50:59','1900-01-01 00:00:00',1,0,1),(8113,'6159','Douai','DOUAI',NULL,'','France','',0,0,76,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8114,'24007','Douala','DOUALA',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8115,'5536','Douarnenez','DOUARNENEZ',NULL,'','France','',0,0,76,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8116,'34157','Double Bay','DOUBLE BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8117,'6617','Doucy','DOUCY',NULL,'','France','',0,0,76,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8118,'43249','Doue-la-fontaine','DOUE-LA-FONTAINE',NULL,'','France','',0,0,76,'2016-10-17 10:51:00','1900-01-01 00:00:00',1,0,1),(8119,'10725','Douglas','DOUGLAS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:01','1900-01-01 00:00:00',1,0,1),(8120,'7022','Douglas','DOUGLAS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:01','1900-01-01 00:00:00',1,0,1),(8121,'29902','Douglassville','DOUGLASSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:01','1900-01-01 00:00:00',1,0,1),(8122,'19780','Douglasville','DOUGLASVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8123,'17382','Douliou','DOULIOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8124,'6297','Doullens','DOULLENS',NULL,'','France','',0,0,76,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8125,'7024','Dounby','DOUNBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8126,'4702','Dourdan','DOURDAN',NULL,'','France','',0,0,76,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8127,'15804','Douro Valley','DOURO VALLEY',NULL,'','Portugal','',0,0,175,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8128,'6618','Douvaine','DOUVAINE',NULL,'','France','',0,0,76,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8129,'17177','Douz','DOUZ',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:51:02','1900-01-01 00:00:00',1,0,1),(8130,'7025','Dovedale','DOVEDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:03','1900-01-01 00:00:00',1,0,1),(8131,'43677','Dover','DOVER',NULL,'','Australia','Dover',0,0,13,'2016-10-17 10:51:03','1900-01-01 00:00:00',1,0,1),(8132,'38161','Dovre','DOVRE',NULL,'','Norway','',0,0,164,'2016-10-17 10:51:04','1900-01-01 00:00:00',1,0,1),(8133,'22048','Dowagiac','DOWAGIAC',NULL,'','United States','',0,0,231,'2016-10-17 10:51:04','1900-01-01 00:00:00',1,0,1),(8134,'19340','Dowling Park','DOWLING PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:51:04','1900-01-01 00:00:00',1,0,1),(8135,'20517','Downers Grove','DOWNERS GROVE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8136,'18443','Downey','DOWNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8137,'37971','Downham Market','DOWNHAM MARKET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8138,'10726','Downings','DOWNINGS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8139,'29903','Downingtown','DOWNINGTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8140,'7978','Downpatrick','DOWNPATRICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8141,'34481','Downsview','DOWNSVIEW',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8142,'7027','Downton On The Rock','DOWNTON ON THE ROCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:05','1900-01-01 00:00:00',1,0,1),(8143,'19341','Downtown','DOWNTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8144,'13491','Downtown - Namdaemun','DOWNTOWN - NAMDAEMUN',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8145,'26044','Downtown - Puerto Madero','DOWNTOWN - PUERTO MADERO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8146,'24974','Downtown - Santos Dumont Airport','DOWNTOWN - SANTOS DUMONT AIRPORT',NULL,'','Brazil','',0,0,30,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8147,'15370','Downtown Lima','DOWNTOWN LIMA',NULL,'','Peru','',0,0,172,'2016-10-17 10:51:06','1900-01-01 00:00:00',1,0,1),(8148,'29904','Doylestown','DOYLESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8149,'11906','Dozza','DOZZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8150,'22735','Drachselsried','DRACHSELSRIED',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8151,'14509','Drachten','DRACHTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8152,'21355','Dracut','DRACUT',NULL,'','United States','',0,0,231,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8153,'24812','Dragoman','DRAGOMAN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8154,'11907','Dragoni','DRAGONI',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8155,'2208','Dragor','DRAGOR',NULL,'','Denmark','',0,0,59,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8156,'2345','Dragør','DRAGØR',NULL,'','Denmark','',0,0,59,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8157,'6422','Draguignan','DRAGUIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:51:07','1900-01-01 00:00:00',1,0,1),(8158,'24165','Drake Bay','DRAKE BAY',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8159,'37115','Drakensberg','DRAKENSBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8160,'9754','Drama','DRAMA',NULL,'','Greece','',0,0,86,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8161,'14863','Drammen','DRAMMEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8162,'43098','Drancy','DRANCY',NULL,'','France','',0,0,76,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8163,'15001','Drangedal','DRANGEDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8164,'832','Dranske','DRANSKE',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8165,'33323','Draper','DRAPER',NULL,'','United States','',0,0,231,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8166,'38710','Drapia','DRAPIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:08','1900-01-01 00:00:00',1,0,1),(8167,'4703','Draveil','DRAVEIL',NULL,'','France','',0,0,76,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8168,'4053','Dravuni Island','DRAVUNI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8169,'25299','Drayton Valley','DRAYTON VALLEY',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8170,'19343','Dredgers Key','DREDGERS KEY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8171,'37753','Drees','DREES',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8172,'7979','Dreghorn','DREGHORN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8173,'415','Dreieich','DREIEICH',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8174,'27203','Dreilinden','DREILINDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8175,'14458','Drenthe','DRENTHE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8176,'9454','Drepano','DREPANO',NULL,'','Greece','',0,0,86,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8177,'29328','Dresden','DRESDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:09','1900-01-01 00:00:00',1,0,1),(8178,'1876','Dresden','DRESDEN',NULL,'','Germany','Dresden',0,0,83,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8179,'5644','Dreux','DREUX',NULL,'','France','',0,0,76,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8180,'29905','Drexel Hill','DREXEL HILL',NULL,'','United States','',0,0,231,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8181,'39499','Dreznik Grad','DREZNIK GRAD',NULL,'','Croatia','',0,0,55,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8182,'7028','Driffield','DRIFFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8183,'20350','Driggs','DRIGGS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8184,'43778','Driggs Hill','DRIGGS HILL',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8185,'9455','Drios','DRIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:51:10','1900-01-01 00:00:00',1,0,1),(8186,'30584','Dripping Springs','DRIPPING SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8187,'16239','Drobeta-turnu Severin','DROBETA-TURNU SEVERIN',NULL,'','Romania','',0,0,179,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8188,'24622','Drogenbos','DROGENBOS',NULL,'','Belgium','',0,0,21,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8189,'10712','Drogheda','DROGHEDA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8190,'7980','Droitwich','DROITWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8191,'39503','Drolshagen','DROLSHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8192,'4232','Drome','DROME',NULL,'','France','',0,0,76,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8193,'10727','Dromkeen','DROMKEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8194,'41011','Dromoland','DROMOLAND',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8195,'11908','Dronero','DRONERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8196,'2236','Dronninglund','DRONNINGLUND',NULL,'','Denmark','',0,0,59,'2016-10-17 10:51:11','1900-01-01 00:00:00',1,0,1),(8197,'26504','Drouin','DROUIN',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8198,'7981','Droylsden','DROYLSDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8199,'39008','Druento','DRUENTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8200,'33837','Druid Hills','DRUID HILLS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8201,'25300','Drumheller','DRUMHELLER',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8202,'22049','Drummond Island','DRUMMOND ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8203,'25986','Drummondville','DRUMMONDVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8204,'34158','Drummoyne','DRUMMOYNE',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8205,'7982','Drumnadrochit','DRUMNADROCHIT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:12','1900-01-01 00:00:00',1,0,1),(8206,'29906','Drums','DRUMS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8207,'10713','Drumshanbo','DRUMSHANBO',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8208,'14594','Drunen','DRUNEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8209,'13637','Druskininkai','DRUSKININKAI',NULL,'','Lithuania','',0,0,125,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8210,'16310','Druzhba','DRUZHBA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8211,'41834','Drvenik','DRVENIK',NULL,'','Croatia','',0,0,55,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8212,'33622','Dry Ridge','DRY RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8213,'28745','Dryden','DRYDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:13','1900-01-01 00:00:00',1,0,1),(8214,'34482','Dryden','DRYDEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8215,'7029','Drylaw','DRYLAW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8216,'7983','Drymen','DRYMEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8217,'24013','Dschang','DSCHANG',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8218,'18444','Duarte','DUARTE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8219,'25921','Dubai','DUBAI',NULL,'','United Arab Emirates','Tourism Dubai | Trip to Dubai | Tourist attraction',0,0,228,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8220,'34159','Dubbo','DUBBO',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8221,'23189','Dubendorf','DUBENDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8222,'10728','Dublin','DUBLIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:14','1900-01-01 00:00:00',1,0,1),(8223,'31093','Dublin','DUBLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:15','1900-01-01 00:00:00',1,0,1),(8224,'35387','Dublin-bray','DUBLIN-BRAY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8225,'35391','Dublin-dun Laoghaire','DUBLIN-DUN LAOGHAIRE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8226,'35395','Dublin-howth','DUBLIN-HOWTH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8227,'35397','Dublin-malahide','DUBLIN-MALAHIDE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8228,'35403','Dublin-portmarnock','DUBLIN-PORTMARNOCK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8229,'35406','Dublin-sutton','DUBLIN-SUTTON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8230,'32091','Dubois','DUBOIS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8231,'9970','Dubrovnik','DUBROVNIK',NULL,'','Croatia','Dubrovnik',0,0,55,'2016-10-17 10:51:16','1900-01-01 00:00:00',1,0,1),(8232,'20199','Dubuque','DUBUQUE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8233,'5392','Ducey','DUCEY',NULL,'','France','',0,0,76,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8234,'7030','Duchally','DUCHALLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8235,'40016','Duchcov','DUCHCOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8236,'833','Ducherow','DUCHEROW',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8237,'33324','Duchesne','DUCHESNE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:17','1900-01-01 00:00:00',1,0,1),(8238,'33132','Ducktown','DUCKTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8239,'7031','Duddingston','DUDDINGSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8240,'622','Dudeldorf','DUDELDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8241,'38903','Duderstadt','DUDERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8242,'21356','Dudley','DUDLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8243,'7984','Dudley','DUDLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8244,'40602','Due Carrare','DUE CARRARE',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8245,'40508','Duenas','DUENAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8246,'39071','Duernten','DUERNTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:51:18','1900-01-01 00:00:00',1,0,1),(8247,'31094','Duffield','DUFFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8248,'41170','Dufftown','DUFFTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8249,'40117','Dugi Rat','DUGI RAT',NULL,'','Croatia','',0,0,55,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8250,'37570','Dugopolje','DUGOPOLJE',NULL,'','Croatia','',0,0,55,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8251,'43136','Duhok','DUHOK',NULL,'','Iraq','',0,0,104,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8252,'5084','Duingt','DUINGT',NULL,'','France','',0,0,76,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8253,'12743','Duino','DUINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8254,'27349','Duisburg','DUISBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8255,'7032','Duisdalemore','DUISDALEMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8256,'37651','Duiven','DUIVEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8257,'14633','Duivendrecht','DUIVENDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:19','1900-01-01 00:00:00',1,0,1),(8258,'23576','Dujiangyan','DUJIANGYAN',NULL,'','China','',0,0,46,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8259,'7985','Dukinfield','DUKINFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8260,'28519','Dulce','DULCE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8261,'31095','Dulles','DULLES',NULL,'','United States','',0,0,231,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8262,'37785','Dullstroom','DULLSTROOM',NULL,'','South Africa','',0,0,195,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8263,'27350','Dulmen','DULMEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8264,'24358','Dülmen','DÜLMEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8265,'7986','Duloe','DULOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8266,'19783','Duluth','DULUTH',NULL,'','United States','',0,0,231,'2016-10-17 10:51:20','1900-01-01 00:00:00',1,0,1),(8267,'7987','Dulverton','DULVERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8268,'7988','Dulwich','DULWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8269,'10413','Dum Dum','DUM DUM',NULL,'','India','',0,0,101,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8270,'15548','Dumaguete','DUMAGUETE',NULL,'','Philippines','',0,0,173,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8271,'10356','Dumai','DUMAI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8272,'18007','Dumas','DUMAS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:21','1900-01-01 00:00:00',1,0,1),(8273,'7989','Dumbarton','DUMBARTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8274,'40236','Dumbleton','DUMBLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8275,'7990','Dumfries','DUMFRIES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8276,'31096','Dumfries','DUMFRIES',NULL,'','United States','',0,0,231,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8277,'1280','Dumfries And Galloway','DUMFRIES AND GALLOWAY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8278,'10688','Dumjor','DUMJOR',NULL,'','India','',0,0,101,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8279,'7991','Dunadry','DUNADRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8280,'26836','Dunalley','DUNALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8281,'37722','Dunasziget','DUNASZIGET',NULL,'','Hungary','',0,0,99,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8282,'42617','Dunaujvaros','DUNAUJVAROS',NULL,'','Hungary','',0,0,99,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8283,'31974','Dunbar','DUNBAR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:22','1900-01-01 00:00:00',1,0,1),(8284,'26210','Dunbar','DUNBAR',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8285,'7992','Dunbar','DUNBAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8286,'7033','Dunbartonshire','DUNBARTONSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8287,'7993','Dunblane','DUNBLANE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8288,'10772','Dunboyne','DUNBOYNE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8289,'25430','Duncan','DUNCAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8290,'30313','Duncan','DUNCAN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:23','1900-01-01 00:00:00',1,0,1),(8291,'29909','Duncannon','DUNCANNON',NULL,'','United States','',0,0,231,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8292,'13098','Duncans','DUNCANS',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8293,'29910','Duncansville','DUNCANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8294,'30587','Duncanville','DUNCANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8295,'7034','Dunchideock','DUNCHIDEOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8296,'7994','Dunchurch','DUNCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8297,'21684','Dundalk','DUNDALK',NULL,'','United States','',0,0,231,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8298,'10900','Dundalk','DUNDALK',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:24','1900-01-01 00:00:00',1,0,1),(8299,'19345','Dundee','DUNDEE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8300,'7995','Dundee','DUNDEE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8301,'25858','Dundo','DUNDO',NULL,'','Angola','',0,0,6,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8302,'7996','Dundonald','DUNDONALD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8303,'7035','Dundonnell','DUNDONNELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8304,'10931','Dundrum','DUNDRUM',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8305,'19346','Dunedin','DUNEDIN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8306,'15187','Dunedin','DUNEDIN',NULL,'','New Zealand','Dunedin',0,0,157,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8307,'10820','Dunfanaghy','DUNFANAGHY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:25','1900-01-01 00:00:00',1,0,1),(8308,'7997','Dunfermline','DUNFERMLINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8309,'7998','Dungannon','DUNGANNON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8310,'10514','Dungarpur','DUNGARPUR',NULL,'','India','Dungarpur',2,0,101,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8311,'10937','Dungarvan','DUNGARVAN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8312,'31483','Dungeness','DUNGENESS',NULL,'','United States','',0,0,231,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8313,'7999','Dungiven','DUNGIVEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8314,'14302','Dungun','DUNGUN',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8315,'23558','Dunhuang','DUNHUANG',NULL,'','China','',0,0,46,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8316,'38828','Duni','DUNI',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8317,'26694','Dunk Island','DUNK ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8318,'8000','Dunkeld','DUNKELD',NULL,'','United Kingdom','Dunkeld',0,0,229,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8319,'37258','Dunkeld','DUNKELD',NULL,'','Australia','Dunkeld',0,0,13,'2016-10-17 10:51:26','1900-01-01 00:00:00',1,0,1),(8320,'6160','Dunkerque','DUNKERQUE',NULL,'','France','',0,0,76,'2016-10-17 10:51:27','1900-01-01 00:00:00',1,0,1),(8321,'8001','Dunkirk','DUNKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:27','1900-01-01 00:00:00',1,0,1),(8322,'28747','Dunkirk','DUNKIRK',NULL,'','United States','',0,0,231,'2016-10-17 10:51:27','1900-01-01 00:00:00',1,0,1),(8323,'10959','Dunlavin','DUNLAVIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8324,'33623','Dunmor','DUNMOR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8325,'29911','Dunmore','DUNMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8326,'10938','Dunmore East','DUNMORE EAST',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8327,'9283','Dunmow','DUNMOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8328,'8002','Dunmurry','DUNMURRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8329,'33839','Dunn','DUNN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8330,'18446','Dunnigan','DUNNIGAN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:28','1900-01-01 00:00:00',1,0,1),(8331,'20519','Dunning','DUNNING',NULL,'','United States','',0,0,231,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8332,'43797','Dunnville','DUNNVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8333,'8003','Dunoon','DUNOON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8334,'8004','Duns','DUNS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8335,'38365','Dunsany','DUNSANY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8336,'26955','Dunsborough','DUNSBOROUGH',NULL,'','Australia','Dunsborough',0,0,13,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8337,'18447','Dunsmuir','DUNSMUIR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8338,'8005','Dunstable','DUNSTABLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:29','1900-01-01 00:00:00',1,0,1),(8339,'8006','Dunster','DUNSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8340,'41114','Dunster','DUNSTER',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8341,'8007','Dunvegan','DUNVEGAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8342,'19784','Dunwoody','DUNWOODY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8343,'32294','Duong Dong','DUONG DONG',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8344,'38638','Dupnitsa','DUPNITSA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8345,'31484','Dupont','DUPONT',NULL,'','United States','',0,0,231,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8346,'25133','Duque De Caxias','DUQUE DE CAXIAS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8347,'22051','Durand','DURAND',NULL,'','United States','',0,0,231,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8348,'3704','Durango','DURANGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:51:30','1900-01-01 00:00:00',1,0,1),(8349,'13983','Durango','DURANGO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8350,'30588','Durango','DURANGO',NULL,'','United States','',0,0,231,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8351,'32899','Durant','DURANT',NULL,'','United States','',0,0,231,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8352,'37074','Duranzno','DURANZNO',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8353,'5184','Duras','DURAS',NULL,'','France','',0,0,76,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8354,'37555','Durbach','DURBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:31','1900-01-01 00:00:00',1,0,1),(8355,'32515','Durban','DURBAN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8356,'24696','Durbuy','DURBUY',NULL,'','Belgium','',0,0,21,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8357,'3223','Durcal','DURCAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8358,'6236','Dureil','DUREIL',NULL,'','France','',0,0,76,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8359,'27351','Duren','DUREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8360,'10155','Duren Sawit','DUREN SAWIT',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8361,'10515','Durgapur','DURGAPUR',NULL,'','India','Durgapur',12,0,101,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8362,'8008','Durham','DURHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8363,'33840','Durham','DURHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:51:32','1900-01-01 00:00:00',1,0,1),(8364,'26211','Durham Downs','DURHAM DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8365,'27099','Durnstein','DURNSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8366,'40957','Durres','DURRES',NULL,'','Albania','',0,0,2,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8367,'25868','Durrës','DURRËS',NULL,'','Albania','',0,0,2,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8368,'26212','Durrie','DURRIE',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8369,'36303','Dursley','DURSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8370,'17104','Dushanbe','DUSHANBE',NULL,'','Tajikistan','',0,0,213,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8371,'21193','Duson','DUSON',NULL,'','United States','',0,0,231,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8372,'27352','Dusseldorf','DUSSELDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8373,'38952','Duszniki Zdroj','DUSZNIKI ZDROJ',NULL,'','Poland','',0,0,174,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8374,'17610','Dutch Harbor','DUTCH HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:33','1900-01-01 00:00:00',1,0,1),(8375,'27625','Dutzow','DUTZOW',NULL,'','United States','',0,0,231,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8376,'31485','Duvall','DUVALL',NULL,'','United States','',0,0,231,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8377,'16711','Duved','DUVED',NULL,'','Sweden','',0,0,209,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8378,'39826','Duxford','DUXFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8379,'41078','Duzce','DUZCE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8380,'16597','Dvor Cierna Voda','DVOR CIERNA VODA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8381,'20520','Dwight','DWIGHT',NULL,'','United States','',0,0,231,'2016-10-17 10:51:34','1900-01-01 00:00:00',1,0,1),(8382,'14459','Dwingeloo','DWINGELOO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8383,'16258','Dyakovskoye','DYAKOVSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8384,'8009','Dyce','DYCE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8385,'33133','Dyersburg','DYERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8386,'20201','Dyersville','DYERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8387,'7036','Dyfed','DYFED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8388,'9334','Dyffryn Ardudwy','DYFFRYN ARDUDWY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8389,'26478','Dysart','DYSART',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8390,'14396','Dzaoudzi','DZAOUDZI',NULL,'','Mayotte','',0,0,140,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8391,'40706','Dzerzhinsk','DZERZHINSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8392,'16367','Dzerzhinskiy','DZERZHINSKIY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:51:35','1900-01-01 00:00:00',1,0,1),(8393,'13431','Dzhambul','DZHAMBUL',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8394,'38159','Dziwnowek','DZIWNOWEK',NULL,'','Poland','',0,0,174,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8395,'37716','Dzwirzyno','DZWIRZYNO',NULL,'','Poland','',0,0,174,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8396,'22362','Eagan','EAGAN',NULL,'','United States','',0,0,231,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8397,'18126','Eagar','EAGAR',NULL,'','United States','',0,0,231,'2016-10-17 10:51:36','1900-01-01 00:00:00',1,0,1),(8398,'38347','Eagle Lake','EAGLE LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:37','1900-01-01 00:00:00',1,0,1),(8399,'26897','Eaglehawk','EAGLEHAWK',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:39','1900-01-01 00:00:00',1,0,1),(8400,'29912','Eagles Mere','EAGLES MERE',NULL,'','United States','',0,0,231,'2016-10-17 10:51:39','1900-01-01 00:00:00',1,0,1),(8401,'7037','Eaglescliffe','EAGLESCLIFFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:40','1900-01-01 00:00:00',1,0,1),(8402,'39241','Eaglesham','EAGLESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:40','1900-01-01 00:00:00',1,0,1),(8403,'8010','Ealing','EALING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:40','1900-01-01 00:00:00',1,0,1),(8404,'42963','Earl Shilton','EARL SHILTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:40','1900-01-01 00:00:00',1,0,1),(8405,'8011','Earley','EARLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:41','1900-01-01 00:00:00',1,0,1),(8406,'18448','Earlimart','EARLIMART',NULL,'','United States','',0,0,231,'2016-10-17 10:51:41','1900-01-01 00:00:00',1,0,1),(8407,'33624','Earlington','EARLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:51:41','1900-01-01 00:00:00',1,0,1),(8408,'8012','Earls Colne','EARLS COLNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:42','1900-01-01 00:00:00',1,0,1),(8409,'34483','Earlton','EARLTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:42','1900-01-01 00:00:00',1,0,1),(8410,'43713','Earlville','EARLVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:51:42','1900-01-01 00:00:00',1,0,1),(8411,'30592','Early','EARLY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:42','1900-01-01 00:00:00',1,0,1),(8412,'38776','Easington','EASINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:43','1900-01-01 00:00:00',1,0,1),(8413,'43589','Easingwold','EASINGWOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:43','1900-01-01 00:00:00',1,0,1),(8414,'30314','Easley','EASLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:51:43','1900-01-01 00:00:00',1,0,1),(8415,'14460','East Brabant','EAST BRABANT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:51:45','1900-01-01 00:00:00',1,0,1),(8416,'26982','East Carinthia','EAST CARINTHIA',NULL,'','Austria','',0,0,14,'2016-10-17 10:51:45','1900-01-01 00:00:00',1,0,1),(8417,'15101','East Coast Bays','EAST COAST BAYS',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:51:46','1900-01-01 00:00:00',1,0,1),(8418,'8013','East Coker','EAST COKER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:51:46','1900-01-01 00:00:00',1,0,1),(8419,'24260','East End','EAST END',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:51:49','1900-01-01 00:00:00',1,0,1),(8420,'32220','East End','EAST END',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 10:51:49','1900-01-01 00:00:00',1,0,1),(8421,'24579','East Flanders','EAST FLANDERS',NULL,'','Belgium','',0,0,21,'2016-10-17 10:51:49','1900-01-01 00:00:00',1,0,1),(8422,'25707','East Kemptville','EAST KEMPTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:51:52','1900-01-01 00:00:00',1,0,1),(8423,'1264','East Midlands Airport','EAST MIDLANDS AIRPORT',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:51:55','1900-01-01 00:00:00',1,0,1),(8424,'15583','East Pomerania','EAST POMERANIA',NULL,'','Poland','',0,0,174,'2016-10-17 10:51:57','1900-01-01 00:00:00',1,0,1),(8425,'4233','East Pyrenees','EAST PYRENEES',NULL,'','France','',0,0,76,'2016-10-17 10:51:57','1900-01-01 00:00:00',1,0,1),(8426,'8021','Eastbourne','EASTBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:00','1900-01-01 00:00:00',1,0,1),(8427,'8022','Eastchurch','EASTCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:00','1900-01-01 00:00:00',1,0,1),(8428,'23485','Easter Island','EASTER ISLAND',NULL,'','Chile','',0,0,45,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8429,'4234','Eastern Brittany','EASTERN BRITTANY',NULL,'','France','',0,0,76,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8430,'1346','Eastern Cape-port Elizabeth','EASTERN CAPE-PORT ELIZABETH',NULL,'','SOUTH AFRICA','',0,0,195,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8431,'21685','Eastern Chesapeake Shore','EASTERN CHESAPEAKE SHORE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8432,'25923','Eastern Coast','EASTERN COAST',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8433,'24266','Eastern Cyprus','EASTERN CYPRUS',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8434,'10972','Eastern Iceland','EASTERN ICELAND',NULL,'','Iceland','',0,0,100,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8435,'9456','Eastern Macedonia','EASTERN MACEDONIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8436,'11204','Eastern Rome','EASTERN ROME',NULL,'','Italy','',0,0,107,'2016-10-17 10:52:01','1900-01-01 00:00:00',1,0,1),(8437,'16592','Eastern Slovakia','EASTERN SLOVAKIA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:52:02','1900-01-01 00:00:00',1,0,1),(8438,'26984','Eastern Tirol','EASTERN TIROL',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:02','1900-01-01 00:00:00',1,0,1),(8439,'25988','Eastern Townships','EASTERN TOWNSHIPS',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:02','1900-01-01 00:00:00',1,0,1),(8440,'21365','Eastham','EASTHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:52:02','1900-01-01 00:00:00',1,0,1),(8441,'7043','Eastington','EASTINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:03','1900-01-01 00:00:00',1,0,1),(8442,'29334','Eastlake','EASTLAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:03','1900-01-01 00:00:00',1,0,1),(8443,'30595','Eastland','EASTLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:52:03','1900-01-01 00:00:00',1,0,1),(8444,'1525','Eastleigh','EASTLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:03','1900-01-01 00:00:00',1,0,1),(8445,'19790','Eastman','EASTMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:04','1900-01-01 00:00:00',1,0,1),(8446,'21366','Easton','EASTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:04','1900-01-01 00:00:00',1,0,1),(8447,'38478','Easton','EASTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:05','1900-01-01 00:00:00',1,0,1),(8448,'22056','Eastpointe','EASTPOINTE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:05','1900-01-01 00:00:00',1,0,1),(8449,'31487','Eastsound','EASTSOUND',NULL,'','United States','',0,0,231,'2016-10-17 10:52:05','1900-01-01 00:00:00',1,0,1),(8450,'29335','Eaton','EATON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:06','1900-01-01 00:00:00',1,0,1),(8451,'19791','Eatonton','EATONTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:06','1900-01-01 00:00:00',1,0,1),(8452,'28256','Eatontown','EATONTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:06','1900-01-01 00:00:00',1,0,1),(8453,'31488','Eatonville','EATONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:07','1900-01-01 00:00:00',1,0,1),(8454,'4704','Eaubonne','EAUBONNE',NULL,'','France','',0,0,76,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8455,'5022','Eaux-bonnes','EAUX-BONNES',NULL,'','France','',0,0,76,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8456,'40447','Eauze','EAUZE',NULL,'','France','',0,0,76,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8457,'8023','Ebberston','EBBERSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8458,'24448','Ebbs','EBBS',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8459,'43715','Ebden','EBDEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8460,'2145','Ebeltoft','EBELTOFT',NULL,'','Denmark','',0,0,59,'2016-10-17 10:52:08','1900-01-01 00:00:00',1,0,1),(8461,'44266','Eben Am Achensee','EBEN AM ACHENSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8462,'27161','Ebenau','EBENAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8463,'1931','Ebendorf','EBENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8464,'29918','Ebensburg','EBENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8465,'27071','Eberndorf','EBERNDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8466,'22736','Ebersberg','EBERSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8467,'38815','Eberstein','EBERSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8468,'13128','Ebina','EBINA',NULL,'','Japan','',0,0,110,'2016-10-17 10:52:09','1900-01-01 00:00:00',1,0,1),(8469,'23190','Ebnat','EBNAT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8470,'39332','Eboli','EBOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8471,'14148','Ebon','EBON',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8472,'13727','Eboodhoofinolhu','EBOODHOOFINOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8473,'22737','Ebrach','EBRACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8474,'27100','Ebreichsdorf','EBREICHSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8475,'14034','Ecatepec De Morelos','ECATEPEC DE MORELOS',NULL,'','Mexico','',0,0,141,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8476,'4235','Eccica-suarella','ECCICA-SUARELLA',NULL,'','France','',0,0,76,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8477,'8024','Ecclefechan','ECCLEFECHAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:10','1900-01-01 00:00:00',1,0,1),(8478,'38194','Eceabat','ECEABAT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8479,'2067','Eching','ECHING',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8480,'6619','Echirolles','ECHIROLLES',NULL,'','France','',0,0,76,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8481,'13650','Echternach','ECHTERNACH',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8482,'26898','Echuca','ECHUCA',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8483,'42778','Ecija','ECIJA',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8484,'37482','Écija','ÉCIJA',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:11','1900-01-01 00:00:00',1,0,1),(8485,'40159','Eckelsheim','ECKELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8486,'416','Eckenheim','ECKENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8487,'37923','Eckero','ECKERO',NULL,'','Finland','',0,0,75,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8488,'31975','Eckman','ECKMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8489,'42650','Ecole Valentin','ECOLE VALENTIN',NULL,'','France','',0,0,76,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8490,'4236','Ecole-valentin','ECOLE-VALENTIN',NULL,'','France','',0,0,76,'2016-10-17 10:52:12','1900-01-01 00:00:00',1,0,1),(8491,'4705','Ecouen','ECOUEN',NULL,'','France','',0,0,76,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8492,'6620','Ecully','ECULLY',NULL,'','France','',0,0,76,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8493,'7046','Eday','EDAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8494,'33625','Eddyville','EDDYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8495,'14532','Ede','EDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8496,'24745','Edegem','EDEGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8497,'34161','Eden','EDEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:13','1900-01-01 00:00:00',1,0,1),(8498,'33842','Eden','EDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:14','1900-01-01 00:00:00',1,0,1),(8499,'8028','Edenbridge','EDENBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:14','1900-01-01 00:00:00',1,0,1),(8500,'623','Edenkoben','EDENKOBEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:14','1900-01-01 00:00:00',1,0,1),(8501,'33843','Edenton','EDENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8502,'32448','Edenvale','EDENVALE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8503,'33136','Edenwold','EDENWOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8504,'30597','Ederville','EDERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8505,'39417','Edesheim','EDESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8506,'40397','Edessa','EDESSA',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:15','1900-01-01 00:00:00',1,0,1),(8507,'21194','Edgard','EDGARD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8508,'21367','Edgartown','EDGARTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8509,'34162','Edgecliff','EDGECLIFF',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8510,'21862','Edgecomb','EDGECOMB',NULL,'','United States','',0,0,231,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8511,'30316','Edgefield','EDGEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:16','1900-01-01 00:00:00',1,0,1),(8512,'28053','Edgeley','EDGELEY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:17','1900-01-01 00:00:00',1,0,1),(8513,'21687','Edgemore','EDGEMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:17','1900-01-01 00:00:00',1,0,1),(8514,'31739','Edgerton','EDGERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:17','1900-01-01 00:00:00',1,0,1),(8515,'28258','Edgewater','EDGEWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:52:17','1900-01-01 00:00:00',1,0,1),(8516,'19350','Edgewood','EDGEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:18','1900-01-01 00:00:00',1,0,1),(8517,'8029','Edgware','EDGWARE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:18','1900-01-01 00:00:00',1,0,1),(8518,'27377','Edina','EDINA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8519,'29919','Edinboro','EDINBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8520,'8030','Edinburgh','EDINBURGH',NULL,'','United Kingdom','Edinburgh',0,0,229,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8521,'9457','Edipsos','EDIPSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8522,'17285','Edirne','EDIRNE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8523,'28259','Edison','EDISON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:19','1900-01-01 00:00:00',1,0,1),(8524,'36893','Edisto Beach','EDISTO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8525,'32900','Edmond','EDMOND',NULL,'','United States','',0,0,231,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8526,'31489','Edmonds','EDMONDS',NULL,'','United States','',0,0,231,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8527,'39989','Edmonton','EDMONTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8528,'25301','Edmonton','EDMONTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:20','1900-01-01 00:00:00',1,0,1),(8529,'22058','Edmore','EDMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:21','1900-01-01 00:00:00',1,0,1),(8530,'27627','Edmundson','EDMUNDSON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:21','1900-01-01 00:00:00',1,0,1),(8531,'34398','Edmundston','EDMUNDSTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:21','1900-01-01 00:00:00',1,0,1),(8532,'30600','Edna','EDNA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:21','1900-01-01 00:00:00',1,0,1),(8533,'13129','Edogawa','EDOGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8534,'41077','Edremit','EDREMIT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8535,'16697','Edsbyn','EDSBYN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8536,'25304','Edson','EDSON',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8537,'26215','Edward River','EDWARD RIVER',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8538,'34764','Edwards','EDWARDS',NULL,'','United States','',0,0,231,'2016-10-17 10:52:22','1900-01-01 00:00:00',1,0,1),(8539,'20527','Edwardsville','EDWARDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8540,'38277','Eemnes','EEMNES',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8541,'38734','Eerbeek','EERBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8542,'32311','Efate','EFATE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8543,'20528','Effingham','EFFINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:52:23','1900-01-01 00:00:00',1,0,1),(8544,'42396','Eforie','EFORIE',NULL,'','Romania','',0,0,179,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8545,'34485','Eganville','EGANVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8546,'9855','Egedesminde','EGEDESMINDE',NULL,'','Greenland','',0,0,87,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8547,'17615','Egegik','EGEGIK',NULL,'','United States','',0,0,231,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8548,'10103','Eger','EGER',NULL,'','Hungary','',0,0,99,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8549,'23191','Egerkingen','EGERKINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8550,'8031','Egerton','EGERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8551,'27204','Egestorf','EGESTORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:24','1900-01-01 00:00:00',1,0,1),(8552,'22527','Eggenstein-leopoldshafen','EGGENSTEIN-LEOPOLDSHAFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8553,'37459','Eggolsheim','EGGOLSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8554,'8032','Egham','EGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8555,'10973','Egilsstadir','EGILSSTADIR',NULL,'','Iceland','Egilsstadir',0,0,100,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8556,'22738','Eging','EGING',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:25','1900-01-01 00:00:00',1,0,1),(8557,'6001','Egletons','EGLETONS',NULL,'','France','',0,0,76,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8558,'22739','Egling','EGLING',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8559,'40650','Eglisau','EGLISAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8560,'14634','Egmond Aan Zee','EGMOND AAN ZEE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8561,'42150','Egmont','EGMONT',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8562,'17301','Egridir','EGRIDIR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8563,'6760','Eguisheim','EGUISHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8564,'4237','Éguzon-chantome','ÉGUZON-CHANTOME',NULL,'','France','',0,0,76,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8565,'37500','Egyhazasradoc','EGYHAZASRADOC',NULL,'','Hungary','',0,0,99,'2016-10-17 10:52:26','1900-01-01 00:00:00',1,0,1),(8566,'35832','Ehden','EHDEN',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8567,'43538','Ehime','EHIME',NULL,'','Japan','',0,0,110,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8568,'22528','Ehingen','EHINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8569,'39480','Ehningen','EHNINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8570,'18127','Ehrenberg','EHRENBERG',NULL,'','United States','',0,0,231,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8571,'1877','Ehrenfriedersdorf','EHRENFRIEDERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8572,'30318','Ehrhardt','EHRHARDT',NULL,'','United States','',0,0,231,'2016-10-17 10:52:27','1900-01-01 00:00:00',1,0,1),(8573,'24449','Ehrwald','EHRWALD',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8574,'3705','Eibar','EIBAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8575,'37246','Eibiswald','EIBISWALD',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8576,'27101','Eichgraben','EICHGRABEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8577,'22740','Eichstatt','EICHSTATT',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8578,'40342','Eichwalde','EICHWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8579,'27205','Eicklingen','EICKLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8580,'38346','Eidar','EIDAR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8581,'14895','Eidfjord','EIDFJORD',NULL,'','Norway','Eidfjord',0,0,164,'2016-10-17 10:52:28','1900-01-01 00:00:00',1,0,1),(8582,'4238','Eiffel Tower - Orsay Museum (7)','EIFFEL TOWER - ORSAY MUSEUM (7)',NULL,'','France','',0,0,76,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8583,'41723','Eigergletscher','EIGERGLETSCHER',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8584,'15018','Eiken','EIKEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8585,'11059','Eilat','EILAT',NULL,'','Israel','',0,0,106,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8586,'26505','Eildon','EILDON',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8587,'27206','Eimke','EIMKE',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8588,'41881','Ein El Sokhna','EIN EL SOKHNA',NULL,'','Egypt','',0,0,65,'2016-10-17 10:52:29','1900-01-01 00:00:00',1,0,1),(8589,'27207','Einbeck','EINBECK',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8590,'14595','Eindhoven','EINDHOVEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8591,'23192','Einsiedeln','EINSIEDELN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8592,'6025','Einvaux','EINVAUX',NULL,'','France','',0,0,76,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8593,'13656','Eischen','EISCHEN',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8594,'134','Eisenach','EISENACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8595,'41722','Eisenbach','EISENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8596,'43757','Eisenerz','EISENERZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8597,'27062','Eisenstadt','EISENSTADT',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:30','1900-01-01 00:00:00',1,0,1),(8598,'135','Eisleben','EISLEBEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8599,'38984','Eitorf','EITORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8600,'3326','Ejea De Los Caballeros','EJEA DE LOS CABALLEROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8601,'9647','Ekali','EKALI',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8602,'16243','Ekaterinovka','EKATERINOVKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8603,'16821','Ekero','EKERO',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8604,'43743','Eklingji','EKLINGJI',NULL,'','India','',0,0,101,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8605,'17616','Eklutna','EKLUTNA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8606,'42310','Eksharad','EKSHARAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:31','1900-01-01 00:00:00',1,0,1),(8607,'16665','Eksjoe','EKSJOE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:32','1900-01-01 00:00:00',1,0,1),(8608,'17617','Ekuk','EKUK',NULL,'','United States','',0,0,231,'2016-10-17 10:52:32','1900-01-01 00:00:00',1,0,1),(8609,'17618','Ekwok','EKWOK',NULL,'','United States','',0,0,231,'2016-10-17 10:52:32','1900-01-01 00:00:00',1,0,1),(8610,'24090','El Bagre','EL BAGRE',NULL,'','Colombia','',0,0,49,'2016-10-17 10:52:32','1900-01-01 00:00:00',1,0,1),(8611,'38671','El Golea','EL GOLEA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:52:34','1900-01-01 00:00:00',1,0,1),(8612,'2365','El Macao','EL MACAO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 10:52:35','1900-01-01 00:00:00',1,0,1),(8613,'44004','Elancourt','ELANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:52:37','1900-01-01 00:00:00',1,0,1),(8614,'42263','Elaphiti Islands','ELAPHITI ISLANDS',NULL,'','Croatia','',0,0,55,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8615,'42605','Elappara','ELAPPARA',NULL,'','India','',0,0,101,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8616,'42519','Elati','ELATI',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8617,'17287','Elazig','ELAZIG',NULL,'','Turkey','',0,0,222,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8618,'19792','Elberton','ELBERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8619,'24450','Elbigenalp','ELBIGENALP',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8620,'15617','Elblag','ELBLAG',NULL,'','Poland','',0,0,174,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8621,'28764','Elbridge','ELBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:38','1900-01-01 00:00:00',1,0,1),(8622,'3754','Elche','ELCHE',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8623,'26217','Elcho Island','ELCHO ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8624,'3706','Elciego','ELCIEGO',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8625,'7049','Elcot','ELCOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8626,'34486','Elder Mills','ELDER MILLS',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8627,'27628','Eldon','ELDON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8628,'34765','Eldora','ELDORA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:39','1900-01-01 00:00:00',1,0,1),(8629,'20531','Eldred','ELDRED',NULL,'','United States','',0,0,231,'2016-10-17 10:52:40','1900-01-01 00:00:00',1,0,1),(8630,'20203','Eldridge','ELDRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:40','1900-01-01 00:00:00',1,0,1),(8631,'31490','Electric City','ELECTRIC CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:40','1900-01-01 00:00:00',1,0,1),(8632,'19979','Eleele','ELEELE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8633,'44172','Elefsina','ELEFSINA',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8634,'44173','Eleftheres','ELEFTHERES',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8635,'39953','Elenite','ELENITE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8636,'28521','Elephant Butte','ELEPHANT BUTTE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8637,'9458','Eleusis','ELEUSIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8638,'42421','Eleuthera','ELEUTHERA',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8639,'38037','Elevated Plains','ELEVATED PLAINS',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:41','1900-01-01 00:00:00',1,0,1),(8640,'22741','Elfershausen','ELFERSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8641,'17619','Elfin Cove','ELFIN COVE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8642,'15618','Elganowo','ELGANOWO',NULL,'','Poland','',0,0,174,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8643,'8033','Elgin','ELGIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8644,'18128','Elgin','ELGIN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:42','1900-01-01 00:00:00',1,0,1),(8645,'9648','Elia','ELIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8646,'17620','Elim','ELIM',NULL,'','United States','',0,0,231,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8647,'42467','Elimaki','ELIMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8648,'4239','Elincourt-ste-marguerite','ELINCOURT-STE-MARGUERITE',NULL,'','France','',0,0,76,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8649,'37661','Elios','ELIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8650,'21863','Eliot','ELIOT',NULL,'','United States','',0,0,231,'2016-10-17 10:52:43','1900-01-01 00:00:00',1,0,1),(8651,'9459','Elis','ELIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:52:44','1900-01-01 00:00:00',1,0,1),(8652,'16330','Elista','ELISTA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:52:44','1900-01-01 00:00:00',1,0,1),(8653,'27162','Elixhausen','ELIXHAUSEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:44','1900-01-01 00:00:00',1,0,1),(8654,'26797','Elizabeth','ELIZABETH',NULL,'','Australia','',0,0,13,'2016-10-17 10:52:45','1900-01-01 00:00:00',1,0,1),(8655,'33137','Elizabethton','ELIZABETHTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:45','1900-01-01 00:00:00',1,0,1),(8656,'29921','Elizabethtown','ELIZABETHTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:45','1900-01-01 00:00:00',1,0,1),(8657,'29922','Elizabethville','ELIZABETHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:46','1900-01-01 00:00:00',1,0,1),(8658,'3055','Elizondo','ELIZONDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:46','1900-01-01 00:00:00',1,0,1),(8659,'25305','Elk Point','ELK POINT',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:48','1900-01-01 00:00:00',1,0,1),(8660,'25432','Elkford','ELKFORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:48','1900-01-01 00:00:00',1,0,1),(8661,'21046','Elkhart','ELKHART',NULL,'','United States','',0,0,231,'2016-10-17 10:52:48','1900-01-01 00:00:00',1,0,1),(8662,'31742','Elkhorn','ELKHORN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:49','1900-01-01 00:00:00',1,0,1),(8663,'33846','Elkin','ELKIN',NULL,'','United States','',0,0,231,'2016-10-17 10:52:49','1900-01-01 00:00:00',1,0,1),(8664,'31976','Elkins','ELKINS',NULL,'','United States','',0,0,231,'2016-10-17 10:52:49','1900-01-01 00:00:00',1,0,1),(8665,'17865','Elkmont','ELKMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:52:50','1900-01-01 00:00:00',1,0,1),(8666,'32808','Elko','ELKO',NULL,'','United States','',0,0,231,'2016-10-17 10:52:50','1900-01-01 00:00:00',1,0,1),(8667,'21689','Elkridge','ELKRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:50','1900-01-01 00:00:00',1,0,1),(8668,'21690','Elkton','ELKTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:50','1900-01-01 00:00:00',1,0,1),(8669,'31977','Elkview','ELKVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8670,'43798','Elkwater','ELKWATER',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8671,'13728','Ellaidhoo','ELLAIDHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8672,'14533','Ellecom','ELLECOM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8673,'31491','Ellensburg','ELLENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:52:51','1900-01-01 00:00:00',1,0,1),(8674,'19352','Ellenton','ELLENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8675,'28766','Ellenville','ELLENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8676,'19794','Ellenwood','ELLENWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8677,'33847','Ellerbe','ELLERBE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8678,'15069','Ellerslie','ELLERSLIE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:52:52','1900-01-01 00:00:00',1,0,1),(8679,'8034','Ellesmere Port','ELLESMERE PORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8680,'21691','Ellicott City','ELLICOTT CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8681,'28767','Ellicottville','ELLICOTTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8682,'19795','Ellijay','ELLIJAY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8683,'34487','Elliot Lake','ELLIOT LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:53','1900-01-01 00:00:00',1,0,1),(8684,'31743','Ellison Bay','ELLISON BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:54','1900-01-01 00:00:00',1,0,1),(8685,'32559','Ellisras','ELLISRAS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:52:54','1900-01-01 00:00:00',1,0,1),(8686,'27629','Ellisville','ELLISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:52:54','1900-01-01 00:00:00',1,0,1),(8687,'24553','Ellmau','ELLMAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:54','1900-01-01 00:00:00',1,0,1),(8688,'8036','Ellon','ELLON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:55','1900-01-01 00:00:00',1,0,1),(8689,'16881','Ellos','ELLOS',NULL,'','Sweden','',0,0,209,'2016-10-17 10:52:55','1900-01-01 00:00:00',1,0,1),(8690,'21047','Ellsworth','ELLSWORTH',NULL,'','United States','',0,0,231,'2016-10-17 10:52:55','1900-01-01 00:00:00',1,0,1),(8691,'22529','Ellwangen','ELLWANGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:55','1900-01-01 00:00:00',1,0,1);
INSERT INTO `tb_master_geo_city` VALUES (8692,'23193','Elm','ELM',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:52:56','1900-01-01 00:00:00',1,0,1),(8693,'30606','Elmendorf','ELMENDORF',NULL,'','United States','',0,0,231,'2016-10-17 10:52:56','1900-01-01 00:00:00',1,0,1),(8694,'20536','Elmhurst','ELMHURST',NULL,'','United States','',0,0,231,'2016-10-17 10:52:56','1900-01-01 00:00:00',1,0,1),(8695,'44165','Elmina','ELMINA',NULL,'','Ghana','',0,0,84,'2016-10-17 10:52:57','1900-01-01 00:00:00',1,0,1),(8696,'28770','Elmira','ELMIRA',NULL,'','United States','',0,0,231,'2016-10-17 10:52:57','1900-01-01 00:00:00',1,0,1),(8697,'706','Elmshorn','ELMSHORN',NULL,'','Germany','',0,0,83,'2016-10-17 10:52:57','1900-01-01 00:00:00',1,0,1),(8698,'28263','Elmwood Park','ELMWOOD PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:52:57','1900-01-01 00:00:00',1,0,1),(8699,'34488','Elora','ELORA',NULL,'','Canada','',0,0,39,'2016-10-17 10:52:58','1900-01-01 00:00:00',1,0,1),(8700,'37457','Elorz','ELORZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:52:58','1900-01-01 00:00:00',1,0,1),(8701,'18129','Eloy','ELOY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:58','1900-01-01 00:00:00',1,0,1),(8702,'31746','Elroy','ELROY',NULL,'','United States','',0,0,231,'2016-10-17 10:52:58','1900-01-01 00:00:00',1,0,1),(8703,'20538','Elsah','ELSAH',NULL,'','United States','',0,0,231,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8704,'27163','Elsbethen','ELSBETHEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8705,'32560','Elsburg','ELSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8706,'8037','Elsenham','ELSENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8707,'14534','Elspeet','ELSPEET',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8708,'40234','Elst','ELST',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8709,'8038','Elstow','ELSTOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8710,'8039','Elstree','ELSTREE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8711,'8040','Elterwater','ELTERWATER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:52:59','1900-01-01 00:00:00',1,0,1),(8712,'26900','Eltham','ELTHAM',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8713,'42459','Eltville','ELTVILLE',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8714,'16016','Elvas','ELVAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8715,'36258','Elven','ELVEN',NULL,'','France','',0,0,76,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8716,'29924','Elverson','ELVERSON',NULL,'','United States','',0,0,231,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8717,'14888','Elverum','ELVERUM',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8718,'38147','Elwood','ELWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:00','1900-01-01 00:00:00',1,0,1),(8719,'20869','Elwood','ELWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:53:01','1900-01-01 00:00:00',1,0,1),(8720,'8041','Ely','ELY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:01','1900-01-01 00:00:00',1,0,1),(8721,'29337','Elyria','ELYRIA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:01','1900-01-01 00:00:00',1,0,1),(8722,'29925','Elysburg','ELYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:53:01','1900-01-01 00:00:00',1,0,1),(8723,'32312','Emae','EMAE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8724,'42755','Embilipitiya','EMBILIPITIYA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8725,'9460','Emborio','EMBORIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8726,'6423','Embrun','EMBRUN',NULL,'','France','',0,0,76,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8727,'28522','Embudo','EMBUDO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8728,'136','Emden','EMDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8729,'2229','Emdrup','EMDRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8730,'23577','Emei','EMEI',NULL,'','China','',0,0,46,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8731,'23694','Emeishan','EMEISHAN',NULL,'','China','',0,0,46,'2016-10-17 10:53:02','1900-01-01 00:00:00',1,0,1),(8732,'5848','Emerainville','EMERAINVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8733,'26404','Emerald','EMERALD',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8734,'33848','Emerald Isle','EMERALD ISLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8735,'18465','Emeryville','EMERYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8736,'27966','Emigrant','EMIGRANT',NULL,'','United States','',0,0,231,'2016-10-17 10:53:03','1900-01-01 00:00:00',1,0,1),(8737,'27630','Eminence','EMINENCE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8738,'16728','Emmaboda','EMMABODA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8739,'14757','Emmeloord','EMMELOORD',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8740,'14495','Emmen','EMMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8741,'22530','Emmendingen','EMMENDINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8742,'6161','Emmerin','EMMERIN',NULL,'','France','',0,0,76,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8743,'26985','Emmersdorf','EMMERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8744,'20205','Emmetsburg','EMMETSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8745,'23194','Emmetten','EMMETTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:04','1900-01-01 00:00:00',1,0,1),(8746,'21692','Emmitsburg','EMMITSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8747,'17621','Emmonak','EMMONAK',NULL,'','United States','',0,0,231,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8748,'32516','Empangeni','EMPANGENI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8749,'26108','Empedrado','EMPEDRADO',NULL,'','Argentina','',0,0,10,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8750,'22531','Empfingen','EMPFINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8751,'7050','Empingham','EMPINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8752,'34766','Empire','EMPIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:05','1900-01-01 00:00:00',1,0,1),(8753,'11909','Empoli','EMPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:06','1900-01-01 00:00:00',1,0,1),(8754,'31099','Emporia','EMPORIA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:06','1900-01-01 00:00:00',1,0,1),(8755,'2467','Empuriabrava','EMPURIABRAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8756,'8042','Emsworth','EMSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8757,'10308','Enarotali','ENAROTALI',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8758,'25876','Encamp','ENCAMP',NULL,'','Andorra','',0,0,5,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8759,'25157','Encantado','ENCANTADO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:53:07','1900-01-01 00:00:00',1,0,1),(8760,'18466','Encanto','ENCANTO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:08','1900-01-01 00:00:00',1,0,1),(8761,'16110','Encarnacion','ENCARNACION',NULL,'','Paraguay','',0,0,171,'2016-10-17 10:53:08','1900-01-01 00:00:00',1,0,1),(8762,'18467','Encinitas','ENCINITAS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:08','1900-01-01 00:00:00',1,0,1),(8763,'18468','Encino','ENCINO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:08','1900-01-01 00:00:00',1,0,1),(8764,'10350','Ende','ENDE',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:53:09','1900-01-01 00:00:00',1,0,1),(8765,'25433','Enderby','ENDERBY',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:09','1900-01-01 00:00:00',1,0,1),(8766,'28773','Endicott','ENDICOTT',NULL,'','United States','',0,0,231,'2016-10-17 10:53:09','1900-01-01 00:00:00',1,0,1),(8767,'4240','Endoume','ENDOUME',NULL,'','France','',0,0,76,'2016-10-17 10:53:09','1900-01-01 00:00:00',1,0,1),(8768,'28774','Endwell','ENDWELL',NULL,'','United States','',0,0,231,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8769,'40516','Enfidha','ENFIDHA',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8770,'25708','Enfield','ENFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8771,'19080','Enfield','ENFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8772,'10732','Enfield','ENFIELD',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:10','1900-01-01 00:00:00',1,0,1),(8773,'8044','Enfield','ENFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8774,'26798','Enfield','ENFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8775,'42742','Engara','ENGARA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8776,'24132','Engativa','ENGATIVA',NULL,'','Colombia','',0,0,49,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8777,'23016','Enge','ENGE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8778,'23195','Engelberg','ENGELBERG',NULL,'','Switzerland','Engelberg',0,0,210,'2016-10-17 10:53:11','1900-01-01 00:00:00',1,0,1),(8779,'1968','Engelsbach','ENGELSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8780,'25082','Engenho Novo','ENGENHO NOVO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8781,'37427','Engerwitzdorf','ENGERWITZDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8782,'4706','Enghien Les Bains','ENGHIEN LES BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8783,'28264','Englewood','ENGLEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:53:12','1900-01-01 00:00:00',1,0,1),(8784,'17622','English Bay','ENGLISH BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:53:13','1900-01-01 00:00:00',1,0,1),(8785,'26163','English Harbour','ENGLISH HARBOUR',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:53:13','1900-01-01 00:00:00',1,0,1),(8786,'7051','English Riviera','ENGLISH RIVIERA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:13','1900-01-01 00:00:00',1,0,1),(8787,'6162','Englos','ENGLOS',NULL,'','France','',0,0,76,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8788,'39462','Enguera','ENGUERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8789,'32904','Enid','ENID',NULL,'','United States','',0,0,231,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8790,'16259','Eniseysk','ENISEYSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8791,'14149','Eniwetok','ENIWETOK',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8792,'36455','Enkhuizen','ENKHUIZEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8793,'16666','Enkoeping','ENKOEPING',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8794,'36666','Enkoping','ENKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:14','1900-01-01 00:00:00',1,0,1),(8795,'7052','Ennerdale Bridge','ENNERDALE BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8796,'23196','Ennetburgen','ENNETBURGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8797,'27353','Ennigerloh','ENNIGERLOH',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8798,'10733','Ennis','ENNIS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8799,'40917','Ennis, Co.clare','ENNIS, CO.CLARE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8800,'42703','Enniscorthy','ENNISCORTHY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8801,'35392','Enniscrone','ENNISCRONE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:15','1900-01-01 00:00:00',1,0,1),(8802,'10960','Enniskerry','ENNISKERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8803,'8045','Enniskillen','ENNISKILLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8804,'10784','Ennistimon','ENNISTIMON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8805,'35393','Ennistymon','ENNISTYMON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8806,'27128','Enns','ENNS',NULL,'','Austria','',0,0,14,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8807,'42933','Enoch','ENOCH',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8808,'29926','Enola','ENOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8809,'3923','Enontekio','ENONTEKIO',NULL,'','Finland','',0,0,75,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8810,'14749','Enschede','ENSCHEDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:16','1900-01-01 00:00:00',1,0,1),(8811,'14090','Ensenada','ENSENADA',NULL,'','Mexico','Ensenada',0,0,141,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8812,'23826','Enshi','ENSHI',NULL,'','China','',0,0,46,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8813,'16822','Enskede','ENSKEDE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8814,'8046','Enstone','ENSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8815,'6424','Ensues-la-redonne','ENSUES-LA-REDONNE',NULL,'','France','',0,0,76,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8816,'42536','Entabeni','ENTABENI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8817,'17477','Entebbe','ENTEBBE',NULL,'','Uganda','',0,0,226,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8818,'17866','Enterprise','ENTERPRISE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:17','1900-01-01 00:00:00',1,0,1),(8819,'4241','Entraigues-sur-la-sorgue','ENTRAIGUES-SUR-LA-SORGUE',NULL,'','France','',0,0,76,'2016-10-17 10:53:18','1900-01-01 00:00:00',1,0,1),(8820,'41958','Entrambasaguas','ENTRAMBASAGUAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:18','1900-01-01 00:00:00',1,0,1),(8821,'6083','Entraygues-sur-truyere','ENTRAYGUES-SUR-TRUYERE',NULL,'','France','',0,0,76,'2016-10-17 10:53:18','1900-01-01 00:00:00',1,0,1),(8822,'42096','Entre Rios','ENTRE RIOS',NULL,'','Argentina','',0,0,10,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8823,'15805','Entre-campos','ENTRE-CAMPOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8824,'29927','Entriken','ENTRIKEN',NULL,'','United States','',0,0,231,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8825,'31494','Enumclaw','ENUMCLAW',NULL,'','United States','',0,0,231,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8826,'39564','Enval','ENVAL',NULL,'','France','',0,0,76,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8827,'41028','Eolie Islands','EOLIE ISLANDS',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8828,'5460','Epagny','EPAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:53:19','1900-01-01 00:00:00',1,0,1),(8829,'14535','Epe','EPE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8830,'14569','Epen','EPEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8831,'5727','Epernay','EPERNAY',NULL,'','France','',0,0,76,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8832,'31747','Ephraim','EPHRAIM',NULL,'','United States','',0,0,231,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8833,'31495','Ephrata','EPHRATA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:20','1900-01-01 00:00:00',1,0,1),(8834,'9461','Epidaurus','EPIDAURUS',NULL,'','Greece','Epidaurus',0,0,86,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8835,'42518','Epidavros','EPIDAVROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8836,'6026','Epinal','EPINAL',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8837,'4707','Epinay-sur-orge','EPINAY-SUR-ORGE',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8838,'4708','Epinay-sur-seine','EPINAY-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8839,'5537','Epiniac','EPINIAC',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8840,'6621','Epinouze','EPINOUZE',NULL,'','France','',0,0,76,'2016-10-17 10:53:21','1900-01-01 00:00:00',1,0,1),(8841,'4709','Epone','EPONE',NULL,'','France','',0,0,76,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8842,'6163','Eppe-sauvage','EPPE-SAUVAGE',NULL,'','France','',0,0,76,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8843,'8047','Epping','EPPING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8844,'32695','Epping','EPPING',NULL,'','United States','',0,0,231,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8845,'8048','Epsom','EPSOM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8846,'37965','Eptingen','EPTINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8847,'43080','Equemauville','EQUEMAUVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:22','1900-01-01 00:00:00',1,0,1),(8848,'37983','Équemauville','ÉQUEMAUVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8849,'4991','Equeurdreville Hainneville','EQUEURDREVILLE HAINNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8850,'41537','Equeurdreville-hainneville','EQUEURDREVILLE-HAINNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8851,'4710','Eragny','ERAGNY',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8852,'42517','Erateini','ERATEINI',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8853,'4711','Erbalunga','ERBALUNGA',NULL,'','France','',0,0,76,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8854,'37211','Erbenhausen','ERBENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8855,'43137','Erbil','ERBIL',NULL,'','Iraq','',0,0,104,'2016-10-17 10:53:23','1900-01-01 00:00:00',1,0,1),(8856,'11207','Erbusco','ERBUSCO',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8857,'42270','Erciyes','ERCIYES',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8858,'11911','Ercolano','ERCOLANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8859,'10100','Erd','ERD',NULL,'','Hungary','',0,0,99,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8860,'41076','Erdek','ERDEK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8861,'42683','Erdemli','ERDEMLI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8862,'5538','Erdeven','ERDEVEN',NULL,'','France','',0,0,76,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8863,'137','Erding','ERDING',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8864,'38457','Erdobenye','ERDOBENYE',NULL,'','Hungary','',0,0,99,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8865,'23578','Erdos','ERDOS',NULL,'','China','',0,0,46,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8866,'41775','Erechim','ERECHIM',NULL,'','Brazil','',0,0,30,'2016-10-17 10:53:24','1900-01-01 00:00:00',1,0,1),(8867,'43620','Eregli','EREGLI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8868,'9462','Eressos','ERESSOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8869,'9651','Eretria','ERETRIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8870,'36385','Erfoud','ERFOUD',NULL,'','Morocco','',0,0,148,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8871,'1969','Erfurt','ERFURT',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8872,'16466','Ergi-barlyk','ERGI-BARLYK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8873,'22742','Ergolding','ERGOLDING',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8874,'5539','Ergue-gaberic','ERGUE-GABERIC',NULL,'','France','',0,0,76,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8875,'12998','Erice','ERICE',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:25','1900-01-01 00:00:00',1,0,1),(8876,'15999','Ericeira','ERICEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:26','1900-01-01 00:00:00',1,0,1),(8877,'32905','Erick','ERICK',NULL,'','United States','',0,0,231,'2016-10-17 10:53:26','1900-01-01 00:00:00',1,0,1),(8878,'22060','Erie','ERIE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:26','1900-01-01 00:00:00',1,0,1),(8879,'7053','Eriskay','ERISKAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:26','1900-01-01 00:00:00',1,0,1),(8880,'27354','Erkrath','ERKRATH',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8881,'22743','Erlabrunn','ERLABRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8882,'22744','Erlangen','ERLANGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8883,'33627','Erlanger','ERLANGER',NULL,'','United States','',0,0,231,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8884,'42909','Erldunda','ERLDUNDA',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8885,'42669','Erlensee','ERLENSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8886,'37117','Ermelo','ERMELO',NULL,'','South Africa','',0,0,195,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8887,'36456','Ermelo','ERMELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:27','1900-01-01 00:00:00',1,0,1),(8888,'9790','Ermioni','ERMIONI',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8889,'15510','Ermita','ERMITA',NULL,'','Philippines','',0,0,173,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8890,'9463','Ermones','ERMONES',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8891,'9809','Ermoupolis','ERMOUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8892,'38095','Ermua','ERMUA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8893,'10644','Ernakulam','ERNAKULAM',NULL,'','India','Ernakulam',3,0,101,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8894,'37449','Ernst','ERNST',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8895,'24716','Erondegem','ERONDEGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8896,'13677','Errachidia','ERRACHIDIA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8897,'39114','Erriadh','ERRIADH',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8898,'7054','Erskine','ERSKINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:28','1900-01-01 00:00:00',1,0,1),(8899,'27380','Erskine','ERSKINE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8900,'23197','Erstfeld','ERSTFELD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8901,'42730','Erts','ERTS',NULL,'','Andorra','',0,0,5,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8902,'33139','Erwin','ERWIN',NULL,'','United States','',0,0,231,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8903,'29931','Erwinna','ERWINNA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8904,'27355','Erwitte','ERWITTE',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8905,'17289','Erzincan','ERZINCAN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8906,'17291','Erzurum','ERZURUM',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:29','1900-01-01 00:00:00',1,0,1),(8907,'2258','Esbjerg','ESBJERG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8908,'5097','Esbly','ESBLY',NULL,'','France','',0,0,76,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8909,'3121','Escalante','ESCALANTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8910,'33328','Escalante','ESCALANTE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8911,'13572','Escamp','ESCAMP',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8912,'22061','Escanaba','ESCANABA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:30','1900-01-01 00:00:00',1,0,1),(8913,'13573','Escap','ESCAP',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8914,'3327','Escarrilla','ESCARRILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8915,'24167','Escazu','ESCAZU',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8916,'41032','Esch Sur Alzette','ESCH SUR ALZETTE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8917,'40646','Eschau','ESCHAU',NULL,'','France','',0,0,76,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8918,'417','Eschborn','ESCHBORN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8919,'39140','Eschenz','ESCHENZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8920,'418','Eschersheim','ESCHERSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8921,'13657','Esch-sur-alzette','ESCH-SUR-ALZETTE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8922,'419','Eschwege','ESCHWEGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:31','1900-01-01 00:00:00',1,0,1),(8923,'2040','Eschweiler','ESCHWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:32','1900-01-01 00:00:00',1,0,1),(8924,'40490','Escolives-sainte-camille','ESCOLIVES-SAINTE-CAMILLE',NULL,'','France','',0,0,76,'2016-10-17 10:53:32','1900-01-01 00:00:00',1,0,1),(8925,'18470','Escondido','ESCONDIDO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:32','1900-01-01 00:00:00',1,0,1),(8926,'8049','Escrick','ESCRICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:32','1900-01-01 00:00:00',1,0,1),(8927,'43241','Escunhau','ESCUNHAU',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8928,'17245','Esenboga','ESENBOGA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8929,'17290','Esenyurt','ESENYURT',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8930,'8050','Esher','ESHER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8931,'37635','Eshowe','ESHOWE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8932,'7055','Eskbank','ESKBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8933,'39349','Eskifjoerdur','ESKIFJOERDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8934,'16773','Eskilstuna','ESKILSTUNA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8935,'17293','Eskisehir','ESKISEHIR',NULL,'','Turkey','',0,0,222,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8936,'2622','Eskoriatza','ESKORIATZA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8937,'16863','Eslov','ESLOV',NULL,'','Sweden','',0,0,209,'2016-10-17 10:53:33','1900-01-01 00:00:00',1,0,1),(8938,'2395','Esmeraldas','ESMERALDAS',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8939,'15855','Esmoriz','ESMORIZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8940,'4242','Espace Killy','ESPACE KILLY',NULL,'','France','',0,0,76,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8941,'40052','Espalion','ESPALION',NULL,'','France','',0,0,76,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8942,'28523','Espanola','ESPANOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8943,'34489','Espanola','ESPANOLA',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8944,'27356','Espelkamp','ESPELKAMP',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:34','1900-01-01 00:00:00',1,0,1),(8945,'39142','Espenau','ESPENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8946,'26589','Esperance','ESPERANCE',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8947,'15749','Esperanza','ESPERANZA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8948,'15856','Espinho','ESPINHO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8949,'38562','Espirdo','ESPIRDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8950,'24975','Espirito Santo','ESPIRITO SANTO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8951,'32313','Espiritu Santo','ESPIRITU SANTO',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8952,'2623','Esplugues De Llobregat','ESPLUGUES DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8953,'3961','Espoo','ESPOO',NULL,'','Finland','',0,0,75,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8954,'2468','Esporles','ESPORLES',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8955,'15882','Esposende','ESPOSENDE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:35','1900-01-01 00:00:00',1,0,1),(8956,'3541','Espot','ESPOT',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8957,'26115','Esquel','ESQUEL',NULL,'','Argentina','',0,0,10,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8958,'26109','Esquina','ESQUINA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8959,'9870','Esquipulas','ESQUIPULAS',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8960,'41356','Esquivias','ESQUIVIAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8961,'13678','Essaouira','ESSAOUIRA',NULL,'','Morocco','',0,0,148,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8962,'27208','Essel','ESSEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8963,'38673','Esselbach','ESSELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8964,'27358','Essen','ESSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8965,'26506','Essendon','ESSENDON',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:36','1900-01-01 00:00:00',1,0,1),(8966,'7056','Essex','ESSEX',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:37','1900-01-01 00:00:00',1,0,1),(8967,'21368','Essex','ESSEX',NULL,'','United States','',0,0,231,'2016-10-17 10:53:37','1900-01-01 00:00:00',1,0,1),(8968,'41536','Essey-les-nancy','ESSEY-LES-NANCY',NULL,'','France','',0,0,76,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8969,'4243','Essey-lès-nancy','ESSEY-LÈS-NANCY',NULL,'','France','',0,0,76,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8970,'39652','Essing','ESSING',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8971,'29932','Essington','ESSINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8972,'22532','Esslingen','ESSLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:38','1900-01-01 00:00:00',1,0,1),(8973,'4244','Essomes Sur Marne','ESSOMES SUR MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8974,'44008','Essomes-sur-marne','ESSOMES-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8975,'39641','Essoyes','ESSOYES',NULL,'','France','',0,0,76,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8976,'846','Estado De Mexico','ESTADO DE MEXICO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8977,'5912','Estagel','ESTAGEL',NULL,'','France','',0,0,76,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8978,'2624','Estamariu','ESTAMARIU',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:39','1900-01-01 00:00:00',1,0,1),(8979,'15857','Estarreja','ESTARREJA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8980,'16000','Estefania','ESTEFANIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8981,'42985','Estella','ESTELLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8982,'30608','Estelle','ESTELLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8983,'2625','Estellencs','ESTELLENCS',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8984,'3230','Estepona','ESTEPONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8985,'25989','Esterel','ESTEREL',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8986,'24168','Esterillos Oeste','ESTERILLOS OESTE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:53:40','1900-01-01 00:00:00',1,0,1),(8987,'5728','Esternay','ESTERNAY',NULL,'','France','',0,0,76,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8988,'19354','Estero','ESTERO',NULL,'','United States','',0,0,231,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8989,'2626','Esterri D\'aneu','ESTERRI D\'ANEU',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8990,'34768','Estes Park','ESTES PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8991,'22942','Estevan','ESTEVAN',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8992,'20206','Estherville','ESTHERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:41','1900-01-01 00:00:00',1,0,1),(8993,'30320','Estill','ESTILL',NULL,'','United States','',0,0,231,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8994,'15926','Estoi','ESTOI',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8995,'15927','Estombar','ESTOMBAR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8996,'16001','Estoril','ESTORIL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8997,'36561','Estoril-alcabideche','ESTORIL-ALCABIDECHE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8998,'41662','Estreito Camara De Lobos','ESTREITO CAMARA DE LOBOS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(8999,'15872','Estrela','ESTRELA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(9000,'15775','Estremoz','ESTREMOZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(9001,'37498','Esztergom','ESZTERGOM',NULL,'','Hungary','',0,0,99,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(9002,'37663','Etampes','ETAMPES',NULL,'','France','',0,0,76,'2016-10-17 10:53:42','1900-01-01 00:00:00',1,0,1),(9003,'6164','Etaples','ETAPLES',NULL,'','France','',0,0,76,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9004,'3451','Eterna','ETERNA',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9005,'4712','Etiolles','ETIOLLES',NULL,'','France','',0,0,76,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9006,'32093','Etna','ETNA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9007,'13004','Etna','ETNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:43','1900-01-01 00:00:00',1,0,1),(9008,'40699','Etne','ETNE',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9009,'34490','Etobicoke','ETOBICOKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9010,'5729','Etoges','ETOGES',NULL,'','France','',0,0,76,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9011,'14399','Etosha','ETOSHA',NULL,'','Namibia','',0,0,151,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9012,'1390','Etosha-northern Region','ETOSHA-NORTHERN REGION',NULL,'','NAMIBIA','',0,0,151,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9013,'33140','Etowah','ETOWAH',NULL,'','United States','',0,0,231,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9014,'23017','Etoy','ETOY',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:44','1900-01-01 00:00:00',1,0,1),(9015,'40487','Etreaupont','ETREAUPONT',NULL,'','France','',0,0,76,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9016,'40271','Etrelles','ETRELLES',NULL,'','France','',0,0,76,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9017,'44012','Etrembieres','ETREMBIERES',NULL,'','France','',0,0,76,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9018,'5807','Etretat','ETRETAT',NULL,'','France','',0,0,76,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9019,'11912','Etroubles','ETROUBLES',NULL,'','Italy','',0,0,107,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9020,'42137','Ettalong','ETTALONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:45','1900-01-01 00:00:00',1,0,1),(9021,'14461','Etten-leur','ETTEN-LEUR',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9022,'24623','Etterbeek','ETTERBEEK',NULL,'','Belgium','',0,0,21,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9023,'29933','Etters','ETTERS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9024,'39152','Ettington','ETTINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9025,'2078','Ettlingen','ETTLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9026,'2627','Etxalar','ETXALAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9027,'17111','Eua Island','EUA ISLAND',NULL,'','Tonga','',0,0,218,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9028,'9464','Euboea','EUBOEA',NULL,'','Greece','',0,0,86,'2016-10-17 10:53:46','1900-01-01 00:00:00',1,0,1),(9029,'29339','Euclid','EUCLID',NULL,'','United States','',0,0,231,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9030,'18011','Eudora','EUDORA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9031,'39097','Euerdorf','EUERDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9032,'17868','Eufaula','EUFAULA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9033,'38174','Eugendorf','EUGENDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:53:47','1900-01-01 00:00:00',1,0,1),(9034,'29657','Eugene','EUGENE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9035,'5185','Eugenie-les-bains','EUGENIE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9036,'30609','Euless','EULESS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9037,'43716','Eumemmerring','EUMEMMERRING',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9038,'42712','Eungella','EUNGELLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9039,'21195','Eunice','EUNICE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:48','1900-01-01 00:00:00',1,0,1),(9040,'24672','Eupen','EUPEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:53:49','1900-01-01 00:00:00',1,0,1),(9041,'40765','Eupora','EUPORA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:49','1900-01-01 00:00:00',1,0,1),(9042,'4247','Eure-et-loir','EURE-ET-LOIR',NULL,'','France','',0,0,76,'2016-10-17 10:53:49','1900-01-01 00:00:00',1,0,1),(9043,'27632','Eureka','EUREKA',NULL,'','United States','',0,0,231,'2016-10-17 10:53:49','1900-01-01 00:00:00',1,0,1),(9044,'26507','Euroa','EUROA',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:50','1900-01-01 00:00:00',1,0,1),(9045,'42910','Eurong','EURONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:50','1900-01-01 00:00:00',1,0,1),(9046,'14462','Europoort','EUROPOORT',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:50','1900-01-01 00:00:00',1,0,1),(9047,'27359','Euskirchen','EUSKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9048,'42458','Euskrichen','EUSKRICHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9049,'19355','Eustis','EUSTIS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9050,'17869','Eutaw','EUTAW',NULL,'','United States','',0,0,231,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9051,'34769','Evans','EVANS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:51','1900-01-01 00:00:00',1,0,1),(9052,'20207','Evansdale','EVANSDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:52','1900-01-01 00:00:00',1,0,1),(9053,'20541','Evanston','EVANSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:53:52','1900-01-01 00:00:00',1,0,1),(9054,'32095','Evansville','EVANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:52','1900-01-01 00:00:00',1,0,1),(9055,'8052','Evanton','EVANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9056,'22063','Evart','EVART',NULL,'','United States','',0,0,231,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9057,'27381','Eveleth','EVELETH',NULL,'','United States','',0,0,231,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9058,'14795','Evenes','EVENES',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9059,'15012','Evenskjer','EVENSKJER',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:53','1900-01-01 00:00:00',1,0,1),(9060,'31496','Everett','EVERETT',NULL,'','United States','',0,0,231,'2016-10-17 10:53:54','1900-01-01 00:00:00',1,0,1),(9061,'39076','Evergem','EVERGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 10:53:54','1900-01-01 00:00:00',1,0,1),(9062,'19356','Everglades City','EVERGLADES CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:53:54','1900-01-01 00:00:00',1,0,1),(9063,'34770','Evergreen','EVERGREEN',NULL,'','United States','',0,0,231,'2016-10-17 10:53:54','1900-01-01 00:00:00',1,0,1),(9064,'30610','Everman','EVERMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:53:55','1900-01-01 00:00:00',1,0,1),(9065,'8053','Evershot','EVERSHOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:55','1900-01-01 00:00:00',1,0,1),(9066,'7058','Eversley','EVERSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:55','1900-01-01 00:00:00',1,0,1),(9067,'8054','Evesham','EVESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9068,'6622','Evian-les-bains','EVIAN-LES-BAINS',NULL,'','France','Evian-les-Bains',0,0,76,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9069,'23198','Evilard','EVILARD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9070,'38927','Evje','EVJE',NULL,'','Norway','',0,0,164,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9071,'15913','Evora','EVORA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9072,'5809','Evreux','EVREUX',NULL,'','France','',0,0,76,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9073,'43248','Evron','EVRON',NULL,'','France','',0,0,76,'2016-10-17 10:53:56','1900-01-01 00:00:00',1,0,1),(9074,'4248','Évron','ÉVRON',NULL,'','France','',0,0,76,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9075,'4713','Evry','EVRY',NULL,'','France','',0,0,76,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9076,'28265','Ewing','EWING',NULL,'','United States','',0,0,231,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9077,'7059','Ewloe','EWLOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9078,'24044','Ewo','EWO',NULL,'','Congo','',0,0,51,'2016-10-17 10:53:57','1900-01-01 00:00:00',1,0,1),(9079,'27633','Excelsior Springs','EXCELSIOR SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:53:58','1900-01-01 00:00:00',1,0,1),(9080,'17624','Excursion Inlet','EXCURSION INLET',NULL,'','United States','',0,0,231,'2016-10-17 10:53:58','1900-01-01 00:00:00',1,0,1),(9081,'8055','Exeter','EXETER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:58','1900-01-01 00:00:00',1,0,1),(9082,'32696','Exeter','EXETER',NULL,'','United States','',0,0,231,'2016-10-17 10:53:58','1900-01-01 00:00:00',1,0,1),(9083,'8056','Exford','EXFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9084,'38500','Exloo','EXLOO',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9085,'7060','Exmoor National Park','EXMOOR NATIONAL PARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9086,'31101','Exmore','EXMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9087,'8057','Exmouth','EXMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9088,'26956','Exmouth','EXMOUTH',NULL,'','Australia','',0,0,13,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9089,'25306','Exshaw','EXSHAW',NULL,'','Canada','',0,0,39,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9090,'138','Extertal','EXTERTAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:53:59','1900-01-01 00:00:00',1,0,1),(9091,'29934','Exton','EXTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9092,'7061','Exton','EXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9093,'43084','Exuma','EXUMA',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9094,'4953','Eybens','EYBENS',NULL,'','France','',0,0,76,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9095,'8058','Eye','EYE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9096,'8059','Eyemouth','EYEMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:00','1900-01-01 00:00:00',1,0,1),(9097,'6425','Eyguians','EYGUIANS',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9098,'37201','Eygurande','EYGURANDE',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9099,'6002','Eymoutiers','EYMOUTIERS',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9100,'5913','Eyne','EYNE',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9101,'39825','Eyrarbakka','EYRARBAKKA',NULL,'','Iceland','',0,0,100,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9102,'5186','Eysines','EYSINES',NULL,'','France','',0,0,76,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9103,'2963','Ezcaray','EZCARAY',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:01','1900-01-01 00:00:00',1,0,1),(9104,'16909','Ezulwini','EZULWINI',NULL,'','Swaziland','',0,0,208,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9105,'17153','Ezzahra','EZZAHRA',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9106,'32096','F. E. Warren Afb','F. E. WARREN AFB',NULL,'','United States','',0,0,231,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9107,'16156','Faaa','FAAA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9108,'41221','Faaborg','FAABORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9109,'13729','Faadhippolhu Atoll','FAADHIPPOLHU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9110,'13730','Faafu Atoll','FAAFU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9111,'27072','Faak Am See','FAAK AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:02','1900-01-01 00:00:00',1,0,1),(9112,'30611','Fabens','FABENS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9113,'14889','Faberg','FABERG',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9114,'2189','Faborg','FABORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9115,'5914','Fabregues','FABREGUES',NULL,'','France','',0,0,76,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9116,'5915','Fabrezan','FABREZAN',NULL,'','France','',0,0,76,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9117,'11913','Fabriano','FABRIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9118,'11208','Faedo','FAEDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9119,'11914','Faenza','FAENZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9120,'14858','Faervik','FAERVIK',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:03','1900-01-01 00:00:00',1,0,1),(9121,'36796','Fafa Island','FAFA ISLAND',NULL,'','Tonga','',0,0,218,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9122,'15883','Fafe','FAFE',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9123,'44032','Fagamalo','FAGAMALO',NULL,'','Samoa','',0,0,183,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9124,'16220','Fagaras','FAGARAS',NULL,'','Romania','',0,0,179,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9125,'14843','Fagernes','FAGERNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9126,'16810','Fagersta','FAGERSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9127,'10974','Fagurholsmyri','FAGURHOLSMYRI',NULL,'','Iceland','',0,0,100,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9128,'43047','Fahaheel','FAHAHEEL',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9129,'40413','Fahrenzhausen','FAHRENZHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9130,'11915','Fai Della Paganella','FAI DELLA PAGANELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9131,'42936','Faial','FAIAL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:04','1900-01-01 00:00:00',1,0,1),(9132,'7062','Failand','FAILAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:05','1900-01-01 00:00:00',1,0,1),(9133,'8060','Failsworth','FAILSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:05','1900-01-01 00:00:00',1,0,1),(9134,'7063','Fair Isle','FAIR ISLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:05','1900-01-01 00:00:00',1,0,1),(9135,'17625','Fairbanks','FAIRBANKS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:06','1900-01-01 00:00:00',1,0,1),(9136,'29341','Fairborn','FAIRBORN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:06','1900-01-01 00:00:00',1,0,1),(9137,'19797','Fairburn','FAIRBURN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:07','1900-01-01 00:00:00',1,0,1),(9138,'28116','Fairbury','FAIRBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:07','1900-01-01 00:00:00',1,0,1),(9139,'31327','Fairfax','FAIRFAX',NULL,'','United States','',0,0,231,'2016-10-17 10:54:07','1900-01-01 00:00:00',1,0,1),(9140,'20208','Fairfield','FAIRFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:54:08','1900-01-01 00:00:00',1,0,1),(9141,'26901','Fairfield','FAIRFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:08','1900-01-01 00:00:00',1,0,1),(9142,'8061','Fairford','FAIRFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:10','1900-01-01 00:00:00',1,0,1),(9143,'43799','Fairhaven','FAIRHAVEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:10','1900-01-01 00:00:00',1,0,1),(9144,'42136','Fairhaven','FAIRHAVEN',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9145,'21370','Fairhaven','FAIRHAVEN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9146,'17872','Fairhope','FAIRHOPE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9147,'29343','Fairlawn','FAIRLAWN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9148,'31328','Fairlee','FAIRLEE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9149,'43016','Fairlie','FAIRLIE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:54:11','1900-01-01 00:00:00',1,0,1),(9150,'33849','Fairmont','FAIRMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:54:12','1900-01-01 00:00:00',1,0,1),(9151,'25434','Fairmont Hot Springs','FAIRMONT HOT SPRINGS',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:12','1900-01-01 00:00:00',1,0,1),(9152,'33427','Fairplay','FAIRPLAY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:13','1900-01-01 00:00:00',1,0,1),(9153,'28776','Fairport','FAIRPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:54:13','1900-01-01 00:00:00',1,0,1),(9154,'28268','Fairview','FAIRVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:54:13','1900-01-01 00:00:00',1,0,1),(9155,'25307','Fairview','FAIRVIEW',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:13','1900-01-01 00:00:00',1,0,1),(9156,'15299','Faisalabad','FAISALABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9157,'33008','Faith','FAITH',NULL,'','United States','',0,0,231,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9158,'10734','Faithlegg','FAITHLEGG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9159,'42604','Faizabad','FAIZABAD',NULL,'','India','Faizabad',6,0,101,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9160,'15954','Faja Da Ovelha','FAJA DA OVELHA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:14','1900-01-01 00:00:00',1,0,1),(9161,'15750','Fajardo','FAJARDO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9162,'16115','Fakahina','FAKAHINA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9163,'42465','Fakarava','FAKARAVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9164,'8062','Fakenham','FAKENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9165,'10156','Fak-fak','FAK-FAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9166,'37652','Falaen','FALAEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9167,'5393','Falaise','FALAISE',NULL,'','France','',0,0,76,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9168,'39630','Falaknuma','FALAKNUMA',NULL,'','India','',0,0,101,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9169,'39098','Falcade','FALCADE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9170,'25593','Falcon Beach','FALCON BEACH',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:15','1900-01-01 00:00:00',1,0,1),(9171,'11916','Falconara Marittima','FALCONARA MARITTIMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9172,'28777','Falconer','FALCONER',NULL,'','United States','',0,0,231,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9173,'2190','Faldsled','FALDSLED',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9174,'44033','Faleapuna','FALEAPUNA',NULL,'','Samoa','',0,0,183,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9175,'44034','Faleolo','FALEOLO',NULL,'','Samoa','',0,0,183,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9176,'11917','Falerna','FALERNA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9177,'30615','Falfurrias','FALFURRIAS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:16','1900-01-01 00:00:00',1,0,1),(9178,'9395','Faliraki','FALIRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9179,'16704','Falkenberg','FALKENBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9180,'22745','Falkenberg','FALKENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9181,'767','Falkenrehde','FALKENREHDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9182,'768','Falkensee','FALKENSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9183,'22746','Falkenstein','FALKENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9184,'8063','Falkirk','FALKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9185,'8064','Falkland','FALKLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9186,'16667','Falkoeping','FALKOEPING',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9187,'23018','Falkoeping','FALKOEPING',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:17','1900-01-01 00:00:00',1,0,1),(9188,'23199','Fallanden','FALLANDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:18','1900-01-01 00:00:00',1,0,1),(9189,'18477','Fallbrook','FALLBROOK',NULL,'','United States','',0,0,231,'2016-10-17 10:54:18','1900-01-01 00:00:00',1,0,1),(9190,'7064','Fallin','FALLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:18','1900-01-01 00:00:00',1,0,1),(9191,'31979','Falling Waters','FALLING WATERS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:18','1900-01-01 00:00:00',1,0,1),(9192,'26365','Falls Creek','FALLS CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9193,'21372','Falmouth','FALMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9194,'8065','Falmouth','FALMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9195,'13099','Falmouth','FALMOUTH',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9196,'26164','Falmouth Harbour','FALMOUTH HARBOUR',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:54:19','1900-01-01 00:00:00',1,0,1),(9197,'17626','False Island','FALSE ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9198,'8066','Falstone','FALSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9199,'16739','Falun','FALUN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9200,'38574','Falzes','FALZES',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9201,'1510','Famagusta','FAMAGUSTA',NULL,'','Cyprus','',0,0,57,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9202,'41602','Fanabe','FANABE',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9203,'31104','Fancy Gap','FANCY GAP',NULL,'','United States','',0,0,231,'2016-10-17 10:54:20','1900-01-01 00:00:00',1,0,1),(9204,'39933','Fanes','FANES',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9205,'17051','Fang','FANG',NULL,'','Thailand','',0,0,215,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9206,'16116','Fangatau','FANGATAU',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9207,'17383','Fangliao','FANGLIAO',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9208,'9921','Fanling','FANLING',NULL,'','Hong Kong','',0,0,98,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9209,'39814','Fanlo','FANLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9210,'13461','Fanning Island','FANNING ISLAND',NULL,'','Kiribati','',0,0,114,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9211,'37802','Fano','FANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9212,'28269','Fanwood','FANWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:54:21','1900-01-01 00:00:00',1,0,1),(9213,'15884','Fao','FAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9214,'28778','Far Rockaway','FAR ROCKAWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9215,'11918','Fara In Sabina','FARA IN SABINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9216,'35833','Faraaya','FARAAYA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9217,'38666','Farafangana','FARAFANGANA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9218,'15363','Farallon','FARALLON',NULL,'','Panama','',0,0,169,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9219,'17205','Faralya','FARALYA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9220,'39215','Faraya','FARAYA',NULL,'','Lebanon','',0,0,120,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9221,'8067','Fareham','FAREHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:22','1900-01-01 00:00:00',1,0,1),(9222,'1526','Farehamn','FAREHAMN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9223,'16157','Fareorea','FAREOREA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9224,'43847','Farevejle','FAREVEJLE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9225,'16437','Farforovaya','FARFOROVAYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9226,'19798','Fargo','FARGO',NULL,'','United States','',0,0,231,'2016-10-17 10:54:23','1900-01-01 00:00:00',1,0,1),(9227,'27384','Faribault','FARIBAULT',NULL,'','United States','',0,0,231,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9228,'10516','Faridabad','FARIDABAD',NULL,'','India','Faridabad',20,0,101,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9229,'8068','Faringdon','FARINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9230,'20545','Farmer City','FARMER CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9231,'30616','Farmers Branch','FARMERS BRANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9232,'24855','Farmer\'s Hill','FARMER\'S HILL',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9233,'28779','Farmingdale','FARMINGDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:24','1900-01-01 00:00:00',1,0,1),(9234,'28524','Farmington','FARMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:25','1900-01-01 00:00:00',1,0,1),(9235,'28781','Farmingville','FARMINGVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:27','1900-01-01 00:00:00',1,0,1),(9236,'31105','Farmville','FARMVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:27','1900-01-01 00:00:00',1,0,1),(9237,'8069','Farnborough','FARNBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:27','1900-01-01 00:00:00',1,0,1),(9238,'8070','Farnham','FARNHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:27','1900-01-01 00:00:00',1,0,1),(9239,'25990','Farnham','FARNHAM',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9240,'8071','Farnworth','FARNWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9241,'15928','Faro','FARO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9242,'22978','Faro','FARO',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9243,'2108','Faroe Islands','FAROE ISLANDS',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9244,'25113','Farol','FAROL',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9245,'37380','Faros','FAROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9246,'8072','Farr','FARR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:28','1900-01-01 00:00:00',1,0,1),(9247,'37200','Farr West','FARR WEST',NULL,'','United States','',0,0,231,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9248,'12887','Farra Di Soligo','FARRA DI SOLIGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9249,'33143','Farragut','FARRAGUT',NULL,'','United States','',0,0,231,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9250,'37885','Farrarmere','FARRARMERE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9251,'29939','Farrell','FARRELL',NULL,'','United States','',0,0,231,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9252,'42202','Farroupilha','FARROUPILHA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9253,'34955','Farso','FARSO',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:29','1900-01-01 00:00:00',1,0,1),(9254,'16823','Farsta','FARSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9255,'15019','Farsund','FARSUND',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9256,'2169','Farum','FARUM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9257,'43610','Farwaniya','FARWANIYA',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9258,'10975','Faskrudsfjordur','FASKRUDSFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9259,'40145','Fatehpur Sikri','FATEHPUR SIKRI',NULL,'','India','Fatehpur Sikri Tour Packages | Agra Fatehpur Sikri',6,0,101,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9260,'16044','Fatima','FATIMA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9261,'36582','Fatima-ourem','FATIMA-OUREM',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9262,'16117','Fatu Hiva','FATU HIVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9263,'35522','Fauglia','FAUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:30','1900-01-01 00:00:00',1,0,1),(9264,'37','Faulensee','FAULENSEE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9265,'33009','Faulkton','FAULKTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9266,'6027','Faulquemont','FAULQUEMONT',NULL,'','France','',0,0,76,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9267,'41533','Fauquembergues','FAUQUEMBERGUES',NULL,'','France','',0,0,76,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9268,'14915','Fauske','FAUSKE',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9269,'14796','Favang','FAVANG',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:31','1900-01-01 00:00:00',1,0,1),(9270,'2628','Favara','FAVARA',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9271,'12888','Favaro Veneto','FAVARO VENETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9272,'6623','Faverges','FAVERGES',NULL,'','France','',0,0,76,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9273,'6624','Faverges-de-la-tour','FAVERGES-DE-LA-TOUR',NULL,'','France','',0,0,76,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9274,'8073','Faversham','FAVERSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9275,'11920','Favignana','FAVIGNANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9276,'26986','Favoriten','FAVORITEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9277,'8074','Fawkham','FAWKHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:32','1900-01-01 00:00:00',1,0,1),(9278,'26902','Fawkner','FAWKNER',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:33','1900-01-01 00:00:00',1,0,1),(9279,'4054','Fawn Harbour','FAWN HARBOUR',NULL,'','Fiji','',0,0,74,'2016-10-17 10:54:33','1900-01-01 00:00:00',1,0,1),(9280,'18478','Fawnskin','FAWNSKIN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:33','1900-01-01 00:00:00',1,0,1),(9281,'6427','Fayence','FAYENCE',NULL,'','France','',0,0,76,'2016-10-17 10:54:33','1900-01-01 00:00:00',1,0,1),(9282,'10010','Fazana','FAZANA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9283,'10785','Feakle','FEAKLE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9284,'7065','Fearn','FEARN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9285,'37576','Feasterville','FEASTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9286,'15102','Featherston','FEATHERSTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9287,'8075','Featherstone','FEATHERSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9288,'5810','Fecamp','FECAMP',NULL,'','France','',0,0,76,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9289,'420','Fechenheim','FECHENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9290,'41765','Federacion','FEDERACION',NULL,'','Argentina','',0,0,10,'2016-10-17 10:54:36','1900-01-01 00:00:00',1,0,1),(9291,'24976','Federal District','FEDERAL DISTRICT',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9292,'33428','Federal Heights','FEDERAL HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9293,'14896','Fedje','FEDJE',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9294,'8076','Feering','FEERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9295,'2026','Fehmarn','FEHMARN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9296,'42042','Fehrman','FEHRMAN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:37','1900-01-01 00:00:00',1,0,1),(9297,'37684','Feignies','FEIGNIES',NULL,'','France','',0,0,76,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9298,'41774','Feira De Santana','FEIRA DE SANTANA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9299,'2898','Felanitx','FELANITX',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9300,'22747','Feldafing','FELDAFING',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9301,'24414','Feldbach','FELDBACH',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9302,'139','Feldberg (Baden-wuerttemberg)','FELDBERG (BADEN-WUERTTEMBERG)',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9303,'24518','Feldkirch','FELDKIRCH',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9304,'22748','Feldkirchen','FELDKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9305,'37199','Feldkirchen An Der Donau','FELDKIRCHEN AN DER DONAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:38','1900-01-01 00:00:00',1,0,1),(9306,'39321','Feldkirchen-westerham','FELDKIRCHEN-WESTERHAM',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9307,'42663','Felechosa','FELECHOSA',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9308,'15888','Felgar','FELGAR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9309,'13772','Felidhu Atoll','FELIDHU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9310,'7066','Felindre Farchog','FELINDRE FARCHOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9311,'8077','Felixstowe','FELIXSTOWE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9312,'22533','Fellbach','FELLBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9313,'42964','Felpham','FELPHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9314,'2290','Felsted','FELSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:39','1900-01-01 00:00:00',1,0,1),(9315,'8078','Feltham','FELTHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9316,'18479','Felton','FELTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9317,'38775','Felton','FELTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9318,'11921','Feltre','FELTRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9319,'8079','Fen Stanton','FEN STANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9320,'34492','Fenelon Falls','FENELON FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9321,'23958','Fenggang','FENGGANG',NULL,'','China','',0,0,46,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9322,'23579','Fenghua','FENGHUA',NULL,'','China','',0,0,46,'2016-10-17 10:54:40','1900-01-01 00:00:00',1,0,1),(9323,'23855','Fenghuang','FENGHUANG',NULL,'','China','',0,0,46,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9324,'23738','Fengxian','FENGXIAN',NULL,'','China','',0,0,46,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9325,'40670','Fenis','FENIS',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9326,'31748','Fennimore','FENNIMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9327,'22065','Fennville','FENNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9328,'22066','Fenton','FENTON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:41','1900-01-01 00:00:00',1,0,1),(9329,'26839','Fentonbury','FENTONBURY',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9330,'8080','Fenwick (Ayershire)','FENWICK (AYERSHIRE)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9331,'19220','Fenwick Estates','FENWICK ESTATES',NULL,'','United States','',0,0,231,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9332,'17515','Feodosiya','FEODOSIYA',NULL,'','Ukraine','',0,0,227,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9333,'16545','Fera Island','FERA ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:54:42','1900-01-01 00:00:00',1,0,1),(9334,'6237','Ferce-sur-sarthe','FERCE-SUR-SARTHE',NULL,'','France','',0,0,76,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9335,'20872','Ferdinand','FERDINAND',NULL,'','United States','',0,0,231,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9336,'4835','Fere-en-tardenois','FERE-EN-TARDENOIS',NULL,'','France','',0,0,76,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9337,'11922','Ferentillo','FERENTILLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9338,'44230','Ferentino','FERENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9339,'32155','Fergana','FERGANA',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9340,'27386','Fergus Falls','FERGUS FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:43','1900-01-01 00:00:00',1,0,1),(9341,'27638','Ferguson','FERGUSON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9342,'14303','Feringgi Beach','FERINGGI BEACH',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9343,'7067','Fermain Bay','FERMAIN BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9344,'7068','Fermanagh','FERMANAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9345,'40586','Ferme-neuve','FERME-NEUVE',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9346,'11923','Fermo','FERMO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9347,'40221','Fermoselle','FERMOSELLE',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9348,'38997','Fermoy','FERMOY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:44','1900-01-01 00:00:00',1,0,1),(9349,'19357','Fern Park','FERN PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:54:45','1900-01-01 00:00:00',1,0,1),(9350,'19358','Fernandina Beach','FERNANDINA BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:54:45','1900-01-01 00:00:00',1,0,1),(9351,'41773','Fernando De Noronha','FERNANDO DE NORONHA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:45','1900-01-01 00:00:00',1,0,1),(9352,'22067','Ferndale','FERNDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:45','1900-01-01 00:00:00',1,0,1),(9353,'7069','Ferndown','FERNDOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9354,'38752','Fernetti','FERNETTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9355,'23019','Ferney-voltaire','FERNEY-VOLTAIRE',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9356,'6625','Ferney-voltaire','FERNEY-VOLTAIRE',NULL,'','France','',0,0,76,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9357,'987','Ferney-voltaire-thoiry','FERNEY-VOLTAIRE-THOIRY',NULL,'','FRANCE','',0,0,76,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9358,'15189','Fernhill','FERNHILL',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9359,'25435','Fernie','FERNIE',NULL,'','Canada','',0,0,39,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9360,'32812','Fernley','FERNLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:46','1900-01-01 00:00:00',1,0,1),(9361,'26218','Ferntree Gully','FERNTREE GULLY',NULL,'','Australia','',0,0,13,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9362,'15929','Ferragudo','FERRAGUDO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9363,'12719','Ferrara','FERRARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9364,'25158','Ferreira','FERREIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9365,'2899','Ferrerias','FERRERIAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9366,'5645','Ferrieres','FERRIERES',NULL,'','France','',0,0,76,'2016-10-17 10:54:47','1900-01-01 00:00:00',1,0,1),(9367,'41532','Ferrieres-en-brie','FERRIERES-EN-BRIE',NULL,'','France','',0,0,76,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9368,'31329','Ferrisburg','FERRISBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9369,'3663','Ferrol','FERROL',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9370,'33330','Ferron','FERRON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9371,'37133','Ferry Hill','FERRY HILL',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9372,'10946','Ferrycarrig','FERRYCARRIG',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:48','1900-01-01 00:00:00',1,0,1),(9373,'8082','Ferryhill','FERRYHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9374,'11924','Fertilia','FERTILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9375,'13695','Fes','FES',NULL,'','Morocco','',0,0,148,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9376,'13731','Fesdu Island','FESDU ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9377,'28056','Fessenden','FESSENDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9378,'27639','Festus','FESTUS',NULL,'','United States','',0,0,231,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9379,'23200','Fetan','FETAN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9380,'17185','Fethiye','FETHIYE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:54:49','1900-01-01 00:00:00',1,0,1),(9381,'37134','Fethiye-oludeniz','FETHIYE-OLUDENIZ',NULL,'','TURKEY','',0,0,222,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9382,'7070','Fetlar','FETLAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9383,'22749','Feuchtwangen','FEUCHTWANGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9384,'6298','Feuquieres','FEUQUIERES',NULL,'','France','',0,0,76,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9385,'23201','Feusisberg','FEUSISBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9386,'38496','Fey','FEY',NULL,'','France','',0,0,76,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9387,'5125','Feytiat','FEYTIAT',NULL,'','France','',0,0,76,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9388,'5050','Feyzin','FEYZIN',NULL,'','France','',0,0,76,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9389,'36386','Fez','FEZ',NULL,'','Morocco','Fez',0,0,148,'2016-10-17 10:54:50','1900-01-01 00:00:00',1,0,1),(9390,'38012','Fianarantsoa','FIANARANTSOA',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9391,'39441','Fibre','FIBRE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9392,'37477','Ficksburg','FICKSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9393,'39227','Fidenza','FIDENZA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9394,'11210','Fiè Allo Sciliar','FIÈ ALLO SCILIAR',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9395,'24452','Fieberbrunn','FIEBERBRUNN',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9396,'42648','Fier','FIER',NULL,'','Albania','',0,0,2,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9397,'38759','Fiera Di Primiero','FIERA DI PRIMIERO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9398,'23202','Fiesch','FIESCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:51','1900-01-01 00:00:00',1,0,1),(9399,'11927','Fiesole','FIESOLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9400,'13062','Fiesso D\'artico','FIESSO D\'ARTICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9401,'31501','Fife','FIFE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9402,'7071','Fife','FIFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9403,'8083','Fifield','FIFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9404,'41531','Figanieres','FIGANIERES',NULL,'','France','',0,0,76,'2016-10-17 10:54:52','1900-01-01 00:00:00',1,0,1),(9405,'4249','Figari','FIGARI',NULL,'','France','',0,0,76,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9406,'4983','Figeac','FIGEAC',NULL,'','France','',0,0,76,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9407,'35525','Figline','FIGLINE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9408,'15903','Figueira Da Foz','FIGUEIRA DA FOZ',NULL,'','Portugal','',0,0,175,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9409,'42432','Figueras','FIGUERAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9410,'2947','Figueres','FIGUERES',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9411,'2629','Figueretas','FIGUERETAS',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9412,'4055','Fiji','FIJI',NULL,'','Fiji','',0,0,74,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9413,'140','Filderstadt','FILDERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:53','1900-01-01 00:00:00',1,0,1),(9414,'36051','Filderstadt-bonlande','FILDERSTADT-BONLANDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9415,'39007','Filignano','FILIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9416,'16786','Filipstad','FILIPSTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9417,'33331','Fillmore','FILLMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9418,'33332','Filmore Area','FILMORE AREA',NULL,'','United States','',0,0,231,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9419,'2259','Filskov','FILSKOV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9420,'8084','Filton','FILTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:54','1900-01-01 00:00:00',1,0,1),(9421,'23203','Filzbach','FILZBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9422,'27164','Filzmoos','FILZMOOS',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9423,'11928','Finale Ligure','FINALE LIGURE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9424,'18482','Financial District - Ferry Building','FINANCIAL DISTRICT - FERRY BUILDING',NULL,'','United States','',0,0,231,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9425,'3850','Fincha','FINCHA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9426,'37729','Finchley','FINCHLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9427,'13658','Findel','FINDEL',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:54:55','1900-01-01 00:00:00',1,0,1),(9428,'20546','Findlay','FINDLAY',NULL,'','United States','',0,0,231,'2016-10-17 10:54:56','1900-01-01 00:00:00',1,0,1),(9429,'28783','Findley Lake','FINDLEY LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:54:56','1900-01-01 00:00:00',1,0,1),(9430,'8085','Finedon','FINEDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:56','1900-01-01 00:00:00',1,0,1),(9431,'3756','Finestrat','FINESTRAT',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9432,'43706','Fingal','FINGAL',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9433,'28784','Finger Lakes','FINGER LAKES',NULL,'','United States','',0,0,231,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9434,'10773','Finglas','FINGLAS',NULL,'','Ireland','',0,0,105,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9435,'38059','Finikas','FINIKAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9436,'17254','Finike','FINIKE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9437,'38497','Finiki','FINIKI',NULL,'','Greece','',0,0,86,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9438,'43213','Finisterre','FINISTERRE',NULL,'','Spain','',0,0,199,'2016-10-17 10:54:57','1900-01-01 00:00:00',1,0,1),(9439,'24453','Finkenberg','FINKENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9440,'769','Finkenkrug Sud','FINKENKRUG SUD',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9441,'40022','Finkenstein','FINKENSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9442,'27387','Finlayson','FINLAYSON',NULL,'','United States','',0,0,231,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9443,'29347','Finneytown','FINNEYTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9444,'22750','Finningen','FINNINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9445,'15013','Finnsnes','FINNSNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9446,'11211','Fino Del Monte','FINO DEL MONTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:58','1900-01-01 00:00:00',1,0,1),(9447,'16765','Finspang','FINSPANG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9448,'14797','Finstadjordet','FINSTADJORDET',NULL,'','Norway','',0,0,164,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9449,'42457','Finsterwalde','FINSTERWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9450,'43940','Fintas','FINTAS',NULL,'','Kuwait','',0,0,116,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9451,'41169','Fintry','FINTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9452,'11929','Fiorano Modenese','FIORANO MODENESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9453,'42810','Fiordland','FIORDLAND',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9454,'35526','Fiorenzuola','FIORENZUOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:54:59','1900-01-01 00:00:00',1,0,1),(9455,'43415','Fira','FIRA',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9456,'18483','Firebaugh','FIREBAUGH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9457,'1560','Firenze','FIRENZE',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9458,'11931','Firenzuola','FIRENZUOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9459,'43416','Firostefani','FIROSTEFANI',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9460,'43744','Firozabad','FIROZABAD',NULL,'','India','',0,0,101,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9461,'26988','Fischamend','FISCHAMEND',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9462,'22751','Fischen','FISCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:00','1900-01-01 00:00:00',1,0,1),(9463,'42672','Fischerbach','FISCHERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:01','1900-01-01 00:00:00',1,0,1),(9464,'22534','Fischingen','FISCHINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:01','1900-01-01 00:00:00',1,0,1),(9465,'18484','Fish Camp','FISH CAMP',NULL,'','United States','',0,0,231,'2016-10-17 10:55:01','1900-01-01 00:00:00',1,0,1),(9466,'32382','Fish Hoek','FISH HOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:55:01','1900-01-01 00:00:00',1,0,1),(9467,'14400','Fish River Canyon','FISH RIVER CANYON',NULL,'','Namibia','',0,0,151,'2016-10-17 10:55:02','1900-01-01 00:00:00',1,0,1),(9468,'19359','Fisher Island','FISHER ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:55:02','1900-01-01 00:00:00',1,0,1),(9469,'20873','Fishers','FISHERS',NULL,'','United States','',0,0,231,'2016-10-17 10:55:02','1900-01-01 00:00:00',1,0,1),(9470,'31107','Fishersville','FISHERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9471,'34493','Fisherville','FISHERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9472,'8086','Fishguard','FISHGUARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9473,'28787','Fishkill','FISHKILL',NULL,'','United States','',0,0,231,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9474,'9465','Fiskardo','FISKARDO',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9475,'21373','Fiskdale','FISKDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9476,'24454','Fiss','FISS',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:03','1900-01-01 00:00:00',1,0,1),(9477,'21374','Fitchburg','FITCHBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9478,'16158','Fitii','FITII',NULL,'','French Polynesia','',0,0,78,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9479,'14897','Fitjar','FITJAR',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9480,'19800','Fitzgerald','FITZGERALD',NULL,'','United States','',0,0,231,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9481,'8087','Fitzhead','FITZHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9482,'26366','Fitzroy','FITZROY',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:04','1900-01-01 00:00:00',1,0,1),(9483,'32697','Fitzwilliam','FITZWILLIAM',NULL,'','United States','',0,0,231,'2016-10-17 10:55:05','1900-01-01 00:00:00',1,0,1),(9484,'11932','Fiuggi','FIUGGI',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:05','1900-01-01 00:00:00',1,0,1),(9485,'38545','Fiumefreddo Di Sicilia','FIUMEFREDDO DI SICILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:05','1900-01-01 00:00:00',1,0,1),(9486,'11933','Fiumicino','FIUMICINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:05','1900-01-01 00:00:00',1,0,1),(9487,'16946','Five Cays','FIVE CAYS',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9488,'19801','Five Points','FIVE POINTS',NULL,'','United States','',0,0,231,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9489,'8088','Fivemiletown','FIVEMILETOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9490,'37434','Fivizzano','FIVIZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9491,'2237','Fjerritslev','FJERRITSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9492,'44022','Flaa','FLAA',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9493,'5461','Flacey','FLACEY',NULL,'','France','',0,0,76,'2016-10-17 10:55:06','1900-01-01 00:00:00',1,0,1),(9494,'27165','Flachau','FLACHAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9495,'38644','Fladnitz An Der Teichalm','FLADNITZ AN DER TEICHALM',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9496,'32097','Flagg Ranch','FLAGG RANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9497,'19360','Flagler Beach','FLAGLER BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9498,'18130','Flagstaff','FLAGSTAFF',NULL,'','United States','',0,0,231,'2016-10-17 10:55:07','1900-01-01 00:00:00',1,0,1),(9499,'6817','Flaine','FLAINE',NULL,'','France','',0,0,76,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9500,'14975','Flam','FLAM',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9501,'5394','Flamanville','FLAMANVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9502,'7072','Flamborough','FLAMBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9503,'8089','Flamstead','FLAMSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9504,'17628','Flat','FLAT',NULL,'','United States','',0,0,231,'2016-10-17 10:55:08','1900-01-01 00:00:00',1,0,1),(9505,'28788','Flatbush','FLATBUSH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9506,'11021','Flateyri','FLATEYRI',NULL,'','Iceland','',0,0,100,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9507,'30617','Flatonia','FLATONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9508,'37467','Flayosc','FLAYOSC',NULL,'','France','',0,0,76,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9509,'28789','Fleischmanns','FLEISCHMANNS',NULL,'','United States','',0,0,231,'2016-10-17 10:55:10','1900-01-01 00:00:00',1,0,1),(9510,'15020','Flekkefjord','FLEKKEFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9511,'19361','Fleming Key','FLEMING KEY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9512,'28271','Flemington','FLEMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9513,'26903','Flemington','FLEMINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9514,'16774','Flen','FLEN',NULL,'','Sweden','',0,0,209,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9515,'707','Flensburg','FLENSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9516,'39293','Flesherton','FLESHERTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9517,'33853','Fletcher','FLETCHER',NULL,'','United States','',0,0,231,'2016-10-17 10:55:11','1900-01-01 00:00:00',1,0,1),(9518,'6084','Fleurance','FLEURANCE',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9519,'24661','Fleurus','FLEURUS',NULL,'','Belgium','',0,0,21,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9520,'5462','Fleurville','FLEURVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9521,'38850','Fleury','FLEURY',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9522,'4714','Fleury-merogis','FLEURY-MEROGIS',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9523,'4250','Fleville Devant Nancy','FLEVILLE DEVANT NANCY',NULL,'','France','',0,0,76,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9524,'14463','Flevoland','FLEVOLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9525,'41407','Flic En Flac','FLIC EN FLAC',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:55:12','1900-01-01 00:00:00',1,0,1),(9527,'39617','Flichity','FLICHITY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:13','1900-01-01 00:00:00',1,0,1),(9528,'23204','Flims','FLIMS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:13','1900-01-01 00:00:00',1,0,1),(9529,'25594','Flin Flon','FLIN FLON',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:13','1900-01-01 00:00:00',1,0,1),(9530,'26405','Flinders','FLINDERS',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:13','1900-01-01 00:00:00',1,0,1),(9531,'22069','Flint','FLINT',NULL,'','United States','',0,0,231,'2016-10-17 10:55:14','1900-01-01 00:00:00',1,0,1),(9532,'8091','Flint','FLINT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:14','1900-01-01 00:00:00',1,0,1),(9533,'21695','Flintstone','FLINTSTONE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9534,'43758','Flirsch','FLIRSCH',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9535,'8092','Flitwick','FLITWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9536,'38878','Floda','FLODA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9537,'37213','Flogita','FLOGITA',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9538,'20547','Flora','FLORA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9539,'5916','Florac','FLORAC',NULL,'','France','',0,0,76,'2016-10-17 10:55:15','1900-01-01 00:00:00',1,0,1),(9540,'28790','Floral Park','FLORAL PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:55:16','1900-01-01 00:00:00',1,0,1),(9541,'7073','Flore','FLORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:16','1900-01-01 00:00:00',1,0,1),(9542,'40462','Floreat','FLOREAT',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:16','1900-01-01 00:00:00',1,0,1),(9543,'21375','Florence','FLORENCE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:16','1900-01-01 00:00:00',1,0,1),(9544,'11213','Florence','FLORENCE',NULL,'','Italy','Florence',0,0,107,'2016-10-17 10:55:18','1900-01-01 00:00:00',1,0,1),(9545,'35474','Florence-borgo','FLORENCE-BORGO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9546,'35482','Florence-calenzano','FLORENCE-CALENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9547,'35518','Florence-donnini','FLORENCE-DONNINI',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9548,'35620','Florence-pratolino','FLORENCE-PRATOLINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9549,'26071','Florencio Varela','FLORENCIO VARELA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9550,'24697','Florenville','FLORENVILLE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9551,'1759','Flores','FLORES',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:55:19','1900-01-01 00:00:00',1,0,1),(9552,'9871','Flores','FLORES',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9553,'11934','Floresta','FLORESTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9554,'30619','Floresville','FLORESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9555,'28272','Florham Park','FLORHAM PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9556,'25017','Florianopolis','FLORIANOPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9557,'32561','Florida','FLORIDA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9558,'17532','Florida','FLORIDA',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:55:20','1900-01-01 00:00:00',1,0,1),(9559,'19362','Florida City','FLORIDA CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9560,'24531','Floridsdorf','FLORIDSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9561,'21196','Florien','FLORIEN',NULL,'','United States','',0,0,231,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9562,'9466','Florina','FLORINA',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9563,'27641','Florissant','FLORISSANT',NULL,'','United States','',0,0,231,'2016-10-17 10:55:21','1900-01-01 00:00:00',1,0,1),(9564,'14976','Floro','FLORO',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9565,'421','Florsheim','FLORSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9566,'20548','Flossmoor','FLOSSMOOR',NULL,'','United States','',0,0,231,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9567,'7074','Flotta Isle','FLOTTA ISLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9568,'5917','Floure','FLOURE',NULL,'','France','',0,0,76,'2016-10-17 10:55:22','1900-01-01 00:00:00',1,0,1),(9569,'19802','Flowery Branch','FLOWERY BRANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:23','1900-01-01 00:00:00',1,0,1),(9570,'27852','Flowood','FLOWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:55:23','1900-01-01 00:00:00',1,0,1),(9571,'19803','Floyd','FLOYD',NULL,'','United States','',0,0,231,'2016-10-17 10:55:23','1900-01-01 00:00:00',1,0,1),(9572,'10976','Fludir','FLUDIR',NULL,'','Iceland','',0,0,100,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9573,'35987','Fluelen','FLUELEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9575,'23467','Flüeli-ranft','FLÜELI-RANFT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9576,'23020','Flühli','FLÜHLI',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9577,'12821','Fluminimaggiore','FLUMINIMAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9578,'23021','Flumserberg','FLUMSERBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9579,'23022','Fluntern','FLUNTERN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9580,'28791','Flushing','FLUSHING',NULL,'','United States','',0,0,231,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9581,'13679','Fnideq','FNIDEQ',NULL,'','Morocco','',0,0,148,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9582,'39166','Fobello','FOBELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:24','1900-01-01 00:00:00',1,0,1),(9583,'17316','Foca','FOCA',NULL,'','Turkey','',0,0,222,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9584,'11935','Foce','FOCE',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9585,'625','Föckelberg','FÖCKELBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9586,'36623','Focsani','FOCSANI',NULL,'','Romania','',0,0,179,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9587,'9467','Fodele','FODELE',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9588,'13659','Foetz','FOETZ',NULL,'','Luxembourg','',0,0,127,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9589,'29942','Fogelsville','FOGELSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9590,'12805','Foggia','FOGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9591,'40233','Fogliano Redipuglia','FOGLIANO REDIPUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:25','1900-01-01 00:00:00',1,0,1),(9592,'37953','Foiano Della Chiana','FOIANO DELLA CHIANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9593,'6085','Foix','FOIX',NULL,'','France','',0,0,76,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9594,'9652','Folegandros','FOLEGANDROS',NULL,'','Greece','',0,0,86,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9595,'17876','Foley','FOLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9596,'11936','Folgaria','FOLGARIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9597,'13055','Folgarida','FOLGARIDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:26','1900-01-01 00:00:00',1,0,1),(9598,'11937','Folignano','FOLIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9599,'12868','Foligno','FOLIGNO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9600,'9266','Folkestone','FOLKESTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9601,'37137','Folkestone','FOLKESTONE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9602,'19804','Folkston','FOLKSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9603,'12889','Follina','FOLLINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:27','1900-01-01 00:00:00',1,0,1),(9604,'40188','Follonica','FOLLONICA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9605,'30325','Folly Beach','FOLLY BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9606,'18485','Folsom','FOLSOM',NULL,'','United States','',0,0,231,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9607,'37569','Fond Bay','FOND BAY',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9608,'31752','Fond Du Lac','FOND DU LAC',NULL,'','United States','',0,0,231,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9609,'22943','Fond Du Lac','FOND DU LAC',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:28','1900-01-01 00:00:00',1,0,1),(9610,'39017','Fondi','FONDI',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9611,'5849','Fontainebleau','FONTAINEBLEAU',NULL,'','France','',0,0,76,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9612,'32398','Fontainebleau','FONTAINEBLEAU',NULL,'','South Africa','',0,0,195,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9613,'39343','Fontaine-de-vaucluse','FONTAINE-DE-VAUCLUSE',NULL,'','France','',0,0,76,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9614,'6165','Fontaine-notre-dame','FONTAINE-NOTRE-DAME',NULL,'','France','',0,0,76,'2016-10-17 10:55:29','1900-01-01 00:00:00',1,0,1),(9615,'31753','Fontana','FONTANA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:30','1900-01-01 00:00:00',1,0,1),(9616,'39196','Fontanellato','FONTANELLATO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:30','1900-01-01 00:00:00',1,0,1),(9617,'5314','Fontanges','FONTANGES',NULL,'','France','',0,0,76,'2016-10-17 10:55:30','1900-01-01 00:00:00',1,0,1),(9618,'6626','Fontanil-cornillon','FONTANIL-CORNILLON',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9619,'5918','Fontans','FONTANS',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9620,'4251','Fontcouverte-la Toussuire','FONTCOUVERTE-LA TOUSSUIRE',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9621,'11215','Fonte Blanda','FONTE BLANDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9622,'35528','Fonteblanda','FONTEBLANDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9623,'4252','Fontenai Sur Orne','FONTENAI SUR ORNE',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9624,'5395','Fontenailles','FONTENAILLES',NULL,'','France','',0,0,76,'2016-10-17 10:55:31','1900-01-01 00:00:00',1,0,1),(9625,'4253','Fontenay Le Comte','FONTENAY LE COMTE',NULL,'','France','',0,0,76,'2016-10-17 10:55:32','1900-01-01 00:00:00',1,0,1),(9626,'5396','Fontenay-sous-bois','FONTENAY-SOUS-BOIS',NULL,'','France','',0,0,76,'2016-10-17 10:55:32','1900-01-01 00:00:00',1,0,1),(9627,'5850','Fontenay-tresigny','FONTENAY-TRESIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:55:32','1900-01-01 00:00:00',1,0,1),(9628,'1619','Fontevraud','FONTEVRAUD',NULL,'','France','',0,0,76,'2016-10-17 10:55:32','1900-01-01 00:00:00',1,0,1),(9629,'4987','Fontevraud-l\'abbaye','FONTEVRAUD-L\'ABBAYE',NULL,'','France','',0,0,76,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9630,'34494','Fonthill','FONTHILL',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9631,'24133','Fontibon','FONTIBON',NULL,'','Colombia','',0,0,49,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9632,'11938','Fontignano','FONTIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9633,'5919','Fontjoncouse','FONTJONCOUSE',NULL,'','France','',0,0,76,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9634,'6428','Fontvieille','FONTVIEILLE',NULL,'','France','Fontvieille',0,0,76,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9635,'9284','Fontwell','FONTWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:33','1900-01-01 00:00:00',1,0,1),(9636,'38770','Fonz','FONZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9637,'18487','Foothill Ranch','FOOTHILL RANCH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9638,'26508','Footscray','FOOTSCRAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9639,'6028','Forbach','FORBACH',NULL,'','France','',0,0,76,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9640,'34166','Forbes','FORBES',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9641,'39443','Forcalquier','FORCALQUIER',NULL,'','France','',0,0,76,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9642,'41331','Forcarei','FORCAREI',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:34','1900-01-01 00:00:00',1,0,1),(9643,'11939','Forcella','FORCELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9644,'22535','Forch','FORCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9645,'38818','Forch','FORCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9646,'22536','Forchheim','FORCHHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9647,'14977','Forde','FORDE',NULL,'','Norway','Forde',0,0,164,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9648,'8093','Fordingbridge','FORDINGBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9649,'40512','Fordongianus','FORDONGIANUS',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:35','1900-01-01 00:00:00',1,0,1),(9650,'18015','Fordyce','FORDYCE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:36','1900-01-01 00:00:00',1,0,1),(9651,'27853','Forest','FOREST',NULL,'','United States','',0,0,231,'2016-10-17 10:55:36','1900-01-01 00:00:00',1,0,1),(9652,'26367','Forest Hill','FOREST HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:37','1900-01-01 00:00:00',1,0,1),(9653,'25308','Forest Lawn','FOREST LAWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:38','1900-01-01 00:00:00',1,0,1),(9654,'7075','Forest Of Dean','FOREST OF DEAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:38','1900-01-01 00:00:00',1,0,1),(9655,'28792','Forestburg','FORESTBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:55:38','1900-01-01 00:00:00',1,0,1),(9656,'28793','Forestburgh','FORESTBURGH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9657,'25991','Forestville','FORESTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9658,'18488','Forestville','FORESTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9659,'34167','Forestville','FORESTVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9660,'8094','Forfar','FORFAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9661,'5811','Forges-les-eaux','FORGES-LES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 10:55:39','1900-01-01 00:00:00',1,0,1),(9662,'39194','Forino','FORINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9663,'41031','Forio','FORIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9664,'1561','Foriod Ischia','FORIOD ISCHIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9665,'27642','Foristell','FORISTELL',NULL,'','United States','',0,0,231,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9666,'28274','Forked River','FORKED RIVER',NULL,'','United States','',0,0,231,'2016-10-17 10:55:40','1900-01-01 00:00:00',1,0,1),(9667,'31502','Forks','FORKS',NULL,'','United States','',0,0,231,'2016-10-17 10:55:41','1900-01-01 00:00:00',1,0,1),(9668,'12720','Forli','FORLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:41','1900-01-01 00:00:00',1,0,1),(9669,'8095','Formby','FORMBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:41','1900-01-01 00:00:00',1,0,1),(9670,'39021','Formello','FORMELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:41','1900-01-01 00:00:00',1,0,1),(9671,'2900','Formentera','FORMENTERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9672,'36115','Formentera-es Pujols','FORMENTERA-ES PUJOLS',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9673,'12763','Formia','FORMIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9674,'42640','Formiga','FORMIGA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9675,'2631','Formigal','FORMIGAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9676,'26119','Formosa','FORMOSA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:55:42','1900-01-01 00:00:00',1,0,1),(9677,'37737','Fornalutx','FORNALUTX',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9678,'39400','Forncett End','FORNCETT END',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9679,'14844','Fornebu','FORNEBU',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9680,'2901','Fornells','FORNELLS',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9681,'30621','Forney','FORNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9682,'8096','Forres','FORRES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9683,'26630','Forrest','FORREST',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:43','1900-01-01 00:00:00',1,0,1),(9684,'18016','Forrest City','FORREST CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9685,'34168','Forresters Beach','FORRESTERS BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9686,'42911','Forsayth','FORSAYTH',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9687,'3962','Forsby','FORSBY',NULL,'','Finland','',0,0,75,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9688,'3911','Forssa','FORSSA',NULL,'','Finland','',0,0,75,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9689,'34169','Forster','FORSTER',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9690,'27970','Forsyth','FORSYTH',NULL,'','United States','',0,0,231,'2016-10-17 10:55:44','1900-01-01 00:00:00',1,0,1),(9691,'34495','Fort Albany','FORT ALBANY',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:45','1900-01-01 00:00:00',1,0,1),(9692,'9845','Fort Jeudy','FORT JEUDY',NULL,'','Grenada','',0,0,88,'2016-10-17 10:55:48','1900-01-01 00:00:00',1,0,1),(9693,'982','Fort William','FORT WILLIAM',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:55:54','1900-01-01 00:00:00',1,0,1),(9694,'24962','Fortaleza','FORTALEZA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:55:54','1900-01-01 00:00:00',1,0,1),(9695,'25992','Fort-coulonge','FORT-COULONGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:54','1900-01-01 00:00:00',1,0,1),(9696,'14235','Fort-de-france','FORT-DE-FRANCE',NULL,'','Martinique','',0,0,137,'2016-10-17 10:55:54','1900-01-01 00:00:00',1,0,1),(9697,'25655','Forteau','FORTEAU',NULL,'','Canada','',0,0,39,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9698,'40615','Fortià','FORTIÀ',NULL,'','Spain','',0,0,199,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9699,'14118','Fortin De Las Flores','FORTIN DE LAS FLORES',NULL,'','Mexico','',0,0,141,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9700,'40138','Fortitude Valley','FORTITUDE VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9701,'6299','Fort-mahon-plage','FORT-MAHON-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9702,'18490','Fortuna','FORTUNA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9703,'24196','Fortuna','FORTUNA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9704,'14967','Forus','FORUS',NULL,'','Norway','',0,0,164,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9705,'11942','Forza D\'agro','FORZA D\'AGRO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9706,'23959','Foshan','FOSHAN',NULL,'','China','',0,0,46,'2016-10-17 10:55:55','1900-01-01 00:00:00',1,0,1),(9707,'12890','Fossalta','FOSSALTA',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9708,'11943','Fossano','FOSSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9709,'4715','Fosses','FOSSES',NULL,'','France','',0,0,76,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9710,'11217','Fosso','FOSSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9711,'27389','Fosston','FOSSTON',NULL,'','United States','',0,0,231,'2016-10-17 10:55:56','1900-01-01 00:00:00',1,0,1),(9712,'6429','Fos-sur-mer','FOS-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9713,'26904','Foster','FOSTER',NULL,'','Australia','',0,0,13,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9714,'18491','Foster City','FOSTER CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9715,'29350','Fostoria','FOSTORIA',NULL,'','United States','',0,0,231,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9716,'10735','Fota','FOTA',NULL,'','Ireland','',0,0,105,'2016-10-17 10:55:57','1900-01-01 00:00:00',1,0,1),(9717,'41477','Foucheres','FOUCHERES',NULL,'','France','',0,0,76,'2016-10-17 10:55:58','1900-01-01 00:00:00',1,0,1),(9718,'6846','Fougamou','FOUGAMOU',NULL,'','Gabon','',0,0,80,'2016-10-17 10:55:58','1900-01-01 00:00:00',1,0,1),(9719,'5541','Fougeres','FOUGERES',NULL,'','France','',0,0,76,'2016-10-17 10:55:58','1900-01-01 00:00:00',1,0,1),(9720,'33436','Fountain','FOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 10:55:58','1900-01-01 00:00:00',1,0,1),(9721,'6166','Fouquieres Les Bethune','FOUQUIERES LES BETHUNE',NULL,'','France','',0,0,76,'2016-10-17 10:55:59','1900-01-01 00:00:00',1,0,1),(9722,'44021','Fouquieres-les-bethune','FOUQUIERES-LES-BETHUNE',NULL,'','France','',0,0,76,'2016-10-17 10:55:59','1900-01-01 00:00:00',1,0,1),(9723,'8098','Four Marks','FOUR MARKS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:55:59','1900-01-01 00:00:00',1,0,1),(9724,'4','Four Mile Beach','FOUR MILE BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:56:00','1900-01-01 00:00:00',1,0,1),(9725,'37529','Fouras','FOURAS',NULL,'','France','',0,0,76,'2016-10-17 10:56:00','1900-01-01 00:00:00',1,0,1),(9726,'6086','Fources','FOURCES',NULL,'','France','',0,0,76,'2016-10-17 10:56:00','1900-01-01 00:00:00',1,0,1),(9727,'6167','Fourmies','FOURMIES',NULL,'','France','',0,0,76,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9728,'6627','Fourneaux','FOURNEAUX',NULL,'','France','',0,0,76,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9729,'39934','Fourques','FOURQUES',NULL,'','France','',0,0,76,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9730,'32399','Fourways','FOURWAYS',NULL,'','South Africa','',0,0,195,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9731,'8099','Fowey','FOWEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9732,'22071','Fowlerville','FOWLERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9733,'25313','Fox Creek','FOX CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:01','1900-01-01 00:00:00',1,0,1),(9734,'15070','Fox Glacier','FOX GLACIER',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9735,'20551','Fox Lake','FOX LAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9736,'21376','Foxboro','FOXBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9737,'33858','Foxfire','FOXFIRE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9738,'9285','Foxhill','FOXHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:02','1900-01-01 00:00:00',1,0,1),(9739,'8100','Foyers','FOYERS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9740,'10896','Foynes','FOYNES',NULL,'','Ireland','',0,0,105,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9741,'3544','Foz','FOZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9742,'24978','Foz Do Iguacu','FOZ DO IGUACU',NULL,'','Brazil','Foz Do Iguacu',0,0,30,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9743,'39528','Frabosa Sottana','FRABOSA SOTTANA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9744,'11944','Fraccano','FRACCANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9745,'29944','Frackville','FRACKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:03','1900-01-01 00:00:00',1,0,1),(9746,'3328','Fraga','FRAGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9747,'21377','Framingham','FRAMINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9748,'8101','Framlingham','FRAMLINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9749,'37527','Framura','FRAMURA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9750,'25039','Franca','FRANCA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9751,'43471','Francavilla','FRANCAVILLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:04','1900-01-01 00:00:00',1,0,1),(9752,'32698','Francestown','FRANCESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9753,'6842','Franceville','FRANCEVILLE',NULL,'','Gabon','',0,0,80,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9754,'25257','Francistown','FRANCISTOWN',NULL,'','Botswana','',0,0,28,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9755,'141','Franconia','FRANCONIA',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9756,'32699','Franconia','FRANCONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9757,'4716','Franconville','FRANCONVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:56:05','1900-01-01 00:00:00',1,0,1),(9758,'5775','Francourt','FRANCOURT',NULL,'','France','',0,0,76,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9759,'14510','Franeker','FRANEKER',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9760,'1878','Frankenberg','FRANKENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9761,'27129','Frankenmarkt','FRANKENMARKT',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9762,'22072','Frankenmuth','FRANKENMUTH',NULL,'','United States','',0,0,231,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9763,'22752','Frankenthal','FRANKENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:06','1900-01-01 00:00:00',1,0,1),(9764,'22753','Frankfurt','FRANKFURT',NULL,'','Germany','Frankfurt',0,0,83,'2016-10-17 10:56:07','1900-01-01 00:00:00',1,0,1),(9765,'21868','Franklin','FRANKLIN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:08','1900-01-01 00:00:00',1,0,1),(9766,'38245','Franklinton','FRANKLINTON',NULL,'','United States','',0,0,231,'2016-10-17 10:56:11','1900-01-01 00:00:00',1,0,1),(9767,'26905','Frankston','FRANKSTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9768,'15190','Frankton','FRANKTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9769,'5090','Franqueville St Pierre','FRANQUEVILLE ST PIERRE',NULL,'','France','',0,0,76,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9770,'41475','Franqueville-saint-pierre','FRANQUEVILLE-SAINT-PIERRE',NULL,'','France','',0,0,76,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9771,'32383','Franschhoek','FRANSCHHOEK',NULL,'','South Africa','Franschhoek',0,0,195,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9772,'42831','Franschoek','FRANSCHOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9773,'24308','Frantiskovy Lazne','FRANTISKOVY LAZNE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9774,'36505','Franz Josef','FRANZ JOSEF',NULL,'','New Zealand','Franz Josef',0,0,157,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9775,'145','Franz Josef Strauss International Airport (Muc)','FRANZ JOSEF STRAUSS INTERNATIONAL AIRPORT (MUC)',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:12','1900-01-01 00:00:00',1,0,1),(9776,'11947','Frascati','FRASCATI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9777,'22754','Frasdorf','FRASDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9778,'33437','Fraser','FRASER',NULL,'','United States','',0,0,231,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9779,'26219','Fraser Coast','FRASER COAST',NULL,'','Australia','',0,0,13,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9780,'25439','Fraser Lake','FRASER LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:13','1900-01-01 00:00:00',1,0,1),(9782,'11948','Fratta Todina','FRATTA TODINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9783,'40006','Frauenau','FRAUENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9784,'23206','Frauenfeld','FRAUENFELD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9785,'40683','Frauenkirchen','FRAUENKIRCHEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9786,'40696','Frauenstein','FRAUENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9787,'22537','Frauental','FRAUENTAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9788,'17538','Fray Bentos','FRAY BENTOS',NULL,'','Uruguay','',0,0,230,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9789,'29946','Frazer','FRAZER',NULL,'','United States','',0,0,231,'2016-10-17 10:56:14','1900-01-01 00:00:00',1,0,1),(9790,'27360','Frechen','FRECHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:15','1900-01-01 00:00:00',1,0,1),(9791,'2170','Fredensborg','FREDENSBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:15','1900-01-01 00:00:00',1,0,1),(9792,'2318','Fredericia','FREDERICIA',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:15','1900-01-01 00:00:00',1,0,1),(9793,'21697','Frederick','FREDERICK',NULL,'','United States','',0,0,231,'2016-10-17 10:56:15','1900-01-01 00:00:00',1,0,1),(9794,'31112','Fredericksburg','FREDERICKSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:16','1900-01-01 00:00:00',1,0,1),(9795,'27644','Fredericktown','FREDERICKTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:16','1900-01-01 00:00:00',1,0,1),(9796,'34400','Fredericton','FREDERICTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9797,'2230','Frederiksberg','FREDERIKSBERG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9798,'2121','Frederiksborg','FREDERIKSBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9799,'9849','Frederikshaab','FREDERIKSHAAB',NULL,'','Greenland','',0,0,87,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9800,'2238','Frederikshavn','FREDERIKSHAVN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9801,'896','Frederiksted','FREDERIKSTED',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9802,'2171','Frederiksvaerk','FREDERIKSVAERK',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9803,'770','Fredersdorf','FREDERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9804,'16668','Fredhall','FREDHALL',NULL,'','Sweden','',0,0,209,'2016-10-17 10:56:17','1900-01-01 00:00:00',1,0,1),(9805,'28796','Fredonia','FREDONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9806,'16740','Fredriksberg','FREDRIKSBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9807,'14960','Fredrikstad','FREDRIKSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9808,'1189','Free State-bloemfontein','FREE STATE-BLOEMFONTEIN',NULL,'','SOUTH AFRICA','',0,0,195,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9809,'18493','Freedom','FREEDOM',NULL,'','United States','',0,0,231,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9810,'28797','Freehold','FREEHOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:56:18','1900-01-01 00:00:00',1,0,1),(9811,'31504','Freeland','FREELAND',NULL,'','United States','',0,0,231,'2016-10-17 10:56:19','1900-01-01 00:00:00',1,0,1),(9812,'33011','Freeman','FREEMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:19','1900-01-01 00:00:00',1,0,1),(9813,'21869','Freeport','FREEPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:56:19','1900-01-01 00:00:00',1,0,1),(9814,'24870','Freeport','FREEPORT',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9815,'30631','Freer','FREER',NULL,'','United States','',0,0,231,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9816,'16564','Freetown','FREETOWN',NULL,'','Sierra Leone','',0,0,189,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9817,'26169','Freetown','FREETOWN',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9818,'16917','Fregate Island','FREGATE ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9819,'11949','Fregene','FREGENE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:20','1900-01-01 00:00:00',1,0,1),(9820,'4254','Frehel','FREHEL',NULL,'','France','',0,0,76,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9821,'1879','Freiberg','FREIBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9822,'27209','Freiburg','FREIBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9823,'146','Freidorf','FREIDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9824,'11218','Freienfeld','FREIENFELD',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9825,'44132','Freiensteinau','FREIENSTEINAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9826,'147','Freilassing','FREILASSING',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9827,'41721','Freinberg','FREINBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9828,'681','Freisen','FREISEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:21','1900-01-01 00:00:00',1,0,1),(9829,'22755','Freising','FREISING',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9830,'6029','Freistroff','FREISTROFF',NULL,'','France','',0,0,76,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9831,'1880','Freital','FREITAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9832,'39353','Freixenet De Riner','FREIXENET DE RINER',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9833,'6430','Frejus','FREJUS',NULL,'','France','',0,0,76,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9834,'18494','Fremont','FREMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:56:22','1900-01-01 00:00:00',1,0,1),(9835,'1227','French Alps','FRENCH ALPS',NULL,'','FRANCE','',0,0,76,'2016-10-17 10:56:23','1900-01-01 00:00:00',1,0,1),(9836,'9885','French Guiana','FRENCH GUIANA',NULL,'','French Guiana','',0,0,77,'2016-10-17 10:56:23','1900-01-01 00:00:00',1,0,1),(9837,'20882','French Lick','FRENCH LICK',NULL,'','United States','',0,0,231,'2016-10-17 10:56:23','1900-01-01 00:00:00',1,0,1),(9838,'25817','French River','FRENCH RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:24','1900-01-01 00:00:00',1,0,1),(9839,'28280','Frenchtown','FRENCHTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:24','1900-01-01 00:00:00',1,0,1),(9840,'27210','Freren','FREREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:24','1900-01-01 00:00:00',1,0,1),(9841,'24829','Fresh Creek','FRESH CREEK',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:56:24','1900-01-01 00:00:00',1,0,1),(9842,'7077','Freshwater Bay','FRESHWATER BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9843,'3452','Fresnadillo','FRESNADILLO',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9844,'32449','Fresnave','FRESNAVE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9845,'4717','Fresnes','FRESNES',NULL,'','France','',0,0,76,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9846,'6168','Fresnes-les-montauban','FRESNES-LES-MONTAUBAN',NULL,'','France','',0,0,76,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9847,'13884','Fresnillo','FRESNILLO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:56:25','1900-01-01 00:00:00',1,0,1),(9848,'18495','Fresno','FRESNO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9849,'36899','Fresno-chandler','FRESNO-CHANDLER',NULL,'','United States','',0,0,231,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9850,'40791','Freudenberg','FREUDENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9851,'22538','Freudenstadt','FREUDENSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9852,'1932','Freyburg','FREYBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:26','1900-01-01 00:00:00',1,0,1),(9853,'4255','Freyming-merlebach','FREYMING-MERLEBACH',NULL,'','France','',0,0,76,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9854,'23207','Fribourg','FRIBOURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9855,'31505','Friday Harbor','FRIDAY HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9856,'27391','Fridley','FRIDLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9857,'38315','Friedberg','FRIEDBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9858,'148','Friedebach','FRIEDEBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:27','1900-01-01 00:00:00',1,0,1),(9859,'27361','Friedenau','FRIEDENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9860,'422','Friedewald','FRIEDEWALD',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9861,'1970','Friedrichroda','FRIEDRICHRODA',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9862,'38076','Friedrichsbrunn','FRIEDRICHSBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9863,'22539','Friedrichsdorf','FRIEDRICHSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9864,'771','Friedrichsfelde','FRIEDRICHSFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9865,'22540','Friedrichshafen','FRIEDRICHSHAFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9866,'27211','Friedrichshagen','FRIEDRICHSHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9867,'835','Friedrichsruhe','FRIEDRICHSRUHE',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9868,'1933','Friedrichstadt','FRIEDRICHSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:28','1900-01-01 00:00:00',1,0,1),(9869,'21870','Friendship','FRIENDSHIP',NULL,'','United States','',0,0,231,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9870,'30632','Friendswood','FRIENDSWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9871,'14464','Friesland','FRIESLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9872,'13474','Frigate Bay','FRIGATE BAY',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9873,'3231','Frigiliana','FRIGILIANA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:29','1900-01-01 00:00:00',1,0,1),(9874,'8102','Frinton-on-sea','FRINTON-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9875,'3545','Friol','FRIOL',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9876,'30633','Friona','FRIONA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9877,'30327','Fripp Island','FRIPP ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9878,'30634','Frisco','FRISCO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:30','1900-01-01 00:00:00',1,0,1),(9879,'6300','Friville-escarbotin','FRIVILLE-ESCARBOTIN',NULL,'','France','',0,0,76,'2016-10-17 10:56:31','1900-01-01 00:00:00',1,0,1),(9880,'8103','Frizington','FRIZINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:31','1900-01-01 00:00:00',1,0,1),(9881,'37461','Frodsham','FRODSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:31','1900-01-01 00:00:00',1,0,1),(9882,'30328','Frogmore','FROGMORE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9883,'22541','Frohnau','FROHNAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9884,'8104','Frome','FROME',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9885,'31113','Front Royal','FRONT ROYAL',NULL,'','United States','',0,0,231,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9886,'27645','Frontenac','FRONTENAC',NULL,'','United States','',0,0,231,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9887,'13882','Frontera Corozal','FRONTERA COROZAL',NULL,'','Mexico','',0,0,141,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9888,'9878','Fronteras','FRONTERAS',NULL,'','Guatemala','',0,0,91,'2016-10-17 10:56:32','1900-01-01 00:00:00',1,0,1),(9889,'5920','Frontignan','FRONTIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9890,'5730','Fronville','FRONVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9891,'11950','Frosinone','FROSINONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9892,'37852','Frosolone','FROSOLONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9893,'21699','Frostburg','FROSTBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9894,'6030','Frouard','FROUARD',NULL,'','France','',0,0,76,'2016-10-17 10:56:33','1900-01-01 00:00:00',1,0,1),(9895,'33440','Fruita','FRUITA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9896,'22075','Fruitport','FRUITPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9897,'23208','Frutigen','FRUTIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9898,'36007','Frutillar','FRUTILLAR',NULL,'','Chile','',0,0,45,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9899,'41869','Frydek Mistek','FRYDEK MISTEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9900,'39587','Frýdek-místek','FRÝDEK-MÍSTEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9901,'21871','Fryeburg','FRYEBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:34','1900-01-01 00:00:00',1,0,1),(9902,'24309','Frymburk','FRYMBURK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9903,'39132','Ft. Dauphin','FT. DAUPHIN',NULL,'','Madagascar','',0,0,130,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9904,'25767','Ft. Mcpherson','FT. MCPHERSON',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9905,'42307','Ftan','FTAN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9906,'38176','Ftelia','FTELIA',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9907,'40515','Fucecchio','FUCECCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9908,'13229','Fuchu','FUCHU',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9909,'23768','Fuding','FUDING',NULL,'','China','',0,0,46,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9910,'42890','Fuefuki','FUEFUKI',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9911,'43759','Fuegenberg','FUEGENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:35','1900-01-01 00:00:00',1,0,1),(9912,'43115','Fuencaliente','FUENCALIENTE',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9913,'2991','Fuencarral','FUENCARRAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9914,'40452','Fuenfseen','FUENFSEEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9915,'2992','Fuengirola','FUENGIROLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9916,'2993','Fuenlabrada','FUENLABRADA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9917,'3032','Fuensanta','FUENSANTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9918,'36120','Fuente De','FUENTE DE',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:36','1900-01-01 00:00:00',1,0,1),(9919,'36119','Fuenteheridos','FUENTEHERIDOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9920,'2632','Fuentelmonge','FUENTELMONGE',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9921,'38281','Fuentenava De Jábaga','FUENTENAVA DE JÁBAGA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9922,'41499','Fuenterrabia- Hondarribia','FUENTERRABIA- HONDARRIBIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9923,'3636','Fuentes De Leon','FUENTES DE LEON',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9924,'3329','Fuentespalda','FUENTESPALDA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9925,'42410','Fuerigen','FUERIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9926,'43760','Fuerstenfeld','FUERSTENFELD',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9927,'149','Fuerstenwalde','FUERSTENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:37','1900-01-01 00:00:00',1,0,1),(9928,'15358','Fuerte Amador','FUERTE AMADOR',NULL,'','Panama','',0,0,169,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9929,'2469','Fuerteventura','FUERTEVENTURA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9930,'34987','Fuerteventura-antigu','FUERTEVENTURA-ANTIGU',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9931,'35013','Fuerteventura-caleta','FUERTEVENTURA-CALETA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9932,'35008','Fuerteventura-costa','FUERTEVENTURA-COSTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9933,'36134','Fuerteventura-jandia','FUERTEVENTURA-JANDIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9934,'36155','Fuerteventura-oliva','FUERTEVENTURA-OLIVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9935,'150','Fuerth','FUERTH',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9936,'2080','Fuessen','FUESSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9937,'24455','Fugen','FUGEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:38','1900-01-01 00:00:00',1,0,1),(9938,'23993','Fujiang','FUJIANG',NULL,'','China','',0,0,46,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9939,'13130','Fujiidera','FUJIIDERA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9940,'38129','Fujikawaguchiko','FUJIKAWAGUCHIKO',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9941,'42567','Fujisawa','FUJISAWA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9942,'42688','Fujiyama','FUJIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9943,'13131','Fujiyoshida','FUJIYOSHIDA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9944,'13230','Fukue','FUKUE',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9945,'13231','Fukui','FUKUI',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9946,'13232','Fukuoka','FUKUOKA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9947,'13233','Fukushima','FUKUSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:39','1900-01-01 00:00:00',1,0,1),(9948,'13234','Fukuyama','FUKUYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9949,'423','Fulda','FULDA',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9950,'8105','Fulford','FULFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9951,'8106','Fulham','FULHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9952,'26799','Fullarton','FULLARTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9953,'18497','Fullerton','FULLERTON',NULL,'','United States','',0,0,231,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9954,'24456','Fulpmes','FULPMES',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9955,'20555','Fulton','FULTON',NULL,'','United States','',0,0,231,'2016-10-17 10:56:40','1900-01-01 00:00:00',1,0,1),(9956,'17880','Fultondale','FULTONDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:41','1900-01-01 00:00:00',1,0,1),(9957,'28800','Fultonville','FULTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9958,'40053','Fumel','FUMEL',NULL,'','France','',0,0,76,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9959,'39620','Fumone','FUMONE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9960,'13235','Funabashi','FUNABASHI',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9961,'17375','Funafuti','FUNAFUTI',NULL,'','Tuvalu','',0,0,224,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9962,'44255','Funamadhua Island','FUNAMADHUA ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9963,'16002','Funchal','FUNCHAL',NULL,'','Portugal','',0,0,175,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9964,'16104','Fundao','FUNDAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:56:42','1900-01-01 00:00:00',1,0,1),(9965,'24532','Funfhaus','FUNFHAUS',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9966,'10011','Funtana','FUNTANA',NULL,'','Croatia','',0,0,55,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9967,'33861','Fuquay-varina','FUQUAY-VARINA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9968,'13732','Furanafushi','FURANAFUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9969,'13132','Furano','FURANO',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9970,'10866','Furbo','FURBO',NULL,'','Ireland','',0,0,105,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9971,'38131','Furci Siculo','FURCI SICULO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9972,'11220','Furnari','FURNARI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9973,'16092','Furnas','FURNAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9974,'14916','Furnes','FURNES',NULL,'','Norway','',0,0,164,'2016-10-17 10:56:43','1900-01-01 00:00:00',1,0,1),(9975,'11221','Furore','FURORE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9976,'22756','Furstenfeldbruck','FURSTENFELDBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9977,'41025','Furth-by','FURTH-BY',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9978,'22542','Furtwangen','FURTWANGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9979,'11951','Fuscaldo','FUSCALDO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9980,'40063','Fusch An Der Grossglocknerstrasse','FUSCH AN DER GROSSGLOCKNERSTRASSE',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9981,'27166','Fuschl Am See','FUSCHL AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9982,'26989','Fuschlsee','FUSCHLSEE',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9983,'13236','Fushimi','FUSHIMI',NULL,'','Japan','',0,0,110,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9984,'12891','Fusina','FUSINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:44','1900-01-01 00:00:00',1,0,1),(9985,'36054','Fussen','FUSSEN',NULL,'','Germany','Fussen',0,0,83,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9986,'36062','Fussen-hohenschwanga','FUSSEN-HOHENSCHWANGA',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9987,'23581','Futian','FUTIAN',NULL,'','China','',0,0,46,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9988,'32314','Futuna Island','FUTUNA ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9989,'42105','Fuveau','FUVEAU',NULL,'','France','',0,0,76,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9990,'34862','Fuyang','FUYANG',NULL,'','China','',0,0,46,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9991,'23783','Fuyuan','FUYUAN',NULL,'','China','',0,0,46,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9992,'23838','Fuyun','FUYUN',NULL,'','China','',0,0,46,'2016-10-17 10:56:45','1900-01-01 00:00:00',1,0,1),(9993,'35339','Fuzesgyarmat','FUZESGYARMAT',NULL,'','Hungary','',0,0,99,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9994,'23726','Fuzhou','FUZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9995,'2122','Fyn','FYN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9996,'2291','Fynshav','FYNSHAV',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9997,'17175','Gabes','GABES',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9998,'17142','Gabès','GABÈS',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(9999,'40656','Gabiano','GABIANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10000,'11222','Gabicce Mare','GABICCE MARE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10001,'25258','Gaborone','GABORONE',NULL,'','Botswana','',0,0,28,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10002,'25440','Gabriola Island','GABRIOLA ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10003,'24802','Gabrovo','GABROVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10004,'2319','Gadbjerg','GADBJERG',NULL,'','Denmark','',0,0,59,'2016-10-17 10:56:46','1900-01-01 00:00:00',1,0,1),(10005,'836','Gadebusch','GADEBUSCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:47','1900-01-01 00:00:00',1,0,1),(10006,'17881','Gadsden','GADSDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:47','1900-01-01 00:00:00',1,0,1),(10007,'44133','Gaegelow','GAEGELOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:47','1900-01-01 00:00:00',1,0,1),(10008,'12764','Gaeta','GAETA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:47','1900-01-01 00:00:00',1,0,1),(10009,'30329','Gaffney','GAFFNEY',NULL,'','United States','',0,0,231,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10010,'32907','Gage','GAGE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10011,'5187','Gageac-et-rouillac','GAGEAC-ET-ROUILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10012,'43192','Gagelow','GAGELOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10013,'36265','Gages','GAGES',NULL,'','France','',0,0,76,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10014,'37495','Gaggi','GAGGI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10015,'11952','Gagliano Del Capo','GAGLIANO DEL CAPO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:48','1900-01-01 00:00:00',1,0,1),(10016,'29356','Gahanna','GAHANNA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10017,'38780','Gai','GAI',NULL,'','Austria','',0,0,14,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10018,'6087','Gaillac','GAILLAC',NULL,'','France','',0,0,76,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10019,'4718','Gaillon','GAILLON',NULL,'','France','',0,0,76,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10020,'30636','Gainesville','GAINESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:56:49','1900-01-01 00:00:00',1,0,1),(10021,'8107','Gainsborough','GAINSBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10022,'38890','Gaiola','GAIOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10023,'12970','Gaiole In Chianti','GAIOLE IN CHIANTI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10024,'9774','Gaios','GAIOS',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10025,'4256','Gairaut','GAIRAUT',NULL,'','France','',0,0,76,'2016-10-17 10:56:51','1900-01-01 00:00:00',1,0,1),(10026,'8108','Gairloch','GAIRLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10027,'11953','Gais','GAIS',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10028,'23209','Gais','GAIS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10029,'23024','Gaiserwald','GAISERWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10030,'21700','Gaithersburg','GAITHERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10031,'10517','Gajner','GAJNER',NULL,'','India','',0,0,101,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10032,'38228','Galanta','GALANTA',NULL,'','Slovakia','',0,0,191,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10033,'36124','Galapagar','GALAPAGAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:52','1900-01-01 00:00:00',1,0,1),(10034,'42700','Galapagos Island','GALAPAGOS ISLAND',NULL,'','Ecuador','',0,0,64,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10035,'40773','Galar','GALAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10036,'8109','Galashiels','GALASHIELS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10037,'36624','Galati','GALATI',NULL,'','Romania','',0,0,179,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10038,'12986','Galatina','GALATINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10039,'9653','Galatsion','GALATSION',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10040,'31115','Galax','GALAX',NULL,'','United States','',0,0,231,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10041,'9468','Galaxidhion','GALAXIDHION',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10042,'42511','Galaxidi','GALAXIDI',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:53','1900-01-01 00:00:00',1,0,1),(10043,'42074','Galdeano','GALDEANO',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:54','1900-01-01 00:00:00',1,0,1),(10044,'3546','Galdo','GALDO',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:54','1900-01-01 00:00:00',1,0,1),(10045,'10225','Galeia','GALEIA',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:56:54','1900-01-01 00:00:00',1,0,1),(10046,'21701','Galena','GALENA',NULL,'','United States','',0,0,231,'2016-10-17 10:56:54','1900-01-01 00:00:00',1,0,1),(10047,'41388','Galera','GALERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10048,'20558','Galesburg','GALESBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10049,'29947','Galeton','GALETON',NULL,'','United States','',0,0,231,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10050,'24152','Galgmanca','GALGMANCA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10051,'42344','Galia Aquitania','GALIA AQUITANIA',NULL,'','France','',0,0,76,'2016-10-17 10:56:55','1900-01-01 00:00:00',1,0,1),(10052,'25441','Galiano Island','GALIANO ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10053,'11038','Galilee','GALILEE',NULL,'','Israel','',0,0,106,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10054,'39865','Galindo Y Perahuy','GALINDO Y PERAHUY',NULL,'','Spain','',0,0,199,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10055,'29357','Galion','GALION',NULL,'','United States','',0,0,231,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10056,'9654','Galissas','GALISSAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10057,'28527','Galisteo','GALISTEO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:56','1900-01-01 00:00:00',1,0,1),(10058,'11954','Gallarate','GALLARATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:57','1900-01-01 00:00:00',1,0,1),(10059,'4257','Gallargues-le-montueux','GALLARGUES-LE-MONTUEUX',NULL,'','France','',0,0,76,'2016-10-17 10:56:57','1900-01-01 00:00:00',1,0,1),(10060,'33148','Gallatin','GALLATIN',NULL,'','United States','',0,0,231,'2016-10-17 10:56:57','1900-01-01 00:00:00',1,0,1),(10061,'21199','Galliano','GALLIANO',NULL,'','United States','',0,0,231,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10062,'11955','Gallicano','GALLICANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10063,'38217','Gallio','GALLIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10064,'12806','Gallipoli','GALLIPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10065,'29358','Gallipolis','GALLIPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 10:56:58','1900-01-01 00:00:00',1,0,1),(10066,'16750','Gallivare','GALLIVARE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:56:59','1900-01-01 00:00:00',1,0,1),(10067,'11223','Gallo Matese','GALLO MATESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:56:59','1900-01-01 00:00:00',1,0,1),(10068,'28281','Galloway','GALLOWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:56:59','1900-01-01 00:00:00',1,0,1),(10069,'28528','Gallup','GALLUP',NULL,'','United States','',0,0,231,'2016-10-17 10:56:59','1900-01-01 00:00:00',1,0,1),(10070,'11956','Galluzzo','GALLUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10071,'18498','Galt','GALT',NULL,'','United States','',0,0,231,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10072,'24457','Galtur','GALTUR',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10073,'20559','Galva','GALVA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10074,'30639','Galveston','GALVESTON',NULL,'','United States','',0,0,231,'2016-10-17 10:57:00','1900-01-01 00:00:00',1,0,1),(10075,'10092','Galyateto','GALYATETO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10076,'11224','Galzignano Terme','GALZIGNANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10077,'13237','Gamagori','GAMAGORI',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10078,'18020','Gamaliel','GAMALIEL',NULL,'','United States','',0,0,231,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10079,'6854','Gamba','GAMBA',NULL,'','Gabon','',0,0,80,'2016-10-17 10:57:01','1900-01-01 00:00:00',1,0,1),(10080,'11957','Gambara','GAMBARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10081,'11225','Gambarie','GAMBARIE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10082,'11958','Gambassi','GAMBASSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10083,'24020','Gambela','GAMBELA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10084,'3851','Gambela','GAMBELA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10085,'17631','Gambell','GAMBELL',NULL,'','United States','',0,0,231,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10086,'11959','Gamberale','GAMBERALE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10087,'1185','Gambia','GAMBIA',NULL,'','GAMBIA','',0,0,81,'2016-10-17 10:57:02','1900-01-01 00:00:00',1,0,1),(10088,'29360','Gambier','GAMBIER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10089,'10284','Gambir','GAMBIR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10090,'42158','Gambo','GAMBO',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10091,'15353','Gamboa','GAMBOA',NULL,'','Panama','',0,0,169,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10092,'39158','Gambolo','GAMBOLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10093,'17143','Gammarth','GAMMARTH',NULL,'','Tunisia','',0,0,220,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10094,'2146','Gammel Rye','GAMMEL RYE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10095,'22543','Gammertingen','GAMMERTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10096,'34500','Gananoque','GANANOQUE',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:03','1900-01-01 00:00:00',1,0,1),(10097,'25656','Gander','GANDER',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10098,'27212','Ganderkesee','GANDERKESEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10099,'10518','Gandhidham','GANDHIDHAM',NULL,'','India','Gandhidham',16,0,101,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10100,'10634','Gandhinagar','GANDHINAGAR',NULL,'','India','Gandhinagar',16,0,101,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10101,'3757','Gandia','GANDIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10102,'42555','Gangehi','GANGEHI',NULL,'','Maldives','',0,0,133,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10103,'25442','Ganges','GANGES',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10104,'35809','Gangneung','GANGNEUNG',NULL,'','South Korea','',0,0,197,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10105,'40809','Gangotri','GANGOTRI',NULL,'','India','Gangotri',9,0,101,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10106,'10699','Gangtok','GANGTOK',NULL,'','India','Gangtok',25,0,101,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10107,'8110','Ganllwyd','GANLLWYD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:04','1900-01-01 00:00:00',1,0,1),(10108,'37531','Gansbaai','GANSBAAI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10109,'24625','Ganshoren','GANSHOREN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10110,'8111','Ganton','GANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10111,'23727','Ganzhou','GANZHOU',NULL,'','China','',0,0,46,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10112,'23582','Gaobaita','GAOBAITA',NULL,'','China','',0,0,46,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10113,'23889','Gaobeidian','GAOBEIDIAN',NULL,'','China','',0,0,46,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10114,'24749','Gaoua','GAOUA',NULL,'','Burkina Faso','',0,0,35,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10115,'4839','Gap','GAP',NULL,'','France','',0,0,76,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10116,'36121','Garabandal','GARABANDAL',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10117,'24197','Garabito','GARABITO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10118,'3361','Garachico','GARACHICO',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:05','1900-01-01 00:00:00',1,0,1),(10119,'14207','Garapan','GARAPAN',NULL,'','Northern Mariana Islands','',0,0,163,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10120,'40076','Garbagnate Milanese','GARBAGNATE MILANESE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10121,'11960','Garbatella','GARBATELLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10122,'18499','Garberville','GARBERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10123,'151','Garbsen','GARBSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10124,'152','Garching','GARCHING',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10125,'3547','Garcia','GARCIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:06','1900-01-01 00:00:00',1,0,1),(10126,'7078','Garden City','GARDEN CITY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:07','1900-01-01 00:00:00',1,0,1),(10127,'10689','Garden Reach','GARDEN REACH',NULL,'','India','',0,0,101,'2016-10-17 10:57:08','1900-01-01 00:00:00',1,0,1),(10128,'18501','Gardena','GARDENA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:08','1900-01-01 00:00:00',1,0,1),(10129,'17883','Gardendale','GARDENDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10130,'14845','Garder','GARDER',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10131,'14536','Garderen','GARDEREN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10132,'14846','Gardermoen','GARDERMOEN',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10133,'43675','Garderners Bay','GARDERNERS BAY',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10134,'28802','Gardiner','GARDINER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:09','1900-01-01 00:00:00',1,0,1),(10135,'21380','Gardner','GARDNER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:10','1900-01-01 00:00:00',1,0,1),(10136,'32814','Gardnerville','GARDNERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:10','1900-01-01 00:00:00',1,0,1),(10137,'11962','Gardone Riviera','GARDONE RIVIERA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:10','1900-01-01 00:00:00',1,0,1),(10138,'4259','Gare Du Nord - Gare De L\'est (10)','GARE DU NORD - GARE DE L\'EST (10)',NULL,'','France','',0,0,76,'2016-10-17 10:57:11','1900-01-01 00:00:00',1,0,1),(10139,'2633','Gares','GARES',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:11','1900-01-01 00:00:00',1,0,1),(10140,'33441','Garfield','GARFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:57:11','1900-01-01 00:00:00',1,0,1),(10141,'8112','Garforth','GARFORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:11','1900-01-01 00:00:00',1,0,1),(10142,'4260','Gargano','GARGANO',NULL,'','France','',0,0,76,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10143,'42323','Gargano','GARGANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10144,'37530','Gargas','GARGAS',NULL,'','France','',0,0,76,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10145,'24519','Gargellen','GARGELLEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10146,'5137','Garges Les Gonesse','GARGES LES GONESSE',NULL,'','France','',0,0,76,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10147,'11963','Gargnano','GARGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:12','1900-01-01 00:00:00',1,0,1),(10148,'40810','Garhmukteshwar','GARHMUKTESHWAR',NULL,'','India','',0,0,101,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10149,'40811','Garhwal','GARHWAL',NULL,'','India','',0,0,101,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10150,'25443','Garibaldi','GARIBALDI',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10151,'29663','Garibaldi','GARIBALDI',NULL,'','United States','',0,0,231,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10152,'32450','Gariep','GARIEP',NULL,'','South Africa','',0,0,195,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10153,'26220','Garig Gunak Barlu National Park','GARIG GUNAK BARLU NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10154,'30642','Garland','GARLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10155,'11964','Garlenda','GARLENDA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:13','1900-01-01 00:00:00',1,0,1),(10156,'1690','Garmisch Partenkirch','GARMISCH PARTENKIRCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10157,'2063','Garmisch-partenkirchen','GARMISCH-PARTENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10158,'36055','Garmish-partenkirche','GARMISH-PARTENKIRCHE',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10159,'33862','Garner','GARNER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10160,'21056','Garnett','GARNETT',NULL,'','United States','',0,0,231,'2016-10-17 10:57:14','1900-01-01 00:00:00',1,0,1),(10161,'39769','Garniga Terme','GARNIGA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10162,'5921','Garons','GARONS',NULL,'','France','',0,0,76,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10163,'43611','Garopaba','GAROPABA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10164,'39070','Garos','GAROS',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10165,'24019','Garoua','GAROUA',NULL,'','Cameroon','',0,0,38,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10166,'39334','Garpenberg','GARPENBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10167,'27213','Garrel','GARREL',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10168,'6088','Garrevaques','GARREVAQUES',NULL,'','France','',0,0,76,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10169,'4261','Garrigues-sainte-eulalie','GARRIGUES-SAINTE-EULALIE',NULL,'','France','',0,0,76,'2016-10-17 10:57:15','1900-01-01 00:00:00',1,0,1),(10170,'27392','Garrison','GARRISON',NULL,'','United States','',0,0,231,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10171,'37816','Garrovillas De Alconetar','GARROVILLAS DE ALCONETAR',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10172,'41463','Garrucha','GARRUCHA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10173,'8113','Garstang','GARSTANG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10174,'8114','Gartmore','GARTMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:16','1900-01-01 00:00:00',1,0,1),(10175,'22544','Gartringen','GARTRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10176,'42794','Garut','GARUT',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10177,'8115','Garve','GARVE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10178,'39368','Garwolin','GARWOLIN',NULL,'','Poland','',0,0,174,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10179,'20884','Gary','GARY',NULL,'','United States','',0,0,231,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10180,'24214','Garza','GARZA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10181,'14058','Garza Garcia','GARZA GARCIA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10182,'20885','Gas City','GAS CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:57:17','1900-01-01 00:00:00',1,0,1),(10183,'24520','Gaschurn','GASCHURN',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10184,'27648','Gashland','GASHLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10185,'25993','Gaspe','GASPE',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10186,'41683','Gasperina','GASPERINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10187,'31983','Gassaway','GASSAWAY',NULL,'','United States','',0,0,231,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10188,'16491','Gassim','GASSIM',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:57:18','1900-01-01 00:00:00',1,0,1),(10189,'6432','Gassin','GASSIN',NULL,'','France','',0,0,76,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10190,'18021','Gassville','GASSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10191,'33863','Gastonia','GASTONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10192,'9469','Gastouri','GASTOURI',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10193,'25444','Gastown','GASTOWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10194,'7079','Gatehouse-of-fleet','GATEHOUSE-OF-FLEET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10195,'28804','Gates','GATES',NULL,'','United States','',0,0,231,'2016-10-17 10:57:19','1900-01-01 00:00:00',1,0,1),(10196,'9317','Gateshead','GATESHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:20','1900-01-01 00:00:00',1,0,1),(10197,'30643','Gatesville','GATESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:20','1900-01-01 00:00:00',1,0,1),(10198,'25995','Gatineau','GATINEAU',NULL,'','Canada','Gatineau',0,0,39,'2016-10-17 10:57:20','1900-01-01 00:00:00',1,0,1),(10199,'33149','Gatlinburg','GATLINBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:57:20','1900-01-01 00:00:00',1,0,1),(10200,'772','Gatow','GATOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10201,'37603','Gattatico','GATTATICO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10202,'2239','Gatten','GATTEN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10203,'15337','Gatun Lake','GATUN LAKE',NULL,'','Panama','',0,0,169,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10204,'8116','Gatwick','GATWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10205,'32315','Gaua','GAUA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10206,'6301','Gauchy','GAUCHY',NULL,'','France','',0,0,76,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10207,'3232','Gaucin','GAUCIN',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:21','1900-01-01 00:00:00',1,0,1),(10208,'37177','Gaufelden','GAUFELDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10209,'10624','Gauhati','GAUHATI',NULL,'','India','',0,0,101,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10210,'5922','Gaujac','GAUJAC',NULL,'','France','',0,0,76,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10211,'14890','Gaustad','GAUSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10212,'15002','Gautefall','GAUTEFALL',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10213,'27855','Gautier','GAUTIER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10214,'38932','Gauting','GAUTING',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10215,'3548','Gava','GAVA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:22','1900-01-01 00:00:00',1,0,1),(10216,'6089','Gavarnie','GAVARNIE',NULL,'','France','',0,0,76,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10217,'36268','Gavaudun','GAVAUDUN',NULL,'','France','',0,0,76,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10218,'25134','Gavea','GAVEA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10219,'11965','Gavi','GAVI',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10220,'37647','Gaviao','GAVIAO',NULL,'','Portugal','',0,0,175,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10221,'18022','Gavin','GAVIN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:23','1900-01-01 00:00:00',1,0,1),(10222,'39455','Gavoi','GAVOI',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10223,'12979','Gavorrano','GAVORRANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10224,'9470','Gavrio','GAVRIO',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10225,'38061','Gaya Island','GAYA ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10226,'22077','Gaylord','GAYLORD',NULL,'','United States','',0,0,231,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10227,'26406','Gayndah','GAYNDAH',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:24','1900-01-01 00:00:00',1,0,1),(10228,'44174','Gazi','GAZI',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10229,'17294','Gaziantep','GAZIANTEP',NULL,'','Turkey','',0,0,222,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10230,'41035','Gazzo','GAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10231,'11227','Gazzola','GAZZOLA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10232,'32631','Gbadolite','GBADOLITE',NULL,'','Fiji','',0,0,74,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10233,'15720','Gdansk','GDANSK',NULL,'','Poland','',0,0,174,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10234,'15619','Gdynia','GDYNIA',NULL,'','Poland','',0,0,174,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10235,'29664','Gearhart','GEARHART',NULL,'','United States','',0,0,231,'2016-10-17 10:57:25','1900-01-01 00:00:00',1,0,1),(10236,'10157','Gebe','GEBE',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10237,'40557','Gebze','GEBZE',NULL,'','Turkey','',0,0,222,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10238,'41472','Gedre','GEDRE',NULL,'','France','',0,0,76,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10239,'24607','Geel','GEEL',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10240,'26906','Geelong','GEELONG',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10241,'42456','Gehdren','GEHDREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10242,'37984','Geilenkirchen','GEILENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10243,'14864','Geilo','GEILO',NULL,'','Norway','Geilo',0,0,164,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10244,'41820','Geinberg','GEINBERG',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:26','1900-01-01 00:00:00',1,0,1),(10245,'14772','Geiranger','GEIRANGER',NULL,'','Norway','',0,0,164,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10246,'35708','Geisei','GEISEI',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10247,'22757','Geisenhausen','GEISENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10248,'424','Geisenheim','GEISENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10249,'38539','Geislingen An Der Steige','GEISLINGEN AN DER STEIGE',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10250,'6761','Geispolsheim','GEISPOLSHEIM',NULL,'','France','',0,0,76,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10251,'1881','Geithain','GEITHAIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10252,'41917','Gela','GELA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10253,'3852','Geladi','GELADI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10254,'43895','Gelderland','GELDERLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:27','1900-01-01 00:00:00',1,0,1),(10255,'14596','Geldrop','GELDROP',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10256,'14570','Geleen','GELEEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10257,'16260','Gelendzik','GELENDZIK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10258,'26907','Gellibrand','GELLIBRAND',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10259,'38036','Gelnhausen','GELNHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10260,'27362','Gelsenkirchen','GELSENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10261,'3233','Gelves','GELVES',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10262,'24708','Gembloux','GEMBLOUX',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10263,'32632','Gemena','GEMENA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10264,'6433','Gemenos','GEMENOS',NULL,'','France','',0,0,76,'2016-10-17 10:57:28','1900-01-01 00:00:00',1,0,1),(10265,'22758','Gemunden','GEMUNDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10266,'6629','Genas','GENAS',NULL,'','France','',0,0,76,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10267,'6338','Gencay','GENCAY',NULL,'','France','',0,0,76,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10268,'44268','Gence','GENCE',NULL,'','Azerbaijan','',0,0,15,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10269,'3853','Genda Wuha','GENDA WUHA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10270,'40227','General Kantardzhievo','GENERAL KANTARDZHIEVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10271,'26135','General Roca','GENERAL ROCA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:57:29','1900-01-01 00:00:00',1,0,1),(10272,'15549','General Santos','GENERAL SANTOS',NULL,'','Philippines','',0,0,173,'2016-10-17 10:57:30','1900-01-01 00:00:00',1,0,1),(10273,'20560','Geneseo','GENESEO',NULL,'','United States','',0,0,231,'2016-10-17 10:57:30','1900-01-01 00:00:00',1,0,1),(10274,'40780','Geneuille','GENEUILLE',NULL,'','France','',0,0,76,'2016-10-17 10:57:30','1900-01-01 00:00:00',1,0,1),(10275,'28806','Geneva','GENEVA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:31','1900-01-01 00:00:00',1,0,1),(10276,'23435','Geneva','GENEVA',NULL,'','Switzerland','Geneva',0,0,210,'2016-10-17 10:57:31','1900-01-01 00:00:00',1,0,1),(10277,'38162','Genga','GENGA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10278,'425','Gengenbach','GENGENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10279,'24738','Genk','GENK',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10280,'9471','Gennadi','GENNADI',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10281,'4719','Gennevilliers','GENNEVILLIERS',NULL,'','France','',0,0,76,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10282,'12777','Genoa','GENOA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10283,'32815','Genoa','GENOA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:32','1900-01-01 00:00:00',1,0,1),(10284,'999','Genova','GENOVA',NULL,'','ITALY','',0,0,107,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10285,'5188','Gensac','GENSAC',NULL,'','France','',0,0,76,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10286,'40968','Gent','GENT',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10287,'1934','Genthin','GENTHIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10288,'4720','Gentilly','GENTILLY',NULL,'','France','',0,0,76,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10289,'36426','Genting Highlands','GENTING HIGHLANDS',NULL,'','Malaysia','Genting Highlands',36,0,132,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10290,'2209','Gentofte','GENTOFTE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10291,'24735','Genval','GENVAL',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:33','1900-01-01 00:00:00',1,0,1),(10292,'11966','Genzano Di Roma','GENZANO DI ROMA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10293,'31506','George','GEORGE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10294,'32451','George','GEORGE',NULL,'','South Africa','',0,0,195,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10295,'42654','George Town','GEORGE TOWN',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10296,'24261','George Town','GEORGE TOWN',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10297,'24856','George Town','GEORGE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10298,'26841','George Town','GEORGE TOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:34','1900-01-01 00:00:00',1,0,1),(10299,'39086','Georgenthal','GEORGENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10300,'34501','Georgetown','GEORGETOWN',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10301,'30646','Georgetown','GEORGETOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10302,'26407','Georgetown','GEORGETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10303,'16534','Georgetown','GEORGETOWN',NULL,'','St. Helena','',0,0,201,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10304,'9896','Georgetown','GEORGETOWN',NULL,'','Guyana','',0,0,94,'2016-10-17 10:57:35','1900-01-01 00:00:00',1,0,1),(10306,'25996','Georgeville','GEORGEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10307,'37483','Georgeville','GEORGEVILLE',NULL,'','Belize','',0,0,22,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10308,'9472','Georgioupolis','GEORGIOUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10309,'1971','Gera','GERA',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10310,'37784','Gerace','GERACE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10311,'35230','Gerakini','GERAKINI',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:37','1900-01-01 00:00:00',1,0,1),(10312,'43017','Geraldine','GERALDINE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10313,'34502','Geraldton','GERALDTON',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10314,'26592','Geraldton','GERALDTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10315,'6031','Gerardmer','GERARDMER',NULL,'','France','',0,0,76,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10316,'39150','Geras','GERAS',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10317,'40197','Géraudot','GÉRAUDOT',NULL,'','France','',0,0,76,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10318,'6090','Gerde','GERDE',NULL,'','France','',0,0,76,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10319,'12822','Geremeas','GEREMEAS',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:38','1900-01-01 00:00:00',1,0,1),(10320,'3234','Gerena','GERENA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10321,'11229','Gerenzano','GERENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10322,'41659','Geres','GERES',NULL,'','Portugal','',0,0,175,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10323,'1635','Geres-canicada','GERES-CANICADA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10324,'41299','Geria','GERIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10325,'37514','Gerik','GERIK',NULL,'','Malaysia','',0,0,132,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10326,'28120','Gering','GERING',NULL,'','United States','',0,0,231,'2016-10-17 10:57:39','1900-01-01 00:00:00',1,0,1),(10327,'32816','Gerlach','GERLACH',NULL,'','United States','',0,0,231,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10328,'36699','Gerlachov','GERLACHOV',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10329,'27363','Gerlingen','GERLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10330,'37323','Gerlos','GERLOS',NULL,'','Austria','',0,0,14,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10331,'6091','Germ','GERM',NULL,'','France','',0,0,76,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10332,'33151','Germantown','GERMANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:40','1900-01-01 00:00:00',1,0,1),(10333,'11230','Germasino','GERMASINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10334,'2064','Germering','GERMERING',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10335,'42455','Germersheim','GERMERSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10336,'32562','Germiston','GERMISTON',NULL,'','South Africa','',0,0,195,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10337,'22760','Gernlinden','GERNLINDEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:41','1900-01-01 00:00:00',1,0,1),(10338,'39159','Gernsbach','GERNSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10339,'42868','Gero','GERO',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10340,'34171','Gerogery','GEROGERY',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10341,'23473','Geroldswil','GEROLDSWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10342,'41644','Gerolimenas','GEROLIMENAS',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10343,'626','Gerolstein','GEROLSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10344,'2634','Gerona','GERONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10345,'36122','Gerona-alp','GERONA-ALP',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10346,'7081','Gerrards Cross','GERRARDS CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:42','1900-01-01 00:00:00',1,0,1),(10347,'34172','Gerringong','GERRINGONG',NULL,'','Australia','Gerringong',0,0,13,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10348,'23210','Gersau','GERSAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10349,'39282','Gersbach','GERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10350,'22761','Gersthofen','GERSTHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10351,'5315','Gerzat','GERZAT',NULL,'','France','',0,0,76,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10352,'27364','Gescher','GESCHER',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10353,'37901','Geseke','GESEKE',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10354,'24709','Gesves','GESVES',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10355,'2994','Getafe','GETAFE',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:43','1900-01-01 00:00:00',1,0,1),(10356,'3707','Getaria','GETARIA',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:44','1900-01-01 00:00:00',1,0,1),(10357,'25997','Gethsemani','GETHSEMANI',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:44','1900-01-01 00:00:00',1,0,1),(10358,'33012','Gettysburg','GETTYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:57:44','1900-01-01 00:00:00',1,0,1),(10359,'43214','Getxo','GETXO',NULL,'','Spain','',0,0,199,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10360,'14635','Geuzenveld','GEUZENVELD',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10361,'38390','Gevgelija','GEVGELIJA',NULL,'','Macedonia','',0,0,129,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10362,'39552','Gevrey-chambertin','GEVREY-CHAMBERTIN',NULL,'','France','',0,0,76,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10363,'6630','Gex','GEX',NULL,'','France','',0,0,76,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10364,'18502','Geyserville','GEYSERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10365,'13561','Ghadames','GHADAMES',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10366,'43322','Ghajn Tuffieha','GHAJN TUFFIEHA',NULL,'','Malta','',0,0,135,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10367,'40851','Ghanerao','GHANERAO',NULL,'','India','',0,0,101,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10368,'44199','Ghantoot','GHANTOOT',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:57:45','1900-01-01 00:00:00',1,0,1),(10369,'25259','Ghanzi','GHANZI',NULL,'','Botswana','',0,0,28,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10370,'40328','Ghardaia','GHARDAIA',NULL,'','Algeria','',0,0,3,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10371,'13562','Ghat','GHAT',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10372,'10519','Ghaziabad','GHAZIABAD',NULL,'','India','Ghaziabad',6,0,101,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10373,'33640','Ghent','GHENT',NULL,'','United States','',0,0,231,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10374,'24717','Ghent','GHENT',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10375,'39683','Ghiffa','GHIFFA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:46','1900-01-01 00:00:00',1,0,1),(10376,'3854','Ghimbi','GHIMBI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10377,'39372','Ghislenghien','GHISLENGHIEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10378,'4721','Ghisonaccia','GHISONACCIA',NULL,'','France','',0,0,76,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10379,'11967','Ghizzano','GHIZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10380,'32279','Gia Dinh','GIA DINH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10381,'37347','Giannitsa','GIANNITSA',NULL,'','Greece','',0,0,86,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10382,'10226','Gianyar','GIANYAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10383,'41037','Giardini Naxos','GIARDINI NAXOS',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:47','1900-01-01 00:00:00',1,0,1),(10384,'13046','Giardini-naxos','GIARDINI-NAXOS',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10385,'11969','Giarre','GIARRE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10386,'28282','Gibbsboro','GIBBSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10387,'28283','Gibbstown','GIBBSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10388,'41168','Gibraltar','GIBRALTAR',NULL,'','United Kingdom','Gibraltar',0,0,229,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10389,'9358','Gibraltar','GIBRALTAR',NULL,'','Gibraltar','Gibraltar',0,0,85,'2016-10-17 10:57:48','1900-01-01 00:00:00',1,0,1),(10390,'29950','Gibsonia','GIBSONIA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10391,'25445','Gibsons','GIBSONS',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10392,'30647','Giddings','GIDDINGS',NULL,'','United States','',0,0,231,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10393,'8117','Gidleigh','GIDLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10394,'4263','Gien-le-vieux','GIEN-LE-VIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10395,'4264','Giens','GIENS',NULL,'','France','',0,0,76,'2016-10-17 10:57:49','1900-01-01 00:00:00',1,0,1),(10396,'6631','Gieres','GIERES',NULL,'','France','',0,0,76,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10397,'22762','Giesing','GIESING',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10398,'153','Giessen','GIESSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10399,'41376','Giethoorn','GIETHOORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10400,'6632','Giez','GIEZ',NULL,'','France','',0,0,76,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10401,'8118','Giffnock','GIFFNOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10402,'8119','Gifford','GIFFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:50','1900-01-01 00:00:00',1,0,1),(10403,'27214','Gifhorn','GIFHORN',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10404,'4722','Gif-sur-yvette','GIF-SUR-YVETTE',NULL,'','France','',0,0,76,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10405,'13385','Gifu','GIFU',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10406,'31507','Gig Harbor','GIG HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10407,'36266','Gignac','GIGNAC',NULL,'','France','',0,0,76,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10408,'6434','Gignac-la-nerthe','GIGNAC-LA-NERTHE',NULL,'','France','',0,0,76,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10409,'3087','Gijon','GIJON',NULL,'','Spain','Gijon / Xixon',0,0,199,'2016-10-17 10:57:51','1900-01-01 00:00:00',1,0,1),(10410,'18137','Gila Bend','GILA BEND',NULL,'','United States','',0,0,231,'2016-10-17 10:57:52','1900-01-01 00:00:00',1,0,1),(10411,'18138','Gilbert','GILBERT',NULL,'','United States','',0,0,231,'2016-10-17 10:57:52','1900-01-01 00:00:00',1,0,1),(10412,'33641','Gilbertsville','GILBERTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:52','1900-01-01 00:00:00',1,0,1),(10413,'28808','Gilboa','GILBOA',NULL,'','United States','',0,0,231,'2016-10-17 10:57:52','1900-01-01 00:00:00',1,0,1),(10414,'32701','Gilford','GILFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10415,'34173','Gilgandra','GILGANDRA',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10416,'39974','Gilgil','GILGIL',NULL,'','Kenya','',0,0,113,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10417,'15300','Gilgit','GILGIT',NULL,'','Pakistan','',0,0,166,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10418,'10158','Gili Islands','GILI ISLANDS',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10419,'25595','Gillam','GILLAM',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10420,'2172','Gilleleje','GILLELEJE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10421,'627','Gillenfeld','GILLENFELD',NULL,'','Germany','',0,0,83,'2016-10-17 10:57:53','1900-01-01 00:00:00',1,0,1),(10422,'26801','Gilles Plains','GILLES PLAINS',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:54','1900-01-01 00:00:00',1,0,1),(10423,'32099','Gillette','GILLETTE',NULL,'','United States','',0,0,231,'2016-10-17 10:57:54','1900-01-01 00:00:00',1,0,1),(10424,'36310','Gillingham','GILLINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:54','1900-01-01 00:00:00',1,0,1),(10425,'31757','Gills Rock','GILLS ROCK',NULL,'','United States','',0,0,231,'2016-10-17 10:57:54','1900-01-01 00:00:00',1,0,1),(10426,'24662','Gilly','GILLY',NULL,'','Belgium','',0,0,21,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10427,'20562','Gilman','GILMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10428,'30648','Gilmer','GILMER',NULL,'','United States','',0,0,231,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10429,'8121','Gilmerton','GILMERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10430,'18503','Gilroy','GILROY',NULL,'','United States','',0,0,231,'2016-10-17 10:57:55','1900-01-01 00:00:00',1,0,1),(10431,'8122','Gilsland','GILSLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10432,'44241','Gilutongan Island','GILUTONGAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10433,'14597','Gilze','GILZE',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10434,'35801','Gimhae City','GIMHAE CITY',NULL,'','South Korea','',0,0,197,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10435,'25596','Gimli','GIMLI',NULL,'','Canada','',0,0,39,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10436,'37732','Gimo','GIMO',NULL,'','Sweden','',0,0,209,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10437,'6092','Gimont','GIMONT',NULL,'','France','',0,0,76,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10438,'38832','Gimouille','GIMOUILLE',NULL,'','France','',0,0,76,'2016-10-17 10:57:56','1900-01-01 00:00:00',1,0,1),(10439,'35534','Ginestra Fiorentina','GINESTRA FIORENTINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10440,'39312','Ginnosar','GINNOSAR',NULL,'','Israel','',0,0,106,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10441,'40657','Ginosa','GINOSA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10442,'11039','Ginosar','GINOSAR',NULL,'','Israel','',0,0,106,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10443,'41454','Ginowan','GINOWAN',NULL,'','Japan','',0,0,110,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10444,'38642','Gioia Dei Marsi','GIOIA DEI MARSI',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10445,'35535','Gioiello','GIOIELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:57','1900-01-01 00:00:00',1,0,1),(10446,'11970','Gioiosa Marea','GIOIOSA MAREA',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10447,'11971','Giovinazzo','GIOVINAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10448,'41822','Gippsland And Lakes Region','GIPPSLAND AND LAKES REGION',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10449,'42135','Gipsy Point','GIPSY POINT',NULL,'','Australia','',0,0,13,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10450,'10415','Gir National Park','GIR NATIONAL PARK',NULL,'','India','',0,0,101,'2016-10-17 10:57:58','1900-01-01 00:00:00',1,0,1),(10451,'37841','Girasole','GIRASOLE',NULL,'','Italy','',0,0,107,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10452,'17632','Girdwood','GIRDWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10453,'17295','Giresun','GIRESUN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10454,'13605','Giritale','GIRITALE',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10455,'1285','Girona','GIRONA',NULL,'','SPAIN','Girona',0,0,199,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10456,'8123','Girvan','GIRVAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10457,'15071','Gisborne','GISBORNE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10458,'8124','Gisburn','GISBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:57:59','1900-01-01 00:00:00',1,0,1),(10459,'16481','Gisenyi','GISENYI',NULL,'','Rwanda','',0,0,508,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10460,'40309','Giske','GISKE',NULL,'','Norway','',0,0,164,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10461,'16718','Gislaved','GISLAVED',NULL,'','Sweden','',0,0,209,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10462,'8125','Gissing','GISSING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10463,'23211','Giswil','GISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10464,'11972','Giugliano In Campania','GIUGLIANO IN CAMPANIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10465,'42957','Giulianova','GIULIANOVA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10466,'39231','Giurdignano','GIURDIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:00','1900-01-01 00:00:00',1,0,1),(10467,'11973','Giussano','GIUSSANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10468,'11232','Giustino','GIUSTINO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10469,'11040','Giv\'atayim','GIV\'ATAYIM',NULL,'','Israel','',0,0,106,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10470,'5812','Giverny','GIVERNY',NULL,'','France','',0,0,76,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10471,'6633','Givors','GIVORS',NULL,'','France','',0,0,76,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10472,'32563','Giyani','GIYANI',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10473,'2425','Giza','GIZA',NULL,'','Egypt','Giza',0,0,65,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10474,'16492','Gizan','GIZAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 10:58:01','1900-01-01 00:00:00',1,0,1),(10475,'16546','Gizo','GIZO',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10476,'15682','Gizycko','GIZYCKO',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10477,'38042','Gizzeria','GIZZERIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10478,'2147','Gjerrild','GJERRILD',NULL,'','Denmark','',0,0,59,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10479,'42224','Gjirokaster','GJIROKASTER',NULL,'','Albania','',0,0,2,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10480,'25796','Gjoa Haven','GJOA HAVEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10481,'14945','Gjovik','GJOVIK',NULL,'','Norway','',0,0,164,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10482,'31508','Glacier','GLACIER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:02','1900-01-01 00:00:00',1,0,1),(10483,'27365','Gladbeck','GLADBECK',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:03','1900-01-01 00:00:00',1,0,1),(10484,'34174','Gladesville','GLADESVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:03','1900-01-01 00:00:00',1,0,1),(10485,'30649','Gladewater','GLADEWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:04','1900-01-01 00:00:00',1,0,1),(10486,'2210','Gladsakse','GLADSAKSE',NULL,'','Denmark','',0,0,59,'2016-10-17 10:58:04','1900-01-01 00:00:00',1,0,1),(10487,'29665','Gladstone','GLADSTONE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:04','1900-01-01 00:00:00',1,0,1),(10488,'26697','Gladstone','GLADSTONE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10489,'8126','Glangrwyney','GLANGRWYNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10490,'10808','Glanmire','GLANMIRE',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10491,'10809','Glanworth','GLANWORTH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10492,'23026','Glarus','GLARUS',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10493,'27167','Glasenbach','GLASENBACH',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10494,'994','Glasgow','GLASGOW',NULL,'','UNITED KINGDOM','Glasgow',0,0,469,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10495,'10917','Glaslough','GLASLOUGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10496,'10840','Glasnevin','GLASNEVIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10497,'39576','Glass House Mountains','GLASS HOUSE MOUNTAINS',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:05','1900-01-01 00:00:00',1,0,1),(10498,'28284','Glassboro','GLASSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10499,'8128','Glastonbury','GLASTONBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10500,'19085','Glastonbury','GLASTONBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10501,'23212','Glattbrugg','GLATTBRUGG',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10502,'34175','Glebe','GLEBE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10503,'628','Glees','GLEES',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10504,'24415','Gleisdorf','GLEISDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10505,'629','Gleiszellen-gleishorbach','GLEISZELLEN-GLEISHORBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:06','1900-01-01 00:00:00',1,0,1),(10506,'15192','Glen Eden','GLEN EDEN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:09','1900-01-01 00:00:00',1,0,1),(10507,'10879','Glenbeigh','GLENBEIGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:10','1900-01-01 00:00:00',1,0,1),(10508,'8129','Glenborrodale','GLENBORRODALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:10','1900-01-01 00:00:00',1,0,1),(10509,'8130','Glencarse','GLENCARSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:11','1900-01-01 00:00:00',1,0,1),(10510,'41167','Glencoe','GLENCOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:11','1900-01-01 00:00:00',1,0,1),(10511,'27393','Glencoe','GLENCOE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:11','1900-01-01 00:00:00',1,0,1),(10512,'7084','Glendale','GLENDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:12','1900-01-01 00:00:00',1,0,1),(10513,'10737','Glendalough','GLENDALOUGH',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10514,'26222','Glendambo','GLENDAMBO',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10515,'27977','Glendive','GLENDIVE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10516,'28285','Glendola','GLENDOLA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10517,'18507','Glendora','GLENDORA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:13','1900-01-01 00:00:00',1,0,1),(10518,'7085','Gleneagles','GLENEAGLES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10519,'29666','Gleneden Beach','GLENEDEN BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10520,'8131','Glenfarg','GLENFARG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10521,'34177','Glenfield','GLENFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10522,'15193','Glenfield','GLENFIELD',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10523,'38102','Glenfinnan','GLENFINNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10524,'35394','Glengarriff','GLENGARRIFF',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:14','1900-01-01 00:00:00',1,0,1),(10525,'26223','Glengyle','GLENGYLE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10526,'28810','Glenham','GLENHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10527,'26510','Glenisla','GLENISLA',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10528,'28811','Glenmont','GLENMONT',NULL,'','United States','',0,0,231,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10529,'17633','Glennallen','GLENNALLEN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10530,'20353','Glenns Ferry','GLENNS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:15','1900-01-01 00:00:00',1,0,1),(10531,'19814','Glennville','GLENNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10532,'15194','Glenorchy','GLENORCHY',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10533,'26842','Glenorchy','GLENORCHY',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10534,'32908','Glenpool','GLENPOOL',NULL,'','United States','',0,0,231,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10535,'8132','Glenridding','GLENRIDDING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:16','1900-01-01 00:00:00',1,0,1),(10536,'8133','Glenrothes','GLENROTHES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10537,'26451','Glenroy','GLENROY',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10538,'28812','Glens Falls','GLENS FALLS',NULL,'','United States','',0,0,231,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10539,'36309','Glenshee','GLENSHEE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10540,'15195','Glentanner','GLENTANNER',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:17','1900-01-01 00:00:00',1,0,1),(10541,'20567','Glenview','GLENVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:58:18','1900-01-01 00:00:00',1,0,1),(10542,'28813','Glenville','GLENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:18','1900-01-01 00:00:00',1,0,1),(10543,'27394','Glenwood','GLENWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:58:18','1900-01-01 00:00:00',1,0,1),(10544,'38328','Glesien','GLESIEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:19','1900-01-01 00:00:00',1,0,1),(10545,'10897','Glin','GLIN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10546,'27215','Glinde','GLINDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10547,'39328','Glindenberg','GLINDENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10548,'23213','Glion','GLION',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10549,'5109','Glisy','GLISY',NULL,'','France','',0,0,76,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10550,'15584','Gliwice','GLIWICE',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10551,'18140','Globe','GLOBE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:20','1900-01-01 00:00:00',1,0,1),(10552,'3963','Gloet','GLOET',NULL,'','Finland','',0,0,75,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10553,'27102','Gloggnitz','GLOGGNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10554,'15649','Glogow','GLOGOW',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10555,'24248','Gloria','GLORIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10556,'28530','Glorieta','GLORIETA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10557,'8134','Glossop','GLOSSOP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:21','1900-01-01 00:00:00',1,0,1),(10558,'27856','Gloster','GLOSTER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10559,'2211','Glostrup','GLOSTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10560,'2061','Glottertal','GLOTTERTAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10561,'9302','Gloucester','GLOUCESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10562,'21381','Gloucester','GLOUCESTER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:22','1900-01-01 00:00:00',1,0,1),(10563,'7086','Gloucestershire','GLOUCESTERSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:23','1900-01-01 00:00:00',1,0,1),(10564,'29363','Glouster','GLOUSTER',NULL,'','United States','',0,0,231,'2016-10-17 10:58:23','1900-01-01 00:00:00',1,0,1),(10565,'27857','Gluckstadt','GLUCKSTADT',NULL,'','United States','',0,0,231,'2016-10-17 10:58:23','1900-01-01 00:00:00',1,0,1),(10566,'2093','Gluecksburg','GLUECKSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10567,'7087','Glyn Ceiriog','GLYN CEIRIOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10568,'39320','Gmund','GMUND',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10569,'22763','Gmund Am Tegernsee','GMUND AM TEGERNSEE',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10570,'27130','Gmunden','GMUNDEN',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10571,'24458','Gnadenwald','GNADENWALD',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10572,'39280','Gnarabup','GNARABUP',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10573,'16775','Gnesta','GNESTA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10574,'15669','Gniezno','GNIEZNO',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10575,'32280','Go Vap','GO VAP',NULL,'','Viet Nam','',0,0,236,'2016-10-17 10:58:24','1900-01-01 00:00:00',1,0,1),(10576,'10704','Goa','GOA',NULL,'','India','Trip to Goa | Goa Travel Packages | Goa Tourism | ',11,0,101,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10577,'8135','Goathland','GOATHLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10578,'3855','Goba','GOBA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10579,'26143','Gobernador Gregores','GOBERNADOR GREGORES',NULL,'','Argentina','',0,0,10,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10580,'8136','Gobowen','GOBOWEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10581,'17206','Gocek','GOCEK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10582,'27366','Goch','GOCH',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10583,'14411','Gochas','GOCHAS',NULL,'','Namibia','',0,0,151,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10584,'36056','Goch-niederrhein','GOCH-NIEDERRHEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10585,'1541','God','GOD',NULL,'','Hungary','',0,0,99,'2016-10-17 10:58:25','1900-01-01 00:00:00',1,0,1),(10586,'8137','Godalming','GODALMING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10587,'21057','Goddard','GODDARD',NULL,'','United States','',0,0,231,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10588,'3856','Gode','GODE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10589,'13612','Godellawela','GODELLAWELA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10590,'34504','Goderich','GODERICH',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10591,'20568','Godfrey','GODFREY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10592,'9856','Godhavn','GODHAVN',NULL,'','Greenland','',0,0,87,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10593,'39874','Godollo','GODOLLO',NULL,'','Hungary','',0,0,99,'2016-10-17 10:58:26','1900-01-01 00:00:00',1,0,1),(10594,'25597','Gods Narrows','GODS NARROWS',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10595,'10073','Goed','GOED',NULL,'','Hungary','',0,0,99,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10596,'44134','Goehrde','GOEHRDE',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10597,'154','Goehren-lebbin','GOEHREN-LEBBIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10598,'155','Goerlitz','GOERLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10599,'14695','Goes','GOES',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10600,'38010','Goessweinstein','GOESSWEINSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10601,'40505','Goestling An Der Ybbs','GOESTLING AN DER YBBS',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10602,'27216','Goettingen','GOETTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:27','1900-01-01 00:00:00',1,0,1),(10603,'41862','Goffs','GOFFS',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10604,'24907','Goffs Caye','GOFFS CAYE',NULL,'','Belize','',0,0,22,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10605,'1708','Gohren','GOHREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10606,'42178','Gohren-lebbin','GOHREN-LEBBIN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10607,'25063','Goiania','GOIANIA',NULL,'','Brazil','',0,0,30,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10608,'24459','Going','GOING',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10609,'42603','Gokarna','GOKARNA',NULL,'','India','',0,0,101,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10610,'14865','Gol','GOL',NULL,'','Norway','',0,0,164,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10611,'10416','Golabari','GOLABARI',NULL,'','India','',0,0,101,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10612,'35413','Golan','GOLAN',NULL,'','Israel','',0,0,106,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10613,'39967','Golbasi','GOLBASI',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:28','1900-01-01 00:00:00',1,0,1),(10614,'20569','Golconda','GOLCONDA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:29','1900-01-01 00:00:00',1,0,1),(10615,'25446','Gold Bridge','GOLD BRIDGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:29','1900-01-01 00:00:00',1,0,1),(10616,'26698','Gold Coast','GOLD COAST',NULL,'','Australia','Gold Coast',0,0,13,'2016-10-17 10:58:29','1900-01-01 00:00:00',1,0,1),(10617,'25448','Golden','GOLDEN',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10618,'33447','Golden','GOLDEN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10619,'14182','Golden Bay','GOLDEN BAY',NULL,'','Malta','',0,0,135,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10620,'43717','Golden Beach','GOLDEN BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10621,'10977','Golden Circle','GOLDEN CIRCLE',NULL,'','Iceland','',0,0,100,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10622,'24771','Golden Sands','GOLDEN SANDS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:58:30','1900-01-01 00:00:00',1,0,1),(10623,'16984','Golden Triangle','GOLDEN TRIANGLE',NULL,'','Thailand','',0,0,215,'2016-10-17 10:58:31','1900-01-01 00:00:00',1,0,1),(10624,'31509','Goldendale','GOLDENDALE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:31','1900-01-01 00:00:00',1,0,1),(10625,'26224','Goldfields','GOLDFIELDS',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:31','1900-01-01 00:00:00',1,0,1),(10626,'33866','Goldsboro','GOLDSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:58:31','1900-01-01 00:00:00',1,0,1),(10627,'38892','Goldsby','GOLDSBY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10628,'23214','Goldswil','GOLDSWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10629,'10810','Goleen','GOLEEN',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10630,'16045','Golega','GOLEGA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10631,'18508','Goleta','GOLETA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10632,'43486','Golf Del Sur','GOLF DEL SUR',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:32','1900-01-01 00:00:00',1,0,1),(10633,'4265','Golf Juan','GOLF JUAN',NULL,'','France','',0,0,76,'2016-10-17 10:58:33','1900-01-01 00:00:00',1,0,1),(10634,'1388','Golfe De Saint Tropez','GOLFE DE SAINT TROPEZ',NULL,'','FRANCE','',0,0,76,'2016-10-17 10:58:33','1900-01-01 00:00:00',1,0,1),(10635,'24237','Golfito','GOLFITO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:58:33','1900-01-01 00:00:00',1,0,1),(10636,'41863','Golfo De Papagayo','GOLFO DE PAPAGAYO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:58:33','1900-01-01 00:00:00',1,0,1),(10637,'30651','Goliad','GOLIAD',NULL,'','United States','',0,0,231,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10638,'27103','Golling','GOLLING',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10639,'23765','Golmud','GOLMUD',NULL,'','China','',0,0,46,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10640,'17634','Golovin','GOLOVIN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10641,'17207','Golturkbuku','GOLTURKBUKU',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10642,'32636','Goma','GOMA',NULL,'','Fiji','',0,0,74,'2016-10-17 10:58:34','1900-01-01 00:00:00',1,0,1),(10643,'40257','Gomadingen','GOMADINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10644,'22545','Gomaringen','GOMARINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10645,'24894','Gomel','GOMEL',NULL,'','Belarus','',0,0,20,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10646,'36125','Gomera','GOMERA',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10647,'8138','Gomersal','GOMERSAL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10648,'13984','Gomez Palacio','GOMEZ PALACIO',NULL,'','Mexico','',0,0,141,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10649,'2102','Gommier','GOMMIER',NULL,'','Dominica','',0,0,500,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10650,'3857','Gondar','GONDAR',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10651,'16025','Gondomar','GONDOMAR',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10652,'630','Gondorf','GONDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:35','1900-01-01 00:00:00',1,0,1),(10653,'4267','Gond-pontouvre','GOND-PONTOUVRE',NULL,'','France','',0,0,76,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10654,'41075','Gonen','GONEN',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10655,'40256','Gonen','GONEN',NULL,'','Israel','',0,0,106,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10656,'41464','Gonfreville Lorcher','GONFREVILLE LORCHER',NULL,'','France','',0,0,76,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10657,'5091','Gonfreville-l\'orcher','GONFREVILLE-L\'ORCHER',NULL,'','France','',0,0,76,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10658,'35803','Gongju','GONGJU',NULL,'','South Korea','',0,0,197,'2016-10-17 10:58:36','1900-01-01 00:00:00',1,0,1),(10659,'17384','Gongliao','GONGLIAO',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10660,'37503','Goniadz','GONIADZ',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10661,'39957','Gonneville-sur-honfleur','GONNEVILLE-SUR-HONFLEUR',NULL,'','France','',0,0,76,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10662,'25599','Gonor','GONOR',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10663,'23215','Gonten','GONTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10664,'30652','Gonzales','GONZALES',NULL,'','United States','',0,0,231,'2016-10-17 10:58:37','1900-01-01 00:00:00',1,0,1),(10665,'39966','Goode','GOODE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:38','1900-01-01 00:00:00',1,0,1),(10666,'20354','Gooding','GOODING',NULL,'','United States','',0,0,231,'2016-10-17 10:58:38','1900-01-01 00:00:00',1,0,1),(10667,'21058','Goodland','GOODLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:58:38','1900-01-01 00:00:00',1,0,1),(10668,'33152','Goodlettsville','GOODLETTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:38','1900-01-01 00:00:00',1,0,1),(10669,'17635','Goodnews Bay','GOODNEWS BAY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10670,'8139','Goodrich','GOODRICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10671,'32452','Goodwood','GOODWOOD',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10672,'33643','Goody','GOODY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10673,'18143','Goodyear','GOODYEAR',NULL,'','United States','',0,0,231,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10674,'14465','Gooi En Vechtstreek','GOOI EN VECHTSTREEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:39','1900-01-01 00:00:00',1,0,1),(10675,'37525','Goole','GOOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10676,'26452','Goolwa','GOOLWA',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10677,'26699','Goondiwindi','GOONDIWINDI',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10678,'30332','Goose Creek','GOOSE CREEK',NULL,'','United States','',0,0,231,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10679,'39546','Gooseberry Hill','GOOSEBERRY HILL',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10680,'8140','Goosnargh','GOOSNARGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10681,'10520','Gopalpur','GOPALPUR',NULL,'','India','Gopalpur',8,0,101,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10682,'37639','Gopegui','GOPEGUI',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10683,'22546','Goppingen','GOPPINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:40','1900-01-01 00:00:00',1,0,1),(10684,'13134','Gora','GORA',NULL,'','Japan','',0,0,110,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10685,'10521','Gorakhpur','GORAKHPUR',NULL,'','India','Gorakhpur ',6,0,101,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10686,'5118','Gordes','GORDES',NULL,'','France','',0,0,76,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10687,'44297','Gordexola','GORDEXOLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10688,'28121','Gordon','GORDON',NULL,'','United States','',0,0,231,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10689,'32453','Gordon\'s Bay','GORDON\'S BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:41','1900-01-01 00:00:00',1,0,1),(10690,'33153','Gordonsville','GORDONSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10691,'29953','Gordonville','GORDONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10692,'15104','Gore','GORE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10693,'3858','Gore','GORE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10694,'34505','Gore Bay','GORE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10695,'43297','Gorebridge','GOREBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:42','1900-01-01 00:00:00',1,0,1),(10696,'10522','Goregaon','GOREGAON',NULL,'','India','',0,0,101,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10697,'17208','Goreme','GOREME',NULL,'','Turkey','Goreme',0,0,222,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10698,'10947','Gorey','GOREY',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10699,'7088','Gorey','GOREY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10700,'39601','Gorgeshausen','GORGESHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10701,'32703','Gorham','GORHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10702,'42261','Gori','GORI',NULL,'','Georgia','',0,0,82,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10703,'14712','Gorinchem','GORINCHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10704,'41377','Gorinchen','GORINCHEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:43','1900-01-01 00:00:00',1,0,1),(10705,'8141','Goring','GORING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10706,'11974','Gorizia','GORIZIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10707,'34179','Gorkan - Toukley','GORKAN - TOUKLEY',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10708,'2090','Gorlitz','GORLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10709,'18509','Gorman','GORMAN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10710,'10910','Gormanston','GORMANSTON',NULL,'','Ireland','',0,0,105,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10711,'24772','Gorna Orechovitsa','GORNA ORECHOVITSA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 10:58:44','1900-01-01 00:00:00',1,0,1),(10712,'41378','Gornazo','GORNAZO',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10713,'15573','Goroka','GOROKA',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10714,'34180','Gorokan','GOROKAN',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10715,'24751','Gorom-gorom','GOROM-GOROM',NULL,'','Burkina Faso','',0,0,35,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10716,'10369','Gorontalo','GORONTALO',NULL,'','Indonesia','',0,0,102,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10717,'41461','Gorraiz','GORRAIZ',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10718,'6093','Gorses','GORSES',NULL,'','France','',0,0,76,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10719,'15627','Gorzow Wielkopolski','GORZOW WIELKOPOLSKI',NULL,'','Poland','',0,0,174,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10720,'40960','Gosau','GOSAU',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10721,'34181','Gosford','GOSFORD',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:45','1900-01-01 00:00:00',1,0,1),(10722,'21382','Goshen','GOSHEN',NULL,'','United States','',0,0,231,'2016-10-17 10:58:46','1900-01-01 00:00:00',1,0,1),(10723,'36355','Gosier','GOSIER',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:58:46','1900-01-01 00:00:00',1,0,1),(10724,'27217','Goslar','GOSLAR',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:46','1900-01-01 00:00:00',1,0,1),(10725,'6169','Gosnay','GOSNAY',NULL,'','France','',0,0,76,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10726,'26593','Gosnells','GOSNELLS',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10727,'8142','Gosport','GOSPORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10728,'23216','Gossau','GOSSAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10729,'24740','Gosselies','GOSSELIES',NULL,'','Belgium','',0,0,21,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10730,'13238','Gotemba','GOTEMBA',NULL,'','Japan','',0,0,110,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10731,'156','Gotha','GOTHA',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10732,'19374','Gotha','GOTHA',NULL,'','United States','',0,0,231,'2016-10-17 10:58:47','1900-01-01 00:00:00',1,0,1),(10733,'28122','Gothenburg','GOTHENBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10734,'16669','Gothenburg','GOTHENBURG',NULL,'','Sweden','',0,0,209,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10735,'7089','Gotherington','GOTHERINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10736,'2635','Gothic Quarter','GOTHIC QUARTER',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10737,'16671','Gotland','GOTLAND',NULL,'','Sweden','',0,0,209,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10738,'41641','Gottingen','GOTTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10739,'41879','Gottlieben','GOTTLIEBEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:48','1900-01-01 00:00:00',1,0,1),(10740,'43586','Gotzens','GOTZENS',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10741,'43587','Gotzis','GOTZIS',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10742,'14713','Gouda','GOUDA',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10743,'5542','Gouesnou','GOUESNOU',NULL,'','France','',0,0,76,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10744,'34182','Goulburn','GOULBURN',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10745,'29954','Gouldsboro','GOULDSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10746,'13680','Goulimime','GOULIMIME',NULL,'','Morocco','',0,0,148,'2016-10-17 10:58:49','1900-01-01 00:00:00',1,0,1),(10747,'6435','Goult','GOULT',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10748,'40435','Goumois','GOUMOIS',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10749,'6094','Gourdon','GOURDON',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10750,'5189','Gourette','GOURETTE',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10751,'5813','Gournay-en-bray','GOURNAY-EN-BRAY',NULL,'','France','',0,0,76,'2016-10-17 10:58:50','1900-01-01 00:00:00',1,0,1),(10752,'8143','Gourock','GOUROCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10753,'4724','Goussainville','GOUSSAINVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10754,'14511','Goutum','GOUTUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10755,'41658','Gouveia','GOUVEIA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10756,'15967','Gouveias','GOUVEIAS',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10757,'6302','Gouvieux','GOUVIEUX',NULL,'','France','',0,0,76,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10758,'9846','Gouyave','GOUYAVE',NULL,'','Grenada','',0,0,88,'2016-10-17 10:58:51','1900-01-01 00:00:00',1,0,1),(10759,'6170','Gouy-sous-bellonne','GOUY-SOUS-BELLONNE',NULL,'','France','',0,0,76,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10760,'26225','Gove','GOVE',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10761,'24979','Governador Celso Ramos','GOVERNADOR CELSO RAMOS',NULL,'','Brazil','',0,0,30,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10762,'29669','Government Camp','GOVERNMENT CAMP',NULL,'','United States','',0,0,231,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10763,'24830','Governors Harbour','GOVERNORS HARBOUR',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10764,'42635','Goya','GOYA',NULL,'','Argentina','',0,0,10,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10765,'17186','Goynuk','GOYNUK',NULL,'','Turkey','',0,0,222,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10766,'39901','Gozd Martuljek','GOZD MARTULJEK',NULL,'','Slovenia','',0,0,192,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10767,'14183','Gozo','GOZO',NULL,'','Malta','',0,0,135,'2016-10-17 10:58:52','1900-01-01 00:00:00',1,0,1),(10768,'41465','Gozon','GOZON',NULL,'','Spain','',0,0,199,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10769,'11975','Gozzano','GOZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10770,'38184','Graaff-reinet','GRAAFF-REINET',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10771,'41640','Graal-muritz','GRAAL-MURITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10772,'32454','Grabouw','GRABOUW',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10773,'37494','Grabowhofe','GRABOWHOFE',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10774,'15975','Graca','GRACA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10775,'16934','Grace Bay','GRACE BAY',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10776,'25998','Gracefield','GRACEFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10777,'24580','Grace-hollogne','GRACE-HOLLOGNE',NULL,'','Belgium','',0,0,21,'2016-10-17 10:58:53','1900-01-01 00:00:00',1,0,1),(10778,'29955','Graceville','GRACEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10779,'23217','Grachen','GRACHEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10780,'43695','Gracias','GRACIAS',NULL,'','Honduras','',0,0,97,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10781,'15808','Graciosa Island','GRACIOSA ISLAND',NULL,'','Portugal','',0,0,175,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10782,'10012','Gradac','GRADAC',NULL,'','Croatia','',0,0,55,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10783,'11976','Gradara','GRADARA',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10784,'4927','Gradignan','GRADIGNAN',NULL,'','France','',0,0,76,'2016-10-17 10:58:54','1900-01-01 00:00:00',1,0,1),(10785,'39739','Gradisca Disonzo','GRADISCA DISONZO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10786,'12744','Grado','GRADO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10788,'22764','Grafenau','GRAFENAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10789,'22547','Grafenhausen','GRAFENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10790,'40170','Grafenthal','GRAFENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10791,'42454','Grafing Bei Munchen','GRAFING BEI MUNCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:55','1900-01-01 00:00:00',1,0,1),(10792,'30653','Graford','GRAFORD',NULL,'','United States','',0,0,231,'2016-10-17 10:58:56','1900-01-01 00:00:00',1,0,1),(10793,'20570','Grafton','GRAFTON',NULL,'','United States','',0,0,231,'2016-10-17 10:58:56','1900-01-01 00:00:00',1,0,1),(10794,'34183','Grafton','GRAFTON',NULL,'','Australia','',0,0,13,'2016-10-17 10:58:56','1900-01-01 00:00:00',1,0,1),(10795,'11977','Gragnano','GRAGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:57','1900-01-01 00:00:00',1,0,1),(10796,'33868','Graham','GRAHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:58:57','1900-01-01 00:00:00',1,0,1),(10797,'32455','Grahamstown','GRAHAMSTOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 10:58:57','1900-01-01 00:00:00',1,0,1),(10798,'27650','Grain Valley','GRAIN VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10799,'157','Grainau','GRAINAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10800,'38510','Grainet','GRAINET',NULL,'','Germany','',0,0,83,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10801,'2292','Gram','GRAM',NULL,'','Denmark','',0,0,59,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10802,'25159','Gramado','GRAMADO',NULL,'','Brazil','',0,0,30,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10803,'6095','Gramat','GRAMAT',NULL,'','France','',0,0,76,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10804,'21201','Grambling','GRAMBLING',NULL,'','United States','',0,0,231,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10805,'38800','Grammatiko','GRAMMATIKO',NULL,'','Greece','',0,0,86,'2016-10-17 10:58:58','1900-01-01 00:00:00',1,0,1),(10806,'11978','Grammichele','GRAMMICHELE',NULL,'','Italy','',0,0,107,'2016-10-17 10:58:59','1900-01-01 00:00:00',1,0,1),(10807,'38976','Grampound Road','GRAMPOUND ROAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:58:59','1900-01-01 00:00:00',1,0,1),(10808,'24460','Gran','GRAN',NULL,'','Austria','',0,0,14,'2016-10-17 10:58:59','1900-01-01 00:00:00',1,0,1),(10809,'35540','Gran Sasso','GRAN SASSO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:00','1900-01-01 00:00:00',1,0,1),(10810,'2637','Granada','GRANADA',NULL,'','Spain','Granada',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10811,'14443','Granada','GRANADA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10812,'18511','Granada Hills','GRANADA HILLS',NULL,'','United States','',0,0,231,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10813,'34991','Granada-armilla','GRANADA-ARMILLA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10814,'36118','Granada-fuensanta','GRANADA-FUENSANTA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10815,'36154','Granada-loja','GRANADA-LOJA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10816,'3362','Granadilla De Abona','GRANADILLA DE ABONA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:01','1900-01-01 00:00:00',1,0,1),(10817,'11234','Granarolo Dell\'emilia','GRANAROLO DELL\'EMILIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:02','1900-01-01 00:00:00',1,0,1),(10818,'30655','Granbury','GRANBURY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:02','1900-01-01 00:00:00',1,0,1),(10819,'33448','Granby','GRANBY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:02','1900-01-01 00:00:00',1,0,1),(10820,'25999','Granby','GRANBY',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:03','1900-01-01 00:00:00',1,0,1),(10821,'14252','Grand Bay','GRAND BAY',NULL,'','Mauritius','',0,0,139,'2016-10-17 10:59:03','1900-01-01 00:00:00',1,0,1),(10822,'34506','Grand Bend','GRAND BEND',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:03','1900-01-01 00:00:00',1,0,1),(10823,'24257','Grand Cayman','GRAND CAYMAN',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 10:59:04','1900-01-01 00:00:00',1,0,1),(10824,'14184','Grand Harbour','GRAND HARBOUR',NULL,'','Malta','',0,0,135,'2016-10-17 10:59:05','1900-01-01 00:00:00',1,0,1),(10825,'9847','Grand Roy','GRAND ROY',NULL,'','Grenada','',0,0,88,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10826,'16947','Grand Turk','GRAND TURK',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10827,'11979','Grandate','GRANDATE',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10828,'9381','Grand-bourg','GRAND-BOURG',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10829,'4268','Grandcamp-maisy','GRANDCAMP-MAISY',NULL,'','France','',0,0,76,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10830,'9382','Grand-case','GRAND-CASE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10831,'26700','Grandchester','GRANDCHESTER',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10832,'25315','Grande Cache','GRANDE CACHE',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10833,'42950','Grande Island','GRANDE ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 10:59:08','1900-01-01 00:00:00',1,0,1),(10834,'9835','Grande-anse Beach','GRANDE-ANSE BEACH',NULL,'','Grenada','',0,0,88,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10835,'41129','Grandes Piles','GRANDES PILES',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10836,'4269','Grande-synthe','GRANDE-SYNTHE',NULL,'','France','',0,0,76,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10837,'9361','Grande-terre','GRANDE-TERRE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10838,'5543','Grand-fougeray','GRAND-FOUGERAY',NULL,'','France','',0,0,76,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10839,'5814','Grand-laviers','GRAND-LAVIERS',NULL,'','France','',0,0,76,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10840,'40475','Grandola','GRANDOLA',NULL,'','Portugal','',0,0,175,'2016-10-17 10:59:09','1900-01-01 00:00:00',1,0,1),(10841,'30658','Grandview','GRANDVIEW',NULL,'','United States','',0,0,231,'2016-10-17 10:59:10','1900-01-01 00:00:00',1,0,1),(10842,'22086','Grandville','GRANDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:10','1900-01-01 00:00:00',1,0,1),(10843,'39294','Grangaerde','GRANGAERDE',NULL,'','Sweden','',0,0,209,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10844,'36312','Grange Over Sands','GRANGE OVER SANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10845,'9301','Grangemouth','GRANGEMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10846,'7090','Grange-over-sands','GRANGE-OVER-SANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10847,'20888','Granger','GRANGER',NULL,'','United States','',0,0,231,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10848,'23028','Granges-paccot','GRANGES-PACCOT',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10849,'20355','Grangeville','GRANGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:11','1900-01-01 00:00:00',1,0,1),(10850,'20571','Granite City','GRANITE CITY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:12','1900-01-01 00:00:00',1,0,1),(10851,'37714','Graniti','GRANITI',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:12','1900-01-01 00:00:00',1,0,1),(10852,'16719','Granna','GRANNA',NULL,'','Sweden','',0,0,209,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10853,'3549','Granollers','GRANOLLERS',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10854,'8144','Grantham','GRANTHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10855,'8145','Granton','GRANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10856,'36313','Grantown On Spey','GRANTOWN ON SPEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10857,'7091','Grantown-on-spey','GRANTOWN-ON-SPEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:13','1900-01-01 00:00:00',1,0,1),(10858,'28531','Grants','GRANTS',NULL,'','United States','',0,0,231,'2016-10-17 10:59:14','1900-01-01 00:00:00',1,0,1),(10859,'21704','Grantsville','GRANTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:14','1900-01-01 00:00:00',1,0,1),(10860,'29956','Grantville','GRANTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:14','1900-01-01 00:00:00',1,0,1),(10861,'5397','Granville','GRANVILLE',NULL,'','France','',0,0,76,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10862,'29365','Granville','GRANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10863,'25710','Granville Ferry','GRANVILLE FERRY',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10864,'39668','Granzay-gript','GRANZAY-GRIPT',NULL,'','France','',0,0,76,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10865,'41541','Grao De Castellon','GRAO DE CASTELLON',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:15','1900-01-01 00:00:00',1,0,1),(10866,'30659','Grapevine','GRAPEVINE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10867,'158','Grasellenbach','GRASELLENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10868,'1001','Grasmere','GRASMERE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10869,'8146','Grasmere','GRASMERE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10870,'21705','Grasonville','GRASONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10871,'18512','Grass Valley','GRASS VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:16','1900-01-01 00:00:00',1,0,1),(10872,'22765','Grassau','GRASSAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:17','1900-01-01 00:00:00',1,0,1),(10873,'11980','Grassina','GRASSINA',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:17','1900-01-01 00:00:00',1,0,1),(10874,'40431','Grassobbio','GRASSOBBIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:17','1900-01-01 00:00:00',1,0,1),(10875,'2293','Grasten','GRASTEN',NULL,'','Denmark','',0,0,59,'2016-10-17 10:59:17','1900-01-01 00:00:00',1,0,1),(10876,'38803','Gratentour','GRATENTOUR',NULL,'','France','',0,0,76,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10877,'42025','Grau Roig','GRAU ROIG',NULL,'','Andorra','',0,0,5,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10878,'23029','Graubunden','GRAUBUNDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10879,'969','Gravatai','GRAVATAI',NULL,'','Brazil','',0,0,30,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10880,'14917','Gravdal','GRAVDAL',NULL,'','Norway','',0,0,164,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10881,'11981','Gravedona','GRAVEDONA',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10882,'22944','Gravelbourg','GRAVELBOURG',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10883,'6171','Gravelines','GRAVELINES',NULL,'','France','',0,0,76,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10884,'34507','Gravenhurst','GRAVENHURST',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:18','1900-01-01 00:00:00',1,0,1),(10885,'426','Gravenwiesbach','GRAVENWIESBACH',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10886,'8147','Gravesend','GRAVESEND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10887,'6437','Graveson','GRAVESON',NULL,'','France','',0,0,76,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10888,'11982','Gravina In Puglia','GRAVINA IN PUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10889,'21202','Gray','GRAY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:19','1900-01-01 00:00:00',1,0,1),(10890,'31511','Grayland','GRAYLAND',NULL,'','United States','',0,0,231,'2016-10-17 10:59:20','1900-01-01 00:00:00',1,0,1),(10891,'22087','Grayling','GRAYLING',NULL,'','United States','',0,0,231,'2016-10-17 10:59:20','1900-01-01 00:00:00',1,0,1),(10892,'9298','Grays','GRAYS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:21','1900-01-01 00:00:00',1,0,1),(10893,'1287','Grays','GRAYS',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 10:59:21','1900-01-01 00:00:00',1,0,1),(10894,'31512','Grays Harbor','GRAYS HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 10:59:21','1900-01-01 00:00:00',1,0,1),(10895,'7092','Grayshott','GRAYSHOTT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10896,'20572','Grayslake','GRAYSLAKE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10897,'33645','Grayson','GRAYSON',NULL,'','United States','',0,0,231,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10898,'19377','Grayton Beach','GRAYTON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10899,'20573','Grayville','GRAYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:22','1900-01-01 00:00:00',1,0,1),(10900,'3236','Grazalema','GRAZALEMA',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10901,'16438','Grazhdanka','GRAZHDANKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10902,'8148','Great Barr','GREAT BARR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10903,'43038','Great Barrier Island','GREAT BARRIER ISLAND',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10904,'42168','Great Barrier Reef-whitsundays','GREAT BARRIER REEF-WHITSUNDAYS',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10905,'21383','Great Barrington','GREAT BARRINGTON',NULL,'','United States','',0,0,231,'2016-10-17 10:59:23','1900-01-01 00:00:00',1,0,1),(10906,'24883','Great Guana Cay','GREAT GUANA CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:59:24','1900-01-01 00:00:00',1,0,1),(10907,'43787','Great Harbour','GREAT HARBOUR',NULL,'','British Virgin Islands','',0,0,32,'2016-10-17 10:59:24','1900-01-01 00:00:00',1,0,1),(10908,'37113','Greater Addo Nationa','GREATER ADDO NATIONA',NULL,'','South Africa','',0,0,195,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10909,'13808','Greater Guadalajara','GREATER GUADALAJARA',NULL,'','Mexico','',0,0,141,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10910,'38512','Grebbestad','GREBBESTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10911,'24198','Grecia','GRECIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10912,'36127','Gredos','GREDOS',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10913,'28818','Greece','GREECE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10914,'33453','Greeley','GREELEY',NULL,'','United States','',0,0,231,'2016-10-17 10:59:27','1900-01-01 00:00:00',1,0,1),(10915,'25924','Green Community','GREEN COMMUNITY',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 10:59:28','1900-01-01 00:00:00',1,0,1),(10916,'17385','Green Island','GREEN ISLAND',NULL,'','Taiwan','',0,0,212,'2016-10-17 10:59:28','1900-01-01 00:00:00',1,0,1),(10917,'32456','Green Point','GREEN POINT',NULL,'','South Africa','',0,0,195,'2016-10-17 10:59:29','1900-01-01 00:00:00',1,0,1),(10918,'42422','Green Turtle','GREEN TURTLE',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:59:29','1900-01-01 00:00:00',1,0,1),(10919,'31513','Greenbank','GREENBANK',NULL,'','United States','',0,0,231,'2016-10-17 10:59:29','1900-01-01 00:00:00',1,0,1),(10920,'21706','Greenbelt','GREENBELT',NULL,'','United States','',0,0,231,'2016-10-17 10:59:30','1900-01-01 00:00:00',1,0,1),(10921,'29671','Greenburg','GREENBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:59:30','1900-01-01 00:00:00',1,0,1),(10922,'29957','Greencastle','GREENCASTLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:30','1900-01-01 00:00:00',1,0,1),(10923,'28819','Greene','GREENE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:31','1900-01-01 00:00:00',1,0,1),(10924,'33154','Greeneville','GREENEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:31','1900-01-01 00:00:00',1,0,1),(10925,'32704','Greenfield','GREENFIELD',NULL,'','United States','',0,0,231,'2016-10-17 10:59:31','1900-01-01 00:00:00',1,0,1),(10926,'26001','Greenfield Park','GREENFIELD PARK',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:32','1900-01-01 00:00:00',1,0,1),(10927,'9331','Greenford','GREENFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:32','1900-01-01 00:00:00',1,0,1),(10928,'39785','Greenhaugh','GREENHAUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:32','1900-01-01 00:00:00',1,0,1),(10929,'38379','Greenhead','GREENHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:32','1900-01-01 00:00:00',1,0,1),(10930,'7095','Greenholme','GREENHOLME',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10931,'15105','Greenlane','GREENLANE',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10932,'8154','Greenock','GREENOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10933,'27979','Greenough','GREENOUGH',NULL,'','United States','',0,0,231,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10934,'28820','Greenport','GREENPORT',NULL,'','United States','',0,0,231,'2016-10-17 10:59:33','1900-01-01 00:00:00',1,0,1),(10935,'19816','Greensboro','GREENSBORO',NULL,'','United States','',0,0,231,'2016-10-17 10:59:34','1900-01-01 00:00:00',1,0,1),(10936,'26227','Greensborough','GREENSBOROUGH',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:34','1900-01-01 00:00:00',1,0,1),(10937,'20891','Greensburg','GREENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 10:59:34','1900-01-01 00:00:00',1,0,1),(10938,'30660','Greenshores','GREENSHORES',NULL,'','United States','',0,0,231,'2016-10-17 10:59:35','1900-01-01 00:00:00',1,0,1),(10939,'26703','Greenslopes','GREENSLOPES',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:36','1900-01-01 00:00:00',1,0,1),(10940,'20575','Greenup','GREENUP',NULL,'','United States','',0,0,231,'2016-10-17 10:59:36','1900-01-01 00:00:00',1,0,1),(10941,'33647','Greenville','GREENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 10:59:36','1900-01-01 00:00:00',1,0,1),(10942,'31514','Greenwater','GREENWATER',NULL,'','United States','',0,0,231,'2016-10-17 10:59:40','1900-01-01 00:00:00',1,0,1),(10943,'28822','Greenwich','GREENWICH',NULL,'','United States','',0,0,231,'2016-10-17 10:59:41','1900-01-01 00:00:00',1,0,1),(10944,'8155','Greenwich','GREENWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:41','1900-01-01 00:00:00',1,0,1),(10945,'27859','Greenwood','GREENWOOD',NULL,'','United States','',0,0,231,'2016-10-17 10:59:41','1900-01-01 00:00:00',1,0,1),(10946,'13095','Greenwood','GREENWOOD',NULL,'','Jamaica','',0,0,109,'2016-10-17 10:59:42','1900-01-01 00:00:00',1,0,1),(10947,'30336','Greer','GREER',NULL,'','United States','',0,0,231,'2016-10-17 10:59:43','1900-01-01 00:00:00',1,0,1),(10948,'8156','Greetham','GREETHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10949,'27218','Greetsiel','GREETSIEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10950,'27367','Greffen','GREFFEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10951,'27368','Grefrath','GREFRATH',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10952,'24875','Gregory Town','GREGORY TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10953,'837','Greifswald','GREIFSWALD',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10954,'39095','Greiz','GREIZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10955,'2123','Grenaa','GRENAA',NULL,'','Denmark','',0,0,59,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10956,'27860','Grenada','GRENADA',NULL,'','United States','',0,0,231,'2016-10-17 10:59:44','1900-01-01 00:00:00',1,0,1),(10957,'9836','Grenada','GRENADA',NULL,'','Grenada','',0,0,88,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10958,'4270','Grenade-sur-ladour','GRENADE-SUR-LADOUR',NULL,'','France','',0,0,76,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10959,'23218','Grenchen','GRENCHEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10960,'6634','Grenoble','GRENOBLE',NULL,'','France','',0,0,76,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10961,'9842','Grenville','GRENVILLE',NULL,'','Grenada','',0,0,88,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10962,'42107','Grenville Sur La Rouge','GRENVILLE SUR LA ROUGE',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10963,'6438','Greoux-les-bains','GREOUX-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 10:59:45','1900-01-01 00:00:00',1,0,1),(10964,'29672','Gresham','GRESHAM',NULL,'','United States','',0,0,231,'2016-10-17 10:59:46','1900-01-01 00:00:00',1,0,1),(10965,'11983','Gressan','GRESSAN',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:46','1900-01-01 00:00:00',1,0,1),(10966,'6635','Gresse-en-vercors','GRESSE-EN-VERCORS',NULL,'','France','',0,0,76,'2016-10-17 10:59:46','1900-01-01 00:00:00',1,0,1),(10967,'11984','Gressoney-la-trinite','GRESSONEY-LA-TRINITE',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:46','1900-01-01 00:00:00',1,0,1),(10968,'39806','Gressoney-saint-jean','GRESSONEY-SAINT-JEAN',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10969,'40493','Gressvik','GRESSVIK',NULL,'','Norway','',0,0,164,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10970,'5851','Gressy','GRESSY',NULL,'','France','',0,0,76,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10971,'4271','Grésy-sur-aix','GRÉSY-SUR-AIX',NULL,'','France','',0,0,76,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10972,'28126','Gretna','GRETNA',NULL,'','United States','',0,0,231,'2016-10-17 10:59:47','1900-01-01 00:00:00',1,0,1),(10973,'8157','Gretna Green','GRETNA GREEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10974,'11985','Greve','GREVE',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10975,'40133','Grevena','GREVENA',NULL,'','Greece','',0,0,86,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10976,'27369','Grevenbroich','GREVENBROICH',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10977,'838','Grevesmuhlen','GREVESMUHLEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10978,'15107','Grey Lynn','GREY LYNN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10979,'32101','Greybull','GREYBULL',NULL,'','United States','',0,0,231,'2016-10-17 10:59:48','1900-01-01 00:00:00',1,0,1),(10980,'27980','Greycliff','GREYCLIFF',NULL,'','United States','',0,0,231,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10981,'15196','Greymouth','GREYMOUTH',NULL,'','New Zealand','Greymouth',0,0,157,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10982,'43022','Greytown','GREYTOWN',NULL,'','New Zealand','',0,0,157,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10983,'11986','Griante','GRIANTE',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10984,'27370','Griepshop','GRIEPSHOP',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10985,'26991','Gries','GRIES',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:49','1900-01-01 00:00:00',1,0,1),(10986,'427','Griesheim','GRIESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:50','1900-01-01 00:00:00',1,0,1),(10987,'19818','Griffin','GRIFFIN',NULL,'','United States','',0,0,231,'2016-10-17 10:59:50','1900-01-01 00:00:00',1,0,1),(10988,'20895','Griffith','GRIFFITH',NULL,'','United States','',0,0,231,'2016-10-17 10:59:50','1900-01-01 00:00:00',1,0,1),(10989,'26632','Griffith','GRIFFITH',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:50','1900-01-01 00:00:00',1,0,1),(10990,'11987','Grignano','GRIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10991,'6172','Grigny','GRIGNY',NULL,'','France','',0,0,76,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10992,'6439','Grimaud','GRIMAUD',NULL,'','France','',0,0,76,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10993,'24626','Grimbergen','GRIMBERGEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10994,'23219','Grimentz','GRIMENTZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10995,'20215','Grimes','GRIMES',NULL,'','United States','',0,0,231,'2016-10-17 10:59:51','1900-01-01 00:00:00',1,0,1),(10996,'839','Grimmen','GRIMMEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(10997,'34508','Grimsby','GRIMSBY',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(10998,'8158','Grimsby','GRIMSBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(10999,'10978','Grimsey','GRIMSEY',NULL,'','Iceland','',0,0,100,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(11000,'25317','Grimshaw','GRIMSHAW',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(11001,'14918','Grimstad','GRIMSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(11002,'8159','Grimston','GRIMSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:52','1900-01-01 00:00:00',1,0,1),(11003,'35440','Grindavik','GRINDAVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11004,'23220','Grindelwald','GRINDELWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11005,'26843','Grindelwald','GRINDELWALD',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11006,'2260','Grindsted','GRINDSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11007,'20216','Grinnell','GRINNELL',NULL,'','United States','',0,0,231,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11008,'39371','Grinon','GRINON',NULL,'','Spain','',0,0,199,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11009,'25797','Grise Fiord','GRISE FIORD',NULL,'','Canada','',0,0,39,'2016-10-17 10:59:53','1900-01-01 00:00:00',1,0,1),(11010,'41796','Grisolia Lido - Calabria Coast','GRISOLIA LIDO - CALABRIA COAST',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11011,'19088','Griswold','GRISWOLD',NULL,'','United States','',0,0,231,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11012,'39748','Gritsa','GRITSA',NULL,'','Greece','',0,0,86,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11013,'37209','Grittleton','GRITTLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11014,'24416','Grobming','GROBMING',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11015,'27168','Grodig','GRODIG',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11016,'24895','Grodna','GRODNA',NULL,'','Belarus','',0,0,20,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11017,'43761','Groebming','GROEBMING',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11018,'708','Groemitz','GROEMITZ',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:54','1900-01-01 00:00:00',1,0,1),(11019,'30663','Groesbeck','GROESBECK',NULL,'','United States','',0,0,231,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11020,'14537','Groesbeek','GROESBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11021,'39609','Groix','GROIX',NULL,'','France','',0,0,76,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11022,'27371','Gronau','GRONAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11023,'16824','Grondal','GRONDAL',NULL,'','Sweden','',0,0,209,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11024,'14934','Grong','GRONG',NULL,'','Norway','',0,0,164,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11025,'14559','Groningen','GRONINGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11026,'9857','Gronnedal','GRONNEDAL',NULL,'','Greenland','',0,0,87,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11027,'15585','Gronow','GRONOW',NULL,'','Poland','',0,0,174,'2016-10-17 10:59:55','1900-01-01 00:00:00',1,0,1),(11028,'43233','Groot-bijgaaden','GROOT-BIJGAADEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11029,'24627','Groot-bijgaarden','GROOT-BIJGAARDEN',NULL,'','Belgium','',0,0,21,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11030,'26228','Groote Eylandt','GROOTE EYLANDT',NULL,'','Australia','',0,0,13,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11031,'42255','Gropparello','GROPPARELLO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11032,'13051','Groppoli','GROPPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11033,'13581','Gros Islet','GROS ISLET',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11034,'40276','Grosio','GROSIO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11035,'40136','Grosotto','GROSOTTO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:56','1900-01-01 00:00:00',1,0,1),(11036,'6637','Grospierres','GROSPIERRES',NULL,'','France','',0,0,76,'2016-10-17 10:59:57','1900-01-01 00:00:00',1,0,1),(11037,'159','Gross Beuchow','GROSS BEUCHOW',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:57','1900-01-01 00:00:00',1,0,1),(11038,'27169','Grossarl','GROSSARL',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:58','1900-01-01 00:00:00',1,0,1),(11039,'164','Grossbeeren','GROSSBEEREN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:58','1900-01-01 00:00:00',1,0,1),(11040,'165','Grossbettlingen','GROSSBETTLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:58','1900-01-01 00:00:00',1,0,1),(11041,'166','Grossburgwedel','GROSSBURGWEDEL',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:58','1900-01-01 00:00:00',1,0,1),(11042,'22090','Grosse Pointe Park','GROSSE POINTE PARK',NULL,'','United States','',0,0,231,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11043,'167','Grossebersdorf','GROSSEBERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11044,'39867','Grossenbrode','GROSSENBRODE',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11045,'39815','Grossenzersdorf','GROSSENZERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11046,'12853','Grosseto','GROSSETO',NULL,'','Italy','',0,0,107,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11047,'168','Gross-gerau','GROSS-GERAU',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11048,'39836','Grossliebringen','GROSSLIEBRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 10:59:59','1900-01-01 00:00:00',1,0,1),(11049,'26968','Grossnondorf','GROSSNONDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11050,'16632','Grosuplje','GROSUPLJE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11051,'36474','Grotli','GROTLI',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11052,'19089','Groton','GROTON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11053,'11988','Grottaferrata','GROTTAFERRATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11054,'11989','Grottammare','GROTTAMMARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:00','1900-01-01 00:00:00',1,0,1),(11055,'6859','Grouville','GROUVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:01','1900-01-01 00:00:00',1,0,1),(11056,'3664','Grove','GROVE',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:01','1900-01-01 00:00:00',1,0,1),(11057,'18515','Groveland','GROVELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:00:01','1900-01-01 00:00:00',1,0,1),(11058,'29368','Groveport','GROVEPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:00:02','1900-01-01 00:00:00',1,0,1),(11059,'33874','Grover','GROVER',NULL,'','United States','',0,0,231,'2016-10-17 11:00:02','1900-01-01 00:00:00',1,0,1),(11060,'30664','Groves','GROVES',NULL,'','United States','',0,0,231,'2016-10-17 11:00:03','1900-01-01 00:00:00',1,0,1),(11061,'19820','Grovetown','GROVETOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:03','1900-01-01 00:00:00',1,0,1),(11062,'16261','Groznyj','GROZNYJ',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:00:03','1900-01-01 00:00:00',1,0,1),(11063,'11990','Grugliasco','GRUGLIASCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:03','1900-01-01 00:00:00',1,0,1),(11064,'4857','Gruissan','GRUISSAN',NULL,'','France','',0,0,76,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11065,'22766','Grunau','GRUNAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11066,'27131','Grunau Im Almtal','GRUNAU IM ALMTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11067,'10979','Grundarfjordur','GRUNDARFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11068,'24417','Grundlsee','GRUNDLSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11069,'31122','Grundy','GRUNDY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11070,'1882','Grünhain-beierfeld','GRÜNHAIN-BEIERFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:04','1900-01-01 00:00:00',1,0,1),(11071,'774','Grünheide','GRÜNHEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11072,'23221','Gruningen','GRUNINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11073,'22548','Grunwald','GRUNWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11074,'23222','Gruyeres','GRUYERES',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11075,'23223','Gryon','GRYON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11076,'37408','Grythyttan','GRYTHYTTAN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11077,'24461','Gschnitz','GSCHNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11078,'23224','Gstaad','GSTAAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11079,'23031','Gsteigwiler','GSTEIGWILER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11080,'41474','Guadahortuna','GUADAHORTUNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:05','1900-01-01 00:00:00',1,0,1),(11081,'3406','Guadalajara','GUADALAJARA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11082,'42986','Guadalest','GUADALEST',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11083,'13810','Guadalupe','GUADALUPE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11084,'3637','Guadalupe','GUADALUPE',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11085,'43116','Guadarrama','GUADARRAMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11086,'9362','Guadeloupe','GUADELOUPE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11087,'3237','Guadiaro','GUADIARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11088,'3238','Guadix','GUADIX',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:06','1900-01-01 00:00:00',1,0,1),(11089,'43054','Guagno Les Bains','GUAGNO LES BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11090,'963','Guaira','GUAIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11091,'968','Guajara Mirim','GUAJARA MIRIM',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11092,'18517','Gualala','GUALALA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11093,'3550','Gualba','GUALBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11094,'11991','Gualdo Cattaneo','GUALDO CATTANEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:07','1900-01-01 00:00:00',1,0,1),(11095,'41970','Gualeguaychu','GUALEGUAYCHU',NULL,'','Argentina','',0,0,10,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11096,'3551','Gualta','GUALTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11097,'27654','Guam','GUAM',NULL,'','United States','',0,0,231,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11098,'9891','Guam','GUAM',NULL,'','Guam','',0,0,90,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11099,'35541','Guamo','GUAMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11100,'17386','Guan Zi Ling','GUAN ZI LING',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11101,'43788','Guana Island','GUANA ISLAND',NULL,'','British Virgin Islands','',0,0,32,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11102,'40988','Guanacaste','GUANACASTE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11103,'9967','Guanaja','GUANAJA',NULL,'','Honduras','',0,0,97,'2016-10-17 11:00:08','1900-01-01 00:00:00',1,0,1),(11104,'14142','Guanajuato','GUANAJUATO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11105,'34866','Guang\'an','GUANG\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11106,'43533','Guangdong','GUANGDONG',NULL,'','China','',0,0,46,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11107,'34865','Guanghan','GUANGHAN',NULL,'','China','',0,0,46,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11108,'23960','Guangzhou','GUANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11109,'15751','Guanica','GUANICA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11110,'17387','Guanshan','GUANSHAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11111,'36414','Guanujuato','GUANUJUATO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:09','1900-01-01 00:00:00',1,0,1),(11112,'44027','Guanxi','GUANXI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11113,'23803','Guanyintang','GUANYINTANG',NULL,'','China','',0,0,46,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11114,'24102','Guapi','GUAPI',NULL,'','Colombia','',0,0,49,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11115,'24230','Guapiles','GUAPILES',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11116,'35950','Guarajuba','GUARAJUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11117,'25058','Guarapari','GUARAPARI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11118,'38195','Guarapuava','GUARAPUAVA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11119,'25121','Guararapes','GUARARAPES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11120,'42203','Guararema','GUARAREMA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11121,'25201','Guaratingueta','GUARATINGUETA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11122,'23225','Guarda','GUARDA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11123,'15968','Guarda','GUARDA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:00:10','1900-01-01 00:00:00',1,0,1),(11124,'43520','Guardalavaca','GUARDALAVACA',NULL,'','Cuba','',0,0,56,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11125,'3758','Guardamar Del Segura','GUARDAMAR DEL SEGURA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11126,'11993','Guardamiglio','GUARDAMIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11127,'11994','Guardavalle','GUARDAVALLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11128,'12993','Guardia Piemontese','GUARDIA PIEMONTESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11129,'11995','Guardistallo','GUARDISTALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:11','1900-01-01 00:00:00',1,0,1),(11130,'38602','Guaro','GUARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11131,'25179','Guaruja','GUARUJA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11132,'25202','Guarulhos','GUARULHOS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11133,'14091','Guasave','GUASAVE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11134,'42897','Guayanilla','GUAYANILLA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11135,'2396','Guayaquil','GUAYAQUIL',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11136,'24946','Guayaramerin','GUAYARAMERIN',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11137,'42112','Guayas','GUAYAS',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11138,'13812','Guaymas','GUAYMAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:12','1900-01-01 00:00:00',1,0,1),(11139,'11996','Gubbio','GUBBIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11140,'41353','Gudar','GUDAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11141,'2640','Gúdar','GÚDAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11142,'1570','Gudbrandsdalen','GUDBRANDSDALEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11143,'2163','Gudhjem','GUDHJEM',NULL,'','Denmark','',0,0,59,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11144,'39171','Gudme','GUDME',NULL,'','Denmark','',0,0,59,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11145,'38269','Guduvancheri','GUDUVANCHERI',NULL,'','India','',0,0,101,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11146,'14978','Gudvangen','GUDVANGEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:13','1900-01-01 00:00:00',1,0,1),(11147,'6762','Guebwiller','GUEBWILLER',NULL,'','France','',0,0,76,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11148,'2641','Guejar Sierra','GUEJAR SIERRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11149,'13697','Gueliz','GUELIZ',NULL,'','Morocco','',0,0,148,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11150,'34509','Guelph','GUELPH',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11151,'169','Guelzow','GUELZOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11152,'1720','Guenzburg','GUENZBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11153,'37973','Guerande','GUERANDE',NULL,'','France','',0,0,76,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11154,'6004','Gueret','GUERET',NULL,'','France','',0,0,76,'2016-10-17 11:00:14','1900-01-01 00:00:00',1,0,1),(11155,'18518','Guerneville','GUERNEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11156,'9304','Guernsey','GUERNSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11157,'32102','Guernsey','GUERNSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11158,'38758','Guerreiros Do Rio','GUERREIROS DO RIO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11159,'13815','Guerrero Negro','GUERRERO NEGRO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11160,'39089','Guessing','GUESSING',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11161,'170','Guestrow','GUESTROW',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:15','1900-01-01 00:00:00',1,0,1),(11162,'2087','Guetersloh','GUETERSLOH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11163,'5190','Guethary','GUETHARY',NULL,'','France','',0,0,76,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11164,'171','Guettin','GUETTIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11165,'14','Guggenthal','GUGGENTHAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11166,'23226','Guggisberg','GUGGISBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11167,'22549','Guglingen','GUGLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11168,'3363','Guia De Isora','GUIA DE ISORA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11169,'5000','Guidel','GUIDEL',NULL,'','France','',0,0,76,'2016-10-17 11:00:16','1900-01-01 00:00:00',1,0,1),(11170,'11997','Guidonia','GUIDONIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11171,'41955','Guijo De Coria','GUIJO DE CORIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11172,'3453','Guijuelo','GUIJUELO',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11173,'7096','Guilden Sutton','GUILDEN SUTTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11174,'28826','Guilderland','GUILDERLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11175,'8160','Guildford','GUILDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:17','1900-01-01 00:00:00',1,0,1),(11176,'19090','Guilford','GUILFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11177,'23681','Guilin','GUILIN',NULL,'','China','',0,0,46,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11178,'37386','Guillaumes','GUILLAUMES',NULL,'','France','',0,0,76,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11179,'3239','Guillena','GUILLENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11180,'6440','Guillestre','GUILLESTRE',NULL,'','France','',0,0,76,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11181,'8161','Guilsborough','GUILSBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:18','1900-01-01 00:00:00',1,0,1),(11182,'3364','Guimar','GUIMAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11183,'15885','Guimaraes','GUIMARAES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11184,'17887','Guin','GUIN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11185,'5544','Guingamp','GUINGAMP',NULL,'','France','',0,0,76,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11186,'1282','Guipuzcoa - San Sebastian','GUIPUZCOA - SAN SEBASTIAN',NULL,'','SPAIN','',0,0,199,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11187,'8162','Guisborough','GUISBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11188,'8163','Guiting Power','GUITING POWER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:19','1900-01-01 00:00:00',1,0,1),(11189,'2964','Guitiriz','GUITIRIZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11190,'23861','Guiyang','GUIYANG',NULL,'','China','',0,0,46,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11191,'23870','Guizhou','GUIZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11192,'5191','Gujan-mestras','GUJAN-MESTRAS',NULL,'','France','',0,0,76,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11193,'38526','Gulf Harbour','GULF HARBOUR',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11194,'3884','Gulf Of Finland','GULF OF FINLAND',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:20','1900-01-01 00:00:00',1,0,1),(11195,'8164','Gullane','GULLANE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11196,'17339','Gulluk','GULLUK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11197,'38955','Gulmarg','GULMARG',NULL,'','India','Gulmarg',13,0,101,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11198,'38582','Gulpen','GULPEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11199,'24752','Gulshan','GULSHAN',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11200,'17478','Gulu','GULU',NULL,'','Uganda','',0,0,226,'2016-10-17 11:00:22','1900-01-01 00:00:00',1,0,1),(11201,'35816','Gumi','GUMI',NULL,'','South Korea','',0,0,197,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11202,'13492','Gumi','GUMI',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11203,'41485','Gumiel De Mercado','GUMIEL DE MERCADO',NULL,'','Spain','',0,0,199,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11204,'27372','Gummersbach','GUMMERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11205,'17209','Gumuldur','GUMULDUR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11206,'17297','Gumushane','GUMUSHANE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11207,'37871','Gumusluk','GUMUSLUK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11208,'30665','Gun Barrel City','GUN BARREL CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11209,'10523','Guna','GUNA',NULL,'','India','Guna ',15,0,101,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11210,'10227','Guna','GUNA',NULL,'','Indonesia','Guna ',0,0,102,'2016-10-17 11:00:23','1900-01-01 00:00:00',1,0,1),(11211,'34186','Gundagai','GUNDAGAI',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11212,'17355','Gundogan','GUNDOGAN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11213,'17266','Gungoren','GUNGOREN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11214,'42684','Gunma','GUNMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11215,'34187','Gunnedah','GUNNEDAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11216,'33456','Gunnison','GUNNISON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:24','1900-01-01 00:00:00',1,0,1),(11217,'36912','Gunnsion','GUNNSION',NULL,'','United States','',0,0,231,'2016-10-17 11:00:25','1900-01-01 00:00:00',1,0,1),(11218,'17890','Guntersville','GUNTERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:25','1900-01-01 00:00:00',1,0,1),(11219,'39580','Gunung Mulu National Park','GUNUNG MULU NATIONAL PARK',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:00:25','1900-01-01 00:00:00',1,0,1),(11220,'22767','Gunzburg','GUNZBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:25','1900-01-01 00:00:00',1,0,1),(11221,'22550','Gunzenhausen','GUNZENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11222,'16221','Gura Humorului','GURA HUMORULUI',NULL,'','Romania','',0,0,179,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11223,'16493','Gurayat','GURAYAT',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11224,'18024','Gurdon','GURDON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11225,'10376','Gurgaon','','GGN','0','','Gurgaon : the city of guru dronacharya',9,0,101,'2016-10-17 11:00:26','2017-07-08 11:10:10',1,0,1),(11226,'41987','Guriri','GURIRI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11227,'20577','Gurnee','GURNEE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11228,'25064','Gurupi','GURUPI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:00:26','1900-01-01 00:00:00',1,0,1),(11229,'37616','Guruvayur','GURUVAYUR',NULL,'','India','Guruvayur',3,0,101,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11230,'12823','Guspini','GUSPINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11231,'42147','Gussing','GUSSING',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11232,'9363','Gustavia','GUSTAVIA',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11233,'17637','Gustavus','GUSTAVUS',NULL,'','United States','',0,0,231,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11234,'18519','Gustine','GUSTINE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:27','1900-01-01 00:00:00',1,0,1),(11235,'40689','Gutach Im Breisgau','GUTACH IM BREISGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11236,'27373','Gutersloh','GUTERSLOH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11237,'32910','Guthrie','GUTHRIE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11238,'41724','Guttannen','GUTTANNEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11239,'23228','Guttingen','GUTTINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11240,'10417','Guwahati','GUWAHATI',NULL,'','India','Guwahati Tour | Trip to Guwahati | Guwahati Tour P',10,0,101,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11241,'9895','Guyana','GUYANA',NULL,'','Guyana','',0,0,94,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11242,'4725','Guyancourt','GUYANCOURT',NULL,'','France','',0,0,76,'2016-10-17 11:00:28','1900-01-01 00:00:00',1,0,1),(11243,'32911','Guymon','GUYMON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11244,'43189','Guysborough','GUYSBOROUGH',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11245,'38664','Guzelyali','GUZELYALI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11246,'15301','Gwadar','GWADAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11247,'15302','Gwadur','GWADUR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11248,'10524','Gwalior','GWALIOR',NULL,'','India','Gwalior',15,0,101,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11249,'35810','Gwangju','GWANGJU',NULL,'','South Korea','',0,0,197,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11250,'42183','Gwent','GWENT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11251,'32658','Gweru','GWERU',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11252,'22091','Gwinn','GWINN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:29','1900-01-01 00:00:00',1,0,1),(11253,'23585','Gyalthang','GYALTHANG',NULL,'','China','',0,0,46,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11254,'24571','Gyandzha','GYANDZHA',NULL,'','Azerbaijan','',0,0,15,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11255,'42392','Gyantse','GYANTSE',NULL,'','China','',0,0,46,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11256,'10124','Gyenesdias','GYENESDIAS',NULL,'','Hungary','',0,0,99,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11257,'35811','Gyeongju','GYEONGJU',NULL,'','South Korea','Gyeongju',0,0,197,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11258,'13493','Gyeongju','GYEONGJU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11259,'26409','Gympie','GYMPIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11260,'33458','Gypsum','GYPSUM',NULL,'','United States','',0,0,231,'2016-10-17 11:00:30','1900-01-01 00:00:00',1,0,1),(11261,'42510','Gytheio','GYTHEIO',NULL,'','Greece','',0,0,86,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11262,'9475','Gythion','GYTHION',NULL,'','Greece','',0,0,86,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11263,'10064','Gyula','GYULA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11264,'26153','Gyumri','GYUMRI',NULL,'','Armenia','',0,0,11,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11265,'14185','Gzira','GZIRA',NULL,'','Malta','',0,0,135,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11266,'43896','Haaksbergen','HAAKSBERGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11267,'39315','Haamstede','HAAMSTEDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11268,'27374','Haan','HAAN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11269,'3820','Haapsalu','HAAPSALU',NULL,'','Estonia','',0,0,69,'2016-10-17 11:00:31','1900-01-01 00:00:00',1,0,1),(11270,'198','Haar','HAAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11271,'14636','Haarlem','HAARLEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11272,'40389','Haast','HAAST',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11273,'13593','Habarana','HABARANA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11274,'34188','Haberfield','HABERFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11275,'13135','Hachijo Jima Island','HACHIJO JIMA ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11276,'35739','Hachimantai','HACHIMANTAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11277,'13239','Hachinohe','HACHINOHE',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11278,'13415','Hachioji','HACHIOJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:32','1900-01-01 00:00:00',1,0,1),(11279,'18520','Hacienda Heights','HACIENDA HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11280,'28287','Hackensack','HACKENSACK',NULL,'','United States','',0,0,231,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11281,'28288','Hackettstown','HACKETTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11282,'8165','Hackney','HACKNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11283,'37582','Hadahaa','HADAHAA',NULL,'','Maldives','',0,0,133,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11284,'428','Hadamar','HADAMAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:33','1900-01-01 00:00:00',1,0,1),(11285,'8166','Haddington','HADDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11286,'28289','Haddonfield','HADDONFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11287,'2294','Haderslev','HADERSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11288,'26229','Hadfield','HADFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11289,'28827','Hadley','HADLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:34','1900-01-01 00:00:00',1,0,1),(11290,'7097','Hadley Wood','HADLEY WOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11291,'2148','Hadsten','HADSTEN',NULL,'','Denmark','',0,0,59,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11292,'39174','Haegebostad','HAEGEBOSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11293,'39853','Haegeland','HAEGELAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11294,'43871','Haemeenlinna','HAEMEENLINNA',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11295,'19983','Haena','HAENA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11296,'32564','Haenertsburg','HAENERTSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11297,'26993','Haeselgehr','HAESELGEHR',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11298,'13521','Haeundae','HAEUNDAE',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:00:35','1900-01-01 00:00:00',1,0,1),(11299,'42214','Hafar Al-batin','HAFAR AL-BATIN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11300,'37572','Hafez Hayyim','HAFEZ HAYYIM',NULL,'','Israel','',0,0,106,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11301,'10980','Hafnarfjordur','HAFNARFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11302,'16494','Hafr Albatin','HAFR ALBATIN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11303,'36475','Hafslo','HAFSLO',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11304,'3964','Haga','HAGA',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11305,'3965','Hagalund','HAGALUND',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11306,'25452','Hagensborg','HAGENSBORG',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11307,'6763','Hagenthal-le-bas','HAGENTHAL-LE-BAS',NULL,'','France','',0,0,76,'2016-10-17 11:00:36','1900-01-01 00:00:00',1,0,1),(11308,'20356','Hagerman','HAGERMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:37','1900-01-01 00:00:00',1,0,1),(11309,'16825','Hagersten','HAGERSTEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:37','1900-01-01 00:00:00',1,0,1),(11310,'21707','Hagerstown','HAGERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:37','1900-01-01 00:00:00',1,0,1),(11311,'38158','Hagetmau','HAGETMAU',NULL,'','France','',0,0,76,'2016-10-17 11:00:37','1900-01-01 00:00:00',1,0,1),(11312,'16787','Hagfors','HAGFORS',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11313,'39959','Hagley','HAGLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11314,'22551','Hagnau','HAGNAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11315,'6032','Hagondange','HAGONDANGE',NULL,'','France','',0,0,76,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11316,'28828','Hague','HAGUE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11317,'5041','Haguenau','HAGUENAU',NULL,'','France','',0,0,76,'2016-10-17 11:00:38','1900-01-01 00:00:00',1,0,1),(11318,'19821','Hahira','HAHIRA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11319,'429','Hahn','HAHN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11320,'26803','Hahndorf','HAHNDORF',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11321,'1701','Hahneklee','HAHNEKLEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11322,'42453','Hahnenklee','HAHNENKLEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11323,'27219','Hahnenklee-bockswiese','HAHNENKLEE-BOCKSWIESE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11324,'42813','Hai Duong','HAI DUONG',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:00:39','1900-01-01 00:00:00',1,0,1),(11325,'27132','Haibach','HAIBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11326,'23769','Haicang','HAICANG',NULL,'','China','',0,0,46,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11327,'199','Haidmuhle','HAIDMUHLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11328,'11024','Haifa','HAIFA',NULL,'','Israel','Haifa',0,0,106,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11329,'35417','Haifa-ness Ammim','HAIFA-NESS AMMIM',NULL,'','Israel','',0,0,106,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11330,'36058','Haiger','HAIGER',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11331,'18521','Haight-ashbury','HAIGHT-ASHBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:40','1900-01-01 00:00:00',1,0,1),(11332,'23559','Haikou','HAIKOU',NULL,'','China','',0,0,46,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11333,'19984','Haiku','HAIKU',NULL,'','United States','',0,0,231,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11334,'16495','Hail','HAIL',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11335,'41','Hailar','HAILAR',NULL,'','China','',0,0,46,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11336,'20357','Hailey','HAILEY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11337,'8167','Hailsham','HAILSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11338,'34867','Hailuo Valley Scenic','HAILUO VALLEY SCENIC',NULL,'','China','',0,0,46,'2016-10-17 11:00:41','1900-01-01 00:00:00',1,0,1),(11339,'38193','Haiming','HAIMING',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11340,'43352','Hainan Island','HAINAN ISLAND',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11341,'34868','Hainan-haikou','HAINAN-HAIKOU',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11342,'34896','Hainan-qiong Hai','HAINAN-QIONG HAI',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11343,'34905','Hainan-sanya','HAINAN-SANYA',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11344,'34918','Hainan-xinglong','HAINAN-XINGLONG',NULL,'','China','',0,0,46,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11345,'24581','Hainaut','HAINAUT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11346,'17638','Haines','HAINES',NULL,'','United States','',0,0,231,'2016-10-17 11:00:42','1900-01-01 00:00:00',1,0,1),(11347,'42110','Haines Junction','HAINES JUNCTION',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11348,'23696','Haining','HAINING',NULL,'','China','',0,0,46,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11349,'32252','Haiphong','HAIPHONG',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11350,'23586','Haizhu','HAIZHU',NULL,'','China','',0,0,46,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11351,'10074','Hajduszoboszlo','HAJDUSZOBOSZLO',NULL,'','Hungary','',0,0,99,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11352,'37322','Hajinbu','HAJINBU',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11353,'19985','Hakalau','HAKALAU',NULL,'','United States','',0,0,231,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11354,'13110','Hakata','HAKATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:43','1900-01-01 00:00:00',1,0,1),(11355,'16159','Hakaui','HAKAUI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11356,'17373','Hakkari','HAKKARI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11357,'13389','Hakodate','HAKODATE',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11358,'13240','Hakone','HAKONE',NULL,'','Japan','Hakone',0,0,110,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11359,'13136','Hakuba','HAKUBA',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11360,'44256','Hakuraa Huraa','HAKURAA HURAA',NULL,'','Maldives','',0,0,133,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11361,'40648','Halaveli','HALAVELI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:00:44','1900-01-01 00:00:00',1,0,1),(11362,'1935','Halberstadt','HALBERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11363,'200','Halblech','HALBLECH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11364,'14961','Halden','HALDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11365,'24462','Haldensee','HALDENSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11366,'44208','Haldia','HALDIA',NULL,'','India','Haldia',12,0,101,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11367,'40812','Haldwani','HALDWANI',NULL,'','India','',0,0,101,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11368,'8168','Hale','HALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11369,'19986','Haleiwa','HALEIWA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:45','1900-01-01 00:00:00',1,0,1),(11370,'19987','Halena','HALENA',NULL,'','United States','',0,0,231,'2016-10-17 11:00:46','1900-01-01 00:00:00',1,0,1),(11371,'8169','Halesworth','HALESWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:46','1900-01-01 00:00:00',1,0,1),(11372,'21709','Halethorpe','HALETHORPE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:46','1900-01-01 00:00:00',1,0,1),(11373,'17891','Haleyville','HALEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:46','1900-01-01 00:00:00',1,0,1),(11374,'18522','Half Moon Bay','HALF MOON BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11375,'15108','Halfmoon Bay','HALFMOON BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11376,'25453','Halfmoon Bay','HALFMOON BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11377,'29673','Halfway','HALFWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11378,'34510','Haliburton','HALIBURTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:47','1900-01-01 00:00:00',1,0,1),(11379,'17639','Halibut Cove','HALIBUT COVE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11380,'8170','Halifax','HALIFAX',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11381,'25711','Halifax','HALIFAX',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11382,'41166','Halkirk','HALKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11383,'8171','Halkyn','HALKYN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11384,'25798','Hall Beach','HALL BEACH',NULL,'','Canada','',0,0,39,'2016-10-17 11:00:48','1900-01-01 00:00:00',1,0,1),(11385,'16672','Halland','HALLAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11386,'19384','Hallandale','HALLANDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11387,'7098','Hallbankgate','HALLBANKGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11388,'201','Hallbergmoos','HALLBERGMOOS',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11389,'172','Halle','HALLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:49','1900-01-01 00:00:00',1,0,1),(11390,'40433','Halle','HALLE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11391,'39384','Hallein','HALLEIN',NULL,'','Austria','Hallein',0,0,14,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11392,'27375','Hallenberg','HALLENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11393,'37723','Haller','HALLER',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11394,'30666','Hallettsville','HALLETTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:00:50','1900-01-01 00:00:00',1,0,1),(11395,'27401','Hallock','HALLOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11396,'10981','Hallormsstadur','HALLORMSSTADUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11397,'21875','Hallowell','HALLOWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11398,'26230','Halls Creek','HALLS CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11399,'16759','Hallsberg','HALLSBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11400,'38753','Hallstatt','HALLSTATT',NULL,'','Austria','',0,0,14,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11401,'16826','Hallstavik','HALLSTAVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:51','1900-01-01 00:00:00',1,0,1),(11402,'29962','Hallstead','HALLSTEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11403,'37880','Halluin','HALLUIN',NULL,'','France','',0,0,76,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11404,'16705','Halmstad','HALMSTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11405,'43280','Halong','HALONG',NULL,'','Vietnam','Halong',0,0,236,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11406,'17154','Halq Al Wadi','HALQ AL WADI',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:00:52','1900-01-01 00:00:00',1,0,1),(11407,'39516','Halsenbach','HALSENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:53','1900-01-01 00:00:00',1,0,1),(11408,'29674','Halsey','HALSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:53','1900-01-01 00:00:00',1,0,1),(11409,'37217','Halstead','HALSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:53','1900-01-01 00:00:00',1,0,1),(11410,'710','Halstenbek','HALSTENBEK',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:53','1900-01-01 00:00:00',1,0,1),(11411,'15197','Halswell','HALSWELL',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11412,'30667','Haltom City','HALTOM CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11413,'8172','Haltwhistle','HALTWHISTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11414,'8173','Halvergate','HALVERGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11415,'16928','Hama','HAMA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11416,'43904','Hamada','HAMADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11417,'13410','Hamamatsu','HAMAMATSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:00:54','1900-01-01 00:00:00',1,0,1),(11418,'14891','Hamar','HAMAR',NULL,'','Norway','Hamar',0,0,164,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11419,'1662','Hamat Gader','HAMAT GADER',NULL,'','Israel','',0,0,106,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11420,'44055','Hambach','HAMBACH',NULL,'','France','',0,0,76,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11421,'44029','Hambantota','HAMBANTOTA',NULL,'','Sri Lanka','Hambantota',0,0,200,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11422,'8174','Hambleton','HAMBLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11423,'8175','Hambrook','HAMBROOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11424,'176','Hambuehren','HAMBUEHREN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11425,'29963','Hamburg','HAMBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:00:55','1900-01-01 00:00:00',1,0,1),(11426,'379','Hamburg','HAMBURG',NULL,'','Germany','Hamburg',0,0,83,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11427,'19091','Hamden','HAMDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11428,'39754','Hamdeok','HAMDEOK',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11429,'3912','Hameenlinna','HAMEENLINNA',NULL,'','Finland','',0,0,75,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11430,'27403','Hamel','HAMEL',NULL,'','United States','',0,0,231,'2016-10-17 11:00:56','1900-01-01 00:00:00',1,0,1),(11431,'27220','Hameln','HAMELN',NULL,'','Germany','',0,0,83,'2016-10-17 11:00:57','1900-01-01 00:00:00',1,0,1),(11432,'34871','Hami','HAMI',NULL,'','China','',0,0,46,'2016-10-17 11:00:57','1900-01-01 00:00:00',1,0,1),(11433,'8176','Hamilton','HAMILTON',NULL,'','United Kingdom','Hamilton',0,0,229,'2016-10-17 11:00:57','1900-01-01 00:00:00',1,0,1),(11434,'28291','Hamilton','HAMILTON',NULL,'','United States','',0,0,231,'2016-10-17 11:00:57','1900-01-01 00:00:00',1,0,1),(11435,'34511','Hamilton','HAMILTON',NULL,'','Canada','Hamilton',0,0,39,'2016-10-17 11:00:58','1900-01-01 00:00:00',1,0,1),(11436,'24936','Hamilton','HAMILTON',NULL,'','Bermuda','Hamilton',0,0,24,'2016-10-17 11:00:59','1900-01-01 00:00:00',1,0,1),(11437,'15198','Hamilton','HAMILTON',NULL,'','New Zealand','Hamilton',0,0,157,'2016-10-17 11:00:59','1900-01-01 00:00:00',1,0,1),(11438,'3966','Hamina','HAMINA',NULL,'','Finland','',0,0,75,'2016-10-17 11:01:00','1900-01-01 00:00:00',1,0,1),(11439,'29964','Hamlin','HAMLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:00','1900-01-01 00:00:00',1,0,1),(11440,'631','Hamm','HAMM',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:00','1900-01-01 00:00:00',1,0,1),(11441,'17169','Hammam Sousse','HAMMAM SOUSSE',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11442,'13105','Hammamat Main','HAMMAMAT MAIN',NULL,'','Jordan','',0,0,111,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11443,'17183','Hammamet','HAMMAMET',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11444,'43079','Hammana Valley','HAMMANA VALLEY',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11445,'14876','Hammerfest','HAMMERFEST',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11446,'8177','Hammersmith','HAMMERSMITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:01','1900-01-01 00:00:00',1,0,1),(11447,'27376','Hamminkeln','HAMMINKELN',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:02','1900-01-01 00:00:00',1,0,1),(11448,'20579','Hammond','HAMMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:01:02','1900-01-01 00:00:00',1,0,1),(11449,'28832','Hammondsport','HAMMONDSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:01:03','1900-01-01 00:00:00',1,0,1),(11450,'28292','Hammonton','HAMMONTON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:03','1900-01-01 00:00:00',1,0,1),(11451,'40852','Hampi','HAMPI',NULL,'','India','Hampi',17,0,101,'2016-10-17 11:01:03','1900-01-01 00:00:00',1,0,1),(11452,'20580','Hampshire','HAMPSHIRE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:03','1900-01-01 00:00:00',1,0,1),(11453,'26002','Hampstead','HAMPSTEAD',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:04','1900-01-01 00:00:00',1,0,1),(11454,'26368','Hampton','HAMPTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:05','1900-01-01 00:00:00',1,0,1),(11455,'7102','Hampton Court','HAMPTON COURT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:06','1900-01-01 00:00:00',1,0,1),(11456,'28834','Hamptons','HAMPTONS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11457,'33875','Hamptonville','HAMPTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11458,'14773','Hamresanden','HAMRESANDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11459,'8179','Hamsterley','HAMSTERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11460,'22092','Hamtramck','HAMTRAMCK',NULL,'','United States','',0,0,231,'2016-10-17 11:01:07','1900-01-01 00:00:00',1,0,1),(11461,'30338','Hanahan','HANAHAN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:08','1900-01-01 00:00:00',1,0,1),(11462,'19989','Hanalei','HANALEI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:08','1900-01-01 00:00:00',1,0,1),(11463,'13241','Hanamaki','HANAMAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:08','1900-01-01 00:00:00',1,0,1),(11464,'19990','Hanamaulu','HANAMAULU',NULL,'','United States','',0,0,231,'2016-10-17 11:01:08','1900-01-01 00:00:00',1,0,1),(11465,'19991','Hanapepe','HANAPEPE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11466,'179','Hanau','HANAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11467,'17893','Hanceville','HANCEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11468,'34869','Hancheng','HANCHENG',NULL,'','China','',0,0,46,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11469,'22093','Hancock','HANCOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:01:09','1900-01-01 00:00:00',1,0,1),(11470,'43905','Handa','HANDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:10','1900-01-01 00:00:00',1,0,1),(11471,'23804','Handan','HANDAN',NULL,'','China','',0,0,46,'2016-10-17 11:01:10','1900-01-01 00:00:00',1,0,1),(11472,'13137','Haneda Airport (Hnd)','HANEDA AIRPORT (HND)',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:10','1900-01-01 00:00:00',1,0,1),(11473,'25454','Haney','HANEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:10','1900-01-01 00:00:00',1,0,1),(11474,'18524','Hanford','HANFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11475,'9923','Hang Hau Town','HANG HAU TOWN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11476,'23501','Hanga Roa','HANGA ROA',NULL,'','Chile','',0,0,45,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11477,'16766','Haninge','HANINGE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11478,'30668','Hankamer','HANKAMER',NULL,'','United States','',0,0,231,'2016-10-17 11:01:11','1900-01-01 00:00:00',1,0,1),(11479,'28062','Hankinson','HANKINSON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11480,'8180','Hanley Swan','HANLEY SWAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11481,'15200','Hanmer Springs','HANMER SPRINGS',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11482,'25318','Hanna','HANNA',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11483,'27655','Hannibal','HANNIBAL',NULL,'','United States','',0,0,231,'2016-10-17 11:01:12','1900-01-01 00:00:00',1,0,1),(11484,'13406','Hanno','HANNO',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11485,'32708','Hannover','HANNOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11486,'180','Hannover','HANNOVER',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11487,'43281','Hanoi','HANOI',NULL,'','Vietnam','Hanoi',0,0,236,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11488,'21389','Hanover','HANOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11489,'13081','Hanover','HANOVER',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:01:13','1900-01-01 00:00:00',1,0,1),(11490,'34513','Hanover','HANOVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:15','1900-01-01 00:00:00',1,0,1),(11491,'40813','Hansi','HANSI',NULL,'','India','',0,0,101,'2016-10-17 11:01:15','1900-01-01 00:00:00',1,0,1),(11492,'8181','Hanslope','HANSLOPE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11493,'21390','Hanson','HANSON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11494,'42912','Hanson Bay','HANSON BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11495,'27221','Hanstedt','HANSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11496,'2337','Hanstholm','HANSTHOLM',NULL,'','Denmark','',0,0,59,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11497,'23937','Hanzhong','HANZHONG',NULL,'','China','',0,0,46,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11498,'10690','Haora','HAORA',NULL,'','India','',0,0,101,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11499,'19992','Haou','HAOU',NULL,'','United States','',0,0,231,'2016-10-17 11:01:16','1900-01-01 00:00:00',1,0,1),(11500,'16751','Haparanda','HAPARANDA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11501,'19824','Hapeville','HAPEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11502,'9924','Happy Valley','HAPPY VALLEY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11503,'25658','Happy Valley - Goose Bay','HAPPY VALLEY - GOOSE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11504,'15072','Hapuku','HAPUKU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11505,'21207','Harahan','HARAHAN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:17','1900-01-01 00:00:00',1,0,1),(11506,'38996','Haraki','HARAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11507,'32659','Harare','HARARE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11508,'22094','Harbert','HARBERT',NULL,'','United States','',0,0,231,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11509,'37558','Harbeson','HARBESON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11510,'23784','Harbin','HARBIN',NULL,'','China','',0,0,46,'2016-10-17 11:01:18','1900-01-01 00:00:00',1,0,1),(11511,'29966','Harborcreek','HARBORCREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11512,'9900','Harbour City','HARBOUR CITY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11513,'13084','Harbour View','HARBOUR VIEW',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11514,'202','Harburg','HARBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11515,'14799','Hardanger Fjord','HARDANGER FJORD',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11516,'42404','Hardangerfjord','HARDANGERFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11517,'30339','Hardeeville','HARDEEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:19','1900-01-01 00:00:00',1,0,1),(11518,'41456','Hardelot-plage','HARDELOT-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11519,'14750','Hardenberg','HARDENBERG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11520,'14538','Harderwijk','HARDERWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11521,'33648','Hardin','HARDIN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11522,'18025','Hardy','HARDY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11523,'14906','Hareid','HAREID',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11524,'39984','Harel','HAREL',NULL,'','Israel','',0,0,106,'2016-10-17 11:01:20','1900-01-01 00:00:00',1,0,1),(11525,'14560','Haren','HAREN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11526,'15201','Harewood','HAREWOOD',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11527,'5815','Harfleur','HARFLEUR',NULL,'','France','',0,0,76,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11528,'43034','Hari Hari','HARI HARI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11529,'38882','Haria','HARIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11530,'10525','Haridwar','HARIDWAR',NULL,'','India','Haridwar Travel & Tour package | Haridwar Holiday ',9,0,101,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11531,'8182','Haringey','HARINGEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11532,'38150','Harjavalta','HARJAVALTA',NULL,'','Finland','',0,0,75,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11533,'35340','Harkany','HARKANY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11534,'37300','Harkány','HARKÁNY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:01:21','1900-01-01 00:00:00',1,0,1),(11535,'30669','Harker Heights','HARKER HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11536,'32457','Harkerville','HARKERVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11537,'203','Harlaching','HARLACHING',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11538,'33649','Harlan','HARLAN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11539,'8183','Harlech','HARLECH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:22','1900-01-01 00:00:00',1,0,1),(11540,'27222','Harlesiel','HARLESIEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11541,'29967','Harleysville','HARLEYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11542,'30340','Harleyville','HARLEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11543,'30670','Harlingen','HARLINGEN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11544,'8184','Harlow','HARLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:23','1900-01-01 00:00:00',1,0,1),(11545,'29968','Harmarville','HARMARVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11546,'27404','Harmony','HARMONY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11547,'16804','Harnosand','HARNOSAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11548,'2965','Haro','HARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11549,'8185','Harpenden','HARPENDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11550,'43595','Harpender','HARPENDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11551,'38858','Harper','HARPER',NULL,'','United States','',0,0,231,'2016-10-17 11:01:24','1900-01-01 00:00:00',1,0,1),(11552,'31989','Harpers Ferry','HARPERS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:25','1900-01-01 00:00:00',1,0,1),(11553,'2029','Harpstedt','HARPSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:25','1900-01-01 00:00:00',1,0,1),(11554,'24310','Harrachov','HARRACHOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:01:25','1900-01-01 00:00:00',1,0,1),(11555,'42134','Harrington','HARRINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:26','1900-01-01 00:00:00',1,0,1),(11556,'19224','Harrington','HARRINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:26','1900-01-01 00:00:00',1,0,1),(11557,'26003','Harrington Harbour','HARRINGTON HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:26','1900-01-01 00:00:00',1,0,1),(11558,'29969','Harrisburg','HARRISBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:01:26','1900-01-01 00:00:00',1,0,1),(11559,'711','Harrislee','HARRISLEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:27','1900-01-01 00:00:00',1,0,1),(11560,'32545','Harrismith','HARRISMITH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:01:27','1900-01-01 00:00:00',1,0,1),(11561,'28838','Harrison','HARRISON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:27','1900-01-01 00:00:00',1,0,1),(11562,'25455','Harrison Hot Springs','HARRISON HOT SPRINGS',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:29','1900-01-01 00:00:00',1,0,1),(11563,'31124','Harrisonburg','HARRISONBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:01:29','1900-01-01 00:00:00',1,0,1),(11564,'27656','Harrisonville','HARRISONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:29','1900-01-01 00:00:00',1,0,1),(11565,'29971','Harrisville','HARRISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11566,'33650','Harrodsburg','HARRODSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11567,'8186','Harrogate','HARROGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11568,'8187','Harrow','HARROW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11569,'44249','Harryda','HARRYDA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11570,'14989','Harstad','HARSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11571,'26512','Harston','HARSTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:30','1900-01-01 00:00:00',1,0,1),(11572,'26994','Hart Bei Graz','HART BEI GRAZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:01:31','1900-01-01 00:00:00',1,0,1),(11573,'24418','Hartberg','HARTBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:01:31','1900-01-01 00:00:00',1,0,1),(11574,'19092','Hartford','HARTFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:01:31','1900-01-01 00:00:00',1,0,1),(11575,'8188','Hartington','HARTINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:32','1900-01-01 00:00:00',1,0,1),(11576,'8189','Hartland','HARTLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:32','1900-01-01 00:00:00',1,0,1),(11577,'22100','Hartland','HARTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:01:32','1900-01-01 00:00:00',1,0,1),(11578,'38474','Hartland','HARTLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:32','1900-01-01 00:00:00',1,0,1),(11579,'8190','Hartlebury','HARTLEBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11580,'8191','Hartlepool','HARTLEPOOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11581,'25456','Hartley Bay','HARTLEY BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11582,'1972','Hartmannsdorf','HARTMANNSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11583,'37982','Hartpury','HARTPURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11584,'17894','Hartselle','HARTSELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:33','1900-01-01 00:00:00',1,0,1),(11585,'40393','Hartsfield-jackson Atlanta International Airport','HARTSFIELD-JACKSON ATLANTA INTERNATIONAL AIRPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:01:34','1900-01-01 00:00:00',1,0,1),(11586,'30341','Hartsville','HARTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:34','1900-01-01 00:00:00',1,0,1),(11587,'19825','Hartwell','HARTWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:01:34','1900-01-01 00:00:00',1,0,1),(11588,'20584','Harvard','HARVARD',NULL,'','United States','',0,0,231,'2016-10-17 11:01:35','1900-01-01 00:00:00',1,0,1),(11589,'20585','Harvey','HARVEY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:35','1900-01-01 00:00:00',1,0,1),(11590,'25319','Harvie Heights','HARVIE HEIGHTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:35','1900-01-01 00:00:00',1,0,1),(11591,'8192','Harwich','HARWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:36','1900-01-01 00:00:00',1,0,1),(11592,'21391','Harwich','HARWICH',NULL,'','United States','',0,0,231,'2016-10-17 11:01:36','1900-01-01 00:00:00',1,0,1),(11593,'20586','Harwood Heights','HARWOOD HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:36','1900-01-01 00:00:00',1,0,1),(11594,'28296','Hasbrouck Heights','HASBROUCK HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11595,'1936','Haselhorst','HASELHORST',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11596,'23032','Hasenstrick','HASENSTRICK',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11597,'28297','Haskell','HASKELL',NULL,'','United States','',0,0,231,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11598,'24773','Haskovo','HASKOVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11599,'8193','Haslemere','HASLEMERE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:37','1900-01-01 00:00:00',1,0,1),(11600,'2328','Haslev','HASLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11601,'23033','Hasliberg','HASLIBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11602,'24582','Haspengouw','HASPENGOUW',NULL,'','Belgium','',0,0,21,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11603,'10657','Hassan','HASSAN',NULL,'','India','Hassan',17,0,101,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11604,'24628','Hasselt','HASSELT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11605,'40008','Hassi Messaoud','HASSI MESSAOUD',NULL,'','Algeria','',0,0,3,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11606,'16864','Hassleholm','HASSLEHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11607,'2052','Hassloch','HASSLOCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11608,'43596','Hassocks','HASSOCKS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11609,'26513','Hastings','HASTINGS',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:38','1900-01-01 00:00:00',1,0,1),(11610,'27405','Hastings','HASTINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:39','1900-01-01 00:00:00',1,0,1),(11611,'15202','Hastings','HASTINGS',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:39','1900-01-01 00:00:00',1,0,1),(11612,'8194','Hastings','HASTINGS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:39','1900-01-01 00:00:00',1,0,1),(11613,'25232','Hastings','HASTINGS',NULL,'','Barbados','',0,0,19,'2016-10-17 11:01:39','1900-01-01 00:00:00',1,0,1),(11614,'28839','Hastings-on-hudson','HASTINGS-ON-HUDSON',NULL,'','United States','',0,0,231,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11615,'14877','Hasvik','HASVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11616,'7103','Haswell Plough','HASWELL PLOUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11617,'16954','Hat Yai','HAT YAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11618,'16262','Hatanga','HATANGA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11619,'41732','Hatay','HATAY',NULL,'','Turkey','',0,0,222,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11620,'29972','Hatboro','HATBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11621,'33339','Hatch','HATCH',NULL,'','United States','',0,0,231,'2016-10-17 11:01:40','1900-01-01 00:00:00',1,0,1),(11622,'13242','Hateruma','HATERUMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11623,'9254','Hatfield','HATFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11624,'32565','Hatfield','HATFIELD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11625,'14205','Hatgal','HATGAL',NULL,'','Mongolia','',0,0,146,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11626,'8197','Hathersage','HATHERSAGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:41','1900-01-01 00:00:00',1,0,1),(11627,'38855','Hatillo','HATILLO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11628,'38046','Hatsukaichi','HATSUKAICHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11629,'25925','Hatta','HATTA',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11630,'430','Hattenheim','HATTENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11631,'431','Hattersheim','HATTERSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11632,'27862','Hattiesburg','HATTIESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:01:42','1900-01-01 00:00:00',1,0,1),(11633,'501','Hattingen','HATTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11634,'20901','Haubstadt','HAUBSTADT',NULL,'','United States','',0,0,231,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11635,'44056','Hauconcourt','HAUCONCOURT',NULL,'','France','',0,0,76,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11636,'22552','Hauenstein','HAUENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11637,'14968','Haugesund','HAUGESUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11638,'3944','Haukipudas','HAUKIPUDAS',NULL,'','Finland','',0,0,75,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11639,'28840','Hauppauge','HAUPPAUGE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:43','1900-01-01 00:00:00',1,0,1),(11640,'22553','Hausern','HAUSERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11641,'26995','Hausruckviertel','HAUSRUCKVIERTEL',NULL,'','Austria','',0,0,14,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11642,'4272','Haute Marne','HAUTE MARNE',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11643,'4273','Haute-loire','HAUTE-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11644,'23229','Hauterive','HAUTERIVE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11645,'4274','Hautes Alpes','HAUTES ALPES',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11646,'4275','Haute-saone','HAUTE-SAONE',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11647,'4276','Haute-savoie','HAUTE-SAVOIE',NULL,'','France','',0,0,76,'2016-10-17 11:01:44','1900-01-01 00:00:00',1,0,1),(11648,'4277','Haute-vienne','HAUTE-VIENNE',NULL,'','France','',0,0,76,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11649,'39869','Hauteville-lompnes','HAUTEVILLE-LOMPNES',NULL,'','France','',0,0,76,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11650,'4278','Haut-jura Regional Nature Reserve','HAUT-JURA REGIONAL NATURE RESERVE',NULL,'','France','',0,0,76,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11651,'4279','Haut-rhin','HAUT-RHIN',NULL,'','France','',0,0,76,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11652,'19993','Hauula','HAUULA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:45','1900-01-01 00:00:00',1,0,1),(11653,'205','Hauzenberg','HAUZENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11654,'20587','Havana','HAVANA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11655,'34941','Havana','HAVANA',NULL,'','Cuba','',0,0,56,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11656,'8198','Havant','HAVANT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11657,'33877','Havelock','HAVELOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:01:46','1900-01-01 00:00:00',1,0,1),(11658,'37167','Havelock Island','HAVELOCK ISLAND',NULL,'','INDIA','Havelock Island',22,0,101,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11659,'15203','Havelock North','HAVELOCK NORTH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11660,'8199','Haverfordwest','HAVERFORDWEST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11661,'8200','Haverhill','HAVERHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11662,'21394','Haverhill','HAVERHILL',NULL,'','United States','',0,0,231,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11663,'7104','Havering','HAVERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11664,'28841','Haverstraw','HAVERSTRAW',NULL,'','United States','',0,0,231,'2016-10-17 11:01:47','1900-01-01 00:00:00',1,0,1),(11665,'29973','Havertown','HAVERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11666,'502','Havixbeck','HAVIXBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11667,'2295','Havneby','HAVNEBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11668,'14878','Havoysund','HAVOYSUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11669,'27984','Havre','HAVRE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:48','1900-01-01 00:00:00',1,0,1),(11670,'26004','Havre-st. Pierre','HAVRE-ST. PIERRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:49','1900-01-01 00:00:00',1,0,1),(11671,'1434','Hawaii - Kauai - Hi','HAWAII - KAUAI - HI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:49','1900-01-01 00:00:00',1,0,1),(11672,'38405','Hawaiian Gardens','HAWAIIAN GARDENS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:50','1900-01-01 00:00:00',1,0,1),(11673,'36929','Hawaii-hilo','HAWAII-HILO',NULL,'','United States','',0,0,231,'2016-10-17 11:01:51','1900-01-01 00:00:00',1,0,1),(11674,'36920','Hawaii-hualalai','HAWAII-HUALALAI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:51','1900-01-01 00:00:00',1,0,1),(11675,'36941','Hawaii-kamuela','HAWAII-KAMUELA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:51','1900-01-01 00:00:00',1,0,1),(11676,'36945','Hawaii-keauhou','HAWAII-KEAUHOU',NULL,'','United States','',0,0,231,'2016-10-17 11:01:51','1900-01-01 00:00:00',1,0,1),(11677,'36948','Hawaii-kohala Coast','HAWAII-KOHALA COAST',NULL,'','United States','',0,0,231,'2016-10-17 11:01:52','1900-01-01 00:00:00',1,0,1),(11678,'36947','Hawaii-kona','HAWAII-KONA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:52','1900-01-01 00:00:00',1,0,1),(11679,'36915','Hawaii-mauna Kea','HAWAII-MAUNA KEA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:52','1900-01-01 00:00:00',1,0,1),(11680,'37055','Hawaii-waikoloa','HAWAII-WAIKOLOA',NULL,'','United States','',0,0,231,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11681,'42775','Hawalli','HAWALLI',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11682,'43941','Hawally','HAWALLY',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11683,'38554','Hawar','HAWAR',NULL,'','Bahrain','',0,0,17,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11684,'43630','Hawera','HAWERA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11685,'8201','Hawes','HAWES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11686,'19995','Hawi','HAWI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11687,'8202','Hawick','HAWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:53','1900-01-01 00:00:00',1,0,1),(11688,'8203','Hawkchurch','HAWKCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11689,'26453','Hawker','HAWKER',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11690,'42181','Hawkes Bay','HAWKES BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11691,'25659','Hawkes Bay','HAWKES BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11692,'15111','Hawke\'s Bay','HAWKE\'S BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11693,'34514','Hawkesbury','HAWKESBURY',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11694,'19827','Hawkinsville','HAWKINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11695,'24851','Hawks Nest','HAWKS NEST',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11696,'34189','Hawksbury Valley','HAWKSBURY VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11697,'8204','Hawkshead','HAWKSHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:54','1900-01-01 00:00:00',1,0,1),(11698,'39366','Hawkswick','HAWKSWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11699,'29974','Hawley','HAWLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11700,'8205','Hawnby','HAWNBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11701,'8206','Haworth','HAWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11702,'7','Hawthorn','HAWTHORN',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11703,'28842','Hawthorne','HAWTHORNE',NULL,'','United States','',0,0,231,'2016-10-17 11:01:55','1900-01-01 00:00:00',1,0,1),(11704,'34190','Hay','HAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:56','1900-01-01 00:00:00',1,0,1),(11705,'25769','Hay River','HAY RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:01:56','1900-01-01 00:00:00',1,0,1),(11706,'20359','Hayden','HAYDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:01:56','1900-01-01 00:00:00',1,0,1),(11707,'8207','Haydock','HAYDOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:57','1900-01-01 00:00:00',1,0,1),(11708,'8208','Haydon Bridge','HAYDON BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:57','1900-01-01 00:00:00',1,0,1),(11709,'8209','Hayes','HAYES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:57','1900-01-01 00:00:00',1,0,1),(11710,'31126','Hayes','HAYES',NULL,'','United States','',0,0,231,'2016-10-17 11:01:57','1900-01-01 00:00:00',1,0,1),(11711,'8210','Hayle','HAYLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11712,'7105','Hayling Island','HAYLING ISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11713,'43578','Hayman','HAYMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11714,'7106','Hay-on-wye','HAY-ON-WYE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11715,'21061','Hays','HAYS',NULL,'','United States','',0,0,231,'2016-10-17 11:01:58','1900-01-01 00:00:00',1,0,1),(11716,'27657','Hayti','HAYTI',NULL,'','United States','',0,0,231,'2016-10-17 11:01:59','1900-01-01 00:00:00',1,0,1),(11717,'31766','Hayward','HAYWARD',NULL,'','United States','',0,0,231,'2016-10-17 11:01:59','1900-01-01 00:00:00',1,0,1),(11718,'8211','Haywards Heath','HAYWARDS HEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:01:59','1900-01-01 00:00:00',1,0,1),(11719,'33651','Hazard','HAZARD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:00','1900-01-01 00:00:00',1,0,1),(11720,'6173','Hazebrouck','HAZEBROUCK',NULL,'','France','',0,0,76,'2016-10-17 11:02:00','1900-01-01 00:00:00',1,0,1),(11721,'20588','Hazel Crest','HAZEL CREST',NULL,'','United States','',0,0,231,'2016-10-17 11:02:00','1900-01-01 00:00:00',1,0,1),(11722,'34515','Hazeldean','HAZELDEAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:01','1900-01-01 00:00:00',1,0,1),(11723,'19828','Hazelhurst','HAZELHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:02:01','1900-01-01 00:00:00',1,0,1),(11724,'33459','Hazeltine Heights','HAZELTINE HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:02:02','1900-01-01 00:00:00',1,0,1),(11725,'31990','Hazelton','HAZELTON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:02','1900-01-01 00:00:00',1,0,1),(11726,'27659','Hazelwood','HAZELWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:02','1900-01-01 00:00:00',1,0,1),(11727,'18027','Hazen','HAZEN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:02','1900-01-01 00:00:00',1,0,1),(11728,'14714','Hazerswoude-dorp','HAZERSWOUDE-DORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11729,'14715','Hazerswoude-rijndijk','HAZERSWOUDE-RIJNDIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11730,'27864','Hazlehurst','HAZLEHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11731,'7107','Hazlerigg','HAZLERIGG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11732,'28298','Hazlet','HAZLET',NULL,'','United States','',0,0,231,'2016-10-17 11:02:03','1900-01-01 00:00:00',1,0,1),(11733,'29975','Hazleton','HAZLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11734,'35834','Hazmeih','HAZMEIH',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11735,'32566','Hazyview','HAZYVIEW',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11736,'25713','Head Of Jeddore','HEAD OF JEDDORE',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11737,'41530','Headford','HEADFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11738,'39674','Headingley','HEADINGLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11739,'8212','Headington','HEADINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:04','1900-01-01 00:00:00',1,0,1),(11740,'7108','Headlam','HEADLAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:05','1900-01-01 00:00:00',1,0,1),(11741,'18528','Healdsburg','HEALDSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:02:05','1900-01-01 00:00:00',1,0,1),(11742,'38665','Healesville','HEALESVILLE',NULL,'','Australia','Healesville',0,0,13,'2016-10-17 11:02:05','1900-01-01 00:00:00',1,0,1),(11743,'17640','Healy','HEALY',NULL,'','United States','',0,0,231,'2016-10-17 11:02:05','1900-01-01 00:00:00',1,0,1),(11744,'30671','Hearne','HEARNE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:06','1900-01-01 00:00:00',1,0,1),(11745,'34516','Hearst','HEARST',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:06','1900-01-01 00:00:00',1,0,1),(11746,'19386','Heartland','HEARTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:02:06','1900-01-01 00:00:00',1,0,1),(11747,'29372','Heath','HEATH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:06','1900-01-01 00:00:00',1,0,1),(11748,'25714','Heatherton','HEATHERTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11749,'8213','Heathfield','HEATHFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11750,'8214','Heathrow','HEATHROW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11751,'19387','Heathrow','HEATHROW',NULL,'','United States','',0,0,231,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11752,'32912','Heavener','HEAVENER',NULL,'','United States','',0,0,231,'2016-10-17 11:02:07','1900-01-01 00:00:00',1,0,1),(11753,'21714','Hebbville','HEBBVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:08','1900-01-01 00:00:00',1,0,1),(11754,'8215','Hebden Bridge','HEBDEN BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:08','1900-01-01 00:00:00',1,0,1),(11755,'18149','Heber','HEBER',NULL,'','United States','',0,0,231,'2016-10-17 11:02:08','1900-01-01 00:00:00',1,0,1),(11756,'23792','Hebi','HEBI',NULL,'','China','',0,0,46,'2016-10-17 11:02:09','1900-01-01 00:00:00',1,0,1),(11757,'1312','Hebrides','HEBRIDES',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:02:09','1900-01-01 00:00:00',1,0,1),(11758,'25715','Hebron','HEBRON',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:09','1900-01-01 00:00:00',1,0,1),(11759,'13930','Hecelchakan','HECELCHAKAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:02:10','1900-01-01 00:00:00',1,0,1),(11760,'25600','Hecla Island','HECLA ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:10','1900-01-01 00:00:00',1,0,1),(11761,'38005','Hector','HECTOR',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:02:10','1900-01-01 00:00:00',1,0,1),(11762,'8216','Heddon-on-the-wall','HEDDON-ON-THE-WALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:10','1900-01-01 00:00:00',1,0,1),(11763,'2212','Hedehusene','HEDEHUSENE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11764,'31991','Hedgesville','HEDGESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11765,'14800','Hedmark','HEDMARK',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11766,'19996','Heeia','HEEIA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11767,'14539','Heelsum','HEELSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11768,'14637','Heemskerk','HEEMSKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11769,'14512','Heerenveen','HEERENVEEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11770,'14571','Heerlen','HEERLEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11771,'23682','Hefei','HEFEI',NULL,'','China','',0,0,46,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11772,'17895','Heflin','HEFLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:11','1900-01-01 00:00:00',1,0,1),(11773,'23589','Hegang','HEGANG',NULL,'','China','',0,0,46,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11774,'40119','Heggenes','HEGGENES',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11775,'38303','Hegyko','HEGYKO',NULL,'','Hungary','',0,0,99,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11776,'26514','Heidelberg','HEIDELBERG',NULL,'','Australia','Heidelberg',0,0,13,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11777,'32458','Heidelberg','HEIDELBERG',NULL,'','South Africa','Heidelberg',0,0,195,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11778,'183','Heidelberg','HEIDELBERG',NULL,'','Germany','Heidelberg',0,0,83,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11779,'36061','Heidelberg-hirschber','HEIDELBERG-HIRSCHBER',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11780,'36068','Heidelberg-ladenburg','HEIDELBERG-LADENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11781,'36092','Heidelberg-schwetzin','HEIDELBERG-SCHWETZIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:12','1900-01-01 00:00:00',1,0,1),(11782,'36106','Heidelberg-walldorf','HEIDELBERG-WALLDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11783,'23230','Heiden','HEIDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11784,'36059','Heidenheim','HEIDENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11785,'206','Heigenbrucken','HEIGENBRUCKEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11786,'23785','Heihe','HEIHE',NULL,'','China','',0,0,46,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11787,'14467','Heijenrath','HEIJENRATH',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11788,'40797','Heilbad Heiligenstadt','HEILBAD HEILIGENSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11789,'207','Heilbronn','HEILBRONN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11790,'27073','Heiligenblut','HEILIGENBLUT',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11791,'184','Heiligendamm','HEILIGENDAMM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:13','1900-01-01 00:00:00',1,0,1),(11792,'503','Heiligenhaus','HEILIGENHAUS',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11793,'632','Heiligenroth','HEILIGENROTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11794,'23231','Heiligenschwendi','HEILIGENSCHWENDI',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11795,'1998','Heiligensee Nord','HEILIGENSEE NORD',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11796,'208','Heiligenthal','HEILIGENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11797,'6033','Heillecourt','HEILLECOURT',NULL,'','France','',0,0,76,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11798,'14638','Heiloo','HEILOO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11799,'38485','Heimbach','HEIMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11800,'37365','Heimfeld','HEIMFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11801,'37439','Heimschuh','HEIMSCHUH',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11802,'209','Heinersdorf','HEINERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:14','1900-01-01 00:00:00',1,0,1),(11803,'3936','Heinola','HEINOLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11804,'22555','Heitersheim','HEITERSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11805,'43906','Hekinan','HEKINAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11806,'32459','Helderberg','HELDERBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11807,'19830','Helen','HELEN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:15','1900-01-01 00:00:00',1,0,1),(11808,'27985','Helena','HELENA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:16','1900-01-01 00:00:00',1,0,1),(11809,'18530','Helendale','HELENDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11810,'13734','Helengeli','HELENGELI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11811,'8217','Helensburgh','HELENSBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11812,'712','Helgoland','HELGOLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11813,'14935','Hell','HELL',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11814,'16185','Hell Bourg','HELL BOURG',NULL,'','Reunion','',0,0,178,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11815,'10966','Hella','HELLA',NULL,'','Iceland','',0,0,100,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11816,'7110','Hellaby','HELLABY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:17','1900-01-01 00:00:00',1,0,1),(11817,'14751','Hellendoorn','HELLENDOORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11818,'29977','Hellertown','HELLERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11819,'2213','Hellerup','HELLERUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11820,'8218','Hellesdon','HELLESDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11821,'14907','Hellesylt','HELLESYLT',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11822,'8219','Hellidon','HELLIDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11823,'8220','Hellingly','HELLINGLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11824,'25889','Hell\'s Gate','HELL\'S GATE',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11825,'16702','Hellvi','HELLVI',NULL,'','Sweden','',0,0,209,'2016-10-17 11:02:18','1900-01-01 00:00:00',1,0,1),(11826,'14598','Helmond','HELMOND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11827,'8221','Helmsley','HELMSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11828,'22556','Helmstadt','HELMSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11829,'27224','Helmstedt','HELMSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11830,'27225','Helmstorf','HELMSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11831,'16865','Helsingborg','HELSINGBORG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11832,'2173','Helsinge','HELSINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11833,'2174','Helsingor','HELSINGOR',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11834,'3967','Helsinki','HELSINKI',NULL,'','Finland','Helsinki',0,0,75,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11835,'35119','Helsinki-espoo','HELSINKI-ESPOO',NULL,'','Finland','',0,0,75,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11836,'35123','Helsinki-vantaa','HELSINKI-VANTAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11837,'8222','Helston','HELSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:19','1900-01-01 00:00:00',1,0,1),(11838,'16794','Hemavan','HEMAVAN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11839,'13735','Hembadu','HEMBADU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11840,'8223','Hemel Hempstead','HEMEL HEMPSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11841,'18531','Hemet','HEMET',NULL,'','United States','',0,0,231,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11842,'30672','Hemphill','HEMPHILL',NULL,'','United States','',0,0,231,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11843,'30673','Hempstead','HEMPSTEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:20','1900-01-01 00:00:00',1,0,1),(11844,'14866','Hemsedal','HEMSEDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:21','1900-01-01 00:00:00',1,0,1),(11845,'5192','Hendaye','HENDAYE',NULL,'','France','',0,0,76,'2016-10-17 11:02:21','1900-01-01 00:00:00',1,0,1),(11846,'15112','Henderson','HENDERSON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:02:21','1900-01-01 00:00:00',1,0,1),(11847,'33654','Henderson','HENDERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:21','1900-01-01 00:00:00',1,0,1),(11848,'33882','Hendersonville','HENDERSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:23','1900-01-01 00:00:00',1,0,1),(11849,'43597','Henfield','HENFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:23','1900-01-01 00:00:00',1,0,1),(11850,'17388','Hengchun','HENGCHUN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11851,'14752','Hengelo','HENGELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11852,'23814','Hengshan','HENGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11853,'23805','Hengshui','HENGSHUI',NULL,'','China','',0,0,46,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11854,'23815','Hengyang','HENGYANG',NULL,'','China','',0,0,46,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11855,'7111','Henlade','HENLADE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11856,'26233','Henley Brook','HENLEY BROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11857,'8224','Henley In Arden','HENLEY IN ARDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11858,'7112','Henley-on-thames','HENLEY-ON-THAMES',NULL,'','United Kingdom','Henley-on-Thames',0,0,229,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11859,'8225','Henlow','HENLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:24','1900-01-01 00:00:00',1,0,1),(11860,'5545','Hennebont','HENNEBONT',NULL,'','France','',0,0,76,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11861,'504','Hennef','HENNEF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11862,'775','Hennigsdorf','HENNIGSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11863,'32712','Henniker','HENNIKER',NULL,'','United States','',0,0,231,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11864,'44023','Henningsv','HENNINGSV',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11865,'14919','Henningsvær','HENNINGSVÆR',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11866,'16203','Henri Coanda International Airport (Otp)','HENRI COANDA INTERNATIONAL AIRPORT (OTP)',NULL,'','Romania','',0,0,179,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11867,'30675','Henrietta','HENRIETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:25','1900-01-01 00:00:00',1,0,1),(11868,'28845','Henrietta, Town Of','HENRIETTA, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:02:26','1900-01-01 00:00:00',1,0,1),(11869,'20589','Henry','HENRY',NULL,'','United States','',0,0,231,'2016-10-17 11:02:26','1900-01-01 00:00:00',1,0,1),(11870,'32913','Henryetta','HENRYETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:26','1900-01-01 00:00:00',1,0,1),(11871,'29978','Henryville','HENRYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11872,'9263','Hensol','HENSOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11873,'28846','Hensonville','HENSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11874,'713','Henstedt-ulzburg','HENSTEDT-ULZBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11875,'14408','Henties Bay','HENTIES BAY',NULL,'','Namibia','',0,0,151,'2016-10-17 11:02:27','1900-01-01 00:00:00',1,0,1),(11876,'34773','Hepburn Springs','HEPBURN SPRINGS',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11877,'37918','Hephzibah','HEPHZIBAH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11878,'185','Heppenheim','HEPPENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11879,'4280','Herault','HERAULT',NULL,'','France','',0,0,76,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11880,'24698','Herbeumont','HERBEUMONT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:02:28','1900-01-01 00:00:00',1,0,1),(11881,'5852','Herblay','HERBLAY',NULL,'','France','',0,0,76,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11882,'22557','Herbolzheim','HERBOLZHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11883,'32367','Herceg Novi','HERCEG NOVI',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11884,'37180','Herceghalom','HERCEGHALOM',NULL,'','Hungary','',0,0,99,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11885,'505','Herdecke','HERDECKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11886,'24171','Heredia','HEREDIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11887,'18151','Hereford','HEREFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11888,'8226','Hereford','HEREFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:29','1900-01-01 00:00:00',1,0,1),(11889,'7113','Herefordshire','HEREFORDSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11890,'34849','Herentals','HERENTALS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11891,'506','Herford','HERFORD',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11892,'23232','Hergiswil','HERGISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11893,'6238','Heric','HERIC',NULL,'','France','',0,0,76,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11894,'433','Heringhausen','HERINGHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11895,'41636','Heringsdorf','HERINGSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:30','1900-01-01 00:00:00',1,0,1),(11896,'21063','Herington','HERINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11897,'23233','Herisau','HERISAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11898,'37565','Herkenbosch','HERKENBOSCH',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11899,'28847','Herkimer','HERKIMER',NULL,'','United States','',0,0,231,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11900,'434','Herleshausen','HERLESHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11901,'2214','Herlev','HERLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11902,'27074','Hermagor','HERMAGOR',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11903,'23234','Hermance','HERMANCE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11904,'27661','Hermann','HERMANN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:31','1900-01-01 00:00:00',1,0,1),(11905,'40041','Hermannsburg','HERMANNSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11906,'937','Hermannsburg','HERMANNSBURG',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11907,'36476','Hermannsverk','HERMANNSVERK',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11908,'3968','Hermanstad','HERMANSTAD',NULL,'','Finland','',0,0,75,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11909,'41051','Hermansverk','HERMANSVERK',NULL,'','Norway','',0,0,164,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11910,'27406','Hermantown','HERMANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11911,'32460','Hermanus','HERMANUS',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11912,'5398','Hermanville-sur-mer','HERMANVILLE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11913,'23235','Hermetschwil','HERMETSCHWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11914,'38811','Hermigua','HERMIGUA',NULL,'','Spain','',0,0,199,'2016-10-17 11:02:32','1900-01-01 00:00:00',1,0,1),(11915,'7114','Hermiston','HERMISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:33','1900-01-01 00:00:00',1,0,1),(11916,'29676','Hermiston','HERMISTON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:33','1900-01-01 00:00:00',1,0,1),(11917,'33159','Hermitage','HERMITAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:33','1900-01-01 00:00:00',1,0,1),(11918,'1659','Hermon','HERMON',NULL,'','Israel','',0,0,106,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11919,'18532','Hermosa Beach','HERMOSA BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11920,'14097','Hermosillo','HERMOSILLO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11921,'776','Hermsdorf','HERMSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11922,'24533','Hernals','HERNALS',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11923,'27865','Hernando','HERNANDO',NULL,'','United States','',0,0,231,'2016-10-17 11:02:34','1900-01-01 00:00:00',1,0,1),(11924,'31127','Herndon','HERNDON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11925,'2273','Herning','HERNING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11926,'27987','Heron','HERON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11927,'26234','Heron Island','HERON ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11928,'4870','Herouville-saint-clair','HEROUVILLE-SAINT-CLAIR',NULL,'','France','',0,0,76,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11929,'24238','Herradura','HERRADURA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11930,'22558','Herrenberg','HERRENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:35','1900-01-01 00:00:00',1,0,1),(11931,'42697','Herrera','HERRERA',NULL,'','Panama','',0,0,169,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11932,'42354','Herrere','HERRERE',NULL,'','France','',0,0,76,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11933,'2073','Herrieden','HERRIEDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11934,'20590','Herrin','HERRIN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11935,'16882','Herrljunga','HERRLJUNGA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11936,'210','Herrsching Am Ammersee','HERRSCHING AM AMMERSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11937,'37319','Hersbruck','HERSBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:36','1900-01-01 00:00:00',1,0,1),(11938,'24673','Herstal','HERSTAL',NULL,'','Belgium','',0,0,21,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11939,'8227','Herstmonceux','HERSTMONCEUX',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11940,'26704','Herston','HERSTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11941,'507','Herten','HERTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11942,'8228','Hertford','HERTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11943,'7115','Hertfordshire','HERTFORDSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11944,'8229','Hertingfordbury','HERTINGFORDBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11945,'41954','Hervas','HERVAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:02:37','1900-01-01 00:00:00',1,0,1),(11946,'26705','Hervey Bay','HERVEY BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11947,'27226','Herzberg Am Harz','HERZBERG AM HARZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11948,'27227','Herzlake','HERZLAKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11949,'11042','Herzlia','HERZLIA',NULL,'','Israel','',0,0,106,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11950,'41460','Herzliya','HERZLIYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11951,'211','Herzogenaurach','HERZOGENAURACH',NULL,'','Germany','Herzogenaurach',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11952,'27104','Herzogenburg','HERZOGENBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11953,'22559','Herzogsweiler','HERZOGSWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11954,'4281','Hesdin-l\'abbé','HESDIN-L\'ABBÉ',NULL,'','France','',0,0,76,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11955,'27228','Hesel','HESEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11956,'42632','Heshan','HESHAN',NULL,'','China','',0,0,46,'2016-10-17 11:02:38','1900-01-01 00:00:00',1,0,1),(11957,'18533','Hesperia','HESPERIA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11958,'33461','Hesperus','HESPERUS',NULL,'','United States','',0,0,231,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11959,'42902','Hessdorf','HESSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11960,'27229','Hessisch Oldendorf','HESSISCH OLDENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11961,'21064','Hesston','HESSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11962,'8230','Heston','HESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:39','1900-01-01 00:00:00',1,0,1),(11963,'18030','Heth','HETH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11964,'8231','Hethersett','HETHERSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11965,'2075','Heubach','HEUBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11966,'37307','Heuchin','HEUCHIN',NULL,'','France','',0,0,76,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11967,'37303','Heusden','HEUSDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11968,'435','Heusenstamm','HEUSENSTAMM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11969,'24629','Heverlee','HEVERLEE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11970,'10120','Heviz','HEVIZ',NULL,'','Hungary','',0,0,99,'2016-10-17 11:02:40','1900-01-01 00:00:00',1,0,1),(11971,'30677','Hewitt','HEWITT',NULL,'','United States','',0,0,231,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11972,'8232','Hexham','HEXHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11973,'7116','Hexworthy','HEXWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11974,'40485','Heybeliada','HEYBELIADA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11975,'20361','Heyburn','HEYBURN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11976,'6638','Heyrieux','HEYRIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11977,'23827','Heyuan','HEYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:02:41','1900-01-01 00:00:00',1,0,1),(11978,'8233','Heywood','HEYWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11979,'43822','Heze','HEZE',NULL,'','China','',0,0,46,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11980,'34870','Hezhou','HEZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11981,'19389','Hialeah','HIALEAH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11982,'19832','Hiawassee','HIAWASSEE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:42','1900-01-01 00:00:00',1,0,1),(11983,'21065','Hiawatha','HIAWATHA',NULL,'','United States','',0,0,231,'2016-10-17 11:02:43','1900-01-01 00:00:00',1,0,1),(11984,'27407','Hibbing','HIBBING',NULL,'','United States','',0,0,231,'2016-10-17 11:02:43','1900-01-01 00:00:00',1,0,1),(11985,'33883','Hickory','HICKORY',NULL,'','United States','',0,0,231,'2016-10-17 11:02:43','1900-01-01 00:00:00',1,0,1),(11986,'7117','Hickstead','HICKSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:43','1900-01-01 00:00:00',1,0,1),(11987,'28848','Hicksville','HICKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:44','1900-01-01 00:00:00',1,0,1),(11988,'30679','Hidalgo','HIDALGO',NULL,'','United States','',0,0,231,'2016-10-17 11:02:44','1900-01-01 00:00:00',1,0,1),(11989,'42913','Hidden Valley','HIDDEN VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:44','1900-01-01 00:00:00',1,0,1),(11990,'41902','Hienghene','HIENGHENE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:02:44','1900-01-01 00:00:00',1,0,1),(11991,'36129','Hierro','HIERRO',NULL,'','Spain','',0,0,199,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11992,'24534','Hietzing','HIETZING',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11993,'13138','Higashihiroshima','HIGASHIHIROSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11994,'40223','Higashiizu','HIGASHIIZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11995,'35705','Higashikawa','HIGASHIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11996,'13139','Higashimurayama','HIGASHIMURAYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11997,'13140','Higashinada','HIGASHINADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11998,'13141','Higashinari','HIGASHINARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(11999,'13243','Higashi-osaka','HIGASHI-OSAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12000,'42566','Higashiura','HIGASHIURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12001,'13244','Higashiyama','HIGASHIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12002,'13142','Higashiyodogawa','HIGASHIYODOGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12003,'27662','Higginsville','HIGGINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12004,'32461','Higgovale','HIGGOVALE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:45','1900-01-01 00:00:00',1,0,1),(12005,'25320','High Level','HIGH LEVEL',NULL,'','Canada','',0,0,39,'2016-10-17 11:02:46','1900-01-01 00:00:00',1,0,1),(12006,'7118','High Littleton','HIGH LITTLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:46','1900-01-01 00:00:00',1,0,1),(12007,'16593','High Tatras','HIGH TATRAS',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:02:46','1900-01-01 00:00:00',1,0,1),(12008,'8235','Highbridge','HIGHBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:46','1900-01-01 00:00:00',1,0,1),(12009,'38123','Highcliffe-on-sea','HIGHCLIFFE-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:47','1900-01-01 00:00:00',1,0,1),(12010,'39535','Highfields','HIGHFIELDS',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:47','1900-01-01 00:00:00',1,0,1),(12011,'40789','Highgate','HIGHGATE',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:47','1900-01-01 00:00:00',1,0,1),(12012,'31332','Highgate Springs','HIGHGATE SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:02:47','1900-01-01 00:00:00',1,0,1),(12013,'8236','Highlands & Islands','HIGHLANDS & ISLANDS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:51','1900-01-01 00:00:00',1,0,1),(12014,'28300','Hightstown','HIGHTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12015,'20593','Highwood','HIGHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12016,'38169','Highworth','HIGHWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12017,'14016','Higuera Blanca','HIGUERA BLANCA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12018,'32202','Higuerote','HIGUEROTE',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12019,'2370','Higuey','HIGUEY',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12020,'35710','Hiji','HIJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12021,'35844','Hikkaduwa','HIKKADUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12022,'37553','Hikone','HIKONE',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12023,'508','Hilden','HILDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:52','1900-01-01 00:00:00',1,0,1),(12024,'27230','Hildesheim','HILDESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12025,'23034','Hildisrieden','HILDISRIEDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12026,'43674','Hillary','HILLARY',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12027,'26235','Hillarys','HILLARYS',NULL,'','Australia','',0,0,13,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12028,'18535','Hillcrest','HILLCREST',NULL,'','United States','',0,0,231,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12029,'509','Hille','HILLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:53','1900-01-01 00:00:00',1,0,1),(12030,'2175','Hillerod','HILLEROD',NULL,'','Denmark','',0,0,59,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12031,'38471','Hillesheim','HILLESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12032,'29375','Hilliard','HILLIARD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12033,'8237','Hillingdon','HILLINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12034,'22103','Hillman','HILLMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:02:54','1900-01-01 00:00:00',1,0,1),(12035,'29677','Hillsboro','HILLSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:02:55','1900-01-01 00:00:00',1,0,1),(12036,'9840','Hillsborough','HILLSBOROUGH',NULL,'','Grenada','',0,0,88,'2016-10-17 11:02:56','1900-01-01 00:00:00',1,0,1),(12037,'33888','Hillsborough','HILLSBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:02:56','1900-01-01 00:00:00',1,0,1),(12038,'8238','Hillsborough (North Ireland)','HILLSBOROUGH (NORTH IRELAND)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:56','1900-01-01 00:00:00',1,0,1),(12039,'28851','Hillsdale','HILLSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:56','1900-01-01 00:00:00',1,0,1),(12040,'20594','Hillside','HILLSIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:57','1900-01-01 00:00:00',1,0,1),(12041,'31129','Hillsville','HILLSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:02:57','1900-01-01 00:00:00',1,0,1),(12042,'8240','Hillswick','HILLSWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:58','1900-01-01 00:00:00',1,0,1),(12043,'212','Hilpoltstein','HILPOLTSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:02:58','1900-01-01 00:00:00',1,0,1),(12044,'23452','Hilterfingen','HILTERFINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:02:58','1900-01-01 00:00:00',1,0,1),(12045,'42951','Hilutungan Island','HILUTUNGAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12046,'40597','Hilvarenbeek','HILVARENBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12047,'14639','Hilversum','HILVERSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12048,'42093','Himare','HIMARE',NULL,'','Albania','',0,0,2,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12049,'13245','Himeji','HIMEJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12050,'42539','Himeville','HIMEVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12051,'9273','Himley','HIMLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12052,'24383','Himmelreich','HIMMELREICH',NULL,'','Austria','',0,0,14,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12053,'28852','Himrod','HIMROD',NULL,'','United States','',0,0,231,'2016-10-17 11:02:59','1900-01-01 00:00:00',1,0,1),(12054,'26236','Hinchinbrook Island','HINCHINBROOK ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:00','1900-01-01 00:00:00',1,0,1),(12055,'9312','Hinckley','HINCKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:00','1900-01-01 00:00:00',1,0,1),(12056,'27409','Hinckley','HINCKLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:00','1900-01-01 00:00:00',1,0,1),(12057,'8241','Hindhead','HINDHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:00','1900-01-01 00:00:00',1,0,1),(12058,'8242','Hindon','HINDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:01','1900-01-01 00:00:00',1,0,1),(12059,'29678','Hines','HINES',NULL,'','United States','',0,0,231,'2016-10-17 11:03:01','1900-01-01 00:00:00',1,0,1),(12060,'19833','Hinesville','HINESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:01','1900-01-01 00:00:00',1,0,1),(12061,'21395','Hingham','HINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:03:01','1900-01-01 00:00:00',1,0,1),(12062,'20595','Hinsdale','HINSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12063,'37468','Hinstock','HINSTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12064,'37631','Hinterbruhl','HINTERBRUHL',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12065,'24384','Hinterglemm','HINTERGLEMM',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12066,'27133','Hinterstoder','HINTERSTODER',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12067,'24465','Hintertux','HINTERTUX',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12068,'22560','Hinterzarten','HINTERZARTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12069,'8243','Hintlesham','HINTLESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:02','1900-01-01 00:00:00',1,0,1),(12070,'31993','Hinton','HINTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:03','1900-01-01 00:00:00',1,0,1),(12071,'25323','Hinton','HINTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:03','1900-01-01 00:00:00',1,0,1),(12072,'8244','Hinxworth','HINXWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:03','1900-01-01 00:00:00',1,0,1),(12073,'29377','Hiram','HIRAM',NULL,'','United States','',0,0,231,'2016-10-17 11:03:03','1900-01-01 00:00:00',1,0,1),(12074,'43907','Hiratsuka','HIRATSUKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12075,'13246','Hirosaki','HIROSAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12076,'22561','Hirsau','HIRSAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12077,'37864','Hirschaid','HIRSCHAID',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12078,'1884','Hirschberg','HIRSCHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12079,'24521','Hirschegg','HIRSCHEGG',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12080,'23035','Hirslanden','HIRSLANDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12081,'2240','Hirtshals','HIRTSHALS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12082,'42171','Hisar','HISAR',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12083,'24774','Hisarja','HISARJA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12084,'17210','Hisaronu','HISARONU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12085,'43509','Hisaronu-ovacik','HISARONU-OVACIK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:03:04','1900-01-01 00:00:00',1,0,1),(12086,'42618','Hisavvk','HISAVVK',NULL,'','Iceland','',0,0,100,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12087,'16902','Hisings Backa','HISINGS BACKA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12088,'13247','Hitachi','HITACHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12089,'43908','Hitachinaka','HITACHINAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12090,'8245','Hitchin','HITCHIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12091,'16160','Hitiaa','HITIAA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12092,'27231','Hitzacker','HITZACKER',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12093,'33160','Hixson','HIXSON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:05','1900-01-01 00:00:00',1,0,1),(12094,'2241','Hjallerup','HJALLERUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12095,'2261','Hjerting','HJERTING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12096,'16883','Hjo','HJO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12097,'2242','Hjorring','HJORRING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12098,'34948','Hluboka Nad Vltavou','HLUBOKA NAD VLTAVOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12099,'32517','Hluhluwe','HLUHLUWE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12100,'9925','Ho Man Tin','HO MAN TIN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12101,'32104','Hoback Junction','HOBACK JUNCTION',NULL,'','United States','',0,0,231,'2016-10-17 11:03:06','1900-01-01 00:00:00',1,0,1),(12102,'20904','Hobart','HOBART',NULL,'','United States','',0,0,231,'2016-10-17 11:03:07','1900-01-01 00:00:00',1,0,1),(12103,'26845','Hobart','HOBART',NULL,'','Australia','Hobart',0,0,13,'2016-10-17 11:03:07','1900-01-01 00:00:00',1,0,1),(12104,'28532','Hobbs','HOBBS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:07','1900-01-01 00:00:00',1,0,1),(12105,'19394','Hobe Sound','HOBE SOUND',NULL,'','United States','',0,0,231,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12106,'24608','Hoboken','HOBOKEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12107,'28303','Hoboken','HOBOKEN',NULL,'','United States','',0,0,231,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12108,'2243','Hobro','HOBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12109,'15204','Hobsonville','HOBSONVILLE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12110,'32281','Hoc Mon','HOC MON',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12111,'41634','Hochberg','HOCHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12112,'22562','Hochenschwand','HOCHENSCHWAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:08','1900-01-01 00:00:00',1,0,1),(12113,'24466','Hochgurgl','HOCHGURGL',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12114,'35876','Hochrindl','HOCHRINDL',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12115,'22563','Hochst','HOCHST',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12116,'22564','Hockenheim','HOCKENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12117,'7119','Hockley Heath','HOCKLEY HEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12118,'8246','Hockliffe','HOCKLIFFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12119,'32349','Hodeidah','HODEIDAH',NULL,'','Yemen','',0,0,240,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12120,'186','Hodenhagen','HODENHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12121,'33656','Hodgenville','HODGENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:09','1900-01-01 00:00:00',1,0,1),(12122,'13248','Hodogayacho','HODOGAYACHO',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12123,'187','Hoechberg','HOECHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12124,'32567','Hoedspruit','HOEDSPRUIT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12125,'38906','Hoeilaart','HOEILAART',NULL,'','Belgium','',0,0,21,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12126,'14540','Hoenderloo','HOENDERLOO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12127,'37805','Hoenheim','HOENHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12128,'14541','Hoevelaken','HOEVELAKEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12129,'38377','Hoeven','HOEVEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12130,'39577','Hofen','HOFEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12131,'20596','Hoffman Estates','HOFFMAN ESTATES',NULL,'','United States','',0,0,231,'2016-10-17 11:03:10','1900-01-01 00:00:00',1,0,1),(12132,'436','Hofgeismar','HOFGEISMAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12133,'41023','Hofheim','HOFHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12134,'35441','Hofn','HOFN',NULL,'','Iceland','Hofn',0,0,100,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12135,'39306','Hoganas','HOGANAS',NULL,'','Sweden','',0,0,209,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12136,'28854','Hogansburg','HOGANSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12137,'19836','Hogansville','HOGANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:11','1900-01-01 00:00:00',1,0,1),(12138,'37237','Hogyesz','HOGYESZ',NULL,'','Hungary','',0,0,99,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12139,'215','Hohenau','HOHENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12140,'24522','Hohenems','HOHENEMS',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12141,'216','Hohenlinden','HOHENLINDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12142,'188','Hohenlohe','HOHENLOHE',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12143,'1703','Hohenroda','HOHENRODA',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12144,'41022','Hohenschwangau','HOHENSCHWANGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:12','1900-01-01 00:00:00',1,0,1),(12145,'33161','Hohenwald','HOHENWALD',NULL,'','United States','',0,0,231,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12146,'217','Hohenwarth','HOHENWARTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12147,'23877','Hohhot','HOHHOT',NULL,'','China','',0,0,46,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12148,'39843','Hohnstein (Saxony)','HOHNSTEIN (SAXONY)',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12149,'189','Höhr-grenzhausen','HÖHR-GRENZHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12150,'714','Hohwacht','HOHWACHT',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12151,'2191','Hojbjerg','HOJBJERG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12152,'41220','Hoje Taastrup','HOJE TAASTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:13','1900-01-01 00:00:00',1,0,1),(12153,'2296','Hojer','HOJER',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12154,'36506','Hokianga','HOKIANGA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12155,'15205','Hokitika','HOKITIKA',NULL,'','New Zealand','Hokitika',0,0,157,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12156,'43539','Hokkaido','HOKKAIDO',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12157,'35755','Hokuto','HOKUTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12158,'2149','Holbaek','HOLBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12159,'8247','Holbeach','HOLBEACH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12160,'8248','Holbeton','HOLBETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12161,'8249','Holborn','HOLBORN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12162,'1297','Holbox','HOLBOX',NULL,'','MEXICO','',0,0,141,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12163,'34191','Holbrook','HOLBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:14','1900-01-01 00:00:00',1,0,1),(12164,'21396','Holbrook','HOLBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:03:15','1900-01-01 00:00:00',1,0,1),(12165,'31769','Holcombe','HOLCOMBE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:16','1900-01-01 00:00:00',1,0,1),(12166,'21878','Holden','HOLDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:03:16','1900-01-01 00:00:00',1,0,1),(12167,'32713','Holderness','HOLDERNESS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:16','1900-01-01 00:00:00',1,0,1),(12168,'28129','Holdrege','HOLDREGE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12169,'25245','Holetown','HOLETOWN',NULL,'','Barbados','',0,0,19,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12170,'8250','Holford','HOLFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12171,'34942','Holguin','HOLGUIN',NULL,'','Cuba','',0,0,56,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12172,'29982','Holicong','HOLICONG',NULL,'','United States','',0,0,231,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12173,'19395','Holiday','HOLIDAY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:17','1900-01-01 00:00:00',1,0,1),(12174,'33162','Holladay','HOLLADAY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:18','1900-01-01 00:00:00',1,0,1),(12175,'22105','Holland','HOLLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:03:18','1900-01-01 00:00:00',1,0,1),(12176,'39093','Holland Park','HOLLAND PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12177,'7120','Holland-on-sea','HOLLAND-ON-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12178,'27232','Hollenstedt','HOLLENSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12179,'29983','Hollidaysburg','HOLLIDAYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12180,'17643','Hollis','HOLLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:19','1900-01-01 00:00:00',1,0,1),(12181,'27663','Hollister','HOLLISTER',NULL,'','United States','',0,0,231,'2016-10-17 11:03:20','1900-01-01 00:00:00',1,0,1),(12182,'14513','Hollum','HOLLUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:20','1900-01-01 00:00:00',1,0,1),(12183,'25770','Holman Island','HOLMAN ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:22','1900-01-01 00:00:00',1,0,1),(12184,'28304','Holmdel','HOLMDEL',NULL,'','United States','',0,0,231,'2016-10-17 11:03:22','1900-01-01 00:00:00',1,0,1),(12185,'19401','Holmes Beach','HOLMES BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12186,'8251','Holmes Chapel','HOLMES CHAPEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12187,'14774','Holmestrand','HOLMESTRAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12188,'7121','Holmrook','HOLMROOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12189,'14867','Holmsbu','HOLMSBU',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12190,'42349','Holnon','HOLNON',NULL,'','France','',0,0,76,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12191,'11072','Holon','HOLON',NULL,'','Israel','',0,0,106,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12192,'34192','Holroyd','HOLROYD',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12193,'2274','Holstebro','HOLSTEBRO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:23','1900-01-01 00:00:00',1,0,1),(12194,'190','Holsteinische Schweiz','HOLSTEINISCHE SCHWEIZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12195,'9858','Holsteinsborg','HOLSTEINSBORG',NULL,'','Greenland','',0,0,87,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12196,'8252','Holsworthy','HOLSWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12197,'2215','Holte','HOLTE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12198,'36457','Holten','HOLTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12199,'21068','Holton','HOLTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12200,'27664','Holts Summit','HOLTS SUMMIT',NULL,'','United States','',0,0,231,'2016-10-17 11:03:24','1900-01-01 00:00:00',1,0,1),(12201,'28856','Holtsville','HOLTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12202,'18538','Holtville','HOLTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12203,'43718','Holtze','HOLTZE',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12204,'38266','Holtzheim','HOLTZHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12205,'19998','Holualoa','HOLUALOA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:25','1900-01-01 00:00:00',1,0,1),(12206,'17644','Holy Cross','HOLY CROSS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12207,'8253','Holyhead','HOLYHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12208,'21397','Holyoke','HOLYOKE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12209,'25660','Holyrood','HOLYROOD',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12210,'8254','Holywell','HOLYWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12211,'8255','Holywood','HOLYWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:26','1900-01-01 00:00:00',1,0,1),(12212,'39431','Holzgau','HOLZGAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12213,'218','Holzkirchen','HOLZKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12214,'22986','Home Island','HOME ISLAND',NULL,'','Cocos (Keeling) Islands','',0,0,0,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12215,'34193','Homebush','HOMEBUSH',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12216,'28857','Homer','HOMER',NULL,'','United States','',0,0,231,'2016-10-17 11:03:27','1900-01-01 00:00:00',1,0,1),(12217,'20219','Homestead','HOMESTEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:03:28','1900-01-01 00:00:00',1,0,1),(12218,'20597','Homewood','HOMEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:03:28','1900-01-01 00:00:00',1,0,1),(12219,'14990','Hommelvik','HOMMELVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:29','1900-01-01 00:00:00',1,0,1),(12220,'19403','Homosassa','HOMOSASSA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:29','1900-01-01 00:00:00',1,0,1),(12221,'16929','Homs','HOMS',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:03:29','1900-01-01 00:00:00',1,0,1),(12222,'19999','Honalo','HONALO',NULL,'','United States','',0,0,231,'2016-10-17 11:03:29','1900-01-01 00:00:00',1,0,1),(12223,'20000','Honaunau','HONAUNAU',NULL,'','United States','',0,0,231,'2016-10-17 11:03:30','1900-01-01 00:00:00',1,0,1),(12224,'30685','Hondo','HONDO',NULL,'','United States','',0,0,231,'2016-10-17 11:03:30','1900-01-01 00:00:00',1,0,1),(12225,'23454','Hondrich','HONDRICH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:30','1900-01-01 00:00:00',1,0,1),(12226,'30346','Honea Path','HONEA PATH',NULL,'','United States','',0,0,231,'2016-10-17 11:03:31','1900-01-01 00:00:00',1,0,1),(12227,'14868','Honefoss','HONEFOSS',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:31','1900-01-01 00:00:00',1,0,1),(12228,'28858','Honeoye','HONEOYE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:31','1900-01-01 00:00:00',1,0,1),(12229,'29984','Honesdale','HONESDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:31','1900-01-01 00:00:00',1,0,1),(12230,'29985','Honey Brook','HONEY BROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12231,'34517','Honey Harbour','HONEY HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12232,'9926','Hong Kong','HONG KONG',NULL,'','Hong Kong','Hong Kong',0,0,98,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12233,'23236','Hongg','HONGG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12234,'23590','Hongqiao International Airport (Sha)','HONGQIAO INTERNATIONAL AIRPORT (SHA)',NULL,'','China','',0,0,46,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12235,'23890','Hongxing','HONGXING',NULL,'','China','',0,0,46,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12236,'16547','Honiara','HONIARA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12237,'8256','Honiley','HONILEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:32','1900-01-01 00:00:00',1,0,1),(12238,'8257','Honiton','HONITON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12239,'14879','Honningsvag','HONNINGSVAG',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12240,'20001','Honohina','HONOHINA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12241,'20002','Honokaa','HONOKAA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12242,'20003','Honokohau','HONOKOHAU',NULL,'','United States','',0,0,231,'2016-10-17 11:03:33','1900-01-01 00:00:00',1,0,1),(12243,'20004','Honokowai','HONOKOWAI',NULL,'','United States','',0,0,231,'2016-10-17 11:03:34','1900-01-01 00:00:00',1,0,1),(12244,'20005','Honolua','HONOLUA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:34','1900-01-01 00:00:00',1,0,1),(12245,'20006','Honolulu','HONOLULU',NULL,'','United States','',0,0,231,'2016-10-17 11:03:34','1900-01-01 00:00:00',1,0,1),(12246,'20007','Honomu','HONOMU',NULL,'','United States','',0,0,231,'2016-10-17 11:03:35','1900-01-01 00:00:00',1,0,1),(12247,'29679','Hood River','HOOD RIVER',NULL,'','United States','',0,0,231,'2016-10-17 11:03:35','1900-01-01 00:00:00',1,0,1),(12248,'31516','Hoodsport','HOODSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:03:35','1900-01-01 00:00:00',1,0,1),(12249,'14640','Hoofddorp','HOOFDDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:35','1900-01-01 00:00:00',1,0,1),(12250,'14468','Hoog Soeren','HOOG SOEREN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12251,'14496','Hoogeveen','HOOGEVEEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12252,'43286','Hook','HOOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12253,'26237','Hooker Creek','HOOKER CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12254,'32714','Hooksett','HOOKSETT',NULL,'','United States','',0,0,231,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12255,'7124','Hoole','HOOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:36','1900-01-01 00:00:00',1,0,1),(12256,'20008','Hoolehua','HOOLEHUA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:37','1900-01-01 00:00:00',1,0,1),(12257,'17646','Hoonah','HOONAH',NULL,'','United States','',0,0,231,'2016-10-17 11:03:37','1900-01-01 00:00:00',1,0,1),(12258,'18540','Hoopa','HOOPA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:37','1900-01-01 00:00:00',1,0,1),(12259,'17647','Hooper Bay','HOOPER BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:37','1900-01-01 00:00:00',1,0,1),(12260,'20598','Hoopeston','HOOPESTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:38','1900-01-01 00:00:00',1,0,1),(12261,'43258','Hoora','HOORA',NULL,'','Bahrain','',0,0,17,'2016-10-17 11:03:38','1900-01-01 00:00:00',1,0,1),(12262,'17897','Hoover','HOOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:03:38','1900-01-01 00:00:00',1,0,1),(12263,'28305','Hopatcong','HOPATCONG',NULL,'','United States','',0,0,231,'2016-10-17 11:03:38','1900-01-01 00:00:00',1,0,1),(12264,'26707','Hope Island','HOPE ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12265,'24884','Hope Town','HOPE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12266,'25661','Hopedale','HOPEDALE',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12267,'26515','Hopetoun','HOPETOUN',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12268,'28860','Hopewell','HOPEWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:03:40','1900-01-01 00:00:00',1,0,1),(12269,'219','Hopfen Am See','HOPFEN AM SEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:41','1900-01-01 00:00:00',1,0,1),(12270,'41021','Hopfensee','HOPFENSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:41','1900-01-01 00:00:00',1,0,1),(12271,'39973','Hopfgarten Im Brixental','HOPFGARTEN IM BRIXENTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:03:41','1900-01-01 00:00:00',1,0,1),(12272,'24923','Hopkins','HOPKINS',NULL,'','Belize','',0,0,22,'2016-10-17 11:03:42','1900-01-01 00:00:00',1,0,1),(12273,'33657','Hopkinsville','HOPKINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:42','1900-01-01 00:00:00',1,0,1),(12274,'18541','Hopland','HOPLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:03:42','1900-01-01 00:00:00',1,0,1),(12275,'31517','Hoquiam','HOQUIAM',NULL,'','United States','',0,0,231,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12276,'22565','Horben','HORBEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12277,'4282','Horbourg-wihr','HORBOURG-WIHR',NULL,'','France','',0,0,76,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12278,'3407','Horche','HORCHE',NULL,'','Spain','',0,0,199,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12279,'14801','Hordaland','HORDALAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12280,'220','Horgau','HORGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12281,'23237','Horgen','HORGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:43','1900-01-01 00:00:00',1,0,1),(12282,'39221','Horice Na Sumave','HORICE NA SUMAVE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12283,'10983','Hornafjordur','HORNAFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12284,'44137','Horn-bad Meinberg','HORN-BAD MEINBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12285,'2176','Hornbaek','HORNBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12286,'22567','Hornberg','HORNBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12287,'15206','Hornby','HORNBY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:44','1900-01-01 00:00:00',1,0,1),(12288,'8261','Horncastle','HORNCASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12289,'8262','Hornchurch','HORNCHURCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12290,'28862','Hornell','HORNELL',NULL,'','United States','',0,0,231,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12291,'34518','Hornepayne','HORNEPAYNE',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12292,'14802','Hornindal','HORNINDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12293,'2150','Horning','HORNING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12294,'39358','Horningsham','HORNINGSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12295,'9299','Horns Cross','HORNS CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:45','1900-01-01 00:00:00',1,0,1),(12296,'8263','Hornsea','HORNSEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12297,'2151','Hornslet','HORNSLET',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12298,'36700','Horny Smokovec','HORNY SMOKOVEC',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12299,'15114','Horohoro','HOROHORO',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12300,'24153','Horquetas','HORQUETAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12301,'8264','Horringford','HORRINGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12302,'25458','Horsefly','HORSEFLY',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:46','1900-01-01 00:00:00',1,0,1),(12303,'28863','Horseheads','HORSEHEADS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12304,'40014','Horsemans Green','HORSEMANS GREEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12305,'2348','Horsens','HORSENS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12306,'25459','Horseshoe Bay','HORSESHOE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12307,'30686','Horseshoe Bay','HORSESHOE BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:03:47','1900-01-01 00:00:00',1,0,1),(12308,'26909','Horsham','HORSHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:03:48','1900-01-01 00:00:00',1,0,1),(12309,'29986','Horsham','HORSHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:03:48','1900-01-01 00:00:00',1,0,1),(12310,'8265','Horsham','HORSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:48','1900-01-01 00:00:00',1,0,1),(12311,'14572','Horst','HORST',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12312,'510','Horstel','HORSTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12313,'2037','Hörstel','HÖRSTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12314,'2643','Horta-guinardo','HORTA-GUINARDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12315,'2995','Hortaleza','HORTALEZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12316,'15024','Horten','HORTEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12317,'38038','Horto','HORTO',NULL,'','Greece','',0,0,86,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12318,'35341','Hortobagy','HORTOBAGY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12319,'8266','Horton (Dorset)','HORTON (DORSET)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:49','1900-01-01 00:00:00',1,0,1),(12320,'7125','Horton-cum-studley','HORTON-CUM-STUDLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12321,'13736','Horubadhoo Island','HORUBADHOO ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12322,'27233','Horumersiel','HORUMERSIEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12323,'23238','Horw','HORW',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12324,'8268','Horwich','HORWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12325,'42602','Hosapete','HOSAPETE',NULL,'','India','',0,0,101,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12326,'40382','Hoskote','HOSKOTE',NULL,'','India','',0,0,101,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12327,'40853','Hospet','HOSPET',NULL,'','India','Hospet',17,0,101,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12328,'41505','Hospitalet De Llobregat','HOSPITALET DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:03:50','1900-01-01 00:00:00',1,0,1),(12329,'5193','Hossegor','HOSSEGOR',NULL,'','France','',0,0,76,'2016-10-17 11:03:51','1900-01-01 00:00:00',1,0,1),(12330,'44209','Hosur','HOSUR',NULL,'','India','Hosur',18,0,101,'2016-10-17 11:03:51','1900-01-01 00:00:00',1,0,1),(12331,'15115','Hot Water Beach','HOT WATER BEACH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:03:52','1900-01-01 00:00:00',1,0,1),(12332,'23839','Hotan','HOTAN',NULL,'','China','',0,0,46,'2016-10-17 11:03:52','1900-01-01 00:00:00',1,0,1),(12333,'33464','Hotchkiss','HOTCHKISS',NULL,'','United States','',0,0,231,'2016-10-17 11:03:52','1900-01-01 00:00:00',1,0,1),(12334,'23036','Hottingen','HOTTINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12335,'14429','Houailou','HOUAILOU',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12336,'13538','Houayxay','HOUAYXAY',NULL,'','Laos','',0,0,118,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12337,'39752','Houdan','HOUDAN',NULL,'','France','',0,0,76,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12338,'6034','Houdemont','HOUDEMONT',NULL,'','France','',0,0,76,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12339,'24663','Houdeng-goegnies','HOUDENG-GOEGNIES',NULL,'','Belgium','',0,0,21,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12340,'38689','Houffalize','HOUFFALIZE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12341,'8269','Houghton','HOUGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12342,'28864','Houghton','HOUGHTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:53','1900-01-01 00:00:00',1,0,1),(12343,'4726','Houilles','HOUILLES',NULL,'','France','',0,0,76,'2016-10-17 11:03:54','1900-01-01 00:00:00',1,0,1),(12344,'23961','Houjie','HOUJIE',NULL,'','China','',0,0,46,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12345,'9478','Houlakia','HOULAKIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12346,'5400','Houlgate','HOULGATE',NULL,'','France','',0,0,76,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12347,'21880','Houlton','HOULTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12348,'21209','Houma','HOUMA',NULL,'','United States','',0,0,231,'2016-10-17 11:03:55','1900-01-01 00:00:00',1,0,1),(12349,'41198','Houmt Souk - Djerba','HOUMT SOUK - DJERBA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12350,'13563','Houn','HOUN',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12351,'8270','Hounslow','HOUNSLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12352,'5194','Hourtin','HOURTIN',NULL,'','France','',0,0,76,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12353,'6764','Houssen','HOUSSEN',NULL,'','France','',0,0,76,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12354,'27665','Houston','HOUSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:03:56','1900-01-01 00:00:00',1,0,1),(12355,'36926','Houston-intl Apt','HOUSTON-INTL APT',NULL,'','United States','',0,0,231,'2016-10-17 11:03:57','1900-01-01 00:00:00',1,0,1),(12356,'32401','Hout Bay','HOUT BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:03:57','1900-01-01 00:00:00',1,0,1),(12357,'39918','Houten','HOUTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12358,'2262','Hovborg','HOVBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12359,'15003','Hovden','HOVDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12360,'14803','Hovedoya','HOVEDOYA',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12361,'14847','Hovik','HOVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12362,'8272','Hovingham','HOVINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12363,'19405','Howard','HOWARD',NULL,'','United States','',0,0,231,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12364,'8273','Howden','HOWDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:03:58','1900-01-01 00:00:00',1,0,1),(12365,'20905','Howe','HOWE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:59','1900-01-01 00:00:00',1,0,1),(12366,'22110','Howell','HOWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:03:59','1900-01-01 00:00:00',1,0,1),(12367,'28865','Howes Cave','HOWES CAVE',NULL,'','United States','',0,0,231,'2016-10-17 11:03:59','1900-01-01 00:00:00',1,0,1),(12368,'19406','Howey-in-the-hills','HOWEY-IN-THE-HILLS',NULL,'','United States','',0,0,231,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12369,'15207','Howick','HOWICK',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12370,'44210','Howrah','HOWRAH',NULL,'','India','Howrah',12,0,101,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12371,'7126','Howtown','HOWTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12372,'36316','Howwood','HOWWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12373,'511','Hoxter','HOXTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12374,'7127','Hoy Island','HOY ISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:00','1900-01-01 00:00:00',1,0,1),(12375,'1885','Hoyerswerda','HOYERSWERDA',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12376,'40176','Hoylake','HOYLAKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12377,'38135','Hoylandet','HOYLANDET',NULL,'','Norway','',0,0,164,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12378,'2644','Hoyos De Espino','HOYOS DE ESPINO',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12379,'27412','Hoyt Lakes','HOYT LAKES',NULL,'','United States','',0,0,231,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12380,'24345','Hradec Kralove','HRADEC KRALOVE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12381,'40406','Hsin Shih','HSIN SHIH',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12382,'17442','Hsinchu','HSINCHU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12383,'17389','Hsinchuang','HSINCHUANG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:04:01','1900-01-01 00:00:00',1,0,1),(12384,'23962','Huadu','HUADU',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12385,'16161','Huahine','HUAHINE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12386,'36531','Huahine-te Tiare','HUAHINE-TE TIARE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12387,'34872','Huai Nan','HUAI NAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12388,'40091','Huai Yang','HUAI YANG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12389,'42391','Huaian','HUAIAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12390,'23739','Huai\'an','HUAI\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12391,'43823','Huainan','HUAINAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12392,'17390','Hualien','HUALIEN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12393,'14113','Huamantla','HUAMANTLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:02','1900-01-01 00:00:00',1,0,1),(12394,'25850','Huambo','HUAMBO',NULL,'','Angola','',0,0,6,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12395,'23963','Huanghua','HUANGHUA',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12396,'34874','Huanglong','HUANGLONG',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12397,'23591','Huangpu - The Bund','HUANGPU - THE BUND',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12398,'23683','Huangshan','HUANGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12399,'43824','Huangshi','HUANGSHI',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12400,'23698','Huangyan','HUANGYAN',NULL,'','China','',0,0,46,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12401,'36523','Huaraz','HUARAZ',NULL,'','Peru','',0,0,172,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12402,'3056','Huarte','HUARTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12403,'14003','Huasca De Ocampo','HUASCA DE OCAMPO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12404,'35940','Huatajata','HUATAJATA',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12405,'13818','Huatulco','HUATULCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:03','1900-01-01 00:00:00',1,0,1),(12407,'29379','Hubbard','HUBBARD',NULL,'','United States','',0,0,231,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12408,'25716','Hubbards','HUBBARDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12409,'29380','Huber Heights','HUBER HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12410,'779','Hubertushohe','HUBERTUSHOHE',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12411,'10658','Hubli','HUBLI',NULL,'','India','Hubli',17,0,101,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12412,'37437','Huckelhoven','HUCKELHOVEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:04','1900-01-01 00:00:00',1,0,1),(12413,'8274','Huddersfield','HUDDERSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12414,'16827','Huddinge','HUDDINGE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12415,'31133','Huddleston','HUDDLESTON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12416,'16699','Hudiksvall','HUDIKSVALL',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12417,'26005','Hudson','HUDSON',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:05','1900-01-01 00:00:00',1,0,1),(12418,'21399','Hudson, Town Of','HUDSON, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:04:07','1900-01-01 00:00:00',1,0,1),(12419,'42934','Hudson\'s Hope','HUDSON\'S HOPE',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:07','1900-01-01 00:00:00',1,0,1),(12420,'22113','Hudsonville','HUDSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:07','1900-01-01 00:00:00',1,0,1),(12421,'32304','Hue','HUE',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:04:07','1900-01-01 00:00:00',1,0,1),(12422,'37305','Hueckeswagen','HUECKESWAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12423,'35310','Huehuetenango','HUEHUETENANGO',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12424,'14066','Huejotzingo','HUEJOTZINGO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12425,'38749','Huejutla De Reyes','HUEJUTLA DE REYES',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12426,'20009','Huelo','HUELO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12427,'2950','Huelva','HUELVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:08','1900-01-01 00:00:00',1,0,1),(12428,'35030','Huelva-cartaya','HUELVA-CARTAYA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12429,'191','Huerth','HUERTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12430,'3330','Huesca','HUESCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12431,'38094','Huetor Vega','HUETOR VEGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12432,'8275','Hugh Town','HUGH TOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12433,'26410','Hughenden','HUGHENDEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:09','1900-01-01 00:00:00',1,0,1),(12434,'17648','Hughes','HUGHES',NULL,'','United States','',0,0,231,'2016-10-17 11:04:10','1900-01-01 00:00:00',1,0,1),(12435,'32915','Hugo','HUGO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:10','1900-01-01 00:00:00',1,0,1),(12436,'41807','Huhhot','HUHHOT',NULL,'','China','',0,0,46,'2016-10-17 11:04:11','1900-01-01 00:00:00',1,0,1),(12437,'42643','Huilo Huilo','HUILO HUILO',NULL,'','Chile','',0,0,45,'2016-10-17 11:04:11','1900-01-01 00:00:00',1,0,1),(12438,'13143','Huis Ten Bosch','HUIS TEN BOSCH',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:11','1900-01-01 00:00:00',1,0,1),(12439,'14642','Huisduinen','HUISDUINEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:04:11','1900-01-01 00:00:00',1,0,1),(12440,'14035','Huixquilucan De Degollado','HUIXQUILUCAN DE DEGOLLADO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:12','1900-01-01 00:00:00',1,0,1),(12441,'38859','Huiyang','HUIYANG',NULL,'','China','',0,0,46,'2016-10-17 11:04:12','1900-01-01 00:00:00',1,0,1),(12442,'23964','Huizhou','HUIZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:04:12','1900-01-01 00:00:00',1,0,1),(12443,'24630','Huldenberg','HULDENBERG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:04:12','1900-01-01 00:00:00',1,0,1),(12444,'32105','Hulett','HULETT',NULL,'','United States','',0,0,231,'2016-10-17 11:04:13','1900-01-01 00:00:00',1,0,1),(12445,'13737','Hulhule','HULHULE',NULL,'','Maldives','',0,0,133,'2016-10-17 11:04:14','1900-01-01 00:00:00',1,0,1),(12446,'26006','Hull','HULL',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:14','1900-01-01 00:00:00',1,0,1),(12447,'9306','Hull','HULL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:15','1900-01-01 00:00:00',1,0,1),(12448,'438','Hülsa','HÜLSA',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:15','1900-01-01 00:00:00',1,0,1),(12449,'14542','Hulshorst','HULSHORST',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:04:15','1900-01-01 00:00:00',1,0,1),(12450,'857','Hulshout','HULSHOUT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:04:15','1900-01-01 00:00:00',1,0,1),(12451,'16729','Hultsfred','HULTSFRED',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:16','1900-01-01 00:00:00',1,0,1),(12452,'15752','Humacao','HUMACAO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:04:16','1900-01-01 00:00:00',1,0,1),(12453,'25662','Humber Valley','HUMBER VALLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:16','1900-01-01 00:00:00',1,0,1),(12454,'7128','Humberside','HUMBERSIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:17','1900-01-01 00:00:00',1,0,1),(12455,'8276','Humbie','HUMBIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:17','1900-01-01 00:00:00',1,0,1),(12456,'30691','Humble','HUMBLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:18','1900-01-01 00:00:00',1,0,1),(12457,'22946','Humboldt','HUMBOLDT',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:18','1900-01-01 00:00:00',1,0,1),(12458,'20221','Humboldt','HUMBOLDT',NULL,'','United States','',0,0,231,'2016-10-17 11:04:19','1900-01-01 00:00:00',1,0,1),(12459,'23965','Humen','HUMEN',NULL,'','China','',0,0,46,'2016-10-17 11:04:19','1900-01-01 00:00:00',1,0,1),(12460,'42835','Humenne','HUMENNE',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:04:19','1900-01-01 00:00:00',1,0,1),(12461,'3859','Humera','HUMERA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:04:20','1900-01-01 00:00:00',1,0,1),(12462,'32462','Humewood','HUMEWOOD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:04:20','1900-01-01 00:00:00',1,0,1),(12463,'2177','Humlebaek','HUMLEBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:20','1900-01-01 00:00:00',1,0,1),(12464,'29987','Hummels Wharf','HUMMELS WHARF',NULL,'','United States','',0,0,231,'2016-10-17 11:04:20','1900-01-01 00:00:00',1,0,1),(12465,'29988','Hummelstown','HUMMELSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:04:21','1900-01-01 00:00:00',1,0,1),(12466,'2178','Hundested','HUNDESTED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:21','1900-01-01 00:00:00',1,0,1),(12467,'8277','Hundleton','HUNDLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:22','1900-01-01 00:00:00',1,0,1),(12468,'43598','Hundon','HUNDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:22','1900-01-01 00:00:00',1,0,1),(12469,'36625','Hunedoara','HUNEDOARA',NULL,'','Romania','',0,0,179,'2016-10-17 11:04:22','1900-01-01 00:00:00',1,0,1),(12470,'42903','Hunfeld','HUNFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:22','1900-01-01 00:00:00',1,0,1),(12471,'8278','Hungerford','HUNGERFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12472,'23239','Hunibach','HUNIBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12473,'8279','Hunmanby','HUNMANBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12474,'8280','Hunstanton','HUNSTANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12475,'7129','Hunstrete','HUNSTRETE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12476,'17899','Hunstville Area','HUNSTVILLE AREA',NULL,'','United States','',0,0,231,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12477,'38721','Hunsur','HUNSUR',NULL,'','India','',0,0,101,'2016-10-17 11:04:23','1900-01-01 00:00:00',1,0,1),(12478,'30692','Hunt','HUNT',NULL,'','United States','',0,0,231,'2016-10-17 11:04:24','1900-01-01 00:00:00',1,0,1),(12479,'28867','Hunter','HUNTER',NULL,'','United States','',0,0,231,'2016-10-17 11:04:24','1900-01-01 00:00:00',1,0,1),(12480,'34194','Hunter Valley','HUNTER VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:24','1900-01-01 00:00:00',1,0,1),(12481,'18542','Hunters Point','HUNTERS POINT',NULL,'','United States','',0,0,231,'2016-10-17 11:04:25','1900-01-01 00:00:00',1,0,1),(12482,'33892','Huntersville','HUNTERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:25','1900-01-01 00:00:00',1,0,1),(12483,'24908','Hunting Caye','HUNTING CAYE',NULL,'','Belize','',0,0,22,'2016-10-17 11:04:25','1900-01-01 00:00:00',1,0,1),(12484,'30347','Hunting Island','HUNTING ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:04:25','1900-01-01 00:00:00',1,0,1),(12485,'20906','Huntingburg','HUNTINGBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:04:26','1900-01-01 00:00:00',1,0,1),(12486,'29989','Huntingdon','HUNTINGDON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:26','1900-01-01 00:00:00',1,0,1),(12487,'8281','Huntingdon','HUNTINGDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:26','1900-01-01 00:00:00',1,0,1),(12488,'31994','Huntington','HUNTINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:27','1900-01-01 00:00:00',1,0,1),(12489,'44014','Huntly','HUNTLY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:04:29','1900-01-01 00:00:00',1,0,1),(12490,'8282','Huntly','HUNTLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:29','1900-01-01 00:00:00',1,0,1),(12491,'8283','Hunton','HUNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:29','1900-01-01 00:00:00',1,0,1),(12492,'7130','Hunts Cross','HUNTS CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:30','1900-01-01 00:00:00',1,0,1),(12493,'25717','Hunts Point','HUNTS POINT',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:30','1900-01-01 00:00:00',1,0,1),(12494,'30694','Huntsville','HUNTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:30','1900-01-01 00:00:00',1,0,1),(12495,'34520','Huntsville','HUNTSVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:31','1900-01-01 00:00:00',1,0,1),(12496,'2427','Hurghada','HURGHADA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:04:31','1900-01-01 00:00:00',1,0,1),(12497,'31772','Hurley','HURLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:04:31','1900-01-01 00:00:00',1,0,1),(12498,'8284','Hurley','HURLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:32','1900-01-01 00:00:00',1,0,1),(12499,'26073','Hurlingham','HURLINGHAM',NULL,'','Argentina','',0,0,10,'2016-10-17 11:04:32','1900-01-01 00:00:00',1,0,1),(12500,'29382','Huron','HURON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:32','1900-01-01 00:00:00',1,0,1),(12501,'31996','Hurricane','HURRICANE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:32','1900-01-01 00:00:00',1,0,1),(12502,'34195','Hurstville','HURSTVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:33','1900-01-01 00:00:00',1,0,1),(12503,'41020','Hurth','HURTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:33','1900-01-01 00:00:00',1,0,1),(12504,'37580','Hurup','HURUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12505,'11018','Husavik','HUSAVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12506,'36626','Husi','HUSI',NULL,'','Romania','',0,0,179,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12507,'34196','Huskisson','HUSKISSON',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12508,'16720','Huskvarna','HUSKVARNA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12509,'17649','Huslia','HUSLIA',NULL,'','United States','',0,0,231,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12510,'40005','Hustopece','HUSTOPECE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12511,'2231','Husum','HUSUM',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12512,'27234','Husum','HUSUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:34','1900-01-01 00:00:00',1,0,1),(12513,'30696','Hutchins','HUTCHINS',NULL,'','United States','',0,0,231,'2016-10-17 11:04:35','1900-01-01 00:00:00',1,0,1),(12514,'27413','Hutchinson','HUTCHINSON',NULL,'','United States','',0,0,231,'2016-10-17 11:04:35','1900-01-01 00:00:00',1,0,1),(12515,'30697','Hutto','HUTTO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12516,'43335','Huttwil','HUTTWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12517,'13739','Huvafen Fushi','HUVAFEN FUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12518,'37848','Huvahendhoo','HUVAHENDHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12519,'8285','Huxley','HUXLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12520,'24674','Huy','HUY',NULL,'','Belgium','',0,0,21,'2016-10-17 11:04:36','1900-01-01 00:00:00',1,0,1),(12521,'2244','Hvalpsund','HVALPSUND',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12522,'11020','Hvammstangi','HVAMMSTANGI',NULL,'','Iceland','',0,0,100,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12523,'10013','Hvar','HVAR',NULL,'','Croatia','',0,0,55,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12524,'35442','Hveragerdhi','HVERAGERDHI',NULL,'','Iceland','',0,0,100,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12525,'10984','Hveragerdi','HVERAGERDI',NULL,'','Iceland','Hveragerdi',0,0,100,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12526,'2320','Hvidbjerg','HVIDBJERG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12527,'2216','Hvidovre','HVIDOVRE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12528,'37657','Hvolsvollur','HVOLSVOLLUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12529,'32652','Hwange','HWANGE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12530,'21401','Hyannis','HYANNIS',NULL,'','United States','',0,0,231,'2016-10-17 11:04:37','1900-01-01 00:00:00',1,0,1),(12531,'21716','Hyattsville','HYATTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:04:38','1900-01-01 00:00:00',1,0,1),(12532,'17650','Hydaburg','HYDABURG',NULL,'','United States','',0,0,231,'2016-10-17 11:04:38','1900-01-01 00:00:00',1,0,1),(12533,'8286','Hyde','HYDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:39','1900-01-01 00:00:00',1,0,1),(12534,'28870','Hyde Park','HYDE PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:04:39','1900-01-01 00:00:00',1,0,1),(12535,'26804','Hyde Park','HYDE PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:39','1900-01-01 00:00:00',1,0,1),(12536,'42914','Hyden','HYDEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12537,'17651','Hyder','HYDER',NULL,'','United States','',0,0,231,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12538,'10617','Hyderabad','HYDERABAD',NULL,'','India','Hyderabad',51,0,101,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12539,'15288','Hyderabad','HYDERABAD',NULL,'','Pakistan','Hyderabad',0,0,166,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12540,'41635','Hydra','HYDRA',NULL,'','Greece','Hydra',0,0,86,'2016-10-17 11:04:40','1900-01-01 00:00:00',1,0,1),(12541,'6441','Hyeres','HYERES',NULL,'','France','',0,0,76,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12542,'39407','Hyevre-paroisse','HYEVRE-PAROISSE',NULL,'','France','',0,0,76,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12543,'13250','Hyogo','HYOGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12544,'43184','Hyogo-ken','HYOGO-KEN',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12545,'8287','Hythe','HYTHE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12546,'3969','Hyvinkaa','HYVINKAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12547,'43419','Ialissos','IALISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12548,'43255','Ialysos','IALYSOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12549,'9480','Ialysus','IALYSUS',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:41','1900-01-01 00:00:00',1,0,1),(12550,'16222','Iasi','IASI',NULL,'','Romania','',0,0,179,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12551,'15488','Iba','IBA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12552,'24126','Ibague','IBAGUE',NULL,'','Colombia','',0,0,49,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12553,'13251','Ibaraki','IBARAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12554,'2398','Ibarra','IBARRA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12555,'3708','Ibarranguelua','IBARRANGUELUA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12556,'512','Ibbenburen','IBBENBUREN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12557,'2902','Ibiza','IBIZA',NULL,'','Spain','Ibiza',0,0,199,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12558,'35016','Ibiza-cala Llonga','IBIZA-CALA LLONGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:42','1900-01-01 00:00:00',1,0,1),(12559,'35062','Ibiza-sa Caleta','IBIZA-SA CALETA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:43','1900-01-01 00:00:00',1,0,1),(12560,'35051','Ibiza-san Agustin','IBIZA-SAN AGUSTIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:43','1900-01-01 00:00:00',1,0,1),(12561,'35087','Ibiza-santa Elaulia','IBIZA-SANTA ELAULIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:43','1900-01-01 00:00:00',1,0,1),(12562,'8288','Ibstone','IBSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:43','1900-01-01 00:00:00',1,0,1),(12563,'37981','Ibusuki','IBUSUKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12564,'15399','Ica','ICA',NULL,'','Peru','',0,0,172,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12565,'35804','Icheon','ICHEON',NULL,'','South Korea','',0,0,197,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12566,'13494','Icheon','ICHEON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12567,'13252','Ichikawa','ICHIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12568,'43909','Ichinoseki','ICHINOSEKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12569,'37929','Icici','ICICI',NULL,'','Croatia','',0,0,55,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12570,'8289','Icklesham','ICKLESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12571,'17305','Icmeler','ICMELER',NULL,'','Turkey','',0,0,222,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12572,'40653','Icod De Los Vinos','ICOD DE LOS VINOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:44','1900-01-01 00:00:00',1,0,1),(12573,'32916','Idabel','IDABEL',NULL,'','United States','',0,0,231,'2016-10-17 11:04:45','1900-01-01 00:00:00',1,0,1),(12574,'20363','Idaho City','IDAHO CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:04:45','1900-01-01 00:00:00',1,0,1),(12575,'15896','Idanha-a-nova','IDANHA-A-NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:04:46','1900-01-01 00:00:00',1,0,1),(12576,'633','Idar-oberstein','IDAR-OBERSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:46','1900-01-01 00:00:00',1,0,1),(12578,'9481','Idhomeni','IDHOMENI',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:46','1900-01-01 00:00:00',1,0,1),(12579,'1305','Idleb','IDLEB',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:04:46','1900-01-01 00:00:00',1,0,1),(12580,'29681','Idleyld Park','IDLEYLD PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12581,'36716','Idlib','IDLIB',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12582,'16741','Idre','IDRE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12583,'11238','Idro','IDRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12584,'439','Idstein','IDSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12585,'10526','Idukki','IDUKKI',NULL,'','India','Idukki',3,0,101,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12586,'18546','Idyllwild','IDYLLWILD',NULL,'','United States','',0,0,231,'2016-10-17 11:04:47','1900-01-01 00:00:00',1,0,1),(12587,'34850','Ieper','IEPER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12588,'9796','Ierapetra','IERAPETRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12589,'41439','Ifaty','IFATY',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12590,'39024','Iffendic','IFFENDIC',NULL,'','France','',0,0,76,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12591,'13710','Ifrane','IFRANE',NULL,'','Morocco','',0,0,148,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12592,'4871','Ifs','IFS',NULL,'','France','',0,0,76,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12593,'16353','Igarka','IGARKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12594,'12721','Igea Marina','IGEA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:04:48','1900-01-01 00:00:00',1,0,1),(12595,'17652','Igiugig','IGIUGIG',NULL,'','United States','',0,0,231,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12596,'12824','Iglesias','IGLESIAS',NULL,'','Italy','',0,0,107,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12597,'25799','Igloolik','IGLOOLIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12598,'24467','Igls','IGLS',NULL,'','Austria','',0,0,14,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12599,'34522','Ignace','IGNACE',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12600,'33466','Ignacio','IGNACIO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:49','1900-01-01 00:00:00',1,0,1),(12601,'3122','Igollo','IGOLLO',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12602,'39914','Igoumenitsa','IGOUMENITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12603,'42023','Iguala','IGUALA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12604,'3552','Igualada','IGUALADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12605,'40973','Iguassu Falls','IGUASSU FALLS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12606,'26046','Iguazu','IGUAZU',NULL,'','Argentina','',0,0,10,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12607,'35951','Iguazu Falls (Br)','IGUAZU FALLS (BR)',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12608,'39356','Ihosy','IHOSY',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12609,'22568','Ihringen','IHRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12610,'13740','Ihuru','IHURU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:04:50','1900-01-01 00:00:00',1,0,1),(12611,'42379','Iikley','IIKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12612,'3998','Iisalmi','IISALMI',NULL,'','Finland','',0,0,75,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12613,'43326','Ijmuiden','IJMUIDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12614,'14682','Ijsselstein','IJSSELSTEIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12615,'4009','Ikaalinen','IKAALINEN',NULL,'','Finland','',0,0,75,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12616,'9482','Ikaria','IKARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12617,'2275','Ikast','IKAST',NULL,'','Denmark','',0,0,59,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12618,'13253','Ikeda','IKEDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12619,'13144','Iki Island','IKI ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12620,'13254','Ikuno','IKUNO',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12621,'1937','Ilberstedt','ILBERSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12622,'8290','Ilchester','ILCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:51','1900-01-01 00:00:00',1,0,1),(12623,'17292','Ildir','ILDIR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:04:52','1900-01-01 00:00:00',1,0,1),(12624,'36450','Ile Des Pins','ILE DES PINS',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:04:52','1900-01-01 00:00:00',1,0,1),(12625,'4290','Ile-aux-moines','ILE-AUX-MOINES',NULL,'','France','',0,0,76,'2016-10-17 11:04:53','1900-01-01 00:00:00',1,0,1),(12626,'26008','Ile-perrot','ILE-PERROT',NULL,'','Canada','',0,0,39,'2016-10-17 11:04:53','1900-01-01 00:00:00',1,0,1),(12627,'1973','Ilfeld','ILFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:53','1900-01-01 00:00:00',1,0,1),(12628,'8291','Ilford','ILFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:53','1900-01-01 00:00:00',1,0,1),(12629,'8292','Ilfracombe','ILFRACOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12630,'41074','Ilgaz','ILGAZ',NULL,'','Turkey','',0,0,222,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12631,'42007','Ilha Da Boa Vista','ILHA DA BOA VISTA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12632,'25203','Ilhabela','ILHABELA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12633,'15858','Ilhavo','ILHAVO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12634,'25040','Ilheus','ILHEUS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12635,'35944','Ilheus-comandatuba','ILHEUS-COMANDATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12636,'17653','Iliamna','ILIAMNA',NULL,'','United States','',0,0,231,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12637,'17357','Ilica','ILICA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12638,'15550','Iligan','ILIGAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:04:54','1900-01-01 00:00:00',1,0,1),(12639,'28871','Ilion','ILION',NULL,'','United States','',0,0,231,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12640,'9483','Ilioupolis','ILIOUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12641,'8293','Ilkeston','ILKESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12642,'8294','Ilkley','ILKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12643,'10160','Illaga','ILLAGA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12644,'34197','Illawarra','ILLAWARRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12645,'43995','Ille-et-vilaine','ILLE-ET-VILAINE',NULL,'','France','',0,0,76,'2016-10-17 11:04:55','1900-01-01 00:00:00',1,0,1),(12646,'2647','Illetas','ILLETAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:56','1900-01-01 00:00:00',1,0,1),(12647,'4291','Illiers-combrey','ILLIERS-COMBREY',NULL,'','France','',0,0,76,'2016-10-17 11:04:56','1900-01-01 00:00:00',1,0,1),(12648,'37689','Illizi','ILLIZI',NULL,'','Algeria','',0,0,3,'2016-10-17 11:04:56','1900-01-01 00:00:00',1,0,1),(12649,'43532','Illkirch','ILLKIRCH',NULL,'','France','',0,0,76,'2016-10-17 11:04:57','1900-01-01 00:00:00',1,0,1),(12650,'6765','Illkirch-graffenstaden','ILLKIRCH-GRAFFENSTADEN',NULL,'','France','',0,0,76,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12651,'37683','Illmitz','ILLMITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12652,'36449','I\'llot Maitre','I\'LLOT MAITRE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12653,'32518','Illovo Beach','ILLOVO BEACH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12654,'39845','Illueca','ILLUECA',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12655,'6766','Illzach','ILLZACH',NULL,'','France','',0,0,76,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12656,'221','Ilmenau','ILMENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12657,'8295','Ilminster','ILMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12658,'15551','Iloilo','ILOILO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:04:58','1900-01-01 00:00:00',1,0,1),(12659,'1938','Ilsenburg','ILSENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12660,'8296','Ilsington','ILSINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12661,'10161','Ilu','ILU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12662,'9859','Ilulissat','ILULISSAT',NULL,'','Greenland','',0,0,87,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12663,'31518','Ilwaco','ILWACO',NULL,'','United States','',0,0,231,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12664,'3057','Imarcoain','IMARCOAIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12665,'43910','Imari','IMARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12666,'3970','Imatra','IMATRA',NULL,'','Finland','',0,0,75,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12667,'2448','Imbabah','IMBABAH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12668,'921','Imbabura','IMBABURA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:04:59','1900-01-01 00:00:00',1,0,1),(12669,'35953','Imbassai','IMBASSAI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12670,'25180','Imbituba','IMBITUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12671,'9822','Imeroviglion','IMEROVIGLION',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12672,'32820','Imlay','IMLAY',NULL,'','United States','',0,0,231,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12673,'37317','Imlil','IMLIL',NULL,'','Morocco','',0,0,148,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12674,'38394','Immingham','IMMINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:00','1900-01-01 00:00:00',1,0,1),(12675,'11999','Imola','IMOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12676,'3408','Imon','IMON',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12677,'25083','Imperatriz','IMPERATRIZ',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12678,'12000','Imperia','IMPERIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12679,'28130','Imperial','IMPERIAL',NULL,'','United States','',0,0,231,'2016-10-17 11:05:01','1900-01-01 00:00:00',1,0,1),(12680,'24045','Impfondo','IMPFONDO',NULL,'','Congo','',0,0,51,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12681,'10653','Imphal','IMPHAL',NULL,'','India','Imphal',41,0,101,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12682,'13052','Impruneta','IMPRUNETA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12683,'24563','Imst','IMST',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12684,'42952','Inampulugan Island','INAMPULUGAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12685,'10309','Inanwatan','INANWATAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12686,'42468','Inari','INARI',NULL,'','Finland','',0,0,75,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12687,'42891','Inawashiro','INAWASHIRO',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:02','1900-01-01 00:00:00',1,0,1),(12688,'39906','Inca','INCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12689,'17211','Incekum','INCEKUM',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12690,'42832','Inchanga','INCHANGA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12691,'13524','Incheon','INCHEON',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12692,'35806','Incheon','INCHEON',NULL,'','South Korea','',0,0,197,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12693,'10841','Inchicore','INCHICORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12694,'9325','Inchinnan','INCHINNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12695,'8297','Inchture','INCHTURE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:03','1900-01-01 00:00:00',1,0,1),(12696,'11239','Incisa In Val D\'arno','INCISA IN VAL D\'ARNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:04','1900-01-01 00:00:00',1,0,1),(12697,'32821','Incline Village','INCLINE VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:04','1900-01-01 00:00:00',1,0,1),(12698,'25204','Indaiatuba','INDAIATUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:04','1900-01-01 00:00:00',1,0,1),(12699,'27666','Independence','INDEPENDENCE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:04','1900-01-01 00:00:00',1,0,1),(12700,'15371','Independencia','INDEPENDENCIA',NULL,'','Peru','',0,0,172,'2016-10-17 11:05:05','1900-01-01 00:00:00',1,0,1),(12701,'19408','Indialantic','INDIALANTIC',NULL,'','United States','',0,0,231,'2016-10-17 11:05:05','1900-01-01 00:00:00',1,0,1),(12702,'27868','Indianola','INDIANOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:08','1900-01-01 00:00:00',1,0,1),(12703,'19412','Indiantown','INDIANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:05:08','1900-01-01 00:00:00',1,0,1),(12704,'18550','Indio','INDIO',NULL,'','United States','',0,0,231,'2016-10-17 11:05:08','1900-01-01 00:00:00',1,0,1),(12705,'26708','Indooroopilly','INDOOROOPILLY',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12706,'10649','Indore','INDORE',NULL,'','India','Indore',15,0,101,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12707,'42795','Indramayu','INDRAMAYU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12708,'12929','Induno Olona','INDUNO OLONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12709,'44030','Induruwa','INDURUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12710,'25324','Indus','INDUS',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12711,'13819','Industrial Area','INDUSTRIAL AREA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:09','1900-01-01 00:00:00',1,0,1),(12712,'1822','Industry','INDUSTRY',NULL,'','United States','',0,0,231,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12713,'14172','Ine','INE',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12714,'33660','Inez','INEZ',NULL,'','United States','',0,0,231,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12715,'38608','Infiesto','INFIESTO',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12716,'8298','Ingatestone','INGATESTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:10','1900-01-01 00:00:00',1,0,1),(12717,'192','Ingelheim','INGELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12718,'44275','Ingenbohl','INGENBOHL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12719,'34523','Ingersoll','INGERSOLL',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12720,'18551','Ingleside','INGLESIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12721,'18552','Inglewood','INGLEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:05:11','1900-01-01 00:00:00',1,0,1),(12722,'38493','Inglewood','INGLEWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:12','1900-01-01 00:00:00',1,0,1),(12723,'19413','Inglis','INGLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:05:12','1900-01-01 00:00:00',1,0,1),(12724,'38048','Ingliston','INGLISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12725,'222','Ingolstadt','INGOLSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12726,'25718','Ingonish','INGONISH',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12727,'30699','Ingram','INGRAM',NULL,'','United States','',0,0,231,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12728,'41399','Inhaca','INHACA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12729,'43220','Inhambane','INHAMBANE',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12730,'41320','Iniesta','INIESTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12731,'10738','Inisheer','INISHEER',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:13','1900-01-01 00:00:00',1,0,1),(12732,'10739','Inishmaan','INISHMAAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12733,'10740','Inishmore','INISHMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12734,'40270','Injune','INJUNE',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12735,'26411','Inkerman','INKERMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12736,'22116','Inkster','INKSTER',NULL,'','United States','',0,0,231,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12737,'36391','Inle','INLE',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:05:14','1900-01-01 00:00:00',1,0,1),(12738,'26454','Innamincka','INNAMINCKA',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:15','1900-01-01 00:00:00',1,0,1),(12739,'21718','Inner Harbor','INNER HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:05:15','1900-01-01 00:00:00',1,0,1),(12740,'7131','Inner Hebrides','INNER HEBRIDES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12741,'26709','Inner West','INNER WEST',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12742,'37359','Innerbraz','INNERBRAZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12743,'8299','Innerleithen','INNERLEITHEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12744,'26412','Innisfail','INNISFAIL',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12745,'25325','Innisfail','INNISFAIL',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12746,'41527','Innishannon','INNISHANNON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12747,'26996','Innsbruck','INNSBRUCK',NULL,'','Austria','Innsbruck',0,0,14,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12748,'26997','Innviertel','INNVIERTEL',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12749,'41318','Innvik','INNVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12750,'32633','Inongo','INONGO',NULL,'','Fiji','',0,0,74,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12751,'16673','Insjoen','INSJOEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12752,'8300','Instow','INSTOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:16','1900-01-01 00:00:00',1,0,1),(12753,'36780','Insula Rayong-samet','INSULA RAYONG-SAMET',NULL,'','Thailand','',0,0,215,'2016-10-17 11:05:17','1900-01-01 00:00:00',1,0,1),(12754,'29991','Intercourse','INTERCOURSE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:17','1900-01-01 00:00:00',1,0,1),(12755,'33016','Interior','INTERIOR',NULL,'','United States','',0,0,231,'2016-10-17 11:05:17','1900-01-01 00:00:00',1,0,1),(12756,'23037','Interlaken','INTERLAKEN',NULL,'','Switzerland','Interlaken',0,0,210,'2016-10-17 11:05:17','1900-01-01 00:00:00',1,0,1),(12757,'32716','Intervale','INTERVALE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12758,'43972','Intu Afrika Kalahari Private Reserve','INTU AFRIKA KALAHARI PRIVATE RESERVE',NULL,'','Namibia','',0,0,151,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12759,'25205','Inubia Paulista','INUBIA PAULISTA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12760,'26010','Inukjuak','INUKJUAK',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12761,'25771','Inuvik','INUVIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12762,'27416','Inver Grove Heights','INVER GROVE HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:05:18','1900-01-01 00:00:00',1,0,1),(12763,'8301','Inveraray','INVERARAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12764,'1310','Inverary','INVERARY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12765,'15073','Invercargill','INVERCARGILL',NULL,'','New Zealand','Invercargill',0,0,157,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12766,'7132','Inverclyde','INVERCLYDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12767,'34198','Inverell','INVERELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12768,'8302','Invergarry','INVERGARRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12769,'8303','Invergordon','INVERGORDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12770,'8304','Inverkeithing','INVERKEITHING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12771,'7133','Inverleith','INVERLEITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:19','1900-01-01 00:00:00',1,0,1),(12772,'39995','Inverloch','INVERLOCH',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12773,'25461','Invermere','INVERMERE',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12774,'19415','Inverness','INVERNESS',NULL,'','United States','',0,0,231,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12775,'1311','Inverness','INVERNESS',NULL,'','UNITED KINGDOM','Inverness',0,0,469,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12776,'9251','Inverurie','INVERURIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12777,'11240','Invorio Superiore','INVORIO SUPERIORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:20','1900-01-01 00:00:00',1,0,1),(12778,'28873','Inwood','INWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12779,'18554','Inyokern','INYOKERN',NULL,'','United States','',0,0,231,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12780,'42892','Inzai','INZAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12781,'223','Inzell','INZELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12782,'40272','Inzlingen','INZLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:21','1900-01-01 00:00:00',1,0,1),(12783,'9766','Ioannina','IOANNINA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12784,'35253','Ioannina-kostitsi','IOANNINA-KOSTITSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12785,'25462','Ioco','IOCO',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12786,'21071','Iola','IOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12787,'22117','Ionia','IONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:22','1900-01-01 00:00:00',1,0,1),(12788,'11241','Ionian Coast','IONIAN COAST',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:23','1900-01-01 00:00:00',1,0,1),(12789,'12001','Ioppolo','IOPPOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:23','1900-01-01 00:00:00',1,0,1),(12790,'35274','Ios-ormos','IOS-ORMOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:23','1900-01-01 00:00:00',1,0,1),(12791,'24981','Ipanema - Leblon','IPANEMA - LEBLON',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12792,'25084','Ipatinga','IPATINGA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12793,'9484','Ipeiros','IPEIROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12794,'224','Iphofen','IPHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12795,'24115','Ipiales','IPIALES',NULL,'','Colombia','',0,0,49,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12796,'14367','Ipoh','IPOH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12797,'25122','Ipojuca','IPOJUCA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:24','1900-01-01 00:00:00',1,0,1),(12798,'32316','Ipota','IPOTA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12799,'23450','Ipsach','IPSACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12800,'17286','Ipsala','IPSALA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12801,'8305','Ipswich','IPSWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12802,'26710','Ipswich','IPSWICH',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12803,'25800','Iqaluit','IQALUIT',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12804,'38','Iquique','IQUIQUE',NULL,'','Chile','',0,0,45,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12805,'15421','Iquitos','IQUITOS',NULL,'','Peru','',0,0,172,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12806,'24982','Iraja','IRAJA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12807,'42509','Irakleia','IRAKLEIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12808,'13902','Irapuato','IRAPUATO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12809,'31335','Irasburg','IRASBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:05:25','1900-01-01 00:00:00',1,0,1),(12810,'1665','Irbid','IRBID',NULL,'','Jordan','Irbid',0,0,111,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12811,'40582','Irdning','IRDNING',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12812,'30700','Iredell','IREDELL',NULL,'','United States','',0,0,231,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12813,'32568','Irene','IRENE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12814,'38103','Ireon','IREON',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12815,'9655','Iria','IRIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12816,'6639','Irigny','IRIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12817,'17457','Iringa','IRINGA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12818,'16321','Irkutsk','IRKUTSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:05:26','1900-01-01 00:00:00',1,0,1),(12819,'8306','Ironbridge','IRONBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:28','1900-01-01 00:00:00',1,0,1),(12820,'17902','Irondale','IRONDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:28','1900-01-01 00:00:00',1,0,1),(12821,'27668','Ironton','IRONTON',NULL,'','United States','',0,0,231,'2016-10-17 11:05:28','1900-01-01 00:00:00',1,0,1),(12822,'22121','Ironwood','IRONWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12823,'34524','Iroquois Falls','IROQUOIS FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12824,'225','Irschenberg','IRSCHENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12825,'3709','Irun','IRUN',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12826,'2648','Irurtzun','IRURTZUN',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12827,'38212','Iruya','IRUYA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:05:29','1900-01-01 00:00:00',1,0,1),(12828,'33661','Irvine','IRVINE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:30','1900-01-01 00:00:00',1,0,1),(12829,'8307','Irvine','IRVINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:30','1900-01-01 00:00:00',1,0,1),(12830,'8308','Irvinestown','IRVINESTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:30','1900-01-01 00:00:00',1,0,1),(12831,'30701','Irving','IRVING',NULL,'','United States','',0,0,231,'2016-10-17 11:05:30','1900-01-01 00:00:00',1,0,1),(12832,'28306','Irvington','IRVINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:05:31','1900-01-01 00:00:00',1,0,1),(12833,'29992','Irwin','IRWIN',NULL,'','United States','',0,0,231,'2016-10-17 11:05:32','1900-01-01 00:00:00',1,0,1),(12834,'15753','Isabel Segunda','ISABEL SEGUNDA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:05:32','1900-01-01 00:00:00',1,0,1),(12835,'15731','Isabela','ISABELA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:05:32','1900-01-01 00:00:00',1,0,1),(12836,'10985','Isafjordur','ISAFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:05:32','1900-01-01 00:00:00',1,0,1),(12837,'24564','Ischgl','ISCHGL',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12838,'28307','Iselin','ISELIN',NULL,'','United States','',0,0,231,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12839,'23456','Iseltwald','ISELTWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12840,'42451','Isenbuttel','ISENBUTTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12841,'12003','Iseo','ISEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:33','1900-01-01 00:00:00',1,0,1),(12842,'35557','Iseo-lovere','ISEO-LOVERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12843,'513','Iserlohn','ISERLOHN',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12844,'193','Isernhagen','ISERNHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12845,'37728','Isernia','ISERNIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12846,'35431','Isfahan','ISFAHAN',NULL,'','Iran','',0,0,103,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12847,'13255','Ishigaki','ISHIGAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12848,'13145','Ishigaki-shi','ISHIGAKI-SHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12849,'43540','Ishikawa','ISHIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12850,'2217','Ishoj','ISHOJ',NULL,'','Denmark','',0,0,59,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12851,'2344','Ishøj','ISHØJ',NULL,'','Denmark','',0,0,59,'2016-10-17 11:05:34','1900-01-01 00:00:00',1,0,1),(12852,'22123','Ishpeming','ISHPEMING',NULL,'','United States','',0,0,231,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12853,'24754','Ishurdi','ISHURDI',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12854,'32634','Isiro','ISIRO',NULL,'','Fiji','',0,0,74,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12855,'6','Isisford','ISISFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12856,'17298','Iskenderun','ISKENDERUN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12857,'39770','Isla Amantani','ISLA AMANTANI',NULL,'','Peru','',0,0,172,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12858,'39667','Isla Baru','ISLA BARU',NULL,'','Colombia','',0,0,49,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12859,'36520','Isla Colon','ISLA COLON',NULL,'','Panama','',0,0,169,'2016-10-17 11:05:35','1900-01-01 00:00:00',1,0,1),(12860,'42028','Isla Del Sol','ISLA DEL SOL',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:05:36','1900-01-01 00:00:00',1,0,1),(12861,'24909','Isla Marisol','ISLA MARISOL',NULL,'','Belize','',0,0,22,'2016-10-17 11:05:36','1900-01-01 00:00:00',1,0,1),(12862,'15732','Isla Verde','ISLA VERDE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12863,'43082','Isla Victoria','ISLA VICTORIA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12864,'3240','Isla-cristina','ISLA-CRISTINA',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12865,'15303','Islamabad','ISLAMABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12866,'19416','Islamorada','ISLAMORADA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12867,'5464','Island','ISLAND',NULL,'','France','',0,0,76,'2016-10-17 11:05:37','1900-01-01 00:00:00',1,0,1),(12868,'10842','Islandbridge','ISLANDBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:05:38','1900-01-01 00:00:00',1,0,1),(12869,'28874','Islandia','ISLANDIA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:38','1900-01-01 00:00:00',1,0,1),(12870,'36133','Islantilla','ISLANTILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12871,'3124','Islares','ISLARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12872,'24084','Islas Del Rosario','ISLAS DEL ROSARIO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12873,'15340','Islas Secas','ISLAS SECAS',NULL,'','Panama','',0,0,169,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12874,'15387','Islay','ISLAY',NULL,'','Peru','',0,0,172,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12875,'7136','Islay Island','ISLAY ISLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12876,'26011','Isle Aux Coudres','ISLE AUX COUDRES',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:39','1900-01-01 00:00:00',1,0,1),(12877,'14422','Isle Of Pines','ISLE OF PINES',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:05:40','1900-01-01 00:00:00',1,0,1),(12878,'43230','Isle Verde','ISLE VERDE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12879,'5098','Isles Les Villenoy','ISLES LES VILLENOY',NULL,'','France','',0,0,76,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12880,'7144','Isles Of Scilly','ISLES OF SCILLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12881,'44058','Isles-les-villenoy','ISLES-LES-VILLENOY',NULL,'','France','',0,0,76,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12882,'8309','Isleworth','ISLEWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12883,'8310','Islington','ISLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:05:41','1900-01-01 00:00:00',1,0,1),(12884,'24215','Islita','ISLITA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12885,'2429','Ismailia','ISMAILIA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12886,'1344','Ismailia-port Said','ISMAILIA-PORT SAID',NULL,'','EGYPT','',0,0,65,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12887,'227','Ismaning','ISMANING',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12888,'22570','Isny Im Allgau','ISNY IM ALLGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12889,'13256','Isogo','ISOGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12890,'4845','Isola','ISOLA',NULL,'','France','',0,0,76,'2016-10-17 11:05:42','1900-01-01 00:00:00',1,0,1),(12891,'39916','Isola Del Liri','ISOLA DEL LIRI',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:43','1900-01-01 00:00:00',1,0,1),(12892,'4295','Isola-2000','ISOLA-2000',NULL,'','France','',0,0,76,'2016-10-17 11:05:43','1900-01-01 00:00:00',1,0,1),(12893,'42325','Isole Tremiti','ISOLE TREMITI',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12894,'39482','Isovol','ISOVOL',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12895,'17302','Isparta','ISPARTA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12896,'12005','Ispica','ISPICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12897,'12006','Ispra','ISPRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12898,'31520','Issaquah','ISSAQUAH',NULL,'','United States','',0,0,231,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12899,'37919','Isselburg','ISSELBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:44','1900-01-01 00:00:00',1,0,1),(12900,'37260','Issenheim','ISSENHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12901,'5316','Issoire','ISSOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12902,'5646','Issoudun','ISSOUDUN',NULL,'','France','',0,0,76,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12903,'4727','Issy-les-moulineaux','ISSY-LES-MOULINEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12904,'3241','Istan','ISTAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12905,'17306','Istanbul','ISTANBUL',NULL,'','Turkey','Istanbul',0,0,222,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12906,'40401','Isthmia','ISTHMIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12907,'42513','Istiaia - Evia','ISTIAIA - EVIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12908,'12892','Istrana','ISTRANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:45','1900-01-01 00:00:00',1,0,1),(12909,'6442','Istres','ISTRES',NULL,'','France','',0,0,76,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12910,'9988','Istria','ISTRIA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12911,'42671','Istron','ISTRON',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12912,'958','Itabira','ITABIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12913,'42204','Itaborai','ITABORAI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12914,'25041','Itacare','ITACARE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12915,'25085','Itaim','ITAIM',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12916,'25102','Itaituba','ITAITUBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12917,'25181','Itajai','ITAJAI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12918,'41827','Italian Alps','ITALIAN ALPS',NULL,'','Italy','',0,0,107,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12919,'13257','Itami','ITAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12920,'10700','Itanagar','ITANAGAR',NULL,'','India','Itanagar',40,0,101,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12921,'42759','Itanhaem','ITANHAEM',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:46','1900-01-01 00:00:00',1,0,1),(12922,'42205','Itapecerica Da Serra','ITAPECERICA DA SERRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12923,'25182','Itapema','ITAPEMA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12924,'20601','Itasca','ITASCA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12925,'9656','Itea','ITEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12926,'28876','Ithaca','ITHACA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:47','1900-01-01 00:00:00',1,0,1),(12927,'9780','Ithaki','ITHAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12928,'40280','Itsukushima','ITSUKUSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12929,'27869','Itta Bena','ITTA BENA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12930,'24468','Itterdorfl','ITTERDORFL',NULL,'','Austria','',0,0,14,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12931,'23038','Ittigen','ITTIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12932,'24984','Itupeva','ITUPEVA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12933,'26110','Ituzaingo','ITUZAINGO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12934,'2028','Itzehoe','ITZEHOE',NULL,'','Germany','',0,0,83,'2016-10-17 11:05:48','1900-01-01 00:00:00',1,0,1),(12935,'27870','Iuka','IUKA',NULL,'','United States','',0,0,231,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12936,'4041','Ivalo','IVALO',NULL,'','Finland','',0,0,75,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12937,'17654','Ivanof Bay','IVANOF BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12938,'17489','Ivano-frankovsk','IVANO-FRANKOVSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12939,'16420','Ivanova','IVANOVA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12940,'33344','Ivins','IVINS',NULL,'','United States','',0,0,231,'2016-10-17 11:05:49','1900-01-01 00:00:00',1,0,1),(12941,'19094','Ivoryton','IVORYTON',NULL,'','United States','',0,0,231,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12942,'4728','Ivry-sur-seine','IVRY-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12943,'26012','Ivujivik','IVUJIVIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12944,'35715','Iwaki','IWAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12945,'35714','Iwakuni','IWAKUNI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12946,'13258','Iwami','IWAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12947,'43178','Iwate','IWATE',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:50','1900-01-01 00:00:00',1,0,1),(12948,'9485','Ixia','IXIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12949,'14004','Ixmiquilpan','IXMIQUILPAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12950,'13821','Ixtacalco','IXTACALCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12951,'13995','Ixtapa','IXTAPA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12952,'13823','Ixtapalapa','IXTAPALAPA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12953,'14036','Ixtapaluca','IXTAPALUCA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12954,'14037','Ixtapan De La Sal','IXTAPAN DE LA SAL',NULL,'','Mexico','',0,0,141,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12955,'9879','Izabal','IZABAL',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12956,'15691','Izabelin','IZABELIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12957,'16468','Izhevsk','IZHEVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12958,'17317','Izmir','IZMIR',NULL,'','Turkey','Izmir',0,0,222,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12959,'17213','Izmit','IZMIT',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12960,'42744','Iznajar','IZNAJAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12961,'3242','Iznájar','IZNÁJAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:05:51','1900-01-01 00:00:00',1,0,1),(12962,'17275','Iznik','IZNIK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12963,'16633','Izola','IZOLA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12964,'13259','Izumi','IZUMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12965,'35716','Izumiotsu','IZUMIOTSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12966,'13146','Izumi-otsu','IZUMI-OTSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12967,'13147','Izumisano','IZUMISANO',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12968,'13260','Izumo','IZUMO',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12969,'39467','Izunagaoka','IZUNAGAOKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12970,'42893','Izunokuni','IZUNOKUNI',NULL,'','Japan','',0,0,110,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12971,'10650','Jabalpur','JABALPUR',NULL,'','India','Jabalpur',15,0,101,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12972,'14150','Jabat','JABAT',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12973,'26240','Jabiru','JABIRU',NULL,'','Australia','',0,0,13,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12974,'40380','Jablonec Nad Nisou','JABLONEC NAD NISOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12975,'25123','Jaboatao','JABOATAO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:52','1900-01-01 00:00:00',1,0,1),(12976,'25086','Jaboticatubas','JABOTICATUBAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12977,'42760','Jacarei','JACAREI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12978,'30702','Jacinto City','JACINTO CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12979,'32822','Jackpot','JACKPOT',NULL,'','United States','',0,0,231,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12980,'30703','Jacksboro','JACKSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:05:53','1900-01-01 00:00:00',1,0,1),(12981,'43800','Jacksons Point','JACKSONS POINT',NULL,'','Canada','',0,0,39,'2016-10-17 11:05:59','1900-01-01 00:00:00',1,0,1),(12982,'20602','Jacksonville','JACKSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:05:59','1900-01-01 00:00:00',1,0,1),(12983,'24154','Jaco','JACO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:06:01','1900-01-01 00:00:00',1,0,1),(12984,'15304','Jacobabad','JACOBABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12985,'15569','Jacquinot Bay','JACQUINOT BAY',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12986,'10527','Jadabpur','JADABPUR',NULL,'','India','',0,0,101,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12987,'3243','Jaen','JAEN',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12988,'32718','Jaffrey','JAFFREY',NULL,'','United States','',0,0,231,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12989,'44211','Jagatsukh','JAGATSUKH',NULL,'','India','',0,0,101,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12990,'10528','Jagdalpur','JAGDALPUR',NULL,'','India','',0,0,101,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12991,'715','Jagel','JAGEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12992,'39483','Jagersrust','JAGERSRUST',NULL,'','South Africa','',0,0,195,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12993,'966','Jaguariaiva','JAGUARIAIVA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:02','1900-01-01 00:00:00',1,0,1),(12994,'1486','Jaguariuna','JAGUARIUNA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12995,'10529','Jaipur','JAIPUR',NULL,'','India','Jaipur tourism | Jaipur tourist | Jaipur travel pa',2,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12996,'10670','Jaisalmer','JAISALMER',NULL,'','India','Jaisalmer City Tour | Jaisalmer Tour Packages | Ja',2,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12997,'44212','Jaisamand','JAISAMAND',NULL,'','India','',0,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12998,'10285','Jakarta','JAKARTA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(12999,'22979','Jakes Corner','JAKES CORNER',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13000,'9860','Jakobshavn','JAKOBSHAVN',NULL,'','Greenland','',0,0,87,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13001,'4010','Jakobstad','JAKOBSTAD',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13002,'3759','Jalance','JALANCE',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13003,'10530','Jalandhar','JALANDHAR',NULL,'','India','Jalandhar',19,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13004,'13903','Jalapa','JALAPA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13005,'14119','Jalcomulco','JALCOMULCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13006,'40855','Jaldapara','JALDAPARA',NULL,'','India','',0,0,101,'2016-10-17 11:06:03','1900-01-01 00:00:00',1,0,1),(13007,'40856','Jalgaon','JALGAON',NULL,'','India','Jalgaon',5,0,101,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13008,'43259','Jalisco','JALISCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13010,'41786','Jalpan De Serra','JALPAN DE SERRA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13011,'14151','Jaluit','JALUIT',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13012,'13065','Jamaica','JAMAICA',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13013,'28878','Jamaica','JAMAICA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:04','1900-01-01 00:00:00',1,0,1),(13014,'10279','Jambi','JAMBI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13015,'17458','Jambiani','JAMBIANI',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13016,'24775','Jambol','JAMBOL',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13017,'28309','Jamesburg','JAMESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13018,'32463','Jamestown','JAMESTOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13019,'18557','Jamestown','JAMESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:05','1900-01-01 00:00:00',1,0,1),(13020,'42928','Jamestown','JAMESTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:06','1900-01-01 00:00:00',1,0,1),(13021,'10642','Jammu','JAMMU',NULL,'','India','Jammu',13,0,101,'2016-10-17 11:06:07','1900-01-01 00:00:00',1,0,1),(13022,'10635','Jamnagar','JAMNAGAR',NULL,'','India','Jamnagar',16,0,101,'2016-10-17 11:06:07','1900-01-01 00:00:00',1,0,1),(13023,'4011','Jamsa','JAMSA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:07','1900-01-01 00:00:00',1,0,1),(13024,'10627','Jamshedpur','JAMSHEDPUR',NULL,'','India','Jamshedpur',48,0,101,'2016-10-17 11:06:07','1900-01-01 00:00:00',1,0,1),(13025,'18558','Jamul','JAMUL',NULL,'','United States','',0,0,231,'2016-10-17 11:06:08','1900-01-01 00:00:00',1,0,1),(13026,'10420','Janai','JANAI',NULL,'','India','',0,0,101,'2016-10-17 11:06:08','1900-01-01 00:00:00',1,0,1),(13027,'39583','Jandaira','JANDAIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:08','1900-01-01 00:00:00',1,0,1),(13028,'27670','Jane','JANE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:08','1900-01-01 00:00:00',1,0,1),(13029,'31776','Janesville','JANESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13030,'42206','Japaratinga','JAPARATINGA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13031,'41953','Jaraba','JARABA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13032,'43087','Jarabacoa','JARABACOA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13033,'25183','Jaragua Do Sul','JARAGUA DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13034,'43332','Jarandilla','JARANDILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13035,'32823','Jarbidge','JARBIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:09','1900-01-01 00:00:00',1,0,1),(13036,'24985','Jardim Paulista - Consolocao','JARDIM PAULISTA - CONSOLOCAO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13037,'6239','Jard-sur-mer','JARD-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13038,'16674','Jarfalla','JARFALLA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13039,'17157','Jarjis','JARJIS',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13040,'15671','Jaroslaw','JAROSLAW',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13041,'3971','Jarvenpaa','JARVENPAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13042,'44043','Jasionka','JASIONKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13043,'20911','Jasper','JASPER',NULL,'','United States','',0,0,231,'2016-10-17 11:06:10','1900-01-01 00:00:00',1,0,1),(13044,'25326','Jasper','JASPER',NULL,'','Canada','Jasper',0,0,39,'2016-10-17 11:06:11','1900-01-01 00:00:00',1,0,1),(13045,'6640','Jasseron','JASSERON',NULL,'','France','',0,0,76,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13046,'39271','Jászapáti','JÁSZAPÁTI',NULL,'','Hungary','',0,0,99,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13047,'10286','Jatinegara','JATINEGARA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13048,'41424','Jativa','JATIVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13049,'23240','Jaun','JAUN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13050,'42774','Jaunay-clan','JAUNAY-CLAN',NULL,'','France','',0,0,76,'2016-10-17 11:06:12','1900-01-01 00:00:00',1,0,1),(13051,'6443','Jausiers','JAUSIERS',NULL,'','France','',0,0,76,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13052,'6303','Jaux','JAUX',NULL,'','France','',0,0,76,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13053,'41009','Java','JAVA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13054,'1007','Java- Jakarta','JAVA- JAKARTA',NULL,'','INDONESIA','',0,0,102,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13055,'15448','Javalera','JAVALERA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13056,'3409','Javea','JAVEA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13057,'36136','Javier','JAVIER',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13058,'10310','Jayapura','JAYAPURA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13059,'15754','Jayuya','JAYUYA',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:06:13','1900-01-01 00:00:00',1,0,1),(13060,'32824','Jean','JEAN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13061,'26013','Jean Lesage International Airport (Yqb)','JEAN LESAGE INTERNATIONAL AIRPORT (YQB)',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13062,'25926','Jebel Ali','JEBEL ALI',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13063,'35807','Jecheon','JECHEON',NULL,'','South Korea','',0,0,197,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13064,'43811','Jechica','JECHICA',NULL,'','Chile','',0,0,45,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13065,'36717','Jedaidet Al Shebani','JEDAIDET AL SHEBANI',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13066,'8311','Jedburgh','JEDBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13067,'16515','Jeddah','JEDDAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:06:14','1900-01-01 00:00:00',1,0,1),(13068,'33665','Jeffersontown','JEFFERSONTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:18','1900-01-01 00:00:00',1,0,1),(13069,'32619','Jeffreys Bay','JEFFREYS BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13070,'14152','Jeh','JEH',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13071,'35799','Jeju (Cheju)','JEJU (CHEJU)',NULL,'','South Korea','',0,0,197,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13072,'13497','Jeju (City)','JEJU (CITY)',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13073,'19841','Jekyll Island','JEKYLL ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13074,'10163','Jelambar','JELAMBAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13075,'15708','Jelenia Gora','JELENIA GORA',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13076,'33174','Jellico','JELLICO',NULL,'','United States','',0,0,231,'2016-10-17 11:06:20','1900-01-01 00:00:00',1,0,1),(13077,'10014','Jelsa','JELSA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13078,'10228','Jember','JEMBER',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13079,'28533','Jemez Springs','JEMEZ SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13080,'1974','Jena','JENA',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13081,'23241','Jenaz','JENAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13082,'32918','Jenks','JENKS',NULL,'','United States','',0,0,231,'2016-10-17 11:06:21','1900-01-01 00:00:00',1,0,1),(13083,'18559','Jenner','JENNER',NULL,'','United States','',0,0,231,'2016-10-17 11:06:22','1900-01-01 00:00:00',1,0,1),(13084,'27063','Jennersdorf','JENNERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:22','1900-01-01 00:00:00',1,0,1),(13085,'27672','Jennings','JENNINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:06:22','1900-01-01 00:00:00',1,0,1),(13086,'34199','Jenolan Caves','JENOLAN CAVES',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13087,'25602','Jenpeg','JENPEG',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13088,'19423','Jensen Beach','JENSEN BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13089,'35796','Jeonju','JEONJU',NULL,'','South Korea','',0,0,197,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13090,'14283','Jerantut','JERANTUT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13091,'14305','Jerejak Island','JEREJAK ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13092,'43954','Jerez De Garcia Salinas','JEREZ DE GARCIA SALINAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:23','1900-01-01 00:00:00',1,0,1),(13093,'3760','Jerica','JERICA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:24','1900-01-01 00:00:00',1,0,1),(13094,'28882','Jericho','JERICHO',NULL,'','United States','',0,0,231,'2016-10-17 11:06:24','1900-01-01 00:00:00',1,0,1),(13095,'35415','Jericho','JERICHO',NULL,'','Israel','',0,0,106,'2016-10-17 11:06:24','1900-01-01 00:00:00',1,0,1),(13096,'25056','Jericoacoara','JERICOACOARA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:24','1900-01-01 00:00:00',1,0,1),(13097,'34200','Jerilderie','JERILDERIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:25','1900-01-01 00:00:00',1,0,1),(13098,'20367','Jerome','JEROME',NULL,'','United States','',0,0,231,'2016-10-17 11:06:25','1900-01-01 00:00:00',1,0,1),(13099,'9311','Jersey','JERSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:25','1900-01-01 00:00:00',1,0,1),(13100,'28310','Jersey City','JERSEY CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:06:25','1900-01-01 00:00:00',1,0,1),(13101,'20603','Jerseyville','JERSEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13102,'3640','Jerte','JERTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13103,'25251','Jerudong','JERUDONG',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13104,'11043','Jerusalem','JERUSALEM',NULL,'','Israel','Jerusalem',0,0,106,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13105,'40639','Jerzens','JERZENS',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:26','1900-01-01 00:00:00',1,0,1),(13106,'12825','Jerzu','JERZU',NULL,'','Italy','',0,0,107,'2016-10-17 11:06:27','1900-01-01 00:00:00',1,0,1),(13107,'24347','Jesenik','JESENIK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:06:27','1900-01-01 00:00:00',1,0,1),(13108,'11244','Jesi','JESI',NULL,'','Italy','',0,0,107,'2016-10-17 11:06:27','1900-01-01 00:00:00',1,0,1),(13109,'34201','Jesmond','JESMOND',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:27','1900-01-01 00:00:00',1,0,1),(13110,'8312','Jesmond','JESMOND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:28','1900-01-01 00:00:00',1,0,1),(13111,'14848','Jessheim','JESSHEIM',NULL,'','Norway','',0,0,164,'2016-10-17 11:06:28','1900-01-01 00:00:00',1,0,1),(13112,'24755','Jessore','JESSORE',NULL,'','Bangladesh','Jessore ',0,0,18,'2016-10-17 11:06:28','1900-01-01 00:00:00',1,0,1),(13113,'21721','Jessup','JESSUP',NULL,'','United States','',0,0,231,'2016-10-17 11:06:28','1900-01-01 00:00:00',1,0,1),(13114,'19842','Jesup','JESUP',NULL,'','United States','',0,0,231,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13115,'15384','Jesus Maria','JESUS MARIA',NULL,'','Peru','',0,0,172,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13116,'24631','Jette','JETTE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13117,'2070','Jettingen-scheppach','JETTINGEN-SCHEPPACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13118,'14946','Jevnaker','JEVNAKER',NULL,'','Norway','',0,0,164,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13119,'37768','Jewett','JEWETT',NULL,'','United States','',0,0,231,'2016-10-17 11:06:29','1900-01-01 00:00:00',1,0,1),(13120,'10421','Jeypore','JEYPORE',NULL,'','India','',0,0,101,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13121,'40814','Jhansi','JHANSI',NULL,'','India','Jhansi',6,0,101,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13122,'17391','Jhihbin Hot Springs','JHIHBIN HOT SPRINGS',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13123,'41761','Ji Parana','JI PARANA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13124,'23904','Jiading','JIADING',NULL,'','China','',0,0,46,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13125,'23786','Jiamusi','JIAMUSI',NULL,'','China','',0,0,46,'2016-10-17 11:06:30','1900-01-01 00:00:00',1,0,1),(13126,'23728','Ji\'an','JI\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13127,'34875','Jiande','JIANDE',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13128,'23966','Jiangmen','JIANGMEN',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13129,'23740','Jiangning','JIANGNING',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13130,'43175','Jiangsu','JIANGSU',NULL,'','China','',0,0,46,'2016-10-17 11:06:31','1900-01-01 00:00:00',1,0,1),(13131,'23741','Jiangyin','JIANGYIN',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13132,'43056','Jiantang','JIANTANG',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13133,'23700','Jiaojiang','JIAOJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13134,'17392','Jiaosi','JIAOSI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13135,'42300','Jiaoxi','JIAOXI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13136,'23669','Jiaozhou','JIAOZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13137,'23793','Jiaozuo','JIAOZUO',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13138,'23770','Jiashan','JIASHAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:32','1900-01-01 00:00:00',1,0,1),(13139,'23701','Jiaxing','JIAXING',NULL,'','China','',0,0,46,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13140,'23848','Jiayuguan','JIAYUGUAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13141,'24343','Jihlava','JIHLAVA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13142,'40101','Jijel','JIJEL',NULL,'','Algeria','',0,0,3,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13143,'3860','Jijiga','JIJIGA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13144,'3761','Jijona','JIJONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13145,'23763','Jilin','JILIN',NULL,'','China','',0,0,46,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13146,'42600','Jim Corbett National Park','JIM CORBETT NATIONAL PARK',NULL,'','India','',0,0,101,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13147,'29995','Jim Thorpe','JIM THORPE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13148,'10229','Jimbaran','JIMBARAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13149,'3861','Jimma','JIMMA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13150,'23926','Jinan','JINAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:33','1900-01-01 00:00:00',1,0,1),(13151,'23916','Jincheng','JINCHENG',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13152,'34202','Jindabyne','JINDABYNE',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13153,'34950','Jindrichuv Hradec','JINDRICHUV HRADEC',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13154,'23560','Jingdezhen','JINGDEZHEN',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13155,'23729','Jinggangshan','JINGGANGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13156,'23598','Jinghong','JINGHONG',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13157,'37831','Jingili','JINGILI',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13158,'23828','Jingmen','JINGMEN',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13159,'23829','Jingzhou','JINGZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13160,'23702','Jinhua','JINHUA',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13161,'23878','Jining','JINING',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13162,'37681','Jinja','JINJA',NULL,'','Uganda','',0,0,226,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13163,'23730','Jinjiang','JINJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13164,'3862','Jinka','JINKA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:06:34','1900-01-01 00:00:00',1,0,1),(13165,'14444','Jinotega','JINOTEGA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13166,'23703','Jinshan','JINSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13167,'42302','Jinshan','JINSHAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13168,'23742','Jintan','JINTAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13169,'23862','Jinzhong','JINZHONG',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13170,'23871','Jinzhou','JINZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13171,'43353','Jiu Zhai Gou','JIU ZHAI GOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13172,'34876','Jiuhuashan Mountain','JIUHUASHAN MOUNTAIN',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13173,'23731','Jiujiang','JIUJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13174,'42389','Jiuquan','JIUQUAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13175,'23603','Jiuzhaigou','JIUZHAIGOU',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13176,'15305','Jiwani','JIWANI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13177,'39390','Jixi','JIXI',NULL,'','China','',0,0,46,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13178,'971','Joacaba','JOACABA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13179,'37234','Joachimsthal','JOACHIMSTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:35','1900-01-01 00:00:00',1,0,1),(13180,'41444','Joanetes','JOANETES',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13181,'25108','Joao Pessoa','JOAO PESSOA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13182,'38543','Jochberg','JOCHBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13183,'43955','Jocotepec','JOCOTEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13184,'10531','Jodhpur','JODHPUR',NULL,'','India','Jodhpur',2,0,101,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13185,'33175','Joelton','JOELTON',NULL,'','United States','',0,0,231,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13186,'3913','Joensuu','JOENSUU',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13187,'35717','Joetsu','JOETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13188,'10133','Jogyakarta','JOGYAKARTA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13189,'32569','Johannesburg','JOHANNESBURG',NULL,'','South Africa','Johannesburg',0,0,195,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13190,'16828','Johanneshov','JOHANNESHOV',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:36','1900-01-01 00:00:00',1,0,1),(13191,'228','Johannisthal','JOHANNISTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:37','1900-01-01 00:00:00',1,0,1),(13192,'10164','Johar Baru','JOHAR BARU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:37','1900-01-01 00:00:00',1,0,1),(13193,'26241','John Brewer Reef','JOHN BREWER REEF',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:37','1900-01-01 00:00:00',1,0,1),(13194,'30350','Johns Island','JOHNS ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:06:38','1900-01-01 00:00:00',1,0,1),(13195,'18037','Johnson','JOHNSON',NULL,'','United States','',0,0,231,'2016-10-17 11:06:38','1900-01-01 00:00:00',1,0,1),(13196,'26160','Johnsons Point','JOHNSONS POINT',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 11:06:39','1900-01-01 00:00:00',1,0,1),(13197,'30249','Johnston','JOHNSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:06:40','1900-01-01 00:00:00',1,0,1),(13198,'8313','Johnstone','JOHNSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:40','1900-01-01 00:00:00',1,0,1),(13199,'29996','Johnstown','JOHNSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:40','1900-01-01 00:00:00',1,0,1),(13200,'14284','Johor Baharu','JOHOR BAHARU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:06:41','1900-01-01 00:00:00',1,0,1),(13201,'5465','Joigny','JOIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:06:41','1900-01-01 00:00:00',1,0,1),(13202,'5731','Joinville','JOINVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:06:41','1900-01-01 00:00:00',1,0,1),(13203,'24986','Joinville','JOINVILLE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:41','1900-01-01 00:00:00',1,0,1),(13204,'4729','Joinville-le-pont','JOINVILLE-LE-PONT',NULL,'','France','',0,0,76,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13205,'40858','Jojawar','JOJAWAR',NULL,'','India','',0,0,101,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13206,'16752','Jokkmokk','JOKKMOKK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13207,'20604','Joliet','JOLIET',NULL,'','United States','',0,0,231,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13208,'26014','Joliette','JOLIETTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13209,'15520','Jolo','JOLO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13210,'10230','Jombang','JOMBANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13211,'15036','Jomsom','JOMSOM',NULL,'','Nepal','Jomsom ',0,0,153,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13212,'16986','Jomtien Beach','JOMTIEN BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13213,'6641','Jonage','JONAGE',NULL,'','France','',0,0,76,'2016-10-17 11:06:42','1900-01-01 00:00:00',1,0,1),(13214,'29998','Jonas','JONAS',NULL,'','United States','',0,0,231,'2016-10-17 11:06:43','1900-01-01 00:00:00',1,0,1),(13215,'22127','Jones','JONES',NULL,'','United States','',0,0,231,'2016-10-17 11:06:43','1900-01-01 00:00:00',1,0,1),(13216,'19843','Jonesboro','JONESBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:06:43','1900-01-01 00:00:00',1,0,1),(13217,'33177','Jonesborough','JONESBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:06:44','1900-01-01 00:00:00',1,0,1),(13218,'29999','Jonestown','JONESTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:44','1900-01-01 00:00:00',1,0,1),(13219,'33896','Jonesville','JONESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:45','1900-01-01 00:00:00',1,0,1),(13220,'16721','Jonkoping','JONKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:45','1900-01-01 00:00:00',1,0,1),(13221,'26015','Jonquiere','JONQUIERE',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:45','1900-01-01 00:00:00',1,0,1),(13222,'6642','Jons','JONS',NULL,'','France','',0,0,76,'2016-10-17 11:06:45','1900-01-01 00:00:00',1,0,1),(13223,'6339','Jonzac','JONZAC',NULL,'','France','',0,0,76,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13224,'26242','Joondalup','JOONDALUP',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13225,'27673','Joplin','JOPLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13226,'21722','Joppa','JOPPA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13227,'8314','Joppa','JOPPA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:06:46','1900-01-01 00:00:00',1,0,1),(13228,'37767','Jorba','JORBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:47','1900-01-01 00:00:00',1,0,1),(13229,'14645','Jordaan','JORDAAN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:06:47','1900-01-01 00:00:00',1,0,1),(13230,'27418','Jordan','JORDAN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:47','1900-01-01 00:00:00',1,0,1),(13231,'34525','Jordan','JORDAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:47','1900-01-01 00:00:00',1,0,1),(13232,'10532','Jorhat','JORHAT',NULL,'','India','Jorhat',10,0,101,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13233,'2179','Jorlunde','JORLUNDE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13234,'3937','Joroinen','JOROINEN',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13235,'26094','Jose De San Martin','JOSE DE SAN MARTIN',NULL,'','Argentina','',0,0,10,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13236,'45','Josefov Dul','JOSEFOV DUL',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13237,'29685','Joseph','JOSEPH',NULL,'','United States','',0,0,231,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13238,'16263','Joshkar-ola','JOSHKAR-OLA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13239,'38637','Joshua','JOSHUA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:48','1900-01-01 00:00:00',1,0,1),(13240,'5853','Jossigny','JOSSIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13241,'1886','Jossnitz','JOSSNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13242,'32222','Jost Van Dyke','JOST VAN DYKE',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13243,'13148','Joto','JOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13244,'6444','Joucas','JOUCAS',NULL,'','France','',0,0,76,'2016-10-17 11:06:49','1900-01-01 00:00:00',1,0,1),(13245,'6800','Joue-les-tours','JOUE-LES-TOURS',NULL,'','France','',0,0,76,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13246,'16497','Jouf','JOUF',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13247,'13553','Jounieh','JOUNIEH',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13248,'30709','Jourdanton','JOURDANTON',NULL,'','United States','',0,0,231,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13249,'4012','Joutsa','JOUTSA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13250,'6805','Jouy Aux Arches','JOUY AUX ARCHES',NULL,'','France','',0,0,76,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13251,'41431','Jouy-aux-arches','JOUY-AUX-ARCHES',NULL,'','France','',0,0,76,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13252,'4730','Jouy-en-josas','JOUY-EN-JOSAS',NULL,'','France','',0,0,76,'2016-10-17 11:06:50','1900-01-01 00:00:00',1,0,1),(13253,'13149','Joyo','JOYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13254,'15655','Jozefow','JOZEFOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13255,'2376','Juan Dolio','JUAN DOLIO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13256,'3553','Juanetas','JUANETAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13257,'31521','Juanita','JUANITA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13258,'15429','Juanjui','JUANJUI',NULL,'','Peru','',0,0,172,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13259,'6445','Juan-les-pins','JUAN-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:06:51','1900-01-01 00:00:00',1,0,1),(13260,'16576','Juayua','JUAYUA',NULL,'','El Salvador','',0,0,66,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13261,'25057','Juazeiro Do Norte','JUAZEIRO DO NORTE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13262,'13554','Jubayl','JUBAYL',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13263,'43719','Jubilee Pocket','JUBILEE POCKET',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13264,'24419','Judenburg','JUDENBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13265,'2321','Juelsminde','JUELSMINDE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13266,'43606','Juffair','JUFFAIR',NULL,'','Bahrain','',0,0,17,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13267,'10533','Juhu Beach','JUHU BEACH',NULL,'','India','',0,0,101,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13268,'24987','Juina','JUINA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13269,'36017','Juiquan','JUIQUAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13270,'27235','Juist','JUIST',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:52','1900-01-01 00:00:00',1,0,1),(13271,'25087','Juiz De Fora','JUIZ DE FORA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13272,'26047','Jujuy','JUJUY',NULL,'','Argentina','',0,0,10,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13273,'16753','Jukkasjarvi','JUKKASJARVI',NULL,'','Sweden','',0,0,209,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13274,'33467','Julesburg','JULESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13275,'26413','Julia Creek','JULIA CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13276,'15365','Juliaca','JULIACA',NULL,'','Peru','Juliaca',0,0,172,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13277,'18562','Julian','JULIAN',NULL,'','United States','',0,0,231,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13278,'25900','Julianadorp','JULIANADORP',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13279,'9861','Julianehab','JULIANEHAB',NULL,'','Greenland','',0,0,87,'2016-10-17 11:06:53','1900-01-01 00:00:00',1,0,1),(13280,'32660','Juliasdale','JULIASDALE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13281,'37717','Julienas','JULIENAS',NULL,'','France','',0,0,76,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13282,'194','Juliusruh-reugen','JULIUSRUH-REUGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13283,'44059','Jumieges','JUMIEGES',NULL,'','France','',0,0,76,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13284,'40561','Jumièges','JUMIÈGES',NULL,'','France','',0,0,76,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13285,'15053','Jumla','JUMLA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13286,'25328','Jumping Pond','JUMPING POND',NULL,'','Canada','',0,0,39,'2016-10-17 11:06:54','1900-01-01 00:00:00',1,0,1),(13288,'25207','Jundiai','JUNDIAI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:06:55','1900-01-01 00:00:00',1,0,1),(13289,'18563','June Lake','JUNE LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:55','1900-01-01 00:00:00',1,0,1),(13290,'17655','Juneau','JUNEAU',NULL,'','United States','',0,0,231,'2016-10-17 11:06:55','1900-01-01 00:00:00',1,0,1),(13291,'34203','Junee','JUNEE',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13292,'23039','Jungfraujoch','JUNGFRAUJOCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13293,'24469','Jungholz','JUNGHOLZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13294,'38091','Junin De Los Andes','JUNIN DE LOS ANDES',NULL,'','Argentina','',0,0,10,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13295,'19425','Juno Beach','JUNO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13296,'19426','Jupiter','JUPITER',NULL,'','United States','',0,0,231,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13297,'23040','Jura','JURA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:06:56','1900-01-01 00:00:00',1,0,1),(13298,'40385','Jurata','JURATA',NULL,'','Poland','',0,0,174,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13299,'27236','Jurgenstorf','JURGENSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13300,'40630','Jurien Bay','JURIEN BAY',NULL,'','Australia','Jurien Bay',0,0,13,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13301,'13668','Jurmala','JURMALA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13302,'20605','Justice','JUSTICE',NULL,'','United States','',0,0,231,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13303,'5923','Juvignac','JUVIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13304,'4731','Juvisy-sur-orge','JUVISY-SUR-ORGE',NULL,'','France','',0,0,76,'2016-10-17 11:06:57','1900-01-01 00:00:00',1,0,1),(13305,'23891','Juyongguan','JUYONGGUAN',NULL,'','China','',0,0,46,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13306,'43750','Jwalapur','JWALAPUR',NULL,'','India','',0,0,101,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13307,'2283','Jyllinge','JYLLINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13308,'43872','Jyvaeskylae','JYVAESKYLAE',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13309,'4013','Jyvaskyla','JYVASKYLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13310,'20010','Kaaawa','KAAAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13311,'38356','Kaag','KAAG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13312,'20011','Kaanapali','KAANAPALI',NULL,'','United States','',0,0,231,'2016-10-17 11:06:58','1900-01-01 00:00:00',1,0,1),(13313,'4014','Kaarina','KAARINA',NULL,'','Finland','',0,0,75,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13314,'514','Kaarst','KAARST',NULL,'','Germany','',0,0,83,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13315,'14599','Kaatsheuvel','KAATSHEUVEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13316,'41126','Kabale','KABALE',NULL,'','Uganda','',0,0,226,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13317,'16349','Kabardinka','KABARDINKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13318,'14153','Kaben','KABEN',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13319,'10423','Kabini','KABINI',NULL,'','India','',17,0,101,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13320,'3863','Kabri Dar','KABRI DAR',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13321,'16528','Kabrousse','KABROUSSE',NULL,'','Senegal','',0,0,187,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13322,'25838','Kabul','KABUL',NULL,'','Afghanistan','',0,0,1,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13323,'4056','Kadavu','KADAVU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13324,'39870','Kadavulailai','KADAVULAILAI',NULL,'','Fiji Islands','',0,0,74,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13325,'17214','Kadikoy - Uskudar (Asian Side)','KADIKOY - USKUDAR (ASIAN SIDE)',NULL,'','Turkey','',0,0,222,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13326,'26455','Kadina','KADINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:06:59','1900-01-01 00:00:00',1,0,1),(13327,'33017','Kadoka','KADOKA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13328,'13261','Kadoma','KADOMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13329,'32661','Kadoma','KADOMA',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13330,'42282','Kadyny','KADYNY',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13331,'42824','Kaeng Krachan','KAENG KRACHAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13332,'40249','Kafountine','KAFOUNTINE',NULL,'','Senegal','',0,0,187,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13333,'13262','Kaga','KAGA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13334,'43541','Kagawa','KAGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13335,'17307','Kagithane','KAGITHANE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:00','1900-01-01 00:00:00',1,0,1),(13336,'20012','Kahakuloa','KAHAKULOA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:01','1900-01-01 00:00:00',1,0,1),(13337,'20013','Kahana','KAHANA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:01','1900-01-01 00:00:00',1,0,1),(13338,'26016','Kahnawake','KAHNAWAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:02','1900-01-01 00:00:00',1,0,1),(13339,'27675','Kahoka','KAHOKA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:02','1900-01-01 00:00:00',1,0,1),(13340,'20016','Kahuku','KAHUKU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:02','1900-01-01 00:00:00',1,0,1),(13341,'20017','Kahului','KAHULUI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13342,'16987','Kai Be Beach','KAI BE BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13343,'23794','Kaifeng','KAIFENG',NULL,'','China','',0,0,46,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13344,'15116','Kaikohe','KAIKOHE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13345,'15074','Kaikoura','KAIKOURA',NULL,'','New Zealand','Kaikoura',0,0,157,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13346,'10534','Kailashahar','KAILASHAHAR',NULL,'','India','',0,0,101,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13347,'23863','Kaili','KAILI',NULL,'','China','',0,0,46,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13348,'20018','Kailua','KAILUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:03','1900-01-01 00:00:00',1,0,1),(13349,'20020','Kailua-kona','KAILUA-KONA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:04','1900-01-01 00:00:00',1,0,1),(13350,'10311','Kaimana','KAIMANA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:04','1900-01-01 00:00:00',1,0,1),(13351,'43751','Kainakary','KAINAKARY',NULL,'','India','',0,0,101,'2016-10-17 11:07:04','1900-01-01 00:00:00',1,0,1),(13352,'20021','Kainaliu','KAINALIU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:04','1900-01-01 00:00:00',1,0,1),(13353,'229','Kainsbach','KAINSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13354,'34878','Kaiping','KAIPING',NULL,'','China','',0,0,46,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13355,'17163','Kairouan','KAIROUAN',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13356,'9657','Kaisariani','KAISARIANI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13357,'38140','Kaisersbach','KAISERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13358,'634','Kaiserslautern','KAISERSLAUTERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13359,'15075','Kaitaia','KAITAIA',NULL,'','New Zealand','Kaitaia',0,0,157,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13360,'43023','Kaiteriteri','KAITERITERI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13361,'15208','Kaiwaka','KAIWAKA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13362,'3945','Kajaani','KAJAANI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:05','1900-01-01 00:00:00',1,0,1),(13363,'16599','Kajal','KAJAL',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13364,'14340','Kajang','KAJANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13365,'43752','Kakabe','KAKABE',NULL,'','India','',0,0,101,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13366,'38362','Kakadu','KAKADU',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13367,'13150','Kakeyu Hot Springs','KAKEYU HOT SPRINGS',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13368,'17657','Kakhonak','KAKHONAK',NULL,'','United States','',0,0,231,'2016-10-17 11:07:06','1900-01-01 00:00:00',1,0,1),(13369,'43753','Kakinada','KAKINADA',NULL,'','India','',0,0,101,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13370,'37998','Kakopetria','KAKOPETRIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13371,'17658','Kaktovik','KAKTOVIK',NULL,'','United States','',0,0,231,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13372,'35719','Kakunodate','KAKUNODATE',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13373,'44213','Kala Amb','KALA AMB',NULL,'','India','',0,0,101,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13374,'37409','Kala Nera','KALA NERA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13375,'9486','Kalafatis','KALAFATIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13376,'20022','Kalaheo','KALAHEO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:07','1900-01-01 00:00:00',1,0,1),(13377,'3946','Kalajoki','KALAJOKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13378,'31522','Kalaloch','KALALOCH',NULL,'','United States','',0,0,231,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13379,'31523','Kalama','KALAMA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13380,'43421','Kalamaki','KALAMAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13381,'9658','Kalamakion','KALAMAKION',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:08','1900-01-01 00:00:00',1,0,1),(13382,'9793','Kalamata','KALAMATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13383,'22129','Kalamazoo','KALAMAZOO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13384,'9771','Kalambaka','KALAMBAKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13385,'9659','Kalami','KALAMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13386,'9660','Kalamos','KALAMOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13387,'9487','Kalampaka','KALAMPAKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13388,'20023','Kalapana','KALAPANA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:09','1900-01-01 00:00:00',1,0,1),(13389,'44214','Kalapet','KALAPET',NULL,'','India','',0,0,101,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13390,'40691','Kalathas','KALATHAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13391,'20024','Kalaupapa','KALAUPAPA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13392,'24276','Kalavasos','KALAVASOS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13393,'9661','Kalavryta','KALAVRYTA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13394,'42079','Kalaw','KALAW',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13395,'26594','Kalbarri','KALBARRI',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13396,'1939','Kalbe','KALBE',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13397,'32635','Kalemie','KALEMIE',NULL,'','Fiji','',0,0,74,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13398,'26595','Kalgoorlie','KALGOORLIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:10','1900-01-01 00:00:00',1,0,1),(13399,'43883','Kalibaru','KALIBARU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13400,'15477','Kalibo','KALIBO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13401,'20025','Kalihiwai','KALIHIWAI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13402,'41696','Kalimantan','KALIMANTAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13403,'38534','Kalimpong','KALIMPONG',NULL,'','India','Kalimpong',12,0,101,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13404,'16326','Kaliningrad','KALININGRAD',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13405,'27990','Kalispell','KALISPELL',NULL,'','United States','',0,0,231,'2016-10-17 11:07:11','1900-01-01 00:00:00',1,0,1),(13406,'15613','Kalisz','KALISZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13407,'17255','Kalkan','KALKAN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13408,'515','Kalkar','KALKAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13409,'26243','Kalkaringi','KALKARINGI',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13410,'22131','Kalkaska','KALKASKA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13411,'37730','Kallax','KALLAX',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13412,'9488','Kallikratia','KALLIKRATIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13413,'9662','Kallithea','KALLITHEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:12','1900-01-01 00:00:00',1,0,1),(13414,'16730','Kalmar','KALMAR',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13415,'9490','Kalo Horio','KALO HORIO',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13416,'38798','Kalocsa','KALOCSA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13417,'37950','Kalogria','KALOGRIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13418,'20231','Kalona','KALONA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13419,'38295','Kalorama','KALORAMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13420,'40610','Kalpaki','KALPAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13422,'42599','Kalpetta','KALPETTA',NULL,'','India','Kalpetta',3,0,101,'2016-10-17 11:07:13','1900-01-01 00:00:00',1,0,1),(13423,'40334','Kals Am Grossglockner','KALS AM GROSSGLOCKNER',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13424,'17659','Kalskag','KALSKAG',NULL,'','United States','',0,0,231,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13425,'17660','Kaltag','KALTAG',NULL,'','United States','',0,0,231,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13426,'716','Kaltenkirchen','KALTENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13427,'20026','Kaluaaha','KALUAAHA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:14','1900-01-01 00:00:00',1,0,1),(13428,'16331','Kaluga','KALUGA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13429,'13617','Kalutara','KALUTARA',NULL,'','Sri Lanka','Kalutara',0,0,200,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13430,'34961','Kalvehave','KALVEHAVE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13431,'42508','Kalymnos','KALYMNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13432,'9492','Kalyves','KALYVES',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13433,'9903','Kam Tin','KAM TIN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13434,'13396','Kamakura','KAMAKURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13435,'42051','Kamala','KAMALA',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13436,'24833','Kamalame Cay','KAMALAME CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13437,'20027','Kamalo','KAMALO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13438,'10535','Kamalpur','KAMALPUR',NULL,'','India','',0,0,101,'2016-10-17 11:07:15','1900-01-01 00:00:00',1,0,1),(13439,'43973','Kamanjab','KAMANJAB',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13440,'26244','Kamaran Downs','KAMARAN DOWNS',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13441,'32350','Kamaran Island','KAMARAN ISLAND',NULL,'','Yemen','',0,0,240,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13442,'38273','Kamares (Achaea)','KAMARES (ACHAEA)',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13443,'10691','Kamarhati','KAMARHATI',NULL,'','India','',0,0,101,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13444,'9494','Kamari','KAMARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13445,'26596','Kambalda','KAMBALDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13446,'38810','Kambi','KAMBI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13447,'9663','Kambos','KAMBOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13448,'10165','Kambuaya','KAMBUAYA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:16','1900-01-01 00:00:00',1,0,1),(13449,'24776','Kamchia','KAMCHIA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13450,'516','Kamen','KAMEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13451,'9664','Kamena Vourla','KAMENA VOURLA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13452,'40104','Kamenari','KAMENARI',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13453,'17490','Kamenets-podol\'skiy','KAMENETS-PODOL\'SKIY',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13454,'16357','Kamenka','KAMENKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13455,'16265','Kamenogorsk','KAMENOGORSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13456,'35727','Kameoka','KAMEOKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13457,'16930','Kameshli','KAMESHLI',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13458,'43911','Kameyama','KAMEYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13459,'13151','Kamigyo','KAMIGYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13460,'42565','Kamikawa','KAMIKAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13461,'13264','Kami-renjaku','KAMI-RENJAKU',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13462,'25463','Kamloops','KAMLOOPS',NULL,'','Canada','Kamloops',0,0,39,'2016-10-17 11:07:17','1900-01-01 00:00:00',1,0,1),(13463,'43912','Kamogawa','KAMOGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13464,'17479','Kampala','KAMPALA',NULL,'','Uganda','',0,0,226,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13465,'42259','Kampar','KAMPAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13466,'635','Kamp-bornhofen','KAMP-BORNHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13467,'17063','Kamphaeng Phet','KAMPHAENG PHET',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13468,'37363','Kampong Cham','KAMPONG CHAM',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13469,'25252','Kampong Jerudong','KAMPONG JERUDONG',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 11:07:18','1900-01-01 00:00:00',1,0,1),(13470,'9805','Kampos','KAMPOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13471,'1772','Kampot','KAMPOT',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13472,'14341','Kampung Setiu Lama','KAMPUNG SETIU LAMA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13473,'43105','Kampur','KAMPUR',NULL,'','India','',0,0,101,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13474,'33346','Kanab','KANAB',NULL,'','United States','',0,0,231,'2016-10-17 11:07:19','1900-01-01 00:00:00',1,0,1),(13475,'13265','Kanagawa','KANAGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13476,'40859','Kanam','KANAM',NULL,'','India','',0,0,101,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13477,'25329','Kananaskis','KANANASKIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13478,'24036','Kananga','KANANGA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13479,'9665','Kanapitsa','KANAPITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13480,'34526','Kanata','KANATA',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13481,'37474','Kanatadika','KANATADIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13482,'10424','Kanatal','KANATAL',NULL,'','India','',0,0,101,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13483,'31999','Kanawha City','KANAWHA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:07:20','1900-01-01 00:00:00',1,0,1),(13484,'13266','Kanazawa','KANAZAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13485,'16955','Kanchanaburi','KANCHANABURI',NULL,'','Thailand','Kanchanaburi',0,0,215,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13487,'10673','Kanchipuram','KANCHIPURAM',NULL,'','India','Kanchipuram',18,0,101,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13488,'13267','Kanda','KANDA',NULL,'','Japan','Kanda',0,0,110,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13489,'25839','Kandahar','KANDAHAR',NULL,'','Afghanistan','',0,0,1,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13490,'23242','Kandersteg','KANDERSTEG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13491,'10636','Kandla','KANDLA',NULL,'','India','',0,0,101,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13492,'38566','Kandooma','KANDOOMA',NULL,'','Maldives','',0,0,133,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13493,'13601','Kandy','KANDY',NULL,'','Sri Lanka','kandy',0,0,200,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13494,'30000','Kane','KANE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:21','1900-01-01 00:00:00',1,0,1),(13495,'20029','Kaneohe','KANEOHE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13496,'3887','Kanervamäki','KANERVAMÄKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13497,'37559','Kanfanar','KANFANAR',NULL,'','Croatia','',0,0,55,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13498,'14371','Kangar','KANGAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13499,'26805','Kangaroo Island','KANGAROO ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13500,'3914','Kangasala','KANGASALA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13501,'36349','Kangerlussuaq','KANGERLUSSUAQ',NULL,'','Greenland','',0,0,87,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13502,'26017','Kangiqsualujjuaq','KANGIQSUALUJJUAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:22','1900-01-01 00:00:00',1,0,1),(13503,'26018','Kangiqsujuaq','KANGIQSUJUAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13504,'26019','Kangirsuk','KANGIRSUK',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13505,'13520','Kangnung','KANGNUNG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13506,'23872','Kangping','KANGPING',NULL,'','China','',0,0,46,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13507,'10536','Kangra','KANGRA',NULL,'','India','Kangra',1,0,101,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13508,'40106','Kanha','KANHA',NULL,'','India','',0,0,101,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13509,'43672','Kaniva','KANIVA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13510,'4015','Kankaanpaa','KANKAANPAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13511,'20606','Kankakee','KANKAKEE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:23','1900-01-01 00:00:00',1,0,1),(13512,'13152','Kannai - Chinatown','KANNAI - CHINATOWN',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13513,'33898','Kannapolis','KANNAPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13514,'42597','Kannur','KANNUR',NULL,'','India','Kannur',3,0,101,'2016-10-17 11:07:24','2017-08-17 11:29:04',1,0,1),(13515,'39014','Kanokupolu','KANOKUPOLU',NULL,'','Tonga','',0,0,218,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13516,'10537','Kanpur','KANPUR',NULL,'','India','Kanpur',6,0,101,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13517,'13153','Kansai International Airport (Kix)','KANSAI INTERNATIONAL AIRPORT (KIX)',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:24','1900-01-01 00:00:00',1,0,1),(13518,'13741','Kanuhara','KANUHARA',NULL,'','Maldives','',0,0,133,'2016-10-17 11:07:25','1900-01-01 00:00:00',1,0,1),(13519,'13268','Kanuma','KANUMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:25','1900-01-01 00:00:00',1,0,1),(13520,'40215','Kanyakumari','KANYAKUMARI',NULL,'','India','Kanyakumari',18,0,101,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13521,'43782','Kanye','KANYE',NULL,'','Botswana','',0,0,28,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13522,'17440','Kaohsiung','KAOHSIUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13523,'20030','Kapaa','KAPAA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13524,'20031','Kapaau','KAPAAU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13525,'20032','Kapaia','KAPAIA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:26','1900-01-01 00:00:00',1,0,1),(13526,'20033','Kapalua','KAPALUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13527,'42855','Kapas Island','KAPAS ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13528,'44215','Kapashera','KAPASHERA',NULL,'','India','',0,0,101,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13529,'24420','Kapfenberg','KAPFENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13530,'37698','Kapikiri','KAPIKIRI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13531,'14375','Kapit','KAPIT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:27','1900-01-01 00:00:00',1,0,1),(13532,'40058','Kaplan','KAPLAN',NULL,'','United States','',0,0,231,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13533,'24311','Kaplice','KAPLICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13534,'20034','Kapoho','KAPOHO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13535,'20035','Kapolei','KAPOLEI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13536,'16389','Kapotnya','KAPOTNYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13537,'10425','Kappad Beach','KAPPAD BEACH',NULL,'','India','',0,0,101,'2016-10-17 11:07:28','1900-01-01 00:00:00',1,0,1),(13538,'23243','Kappel','KAPPEL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13539,'39970','Kappel-grafenhausen','KAPPEL-GRAFENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13540,'717','Kappeln','KAPPELN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13541,'24386','Kaprun','KAPRUN',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13542,'34527','Kapuskasing','KAPUSKASING',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13543,'17288','Karabuk','KARABUK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13544,'15289','Karachi','KARACHI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13545,'13439','Karaganda','KARAGANDA',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13547,'44216','Karaikudi','KARAIKUDI',NULL,'','India','Karaikudi',18,0,101,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13548,'44278','Karaman','KARAMAN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13549,'23840','Karamay','KARAMAY',NULL,'','China','',0,0,46,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13550,'14306','Karambunai','KARAMBUNAI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:29','1900-01-01 00:00:00',1,0,1),(13551,'10231','Karangasem','KARANGASEM',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13552,'10232','Karangbolong','KARANGBOLONG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13553,'3888','Karankamäki','KARANKAMÄKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13554,'14880','Karasjok','KARASJOK',NULL,'','Norway','',0,0,164,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13555,'35720','Karatsu','KARATSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13556,'43720','Karatta','KARATTA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13557,'44009','Karatu','KARATU',NULL,'','Tanzania','Karatu ',0,0,214,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13558,'9495','Karavados','KARAVADOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13559,'440','Karben','KARBEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13560,'9496','Kardamena','KARDAMENA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13561,'43125','Kardamili','KARDAMILI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13562,'9497','Kardhitsa','KARDHITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13563,'42507','Karditsa','KARDITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13564,'3889','Karelia','KARELIA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13565,'40560','Karesuando','KARESUANDO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13566,'10233','Karet','KARET',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:30','1900-01-01 00:00:00',1,0,1),(13567,'39346','Karfas','KARFAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13568,'43068','Kargicak','KARGICAK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13569,'44217','Kargil','KARGIL',NULL,'','India','Kargil',13,0,101,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13570,'4016','Karhula','KARHULA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13571,'32662','Kariba','KARIBA',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13572,'14409','Karibib','KARIBIB',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13573,'38643','Karijini National Park','KARIJINI NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13574,'15118','Karikari Peninsula','KARIKARI PENINSULA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13575,'9666','Karistos','KARISTOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13576,'42894','Kariya','KARIYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13577,'3972','Karjaa','KARJAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13578,'10058','Karlovac','KARLOVAC',NULL,'','Croatia','Karlovac',0,0,55,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13579,'38974','Karlovasi','KARLOVASI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13580,'24807','Karlovo','KARLOVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13581,'24289','Karlovy Vary','KARLOVY VARY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13582,'44250','Karlsborg','KARLSBORG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:31','1900-01-01 00:00:00',1,0,1),(13583,'38834','Karlshagen','KARLSHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13584,'16693','Karlshamn','KARLSHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13585,'27237','Karlshorst','KARLSHORST',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13586,'16760','Karlskoga','KARLSKOGA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13587,'16694','Karlskrona','KARLSKRONA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13588,'2284','Karlslunde Strand','KARLSLUNDE STRAND',NULL,'','Denmark','',0,0,59,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13589,'22571','Karlsruhe','KARLSRUHE',NULL,'','Germany','Karlsruhe',0,0,83,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13590,'16788','Karlstad','KARLSTAD',NULL,'','Sweden','Karlstad',0,0,209,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13591,'1687','Karlstejn','KARLSTEJN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13592,'17661','Karluk','KARLUK',NULL,'','United States','',0,0,231,'2016-10-17 11:07:32','1900-01-01 00:00:00',1,0,1),(13593,'42596','Karnal','KARNAL',NULL,'','India','Karnal',20,0,101,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13594,'32663','Karoi','KAROI',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13595,'441','Karolinenhof','KAROLINENHOF',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13596,'41067','Karon','KARON',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13597,'14275','Karonga','KARONGA',NULL,'','Malawi','',0,0,131,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13598,'9498','Karoussades','KAROUSSADES',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13599,'842','Karow','KAROW',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13600,'15709','Karpacz','KARPACZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13601,'9800','Karpathos','KARPATHOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13602,'42043','Karpenisi','KARPENISI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13603,'9499','Karpenissi','KARPENISSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13604,'26957','Karratha','KARRATHA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13605,'17323','Kars','KARS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13606,'32153','Karshi','KARSHI',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13607,'38700','Kartal','KARTAL',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13608,'42271','Kartalkaya','KARTALKAYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:33','1900-01-01 00:00:00',1,0,1),(13609,'37736','Kartepe','KARTEPE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13610,'9500','Karterados','KARTERADOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13611,'24470','Kartitsch','KARTITSCH',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13612,'40242','Kartuzy','KARTUZY',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13613,'10166','Karubaga','KARUBAGA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13614,'13154','Karuizawa','KARUIZAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13615,'26414','Karumba','KARUMBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13616,'2338','Karup','KARUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13617,'40860','Karur','KARUR',NULL,'','India','',0,0,101,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13618,'37549','Karwar','KARWAR',NULL,'','India','',0,0,101,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13619,'42512','Karystos - Evia','KARYSTOS - EVIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13620,'17187','Kas','KAS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:34','1900-01-01 00:00:00',1,0,1),(13621,'17662','Kasaan','KASAAN',NULL,'','United States','',0,0,231,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13622,'32639','Kasaba Bay','KASABA BAY',NULL,'','Zambia','',0,0,242,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13623,'34528','Kasabonika','KASABONIKA',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13625,'32650','Kasama','KASAMA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13626,'25260','Kasane','KASANE',NULL,'','Botswana','',0,0,28,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13627,'37761','Kasaragod','KASARAGOD',NULL,'','India','',0,0,101,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13628,'39260','Kasauli','KASAULI',NULL,'','India','Kasauli',1,0,101,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13630,'17480','Kasese','KASESE',NULL,'','Uganda','',0,0,226,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13631,'34879','Kashgar','KASHGAR',NULL,'','China','',0,0,46,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13632,'23841','Kashi','KASHI',NULL,'','China','',0,0,46,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13633,'35721','Kashihara','KASHIHARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13634,'39868','Kashipur','KASHIPUR',NULL,'','India','',0,0,101,'2016-10-17 11:07:35','1900-01-01 00:00:00',1,0,1),(13635,'17663','Kasigluk','KASIGLUK',NULL,'','United States','',0,0,231,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13636,'24312','Kasperske Hory','KASPERSKE HORY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13637,'43127','Kassab','KASSAB',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13638,'9667','Kassandra','KASSANDRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13639,'36358','Kassandra-afitos','KASSANDRA-AFITOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13640,'35229','Kassandra-fourka Bea','KASSANDRA-FOURKA BEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:36','1900-01-01 00:00:00',1,0,1),(13641,'35235','Kassandra-hanioti','KASSANDRA-HANIOTI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13642,'35246','Kassandra-kallithea','KASSANDRA-KALLITHEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13643,'35251','Kassandra-kriopigi','KASSANDRA-KRIOPIGI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13644,'35278','Kassandra-pefkohori','KASSANDRA-PEFKOHORI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13645,'35282','Kassandra-polychrono','KASSANDRA-POLYCHRONO',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13646,'35295','Kassandra-sani','KASSANDRA-SANI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13647,'196','Kassel','KASSEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13648,'1026','Kassel-göttingen','KASSEL-GÖTTINGEN',NULL,'','GERMANY','',0,0,83,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13649,'9776','Kassiopi','KASSIOPI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13650,'27419','Kasson','KASSON',NULL,'','United States','',0,0,231,'2016-10-17 11:07:37','1900-01-01 00:00:00',1,0,1),(13651,'17325','Kastamonu','KASTAMONU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13652,'23244','Kastanienbaum','KASTANIENBAUM',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13653,'39489','Kastela','KASTELA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13654,'38104','Kastelir','KASTELIR',NULL,'','Croatia','',0,0,55,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13655,'636','Kastellaun','KASTELLAUN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13656,'9501','Kastelorizo','KASTELORIZO',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13657,'24609','Kasterlee','KASTERLEE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13658,'40453','Kastl','KASTL',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13659,'9756','Kastoria','KASTORIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13660,'38883','Kastraki','KASTRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13661,'40303','Kastri','KASTRI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13662,'42506','Kastro-kyllini','KASTRO-KYLLINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:38','1900-01-01 00:00:00',1,0,1),(13663,'2124','Kastrup','KASTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13664,'14276','Kasungu','KASUNGU',NULL,'','Malawi','',0,0,131,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13665,'26245','Kata Tjuta National Park','KATA TJUTA NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13666,'9502','Katákolon','KATÁKOLON',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13667,'9668','Katalagari Village','KATALAGARI VILLAGE',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13668,'35846','Kataragama','KATARAGAMA',NULL,'','Sri Lanka','Kataragama',0,0,200,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13669,'38100','Kateleios','KATELEIOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13670,'9764','Katerini','KATERINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13671,'26375','Katherine','KATHERINE',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13672,'15054','Kathmandu','KATHMANDU',NULL,'','Nepal','Kathmandu',0,0,153,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13673,'32464','Kathu','KATHU',NULL,'','South Africa','',0,0,195,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13674,'17092','Kathu','KATHU',NULL,'','Thailand','',0,0,215,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13675,'15209','Katikati','KATIKATI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13676,'14406','Katima Mulilo','KATIMA MULILO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13677,'40147','Katlenburg-lindau','KATLENBURG-LINDAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:39','1900-01-01 00:00:00',1,0,1),(13678,'9792','Kato Achaia','KATO ACHAIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13679,'39551','Kato Akourdalia','KATO AKOURDALIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13680,'34204','Katoomba','KATOOMBA',NULL,'','Australia','Katoomba',0,0,13,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13681,'9669','Katouna','KATOUNA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13682,'15721','Katowice','KATOWICE',NULL,'','Poland','Katowice',0,0,174,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13683,'10538','Katra','KATRA',NULL,'','India','Katra',13,0,101,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13684,'16906','Katrineholm','KATRINEHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13685,'26998','Katschberg','KATSCHBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13686,'27134','Katsdorf','KATSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13687,'13155','Katsushika','KATSUSHIKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13688,'42686','Katsuura','KATSUURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13689,'42312','Katunayake','KATUNAYAKE',NULL,'','Sri Lanka','Katunayake',0,0,200,'2016-10-17 11:07:40','1900-01-01 00:00:00',1,0,1),(13690,'40285','Katwe Town','KATWE TOWN',NULL,'','Uganda','',0,0,226,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13691,'14717','Katwijk Aan Zee','KATWIJK AAN ZEE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13692,'14646','Katwoude','KATWOUDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13693,'30712','Katy','KATY',NULL,'','United States','',0,0,231,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13694,'10340','Kau','KAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:41','1900-01-01 00:00:00',1,0,1),(13695,'36914','Kauai-hanamaulu','KAUAI-HANAMAULU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:42','1900-01-01 00:00:00',1,0,1),(13696,'36943','Kauai-kapaa','KAUAI-KAPAA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:42','1900-01-01 00:00:00',1,0,1),(13697,'36961','Kauai-lihue','KAUAI-LIHUE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:43','1900-01-01 00:00:00',1,0,1),(13698,'37013','Kauai-poipu','KAUAI-POIPU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:43','1900-01-01 00:00:00',1,0,1),(13699,'37018','Kauai-port Allen','KAUAI-PORT ALLEN',NULL,'','United States','',0,0,231,'2016-10-17 11:07:43','1900-01-01 00:00:00',1,0,1),(13700,'36919','Kauai-princeville','KAUAI-PRINCEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:44','1900-01-01 00:00:00',1,0,1),(13701,'37058','Kauai-wailua','KAUAI-WAILUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:44','1900-01-01 00:00:00',1,0,1),(13702,'37057','Kauai-waimea','KAUAI-WAIMEA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:44','1900-01-01 00:00:00',1,0,1),(13703,'37060','Kauai-waipouli','KAUAI-WAIPOULI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13704,'230','Kaufbeuren','KAUFBEUREN',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13705,'30714','Kaufman','KAUFMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13706,'4017','Kauhajoki','KAUHAJOKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13707,'4018','Kauhava','KAUHAVA',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13708,'31779','Kaukauna','KAUKAUNA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:45','1900-01-01 00:00:00',1,0,1),(13709,'16119','Kaukura','KAUKURA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13710,'1975','Kaulsdorf','KAULSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13711,'20037','Kaunakakai','KAUNAKAKAI',NULL,'','United States','',0,0,231,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13712,'13638','Kaunas','KAUNAS',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13713,'3973','Kauniainen','KAUNIAINEN',NULL,'','Finland','',0,0,75,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13714,'20038','Kaupakulua','KAUPAKULUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:46','1900-01-01 00:00:00',1,0,1),(13715,'14979','Kaupanger','KAUPANGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13716,'20039','Kaupo','KAUPO',NULL,'','United States','',0,0,231,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13717,'20040','Kaupulehu','KAUPULEHU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13718,'37172','Kausani','KAUSANI',NULL,'','India','Kausani',9,0,101,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13719,'14881','Kautokeino','KAUTOKEINO',NULL,'','Norway','',0,0,164,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13720,'42044','Kavala','KAVALA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:47','1900-01-01 00:00:00',1,0,1),(13721,'9760','Kavalla','KAVALLA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13722,'39184','Kavarna','KAVARNA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13723,'15567','Kavieng','KAVIENG',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13724,'43165','Kavos','KAVOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13725,'9670','Kavros','KAVROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13726,'13407','Kawagoe','KAWAGOE',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13727,'15119','Kawaha Point','KAWAHA POINT',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13728,'20041','Kawaihae','KAWAIHAE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13729,'13270','Kawanishi','KAWANISHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13730,'13271','Kawasaki','KAWASAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:48','1900-01-01 00:00:00',1,0,1),(13731,'42564','Kawazu','KAWAZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13732,'43627','Kawerau','KAWERAU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13733,'42953','Kawit','KAWIT',NULL,'','Philippines','',0,0,173,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13734,'18154','Kayenta','KAYENTA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13735,'17327','Kayseri','KAYSERI',NULL,'','Turkey','Kayseri',0,0,222,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13736,'6767','Kaysersberg','KAYSERSBERG',NULL,'','France','',0,0,76,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13737,'33348','Kaysville','KAYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13738,'16457','Kazan','KAZAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:07:49','1900-01-01 00:00:00',1,0,1),(13739,'35934','Kazanlak','KAZANLAK',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13740,'15656','Kazimierz Dolny','KAZIMIERZ DOLNY',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13741,'42595','Kaziranga National Park','KAZIRANGA NATIONAL PARK',NULL,'','India','',10,0,101,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13742,'37578','Kazungula','KAZUNGULA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13743,'37817','Kazuno','KAZUNO',NULL,'','Japan','',0,0,110,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13744,'32295','Ke Ga','KE GA',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13745,'42505','Kea','KEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13746,'20042','Keaau','KEAAU',NULL,'','United States','',0,0,231,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13747,'20043','Kealakekua','KEALAKEKUA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:50','1900-01-01 00:00:00',1,0,1),(13748,'20044','Kealia (Hawaii)','KEALIA (HAWAII)',NULL,'','United States','',0,0,231,'2016-10-17 11:07:51','1900-01-01 00:00:00',1,0,1),(13749,'20046','Keanae','KEANAE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:51','1900-01-01 00:00:00',1,0,1),(13750,'27679','Kearney','KEARNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:07:52','1900-01-01 00:00:00',1,0,1),(13751,'33349','Kearns','KEARNS',NULL,'','United States','',0,0,231,'2016-10-17 11:07:52','1900-01-01 00:00:00',1,0,1),(13752,'10167','Kebar','KEBAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13753,'10168','Kebayoran Baru','KEBAYORAN BARU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13754,'17178','Kebili','KEBILI',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13755,'17215','Keciler','KECILER',NULL,'','Turkey','',0,0,222,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13756,'10082','Kecskemet','KECSKEMET',NULL,'','Hungary','',0,0,99,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13757,'1781','Kedah','KEDAH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13758,'40815','Kedarnath','KEDARNATH',NULL,'','India','Kedarnath',9,0,101,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13759,'10300','Kediri','KEDIRI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13760,'38203','Kedonganan','KEDONGANAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13761,'16524','Kedougou','KEDOUGOU',NULL,'','Senegal','',0,0,187,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13762,'15586','Kedzierzyn Kozle','KEDZIERZYN KOZLE',NULL,'','Poland','',0,0,174,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13763,'37198','Keedysville','KEEDYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13764,'17443','Keelung','KEELUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:07:53','1900-01-01 00:00:00',1,0,1),(13765,'32720','Keene','KEENE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:54','1900-01-01 00:00:00',1,0,1),(13766,'34529','Keene','KEENE',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:54','1900-01-01 00:00:00',1,0,1),(13767,'24632','Keerbergen','KEERBERGEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13768,'14412','Keetmanshoop','KEETMANSHOOP',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13769,'36442','Keetmashoop','KEETMASHOOP',NULL,'','Namibia','',0,0,151,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13770,'9503','Kefalonia','KEFALONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13771,'35261','Kefalonia-lassi','KEFALONIA-LASSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13772,'35259','Kefalonia-lixouri','KEFALONIA-LIXOURI',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13773,'35294','Kefalonia-skala','KEFALONIA-SKALA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13774,'35298','Kefalonia-svoronata','KEFALONIA-SVORONATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13775,'11007','Keflavik','KEFLAVIK',NULL,'','Iceland','Keflavik',0,0,100,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13776,'26020','Kegaska','KEGASKA',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13777,'8315','Kegworth','KEGWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:07:55','1900-01-01 00:00:00',1,0,1),(13778,'40381','Kehidakustany','KEHIDAKUSTANY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13779,'22572','Kehl','KEHL',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13780,'8316','Keighley','KEIGHLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13781,'26516','Keilor','KEILOR',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13782,'10169','Keisah','KEISAH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13783,'8317','Keiss','KEISS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13784,'26456','Keith','KEITH',NULL,'','Australia','',0,0,13,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13785,'718','Keitum','KEITUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:56','1900-01-01 00:00:00',1,0,1),(13786,'29687','Keizer','KEIZER',NULL,'','United States','',0,0,231,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13787,'20048','Kekaha','KEKAHA',NULL,'','United States','',0,0,231,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13788,'13681','Kelaat Mgouna','KELAAT MGOUNA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13789,'3864','Kelafo','KELAFO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13790,'14308','Kelang','KELANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13791,'41710','Kelantan','KELANTAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13792,'10235','Kelila','KELILA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:07:57','1900-01-01 00:00:00',1,0,1),(13793,'442','Kelkheim','KELKHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13794,'39671','Kell','KELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13795,'231','Kellberg','KELLBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13796,'24046','Kelle','KELLE',NULL,'','Congo','',0,0,51,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13797,'30716','Keller','KELLER',NULL,'','United States','',0,0,231,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13798,'7145','Kellington','KELLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13799,'20368','Kellogg','KELLOGG',NULL,'','United States','',0,0,231,'2016-10-17 11:07:58','1900-01-01 00:00:00',1,0,1),(13800,'10880','Kells','KELLS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13801,'40671','Kelmis','KELMIS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13802,'25465','Kelowna','KELOWNA',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13803,'25603','Kelsey','KELSEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13804,'18564','Kelseyville','KELSEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:07:59','1900-01-01 00:00:00',1,0,1),(13805,'7146','Kelsick','KELSICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:00','1900-01-01 00:00:00',1,0,1),(13806,'8318','Kelso','KELSO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:00','1900-01-01 00:00:00',1,0,1),(13807,'31524','Kelso','KELSO',NULL,'','United States','',0,0,231,'2016-10-17 11:08:00','1900-01-01 00:00:00',1,0,1),(13808,'443','Kelsterbach','KELSTERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:00','1900-01-01 00:00:00',1,0,1),(13809,'30717','Kemah','KEMAH',NULL,'','United States','',0,0,231,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13810,'17256','Kemer','KEMER',NULL,'','Turkey','',0,0,222,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13811,'16335','Kemerovo','KEMEROVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13812,'3924','Kemi','KEMI',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13813,'3925','Kemijarvi','KEMIJARVI',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13814,'24726','Kemmel','KEMMEL',NULL,'','Belgium','',0,0,21,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13815,'32108','Kemmerer','KEMMERER',NULL,'','United States','',0,0,231,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13816,'780','Kemnitz','KEMNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:01','1900-01-01 00:00:00',1,0,1),(13817,'39678','Kempele','KEMPELE',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13818,'27238','Kempen','KEMPEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13819,'34206','Kempsey','KEMPSEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13820,'637','Kempten','KEMPTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13821,'32570','Kempton Park','KEMPTON PARK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13822,'17664','Kenai','KENAI',NULL,'','United States','',0,0,231,'2016-10-17 11:08:02','1900-01-01 00:00:00',1,0,1),(13823,'21406','Kenberma','KENBERMA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:03','1900-01-01 00:00:00',1,0,1),(13824,'8319','Kendal','KENDAL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:03','1900-01-01 00:00:00',1,0,1),(13825,'19427','Kendall','KENDALL',NULL,'','United States','',0,0,231,'2016-10-17 11:08:03','1900-01-01 00:00:00',1,0,1),(13826,'20914','Kendallville','KENDALLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:04','1900-01-01 00:00:00',1,0,1),(13827,'10367','Kendari','KENDARI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:04','1900-01-01 00:00:00',1,0,1),(13828,'37236','Kendenup','KENDENUP',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:04','1900-01-01 00:00:00',1,0,1),(13829,'30718','Kenedy','KENEDY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:04','1900-01-01 00:00:00',1,0,1),(13830,'28311','Kenilworth','KENILWORTH',NULL,'','United States','',0,0,231,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13831,'8320','Kenilworth','KENILWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13832,'14388','Keningau','KENINGAU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13833,'38221','Kenitra','KENITRA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13834,'41163','Kenley','KENLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13835,'33899','Kenly','KENLY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:05','1900-01-01 00:00:00',1,0,1),(13836,'28065','Kenmare','KENMARE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:06','1900-01-01 00:00:00',1,0,1),(13837,'10881','Kenmare','KENMARE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:06','1900-01-01 00:00:00',1,0,1),(13838,'28887','Kenmore','KENMORE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:06','1900-01-01 00:00:00',1,0,1),(13839,'8321','Kenmore','KENMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:06','1900-01-01 00:00:00',1,0,1),(13840,'7147','Kenn','KENN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:07','1900-01-01 00:00:00',1,0,1),(13841,'33019','Kennebec','KENNEBEC',NULL,'','United States','',0,0,231,'2016-10-17 11:08:07','1900-01-01 00:00:00',1,0,1),(13842,'21884','Kennebunk','KENNEBUNK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:07','1900-01-01 00:00:00',1,0,1),(13843,'21885','Kennebunkport','KENNEBUNKPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:08','1900-01-01 00:00:00',1,0,1),(13844,'30719','Kennedale','KENNEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:08','1900-01-01 00:00:00',1,0,1),(13845,'9927','Kennedy Town','KENNEDY TOWN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:08:08','1900-01-01 00:00:00',1,0,1),(13846,'21214','Kenner','KENNER',NULL,'','United States','',0,0,231,'2016-10-17 11:08:08','1900-01-01 00:00:00',1,0,1),(13847,'19844','Kennesaw','KENNESAW',NULL,'','United States','',0,0,231,'2016-10-17 11:08:09','1900-01-01 00:00:00',1,0,1),(13848,'27680','Kennett','KENNETT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:09','1900-01-01 00:00:00',1,0,1),(13849,'31527','Kennewick','KENNEWICK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:10','1900-01-01 00:00:00',1,0,1),(13850,'7148','Kennford','KENNFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:10','1900-01-01 00:00:00',1,0,1),(13851,'17666','Kennicott','KENNICOTT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:10','1900-01-01 00:00:00',1,0,1),(13852,'8322','Kennington','KENNINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:10','1900-01-01 00:00:00',1,0,1),(13853,'34531','Kenora','KENORA',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:11','1900-01-01 00:00:00',1,0,1),(13854,'31780','Kenosha','KENOSHA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:11','1900-01-01 00:00:00',1,0,1),(13855,'32000','Kenova','KENOVA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:11','1900-01-01 00:00:00',1,0,1),(13856,'25818','Kensington','KENSINGTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13857,'34207','Kensington','KENSINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13858,'32466','Kensington','KENSINGTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13859,'8323','Kensington','KENSINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13860,'29387','Kent','KENT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:12','1900-01-01 00:00:00',1,0,1),(13861,'26806','Kent Town','KENT TOWN',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:13','1900-01-01 00:00:00',1,0,1),(13862,'8324','Kentallen','KENTALLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:13','1900-01-01 00:00:00',1,0,1),(13863,'17393','Kenting','KENTING',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:08:13','1900-01-01 00:00:00',1,0,1),(13864,'20915','Kentland','KENTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:08:13','1900-01-01 00:00:00',1,0,1),(13865,'29388','Kenton','KENTON',NULL,'','United States','',0,0,231,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13866,'8325','Kenton','KENTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13867,'39340','Kenton On Sea','KENTON ON SEA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13868,'33666','Kentucky Lake','KENTUCKY LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13869,'25722','Kentville','KENTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:14','1900-01-01 00:00:00',1,0,1),(13870,'22132','Kentwood','KENTWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:08:15','1900-01-01 00:00:00',1,0,1),(13871,'18565','Kenwood','KENWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:08:15','1900-01-01 00:00:00',1,0,1),(13872,'20232','Keokuk','KEOKUK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:15','1900-01-01 00:00:00',1,0,1),(13873,'20049','Keoneoio','KEONEOIO',NULL,'','United States','',0,0,231,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13874,'38823','Kep','KEP',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13875,'15634','Kepno','KEPNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13876,'26517','Kerang','KERANG',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13877,'9671','Keratsinion','KERATSINION',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13878,'17516','Kerch','KERCH',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13879,'39153','Keremeos','KEREMEOS',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13880,'8326','Keresley','KERESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:16','1900-01-01 00:00:00',1,0,1),(13881,'28888','Kerhonkson','KERHONKSON',NULL,'','United States','',0,0,231,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13882,'15210','Kerikeri','KERIKERI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13883,'3938','Kerimaki','KERIMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13884,'14573','Kerkrade','KERKRADE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13885,'35432','Kerman','KERMAN',NULL,'','Iran','',0,0,103,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13886,'30720','Kermit','KERMIT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13887,'47','Kernen','KERNEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:17','1900-01-01 00:00:00',1,0,1),(13888,'33900','Kernersville','KERNERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13889,'23245','Kerns','KERNS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13890,'18566','Kernville','KERNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13891,'10170','Kerobokan','KEROBOKAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13892,'40293','Kerpen','KERPEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13893,'34208','Kerrabee','KERRABEE',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:18','1900-01-01 00:00:00',1,0,1),(13894,'30721','Kerrville','KERRVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13895,'14309','Kerteh','KERTEH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13896,'2192','Kerteminde','KERTEMINDE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13897,'39419','Kervignac','KERVIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13898,'10539','Keshod','KESHOD',NULL,'','India','Keshod',16,0,101,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13899,'42594','Kesroli','KESROLI',NULL,'','India','',0,0,101,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13900,'1887','Kesselsdorf','KESSELSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:19','1900-01-01 00:00:00',1,0,1),(13901,'31136','Keswick','KESWICK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13902,'8327','Keswick','KESWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13903,'10125','Keszthely','KESZTHELY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13904,'10327','Ketapang','KETAPANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13905,'17667','Ketchikan','KETCHIKAN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13906,'20369','Ketchum','KETCHUM',NULL,'','United States','',0,0,231,'2016-10-17 11:08:20','1900-01-01 00:00:00',1,0,1),(13907,'42450','Ketsch','KETSCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13908,'8328','Kettering','KETTERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13909,'43642','Kettering','KETTERING',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13910,'31529','Kettle Falls','KETTLE FALLS',NULL,'','United States','',0,0,231,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13911,'18567','Kettleman City','KETTLEMAN CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:21','1900-01-01 00:00:00',1,0,1),(13912,'517','Kettwig','KETTWIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13913,'32467','Keurboomstrand','KEURBOOMSTRAND',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13914,'3915','Keuruu','KEURUU',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13915,'43313','Keutschach','KEUTSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13916,'39022','Kewadin','KEWADIN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:22','1900-01-01 00:00:00',1,0,1),(13917,'20608','Kewanee','KEWANEE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:23','1900-01-01 00:00:00',1,0,1),(13918,'31782','Kewaunee','KEWAUNEE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:23','1900-01-01 00:00:00',1,0,1),(13919,'7151','Kewstoke','KEWSTOKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:23','1900-01-01 00:00:00',1,0,1),(13920,'8329','Kexby','KEXBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:24','1900-01-01 00:00:00',1,0,1),(13921,'21723','Keymar','KEYMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:08:25','1900-01-01 00:00:00',1,0,1),(13922,'8330','Keynsham','KEYNSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:25','1900-01-01 00:00:00',1,0,1),(13923,'32001','Keyser','KEYSER',NULL,'','United States','',0,0,231,'2016-10-17 11:08:25','1900-01-01 00:00:00',1,0,1),(13924,'33020','Keystone','KEYSTONE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:26','1900-01-01 00:00:00',1,0,1),(13925,'38954','Kfar Blum','KFAR BLUM',NULL,'','Israel','',0,0,106,'2016-10-17 11:08:26','1900-01-01 00:00:00',1,0,1),(13926,'42899','Kfardebiane','KFARDEBIANE',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13927,'16337','Khabarovsk','KHABAROVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13928,'16266','Khabarovsk-novyy','KHABAROVSK-NOVYY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13929,'9672','Khaidharion','KHAIDHARION',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13931,'10540','Khajuraho','KHAJURAHO',NULL,'','India','Khajuraho',15,0,101,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13932,'9673','Khalandrion','KHALANDRION',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13933,'9505','Khalkidiki','KHALKIDIKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13934,'16508','Khamis Mushait','KHAMIS MUSHAIT',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13935,'34209','Khancoban','KHANCOBAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:27','1900-01-01 00:00:00',1,0,1),(13936,'10541','Khandala','KHANDALA',NULL,'','India','Khandala',5,0,101,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13937,'9674','Khania','KHANIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13938,'36746','Khanom','KHANOM',NULL,'','Thailand','',0,0,215,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13939,'16244','Khanty Mansiysk','KHANTY MANSIYSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13940,'16338','Khanty-mansiysk','KHANTY-MANSIYSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13941,'17065','Khao Kho','KHAO KHO',NULL,'','Thailand','',0,0,215,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13942,'10542','Khar','KHAR',NULL,'','India','',0,0,101,'2016-10-17 11:08:28','1900-01-01 00:00:00',1,0,1),(13943,'10692','Khardah','KHARDAH',NULL,'','India','',0,0,101,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13944,'17512','Kharkiv','KHARKIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13945,'17491','Kharkov','KHARKOV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13946,'40908','Khartoum','KHARTOUM',NULL,'','Sudan','',0,0,205,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13947,'15284','Khasab','KHASAB',NULL,'','Oman','',0,0,165,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13948,'44218','Khatia','KHATIA',NULL,'','India','',0,0,101,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13950,'38598','Khejarla','KHEJARLA',NULL,'','India','',0,0,101,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13951,'17513','Kherson','KHERSON',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13952,'16390','Khimki','KHIMKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13953,'35425','Khimsar','KHIMSAR',NULL,'','India','',0,0,101,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13954,'42262','Khiva','KHIVA',NULL,'','Uzbekistan','Khiva',0,0,232,'2016-10-17 11:08:29','1900-01-01 00:00:00',1,0,1),(13955,'24284','Khlorakas','KHLORAKAS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13956,'17492','Khmelnitskiy','KHMELNITSKIY',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13957,'9675','Kholargos','KHOLARGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13958,'13539','Khong Island','KHONG ISLAND',NULL,'','Laos','',0,0,118,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13959,'36748','Khong Jiam','KHONG JIAM',NULL,'','Thailand','',0,0,215,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13961,'35852','Khorfakkan','KHORFAKKAN',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13962,'16408','Khoroshevo','KHOROSHEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13963,'16413','Khoroshevskiy','KHOROSHEVSKIY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13964,'13696','Khouribga','KHOURIBGA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13965,'17103','Khudzhand','KHUDZHAND',NULL,'','Tajikistan','',0,0,213,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13966,'24756','Khulna','KHULNA',NULL,'','Bangladesh','Khulna',0,0,18,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13967,'15306','Khuzdar','KHUZDAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13968,'34210','Kiama','KIAMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:30','1900-01-01 00:00:00',1,0,1),(13969,'28889','Kiamesha Lake','KIAMESHA LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:31','1900-01-01 00:00:00',1,0,1),(13970,'17668','Kiana','KIANA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:31','1900-01-01 00:00:00',1,0,1),(13971,'30351','Kiawah Island','KIAWAH ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:08:31','1900-01-01 00:00:00',1,0,1),(13972,'2276','Kibaek','KIBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:08:31','1900-01-01 00:00:00',1,0,1),(13973,'7152','Kibblesworth','KIBBLESWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13974,'42900','Kibbutz Tzuba','KIBBUTZ TZUBA',NULL,'','Israel','',0,0,106,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13975,'24047','Kibouende','KIBOUENDE',NULL,'','Congo','',0,0,51,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13976,'8331','Kidderminster','KIDDERMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13977,'8332','Kidlington','KIDLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13978,'8333','Kidmore End','KIDMORE END',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13979,'8334','Kidwelly','KIDWELLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13980,'719','Kiel','KIEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:32','1900-01-01 00:00:00',1,0,1),(13981,'15722','Kielce','KIELCE',NULL,'','Poland','',0,0,174,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13982,'7153','Kielder','KIELDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13983,'23246','Kiental','KIENTAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13984,'6768','Kientzheim','KIENTZHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13985,'32403','Kiepersoil','KIEPERSOIL',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13986,'17493','Kiev','KIEV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13987,'9757','Kifisia','KIFISIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13988,'16480','Kigali','KIGALI',NULL,'','Rwanda','',0,0,508,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13989,'20050','Kihei','KIHEI',NULL,'','United States','',0,0,231,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13990,'42840','Kijal','KIJAL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13991,'13156','Kikai Island','KIKAI ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:08:33','1900-01-01 00:00:00',1,0,1),(13992,'13272','Kikuchi','KIKUCHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13993,'43913','Kikuyo','KIKUYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13994,'41162','Kilbirnie','KILBIRNIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13995,'23247','Kilchberg','KILCHBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13996,'42377','Kilchrenan','KILCHRENAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13997,'10888','Kildare','KILDARE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13998,'8335','Kildonan','KILDONAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(13999,'8336','Kildrummy','KILDRUMMY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(14000,'8337','Kilfinan','KILFINAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:34','1900-01-01 00:00:00',1,0,1),(14001,'39888','Kilgetty','KILGETTY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14002,'30722','Kilgore','KILGORE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14003,'14154','Kili','KILI',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14004,'40312','Kilifi','KILIFI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14005,'17459','Kilimanjaro','KILIMANJARO',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14006,'35242','Kilini','KILINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:35','1900-01-01 00:00:00',1,0,1),(14007,'10786','Kilkee','KILKEE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14008,'8338','Kilkeel','KILKEEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14009,'10892','Kilkenny','KILKENNY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14010,'42504','Kilkis','KILKIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14011,'10778','Kill','KILL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14012,'10787','Killaloe','KILLALOE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14013,'34211','Killara','KILLARA',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14014,'10882','Killarney','KILLARNEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14015,'25604','Killarney','KILLARNEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14016,'40918','Killarney. Co.kerry','KILLARNEY. CO.KERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:36','1900-01-01 00:00:00',1,0,1),(14017,'42132','Killcare','KILLCARE',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:37','1900-01-01 00:00:00',1,0,1),(14018,'41876','Killearn','KILLEARN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:37','1900-01-01 00:00:00',1,0,1),(14019,'30723','Killeen','KILLEEN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:37','1900-01-01 00:00:00',1,0,1),(14020,'10893','Killenard','KILLENARD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:37','1900-01-01 00:00:00',1,0,1),(14021,'7154','Killiechronan','KILLIECHRONAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14022,'8339','Killin','KILLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14023,'10843','Killiney','KILLINEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14024,'19097','Killingworth','KILLINGWORTH',NULL,'','United States','',0,0,231,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14025,'9506','Killini','KILLINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:38','1900-01-01 00:00:00',1,0,1),(14026,'41521','Killmallock','KILLMALLOCK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14027,'10883','Killorglin','KILLORGLIN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14028,'10821','Killybegs','KILLYBEGS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14029,'10844','Kilmainham','KILMAINHAM',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14030,'31138','Kilmarnock','KILMARNOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14031,'8340','Kilmarnock','KILMARNOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14032,'8341','Kilmelfort','KILMELFORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14033,'10912','Kilmessan','KILMESSAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14034,'3890','Kilpisjarvi','KILPISJARVI',NULL,'','Finland','',0,0,75,'2016-10-17 11:08:39','1900-01-01 00:00:00',1,0,1),(14035,'38765','Kilsyth','KILSYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14036,'10744','Kiltimagh','KILTIMAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14037,'7155','Kilve','KILVE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14038,'17460','Kilwa','KILWA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14039,'8342','Kilwinning','KILWINNING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14040,'37810','Kilyos','KILYOS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14041,'10171','Kimam','KIMAM',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14042,'33178','Kimball','KIMBALL',NULL,'','United States','',0,0,231,'2016-10-17 11:08:40','1900-01-01 00:00:00',1,0,1),(14043,'15578','Kimbe','KIMBE',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:08:41','1900-01-01 00:00:00',1,0,1),(14044,'25467','Kimberley','KIMBERLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:41','1900-01-01 00:00:00',1,0,1),(14045,'32468','Kimberley','KIMBERLEY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:08:41','1900-01-01 00:00:00',1,0,1),(14046,'31783','Kimberly','KIMBERLY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:41','1900-01-01 00:00:00',1,0,1),(14047,'32621','Kimbwala','KIMBWALA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14048,'42503','Kimolos','KIMOLOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14049,'8343','Kinbuck','KINBUCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14050,'8344','Kincardine','KINCARDINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14051,'34533','Kincardine','KINCARDINE',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14052,'8345','Kinclaven','KINCLAVEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14053,'8346','Kincraig','KINCRAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:42','1900-01-01 00:00:00',1,0,1),(14054,'7156','Kincraigie','KINCRAIGIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14055,'24048','Kindamba','KINDAMBA',NULL,'','Congo','',0,0,51,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14056,'21216','Kinder','KINDER',NULL,'','United States','',0,0,231,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14057,'28890','Kinderhook','KINDERHOOK',NULL,'','United States','',0,0,231,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14058,'22947','Kindersley','KINDERSLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14059,'232','Kinding','KINDING',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:43','1900-01-01 00:00:00',1,0,1),(14060,'24021','Kindu','KINDU',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:08:44','1900-01-01 00:00:00',1,0,1),(14061,'39337','Kineta','KINETA',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:44','1900-01-01 00:00:00',1,0,1),(14062,'34534','King City','KING CITY',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:44','1900-01-01 00:00:00',1,0,1),(14063,'16498','King Khalid Military City','KING KHALID MILITARY CITY',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:08:45','1900-01-01 00:00:00',1,0,1),(14064,'26713','Kingaroy','KINGAROY',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:45','1900-01-01 00:00:00',1,0,1),(14065,'27682','Kingdom City','KINGDOM CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:08:45','1900-01-01 00:00:00',1,0,1),(14066,'39000','Kingersheim','KINGERSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:08:45','1900-01-01 00:00:00',1,0,1),(14067,'21886','Kingfield','KINGFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:08:46','1900-01-01 00:00:00',1,0,1),(14068,'42915','Kingfisher Bay','KINGFISHER BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:46','1900-01-01 00:00:00',1,0,1),(14069,'34535','Kingfisher Lake','KINGFISHER LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:08:46','1900-01-01 00:00:00',1,0,1),(14070,'18155','Kingman','KINGMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:46','1900-01-01 00:00:00',1,0,1),(14071,'7157','Kings Coughton','KINGS COUGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:47','1900-01-01 00:00:00',1,0,1),(14072,'8349','King\'s Lynn','KING\'S LYNN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:48','1900-01-01 00:00:00',1,0,1),(14073,'8350','Kingsbridge','KINGSBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:48','1900-01-01 00:00:00',1,0,1),(14074,'18570','Kingsburg','KINGSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14075,'34212','Kingscliff','KINGSCLIFF',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14076,'10779','Kingscourt','KINGSCOURT',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14077,'34213','Kingsford','KINGSFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14078,'32237','Kingshill','KINGSHILL',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14079,'19845','Kingsland','KINGSLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:08:49','1900-01-01 00:00:00',1,0,1),(14080,'33179','Kingsport','KINGSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14081,'8351','Kingsteignton','KINGSTEIGNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14082,'8352','Kingston','KINGSTON',NULL,'','United Kingdom','Kingston',0,0,229,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14083,'13076','Kingston','KINGSTON',NULL,'','Jamaica','Kingston',0,0,109,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14084,'28891','Kingston','KINGSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:08:50','1900-01-01 00:00:00',1,0,1),(14085,'25723','Kingston','KINGSTON',NULL,'','Canada','Kingston',0,0,39,'2016-10-17 11:08:51','1900-01-01 00:00:00',1,0,1),(14086,'26808','Kingston','KINGSTON',NULL,'','Australia','Kingston',0,0,13,'2016-10-17 11:08:51','1900-01-01 00:00:00',1,0,1),(14087,'9286','Kingston-upon-thames','KINGSTON-UPON-THAMES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:54','1900-01-01 00:00:00',1,0,1),(14088,'32170','Kingstown','KINGSTOWN',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 11:08:54','1900-01-01 00:00:00',1,0,1),(14089,'30352','Kingstree','KINGSTREE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:54','1900-01-01 00:00:00',1,0,1),(14090,'30725','Kingsville','KINGSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:54','1900-01-01 00:00:00',1,0,1),(14091,'8354','Kingussie','KINGUSSIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:55','1900-01-01 00:00:00',1,0,1),(14092,'32002','Kingwood','KINGWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:08:55','1900-01-01 00:00:00',1,0,1),(14093,'8355','Kinloch','KINLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14094,'7159','Kinlochard','KINLOCHARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14095,'8357','Kinlochbervie','KINLOCHBERVIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14096,'8358','Kinlochleven','KINLOCHLEVEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14097,'17394','Kinmen','KINMEN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:08:56','1900-01-01 00:00:00',1,0,1),(14098,'37935','Kinneret','KINNERET',NULL,'','Israel','',0,0,106,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14099,'10920','Kinnitty','KINNITTY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14100,'8359','Kinross','KINROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14101,'10714','Kinsale','KINSALE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14102,'40919','Kinsale, Co.cork','KINSALE, CO.CORK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14103,'14804','Kinsarvik','KINSARVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14104,'24037','Kinshasa','KINSHASA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14105,'29391','Kinsman','KINSMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:08:57','1900-01-01 00:00:00',1,0,1),(14106,'33904','Kinston','KINSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14107,'43884','Kintamani','KINTAMANI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14108,'30003','Kintnersville','KINTNERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14109,'8360','Kintore','KINTORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14110,'24049','Kintsana','KINTSANA',NULL,'','Congo','',0,0,51,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14111,'41520','Kinvara','KINVARA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:08:58','1900-01-01 00:00:00',1,0,1),(14112,'9507','Kiotari','KIOTARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:08:59','1900-01-01 00:00:00',1,0,1),(14113,'21076','Kiowa','KIOWA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:59','1900-01-01 00:00:00',1,0,1),(14114,'20051','Kipahula','KIPAHULA',NULL,'','United States','',0,0,231,'2016-10-17 11:08:59','1900-01-01 00:00:00',1,0,1),(14115,'233','Kipfenberg','KIPFENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:08:59','1900-01-01 00:00:00',1,0,1),(14116,'17671','Kipnuk','KIPNUK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14117,'9508','Kipri','KIPRI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14118,'16548','Kirakira','KIRAKIRA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14119,'17260','Kirazli','KIRAZLI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14120,'30728','Kirby','KIRBY',NULL,'','United States','',0,0,231,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14121,'852','Kirchberg','KIRCHBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14122,'24472','Kirchbichl','KIRCHBICHL',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:00','1900-01-01 00:00:00',1,0,1),(14123,'23248','Kirchdorf','KIRCHDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14124,'22573','Kirchdorf','KIRCHDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14125,'39538','Kirchdorf An Der Krems','KIRCHDORF AN DER KREMS',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14126,'234','Kirchensittenbach','KIRCHENSITTENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14127,'49','Kirchheim (Hesse)','KIRCHHEIM (HESSE)',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14128,'40075','Kirchheimbolanden','KIRCHHEIMBOLANDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14129,'27239','Kirchseelte','KIRCHSEELTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:01','1900-01-01 00:00:00',1,0,1),(14130,'39488','Kirchwalsede','KIRCHWALSEDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14131,'22575','Kirchzarten','KIRCHZARTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14132,'2449','Kirdasah','KIRDASAH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14133,'17246','Kirikkale','KIRIKKALE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14134,'44031','Kirinda','KIRINDA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14135,'17217','Kiris','KIRIS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14136,'35723','Kirishima','KIRISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14137,'7160','Kirkbean','KIRKBEAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14138,'8362','Kirkburton','KIRKBURTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14139,'8363','Kirkby Lonsdale','KIRKBY LONSDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:02','1900-01-01 00:00:00',1,0,1),(14140,'8366','Kirkcaldy','KIRKCALDY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14141,'8367','Kirkcudbright','KIRKCUDBRIGHT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14142,'14882','Kirkenes','KIRKENES',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14143,'8368','Kirkintilloch','KIRKINTILLOCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14144,'41008','Kirkjubaejarkaustur','KIRKJUBAEJARKAUSTUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14145,'11023','Kirkjubaejarklaustur','KIRKJUBAEJARKLAUSTUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14146,'26021','Kirkland','KIRKLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:03','1900-01-01 00:00:00',1,0,1),(14147,'31530','Kirkland','KIRKLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14148,'17328','Kirklareli','KIRKLARELI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14149,'8369','Kirknewton','KIRKNEWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14150,'27683','Kirksville','KIRKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14151,'8370','Kirkwall','KIRKWALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:04','1900-01-01 00:00:00',1,0,1),(14152,'27684','Kirkwood','KIRKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14153,'38527','Kirkwood','KIRKWOOD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14154,'235','Kirn','KIRN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14155,'16341','Kirov','KIROV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14156,'17494','Kirovograd','KIROVOGRAD',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:05','1900-01-01 00:00:00',1,0,1),(14157,'16404','Kirovsk','KIROVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14158,'34214','Kirribilli','KIRRIBILLI',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14159,'8371','Kirriemuir','KIRRIEMUIR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14160,'1888','Kirschau','KIRSCHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14161,'17329','Kirsehir','KIRSEHIR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14162,'40579','Kirtlington','KIRTLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14163,'16754','Kiruna','KIRUNA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14164,'24573','Kirundo','KIRUNDO',NULL,'','Burundi','',0,0,36,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14165,'1648','Kiryat Shmona','KIRYAT SHMONA',NULL,'','Israel','',0,0,106,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14166,'24040','Kisangani','KISANGANI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14167,'13381','Kisarazu','KISARAZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14168,'35433','Kish Island','KISH ISLAND',NULL,'','Iran','',0,0,103,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14169,'35724','Kishimoto','KISHIMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:06','1900-01-01 00:00:00',1,0,1),(14170,'13273','Kishiwada','KISHIWADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14171,'17269','Kisikli','KISIKLI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14172,'40525','Kiskunfelegyhaza','KISKUNFELEGYHAZA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14173,'16453','Kislovodsk','KISLOVODSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14174,'37847','Kiso','KISO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14175,'27685','Kissee Mills','KISSEE MILLS',NULL,'','United States','',0,0,231,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14176,'19433','Kissimmee','KISSIMMEE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:07','1900-01-01 00:00:00',1,0,1),(14177,'51','Kisslegg','KISSLEGG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14178,'16767','Kista','KISTA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14179,'42111','Kisumu','KISUMU',NULL,'','Kenya','',0,0,113,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14180,'13157','Kitadaito','KITADAITO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14181,'13158','Kitago','KITAGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14182,'35731','Kitahiroshima','KITAHIROSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14183,'13275','Kitakami','KITAKAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14184,'13384','Kitakyushu','KITAKYUSHU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14185,'35732','Kitami','KITAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14186,'35725','Kitashiohara','KITASHIOHARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14187,'3999','Kitee','KITEE',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14188,'24795','Kiten','KITEN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:09:08','1900-01-01 00:00:00',1,0,1),(14189,'39179','Kithnos','KITHNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14190,'24277','Kiti','KITI',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14191,'17672','Kitoi','KITOI',NULL,'','United States','',0,0,231,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14192,'31531','Kitsap Peninsula','KITSAP PENINSULA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14193,'30004','Kittanning','KITTANNING',NULL,'','United States','',0,0,231,'2016-10-17 11:09:09','1900-01-01 00:00:00',1,0,1),(14194,'21887','Kittery','KITTERY',NULL,'','United States','',0,0,231,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14195,'3926','Kittila','KITTILA',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14196,'4036','Kittilä','KITTILÄ',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14197,'33905','Kitty Hawk','KITTY HAWK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14198,'32645','Kitwe','KITWE',NULL,'','Zambia','',0,0,242,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14199,'35879','Kitzbuhel','KITZBUHEL',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:10','1900-01-01 00:00:00',1,0,1),(14200,'236','Kitzingen','KITZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14201,'17673','Kivalina','KIVALINA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14202,'41212','Kiwengwa -Zanzibar','KIWENGWA -ZANZIBAR',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14203,'17267','Kizilagac','KIZILAGAC',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14204,'42757','Kizilcahamam','KIZILCAHAMAM',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14205,'34951','Kladno','KLADNO',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14206,'1999','Kladow','KLADOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:11','1900-01-01 00:00:00',1,0,1),(14207,'38576','Klaeng','KLAENG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14208,'24562','Klagenfurt','KLAGENFURT',NULL,'','Austria','Klagenfurt',0,0,14,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14209,'35885','Klagenfurt-portschac','KLAGENFURT-PORTSCHAC',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14210,'13639','Klaipeda','KLAIPEDA',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14211,'14980','Klakegg','KLAKEGG',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14212,'18572','Klamath','KLAMATH',NULL,'','United States','',0,0,231,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14213,'42841','Klang','KLANG',NULL,'','Malaysia','Klang',0,0,132,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14214,'41215','Klatovy','KLATOVY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:12','1900-01-01 00:00:00',1,0,1),(14215,'17674','Klawock','KLAWOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14216,'39726','Kleena Kleene','KLEENA KLEENE',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14217,'1826','Klein Nemerow','KLEIN NEMEROW',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14218,'38911','Kleinarl','KLEINARL',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14219,'40086','Kleinbartloff','KLEINBARTLOFF',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14220,'34541','Kleinburg','KLEINBURG',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14221,'43334','Kleine Scheidegg','KLEINE SCHEIDEGG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14222,'27240','Kleinenwieden','KLEINENWIEDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:13','1900-01-01 00:00:00',1,0,1),(14223,'781','Kleinmachnow','KLEINMACHNOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14224,'32469','Kleinmond','KLEINMOND',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14225,'32404','Kleinzee','KLEINZEE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14226,'782','Kleinzerlang','KLEINZERLANG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14227,'25468','Klemtu','KLEMTU',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14228,'10287','Klender','KLENDER',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14229,'32571','Klerksdorp','KLERKSDORP',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14230,'518','Kleve','KLEVE',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14231,'39758','Klieken','KLIEKEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14232,'237','Klingenbrunn','KLINGENBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14233,'720','Klintum','KLINTUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:14','1900-01-01 00:00:00',1,0,1),(14234,'16866','Klippan','KLIPPAN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14235,'37924','Klitoria','KLITORIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14236,'24313','Klobouky','KLOBOUKY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14237,'40352','Kloevedal','KLOEVEDAL',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14238,'19846','Klondike','KLONDIKE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14239,'16992','Klong Prao Beach','KLONG PRAO BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14240,'43617','Klongtoey','KLONGTOEY',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14241,'783','Kloster Zinna','KLOSTER ZINNA',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14242,'27105','Klosterneuburg','KLOSTERNEUBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:15','1900-01-01 00:00:00',1,0,1),(14243,'23041','Klosters','KLOSTERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14244,'23249','Kloten','KLOTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14245,'40248','Klouvas','KLOUVAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14246,'42842','Kluang','KLUANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14248,'8372','Knaresborough','KNARESBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14249,'8373','Knebworth','KNEBWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14250,'24583','Knesselare','KNESSELARE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14251,'33906','Knightdale','KNIGHTDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:16','1900-01-01 00:00:00',1,0,1),(14252,'8374','Knighton','KNIGHTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:17','1900-01-01 00:00:00',1,0,1),(14253,'10015','Knin','KNIN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:17','1900-01-01 00:00:00',1,0,1),(14254,'24421','Knittelfeld','KNITTELFELD',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:17','1900-01-01 00:00:00',1,0,1),(14255,'1455','Knock/mayo','KNOCK/MAYO',NULL,'','IRELAND','',0,0,105,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14256,'24727','Knokke-heist','KNOKKE-HEIST',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14257,'8375','Knottingley','KNOTTINGLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14258,'26022','Knowlton','KNOWLTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14259,'8376','Knowsley','KNOWSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:18','1900-01-01 00:00:00',1,0,1),(14260,'8377','Knutsford','KNUTSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:09:19','1900-01-01 00:00:00',1,0,1),(14261,'32470','Knysna','KNYSNA',NULL,'','South Africa','Knysna',0,0,195,'2016-10-17 11:09:19','1900-01-01 00:00:00',1,0,1),(14262,'43722','Koah','KOAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14263,'13276','Kobe','KOBE',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14264,'638','Kobern','KOBERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14265,'15636','Kobior','KOBIOR',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14266,'639','Koblenz','KOBLENZ',NULL,'','Germany','Koblenz',0,0,83,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14267,'17675','Kobuk','KOBUK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:20','1900-01-01 00:00:00',1,0,1),(14268,'9345','Kobuleti','KOBULETI',NULL,'','Georgia','',0,0,82,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14269,'15692','Kobylak','KOBYLAK',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14270,'15693','Kobylka','KOBYLKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14271,'39618','Kobylnica','KOBYLNICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14272,'41073','Kocaeli','KOCAELI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14273,'238','Kochel','KOCHEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14274,'13277','Kochi','KOCHI',NULL,'','Japan','Kochi (Cochin)',0,0,110,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14275,'10645','Kochi','KOCHI',NULL,'','India','Kochi (Cochin)',3,0,101,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14276,'43849','Kodagu','KODAGU',NULL,'','India','',0,0,101,'2016-10-17 11:09:21','1900-01-01 00:00:00',1,0,1),(14277,'40817','Kodaikanal','KODAIKANAL',NULL,'','India','Kodaikanal',18,0,101,'2016-10-17 11:09:22','1900-01-01 00:00:00',1,0,1),(14278,'13416','Kodaira','KODAIRA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:22','1900-01-01 00:00:00',1,0,1),(14279,'33184','Kodak','KODAK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:22','1900-01-01 00:00:00',1,0,1),(14281,'17676','Kodiak','KODIAK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14282,'38720','Kodungallur','KODUNGALLUR',NULL,'','India','',0,0,101,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14283,'1976','Koelleda','KOELLEDA',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14284,'52','Koenigsbrunn','KOENIGSBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14285,'53','Koenigsfeld','KOENIGSFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14286,'38313','Koenigstein (Bavaria)','KOENIGSTEIN (BAVARIA)',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:23','1900-01-01 00:00:00',1,0,1),(14287,'519','Koenigswinter','KOENIGSWINTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14288,'44140','Koetschlitz','KOETSCHLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14289,'35880','Koflach','KOFLACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14290,'40472','Koforidua','KOFORIDUA',NULL,'','Ghana','',0,0,84,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14291,'13425','Kofu','KOFU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14292,'13278','Koga','KOGA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14293,'39633','Kogatende','KOGATENDE',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14294,'2285','Koge','KOGE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14295,'35845','Koggala','KOGGALA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14296,'43075','Koh Bulon Lae','KOH BULON LAE',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:24','1900-01-01 00:00:00',1,0,1),(14297,'42155','Koh Kong','KOH KONG',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:09:25','1900-01-01 00:00:00',1,0,1),(14298,'15307','Kohat','KOHAT',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14299,'10662','Kohima','KOHIMA',NULL,'','India','Kohima',44,0,101,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14300,'31784','Kohler','KOHLER',NULL,'','United States','',0,0,231,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14301,'13826','Kohunlich','KOHUNLICH',NULL,'','Mexico','',0,0,141,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14302,'39559','Kokinos Pirgos','KOKINOS PIRGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14303,'9510','Kokkari','KOKKARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14304,'4019','Kokkola','KOKKOLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:27','1900-01-01 00:00:00',1,0,1),(14305,'39310','Kokkoni','KOKKONI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:28','1900-01-01 00:00:00',1,0,1),(14306,'20053','Kokomo','KOKOMO',NULL,'','United States','',0,0,231,'2016-10-17 11:09:28','1900-01-01 00:00:00',1,0,1),(14307,'24728','Koksijde','KOKSIJDE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14308,'14775','Kokstad','KOKSTAD',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14309,'13417','Kokubunji','KOKUBUNJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14310,'4037','Kolari','KOLARI',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14311,'32368','Kolasin','KOLASIN',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14312,'239','Kolbermoor','KOLBERMOOR',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14313,'14849','Kolbotn','KOLBOTN',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14314,'16527','Kolda','KOLDA',NULL,'','Senegal','',0,0,187,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14315,'2322','Kolding','KOLDING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14316,'10543','Kolhapur','KOLHAPUR',NULL,'','India','Kolhapur ',5,0,101,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14317,'3892','Koli','KOLI',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14318,'17678','Koliganek','KOLIGANEK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:29','1900-01-01 00:00:00',1,0,1),(14319,'9512','Kolimbari','KOLIMBARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14320,'9677','Kolimbia','KOLIMBIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14321,'41214','Kolin','KOLIN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14322,'37328','Kolios','KOLIOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14323,'10693','Kolkata','KOLKATA',NULL,'0','','Kolkata',19,0,101,'2016-10-17 11:09:30','2017-05-12 06:26:27',1,0,1),(14324,'10544','Kollam','KOLLAM',NULL,'','India','Kollam',3,0,101,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14325,'15725','Kolobrzeg','KOLOBRZEG',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14326,'10054','Kolocep','KOLOCEP',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14327,'9390','Kololi','KOLOLI',NULL,'','Gambia','',0,0,81,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14328,'16439','Kolomyagi','KOLOMYAGI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14329,'6833','Kolonia','KOLONIA',NULL,'','Micronesia, FS Of','',0,0,143,'2016-10-17 11:09:30','1900-01-01 00:00:00',1,0,1),(14330,'24474','Kolsassberg','KOLSASSBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14331,'43429','Kolymbia','KOLYMBIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14332,'13159','Komae','KOMAE',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14333,'42895','Komaki','KOMAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14334,'13742','Komandoo','KOMANDOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14335,'32572','Komatipoort','KOMATIPOORT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14336,'13279','Komatsu','KOMATSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14337,'38691','Komlo','KOMLO',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14338,'38557','Kommeno','KOMMENO',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14339,'32384','Kommetjie','KOMMETJIE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14340,'10236','Komodo','KOMODO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14341,'10055','Komolac','KOMOLAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14342,'15670','Komorniki','KOMORNIKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14343,'9753','Komotini','KOMOTINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14344,'1775','Kompong Cham','KOMPONG CHAM',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14345,'16245','Komsomolsk','KOMSOMOLSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:31','1900-01-01 00:00:00',1,0,1),(14346,'17257','Konakli','KONAKLI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14347,'14430','Kone','KONE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14348,'2218','Kongens Lyngby','KONGENS LYNGBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14349,'38381','Kongerslev','KONGERSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14350,'14407','Kongola','KONGOLA',NULL,'','Namibia','',0,0,151,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14351,'24022','Kongolo','KONGOLO',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14352,'14869','Kongsberg','KONGSBERG',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14353,'14892','Kongsvinger','KONGSVINGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14354,'39737','Konigsbach-stein','KONIGSBACH-STEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14355,'1695','Konigsfeld','KONIGSFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14356,'27241','Konigslutter','KONIGSLUTTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:32','1900-01-01 00:00:00',1,0,1),(14357,'42717','Konigstein','KONIGSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14358,'36066','Konigswinter','KONIGSWINTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14359,'15643','Konin','KONIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14360,'9678','Konitsa','KONITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14361,'10694','Konnagar','KONNAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14362,'23250','Konolfingen','KONOLFINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14363,'2000','Konradshohe','KONRADSHOHE',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14364,'15694','Konstancin-jeziorna','KONSTANCIN-JEZIORNA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14365,'44044','Konstantynow Lodzki','KONSTANTYNOW LODZKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14366,'22576','Konstanz','KONSTANZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14367,'43430','Kontogialos-pelekas','KONTOGIALOS-PELEKAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:33','1900-01-01 00:00:00',1,0,1),(14368,'17188','Konya','KONYA',NULL,'','Turkey','Konya',0,0,222,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14369,'26247','Koolatah','KOOLATAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14370,'43671','Koonwarra','KOONWARRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14371,'26848','Koonya','KOONYA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14372,'34785','Kooralbyn','KOORALBYN',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14373,'20371','Kooskia','KOOSKIA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14374,'26248','Kooyong','KOOYONG',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14375,'14469','Kop Van North-holland','KOP VAN NORTH-HOLLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:09:34','1900-01-01 00:00:00',1,0,1),(14376,'11011','Kopasker','KOPASKER',NULL,'','Iceland','',0,0,100,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14377,'11008','Kopavogur','KOPAVOGUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14378,'2001','Kopenick','KOPENICK',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14379,'16635','Koper','KOPER',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14380,'44219','Koppa','KOPPA',NULL,'','India','',0,0,101,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14381,'10059','Koprivnica','KOPRIVNICA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14382,'39224','Korampallam','KORAMPALLAM',NULL,'','India','',0,0,101,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14383,'41856','Korce','KORCE',NULL,'','Albania','',0,0,2,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14384,'10016','Korcula','KORCULA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14385,'38877','Korczyna','KORCZYNA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14386,'41124','Koreiz','KOREIZ',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14387,'39626','Korenica','KORENICA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14388,'32519','Korhaan Hill','KORHAAN HILL',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14389,'9679','Koridhallos','KORIDHALLOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14390,'9514','Korinthia','KORINTHIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:35','1900-01-01 00:00:00',1,0,1),(14391,'13280','Koriyama','KORIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14392,'13111','Koriyama-shi','KORIYAMA-SHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14393,'23842','Korla','KORLA',NULL,'','China','',0,0,46,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14394,'2349','Korning','KORNING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14395,'22577','Korntal','KORNTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14396,'4096','Koro','KORO',NULL,'','Fiji','',0,0,74,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14397,'4091','Korolevu','KOROLEVU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14398,'42502','Koroni','KORONI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14399,'40010','Koropove','KOROPOVE',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14400,'15564','Koror','KOROR',NULL,'','Palau','',0,0,167,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14401,'43723','Korora','KORORA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14402,'4097','Korotongo','KOROTONGO',NULL,'','Fiji','',0,0,74,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14403,'2329','Korsor','KORSOR',NULL,'','Denmark','',0,0,59,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14404,'24633','Kortenberg','KORTENBERG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:36','1900-01-01 00:00:00',1,0,1),(14405,'24729','Kortrijk','KORTRIJK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14406,'43914','Kosaka','KOSAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14407,'27873','Kosciusko','KOSCIUSKO',NULL,'','United States','',0,0,231,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14408,'1827','Koserow','KOSEROW',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14409,'13607','Kosgoda','KOSGODA',NULL,'','Sri Lanka','Kosgoda',0,0,200,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14410,'38180','Kosharitsa','KOSHARITSA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14411,'10545','Kosi','KOSI',NULL,'','India','',0,0,101,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14412,'36701','Kosice','KOSICE',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14413,'16391','Kosino','KOSINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:37','1900-01-01 00:00:00',1,0,1),(14414,'35250','Kos-kardamena','KOS-KARDAMENA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14415,'35260','Kos-lambi','KOS-LAMBI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14416,'35267','Kos-marmari','KOS-MARMARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14417,'35268','Kos-mastichari','KOS-MASTICHARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14418,'38092','Kospallag','KOSPALLAG',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14419,'35286','Kos-psalidi','KOS-PSALIDI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14420,'43961','Kosrae','KOSRAE',NULL,'','Micronesia','',0,0,143,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14421,'38476','Kosta','KOSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14422,'39761','Kostelany','KOSTELANY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14423,'16345','Kostroma','KOSTROMA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14424,'15726','Koszalin','KOSZALIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14425,'38972','Koszeg','KOSZEG',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14426,'10546','Kota','KOTA',NULL,'','India','Kota',2,0,101,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14427,'36427','Kota Bahru','KOTA BAHRU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:38','1900-01-01 00:00:00',1,0,1),(14428,'10237','Kotabangun','KOTABANGUN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14429,'37373','Kotagiri','KOTAGIRI',NULL,'','India','',0,0,101,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14430,'38238','Kothamangalam','KOTHAMANGALAM',NULL,'','India','',0,0,101,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14431,'3974','Kotka','KOTKA',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14432,'16303','Kotlas','KOTLAS',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14433,'17679','Kotlik','KOTLIK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14434,'13160','Koto','KOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14435,'32369','Kotor','KOTOR',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14436,'27076','Kotschach','KOTSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:39','1900-01-01 00:00:00',1,0,1),(14437,'1940','Kotschlitz','KOTSCHLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14438,'10547','Kottayam','KOTTAYAM',NULL,'','India','Kottayam',3,0,101,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14439,'3975','Kottby','KOTTBY',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14440,'44114','Kotu','KOTU',NULL,'','Gambia','',0,0,81,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14441,'17680','Kotzebue','KOTZEBUE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14442,'9680','Koufalia','KOUFALIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14443,'42501','Koufonisi','KOUFONISI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14444,'24274','Kouklia','KOUKLIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14445,'9517','Koukounaries','KOUKOUNARIES',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14446,'6852','Koulamoutou','KOULAMOUTOU',NULL,'','Gabon','',0,0,80,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14447,'14431','Koumac','KOUMAC',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:09:40','1900-01-01 00:00:00',1,0,1),(14448,'9518','Koumeika','KOUMEIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14449,'30729','Kountze','KOUNTZE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14450,'9887','Kourou','KOUROU',NULL,'','French Guiana','',0,0,77,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14451,'24008','Koutaba','KOUTABA',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14452,'9519','Koutouloufar','KOUTOULOUFAR',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14453,'9520','Koutsounari','KOUTSOUNARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14454,'3976','Kouvola','KOUVOLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14455,'37173','Kovalam','KOVALAM',NULL,'','India','Kovalam',3,0,101,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14456,'26415','Kowanyama','KOWANYAMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14457,'9928','Kowloon','KOWLOON',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:09:41','1900-01-01 00:00:00',1,0,1),(14458,'35729','Koya','KOYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14459,'13499','Koyang-ni','KOYANG-NI',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14460,'17681','Koyuk','KOYUK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14461,'17682','Koyukuk','KOYUKUK',NULL,'','United States','',0,0,231,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14462,'37219','Kozana','KOZANA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14463,'9826','Kozani','KOZANI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14464,'10646','Kozhikode','KOZHIKODE',NULL,'','India','Kozhikode',3,0,101,'2016-10-17 11:09:42','1900-01-01 00:00:00',1,0,1),(14465,'24634','Kraainem','KRAAINEM',NULL,'','Belgium','',0,0,21,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14466,'17096','Krabi','KRABI',NULL,'','Thailand','Krabi',31,0,215,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14467,'15727','Krag (East Pomerania)','KRAG (EAST POMERANIA)',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14468,'15004','Kragero','KRAGERO',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14469,'37395','Kragujevac','KRAGUJEVAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14470,'24777','Kraimorie','KRAIMORIE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14471,'15715','Krakow','KRAKOW',NULL,'','Poland','Krakow',0,0,174,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14472,'25901','Kralendijk','KRALENDIJK',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14473,'40387','Kraliky','KRALIKY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14474,'37632','Kraljevo','KRALJEVO',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14475,'34952','Kralupy Nad Vltavou','KRALUPY NAD VLTAVOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14476,'16805','Kramfors','KRAMFORS',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14477,'38701','Kramsach','KRAMSACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:43','1900-01-01 00:00:00',1,0,1),(14478,'39894','Kranenburg','KRANENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14479,'16636','Kranj','KRANJ',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14480,'16637','Kranjska Gora','KRANJSKA GORA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14481,'39831','Kranzberg','KRANZBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14482,'42784','Krapanj Island','KRAPANJ ISLAND',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14483,'39307','Krapinske Toplice','KRAPINSKE TOPLICE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14484,'37557','Krasna Lipa','KRASNA LIPA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14485,'16325','Krasnaya Polyana','KRASNAYA POLYANA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14486,'16350','Krasnodar','KRASNODAR',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14487,'16368','Krasnogorsk','KRASNOGORSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14488,'39575','Krasnoselkup','KRASNOSELKUP',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14489,'17107','Krasnovodsk','KRASNOVODSK',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14490,'16354','Krasnoyarsk','KRASNOYARSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14491,'13450','Kratie','KRATIE',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:09:44','1900-01-01 00:00:00',1,0,1),(14492,'520','Krefeld','KREFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14493,'42235','Kreischeberg','KREISCHEBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14494,'9681','Kremasti','KREMASTI',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14495,'33469','Kremmling','KREMMLING',NULL,'','United States','',0,0,231,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14496,'38682','Kremnica','KREMNICA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14497,'38905','Kremsmunster','KREMSMUNSTER',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14498,'22578','Kressbronn','KRESSBRONN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14499,'40724','Krestena','KRESTENA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:45','1900-01-01 00:00:00',1,0,1),(14500,'22579','Kreuzberg','KREUZBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14501,'43691','Kribi','KRIBI',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14502,'24423','Krieglach','KRIEGLACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14503,'23252','Kriegstetten','KRIEGSTETTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14504,'23253','Kriens','KRIENS',NULL,'','Switzerland','Kriens',0,0,210,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14505,'445','Kriftel','KRIFTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14506,'10017','Krilo','KRILO',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14507,'24387','Krimml','KRIMML',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14508,'10549','Krishnapur','KRISHNAPUR',NULL,'','India','',0,0,101,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14509,'15021','Kristiansand','KRISTIANSAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14510,'16867','Kristianstad','KRISTIANSTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14511,'14908','Kristiansund','KRISTIANSUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14512,'16795','Kristineberg','KRISTINEBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:46','1900-01-01 00:00:00',1,0,1),(14513,'16789','Kristinehamn','KRISTINEHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14514,'9682','Kritika','KRITIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14515,'17507','Krivoy Rog','KRIVOY ROG',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14516,'9990','Krk','KRK',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14517,'40541','Kromeriz','KROMERIZ',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14518,'240','Kronberg','KRONBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14519,'521','Kronenburg','KRONENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14520,'13451','Krong Koh Kong','KRONG KOH KONG',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14521,'16677','Kronoberg','KRONOBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14522,'15635','Krotoszyn','KROTOSZYN',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:47','1900-01-01 00:00:00',1,0,1),(14523,'16638','Krsko','KRSKO',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14524,'32405','Kruger National Park','KRUGER NATIONAL PARK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14525,'32573','Krugersdorp','KRUGERSDORP',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14526,'14696','Kruiningen','KRUININGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14527,'43231','Kruja','KRUJA',NULL,'','Albania','',0,0,2,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14528,'35881','Krumbach','KRUMBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14529,'22580','Krumbach','KRUMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14530,'54','Krummhoern','KRUMMHOERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14531,'38934','Krusevac','KRUSEVAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14532,'16392','Krylatskoye','KRYLATSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14533,'40464','Krynica','KRYNICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14534,'44005','Kryvyi Rih','KRYVYI RIH',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14535,'17395','Ku Keng','KU KENG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14536,'14354','Kuah','KUAH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:48','1900-01-01 00:00:00',1,0,1),(14537,'41808','Kuala Belait','KUALA BELAIT',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14538,'39062','Kuala Berang','KUALA BERANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14539,'20057','Kualapuu','KUALAPUU',NULL,'','United States','',0,0,231,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14540,'14363','Kuantan','KUANTAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14541,'26249','Kubin','KUBIN',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:49','1900-01-01 00:00:00',1,0,1),(14542,'24290','Kubova Hut','KUBOVA HUT',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14543,'43885','Kubu','KUBU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14544,'40862','Kuchaman','KUCHAMAN',NULL,'','India','',0,0,101,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14545,'14343','Kuching','KUCHING',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14546,'36423','Kuching-damai Beach','KUCHING-DAMAI BEACH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14547,'40649','Kuchwahi','KUCHWAHI',NULL,'','India','',0,0,101,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14548,'38213','Kucukkuyu','KUCUKKUYU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14549,'14390','Kudat','KUDAT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14550,'44045','Kudowa Zdroj','KUDOWA ZDROJ',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14551,'38352','Kudowa-zdroj','KUDOWA-ZDROJ',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14552,'55','Kuehlungsborn','KUEHLUNGSBORN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14553,'23042','Kuessnacht Am Rigi','KUESSNACHT AM RIGI',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14554,'13564','Kufrah','KUFRAH',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:09:50','1900-01-01 00:00:00',1,0,1),(14555,'24475','Kufstein','KUFSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14556,'42388','Kuga','KUGA',NULL,'','China','',0,0,46,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14557,'44141','Kuhlen-wendorf','KUHLEN-WENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14558,'3947','Kuhmo','KUHMO',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14559,'24476','Kuhtai','KUHTAI',NULL,'','Austria','',0,0,14,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14560,'17086','Kui Buri','KUI BURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14561,'39110','Kuils River','KUILS RIVER',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14562,'25845','Kuito','KUITO',NULL,'','Angola','',0,0,6,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14563,'15588','Kujawy Pomerania','KUJAWY POMERANIA',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14564,'10429','Kukas','KUKAS',NULL,'','India','',0,0,101,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14565,'20058','Kukuihaele','KUKUIHAELE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14566,'16549','Kukundu','KUKUNDU',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:09:51','1900-01-01 00:00:00',1,0,1),(14567,'20059','Kula','KULA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14568,'39647','Kula','KULA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14569,'42417','Kulim','KULIM',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14570,'10550','Kullu','KULLU',NULL,'','India','Kullu',1,0,101,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14571,'241','Kulmbach','KULMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14572,'30005','Kulpsville','KULPSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14573,'9853','Kulusuk','KULUSUK',NULL,'','Greenland','',0,0,87,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14574,'13282','Kumagaya','KUMAGAYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:52','1900-01-01 00:00:00',1,0,1),(14575,'13398','Kumamoto','KUMAMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14576,'14174','Kumanovo','KUMANOVO',NULL,'','Macedonia, FYR Of','',0,0,191,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14577,'43623','Kumara','KUMARA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14578,'10430','Kumarakom','KUMARAKOM',NULL,'','India','Kumarakom',3,0,101,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14579,'9353','Kumasi','KUMASI',NULL,'','Ghana','',0,0,84,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14580,'10551','Kumbakonam','KUMBAKONAM',NULL,'','India','Kumbakonam',18,0,101,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14582,'44220','Kumbhalgarh','KUMBHALGARH',NULL,'','India','',0,0,101,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14583,'37625','Kumburgaz','KUMBURGAZ',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14584,'13161','Kumejima','KUMEJIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14585,'43024','Kumeu','KUMEU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14586,'13162','Kumiyama','KUMIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14587,'37344','Kumluca','KUMLUCA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:53','1900-01-01 00:00:00',1,0,1),(14588,'13743','Kunfunadhoo','KUNFUNADHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14589,'16903','Kungalv','KUNGALV',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14590,'16706','Kungsbacka','KUNGSBACKA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14591,'16829','Kungsholmen','KUNGSHOLMEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14592,'13283','Kunigami','KUNIGAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14593,'10288','Kuningan','KUNINGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14594,'23946','Kunming','KUNMING',NULL,'','China','',0,0,46,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14595,'24314','Kunovice','KUNOVICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14596,'13519','Kunsan','KUNSAN',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14597,'23684','Kunshan','KUNSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14598,'16393','Kuntsevo','KUNTSEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14599,'26958','Kununurra','KUNUNURRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14600,'4000','Kuopio','KUOPIO',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14601,'3916','Kuorevesi','KUOREVESI',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:54','1900-01-01 00:00:00',1,0,1),(14602,'10351','Kupang','KUPANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14603,'16440','Kupchino','KUPCHINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14604,'23843','Kuqa','KUQA',NULL,'','China','',0,0,46,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14605,'13744','Kuramathi','KURAMATHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14606,'13284','Kurashiki','KURASHIKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14607,'38081','Kure','KURE',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14608,'33907','Kure Beach','KURE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14609,'13745','Kuredu','KUREDU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14610,'3831','Kuressaare','KURESSAARE',NULL,'','Estonia','',0,0,69,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14611,'16355','Kurgan','KURGAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14612,'13462','Kuria','KURIA',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14613,'39164','Kurnell','KURNELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:55','1900-01-01 00:00:00',1,0,1),(14614,'37458','Kurrimine Beach','KURRIMINE BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14615,'40818','Kurseong','KURSEONG',NULL,'','India','',0,0,101,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14616,'16356','Kursk','KURSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14617,'40304','Kursunlu','KURSUNLU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14618,'522','Kurten','KURTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14619,'20060','Kurtistown','KURTISTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14620,'32471','Kuruman','KURUMAN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14621,'43915','Kurume','KURUME',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14622,'17318','Kusadasi','KUSADASI',NULL,'','Turkey','Kusadasi',0,0,222,'2016-10-17 11:09:56','1900-01-01 00:00:00',1,0,1),(14623,'42563','Kusatsu','KUSATSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14624,'39457','Kusel','KUSEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14625,'39219','Kushalnagar','KUSHALNAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14626,'35733','Kushimoto','KUSHIMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14627,'37602','Kushinagar','KUSHINAGAR',NULL,'','India','Kushinagar',6,0,101,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14628,'13285','Kushiro','KUSHIRO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14629,'24757','Kushtia','KUSHTIA',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14630,'23254','Kusnacht','KUSNACHT',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14631,'42562','Kussharo','KUSSHARO',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14632,'13428','Kustanay','KUSTANAY',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14633,'10172','Kuta','KUTA',NULL,'','Indonesia','Kuta',0,0,102,'2016-10-17 11:09:57','1900-01-01 00:00:00',1,0,1),(14634,'17330','Kutahya','KUTAHYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14635,'9346','Kutaisi','KUTAISI',NULL,'','Georgia','',0,0,82,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14636,'10104','Kutas','KUTAS',NULL,'','Hungary','',0,0,99,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14637,'40819','Kutch','KUTCH',NULL,'','India','Kutch',16,0,101,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14638,'35737','Kutchan','KUTCHAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14639,'24353','Kutna Hora','KUTNA HORA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14640,'15667','Kutno','KUTNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14641,'37853','Kutta','KUTTA',NULL,'','India','',0,0,101,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14642,'33667','Kuttawa','KUTTAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14643,'16600','Kuty','KUTY',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14644,'30006','Kutztown','KUTZTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:09:58','1900-01-01 00:00:00',1,0,1),(14645,'26023','Kuujjuaq','KUUJJUAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14646,'26024','Kuujjuarapik','KUUJJUARAPIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14647,'4038','Kuusamo','KUUSAMO',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14648,'3977','Kuusankoski','KUUSANKOSKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14649,'35827','Kuwait','KUWAIT',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14650,'13286','Kuwana','KUWANA',NULL,'','Japan','',0,0,110,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14651,'40226','Kvalsund','KVALSUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14652,'16884','Kvanum','KVANUM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14653,'9992','Kvarner','KVARNER',NULL,'','Croatia','',0,0,55,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14654,'15022','Kvinesdal','KVINESDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14655,'14805','Kvitfjell','KVITFJELL',NULL,'','Norway','',0,0,164,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14656,'43388','Kwa Zulu Natal','KWA ZULU NATAL',NULL,'','South Africa','',0,0,195,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14657,'14155','Kwajalein','KWAJALEIN',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14658,'42898','Kwale','KWALE',NULL,'','Kenya','',0,0,113,'2016-10-17 11:09:59','1900-01-01 00:00:00',1,0,1),(14659,'13526','Kwangju','KWANGJU',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14660,'32664','Kwekwe','KWEKWE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14661,'17683','Kwethluk','KWETHLUK',NULL,'','United States','',0,0,231,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14662,'38239','Kwidzyn','KWIDZYN',NULL,'','Poland','',0,0,174,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14663,'17684','Kwigillingok','KWIGILLINGOK',NULL,'','United States','',0,0,231,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14664,'26458','Kwinana','KWINANA',NULL,'','Australia','',0,0,13,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14665,'42066','Kyaikhtiyo','KYAIKHTIYO',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14666,'42065','Kyaing Tong','KYAING TONG',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14667,'40031','Kyjov','KYJOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:10:00','1900-01-01 00:00:00',1,0,1),(14668,'44190','Kyle','KYLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14669,'30730','Kyle','KYLE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14670,'8379','Kyleakin','KYLEAKIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14671,'41519','Kylemore','KYLEMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14672,'42500','Kylini','KYLINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14673,'43916','Kyotango','KYOTANGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:10:01','1900-01-01 00:00:00',1,0,1),(14674,'13399','Kyoto','KYOTO',NULL,'','Japan','Kyoto',0,0,110,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14675,'43431','Kypseli','KYPSELI',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14676,'1686','Kyrenia','KYRENIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14677,'14991','Kyrksaeterora','KYRKSAETERORA',NULL,'','Norway','',0,0,164,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14678,'40887','Kythira','KYTHIRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14679,'42498','Kythnos','KYTHNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14680,'16467','Kyzyl','KYZYL',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14681,'5401','L Aigle','L AIGLE',NULL,'','France','',0,0,76,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14682,'41544','L Ametlla De Mar','L AMETLLA DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14683,'41570','L Ampolla','L AMPOLLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14684,'2652','L\' Eliana','L\' ELIANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:02','1900-01-01 00:00:00',1,0,1),(14685,'41542','L Espluga De Francoli','L ESPLUGA DE FRANCOLI',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:03','1900-01-01 00:00:00',1,0,1),(14686,'41427','L Isle-d Abeau','L ISLE-D ABEAU',NULL,'','France','',0,0,76,'2016-10-17 11:10:03','1900-01-01 00:00:00',1,0,1),(14687,'17158','La Marsa','LA MARSA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:10:16','1900-01-01 00:00:00',1,0,1),(14688,'2367','La Romana','LA ROMANA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:10:22','1900-01-01 00:00:00',1,0,1),(14689,'16517','La Somone','LA SOMONE',NULL,'','Senegal','',0,0,187,'2016-10-17 11:10:24','1900-01-01 00:00:00',1,0,1),(14690,'14236','La Trinite','LA TRINITE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:10:25','1900-01-01 00:00:00',1,0,1),(14691,'27106','Laa An Der Thaya','LAA AN DER THAYA',NULL,'','Austria','',0,0,14,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14692,'41226','Laagri','LAAGRI',NULL,'','Estonia','',0,0,69,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14693,'27242','Laatzen','LAATZEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14694,'23256','Laax','LAAX',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14695,'42971','Labarthe-inard','LABARTHE-INARD',NULL,'','France','',0,0,76,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14696,'4057','Labasa','LABASA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14697,'6097','Labastide-murat','LABASTIDE-MURAT',NULL,'','France','',0,0,76,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14698,'6098','Labege','LABEGE',NULL,'','France','',0,0,76,'2016-10-17 11:10:28','1900-01-01 00:00:00',1,0,1),(14699,'22768','Labelle','LABELLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14700,'38797','Labin','LABIN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14701,'17685','Labouchere Bay','LABOUCHERE BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14702,'17686','Labourchere Bay','LABOURCHERE BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14703,'26715','Labrador','LABRADOR',NULL,'','Australia','',0,0,13,'2016-10-17 11:10:29','1900-01-01 00:00:00',1,0,1),(14704,'25663','Labrador City','LABRADOR CITY',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14705,'42545','Labrelotte','LABRELOTTE',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14706,'14313','Labuan','LABUAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14707,'10174','Labuan Bajo','LABUAN BAJO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14708,'39891','Labuerda','LABUERDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14709,'10341','Labuha','LABUHA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:10:30','1900-01-01 00:00:00',1,0,1),(14710,'13682','Lac Lalla','LAC LALLA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14711,'41419','Lacanau','LACANAU',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14712,'5196','Lacanau-ocean','LACANAU-OCEAN',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14713,'38616','Lacapelle-marival','LACAPELLE-MARIVAL',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14714,'6099','Lacaune','LACAUNE',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14715,'6100','Lacave','LACAVE',NULL,'','France','',0,0,76,'2016-10-17 11:10:31','1900-01-01 00:00:00',1,0,1),(14716,'41131','Lac-beauport','LAC-BEAUPORT',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14717,'12011','Lacco Ameno','LACCO AMENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14718,'40241','Lac-des-plages','LAC-DES-PLAGES',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14719,'8380','Laceby','LACEBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14720,'39744','Laces','LACES',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14721,'22772','Lac-etchemin','LAC-ETCHEMIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:32','1900-01-01 00:00:00',1,0,1),(14722,'31533','Lacey','LACEY',NULL,'','United States','',0,0,231,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14723,'23257','Lachen','LACHEN',NULL,'','Switzerland','Lachen',0,0,210,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14724,'41734','Lachenaie','LACHENAIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14725,'22773','Lachine','LACHINE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14726,'22774','Lachute','LACHUTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14727,'28893','Lackawanna','LACKAWANNA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:33','1900-01-01 00:00:00',1,0,1),(14728,'30007','Lackawaxen','LACKAWAXEN',NULL,'','United States','',0,0,231,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14729,'22775','Lac-nominingue','LAC-NOMININGUE',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14730,'8381','Lacock','LACOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14731,'6460','La-colle-sur-loup','LA-COLLE-SUR-LOUP',NULL,'','France','',0,0,76,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14732,'32722','Laconia','LACONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:34','1900-01-01 00:00:00',1,0,1),(14733,'44066','Lacroix-saint-ouen','LACROIX-SAINT-OUEN',NULL,'','France','',0,0,76,'2016-10-17 11:10:35','1900-01-01 00:00:00',1,0,1),(14734,'4325','Lacs Des Dombes','LACS DES DOMBES',NULL,'','France','',0,0,76,'2016-10-17 11:10:35','1900-01-01 00:00:00',1,0,1),(14735,'30736','Lacy-lakeview','LACY-LAKEVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:10:35','1900-01-01 00:00:00',1,0,1),(14736,'9521','Ladiko','LADIKO',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14737,'12012','Ladispoli','LADISPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14738,'25469','Ladner','LADNER',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14739,'20920','Ladoga','LADOGA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14740,'4326','Ladoix-serrigny','LADOIX-SERRIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:10:36','1900-01-01 00:00:00',1,0,1),(14741,'30353','Ladson','LADSON',NULL,'','United States','',0,0,231,'2016-10-17 11:10:37','1900-01-01 00:00:00',1,0,1),(14742,'38027','Lady Elliot Island','LADY ELLIOT ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:10:37','1900-01-01 00:00:00',1,0,1),(14743,'19435','Lady Lake','LADY LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:37','1900-01-01 00:00:00',1,0,1),(14744,'31789','Ladysmith','LADYSMITH',NULL,'','United States','',0,0,231,'2016-10-17 11:10:37','1900-01-01 00:00:00',1,0,1),(14745,'32520','Ladysmith','LADYSMITH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14746,'25470','Ladysmith','LADYSMITH',NULL,'','Canada','',0,0,39,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14747,'14156','Lae','LAE',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14748,'15576','Lae','LAE',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14749,'17003','Laem Chabang','LAEM CHABANG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14750,'41821','Laengenfeld','LAENGENFELD',NULL,'','Austria','',0,0,14,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14751,'14806','Laerdal','LAERDAL',NULL,'','Norway','Laerdal',0,0,164,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14752,'21218','Lafayette','LAFAYETTE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:38','1900-01-01 00:00:00',1,0,1),(14753,'21220','Lafitte','LAFITTE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14754,'16745','Lagan','LAGAN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14755,'9683','Laganas','LAGANAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14756,'5197','Lagarrigue','LAGARRIGUE',NULL,'','France','',0,0,76,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14757,'15359','Lagarterita','LAGARTERITA',NULL,'','Panama','',0,0,169,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14758,'15449','Lagen Island','LAGEN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14759,'41897','Laghey','LAGHEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14760,'39558','Laghy','LAGHY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14761,'32260','Lagi','LAGI',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14762,'35546','Laglio','LAGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14763,'40376','Lagnes','LAGNES',NULL,'','France','',0,0,76,'2016-10-17 11:10:41','1900-01-01 00:00:00',1,0,1),(14764,'5854','Lagny','LAGNY',NULL,'','France','',0,0,76,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14765,'2407','Lago Agrio','LAGO AGRIO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14766,'916','Lago Arenal','LAGO ARENAL',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14767,'15930','Lagoa','LAGOA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14768,'10239','Lagoi','LAGOI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14769,'42641','Lagoinha','LAGOINHA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14770,'9522','Lagonissi','LAGONISSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14771,'15776','Lagos','LAGOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:10:42','1900-01-01 00:00:00',1,0,1),(14772,'36451','Lagos','LAGOS',NULL,'','Nigeria','',0,0,160,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14773,'14017','Lagos De Moreno','LAGOS DE MORENO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14774,'12722','Lagosanto','LAGOSANTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14775,'39427','Lagrand','LAGRAND',NULL,'','France','',0,0,76,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14776,'19848','Lagrange','LAGRANGE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:43','1900-01-01 00:00:00',1,0,1),(14777,'3710','Laguardia','LAGUARDIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:44','1900-01-01 00:00:00',1,0,1),(14778,'28894','Laguardia Airport (Lga)','LAGUARDIA AIRPORT (LGA)',NULL,'','United States','',0,0,231,'2016-10-17 11:10:44','1900-01-01 00:00:00',1,0,1),(14779,'6101','Laguiole','LAGUIOLE',NULL,'','France','',0,0,76,'2016-10-17 11:10:44','1900-01-01 00:00:00',1,0,1),(14780,'25184','Laguna','LAGUNA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:10:44','1900-01-01 00:00:00',1,0,1),(14781,'18584','Laguna - South Beaches','LAGUNA - SOUTH BEACHES',NULL,'','United States','',0,0,231,'2016-10-17 11:10:45','1900-01-01 00:00:00',1,0,1),(14782,'39339','Laguna Carilafquen','LAGUNA CARILAFQUEN',NULL,'','Argentina','',0,0,10,'2016-10-17 11:10:45','1900-01-01 00:00:00',1,0,1),(14783,'12013','Lagundo','LAGUNDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14784,'14344','Lahad Datu','LAHAD DATU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14785,'20061','Lahaina','LAHAINA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14786,'9523','Lahania','LAHANIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14787,'30009','Lahaska','LAHASKA',NULL,'','United States','',0,0,231,'2016-10-17 11:10:46','1900-01-01 00:00:00',1,0,1),(14788,'10745','Lahinch','LAHINCH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14789,'56','Lahn River Valley','LAHN RIVER VALLEY',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14790,'640','Lahnstein','LAHNSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14791,'39518','Lahntal-sarnau','LAHNTAL-SARNAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14792,'38113','Laholm','LAHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14793,'15308','Lahore','LAHORE',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14794,'523','Lahr','LAHR',NULL,'','Germany','',0,0,83,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14795,'4020','Lahti','LAHTI',NULL,'','Finland','',0,0,75,'2016-10-17 11:10:47','1900-01-01 00:00:00',1,0,1),(14796,'42089','Lai Chau','LAI CHAU',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14797,'9930','Lai Chi Kok','LAI CHI KOK',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14798,'41950','Laias','LAIAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14799,'20062','Laie','LAIE',NULL,'','United States','',0,0,231,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14800,'5404','L\'aigle','L\'AIGLE',NULL,'','France','',0,0,76,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14801,'12014','Laigueglia','LAIGUEGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14802,'11246','Lainate','LAINATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:48','1900-01-01 00:00:00',1,0,1),(14803,'15120','Laingholm','LAINGHOLM',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14804,'6102','Laissac','LAISSAC',NULL,'','France','',0,0,76,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14805,'37989','Laives','LAIVES',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14806,'15755','Lajas','LAJAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14807,'30738','Lajitas','LAJITAS',NULL,'','United States','',0,0,231,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14808,'4327','Lake Annecy','LAKE ANNECY',NULL,'','France','',0,0,76,'2016-10-17 11:10:49','1900-01-01 00:00:00',1,0,1),(14809,'39612','Lake Ashino','LAKE ASHINO',NULL,'','Japan','',0,0,110,'2016-10-17 11:10:50','1900-01-01 00:00:00',1,0,1),(14810,'10075','Lake Balaton','LAKE BALATON',NULL,'','Hungary','',0,0,99,'2016-10-17 11:10:50','1900-01-01 00:00:00',1,0,1),(14811,'35776','Lake Baringo','LAKE BARINGO',NULL,'','Kenya','',0,0,113,'2016-10-17 11:10:50','1900-01-01 00:00:00',1,0,1),(14812,'16623','Lake Bled - Julian Alps','LAKE BLED - JULIAN ALPS',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:10:50','1900-01-01 00:00:00',1,0,1),(14813,'40583','Lake Bolsena','LAKE BOLSENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:10:51','1900-01-01 00:00:00',1,0,1),(14814,'26999','Lake Constance','LAKE CONSTANCE',NULL,'','Austria','',0,0,14,'2016-10-17 11:10:54','1900-01-01 00:00:00',1,0,1),(14815,'15121','Lake Karapiro','LAKE KARAPIRO',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:10:58','1900-01-01 00:00:00',1,0,1),(14816,'16678','Lake Malaren','LAKE MALAREN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:10:59','1900-01-01 00:00:00',1,0,1),(14817,'17450','Lake Manyara','LAKE MANYARA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:10:59','1900-01-01 00:00:00',1,0,1),(14818,'3895','Lake Saimaa','LAKE SAIMAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:11:03','1900-01-01 00:00:00',1,0,1),(14819,'15374','Lake Titicaca - Puno Area','LAKE TITICACA - PUNO AREA',NULL,'','Peru','',0,0,172,'2016-10-17 11:11:04','1900-01-01 00:00:00',1,0,1),(14820,'1782','Lake Town Resort','LAKE TOWN RESORT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:11:04','1900-01-01 00:00:00',1,0,1),(14821,'34542','Lakefield','LAKEFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:06','1900-01-01 00:00:00',1,0,1),(14822,'28312','Lakehurst','LAKEHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:11:06','1900-01-01 00:00:00',1,0,1),(14823,'4095','Lakemba','LAKEMBA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:11:07','1900-01-01 00:00:00',1,0,1),(14824,'19853','Lakemont','LAKEMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:08','1900-01-01 00:00:00',1,0,1),(14825,'24636','Laken','LAKEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:11:08','1900-01-01 00:00:00',1,0,1),(14826,'18594','Lakeport','LAKEPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:08','1900-01-01 00:00:00',1,0,1),(14827,'18595','Lakeshore','LAKESHORE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:08','1900-01-01 00:00:00',1,0,1),(14828,'18596','Lakeside','LAKESIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:09','1900-01-01 00:00:00',1,0,1),(14829,'32472','Lakeside','LAKESIDE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:11:09','1900-01-01 00:00:00',1,0,1),(14830,'7163','Lakeside','LAKESIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:09','1900-01-01 00:00:00',1,0,1),(14831,'30012','Lakeville','LAKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:13','1900-01-01 00:00:00',1,0,1),(14832,'30745','Lakeway','LAKEWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:11:14','1900-01-01 00:00:00',1,0,1),(14833,'31535','Lakewood','LAKEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:11:14','1900-01-01 00:00:00',1,0,1),(14834,'16405','Lakhta','LAKHTA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14835,'39808','Lakkopetra','LAKKOPETRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14836,'2297','Lakolk','LAKOLK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14837,'9524','Lakonia','LAKONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14838,'28066','Lakota','LAKOTA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:16','1900-01-01 00:00:00',1,0,1),(14839,'14883','Lakselv','LAKSELV',NULL,'','Norway','',0,0,164,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14840,'40820','Lakshadweep','LAKSHADWEEP',NULL,'','India','',0,0,101,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14841,'38464','Lalacelle','LALACELLE',NULL,'','France','',0,0,76,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14842,'43188','L\'aldosa','L\'ALDOSA',NULL,'','Andorra','',0,0,5,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14843,'7164','Laleston','LALESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14844,'3865','Lalibela','LALIBELA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14845,'5198','Lalinde','LALINDE',NULL,'','France','',0,0,76,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14846,'12015','Lallio','LALLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:17','1900-01-01 00:00:00',1,0,1),(14847,'4954','L\'alpe-d\'huez','L\'ALPE-D\'HUEZ',NULL,'','France','',0,0,76,'2016-10-17 11:11:18','1900-01-01 00:00:00',1,0,1),(14848,'242','Lam','LAM',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:18','1900-01-01 00:00:00',1,0,1),(14849,'32332','Lamap','LAMAP',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:11:18','1900-01-01 00:00:00',1,0,1),(14850,'27690','Lamar','LAMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:11:18','1900-01-01 00:00:00',1,0,1),(14851,'5552','Lamballe','LAMBALLE',NULL,'','France','',0,0,76,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14852,'6845','Lambarene','LAMBARENE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14853,'43614','Lambari','LAMBARI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14854,'27691','Lambert - St. Louis International Airport (Stl)','LAMBERT - ST. LOUIS INTERNATIONAL AIRPORT (STL)',NULL,'','United States','',0,0,231,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14855,'32406','Lambert\'s Bay','LAMBERT\'S BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:11:19','1900-01-01 00:00:00',1,0,1),(14856,'28314','Lambertville','LAMBERTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14857,'6461','Lambesc','LAMBESC',NULL,'','France','',0,0,76,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14858,'8384','Lambeth','LAMBETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14859,'8385','Lambourn','LAMBOURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14860,'16083','Lamego','LAMEGO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14861,'32317','Lamen Bay','LAMEN BAY',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:11:20','1900-01-01 00:00:00',1,0,1),(14862,'30746','Lamesa','LAMESA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14863,'40307','Lamesly','LAMESLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14864,'2667','L\'ametlla De Mar','L\'AMETLLA DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14865,'35665','Lamezia Terme','LAMEZIA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14866,'4092','Lami','LAMI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14867,'9783','Lamia','LAMIA',NULL,'','Greece','Lamia',0,0,86,'2016-10-17 11:11:21','1900-01-01 00:00:00',1,0,1),(14868,'12016','Lamia','LAMIA',NULL,'','Italy','Lamia',0,0,107,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14869,'15038','Lamidanda','LAMIDANDA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14870,'42227','Lamington National Park','LAMINGTON NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14871,'9904','Lamma Island','LAMMA ISLAND',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14872,'21888','Lamoine Beach','LAMOINE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14873,'42796','Lamongan','LAMONGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14874,'20234','Lamoni','LAMONI',NULL,'','United States','',0,0,231,'2016-10-17 11:11:22','1900-01-01 00:00:00',1,0,1),(14875,'19447','Lamont','LAMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:23','1900-01-01 00:00:00',1,0,1),(14876,'5199','Lamothe','LAMOTHE',NULL,'','France','',0,0,76,'2016-10-17 11:11:23','1900-01-01 00:00:00',1,0,1),(14877,'40427','Lamoura','LAMOURA',NULL,'','France','',0,0,76,'2016-10-17 11:11:23','1900-01-01 00:00:00',1,0,1),(14878,'17059','Lampang','LAMPANG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:11:23','1900-01-01 00:00:00',1,0,1),(14879,'30747','Lampasas','LAMPASAS',NULL,'','United States','',0,0,231,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14880,'5553','Lampaul-guimiliau','LAMPAUL-GUIMILIAU',NULL,'','France','',0,0,76,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14881,'13001','Lampedusa','LAMPEDUSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14882,'446','Lampertheim','LAMPERTHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14883,'8386','Lampeter','LAMPETER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14884,'8387','Lamphey','LAMPHEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14885,'9525','Lampi','LAMPI',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:24','1900-01-01 00:00:00',1,0,1),(14886,'2668','L\'ampolla','L\'AMPOLLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14887,'41707','Lampoon','LAMPOON',NULL,'','Thailand','',0,0,215,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14888,'12017','Lamporecchio','LAMPORECCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14889,'43938','Lamu','LAMU',NULL,'','Kenya','',0,0,113,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14890,'28537','Lamy','LAMY',NULL,'','United States','',0,0,231,'2016-10-17 11:11:25','1900-01-01 00:00:00',1,0,1),(14891,'24683','Lanaken','LANAKEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:11:26','1900-01-01 00:00:00',1,0,1),(14892,'20616','Lanark','LANARK',NULL,'','United States','',0,0,231,'2016-10-17 11:11:26','1900-01-01 00:00:00',1,0,1),(14893,'7165','Lanarkshire','LANARKSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:27','1900-01-01 00:00:00',1,0,1),(14894,'42161','Lanaudiere','LANAUDIERE',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:27','1900-01-01 00:00:00',1,0,1),(14895,'7166','Lancashire','LANCASHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:27','1900-01-01 00:00:00',1,0,1),(14896,'30355','Lancaster','LANCASTER',NULL,'','United States','',0,0,231,'2016-10-17 11:11:27','1900-01-01 00:00:00',1,0,1),(14897,'1440','Lancaster','LANCASTER',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:11:29','1900-01-01 00:00:00',1,0,1),(14898,'35548','Lanciano','LANCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14899,'42728','L\'ancienne-lorette','L\'ANCIENNE-LORETTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14900,'8390','Lancing','LANCING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14901,'4329','Lancon-de-provence','LANCON-DE-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14902,'23052','Lancy','LANCY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:11:30','1900-01-01 00:00:00',1,0,1),(14903,'13746','Landaa Giraavaru','LANDAA GIRAAVARU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:11:31','1900-01-01 00:00:00',1,0,1),(14904,'18600','Landcaster Area','LANDCASTER AREA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:31','1900-01-01 00:00:00',1,0,1),(14905,'24477','Landeck','LANDECK',NULL,'','Austria','',0,0,14,'2016-10-17 11:11:31','1900-01-01 00:00:00',1,0,1),(14906,'5554','Landeda','LANDEDA',NULL,'','France','',0,0,76,'2016-10-17 11:11:32','1900-01-01 00:00:00',1,0,1),(14907,'32110','Lander','LANDER',NULL,'','United States','',0,0,231,'2016-10-17 11:11:32','1900-01-01 00:00:00',1,0,1),(14908,'5555','Landerneau','LANDERNEAU',NULL,'','France','',0,0,76,'2016-10-17 11:11:32','1900-01-01 00:00:00',1,0,1),(14909,'4330','Landes','LANDES',NULL,'','France','',0,0,76,'2016-10-17 11:11:32','1900-01-01 00:00:00',1,0,1),(14910,'14762','Landgraaf','LANDGRAAF',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:11:33','1900-01-01 00:00:00',1,0,1),(14911,'31342','Landgrove','LANDGROVE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:33','1900-01-01 00:00:00',1,0,1),(14912,'5556','Landivisiau','LANDIVISIAU',NULL,'','France','',0,0,76,'2016-10-17 11:11:33','1900-01-01 00:00:00',1,0,1),(14913,'21725','Landover','LANDOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:11:33','1900-01-01 00:00:00',1,0,1),(14914,'6175','Landrethun-le-nord','LANDRETHUN-LE-NORD',NULL,'','France','',0,0,76,'2016-10-17 11:11:34','1900-01-01 00:00:00',1,0,1),(14915,'30356','Landrum','LANDRUM',NULL,'','United States','',0,0,231,'2016-10-17 11:11:34','1900-01-01 00:00:00',1,0,1),(14916,'1717','Landsberg','LANDSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:34','1900-01-01 00:00:00',1,0,1),(14917,'244','Landshut','LANDSHUT',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14918,'16868','Landskrona','LANDSKRONA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14919,'39638','Landstuhl','LANDSTUHL',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14920,'5557','Landudec','LANDUDEC',NULL,'','France','',0,0,76,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14921,'16885','Landvetter','LANDVETTER',NULL,'','Sweden','Landvetter',0,0,209,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14922,'34217','Lane Cove','LANE COVE',NULL,'','Australia','',0,0,13,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14923,'27423','Lanesboro','LANESBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:11:35','1900-01-01 00:00:00',1,0,1),(14924,'8392','Laneshaw Bridge','LANESHAW BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14925,'5558','Lanester','LANESTER',NULL,'','France','',0,0,76,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14926,'17908','Lanett','LANETT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14927,'37086','Lang Co','LANG CO',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14928,'8393','Langbank','LANGBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14929,'7168','Langdale','LANGDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:36','1900-01-01 00:00:00',1,0,1),(14930,'28067','Langdon','LANGDON',NULL,'','United States','',0,0,231,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14931,'25331','Langdon','LANGDON',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14932,'41892','Langdorf','LANGDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14933,'5323','Langeac','LANGEAC',NULL,'','France','',0,0,76,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14934,'5651','Langeais','LANGEAIS',NULL,'','France','',0,0,76,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14935,'32473','Langebaan','LANGEBAAN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:11:37','1900-01-01 00:00:00',1,0,1),(14936,'27243','Langelsheim','LANGELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14937,'22582','Langenargen','LANGENARGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14938,'524','Langenfeld','LANGENFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14939,'27000','Langenfeld','LANGENFELD',NULL,'','Austria','',0,0,14,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14940,'27245','Langenhagen','LANGENHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14941,'447','Langenselbold','LANGENSELBOLD',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14942,'42308','Langenthal','LANGENTHAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14943,'40660','Langenzenn','LANGENZENN',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14944,'27246','Langeoog','LANGEOOG',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:38','1900-01-01 00:00:00',1,0,1),(14945,'5466','Langeron','LANGERON',NULL,'','France','',0,0,76,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14946,'15005','Langesund','LANGESUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14947,'23806','Langfang','LANGFANG',NULL,'','China','',0,0,46,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14948,'9329','Langford Budville','LANGFORD BUDVILLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14949,'10342','Langgur','LANGGUR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14950,'11254','Langhe Region','LANGHE REGION',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14951,'12019','Langhirano','LANGHIRANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14952,'8394','Langholm','LANGHOLM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:39','1900-01-01 00:00:00',1,0,1),(14953,'16830','Langholmen','LANGHOLMEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14954,'30016','Langhorne','LANGHORNE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14955,'14285','Langkawi','LANGKAWI',NULL,'','Malaysia','Langkawi',0,0,132,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14956,'25','Langley','LANGLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14957,'31536','Langley','LANGLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:11:40','1900-01-01 00:00:00',1,0,1),(14958,'23053','Langnau Im Emmental','LANGNAU IM EMMENTAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14959,'44067','Langogne','LANGOGNE',NULL,'','France','',0,0,76,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14960,'2669','Langreo','LANGREO',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14961,'5734','Langres','LANGRES',NULL,'','France','',0,0,76,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14962,'4896','Langueux','LANGUEUX',NULL,'','France','',0,0,76,'2016-10-17 11:11:41','1900-01-01 00:00:00',1,0,1),(14963,'39190','Langweiler','LANGWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14964,'21728','Lanham','LANHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14965,'3252','Lanjaron','LANJARON',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14966,'13747','Lankanfushi','LANKANFUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14967,'525','Lank-latum','LANK-LATUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14968,'2002','Lankwitz','LANKWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14969,'37979','Lannach','LANNACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14970,'7169','Lanner','LANNER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:42','1900-01-01 00:00:00',1,0,1),(14971,'5559','Lannion','LANNION',NULL,'','France','',0,0,76,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14972,'8395','Lanreath','LANREATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14973,'30017','Lansdale','LANSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14974,'34543','Lansdowne','LANSDOWNE',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14975,'21729','Lansdowne','LANSDOWNE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:43','1900-01-01 00:00:00',1,0,1),(14976,'59264','Lansdowne','LANSDOWNE',NULL,'','India','',0,0,101,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14977,'22137','L\'anse','L\'ANSE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14978,'14237','L\'anse Mitan','L\'ANSE MITAN',NULL,'','Martinique','',0,0,137,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14979,'25664','L\'anse-au-clair','L\'ANSE-AU-CLAIR',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14980,'32407','Lanseria','LANSERIA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14981,'28068','Lansford','LANSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:11:44','1900-01-01 00:00:00',1,0,1),(14982,'22138','Lansing','LANSING',NULL,'','United States','',0,0,231,'2016-10-17 11:11:45','1900-01-01 00:00:00',1,0,1),(14983,'4331','Lanslebourg - Val Cenis','LANSLEBOURG - VAL CENIS',NULL,'','France','',0,0,76,'2016-10-17 11:11:46','1900-01-01 00:00:00',1,0,1),(14984,'40032','Lanslevillard','LANSLEVILLARD',NULL,'','France','',0,0,76,'2016-10-17 11:11:46','1900-01-01 00:00:00',1,0,1),(14985,'19449','Lantana','LANTANA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14986,'9905','Lantau Island','LANTAU ISLAND',NULL,'','Hong Kong','Lantau Island',0,0,98,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14987,'23685','Lantian','LANTIAN',NULL,'','China','',0,0,46,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14988,'39053','Lanton','LANTON',NULL,'','France','',0,0,76,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14989,'6462','Lantosque','LANTOSQUE',NULL,'','France','',0,0,76,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14990,'26075','Lanus','LANUS',NULL,'','Argentina','',0,0,10,'2016-10-17 11:11:47','1900-01-01 00:00:00',1,0,1),(14991,'41418','Lanvallay','LANVALLAY',NULL,'','France','',0,0,76,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14992,'23704','Lanxi','LANXI',NULL,'','China','',0,0,46,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14993,'42','Lanyang','LANYANG',NULL,'','China','',0,0,46,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14994,'2670','Lanzarote','LANZAROTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14995,'35034','Lanzarote-costa Tegu','LANZAROTE-COSTA TEGU',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14996,'36183','Lanzarote-playa Blan','LANZAROTE-PLAYA BLAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14997,'36202','Lanzarote-puerto Del','LANZAROTE-PUERTO DEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14998,'35115','Lanzarote-yaiza','LANZAROTE-YAIZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(14999,'23849','Lanzhou','LANZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:11:48','1900-01-01 00:00:00',1,0,1),(15000,'39355','Lanzo Dintelvi','LANZO DINTELVI',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15001,'41095','Lao Cai','LAO CAI',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15002,'15538','Laoag','LAOAG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15003,'23830','Laohekou','LAOHEKOU',NULL,'','China','',0,0,46,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15004,'23604','Laohumiao','LAOHUMIAO',NULL,'','China','',0,0,46,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15005,'10746','Laois - Offaly','LAOIS - OFFALY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15006,'6306','Laon','LAON',NULL,'','France','',0,0,76,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15007,'16046','Lapa','LAPA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15008,'22140','Lapeer','LAPEER',NULL,'','United States','',0,0,231,'2016-10-17 11:11:49','1900-01-01 00:00:00',1,0,1),(15009,'4332','Lapeyrouse Mornay','LAPEYROUSE MORNAY',NULL,'','France','',0,0,76,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15010,'1576','Lapland','LAPLAND',NULL,'','Finland','',0,0,75,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15011,'27692','Laplata','LAPLATA',NULL,'','United States','',0,0,231,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15012,'40202','Lapleau','LAPLEAU',NULL,'','France','',0,0,76,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15013,'5200','Laplume','LAPLUME',NULL,'','France','',0,0,76,'2016-10-17 11:11:50','1900-01-01 00:00:00',1,0,1),(15014,'3978','Lappeenranta','LAPPEENRANTA',NULL,'','Finland','',0,0,75,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15015,'22776','Laprairie','LAPRAIRIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15016,'43843','Lapta Mersin','LAPTA MERSIN',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15017,'15450','Lapu Lapu','LAPU LAPU',NULL,'','Philippines','',0,0,173,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15018,'4021','Lapua','LAPUA',NULL,'','Finland','',0,0,75,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15019,'12698','L\'aquila','L\'AQUILA',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15020,'41072','Lara','LARA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15021,'32111','Laramie','LARAMIE',NULL,'','United States','',0,0,231,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15022,'10352','Larantuka','LARANTUKA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:11:51','1900-01-01 00:00:00',1,0,1),(15023,'39136','Larbert','LARBERT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15024,'28905','Larchmont','LARCHMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15025,'42104','Larciano','LARCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15026,'43432','Lardos','LARDOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15027,'30749','Laredo','LAREDO',NULL,'','United States','',0,0,231,'2016-10-17 11:11:52','1900-01-01 00:00:00',1,0,1),(15028,'3126','Laredo','LAREDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15029,'23258','Laret','LARET',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15030,'21730','Largo','LARGO',NULL,'','United States','',0,0,231,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15031,'7170','Largs','LARGS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15032,'9770','Larisa','LARISA',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:53','1900-01-01 00:00:00',1,0,1),(15033,'41643','Larissa','LARISSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15034,'44176','Larissos','LARISSOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15035,'7171','Larkfield','LARKFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15036,'37911','Larkhall','LARKHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15037,'18601','Larkspur','LARKSPUR',NULL,'','United States','',0,0,231,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15038,'42735','Larmor Plage','LARMOR PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:11:54','1900-01-01 00:00:00',1,0,1),(15039,'5560','Larmor-plage','LARMOR-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15040,'24278','Larnaca','LARNACA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15041,'8396','Larne','LARNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15042,'21078','Larned','LARNED',NULL,'','United States','',0,0,231,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15043,'38874','Larrabetzu','LARRABETZU',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15044,'37771','Larressingle','LARRESSINGLE',NULL,'','France','',0,0,76,'2016-10-17 11:11:55','1900-01-01 00:00:00',1,0,1),(15045,'17688','Larsen Bay','LARSEN BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:11:56','1900-01-01 00:00:00',1,0,1),(15046,'15025','Larvik','LARVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:11:56','1900-01-01 00:00:00',1,0,1),(15047,'23543','Las Condes','LAS CONDES',NULL,'','Chile','',0,0,45,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15048,'15756','Las Croabas','LAS CROABAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15049,'2373','Las Galeras','LAS GALERAS',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15050,'42195','Las Grutas','LAS GRUTAS',NULL,'','Argentina','',0,0,10,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15051,'32198','Las Piedras','LAS PIEDRAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:11:57','1900-01-01 00:00:00',1,0,1),(15052,'36281','La-salvetat-sur-agou','LA-SALVETAT-SUR-AGOU',NULL,'','France','',0,0,76,'2016-10-17 11:11:58','1900-01-01 00:00:00',1,0,1),(15053,'3712','Lasarte','LASARTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:11:58','1900-01-01 00:00:00',1,0,1),(15054,'2152','Lasby','LASBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15055,'6103','Lascabanes','LASCABANES',NULL,'','France','',0,0,76,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15056,'33189','Lascassas','LASCASSAS',NULL,'','United States','',0,0,231,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15057,'5324','Lascelle','LASCELLE',NULL,'','France','',0,0,76,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15058,'16639','Lasko','LASKO',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15059,'39981','Lassing','LASSING',NULL,'','Austria','',0,0,14,'2016-10-17 11:11:59','1900-01-01 00:00:00',1,0,1),(15060,'43433','Lassithi - Agios Nikolaos','LASSITHI - AGIOS NIKOLAOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15061,'43453','Lassithi-sissi','LASSITHI-SISSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15062,'37599','Lasso','LASSO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15063,'39039','Lasswade','LASSWADE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15064,'40050','Lastingham','LASTINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15065,'6838','Lastourville','LASTOURVILLE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15066,'43841','Lastova','LASTOVA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15067,'42719','Lastovo','LASTOVO',NULL,'','Croatia','',0,0,55,'2016-10-17 11:12:00','1900-01-01 00:00:00',1,0,1),(15068,'12020','Lastra A Signa','LASTRA A SIGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15069,'3457','Lastrilla','LASTRILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15070,'41880','Latacunga','LATACUNGA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15071,'16931','Latakia','LATAKIA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15072,'3333','Latas','LATAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15073,'38177','Latera','LATERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15074,'12021','Laterina','LATERINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15075,'28906','Latham','LATHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:12:01','1900-01-01 00:00:00',1,0,1),(15076,'41157','Latheron','LATHERON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:02','1900-01-01 00:00:00',1,0,1),(15077,'7172','Lathones','LATHONES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:02','1900-01-01 00:00:00',1,0,1),(15078,'18602','Lathrop','LATHROP',NULL,'','United States','',0,0,231,'2016-10-17 11:12:02','1900-01-01 00:00:00',1,0,1),(15079,'4333','Lathus-saint-remy','LATHUS-SAINT-REMY',NULL,'','France','',0,0,76,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15080,'12974','Latignano','LATIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15081,'6343','Latille','LATILLE',NULL,'','France','',0,0,76,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15082,'8397','Latimer','LATIMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15083,'2673','Latina','LATINA',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:03','1900-01-01 00:00:00',1,0,1),(15084,'43668','Latrobe','LATROBE',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15085,'30018','Latrobe','LATROBE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15086,'40562','Latronquiere','LATRONQUIERE',NULL,'','France','',0,0,76,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15087,'39347','Latschach','LATSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15088,'30357','Latta','LATTA',NULL,'','United States','',0,0,231,'2016-10-17 11:12:04','1900-01-01 00:00:00',1,0,1),(15089,'5927','Lattes','LATTES',NULL,'','France','',0,0,76,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15090,'39798','Lattrop','LATTROP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15091,'4058','Laucala Island','LAUCALA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15092,'22583','Lauda','LAUDA',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15093,'22584','Lauda-konigshofen','LAUDA-KONIGSHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15094,'448','Laudenbach','LAUDENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15095,'39599','Lauder','LAUDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15096,'19451','Lauderdale-by-the-sea','LAUDERDALE-BY-THE-SEA',NULL,'','United States','',0,0,231,'2016-10-17 11:12:05','1900-01-01 00:00:00',1,0,1),(15097,'721','Lauenburg','LAUENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15098,'44142','Lauenburg-elbe','LAUENBURG-ELBE',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15099,'40375','Lauenen','LAUENEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15100,'39611','Laugar','LAUGAR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15101,'41480','Laugarbakki','LAUGARBAKKI',NULL,'','Iceland','',0,0,100,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15102,'11002','Laugarvatn','LAUGARVATN',NULL,'','Iceland','',0,0,100,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15103,'8398','Laugharne','LAUGHARNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15104,'32830','Laughlin','LAUGHLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:12:06','1900-01-01 00:00:00',1,0,1),(15105,'39111','Laughlintown','LAUGHLINTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15106,'42780','Laujar De Andarax','LAUJAR DE ANDARAX',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15107,'40553','Laukaa','LAUKAA',NULL,'','Finland','',0,0,75,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15108,'38011','Laulasmaa','LAULASMAA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15109,'26849','Launceston','LAUNCESTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:07','1900-01-01 00:00:00',1,0,1),(15110,'8399','Launceston','LAUNCESTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:08','1900-01-01 00:00:00',1,0,1),(15111,'16026','Laundos','LAUNDOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:12:08','1900-01-01 00:00:00',1,0,1),(15112,'20065','Laupahoehoe','LAUPAHOEHOE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:08','1900-01-01 00:00:00',1,0,1),(15113,'22585','Laupheim','LAUPHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:08','1900-01-01 00:00:00',1,0,1),(15114,'30019','Laureldale','LAURELDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15115,'30359','Laurens','LAURENS',NULL,'','United States','',0,0,231,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15116,'42163','Laurentides','LAURENTIDES',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15117,'38889','Lauria','LAURIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15118,'27693','Laurie','LAURIE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:11','1900-01-01 00:00:00',1,0,1),(15119,'33913','Laurinburg','LAURINBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:12:12','1900-01-01 00:00:00',1,0,1),(15120,'22141','Laurium','LAURIUM',NULL,'','United States','',0,0,231,'2016-10-17 11:12:12','1900-01-01 00:00:00',1,0,1),(15121,'12022','Lauro','LAURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:12','1900-01-01 00:00:00',1,0,1),(15122,'1977','Lauscha','LAUSCHA',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15123,'5325','Laussonne','LAUSSONNE',NULL,'','France','',0,0,76,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15124,'44143','Lautenbach','LAUTENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15125,'58','Lauterbach','LAUTERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15126,'23457','Lauterbrunnen','LAUTERBRUNNEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15127,'4098','Lautoka','LAUTOKA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15128,'3896','Lauttasaari Island','LAUTTASAARI ISLAND',NULL,'','Finland','',0,0,75,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15129,'22777','L\'auvergne','L\'AUVERGNE',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:13','1900-01-01 00:00:00',1,0,1),(15130,'39077','Lauzerte','LAUZERTE',NULL,'','France','',0,0,76,'2016-10-17 11:12:14','1900-01-01 00:00:00',1,0,1),(15131,'12023','Lavagna','LAVAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:14','1900-01-01 00:00:00',1,0,1),(15132,'22778','Laval','LAVAL',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:14','1900-01-01 00:00:00',1,0,1),(15133,'21732','Lavale','LAVALE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:14','1900-01-01 00:00:00',1,0,1),(15134,'11256','Lavarone','LAVARONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15135,'39460','Lavasa','LAVASA',NULL,'','India','Lavasa',5,0,101,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15136,'6104','Lavaur','LAVAUR',NULL,'','France','',0,0,76,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15137,'8400','Lavenham','LAVENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15138,'13022','Laveno Mombello','LAVENO MOMBELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15139,'26250','Lavers Hill','LAVERS HILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15140,'26912','Laverton','LAVERTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:15','1900-01-01 00:00:00',1,0,1),(15141,'11025','Lavi','LAVI',NULL,'','Israel','',0,0,106,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15142,'34218','Lavington','LAVINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15143,'12024','Lavis','LAVIS',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15144,'19854','Lavonia','LAVONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15145,'39837','Lavoute-chilhac','LAVOUTE-CHILHAC',NULL,'','France','',0,0,76,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15146,'37917','Lavris','LAVRIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:16','1900-01-01 00:00:00',1,0,1),(15147,'20066','Lawai','LAWAI',NULL,'','United States','',0,0,231,'2016-10-17 11:12:17','1900-01-01 00:00:00',1,0,1),(15148,'14376','Lawas','LAWAS',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:12:17','1900-01-01 00:00:00',1,0,1),(15149,'18603','Lawndale','LAWNDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:17','1900-01-01 00:00:00',1,0,1),(15150,'21409','Lawrence','LAWRENCE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:17','1900-01-01 00:00:00',1,0,1),(15151,'33670','Lawrenceburg','LAWRENCEBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:12:19','1900-01-01 00:00:00',1,0,1),(15152,'31142','Lawrenceville','LAWRENCEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:20','1900-01-01 00:00:00',1,0,1),(15153,'32920','Lawton','LAWTON',NULL,'','United States','',0,0,231,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15154,'2674','Laxe','LAXE',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15155,'6037','Laxou','LAXOU',NULL,'','France','',0,0,76,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15156,'7173','Laxton','LAXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15157,'3411','Layos','LAYOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:21','1900-01-01 00:00:00',1,0,1),(15158,'4334','Lazaret','LAZARET',NULL,'','France','',0,0,76,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15159,'14098','Lazaro Cardenas','LAZARO CARDENAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15160,'38951','Laze V Tuhinju','LAZE V TUHINJU',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15161,'39749','Lazise','LAZISE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15162,'12025','Lazzaro','LAZZARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:22','1900-01-01 00:00:00',1,0,1),(15163,'14238','Le Carbet','LE CARBET',NULL,'','Martinique','',0,0,137,'2016-10-17 11:12:24','1900-01-01 00:00:00',1,0,1),(15164,'9383','Le Gosier','LE GOSIER',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:12:26','1900-01-01 00:00:00',1,0,1),(15165,'33022','Lead','LEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:12:32','1900-01-01 00:00:00',1,0,1),(15166,'33477','Leadville','LEADVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:33','1900-01-01 00:00:00',1,0,1),(15167,'25608','Leaf Rapids','LEAF RAPIDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:33','1900-01-01 00:00:00',1,0,1),(15168,'41156','Leafield','LEAFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:33','1900-01-01 00:00:00',1,0,1),(15169,'30750','League City','LEAGUE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:12:33','1900-01-01 00:00:00',1,0,1),(15170,'19452','Lealman','LEALMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15171,'34544','Leamington','LEAMINGTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15172,'36321','Leamington Spa','LEAMINGTON SPA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15173,'26518','Learmonth','LEARMONTH',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15174,'34545','Leaside','LEASIDE',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15175,'8402','Leatherhead','LEATHERHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:34','1900-01-01 00:00:00',1,0,1),(15176,'21080','Leavenworth','LEAVENWORTH',NULL,'','United States','',0,0,231,'2016-10-17 11:12:35','1900-01-01 00:00:00',1,0,1),(15177,'21081','Leawood','LEAWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:12:36','1900-01-01 00:00:00',1,0,1),(15178,'15678','Leba','LEBA',NULL,'','Poland','',0,0,174,'2016-10-17 11:12:36','1900-01-01 00:00:00',1,0,1),(15179,'29697','Lebanon','LEBANON',NULL,'','United States','',0,0,231,'2016-10-17 11:12:36','1900-01-01 00:00:00',1,0,1),(15180,'60','Lebbenau','LEBBENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:40','1900-01-01 00:00:00',1,0,1),(15181,'18604','Lebec','LEBEC',NULL,'','United States','',0,0,231,'2016-10-17 11:12:40','1900-01-01 00:00:00',1,0,1),(15182,'39124','Leca Da Palmeira','LECA DA PALMEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:12:40','1900-01-01 00:00:00',1,0,1),(15183,'19453','Lecanto','LECANTO',NULL,'','United States','',0,0,231,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15184,'12807','Lecce','LECCE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15185,'35573','Lecce-merine','LECCE-MERINE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15186,'12932','Lecco','LECCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15187,'27001','Lech','LECH',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15188,'24478','Lechaschau','LECHASCHAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:41','1900-01-01 00:00:00',1,0,1),(15189,'43236','Lecherias','LECHERIAS',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15190,'39239','Lechishchevo','LECHISHCHEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15191,'44069','Lecousse','LECOUSSE',NULL,'','France','',0,0,76,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15192,'39226','Leczyca','LECZYCA',NULL,'','Poland','',0,0,174,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15193,'7174','Ledaig','LEDAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15194,'30751','Ledbetter','LEDBETTER',NULL,'','United States','',0,0,231,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15195,'8403','Ledbury','LEDBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:42','1900-01-01 00:00:00',1,0,1),(15196,'27077','Ledenitzen','LEDENITZEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15197,'28317','Ledgewood','LEDGEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15198,'9264','Ledsham','LEDSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15199,'25332','Leduc','LEDUC',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15200,'19099','Ledyard Center','LEDYARD CENTER',NULL,'','United States','',0,0,231,'2016-10-17 11:12:43','1900-01-01 00:00:00',1,0,1),(15201,'17909','Leeds','LEEDS',NULL,'','United States','',0,0,231,'2016-10-17 11:12:44','1900-01-01 00:00:00',1,0,1),(15202,'1319','Leeds','LEEDS',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15203,'784','Leegebruch','LEEGEBRUCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15204,'39251','Leenane','LEENANE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15205,'14600','Leende','LEENDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15206,'61','Leer','LEER',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15207,'27695','Lees Summit','LEES SUMMIT',NULL,'','United States','',0,0,231,'2016-10-17 11:12:45','1900-01-01 00:00:00',1,0,1),(15208,'31144','Leesburg','LEESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:12:46','1900-01-01 00:00:00',1,0,1),(15209,'21223','Leesville','LEESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:46','1900-01-01 00:00:00',1,0,1),(15210,'34219','Leeton','LEETON',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15211,'14514','Leeuwarden','LEEUWARDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15212,'38358','Leffe','LEFFE',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15213,'9829','Lefkada','LEFKADA',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15214,'38762','Lefkara','LEFKARA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15215,'43041','Lefkas','LEFKAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15216,'43454','Lefkimi','LEFKIMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15217,'9777','Lefkimmi','LEFKIMMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:47','1900-01-01 00:00:00',1,0,1),(15218,'39596','Lefkos','LEFKOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15219,'2999','Leganes','LEGANES',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15220,'15503','Legaspi','LEGASPI',NULL,'','Philippines','',0,0,173,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15221,'42954','Legazpi City','LEGAZPI CITY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15222,'526','Legden','LEGDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15223,'40638','Lège-cap-ferret','LÈGE-CAP-FERRET',NULL,'','France','',0,0,76,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15224,'14515','Legemeer','LEGEMEER',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15225,'41624','Legian','LEGIAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15226,'38300','Legnago','LEGNAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:48','1900-01-01 00:00:00',1,0,1),(15227,'12027','Legnano','LEGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15228,'15650','Legnica','LEGNICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15229,'10643','Leh','LEH',NULL,'','India','',0,0,101,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15230,'33353','Lehi','LEHI',NULL,'','United States','',0,0,231,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15231,'19456','Lehigh Acres','LEHIGH ACRES',NULL,'','United States','',0,0,231,'2016-10-17 11:12:49','1900-01-01 00:00:00',1,0,1),(15232,'30022','Lehighton','LEHIGHTON',NULL,'','United States','',0,0,231,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15233,'27247','Lehrte','LEHRTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15234,'9931','Lei Yue Mun','LEI YUE MUN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15235,'43763','Leibnitz','LEIBNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15236,'33914','Leicester','LEICESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15237,'1433','Leicester','LEICESTER',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:12:50','1900-01-01 00:00:00',1,0,1),(15238,'34220','Leichhardt','LEICHHARDT',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15239,'14718','Leiden','LEIDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15240,'14719','Leiderdorp','LEIDERDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15241,'14720','Leidschendam','LEIDSCHENDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15242,'14471','Leidseplein','LEIDSEPLEIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15243,'8406','Leighton Buzzard','LEIGHTON BUZZARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15244,'36479','Leikanger','LEIKANGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15245,'22586','Leimen','LEIMEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15246,'62','Leinfelden','LEINFELDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:51','1900-01-01 00:00:00',1,0,1),(15247,'1721','Leinfelden-echterdin','LEINFELDEN-ECHTERDIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15248,'43536','Leinfelden-echterdingen','LEINFELDEN-ECHTERDINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15249,'39735','Leinì','LEINÌ',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15250,'26251','Leinster','LEINSTER',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15251,'39920','Leintwardine','LEINTWARDINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15252,'63','Leipheim','LEIPHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15253,'15976','Leiria','LEIRIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:12:52','1900-01-01 00:00:00',1,0,1),(15254,'2473','Leiro','LEIRO',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15255,'23264','Leissigen','LEISSIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15256,'8407','Leiston','LEISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15257,'33673','Leitchfield','LEITCHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15258,'41851','Leitrim','LEITRIM',NULL,'','Ireland','',0,0,105,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15259,'34546','Leitrim','LEITRIM',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:53','1900-01-01 00:00:00',1,0,1),(15260,'10715','Leixlip','LEIXLIP',NULL,'','Ireland','',0,0,105,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15261,'24050','Lekana','LEKANA',NULL,'','Congo','',0,0,51,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15262,'3713','Lekeitio','LEKEITIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15263,'14721','Lekkerkerk','LEKKERKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15264,'14936','Leknes','LEKNES',NULL,'','Norway','',0,0,164,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15265,'39501','Leksand','LEKSAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15266,'22142','Leland','LELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15267,'38663','Lelex','LELEX',NULL,'','France','',0,0,76,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15268,'42187','L\'eliana','L\'ELIANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15269,'6829','Lelu Village','LELU VILLAGE',NULL,'','Micronesia, FS Of','',0,0,143,'2016-10-17 11:12:54','1900-01-01 00:00:00',1,0,1),(15270,'14758','Lelystad','LELYSTAD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15271,'10134','Lembongan','LEMBONGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15272,'27248','Lembruch','LEMBRUCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15273,'40195','Lemgo','LEMGO',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15274,'43397','Lemnos','LEMNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15275,'43727','Lemoiz','LEMOIZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:12:55','1900-01-01 00:00:00',1,0,1),(15276,'18608','Lemoore','LEMOORE',NULL,'','United States','',0,0,231,'2016-10-17 11:12:56','1900-01-01 00:00:00',1,0,1),(15277,'2277','Lemvig','LEMVIG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:12:56','1900-01-01 00:00:00',1,0,1),(15278,'25042','Lencois','LENCOIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15279,'41606','Lendava','LENDAVA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15280,'21083','Lenexa','LENEXA',NULL,'','United States','',0,0,231,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15281,'245','Lengenfeld','LENGENFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15282,'27002','Lengenlois','LENGENLOIS',NULL,'','Austria','',0,0,14,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15283,'246','Lenggries','LENGGRIES',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15284,'39344','Lengnau','LENGNAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:57','1900-01-01 00:00:00',1,0,1),(15285,'8409','Lenham','LENHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15286,'12028','Leni','LENI',NULL,'','Italy','',0,0,107,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15287,'16332','Lenino','LENINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15288,'23265','Lenk','LENK',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15289,'527','Lennestadt','LENNESTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15290,'43944','Lenningen','LENNINGEN',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15291,'18609','Lennox','LENNOX',NULL,'','United States','',0,0,231,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15292,'34792','Lennox Head','LENNOX HEAD',NULL,'','Australia','',0,0,13,'2016-10-17 11:12:58','1900-01-01 00:00:00',1,0,1),(15293,'37181','Lennoxtown','LENNOXTOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:12:59','1900-01-01 00:00:00',1,0,1),(15294,'22779','Lennoxville','LENNOXVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:12:59','1900-01-01 00:00:00',1,0,1),(15295,'33915','Lenoir','LENOIR',NULL,'','United States','',0,0,231,'2016-10-17 11:12:59','1900-01-01 00:00:00',1,0,1),(15296,'33193','Lenox','LENOX',NULL,'','United States','',0,0,231,'2016-10-17 11:12:59','1900-01-01 00:00:00',1,0,1),(15297,'43093','Lensois','LENSOIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15298,'6652','Lentilly','LENTILLY',NULL,'','France','',0,0,76,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15299,'39945','Lentini','LENTINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15300,'23428','Lenzburg','LENZBURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15301,'23266','Lenzerheide','LENZERHEIDE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15302,'24424','Leoben','LEOBEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15303,'24548','Leogang','LEOGANG',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:01','1900-01-01 00:00:00',1,0,1),(15304,'30023','Leola','LEOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:13:02','1900-01-01 00:00:00',1,0,1),(15305,'21412','Leominster','LEOMINSTER',NULL,'','United States','',0,0,231,'2016-10-17 11:13:02','1900-01-01 00:00:00',1,0,1),(15306,'8410','Leominster','LEOMINSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:02','1900-01-01 00:00:00',1,0,1),(15307,'13989','Leon','LEON',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:02','1900-01-01 00:00:00',1,0,1),(15308,'14445','Leon','LEON',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15309,'30752','Leon Valley','LEON VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15310,'13830','Leon, Baja','LEON, BAJA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15311,'13904','Leona Vicario','LEONA VICARIO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15312,'247','Leonberg','LEONBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:03','1900-01-01 00:00:00',1,0,1),(15313,'26597','Leonora','LEONORA',NULL,'','Australia','',0,0,13,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15314,'21084','Leoti','LEOTI',NULL,'','United States','',0,0,231,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15315,'3255','Lepe','LEPE',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15316,'5735','Lepine','LEPINE',NULL,'','France','',0,0,76,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15317,'37369','Leporano','LEPORANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15318,'38814','Leppavirta','LEPPAVIRTA',NULL,'','Finland','',0,0,75,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15319,'9684','Leptokaria','LEPTOKARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:04','1900-01-01 00:00:00',1,0,1),(15320,'39496','Lequile','LEQUILE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15321,'13831','Lerdo','LERDO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15322,'10240','Lereh','LEREH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15323,'13627','Leribe','LERIBE',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15324,'12029','Lerici','LERICI',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15325,'36149','Lerida','LERIDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15326,'13905','Lerma','LERMA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15327,'2676','Lerma','LERMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15328,'24479','Lermoos','LERMOOS',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15329,'9824','Leros','LEROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15330,'16886','Lerum','LERUM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15331,'8411','Lerwick','LERWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:05','1900-01-01 00:00:00',1,0,1),(15332,'38243','Les Coteaux','LES COTEAUX',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:13:07','1900-01-01 00:00:00',1,0,1),(15333,'25879','Les Escaldes','LES ESCALDES',NULL,'','Andorra','',0,0,5,'2016-10-17 11:13:07','1900-01-01 00:00:00',1,0,1),(15334,'43764','Lesachtal','LESACHTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15335,'2677','Lesaka','LESAKA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15336,'39610','Lescala','LESCALA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15337,'5207','Lescar','LESCAR',NULL,'','France','',0,0,76,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15338,'23994','Leshan','LESHAN',NULL,'','China','',0,0,46,'2016-10-17 11:13:10','1900-01-01 00:00:00',1,0,1),(15339,'5856','Lesigny','LESIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15340,'32373','Leskovac','LESKOVAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15341,'4741','Les-loges-en-josas','LES-LOGES-EN-JOSAS',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15342,'44072','Lesmenils','LESMENILS',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15343,'11258','Lesmo','LESMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15344,'13623','Lesobeng','LESOBENG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15345,'5208','Lesparre-medoc','LESPARRE-MEDOC',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15346,'5209','Lesperon','LESPERON',NULL,'','France','',0,0,76,'2016-10-17 11:13:11','1900-01-01 00:00:00',1,0,1),(15347,'2678','L\'espluga De Francoli','L\'ESPLUGA DE FRANCOLI',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15348,'6177','Lesquin','LESQUIN',NULL,'','France','',0,0,76,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15349,'9365','Les-saintes','LES-SAINTES',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15350,'41576','Lestartit','LESTARTIT',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15351,'2948','L\'estartit','L\'ESTARTIT',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15352,'40038','Lestelle-betharram','LESTELLE-BETHARRAM',NULL,'','France','',0,0,76,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15353,'30024','Lester','LESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:13:12','1900-01-01 00:00:00',1,0,1),(15354,'9528','Lesvos','LESVOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15355,'39939','Leszno','LESZNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15356,'8412','Letchworth','LETCHWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15357,'8413','Letcombe Regis','LETCOMBE REGIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15358,'8414','Letham','LETHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15359,'25334','Lethbridge','LETHBRIDGE',NULL,'','Canada','Lethbridge',0,0,39,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15360,'24087','Leticia','LETICIA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:13:13','1900-01-01 00:00:00',1,0,1),(15361,'11259','Letojanni','LETOJANNI',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15362,'32574','Letsitele','LETSITELE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15363,'11260','Lettere','LETTERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15364,'10868','Letterfrack','LETTERFRACK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15365,'10962','Letterkenny','LETTERKENNY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15366,'5931','Leuc','LEUC',NULL,'','France','',0,0,76,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15367,'12030','Leuca','LEUCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15368,'18611','Leucadia','LEUCADIA',NULL,'','United States','',0,0,231,'2016-10-17 11:13:14','1900-01-01 00:00:00',1,0,1),(15369,'8415','Leuchars','LEUCHARS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15370,'23269','Leukerbad','LEUKERBAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15372,'42370','Leusden','LEUSDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15373,'14683','Leusden-centrum','LEUSDEN-CENTRUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15374,'24549','Leutasch','LEUTASCH',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15375,'24425','Leutschach','LEUTSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15376,'40969','Leuven','LEUVEN',NULL,'','Belgium','Leuven',0,0,21,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15377,'43059','Levadia','LEVADIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15378,'41712','Levallois Perret','LEVALLOIS PERRET',NULL,'','France','',0,0,76,'2016-10-17 11:13:15','1900-01-01 00:00:00',1,0,1),(15379,'5133','Levallois-perret','LEVALLOIS-PERRET',NULL,'','France','',0,0,76,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15380,'35552','Levane','LEVANE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15381,'14937','Levanger','LEVANGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15382,'12031','Levanto','LEVANTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15383,'37419','Levanzo','LEVANZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15384,'30753','Levelland','LEVELLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:13:16','1900-01-01 00:00:00',1,0,1),(15385,'17689','Levelock','LEVELOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:13:17','1900-01-01 00:00:00',1,0,1),(15386,'21413','Leverett','LEVERETT',NULL,'','United States','',0,0,231,'2016-10-17 11:13:17','1900-01-01 00:00:00',1,0,1),(15387,'528','Leverkusen','LEVERKUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:17','1900-01-01 00:00:00',1,0,1),(15388,'5468','Levernois','LEVERNOIS',NULL,'','France','',0,0,76,'2016-10-17 11:13:17','1900-01-01 00:00:00',1,0,1),(15389,'3897','Levi','LEVI',NULL,'','Finland','',0,0,75,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15390,'12032','Levico Terme','LEVICO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15391,'15212','Levin','LEVIN',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15392,'22780','Levis','LEVIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15393,'30025','Levittown','LEVITTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:18','1900-01-01 00:00:00',1,0,1),(15394,'9529','Levkas','LEVKAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15395,'9821','Levktra','LEVKTRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15396,'42053','Levoca','LEVOCA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15397,'28911','Lewbeach','LEWBEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15398,'7178','Lewdown','LEWDOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15399,'8417','Lewes','LEWES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:19','1900-01-01 00:00:00',1,0,1),(15400,'19226','Lewes','LEWES',NULL,'','United States','',0,0,231,'2016-10-17 11:13:20','1900-01-01 00:00:00',1,0,1),(15401,'32003','Lewisburg','LEWISBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:13:20','1900-01-01 00:00:00',1,0,1),(15402,'8418','Lewisham','LEWISHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:21','1900-01-01 00:00:00',1,0,1),(15403,'33674','Lewisport','LEWISPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:13:21','1900-01-01 00:00:00',1,0,1),(15404,'27993','Lewistown','LEWISTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:23','1900-01-01 00:00:00',1,0,1),(15405,'30754','Lewisville','LEWISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:24','1900-01-01 00:00:00',1,0,1),(15406,'10241','Lewoleba','LEWOLEBA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:13:24','1900-01-01 00:00:00',1,0,1),(15407,'31145','Lexington','LEXINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:13:25','1900-01-01 00:00:00',1,0,1),(15408,'8419','Leyburn','LEYBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:29','1900-01-01 00:00:00',1,0,1),(15409,'33478','Leyden','LEYDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:29','1900-01-01 00:00:00',1,0,1),(15410,'9321','Leyland','LEYLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15411,'23270','Leysin','LEYSIN',NULL,'','Switzerland','Leysin',0,0,210,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15412,'8420','Leyton','LEYTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15413,'41380','Lezama','LEZAMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15414,'6178','Lezennes','LEZENNES',NULL,'','France','',0,0,76,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15415,'5932','Lezignan-corbieres','LEZIGNAN-CORBIERES',NULL,'','France','',0,0,76,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15416,'15621','Lezno','LEZNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15417,'5327','Lezoux','LEZOUX',NULL,'','France','',0,0,76,'2016-10-17 11:13:30','1900-01-01 00:00:00',1,0,1),(15418,'12033','Lezzeno','LEZZENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15419,'23847','Lhasa','LHASA',NULL,'','China','',0,0,46,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15420,'4360','Lhermitage-lorge','LHERMITAGE-LORGE',NULL,'','France','',0,0,76,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15421,'2937','L\'hospitalet De Llobregat','L\'HOSPITALET DE LLOBREGAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15422,'15489','Lian','LIAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15423,'23771','Lianfeng','LIANFENG',NULL,'','China','',0,0,46,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15424,'42982','Liano','LIANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15425,'16394','Lianozovo','LIANOZOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15426,'23743','Lianyungang','LIANYUNGANG',NULL,'','China','',0,0,46,'2016-10-17 11:13:31','1900-01-01 00:00:00',1,0,1),(15427,'23967','Liaobu','LIAOBU',NULL,'','China','',0,0,46,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15428,'43825','Liaocheng','LIAOCHENG',NULL,'','China','',0,0,46,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15429,'5736','Liart','LIART',NULL,'','France','',0,0,76,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15430,'27994','Libby','LIBBY',NULL,'','United States','',0,0,231,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15431,'39276','Libechov','LIBECHOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15432,'21085','Liberal','LIBERAL',NULL,'','United States','',0,0,231,'2016-10-17 11:13:32','1900-01-01 00:00:00',1,0,1),(15433,'24346','Liberec','LIBEREC',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:13:33','1900-01-01 00:00:00',1,0,1),(15434,'24217','Liberia','LIBERIA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:13:33','1900-01-01 00:00:00',1,0,1),(15435,'8421','Liberton','LIBERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:33','1900-01-01 00:00:00',1,0,1),(15436,'27697','Liberty','LIBERTY',NULL,'','United States','',0,0,231,'2016-10-17 11:13:33','1900-01-01 00:00:00',1,0,1),(15437,'20623','Libertyville','LIBERTYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:36','1900-01-01 00:00:00',1,0,1),(15438,'4929','Libourne','LIBOURNE',NULL,'','France','',0,0,76,'2016-10-17 11:13:36','1900-01-01 00:00:00',1,0,1),(15439,'24700','Libramont','LIBRAMONT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:36','1900-01-01 00:00:00',1,0,1),(15440,'6835','Libreville','LIBREVILLE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:13:36','1900-01-01 00:00:00',1,0,1),(15441,'3034','Librilla','LIBRILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15442,'8422','Lichfield','LICHFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15443,'14223','Lichinga','LICHINGA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15444,'529','Lichtenau','LICHTENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15445,'248','Lichtenberg','LICHTENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15446,'249','Lichtenfels','LICHTENFELS',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:37','1900-01-01 00:00:00',1,0,1),(15447,'2003','Lichtenrade','LICHTENRADE',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15448,'2056','Lichtenstein','LICHTENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15449,'64','Lichtenwalde','LICHTENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15450,'785','Lichterfelde','LICHTERFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15451,'30028','Lickdale','LICKDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:38','1900-01-01 00:00:00',1,0,1),(15452,'27698','Licking','LICKING',NULL,'','United States','',0,0,231,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15453,'12035','Licodia Eubea','LICODIA EUBEA',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15454,'11261','Licola Mare','LICOLA MARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15455,'34222','Lidcombe','LIDCOMBE',NULL,'','Australia','',0,0,13,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15456,'16831','Lidingo','LIDINGO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15457,'16887','Lidkoping','LIDKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15458,'28915','Lido Beach','LIDO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:13:39','1900-01-01 00:00:00',1,0,1),(15459,'786','Liebenwalde','LIEBENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15460,'530','Lieberhausen','LIEBERHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15461,'13584','Liechtenstein','LIECHTENSTEIN',NULL,'','Liechtenstein','',0,0,124,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15462,'24675','Liege','LIEGE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15463,'4001','Lieksa','LIEKSA',NULL,'','Finland','',0,0,75,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15464,'3127','Liencres','LIENCRES',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:40','1900-01-01 00:00:00',1,0,1),(15465,'39625','Liendo','LIENDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15466,'24480','Lienz','LIENZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15467,'36382','Liepaja','LIEPAJA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15468,'13662','Liepaya','LIEPAYA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15469,'40424','Lier','LIER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15470,'41435','Lierganes','LIERGANES',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15471,'27078','Liesing','LIESING',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15472,'5777','Liesle','LIESLE',NULL,'','France','',0,0,76,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15473,'23271','Liestal','LIESTAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15474,'38483','Lieu-dit Favone','LIEU-DIT FAVONE',NULL,'','France','',0,0,76,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15475,'5857','Lieusaint','LIEUSAINT',NULL,'','France','',0,0,76,'2016-10-17 11:13:41','1900-01-01 00:00:00',1,0,1),(15476,'24426','Liezen','LIEZEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15477,'6040','Liezey','LIEZEY',NULL,'','France','',0,0,76,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15478,'41517','Lifford','LIFFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15479,'5567','Liffre','LIFFRE',NULL,'','France','',0,0,76,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15480,'14423','Lifou','LIFOU',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15481,'8423','Lifton','LIFTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15482,'17112','Lifuka Island','LIFUKA ISLAND',NULL,'','Tonga','',0,0,218,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15483,'31147','Lightfoot','LIGHTFOOT',NULL,'','United States','',0,0,231,'2016-10-17 11:13:42','1900-01-01 00:00:00',1,0,1),(15484,'34223','Lightning Ridge','LIGHTNING RIDGE',NULL,'','Australia','',0,0,13,'2016-10-17 11:13:43','1900-01-01 00:00:00',1,0,1),(15485,'5933','Lignan-sur-orb','LIGNAN-SUR-ORB',NULL,'','France','',0,0,76,'2016-10-17 11:13:43','1900-01-01 00:00:00',1,0,1),(15486,'5737','Lignon','LIGNON',NULL,'','France','',0,0,76,'2016-10-17 11:13:43','1900-01-01 00:00:00',1,0,1),(15487,'30029','Ligonier','LIGONIER',NULL,'','United States','',0,0,231,'2016-10-17 11:13:43','1900-01-01 00:00:00',1,0,1),(15488,'16441','Ligovo','LIGOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:13:44','1900-01-01 00:00:00',1,0,1),(15489,'6345','Liguge','LIGUGE',NULL,'','France','',0,0,76,'2016-10-17 11:13:44','1900-01-01 00:00:00',1,0,1),(15490,'41812','Ligure','LIGURE',NULL,'','France','',0,0,76,'2016-10-17 11:13:44','1900-01-01 00:00:00',1,0,1),(15491,'23816','Lijiang','LIJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15492,'43547','Lijnden','LIJNDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15493,'14157','Likiep','LIKIEP',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15494,'14273','Likoma Island','LIKOMA ISLAND',NULL,'','Malawi','',0,0,131,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15495,'19857','Lilburn','LILBURN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15496,'4879','L\'ile D\'aix','L\'ILE D\'AIX',NULL,'','France','',0,0,76,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15497,'39697','Lile-rousse','LILE-ROUSSE',NULL,'','France','',0,0,76,'2016-10-17 11:13:45','1900-01-01 00:00:00',1,0,1),(15498,'27249','Lilienthal','LILIENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15499,'16832','Liljeholmen','LILJEHOLMEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15500,'16833','Lilla Essingen','LILLA ESSINGEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15501,'10095','Lillafured','LILLAFURED',NULL,'','Hungary','',0,0,99,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15502,'5006','Lille','LILLE',NULL,'','France','',0,0,76,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15503,'14947','Lillehammer','LILLEHAMMER',NULL,'','Norway','',0,0,164,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15504,'14859','Lillesand','LILLESAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15505,'14850','Lillestrom','LILLESTROM',NULL,'','Norway','',0,0,164,'2016-10-17 11:13:46','1900-01-01 00:00:00',1,0,1),(15506,'33919','Lillington','LILLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:13:47','1900-01-01 00:00:00',1,0,1),(15507,'37245','Lillooet','LILLOOET',NULL,'','Canada','',0,0,39,'2016-10-17 11:13:47','1900-01-01 00:00:00',1,0,1),(15508,'14277','Lilongwe','LILONGWE',NULL,'','Malawi','',0,0,131,'2016-10-17 11:13:47','1900-01-01 00:00:00',1,0,1),(15509,'26416','Lilydale','LILYDALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:13:47','1900-01-01 00:00:00',1,0,1),(15510,'24281','Limassol','LIMASSOL',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15511,'8424','Limavady','LIMAVADY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15512,'4742','Limay','LIMAY',NULL,'','France','',0,0,76,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15513,'14377','Limbang','LIMBANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15514,'24014','Limbe','LIMBE',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15515,'24587','Limbergse Kempen','LIMBERGSE KEMPEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15516,'12037','Limbiate','LIMBIATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:48','1900-01-01 00:00:00',1,0,1),(15517,'24588','Limburg','LIMBURG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:49','1900-01-01 00:00:00',1,0,1),(15518,'250','Limburg','LIMBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:49','1900-01-01 00:00:00',1,0,1),(15519,'641','Limburgerhof','LIMBURGERHOF',NULL,'','Germany','',0,0,83,'2016-10-17 11:13:49','1900-01-01 00:00:00',1,0,1),(15520,'25089','Limeira','LIMEIRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:13:49','1900-01-01 00:00:00',1,0,1),(15521,'24637','Limelette','LIMELETTE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15522,'9685','Limenaria','LIMENARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15523,'5655','Limeray','LIMERAY',NULL,'','France','',0,0,76,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15524,'10898','Limerick','LIMERICK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15525,'37664','Limerick','LIMERICK',NULL,'','United States','',0,0,231,'2016-10-17 11:13:50','1900-01-01 00:00:00',1,0,1),(15526,'33196','Limestone Cove','LIMESTONE COVE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15527,'11263','Limito','LIMITO',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15528,'1429','Limoge','LIMOGE',NULL,'','FRANCE','',0,0,76,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15529,'6008','Limoges','LIMOGES',NULL,'','France','',0,0,76,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15530,'33479','Limon','LIMON',NULL,'','United States','',0,0,231,'2016-10-17 11:13:51','1900-01-01 00:00:00',1,0,1),(15531,'24174','Limon','LIMON',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15532,'15341','Limon Bay','LIMON BAY',NULL,'','Panama','',0,0,169,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15533,'12038','Limone Piemonte','LIMONE PIEMONTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15534,'6658','Limonest','LIMONEST',NULL,'','France','',0,0,76,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15535,'5656','Limoux','LIMOUX',NULL,'','France','',0,0,76,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15536,'36152','Limpias','LIMPIAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15537,'8425','Limpley Stoke','LIMPLEY STOKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:13:52','1900-01-01 00:00:00',1,0,1),(15538,'1439','Limpopo- Kruger Area','LIMPOPO- KRUGER AREA',NULL,'','SOUTH AFRICA','',0,0,195,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15539,'27135','Lina','LINA',NULL,'','Austria','',0,0,14,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15540,'23705','Lin\'an','LIN\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15541,'3091','Linares','LINARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15542,'34820','Linares','LINARES',NULL,'','Chile','',0,0,45,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15543,'41846','Linas','LINAS',NULL,'','France','',0,0,76,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15544,'43472','Linate','LINATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15545,'23947','Lincang','LINCANG',NULL,'','China','',0,0,46,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15546,'15410','Lince','LINCE',NULL,'','Peru','',0,0,172,'2016-10-17 11:13:53','1900-01-01 00:00:00',1,0,1),(15547,'21415','Lincoln','LINCOLN',NULL,'','United States','',0,0,231,'2016-10-17 11:13:54','1900-01-01 00:00:00',1,0,1),(15548,'28916','Lincolndale','LINCOLNDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:58','1900-01-01 00:00:00',1,0,1),(15549,'20625','Lincolnshire','LINCOLNSHIRE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:58','1900-01-01 00:00:00',1,0,1),(15550,'33920','Lincolnton','LINCOLNTON',NULL,'','United States','',0,0,231,'2016-10-17 11:13:59','1900-01-01 00:00:00',1,0,1),(15551,'21890','Lincolnville','LINCOLNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:13:59','1900-01-01 00:00:00',1,0,1),(15552,'20626','Lincolnwood','LINCOLNWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15553,'16101','Linda A Velha','LINDA A VELHA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15554,'16003','Linda-a-pastora','LINDA-A-PASTORA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15555,'30758','Lindale','LINDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15556,'8427','Lindale','LINDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15557,'14898','Lindas','LINDAS',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:00','1900-01-01 00:00:00',1,0,1),(15558,'251','Lindberg','LINDBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:01','1900-01-01 00:00:00',1,0,1),(15559,'37079','Lindbergh Bay','LINDBERGH BAY',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 11:14:01','1900-01-01 00:00:00',1,0,1),(15560,'26252','Lindeman Island','LINDEMAN ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:01','1900-01-01 00:00:00',1,0,1),(15561,'28318','Linden','LINDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:14:01','1900-01-01 00:00:00',1,0,1),(15562,'32575','Linden','LINDEN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:14:02','1900-01-01 00:00:00',1,0,1),(15563,'28917','Lindenhurst','LINDENHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:14:02','1900-01-01 00:00:00',1,0,1),(15564,'28319','Lindenwold','LINDENWOLD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:02','1900-01-01 00:00:00',1,0,1),(15565,'1978','Linderbach','LINDERBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15566,'44024','Lindesnes','LINDESNES',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15567,'17461','Lindi','LINDI',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15568,'39705','Lindlar','LINDLAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15569,'9802','Lindos','LINDOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15570,'14807','Lindoya','LINDOYA',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15571,'34547','Lindsay','LINDSAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15572,'18614','Lindsay','LINDSAY',NULL,'','United States','',0,0,231,'2016-10-17 11:14:03','1900-01-01 00:00:00',1,0,1),(15573,'21087','Lindsborg','LINDSBORG',NULL,'','United States','',0,0,231,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15574,'23917','Linfen','LINFEN',NULL,'','China','',0,0,46,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15575,'23938','Lingao','LINGAO',NULL,'','China','',0,0,46,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15576,'24569','Lingenau','LINGENAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15577,'40685','Lingfield','LINGFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:04','1900-01-01 00:00:00',1,0,1),(15578,'6771','Lingolsheim','LINGOLSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15579,'23873','Lingshui','LINGSHUI',NULL,'','China','',0,0,46,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15580,'12040','Linguaglossa','LINGUAGLOSSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15581,'23706','Linhai','LINHAI',NULL,'','China','',0,0,46,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15582,'23879','Linhe','LINHE',NULL,'','China','',0,0,46,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15583,'4361','Linieres Bouton','LINIERES BOUTON',NULL,'','France','',0,0,76,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15584,'16768','Linkoping','LINKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15585,'8428','Linlithgow','LINLITHGOW',NULL,'','United Kingdom','Linlithgow',0,0,229,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15586,'27700','Linn','LINN',NULL,'','United States','',0,0,231,'2016-10-17 11:14:05','1900-01-01 00:00:00',1,0,1),(15587,'27425','Lino Lakes','LINO LAKES',NULL,'','United States','',0,0,231,'2016-10-17 11:14:06','1900-01-01 00:00:00',1,0,1),(15588,'9530','Linoperamata','LINOPERAMATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:07','1900-01-01 00:00:00',1,0,1),(15589,'25208','Lins','LINS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:14:07','1900-01-01 00:00:00',1,0,1),(15590,'1828','Linstow','LINSTOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:07','1900-01-01 00:00:00',1,0,1),(15591,'1502','Linthicum','LINTHICUM',NULL,'','United States','',0,0,231,'2016-10-17 11:14:07','1900-01-01 00:00:00',1,0,1),(15592,'23927','Linyi','LINYI',NULL,'','China','',0,0,46,'2016-10-17 11:14:08','1900-01-01 00:00:00',1,0,1),(15593,'27136','Linz','LINZ',NULL,'','Austria','Linz',0,0,14,'2016-10-17 11:14:08','1900-01-01 00:00:00',1,0,1),(15594,'25473','Lions Bay','LIONS BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:08','1900-01-01 00:00:00',1,0,1),(15595,'30030','Lionville','LIONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:08','1900-01-01 00:00:00',1,0,1),(15596,'37850','Liouciou','LIOUCIOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15597,'42943','Lipa City','LIPA CITY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15598,'42040','Lipa Noi','LIPA NOI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15599,'12041','Lipari','LIPARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15600,'16361','Lipetsk','LIPETSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15601,'8429','Liphook','LIPHOOK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15602,'16640','Lipica','LIPICA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15603,'24316','Lipno Nad Vltavou','LIPNO NAD VLTAVOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15604,'38222','Lipot','LIPOT',NULL,'','Hungary','',0,0,99,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15605,'531','Lippstadt','LIPPSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15606,'39181','Liptovska Sielnica','LIPTOVSKA SIELNICA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15607,'40232','Liptovsky Jan','LIPTOVSKY JAN',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:14:09','1900-01-01 00:00:00',1,0,1),(15608,'24023','Lisala','LISALA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:14:10','1900-01-01 00:00:00',1,0,1),(15609,'16004','Lisbon','LISBON',NULL,'','Portugal','Lisbon',0,0,175,'2016-10-17 11:14:10','1900-01-01 00:00:00',1,0,1),(15610,'28069','Lisbon','LISBON',NULL,'','United States','',0,0,231,'2016-10-17 11:14:10','1900-01-01 00:00:00',1,0,1),(15611,'36568','Lisbon-costa D Capar','LISBON-COSTA D CAPAR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15612,'36581','Lisbon-montijo','LISBON-MONTIJO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15613,'36580','Lisbon-oeiras','LISBON-OEIRAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15614,'36587','Lisbon-queluz','LISBON-QUELUZ',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15615,'36595','Lisbon-turcifal','LISBON-TURCIFAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15616,'10788','Liscannor','LISCANNOR',NULL,'','Ireland','',0,0,105,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15617,'35555','Lisciano Niccone','LISCIANO NICCONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15618,'25724','Liscomb','LISCOMB',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15619,'10789','Lisdoonvarna','LISDOONVARNA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15620,'17397','Lishan','LISHAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15621,'23968','Lishui','LISHUI',NULL,'','China','',0,0,46,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15622,'5408','Lisieux','LISIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:14:11','1900-01-01 00:00:00',1,0,1),(15623,'8430','Liskeard','LISKEARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:12','1900-01-01 00:00:00',1,0,1),(15624,'4956','L\'isle-d\'abeau','L\'ISLE-D\'ABEAU',NULL,'','France','',0,0,76,'2016-10-17 11:14:12','1900-01-01 00:00:00',1,0,1),(15625,'4362','Lisle-jourdain','LISLE-JOURDAIN',NULL,'','France','',0,0,76,'2016-10-17 11:14:12','1900-01-01 00:00:00',1,0,1),(15626,'4363','L\'isle-sur-la-sorgue','L\'ISLE-SUR-LA-SORGUE',NULL,'','France','',0,0,76,'2016-10-17 11:14:12','1900-01-01 00:00:00',1,0,1),(15627,'34224','Lismore','LISMORE',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15628,'10939','Lismore','LISMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15629,'8431','Liss','LISS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15630,'14722','Lisse','LISSE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15631,'44073','Lisses','LISSES',NULL,'','France','',0,0,76,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15632,'6659','Lissieu','LISSIEU',NULL,'','France','',0,0,76,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15633,'12042','Lissone','LISSONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15634,'41516','Listowel','LISTOWEL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15635,'16322','Listvyanka','LISTVYANKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:14:13','1900-01-01 00:00:00',1,0,1),(15636,'27426','Litchfield','LITCHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:14','1900-01-01 00:00:00',1,0,1),(15637,'34789','Litchfield Nat. Park','LITCHFIELD NAT. PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:15','1900-01-01 00:00:00',1,0,1),(15638,'34225','Lithgow','LITHGOW',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:15','1900-01-01 00:00:00',1,0,1),(15639,'19858','Lithia Springs','LITHIA SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:14:16','1900-01-01 00:00:00',1,0,1),(15640,'19859','Lithonia','LITHONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:16','1900-01-01 00:00:00',1,0,1),(15641,'30031','Lititz','LITITZ',NULL,'','United States','',0,0,231,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15642,'42496','Litochoro','LITOCHORO',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15643,'35258','Litohoro','LITOHORO',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15644,'9686','Litokhoron','LITOKHORON',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15645,'32112','Little America','LITTLE AMERICA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15646,'24258','Little Cayman','LITTLE CAYMAN',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 11:14:17','1900-01-01 00:00:00',1,0,1),(15647,'25233','Little Good Harbour','LITTLE GOOD HARBOUR',NULL,'','Barbados','',0,0,19,'2016-10-17 11:14:19','1900-01-01 00:00:00',1,0,1),(15648,'25609','Little Grand Rapids','LITTLE GRAND RAPIDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:19','1900-01-01 00:00:00',1,0,1),(15649,'30760','Littlefield','LITTLEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:23','1900-01-01 00:00:00',1,0,1),(15650,'8435','Littlehampton','LITTLEHAMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:23','1900-01-01 00:00:00',1,0,1),(15651,'32729','Littleton','LITTLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:14:24','1900-01-01 00:00:00',1,0,1),(15652,'23606','Liulicun','LIULICUN',NULL,'','China','',0,0,46,'2016-10-17 11:14:25','1900-01-01 00:00:00',1,0,1),(15653,'23856','Liuzhou','LIUZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:14:25','1900-01-01 00:00:00',1,0,1),(15654,'9803','Livadia','LIVADIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:14:25','1900-01-01 00:00:00',1,0,1),(15655,'13661','Livange','LIVANGE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:14:25','1900-01-01 00:00:00',1,0,1),(15656,'34548','Lively','LIVELY',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:26','1900-01-01 00:00:00',1,0,1),(15657,'18618','Livermore','LIVERMORE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15658,'28920','Liverpool','LIVERPOOL',NULL,'','United States','',0,0,231,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15659,'34226','Liverpool','LIVERPOOL',NULL,'','Australia','Liverpool',0,0,13,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15660,'8436','Liverpool','LIVERPOOL',NULL,'','United Kingdom','Liverpool',0,0,229,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15661,'25725','Liverpool','LIVERPOOL',NULL,'','Canada','Liverpool',0,0,39,'2016-10-17 11:14:27','1900-01-01 00:00:00',1,0,1),(15662,'24710','Lives-sur-meuse','LIVES-SUR-MEUSE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:14:28','1900-01-01 00:00:00',1,0,1),(15663,'12043','Livigno','LIVIGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:28','1900-01-01 00:00:00',1,0,1),(15664,'42679','Livinallongo Del Col Di Lana','LIVINALLONGO DEL COL DI LANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:28','1900-01-01 00:00:00',1,0,1),(15665,'17911','Livingston','LIVINGSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:14:28','1900-01-01 00:00:00',1,0,1),(15666,'8437','Livingston','LIVINGSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:29','1900-01-01 00:00:00',1,0,1),(15667,'39733','Livingston','LIVINGSTON',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:14:29','1900-01-01 00:00:00',1,0,1),(15668,'9874','Lívingston','LÍVINGSTON',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:14:30','1900-01-01 00:00:00',1,0,1),(15669,'32648','Livingstone','LIVINGSTONE',NULL,'','Zambia','',0,0,242,'2016-10-17 11:14:30','1900-01-01 00:00:00',1,0,1),(15670,'28922','Livonia','LIVONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:30','1900-01-01 00:00:00',1,0,1),(15671,'12976','Livorno','LIVORNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:31','1900-01-01 00:00:00',1,0,1),(15672,'24988','Livramento','LIVRAMENTO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:14:31','1900-01-01 00:00:00',1,0,1),(15673,'4364','Livry Gargan','LIVRY GARGAN',NULL,'','France','',0,0,76,'2016-10-17 11:14:31','1900-01-01 00:00:00',1,0,1),(15674,'41406','Livry-gargan','LIVRY-GARGAN',NULL,'','France','',0,0,76,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15675,'40372','Liwa','LIWA',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15676,'23607','Liwan','LIWAN',NULL,'','China','',0,0,46,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15677,'23744','Liyang','LIYANG',NULL,'','China','',0,0,46,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15678,'8438','Lizard','LIZARD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15679,'26253','Lizard Island','LIZARD ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15680,'38373','Lizzanello','LIZZANELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15681,'12044','Lizzano In Belvedere','LIZZANO IN BELVEDERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:32','1900-01-01 00:00:00',1,0,1),(15682,'16641','Ljubljana','LJUBLJANA',NULL,'','Slovenia','Ljubljana',0,0,192,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15683,'16869','Ljungby','LJUNGBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15684,'37206','Ljungbyhed','LJUNGBYHED',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15685,'38322','Ljungskile','LJUNGSKILE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15686,'16700','Ljusdal','LJUSDAL',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15687,'41829','Ljutomer','LJUTOMER',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15688,'2679','Llafranc','LLAFRANC',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15689,'37731','Llagostera','LLAGOSTERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15690,'8439','Llanarmon Dyffryn-ceiriog','LLANARMON DYFFRYN-CEIRIOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:33','1900-01-01 00:00:00',1,0,1),(15691,'2680','Llanars','LLANARS',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15692,'41540','Llanaves De La Reina','LLANAVES DE LA REINA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15693,'8440','Llanberis','LLANBERIS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15694,'38863','Llanca','LLANCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15695,'8441','Llandegla','LLANDEGLA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15696,'8442','Llandeilo','LLANDEILO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15697,'8443','Llandovery','LLANDOVERY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:34','1900-01-01 00:00:00',1,0,1),(15698,'8444','Llandrindod Wells','LLANDRINDOD WELLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15699,'8445','Llandudno','LLANDUDNO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15700,'39879','Llandybie','LLANDYBIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15701,'8446','Llandyssul','LLANDYSSUL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15702,'41151','Llandysul','LLANDYSUL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15703,'8447','Llanelli','LLANELLI',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:35','1900-01-01 00:00:00',1,0,1),(15704,'40589','Llanera','LLANERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15705,'3458','Llanes','LLANES',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15706,'8448','Llanfairpwllgwyngyll','LLANFAIRPWLLGWYNGYLL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15707,'7183','Llanfarian','LLANFARIAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15708,'8449','Llanfyllin','LLANFYLLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15709,'41108','Llangadog','LLANGADOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15710,'8450','Llangammarch Wells','LLANGAMMARCH WELLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:36','1900-01-01 00:00:00',1,0,1),(15711,'8451','Llangefni','LLANGEFNI',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15712,'8452','Llangollen','LLANGOLLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15713,'8453','Llangurig','LLANGURIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15714,'8454','Llangybi','LLANGYBI',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15715,'30764','Llano','LLANO',NULL,'','United States','',0,0,231,'2016-10-17 11:14:37','1900-01-01 00:00:00',1,0,1),(15716,'14107','Llano Largo','LLANO LARGO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15717,'7184','Llanrhaedr','LLANRHAEDR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15718,'8455','Llanrug','LLANRUG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15719,'8456','Llanrwst','LLANRWST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15720,'8457','Llantwit Major','LLANTWIT MAJOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15721,'8458','Llanvair Waterdine','LLANVAIR WATERDINE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:38','1900-01-01 00:00:00',1,0,1),(15722,'8459','Llanwddyn','LLANWDDYN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15723,'8460','Llanwrtyd Wells','LLANWRTYD WELLS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15724,'8461','Llanybydder','LLANYBYDDER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15725,'41107','Llanymynech','LLANYMYNECH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15726,'41473','Llavorsi','LLAVORSI',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15727,'2681','Llavorsí','LLAVORSÍ',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15728,'2953','Lleida','LLEIDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:39','1900-01-01 00:00:00',1,0,1),(15729,'39375','Llerena','LLERENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15730,'3557','Llivia','LLIVIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15731,'3558','Lloret De Mar','LLORET DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15732,'25880','Llorts','LLORTS',NULL,'','Andorra','',0,0,5,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15733,'2905','Lloseta','LLOSETA',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15734,'28923','Lloyd Harbor','LLOYD HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:14:40','1900-01-01 00:00:00',1,0,1),(15735,'25335','Lloydminster','LLOYDMINSTER',NULL,'','Canada','',0,0,39,'2016-10-17 11:14:41','1900-01-01 00:00:00',1,0,1),(15736,'2683','Llucalcari','LLUCALCARI',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:41','1900-01-01 00:00:00',1,0,1),(15737,'2906','Llucmajor','LLUCMAJOR',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:41','1900-01-01 00:00:00',1,0,1),(15738,'8462','Llyswen','LLYSWEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:41','1900-01-01 00:00:00',1,0,1),(15739,'8463','Loanhead','LOANHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15740,'12045','Loano','LOANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15741,'1829','Lobbe','LOBBE',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15742,'40563','Lobios','LOBIOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15743,'23272','Locarno','LOCARNO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15744,'1442','Loch Lomond','LOCH LOMOND',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:14:42','1900-01-01 00:00:00',1,0,1),(15745,'41106','Lochailort','LOCHAILORT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15746,'38209','Lochau','LOCHAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15747,'8464','Lochearnhead','LOCHEARNHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15748,'14543','Lochem','LOCHEM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15749,'4946','Loches','LOCHES',NULL,'','France','',0,0,76,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15750,'8465','Lochgilphead','LOCHGILPHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15751,'8466','Lochinver','LOCHINVER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:43','1900-01-01 00:00:00',1,0,1),(15752,'8467','Lochmaddy','LOCHMADDY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:44','1900-01-01 00:00:00',1,0,1),(15753,'8468','Lockerbie','LOCKERBIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:44','1900-01-01 00:00:00',1,0,1),(15754,'30765','Lockhart','LOCKHART',NULL,'','United States','',0,0,231,'2016-10-17 11:14:44','1900-01-01 00:00:00',1,0,1),(15755,'26254','Lockhart Rivers','LOCKHART RIVERS',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:45','1900-01-01 00:00:00',1,0,1),(15756,'20630','Lockport','LOCKPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:14:45','1900-01-01 00:00:00',1,0,1),(15757,'7187','Locks Heath','LOCKS HEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:45','1900-01-01 00:00:00',1,0,1),(15758,'5568','Locmaria','LOCMARIA',NULL,'','France','',0,0,76,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15759,'38022','Locorotondo','LOCOROTONDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15760,'5569','Loctudy','LOCTUDY',NULL,'','France','',0,0,76,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15761,'12046','Loculi','LOCULI',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15762,'31148','Locust Dale','LOCUST DALE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:46','1900-01-01 00:00:00',1,0,1),(15763,'36670','Loddekoping','LODDEKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:47','1900-01-01 00:00:00',1,0,1),(15764,'16870','Loddekopinge','LODDEKOPINGE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:47','1900-01-01 00:00:00',1,0,1),(15765,'39172','Loddin','LODDIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15766,'40340','Loderup','LODERUP',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15767,'5935','Lodeve','LODEVE',NULL,'','France','',0,0,76,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15768,'31799','Lodi','LODI',NULL,'','United States','',0,0,231,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15769,'12047','Lodi','LODI',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:48','1900-01-01 00:00:00',1,0,1),(15770,'24024','Lodja','LODJA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:14:49','1900-01-01 00:00:00',1,0,1),(15771,'39804','Loebau','LOEBAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:49','1900-01-01 00:00:00',1,0,1),(15772,'65','Loecherberg','LOECHERBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:49','1900-01-01 00:00:00',1,0,1),(15773,'17067','Loei','LOEI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15774,'14158','Loen','LOEN',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15775,'14981','Loen','LOEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15776,'24388','Lofer','LOFER',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15777,'43329','Lofoten','LOFOTEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15778,'37970','Lofsdalen','LOFSDALEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15779,'14899','Lofthus','LOFTHUS',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:50','1900-01-01 00:00:00',1,0,1),(15780,'26716','Logan City','LOGAN CITY',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:52','1900-01-01 00:00:00',1,0,1),(15781,'26717','Loganholme','LOGANHOLME',NULL,'','Australia','',0,0,13,'2016-10-17 11:14:52','1900-01-01 00:00:00',1,0,1),(15782,'20931','Logansport','LOGANSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:14:52','1900-01-01 00:00:00',1,0,1),(15783,'19861','Loganville','LOGANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15784,'5858','Lognes','LOGNES',NULL,'','France','',0,0,76,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15785,'2966','Logrono','LOGRONO',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15786,'2245','Logstor','LOGSTOR',NULL,'','Denmark','',0,0,59,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15787,'37433','Lohberg','LOHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15788,'3979','Lohja','LOHJA',NULL,'','Finland','',0,0,75,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15789,'66','Lohmar','LOHMAR',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:53','1900-01-01 00:00:00',1,0,1),(15790,'1830','Lohmen','LOHMEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15791,'450','Lohne','LOHNE',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15792,'22587','Lohr','LOHR',NULL,'','Germany','',0,0,83,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15793,'12048','Loiano','LOIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15794,'27137','Loibichl','LOIBICHL',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15795,'27107','Loipersdorf','LOIPERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15796,'4366','Loire-atlantique','LOIRE-ATLANTIQUE',NULL,'','France','',0,0,76,'2016-10-17 11:14:54','1900-01-01 00:00:00',1,0,1),(15797,'4367','Loiret','LOIRET',NULL,'','France','',0,0,76,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15798,'4368','Loir-et-cher','LOIR-ET-CHER',NULL,'','France','',0,0,76,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15799,'12049','Loiri','LOIRI',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15800,'37561','Loiu','LOIU',NULL,'','Spain','',0,0,199,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15801,'2400','Loja','LOJA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15802,'9932','Lok Ma Chau','LOK MA CHAU',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15803,'24610','Lokeren','LOKEREN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:14:55','1900-01-01 00:00:00',1,0,1),(15804,'39632','Loket','LOKET',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15805,'2246','Lokken','LOKKEN',NULL,'','Denmark','',0,0,59,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15806,'10084','Lokoshaza','LOKOSHAZA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15807,'42072','Lokva Rogoznica','LOKVA ROGOZNICA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15808,'41817','Lolland','LOLLAND',NULL,'','Denmark','',0,0,59,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15809,'27997','Lolo','LOLO',NULL,'','United States','',0,0,231,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15810,'8469','Lolworth','LOLWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15811,'14948','Lom','LOM',NULL,'','Norway','',0,0,164,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15812,'18621','Loma Linda','LOMA LINDA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:56','1900-01-01 00:00:00',1,0,1),(15813,'4060','Lomaiviti Islands','LOMAIVITI ISLANDS',NULL,'','Fiji','',0,0,74,'2016-10-17 11:14:57','1900-01-01 00:00:00',1,0,1),(15814,'26076','Lomas De Zamora','LOMAS DE ZAMORA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:14:57','1900-01-01 00:00:00',1,0,1),(15815,'12050','Lomazzo','LOMAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:57','1900-01-01 00:00:00',1,0,1),(15816,'20631','Lombard','LOMBARD',NULL,'','United States','',0,0,231,'2016-10-17 11:14:57','1900-01-01 00:00:00',1,0,1),(15817,'11267','Lombardy Alps','LOMBARDY ALPS',NULL,'','Italy','',0,0,107,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15818,'10135','Lombok','LOMBOK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15819,'35348','Lombok-mataram','LOMBOK-MATARAM',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15820,'35365','Lombok-medana Beach','LOMBOK-MEDANA BEACH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15821,'35375','Lombok-senggigi','LOMBOK-SENGGIGI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15822,'35360','Lombok-tranwangan Is','LOMBOK-TRANWANGAN IS',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15823,'16950','Lome','LOME',NULL,'','Togo','',0,0,216,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15824,'15695','Lomianki','LOMIANKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15825,'31800','Lomira','LOMIRA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:58','1900-01-01 00:00:00',1,0,1),(15826,'18622','Lomita','LOMITA',NULL,'','United States','',0,0,231,'2016-10-17 11:14:59','1900-01-01 00:00:00',1,0,1),(15827,'6179','Lomme','LOMME',NULL,'','France','',0,0,76,'2016-10-17 11:14:59','1900-01-01 00:00:00',1,0,1),(15828,'24684','Lommel','LOMMEL',NULL,'','Belgium','',0,0,21,'2016-10-17 11:14:59','1900-01-01 00:00:00',1,0,1),(15829,'18623','Lompoc','LOMPOC',NULL,'','United States','',0,0,231,'2016-10-17 11:14:59','1900-01-01 00:00:00',1,0,1),(15830,'15653','Lomza','LOMZA',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15831,'12051','Lonate Pozzolo','LONATE POZZOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15832,'12052','Lonato','LONATO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15833,'41815','Lonavala','LONAVALA',NULL,'','India','Lonavala',5,0,101,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15835,'12053','Londa','LONDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15836,'9245','London','LONDON',NULL,'','United Kingdom','London',0,0,229,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15837,'34549','London','LONDON',NULL,'','Canada','London',0,0,39,'2016-10-17 11:15:00','1900-01-01 00:00:00',1,0,1),(15838,'32730','Londonderry','LONDONDERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:15:01','1900-01-01 00:00:00',1,0,1),(15839,'9262','Londonderry','LONDONDERRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:01','1900-01-01 00:00:00',1,0,1),(15840,'36314','London-hendon','LONDON-HENDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:01','1900-01-01 00:00:00',1,0,1),(15841,'25114','Londrina','LONDRINA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:15:01','1900-01-01 00:00:00',1,0,1),(15842,'33481','Lonetree','LONETREE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:02','1900-01-01 00:00:00',1,0,1),(15843,'24834','Long Island','LONG ISLAND',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:15:05','1900-01-01 00:00:00',1,0,1),(15844,'26165','Long Island','LONG ISLAND',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 11:15:05','1900-01-01 00:00:00',1,0,1),(15845,'14378','Long Lellang','LONG LELLANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:15:07','1900-01-01 00:00:00',1,0,1),(15846,'11268','Longa','LONGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15847,'32318','Longana','LONGANA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15848,'10177','Longapung','LONGAPUNG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15849,'38197','Longare','LONGARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15850,'10178','Longbawan','LONGBAWAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:15:09','1900-01-01 00:00:00',1,0,1),(15851,'19461','Longboat Key','LONGBOAT KEY',NULL,'','United States','',0,0,231,'2016-10-17 11:15:10','1900-01-01 00:00:00',1,0,1),(15852,'8475','Longbridge','LONGBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:10','1900-01-01 00:00:00',1,0,1),(15853,'19462','Longdale','LONGDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:10','1900-01-01 00:00:00',1,0,1),(15854,'4997','Longeau-percey','LONGEAU-PERCEY',NULL,'','France','',0,0,76,'2016-10-17 11:15:10','1900-01-01 00:00:00',1,0,1),(15855,'6660','Longefoy','LONGEFOY',NULL,'','France','',0,0,76,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15856,'43670','Longford','LONGFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15857,'8476','Longforgan','LONGFORGAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15858,'8477','Longframlington','LONGFRAMLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15859,'8478','Longhirst','LONGHIRST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15860,'8479','Longhorsley','LONGHORSLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:11','1900-01-01 00:00:00',1,0,1),(15861,'12723','Longiano','LONGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15862,'33482','Longmont','LONGMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15863,'9687','Longos','LONGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15864,'26417','Longreach','LONGREACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15865,'30365','Longs','LONGS',NULL,'','United States','',0,0,231,'2016-10-17 11:15:12','1900-01-01 00:00:00',1,0,1),(15866,'36823','Longtan','LONGTAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15867,'6308','Longueau','LONGUEAU',NULL,'','France','',0,0,76,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15868,'22781','Longueuil','LONGUEUIL',NULL,'','Canada','',0,0,39,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15869,'6041','Longuyon','LONGUYON',NULL,'','France','',0,0,76,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15870,'5469','Longvic','LONGVIC',NULL,'','France','',0,0,76,'2016-10-17 11:15:13','1900-01-01 00:00:00',1,0,1),(15871,'19463','Longwood','LONGWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:15:14','1900-01-01 00:00:00',1,0,1),(15872,'6042','Longwy','LONGWY',NULL,'','France','',0,0,76,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15873,'23772','Longyan','LONGYAN',NULL,'','China','',0,0,46,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15874,'16536','Longyearbyen','LONGYEARBYEN',NULL,'','Svalbard And Jan Mayen Islands','',0,0,0,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15875,'36480','Longyearbyen','LONGYEARBYEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15876,'23707','Longyou','LONGYOU',NULL,'','China','',0,0,46,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15877,'18044','Lonoke','LONOKE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15878,'32334','Lonorore','LONORORE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:15:15','1900-01-01 00:00:00',1,0,1),(15879,'5778','Lons-le-saunier','LONS-LE-SAUNIER',NULL,'','France','',0,0,76,'2016-10-17 11:15:16','1900-01-01 00:00:00',1,0,1),(15880,'7189','Looe','LOOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:16','1900-01-01 00:00:00',1,0,1),(15881,'19862','Lookout Mountain','LOOKOUT MOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:16','1900-01-01 00:00:00',1,0,1),(15882,'18627','Loomis','LOOMIS',NULL,'','United States','',0,0,231,'2016-10-17 11:15:16','1900-01-01 00:00:00',1,0,1),(15883,'31542','Loon Lake','LOON LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15884,'41405','Loon Plage','LOON PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15885,'6180','Loon-plage','LOON-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15886,'14472','Loosdrecht','LOOSDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15887,'43842','Lopar','LOPAR',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15888,'36758','Lopburi','LOPBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:15:17','1900-01-01 00:00:00',1,0,1),(15889,'31543','Lopez Island','LOPEZ ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15890,'14561','Loppersum','LOPPERSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15891,'10056','Lopud','LOPUD',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15892,'29404','Lorain','LORAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15893,'34228','Lord Howe Island','LORD HOWE ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:18','1900-01-01 00:00:00',1,0,1),(15894,'28541','Lordsburg','LORDSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:15:19','1900-01-01 00:00:00',1,0,1),(15895,'29405','Lordstown','LORDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:19','1900-01-01 00:00:00',1,0,1),(15896,'43111','Lorenskog','LORENSKOG',NULL,'','Norway','',0,0,164,'2016-10-17 11:15:19','1900-01-01 00:00:00',1,0,1),(15897,'38621','Lorenzago Di Cadore','LORENZAGO DI CADORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:19','1900-01-01 00:00:00',1,0,1),(15898,'14135','Loreto','LORETO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15899,'35556','Loreto','LORETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15900,'22782','Loretteville','LORETTEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15901,'33679','Loretto','LORETTO',NULL,'','United States','',0,0,231,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15902,'6476','Lorgues','LORGUES',NULL,'','France','',0,0,76,'2016-10-17 11:15:20','1900-01-01 00:00:00',1,0,1),(15903,'12055','Loria','LORIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15904,'12056','Lorica','LORICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15905,'5001','Lorient','LORIENT',NULL,'','France','',0,0,76,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15906,'16948','Lorimers','LORIMERS',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15907,'41404','Loriol-du-comtat','LORIOL-DU-COMTAT',NULL,'','France','',0,0,76,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15908,'27876','Lorman','LORMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:21','1900-01-01 00:00:00',1,0,1),(15909,'5211','Lormont','LORMONT',NULL,'','France','',0,0,76,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15910,'26256','Lorne','LORNE',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15911,'12057','Loro Ciuffenna','LORO CIUFFENNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15912,'4369','Lorp-sentaraille','LORP-SENTARAILLE',NULL,'','France','',0,0,76,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15913,'22588','Lorrach','LORRACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:22','1900-01-01 00:00:00',1,0,1),(15914,'4370','Lorraine Airport','LORRAINE AIRPORT',NULL,'','France','',0,0,76,'2016-10-17 11:15:23','1900-01-01 00:00:00',1,0,1),(15915,'41515','Lorrha','LORRHA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:23','1900-01-01 00:00:00',1,0,1),(15916,'31149','Lorton','LORTON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:23','1900-01-01 00:00:00',1,0,1),(15917,'8480','Lorton','LORTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:23','1900-01-01 00:00:00',1,0,1),(15918,'32175','Los Roques','LOS ROQUES',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15919,'23522','Los Vilos','LOS VILOS',NULL,'','Chile','',0,0,45,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15920,'9993','Losinj Island','LOSINJ ISLAND',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15921,'67','Lossburg','LOSSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15922,'8481','Lossiemouth','LOSSIEMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:28','1900-01-01 00:00:00',1,0,1),(15923,'8482','Lostwithiel','LOSTWITHIEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:29','1900-01-01 00:00:00',1,0,1),(15924,'4372','Lot-et-garonne','LOT-ET-GARONNE',NULL,'','France','',0,0,76,'2016-10-17 11:15:29','1900-01-01 00:00:00',1,0,1),(15925,'36824','Lotung','LOTUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:29','1900-01-01 00:00:00',1,0,1),(15926,'18641','Lotus','LOTUS',NULL,'','United States','',0,0,231,'2016-10-17 11:15:29','1900-01-01 00:00:00',1,0,1),(15927,'42309','Lotzwil','LOTZWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15928,'13537','Louangphrabang','LOUANGPHRABANG',NULL,'','Laos','',0,0,118,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15929,'24051','Loubomo','LOUBOMO',NULL,'','Congo','',0,0,51,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15930,'6106','Loubressac','LOUBRESSAC',NULL,'','France','',0,0,76,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15931,'40336','Loudeac','LOUDEAC',NULL,'','France','',0,0,76,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15932,'5032','Loudenvielle','LOUDENVIELLE',NULL,'','France','',0,0,76,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15933,'6107','Loudervielle','LOUDERVIELLE',NULL,'','France','',0,0,76,'2016-10-17 11:15:30','1900-01-01 00:00:00',1,0,1),(15934,'33197','Loudon','LOUDON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:31','1900-01-01 00:00:00',1,0,1),(15935,'28930','Loudonville','LOUDONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:31','1900-01-01 00:00:00',1,0,1),(15936,'41403','Loue','LOUE',NULL,'','France','',0,0,76,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15937,'4373','Loué','LOUÉ',NULL,'','France','',0,0,76,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15938,'8483','Loughborough','LOUGHBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15939,'10869','Loughrea','LOUGHREA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15940,'40923','Loughrea, Co.galway','LOUGHREA, CO.GALWAY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15941,'5470','Louhans','LOUHANS',NULL,'','France','',0,0,76,'2016-10-17 11:15:32','1900-01-01 00:00:00',1,0,1),(15942,'43203','Louis Trichard','LOUIS TRICHARD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:15:33','1900-01-01 00:00:00',1,0,1),(15943,'33680','Louisa','LOUISA',NULL,'','United States','',0,0,231,'2016-10-17 11:15:33','1900-01-01 00:00:00',1,0,1),(15944,'25726','Louisbourg','LOUISBOURG',NULL,'','Canada','',0,0,39,'2016-10-17 11:15:33','1900-01-01 00:00:00',1,0,1),(15945,'33924','Louisburg','LOUISBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:15:34','1900-01-01 00:00:00',1,0,1),(15946,'24718','Louise Marie','LOUISE MARIE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:15:34','1900-01-01 00:00:00',1,0,1),(15947,'27702','Louisiana','LOUISIANA',NULL,'','United States','',0,0,231,'2016-10-17 11:15:34','1900-01-01 00:00:00',1,0,1),(15948,'27877','Louisville','LOUISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:34','1900-01-01 00:00:00',1,0,1),(15949,'6346','Loulay','LOULAY',NULL,'','France','',0,0,76,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15950,'15931','Loule','LOULE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15951,'9532','Lourdata','LOURDATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15952,'6108','Lourdes','LOURDES',NULL,'','France','',0,0,76,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15953,'36256','Lourdes-eaux-bonnes','LOURDES-EAUX-BONNES',NULL,'','France','',0,0,76,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15954,'44125','Loures','LOURES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:15:36','1900-01-01 00:00:00',1,0,1),(15955,'6477','Lourmarin','LOURMARIN',NULL,'','France','',0,0,76,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15956,'15904','Lousa','LOUSA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15957,'39428','Lousada','LOUSADA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15958,'43707','Louth','LOUTH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15959,'7190','Louth','LOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15960,'9688','Loutra Killinis','LOUTRA KILLINIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15961,'9396','Loutraki','LOUTRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:15:37','1900-01-01 00:00:00',1,0,1),(15962,'24638','Louvain','LOUVAIN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15963,'42245','Louvain-la-neuve','LOUVAIN-LA-NEUVE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15964,'4743','Louveciennes','LOUVECIENNES',NULL,'','France','',0,0,76,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15965,'5818','Louviers','LOUVIERS',NULL,'','France','',0,0,76,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15966,'4375','Louvre - Theatre District (1 And 2)','LOUVRE - THEATRE DISTRICT (1 AND 2)',NULL,'','France','',0,0,76,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15967,'4744','Louvres','LOUVRES',NULL,'','France','',0,0,76,'2016-10-17 11:15:38','1900-01-01 00:00:00',1,0,1),(15968,'42249','Lovech','LOVECH',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:15:39','1900-01-01 00:00:00',1,0,1),(15969,'34229','Lovedale','LOVEDALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:39','1900-01-01 00:00:00',1,0,1),(15970,'33484','Loveland','LOVELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:15:39','1900-01-01 00:00:00',1,0,1),(15971,'32113','Lovell','LOVELL',NULL,'','United States','',0,0,231,'2016-10-17 11:15:40','1900-01-01 00:00:00',1,0,1),(15972,'32831','Lovelock','LOVELOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:15:40','1900-01-01 00:00:00',1,0,1),(15973,'20633','Loves Park','LOVES PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15974,'31151','Lovettsville','LOVETTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15975,'3980','Loviisa','LOVIISA',NULL,'','Finland','',0,0,75,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15976,'41625','Lovina','LOVINA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15977,'31152','Lovingston','LOVINGSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:41','1900-01-01 00:00:00',1,0,1),(15978,'28545','Lovington','LOVINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:42','1900-01-01 00:00:00',1,0,1),(15979,'10018','Loviste','LOVISTE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:42','1900-01-01 00:00:00',1,0,1),(15980,'16796','Lovon','LOVON',NULL,'','Sweden','',0,0,209,'2016-10-17 11:15:42','1900-01-01 00:00:00',1,0,1),(15981,'10019','Lovran','LOVRAN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:42','1900-01-01 00:00:00',1,0,1),(15982,'22589','Lowenstein','LOWENSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:43','1900-01-01 00:00:00',1,0,1),(15983,'8484','Lower Beeding','LOWER BEEDING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:43','1900-01-01 00:00:00',1,0,1),(15984,'16625','Lower Carniola','LOWER CARNIOLA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:15:44','1900-01-01 00:00:00',1,0,1),(15985,'15213','Lower Hutt','LOWER HUTT',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:15:44','1900-01-01 00:00:00',1,0,1),(15986,'25727','Lower Sackville','LOWER SACKVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:15:44','1900-01-01 00:00:00',1,0,1),(15987,'8486','Lowestoft','LOWESTOFT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15988,'8487','Lowick','LOWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15989,'17137','Lowlands','LOWLANDS',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15990,'28931','Lowville','LOWVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15991,'17912','Loxley','LOXLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:15:45','1900-01-01 00:00:00',1,0,1),(15992,'26809','Loxton','LOXTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15993,'36325','Loxton','LOXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15994,'4376','Lozere','LOZERE',NULL,'','France','',0,0,76,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15995,'37283','Lozovac','LOZOVAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15996,'3092','Luanco','LUANCO',NULL,'','Spain','',0,0,199,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15997,'25852','Luanda','LUANDA',NULL,'','Angola','',0,0,6,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15998,'13540','Luang Namtha','LUANG NAMTHA',NULL,'','Laos','',0,0,118,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(15999,'15631','Luban','LUBAN',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:46','1900-01-01 00:00:00',1,0,1),(16000,'25851','Lubango','LUBANGO',NULL,'','Angola','',0,0,6,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16001,'1941','Lubars','LUBARS',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16002,'42179','Lubbenau','LUBBENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16003,'30771','Lubbock','LUBBOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16004,'723','Lubeck','LUBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16005,'4377','Luberon','LUBERON',NULL,'','France','',0,0,76,'2016-10-17 11:15:47','1900-01-01 00:00:00',1,0,1),(16006,'15714','Lublin','LUBLIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16007,'15616','Lubliniec','LUBLINIEC',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16008,'24025','Lubumbashi','LUBUMBASHI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16009,'15591','Lubusz','LUBUSZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16010,'10845','Lucan','LUCAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16011,'35559','Lucardo','LUCARDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16012,'33684','Lucas','LUCAS',NULL,'','United States','',0,0,231,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16013,'39515','Lucas Do Rio Verde','LUCAS DO RIO VERDE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:15:48','1900-01-01 00:00:00',1,0,1),(16014,'24871','Lucaya','LUCAYA',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16015,'4745','Lucciana','LUCCIANA',NULL,'','France','',0,0,76,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16016,'5409','Luce','LUCE',NULL,'','France','',0,0,76,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16017,'40357','Lucea','LUCEA',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16018,'27878','Lucedale','LUCEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:49','1900-01-01 00:00:00',1,0,1),(16019,'3258','Lucena','LUCENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16020,'42836','Lucenec','LUCENEC',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16021,'12059','Lucera','LUCERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16022,'23273','Lucerne','LUCERNE',NULL,'','Switzerland','Lucerne',0,0,210,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16023,'3093','Luces','LUCES',NULL,'','Spain','',0,0,199,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16024,'17398','Luchou','LUCHOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16025,'12060','Lucignano','LUCIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16026,'12061','Lucino','LUCINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:50','1900-01-01 00:00:00',1,0,1),(16027,'787','Luckenwalde','LUCKENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16028,'10682','Lucknow','LUCKNOW',NULL,'','India','Lucknow',6,0,101,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16029,'4379','Luçon','LUÇON',NULL,'','France','',0,0,76,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16030,'5410','Luc-sur-mer','LUC-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16031,'14413','Luderitz','LUDERITZ',NULL,'','Namibia','',0,0,151,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16032,'27251','Lüdersburg','LÜDERSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16033,'10553','Ludhiana','LUDHIANA',NULL,'','India','Ludhiana',19,0,101,'2016-10-17 11:15:51','1900-01-01 00:00:00',1,0,1),(16034,'22147','Ludington','LUDINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:15:52','1900-01-01 00:00:00',1,0,1),(16035,'31345','Ludlow','LUDLOW',NULL,'','United States','',0,0,231,'2016-10-17 11:15:52','1900-01-01 00:00:00',1,0,1),(16036,'8488','Ludlow','LUDLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:15:53','1900-01-01 00:00:00',1,0,1),(16037,'6043','Ludres','LUDRES',NULL,'','France','',0,0,76,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16038,'16742','Ludvika','LUDVIKA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16039,'788','Ludwigsburg','LUDWIGSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16040,'789','Ludwigsfelde','LUDWIGSFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16041,'22590','Ludwigshafen','LUDWIGSHAFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16042,'27252','Ludwigslust','LUDWIGSLUST',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16043,'1697','Luebeck','LUEBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:54','1900-01-01 00:00:00',1,0,1),(16044,'70','Luedenscheid','LUEDENSCHEID',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16045,'25854','Luena','LUENA',NULL,'','Angola','',0,0,6,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16046,'43338','Lueneburg','LUENEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16047,'42449','Luenen','LUENEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16048,'71','Luetjenburg','LUETJENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16049,'30772','Lufkin','LUFKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:15:55','1900-01-01 00:00:00',1,0,1),(16050,'12946','Lugagnano','LUGAGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16051,'36825','Lugang','LUGANG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16052,'17508','Lugansk','LUGANSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16053,'42293','Luganville','LUGANVILLE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16054,'5212','Luglon','LUGLON',NULL,'','France','',0,0,76,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16055,'12062','Lugo','LUGO',NULL,'','Italy','Lugo',0,0,107,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16056,'3559','Lugo','LUGO',NULL,'','Spain','Lugo',0,0,199,'2016-10-17 11:15:56','1900-01-01 00:00:00',1,0,1),(16057,'30366','Lugoff','LUGOFF',NULL,'','United States','',0,0,231,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16058,'36627','Lugoj','LUGOJ',NULL,'','Romania','',0,0,179,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16059,'3094','Lugones','LUGONES',NULL,'','Spain','',0,0,199,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16060,'23892','Lugouqiao','LUGOUQIAO',NULL,'','China','',0,0,46,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16061,'42176','Lugrin','LUGRIN',NULL,'','France','',0,0,76,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16062,'39401','Luhme','LUHME',NULL,'','Germany','',0,0,83,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16063,'12063','Luino','LUINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16064,'39080','Lujan','LUJAN',NULL,'','Argentina','',0,0,10,'2016-10-17 11:15:57','1900-01-01 00:00:00',1,0,1),(16065,'23686','Lujiang','LUJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16066,'39189','Lujiazui','LUJIAZUI',NULL,'','China','',0,0,46,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16067,'17399','Lukang','LUKANG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16068,'21737','Luke','LUKE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16069,'18160','Lukeville','LUKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:15:58','1900-01-01 00:00:00',1,0,1),(16070,'15055','Lukla','LUKLA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16071,'15662','Lukta','LUKTA',NULL,'','Poland','',0,0,174,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16072,'27879','Lula','LULA',NULL,'','United States','',0,0,231,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16073,'16755','Lulea','LULEA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16074,'21225','Luling','LULING',NULL,'','United States','',0,0,231,'2016-10-17 11:15:59','1900-01-01 00:00:00',1,0,1),(16075,'23275','Lully','LULLY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:00','1900-01-01 00:00:00',1,0,1),(16076,'7191','Lulworth','LULWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:00','1900-01-01 00:00:00',1,0,1),(16077,'10020','Lumbarda','LUMBARDA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:16:00','1900-01-01 00:00:00',1,0,1),(16078,'33925','Lumberton','LUMBERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:16:00','1900-01-01 00:00:00',1,0,1),(16079,'30034','Lumberville','LUMBERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:01','1900-01-01 00:00:00',1,0,1),(16080,'15039','Lumbini','LUMBINI',NULL,'','Nepal','',0,0,153,'2016-10-17 11:16:01','1900-01-01 00:00:00',1,0,1),(16081,'39896','Lumbini Area','LUMBINI AREA',NULL,'','India','',0,0,101,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16082,'6181','Lumbres','LUMBRES',NULL,'','France','',0,0,76,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16083,'38330','Lumio','LUMIO',NULL,'','France','',0,0,76,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16084,'24685','Lummen','LUMMEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16085,'31544','Lummi Island','LUMMI ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16086,'14368','Lumut','LUMUT',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16087,'40504','Lun','LUN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:16:02','1900-01-01 00:00:00',1,0,1),(16088,'22149','Luna Pier','LUNA PIER',NULL,'','United States','',0,0,231,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16089,'12064','Lunamatrona','LUNAMATRONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16090,'43724','Lunawanna','LUNAWANNA',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16091,'16679','Lund','LUND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16092,'1672','Lund','LUND',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16093,'8489','Lundin Links','LUNDIN LINKS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16094,'27253','Luneburg','LUNEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:03','1900-01-01 00:00:00',1,0,1),(16095,'2025','Lüneburg','LÜNEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16096,'5936','Lunel','LUNEL',NULL,'','France','',0,0,76,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16097,'532','Lunen','LUNEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16098,'25728','Lunenburg','LUNENBURG',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16099,'6044','Luneville','LUNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16100,'27003','Lungau','LUNGAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16101,'23276','Lungern','LUNGERN',NULL,'','Switzerland','Lungern',0,0,210,'2016-10-17 11:16:04','1900-01-01 00:00:00',1,0,1),(16102,'40863','Luni','LUNI',NULL,'','India','',0,0,101,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16103,'41426','Lunion','LUNION',NULL,'','France','',0,0,76,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16104,'6109','L\'union','L\'UNION',NULL,'','France','',0,0,76,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16105,'10242','Lunyuk','LUNYUK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16106,'1890','Lunzenau','LUNZENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16107,'17400','Luodong','LUODONG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16108,'34883','Luogang Economic Zon','LUOGANG ECONOMIC ZON',NULL,'','China','',0,0,46,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16109,'12065','Luogo Santo','LUOGO SANTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16110,'43826','Luohe','LUOHE',NULL,'','China','',0,0,46,'2016-10-17 11:16:05','1900-01-01 00:00:00',1,0,1),(16111,'23969','Luohu','LUOHU',NULL,'','China','',0,0,46,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16112,'34884','Luoping','LUOPING',NULL,'','China','',0,0,46,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16113,'4042','Luosto','LUOSTO',NULL,'','Finland','',0,0,75,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16114,'23773','Luoyang','LUOYANG',NULL,'','China','',0,0,46,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16115,'15757','Luquillo','LUQUILLO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16116,'12066','Luras','LURAS',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16117,'31153','Luray','LURAY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:06','1900-01-01 00:00:00',1,0,1),(16118,'5055','Lure','LURE',NULL,'','France','',0,0,76,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16119,'15411','Lurigancho','LURIGANCHO',NULL,'','Peru','',0,0,172,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16120,'32641','Lusaka','LUSAKA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16121,'17401','Lushan','LUSHAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16122,'23732','Lushan','LUSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16123,'6347','Lusignan','LUSIGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16124,'32474','Lusikisiki','LUSIKISIKI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16125,'32114','Lusk','LUSK',NULL,'','United States','',0,0,231,'2016-10-17 11:16:07','1900-01-01 00:00:00',1,0,1),(16126,'10846','Lusk','LUSK',NULL,'','Ireland','',0,0,105,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16127,'15777','Luso','LUSO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16128,'8490','Luss','LUSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16129,'8491','Lustleigh','LUSTLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16130,'38138','Lutana','LUTANA',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16131,'40719','Luterbach','LUTERBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:08','1900-01-01 00:00:00',1,0,1),(16132,'21738','Lutherville','LUTHERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16133,'1710','Lütjenburg','LÜTJENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16134,'8492','Luton','LUTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16135,'23277','Lutry','LUTRY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16136,'25773','Lutselke Snowdrift','LUTSELKE SNOWDRIFT',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16137,'27430','Lutsen','LUTSEN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:09','1900-01-01 00:00:00',1,0,1),(16138,'17495','Lutsk','LUTSK',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16139,'6772','Lutterbach','LUTTERBACH',NULL,'','France','',0,0,76,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16140,'8493','Lutterworth','LUTTERWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16141,'19464','Lutz','LUTZ',NULL,'','United States','',0,0,231,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16142,'27064','Lutzmannsburg','LUTZMANNSBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16143,'40466','Luumaki','LUUMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:16:10','1900-01-01 00:00:00',1,0,1),(16144,'17913','Luverne','LUVERNE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:11','1900-01-01 00:00:00',1,0,1),(16145,'23608','Luwan - Xintiandi','LUWAN - XINTIANDI',NULL,'','China','',0,0,46,'2016-10-17 11:16:11','1900-01-01 00:00:00',1,0,1),(16146,'10363','Luwuk','LUWUK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16147,'37238','Lux','LUX',NULL,'','France','',0,0,76,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16148,'24590','Luxembourg','LUXEMBOURG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16149,'13660','Luxembourg','LUXEMBOURG',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16150,'36381','Luxembourg-canach','LUXEMBOURG-CANACH',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16151,'5056','Luxeuil-les-bains','LUXEUIL-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16152,'23687','Luxi','LUXI',NULL,'','China','',0,0,46,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16153,'2411','Luxor','LUXOR',NULL,'','Egypt','Luxor ',0,0,65,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16154,'17402','Luye','LUYE',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16155,'3460','Luyego','LUYEGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16156,'5657','Luynes','LUYNES',NULL,'','France','',0,0,76,'2016-10-17 11:16:12','1900-01-01 00:00:00',1,0,1),(16157,'23745','Luyuan','LUYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16158,'41396','Luz Saint-sauveur','LUZ SAINT-SAUVEUR',NULL,'','France','',0,0,76,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16159,'39454','Luzarches','LUZARCHES',NULL,'','France','',0,0,76,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16160,'23057','Luzerner Alps','LUZERNER ALPS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16161,'23995','Luzhou','LUZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16162,'15451','Luzon','LUZON',NULL,'','Philippines','',0,0,173,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16163,'5033','Luz-saint-sauveur','LUZ-SAINT-SAUVEUR',NULL,'','France','',0,0,76,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16164,'17518','Lviv','LVIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16165,'17482','L\'viv','L\'VIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:13','1900-01-01 00:00:00',1,0,1),(16166,'36837','Lvov','LVOV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16167,'17496','Lwo','LWO',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16168,'39863','Lwowek Slaski','LWOWEK SLASKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16169,'8494','Lybster','LYBSTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16170,'16797','Lycksele','LYCKSELE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16171,'8495','Lydd','LYDD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16172,'8496','Lydford','LYDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16173,'8497','Lydney','LYDNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:14','1900-01-01 00:00:00',1,0,1),(16174,'30367','Lyman','LYMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:15','1900-01-01 00:00:00',1,0,1),(16175,'8499','Lymington','LYMINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:15','1900-01-01 00:00:00',1,0,1),(16176,'8500','Lymm','LYMM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:16','1900-01-01 00:00:00',1,0,1),(16177,'28932','Lynbrook','LYNBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:16:16','1900-01-01 00:00:00',1,0,1),(16178,'31155','Lynchburg','LYNCHBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:16:16','1900-01-01 00:00:00',1,0,1),(16179,'31545','Lynden','LYNDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:17','1900-01-01 00:00:00',1,0,1),(16180,'31157','Lyndhurst','LYNDHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:16:17','1900-01-01 00:00:00',1,0,1),(16181,'8501','Lyndhurst','LYNDHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:18','1900-01-01 00:00:00',1,0,1),(16182,'40746','Lyndoch','LYNDOCH',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:18','1900-01-01 00:00:00',1,0,1),(16183,'31347','Lyndonville','LYNDONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:18','1900-01-01 00:00:00',1,0,1),(16184,'26634','Lyneham','LYNEHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:19','1900-01-01 00:00:00',1,0,1),(16185,'37489','Lyngdal','LYNGDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:16:19','1900-01-01 00:00:00',1,0,1),(16186,'8502','Lynmouth','LYNMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:19','1900-01-01 00:00:00',1,0,1),(16187,'21421','Lynn','LYNN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:19','1900-01-01 00:00:00',1,0,1),(16188,'25610','Lynn Lake','LYNN LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:20','1900-01-01 00:00:00',1,0,1),(16189,'21422','Lynnfield','LYNNFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:16:20','1900-01-01 00:00:00',1,0,1),(16190,'31158','Lynnhaven','LYNNHAVEN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:21','1900-01-01 00:00:00',1,0,1),(16191,'31546','Lynnwood','LYNNWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:16:21','1900-01-01 00:00:00',1,0,1),(16192,'8503','Lynton','LYNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:21','1900-01-01 00:00:00',1,0,1),(16193,'18643','Lynwood','LYNWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:16:22','1900-01-01 00:00:00',1,0,1),(16194,'33486','Lyons','LYONS',NULL,'','United States','',0,0,231,'2016-10-17 11:16:22','1900-01-01 00:00:00',1,0,1),(16195,'5819','Lyons-la-foret','LYONS-LA-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16196,'43534','Lyon-villeurbanne','LYON-VILLEURBANNE',NULL,'','France','',0,0,76,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16197,'14851','Lysaker','LYSAKER',NULL,'','Norway','',0,0,164,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16198,'7192','Lytham St Annes','LYTHAM ST ANNES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16199,'16369','Lytkarino','LYTKARINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:23','1900-01-01 00:00:00',1,0,1),(16200,'30775','Lytle','LYTLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16201,'15125','Lyttelton','LYTTELTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16202,'43625','Lyttleton','LYTTLETON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16203,'16395','Lyubertsy','LYUBERTSY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16204,'16409','Lyublino','LYUBLINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16205,'25841','M Banza Congo','M BANZA CONGO',NULL,'','Angola','',0,0,6,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16206,'39258','Maagan','MAAGAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16207,'20068','Maalaea','MAALAEA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:24','1900-01-01 00:00:00',1,0,1),(16208,'42901','Maale Hahamisha','MAALE HAHAMISHA',NULL,'','Israel','',0,0,106,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16209,'11046','Maalot','MAALOT',NULL,'','Israel','',0,0,106,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16210,'41462','Ma\'alot Moriya','MA\'ALOT MORIYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16211,'1083','Maaloula','MAALOULA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16212,'36718','Maalula','MAALULA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16213,'10774','Maam Cross','MAAM CROSS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16214,'38857','Maanshan','MAANSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16215,'38205','Maarsbergen','MAARSBERGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16216,'14684','Maarssen','MAARSSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16217,'24686','Maaseik','MAASEIK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16218,'24591','Maasland - Voerstreek','MAASLAND - VOERSTREEK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16219,'14574','Maastricht','MAASTRICHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:16:25','1900-01-01 00:00:00',1,0,1),(16220,'40369','Mabank','MABANK',NULL,'','United States','',0,0,231,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16221,'39656','Mabibi','MABIBI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16222,'32576','Mabiligwe','MABILIGWE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16223,'42944','Mabini','MABINI',NULL,'','Philippines','',0,0,173,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16224,'19863','Mableton','MABLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:16:26','1900-01-01 00:00:00',1,0,1),(16225,'44074','Mably','MABLY',NULL,'','France','',0,0,76,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16226,'26257','Mabuiag Island','MABUIAG ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16227,'32475','Mabula','MABULA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16228,'25135','Macae','MACAE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16229,'2687','Macanet De Cabrenys','MACANET DE CABRENYS',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16230,'25025','Macapa','MACAPA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16231,'2406','Macas','MACAS',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16232,'22150','Macatawa','MACATAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:27','1900-01-01 00:00:00',1,0,1),(16233,'13674','Macau','MACAU',NULL,'','Macau','Macau',0,0,128,'2016-10-17 11:16:28','1900-01-01 00:00:00',1,0,1),(16234,'41835','Maccagno','MACCAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:28','1900-01-01 00:00:00',1,0,1),(16235,'39213','Macchiagodena','MACCHIAGODENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:28','1900-01-01 00:00:00',1,0,1),(16236,'19466','Macclenny','MACCLENNY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:28','1900-01-01 00:00:00',1,0,1),(16237,'8504','Macclesfield','MACCLESFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16238,'8505','Macduff','MACDUFF',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16239,'15890','Macedo De Cavaleiros','MACEDO DE CAVALEIROS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16240,'43636','Macedon','MACEDON',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16241,'29409','Macedonia','MACEDONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:29','1900-01-01 00:00:00',1,0,1),(16242,'25022','Maceio','MACEIO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16243,'41655','Maceira','MACEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16244,'12792','Macerata','MACERATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16245,'12067','Macerino','MACERINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16246,'2394','Machala','MACHALA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16247,'24639','Machelen','MACHELEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:16:30','1900-01-01 00:00:00',1,0,1),(16248,'20635','Machesney Park','MACHESNEY PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16249,'15955','Machico','MACHICO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16250,'13287','Machida','MACHIDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16251,'8506','Machynlleth','MACHYNLLETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16252,'15677','Macierzysz','MACIERZYSZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16253,'4746','Macinaggio','MACINAGGIO',NULL,'','France','',0,0,76,'2016-10-17 11:16:31','1900-01-01 00:00:00',1,0,1),(16254,'37438','Macka','MACKA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16255,'26718','Mackay','MACKAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16256,'25474','Mackenzie','MACKENZIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16257,'22151','Mackinac Island','MACKINAC ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16258,'22152','Mackinaw City','MACKINAW CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:32','1900-01-01 00:00:00',1,0,1),(16259,'34230','Macksville','MACKSVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:33','1900-01-01 00:00:00',1,0,1),(16260,'32476','Macleantown','MACLEANTOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:33','1900-01-01 00:00:00',1,0,1),(16261,'26258','Macleod','MACLEOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:33','1900-01-01 00:00:00',1,0,1),(16262,'22153','Macomb','MACOMB',NULL,'','United States','',0,0,231,'2016-10-17 11:16:33','1900-01-01 00:00:00',1,0,1),(16263,'12068','Macomer','MACOMER',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:34','1900-01-01 00:00:00',1,0,1),(16264,'19864','Macon','MACON',NULL,'','United States','',0,0,231,'2016-10-17 11:16:34','1900-01-01 00:00:00',1,0,1),(16265,'4381','Macon-sennece','MACON-SENNECE',NULL,'','France','',0,0,76,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16266,'5069','Macot Le Plagne','MACOT LE PLAGNE',NULL,'','France','',0,0,76,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16267,'41514','Macreddin Village','MACREDDIN VILLAGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16268,'10963','Macroom','MACROOM',NULL,'','Ireland','',0,0,105,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16269,'34552','Mactier','MACTIER',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16270,'38090','Macugnaga','MACUGNAGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16271,'30035','Macungie','MACUNGIE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:36','1900-01-01 00:00:00',1,0,1),(16272,'42191','Macuto','MACUTO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16273,'13109','Madaba','MADABA',NULL,'','Jordan','Madaba',0,0,111,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16274,'43113','Madalena','MADALENA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16275,'15575','Madang','MADANG',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16277,'38998','Madara','MADARA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16278,'39643','Maddaloni','MADDALONI',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16279,'14601','Made','MADE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16280,'29411','Madeira','MADEIRA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:37','1900-01-01 00:00:00',1,0,1),(16281,'37136','Madeira','MADEIRA',NULL,'','PORTUGAL','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16282,'25475','Madeira Park','MADEIRA PARK',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16283,'36565','Madeira-calheta','MADEIRA-CALHETA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16284,'36567','Madeira-canico','MADEIRA-CANICO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16285,'36569','Madeira-eira Do Serr','MADEIRA-EIRA DO SERR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16286,'36570','Madeira-funchal','MADEIRA-FUNCHAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16287,'36573','Madeira-garajau','MADEIRA-GARAJAU',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16288,'36575','Madeira-machico','MADEIRA-MACHICO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:38','1900-01-01 00:00:00',1,0,1),(16289,'36605','Madeira-porto Moniz','MADEIRA-PORTO MONIZ',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16290,'36590','Madeira-ribeira Brav','MADEIRA-RIBEIRA BRAV',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16291,'36591','Madeira-sao Vicente','MADEIRA-SAO VICENTE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16292,'7193','Madeley','MADELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16293,'27433','Madelia','MADELIA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:39','1900-01-01 00:00:00',1,0,1),(16294,'12069','Madesimo','MADESIMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16295,'10554','Madgaon','MADGAON',NULL,'','India','',0,0,101,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16296,'43850','Madhapur','MADHAPUR',NULL,'','India','',0,0,101,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16297,'10555','Madhyamgram','MADHYAMGRAM',NULL,'','India','',0,0,101,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16298,'40478','Madikeri','MADIKERI',NULL,'','India','Madikeri',17,0,101,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16299,'32577','Madikwe','MADIKWE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16300,'37943','Madill','MADILL',NULL,'','United States','',0,0,231,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16301,'36656','Madina','MADINA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16302,'42631','Madinat Makadi','MADINAT MAKADI',NULL,'','Egypt','',0,0,65,'2016-10-17 11:16:40','1900-01-01 00:00:00',1,0,1),(16303,'32732','Madison','MADISON',NULL,'','United States','',0,0,231,'2016-10-17 11:16:41','1900-01-01 00:00:00',1,0,1),(16304,'30776','Madisonville','MADISONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:45','1900-01-01 00:00:00',1,0,1),(16305,'23278','Madiswil','MADISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:46','1900-01-01 00:00:00',1,0,1),(16306,'10301','Madiun','MADIUN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:16:46','1900-01-01 00:00:00',1,0,1),(16307,'38732','Madivaru','MADIVARU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:16:46','1900-01-01 00:00:00',1,0,1),(16308,'38411','Madonna Dellacqua','MADONNA DELLACQUA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:46','1900-01-01 00:00:00',1,0,1),(16309,'44257','Madoogali','MADOOGALI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:16:47','1900-01-01 00:00:00',1,0,1),(16310,'6478','Madrague De La Ville','MADRAGUE DE LA VILLE',NULL,'','France','',0,0,76,'2016-10-17 11:16:47','1900-01-01 00:00:00',1,0,1),(16311,'29700','Madras','MADRAS',NULL,'','United States','',0,0,231,'2016-10-17 11:16:47','1900-01-01 00:00:00',1,0,1),(16312,'16005','Madre De Deus','MADRE DE DEUS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16313,'37891','Madremanya','MADREMANYA',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16314,'3000','Madrid','MADRID',NULL,'','Spain','Madrid',0,0,199,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16315,'40752','Madrona','MADRONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16316,'3642','Madronera','MADRONERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16317,'40864','Madumalai','MADUMALAI',NULL,'','India','',0,0,101,'2016-10-17 11:16:48','1900-01-01 00:00:00',1,0,1),(16318,'26259','Madura','MADURA',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:49','1900-01-01 00:00:00',1,0,1),(16319,'10674','Madurai','MADURAI',NULL,'','India','Madurai',18,0,101,'2016-10-17 11:16:49','1900-01-01 00:00:00',1,0,1),(16320,'13386','Maebashi','MAEBASHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:16:49','1900-01-01 00:00:00',1,0,1),(16321,'8507','Maentwrog','MAENTWROG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:49','1900-01-01 00:00:00',1,0,1),(16322,'40679','Maesycwmmer','MAESYCWMMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16323,'32319','Maewo','MAEWO',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16324,'20637','Maeystown','MAEYSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16325,'13628','Mafeteng','MAFETENG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16326,'4747','Maffliers','MAFFLIERS',NULL,'','France','',0,0,76,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16327,'37913','Maffrecourt','MAFFRECOURT',NULL,'','France','',0,0,76,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16328,'17451','Mafia Island','MAFIA ISLAND',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:16:50','1900-01-01 00:00:00',1,0,1),(16329,'32477','Mafikeng','MAFIKENG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16330,'44126','Mafra','MAFRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16331,'16362','Magadan','MAGADAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16332,'5937','Magalas','MAGALAS',NULL,'','France','',0,0,76,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16333,'32408','Magaliesberg','MAGALIESBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16334,'41611','Magaliesburg','MAGALIESBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16335,'15453','Magallanes Village','MAGALLANES VILLAGE',NULL,'','Philippines','',0,0,173,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16336,'2907','Magalluf','MAGALLUF',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16337,'43493','Magaluf','MAGALUF',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16338,'2689','Magaz De Pisuerga','MAGAZ DE PISUERGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16339,'26077','Magdalena','MAGDALENA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:16:51','1900-01-01 00:00:00',1,0,1),(16340,'28546','Magdalena','MAGDALENA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16341,'13952','Magdalena','MAGDALENA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16342,'15378','Magdalena Del Mar','MAGDALENA DEL MAR',NULL,'','Peru','',0,0,172,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16343,'2091','Magdeburg','MAGDEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16344,'27882','Magee','MAGEE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16345,'10296','Magelang','MAGELANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:16:52','1900-01-01 00:00:00',1,0,1),(16346,'42131','Magenta','MAGENTA',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16347,'12071','Magenta','MAGENTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16348,'5213','Magescq','MAGESCQ',NULL,'','France','',0,0,76,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16349,'33927','Maggie Valley','MAGGIE VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16350,'23279','Magglingen','MAGGLINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:16:53','1900-01-01 00:00:00',1,0,1),(16351,'36327','Maghera','MAGHERA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16352,'12072','Magione','MAGIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16353,'12073','Magliana','MAGLIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16354,'12074','Magliano In Toscana','MAGLIANO IN TOSCANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16355,'12075','Maglie','MAGLIE',NULL,'','Italy','',0,0,107,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16356,'33357','Magna','MAGNA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:54','1900-01-01 00:00:00',1,0,1),(16357,'38686','Magnac Laval','MAGNAC LAVAL',NULL,'','France','',0,0,76,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16358,'6110','Magnan','MAGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16359,'5103','Magnanville','MAGNANVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16360,'9689','Magnesia','MAGNESIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16361,'26260','Magnetic Island','MAGNETIC ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16362,'41394','Magnicourt-en-comte','MAGNICOURT-EN-COMTE',NULL,'','France','',0,0,76,'2016-10-17 11:16:55','1900-01-01 00:00:00',1,0,1),(16363,'20638','Magnificent Mile','MAGNIFICENT MILE',NULL,'','United States','',0,0,231,'2016-10-17 11:16:56','1900-01-01 00:00:00',1,0,1),(16364,'16314','Magnitogorsk','MAGNITOGORSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:16:56','1900-01-01 00:00:00',1,0,1),(16365,'18046','Magnolia','MAGNOLIA',NULL,'','United States','',0,0,231,'2016-10-17 11:16:56','1900-01-01 00:00:00',1,0,1),(16366,'5471','Magny','MAGNY',NULL,'','France','',0,0,76,'2016-10-17 11:16:57','1900-01-01 00:00:00',1,0,1),(16367,'5472','Magny-cours','MAGNY-COURS',NULL,'','France','',0,0,76,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16368,'5100','Magny-le-hongre','MAGNY-LE-HONGRE',NULL,'','France','',0,0,76,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16369,'4748','Magny-les-hameaux','MAGNY-LES-HAMEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16370,'22783','Magog','MAGOG',NULL,'','Canada','',0,0,39,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16371,'38153','Magoito','MAGOITO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16372,'42303','Magong','MAGONG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:16:58','1900-01-01 00:00:00',1,0,1),(16373,'8508','Magor','MAGOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16374,'23609','Maguanying','MAGUANYING',NULL,'','China','',0,0,46,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16375,'37169','Mahabaleshwar','MAHABALESHWAR',NULL,'','India','Mahabaleshwar',5,0,101,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16376,'1766','Mahabalipuram','MAHABALIPURAM',NULL,'','India','Mahabalipuram',18,0,101,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16377,'16162','Mahaena','MAHAENA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16378,'41886','Mahajanga','MAHAJANGA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16379,'37330','Mahanoro','MAHANORO',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16380,'30036','Mahanoy City','MAHANOY CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16381,'16120','Maharepa','MAHAREPA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16382,'38054','Mahdar Bin Usayyan','MAHDAR BIN USAYYAN',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16383,'17164','Mahdia','MAHDIA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16384,'41618','Mahe','MAHE',NULL,'','Seychelles','Mahe',0,0,188,'2016-10-17 11:16:59','1900-01-01 00:00:00',1,0,1),(16385,'14265','Mahebourg','MAHEBOURG',NULL,'','Mauritius','Mahebourg',0,0,139,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16386,'15056','Mahendranagar','MAHENDRANAGAR',NULL,'','Nepal','',0,0,153,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16387,'37878','Maheri','MAHERI',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16388,'39264','Maheshwar','MAHESHWAR',NULL,'','India','Maheshwar',15,0,101,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16389,'10432','Mahikpur','MAHIKPUR',NULL,'','India','',0,0,101,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16390,'790','Mahlow','MAHLOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16391,'791','Mahlsdorf','MAHLSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16392,'36628','Mahmudia','MAHMUDIA',NULL,'','Romania','',0,0,179,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16393,'27435','Mahnomen','MAHNOMEN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:00','1900-01-01 00:00:00',1,0,1),(16394,'25890','Maho Beach','MAHO BEACH',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16395,'2908','Mahon','MAHON',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16396,'25730','Mahone Bay','MAHONE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16397,'20069','Mahukona','MAHUKONA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16398,'28328','Mahwah','MAHWAH',NULL,'','United States','',0,0,231,'2016-10-17 11:17:01','1900-01-01 00:00:00',1,0,1),(16399,'37462','Maia','MAIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16400,'13463','Maiana','MAIANA',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16401,'7194','Maida Vale-st. John\'s Wood','MAIDA VALE-ST. JOHN\'S WOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16402,'1452','Maidenhead','MAIDENHEAD',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16403,'26261','Maidstone','MAIDSTONE',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16404,'8510','Maidstone','MAIDSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16405,'23280','Maienfeld','MAIENFELD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16406,'40347','Maierà','MAIERÀ',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:02','1900-01-01 00:00:00',1,0,1),(16407,'20070','Maili','MAILI',NULL,'','United States','',0,0,231,'2016-10-17 11:17:03','1900-01-01 00:00:00',1,0,1),(16408,'39081','Maillen','MAILLEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:17:03','1900-01-01 00:00:00',1,0,1),(16409,'1019','Maine Coast - Me','MAINE COAST - ME',NULL,'','United States','',0,0,231,'2016-10-17 11:17:03','1900-01-01 00:00:00',1,0,1),(16410,'4382','Maine-et-loire','MAINE-ET-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:17:03','1900-01-01 00:00:00',1,0,1),(16411,'19469','Maingate East','MAINGATE EAST',NULL,'','United States','',0,0,231,'2016-10-17 11:17:04','1900-01-01 00:00:00',1,0,1),(16412,'38142','Mainstream','MAINSTREAM',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:04','1900-01-01 00:00:00',1,0,1),(16413,'451','Maintal','MAINTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:04','1900-01-01 00:00:00',1,0,1),(16414,'38824','Maintenon','MAINTENON',NULL,'','France','',0,0,76,'2016-10-17 11:17:04','1900-01-01 00:00:00',1,0,1),(16415,'38422','Maintirano','MAINTIRANO',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16416,'642','Mainz','MAINZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16417,'43100','Mainz-kastel','MAINZ-KASTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16418,'24142','Maio','MAIO',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16419,'12076','Maiori','MAIORI',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16420,'42026','Maipu','MAIPU',NULL,'','Argentina','',0,0,10,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16421,'23546','Maipu','MAIPU',NULL,'','Chile','',0,0,45,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16422,'26048','Maipú','MAIPÚ',NULL,'','Argentina','',0,0,10,'2016-10-17 11:17:05','1900-01-01 00:00:00',1,0,1),(16423,'32195','Maiquetia','MAIQUETIA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16424,'3259','Mairena Del Aljarafe','MAIRENA DEL ALJARAFE',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16425,'38099','Mairiporã','MAIRIPORÃ',NULL,'','Brazil','',0,0,30,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16426,'37636','Maishofen','MAISHOFEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16427,'39288','Maisod','MAISOD',NULL,'','France','',0,0,76,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16428,'5859','Maisons-alfort','MAISONS-ALFORT',NULL,'','France','',0,0,76,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16429,'4383','Maisons-laffitte','MAISONS-LAFFITTE',NULL,'','France','',0,0,76,'2016-10-17 11:17:06','1900-01-01 00:00:00',1,0,1),(16430,'4384','Maisons-lès-chaource','MAISONS-LÈS-CHAOURCE',NULL,'','France','',0,0,76,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16431,'15127','Maitai Bay','MAITAI BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16432,'23523','Maitencillo','MAITENCILLO',NULL,'','Chile','',0,0,45,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16433,'19471','Maitland','MAITLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16434,'5739','Maizieres-la-grande-paroisse','MAIZIERES-LA-GRANDE-PAROISSE',NULL,'','France','',0,0,76,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16435,'6045','Maizieres-les-metz','MAIZIERES-LES-METZ',NULL,'','France','',0,0,76,'2016-10-17 11:17:07','1900-01-01 00:00:00',1,0,1),(16436,'3001','Majadahonda','MAJADAHONDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16437,'16603','Majcichov','MAJCICHOV',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16438,'14159','Majkin','MAJKIN',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16439,'1033','Majorca','MAJORCA',NULL,'','SPAIN','',0,0,199,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16440,'35007','Majorca-cala Blava','MAJORCA-CALA BLAVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16441,'3981','Majstad','MAJSTAD',NULL,'','Finland','',0,0,75,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16442,'37597','Majunga','MAJUNGA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16443,'14143','Majuro','MAJURO',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16444,'24052','Makabana','MAKABANA',NULL,'','Congo','',0,0,51,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16445,'20071','Makaha','MAKAHA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:08','1900-01-01 00:00:00',1,0,1),(16446,'20072','Makakilo City','MAKAKILO CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:17:09','1900-01-01 00:00:00',1,0,1),(16447,'24026','Makala','MAKALA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:17:09','1900-01-01 00:00:00',1,0,1),(16448,'20073','Makalawena','MAKALAWENA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:09','1900-01-01 00:00:00',1,0,1),(16449,'10358','Makale','MAKALE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:09','1900-01-01 00:00:00',1,0,1),(16450,'3866','Makale','MAKALE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16451,'20640','Makanda','MAKANDA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16452,'20074','Makapala','MAKAPALA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16453,'10021','Makarska','MAKARSKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16454,'10359','Makassar','MAKASSAR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16455,'15530','Makati','MAKATI',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:10','1900-01-01 00:00:00',1,0,1),(16456,'20075','Makawao','MAKAWAO',NULL,'','United States','',0,0,231,'2016-10-17 11:17:11','1900-01-01 00:00:00',1,0,1),(16457,'16121','Makemo','MAKEMO',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:17:11','1900-01-01 00:00:00',1,0,1),(16458,'20076','Makena','MAKENA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:11','1900-01-01 00:00:00',1,0,1),(16459,'7195','Makeney','MAKENEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:11','1900-01-01 00:00:00',1,0,1),(16460,'16319','Makhachkala','MAKHACHKALA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16461,'13464','Makin','MAKIN',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16462,'16472','Makino','MAKINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16463,'36655','Makkah','MAKKAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16464,'25665','Makkovik','MAKKOVIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16465,'6850','Makokou','MAKOKOU',NULL,'','Gabon','',0,0,80,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16466,'24053','Makoua','MAKOUA',NULL,'','Congo','',0,0,51,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16467,'43063','Makrinitsa','MAKRINITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16468,'9691','Makriyialos','MAKRIYIALOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16469,'9761','Makryammos','MAKRYAMMOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16470,'13288','Makuhari','MAKUHARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16471,'17403','Makung','MAKUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16472,'13748','Makunufushi','MAKUNUFUSHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16473,'24239','Mal Pais','MAL PAIS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:17:12','1900-01-01 00:00:00',1,0,1),(16474,'32409','Mala Mala','MALA MALA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16475,'15517','Malabang','MALABANG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16476,'37740','Malabar Hill','MALABAR HILL',NULL,'','India','',0,0,101,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16477,'9394','Malabo','MALABO',NULL,'','Equatorial Guinea','',0,0,67,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16478,'15531','Malabon','MALABON',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16479,'14357','Malacca','MALACCA',NULL,'','Malaysia','Malacca',0,0,132,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16480,'3260','Malaga','MALAGA',NULL,'','Spain','Malaga',0,0,199,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16481,'35099','Malaga-torre Del Mar','MALAGA-TORRE DEL MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16482,'25476','Malahat','MALAHAT',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16483,'42286','Malakal','MALAKAL',NULL,'','Palau','',0,0,167,'2016-10-17 11:17:13','1900-01-01 00:00:00',1,0,1),(16484,'16370','Malakhovka','MALAKHOVKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16485,'4749','Malakoff','MALAKOFF',NULL,'','France','',0,0,76,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16486,'30777','Malakoff','MALAKOFF',NULL,'','United States','',0,0,231,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16487,'12077','Malalbergo','MALALBERGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16488,'12893','Malamocco','MALAMOCCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16489,'38316','Malanda','MALANDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:14','1900-01-01 00:00:00',1,0,1),(16490,'10302','Malang','MALANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16491,'25859','Malange','MALANGE',NULL,'','Angola','',0,0,6,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16492,'3','Malargue','MALARGUE',NULL,'','Argentina','',0,0,10,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16493,'16834','Malarhojden','MALARHOJDEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16494,'37806','Malataverne','MALATAVERNE',NULL,'','France','',0,0,76,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16495,'39646','Malatiny','MALATINY',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16496,'17332','Malatya','MALATYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16497,'15478','Malay','MALAY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16498,'4385','Malay Le Grand','MALAY LE GRAND',NULL,'','France','',0,0,76,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16499,'16442','Malaya Okhta','MALAYA OKHTA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16500,'44046','Malbork','MALBORK',NULL,'','Poland','',0,0,174,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16501,'13588','Malbun','MALBUN',NULL,'','Liechtenstein','',0,0,124,'2016-10-17 11:17:15','1900-01-01 00:00:00',1,0,1),(16502,'12078','Malcesine','MALCESINE',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:16','1900-01-01 00:00:00',1,0,1),(16503,'792','Malchow','MALCHOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:16','1900-01-01 00:00:00',1,0,1),(16504,'21424','Malden','MALDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:16','1900-01-01 00:00:00',1,0,1),(16505,'13749','Maldives','MALDIVES',NULL,'','Maldives','Maldives',34,0,133,'2016-10-17 11:17:16','1900-01-01 00:00:00',1,0,1),(16506,'8511','Maldon','MALDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16507,'17533','Maldonado','MALDONADO',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16508,'13773','Male','MALE',NULL,'','Maldives','Male',0,0,133,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16509,'32578','Malelane','MALELANE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16510,'9692','Maleme','MALEME',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16511,'724','Malente','MALENTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16512,'38343','Maleny','MALENY',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16513,'12080','Malfa','MALFA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16514,'3560','Malgrat De Mar','MALGRAT DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:17','1900-01-01 00:00:00',1,0,1),(16515,'10022','Mali Losinj','MALI LOSINJ',NULL,'','Croatia','',0,0,55,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16516,'3128','Maliano','MALIANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16517,'18645','Malibu','MALIBU',NULL,'','United States','',0,0,231,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16518,'39824','Malin','MALIN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16519,'13441','Malindi','MALINDI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16520,'10023','Malinska','MALINSKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16521,'39283','Malito','MALITO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:18','1900-01-01 00:00:00',1,0,1),(16522,'26519','Mallacoota','MALLACOOTA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16523,'8512','Mallaig','MALLAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16524,'6479','Mallemort','MALLEMORT',NULL,'','France','',0,0,76,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16525,'2347','Malling','MALLING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16526,'27079','Mallnitz','MALLNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:17:19','1900-01-01 00:00:00',1,0,1),(16527,'34985','Mallorca-alaro','MALLORCA-ALARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16528,'34982','Mallorca-alcudia','MALLORCA-ALCUDIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16529,'34986','Mallorca-andratx','MALLORCA-ANDRATX',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16530,'35017','Mallorca-cala Bona','MALLORCA-CALA BONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16531,'35009','Mallorca-calas De Ma','MALLORCA-CALAS DE MA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:20','1900-01-01 00:00:00',1,0,1),(16532,'35027','Mallorca-can Pastill','MALLORCA-CAN PASTILL',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16533,'36116','Mallorca-estellencs','MALLORCA-ESTELLENCS',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16534,'36132','Mallorca-illetas','MALLORCA-ILLETAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16535,'36153','Mallorca-llucmajor','MALLORCA-LLUCMAJOR',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16536,'36161','Mallorca-magalluf','MALLORCA-MAGALLUF',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16537,'36169','Mallorca-manacor','MALLORCA-MANACOR',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16538,'36180','Mallorca-paguera','MALLORCA-PAGUERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16539,'36192','Mallorca-palma','MALLORCA-PALMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:21','1900-01-01 00:00:00',1,0,1),(16540,'36189','Mallorca-playa De Pa','MALLORCA-PLAYA DE PA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16541,'36193','Mallorca-portals Nou','MALLORCA-PORTALS NOU',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16542,'36195','Mallorca-porto Crist','MALLORCA-PORTO CRIST',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16543,'35063','Mallorca-sa Coma','MALLORCA-SA COMA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16544,'35079','Mallorca-santa Maria','MALLORCA-SANTA MARIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16545,'35072','Mallorca-s\'illot','MALLORCA-S\'ILLOT',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16546,'10811','Mallow','MALLOW',NULL,'','Ireland','',0,0,105,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16547,'3982','Malm','MALM',NULL,'','Finland','',0,0,75,'2016-10-17 11:17:22','1900-01-01 00:00:00',1,0,1),(16548,'24676','Malmedy','MALMEDY',NULL,'','Belgium','',0,0,21,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16549,'8513','Malmesbury','MALMESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16550,'16871','Malmo','MALMO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16551,'14160','Maloelap','MALOELAP',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16552,'23281','Maloja','MALOJA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16553,'4061','Malolo Island','MALOLO ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16554,'36211','Malololailai','MALOLOLAILAI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16555,'28933','Malone','MALONE',NULL,'','United States','',0,0,231,'2016-10-17 11:17:23','1900-01-01 00:00:00',1,0,1),(16556,'14808','Maloy','MALOY',NULL,'','Norway','',0,0,164,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16557,'36166','Malpartida D.plasenc','MALPARTIDA D.PLASENC',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16558,'8514','Malpas','MALPAS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16559,'38225','Malpe','MALPE',NULL,'','India','',0,0,101,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16560,'1559','Malpensa','MALPENSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:24','1900-01-01 00:00:00',1,0,1),(16561,'43208','Malpica De Bergantinos','MALPICA DE BERGANTINOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16562,'28934','Malta','MALTA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16563,'14186','Malta','MALTA',NULL,'','Malta','',0,0,135,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16564,'17239','Maltepe','MALTEPE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16565,'8515','Malton','MALTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:25','1900-01-01 00:00:00',1,0,1),(16566,'34553','Malton','MALTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16567,'23905','Malu','MALU',NULL,'','China','',0,0,46,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16568,'42433','Maluku Islands','MALUKU ISLANDS',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16569,'40146','Malung','MALUNG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16570,'42945','Malvar','MALVAR',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16571,'18047','Malvern','MALVERN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:26','1900-01-01 00:00:00',1,0,1),(16572,'26520','Malvern','MALVERN',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16573,'32521','Malvern','MALVERN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16574,'14992','Malvik','MALVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16575,'36629','Mamaia','MAMAIA',NULL,'','Romania','',0,0,179,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16576,'10675','Mamallapuram','MAMALLAPURAM',NULL,'','India','',0,0,101,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16577,'36508','Mamanuca Group','MAMANUCA GROUP',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16578,'4062','Mamanuca Islands','MAMANUCA ISLANDS',NULL,'','Fiji','',0,0,74,'2016-10-17 11:17:27','1900-01-01 00:00:00',1,0,1),(16579,'28935','Mamaroneck','MAMARONECK',NULL,'','United States','',0,0,231,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16580,'15522','Mamburao','MAMBURAO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16581,'24015','Mamfe','MAMFE',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16582,'13086','Mammee Bay','MAMMEE BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16583,'33687','Mammoth Cave National Park','MAMMOTH CAVE NATIONAL PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:17:28','1900-01-01 00:00:00',1,0,1),(16584,'14397','Mamoudzou','MAMOUDZOU',NULL,'','Mayotte','',0,0,140,'2016-10-17 11:17:30','1900-01-01 00:00:00',1,0,1),(16585,'10180','Mampang Prapatan','MAMPANG PRAPATAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:30','1900-01-01 00:00:00',1,0,1),(16586,'10360','Mamuju','MAMUJU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:30','1900-01-01 00:00:00',1,0,1),(16587,'4063','Mana Island','MANA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:17:30','1900-01-01 00:00:00',1,0,1),(16588,'10370','Manado','MANADO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:31','1900-01-01 00:00:00',1,0,1),(16589,'14446','Managua','MANAGUA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:17:31','1900-01-01 00:00:00',1,0,1),(16590,'28329','Manahawkin','MANAHAWKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:31','1900-01-01 00:00:00',1,0,1),(16591,'39446','Manakara','MANAKARA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16592,'19472','Manalapan','MANALAPAN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16593,'10556','Manali','MANALI',NULL,'','India','Honeymoon Manali | Manali Holiday Packages | Trip ',1,0,101,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16594,'24821','Manama','MANAMA',NULL,'','Bahrain','',0,0,17,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16595,'37699','Mananara','MANANARA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16596,'15040','Manang','MANANG',NULL,'','Nepal','',0,0,153,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16597,'40607','Mananjary','MANANJARY',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16598,'39911','Manapouri','MANAPOURI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16599,'12081','Manarola','MANAROLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:32','1900-01-01 00:00:00',1,0,1),(16600,'28331','Manasquan','MANASQUAN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:33','1900-01-01 00:00:00',1,0,1),(16601,'31160','Manassas','MANASSAS',NULL,'','United States','',0,0,231,'2016-10-17 11:17:33','1900-01-01 00:00:00',1,0,1),(16602,'8516','Manaton','MANATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16603,'25030','Manaus','MANAUS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16604,'17189','Manavgat','MANAVGAT',NULL,'','Turkey','',0,0,222,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16605,'39696','Manawa','MANAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16606,'37392','Mancelona','MANCELONA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:34','1900-01-01 00:00:00',1,0,1),(16607,'33688','Manchester','MANCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:17:35','1900-01-01 00:00:00',1,0,1),(16608,'8517','Manchester','MANCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:36','1900-01-01 00:00:00',1,0,1),(16609,'252','Manching','MANCHING',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16610,'12082','Manciano','MANCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16611,'33487','Mancos','MANCOS',NULL,'','United States','',0,0,231,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16612,'38253','Mandabe','MANDABE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16613,'14776','Mandal','MANDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16614,'36392','Mandalay','MANDALAY',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:17:39','1900-01-01 00:00:00',1,0,1),(16615,'34233','Mandalong','MANDALONG',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16616,'15532','Mandaluyong','MANDALUYONG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16617,'28071','Mandan','MANDAN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16619,'38460','Mandawa','MANDAWA',NULL,'','India','Mandawa',2,0,101,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16620,'42338','Mandela','MANDELA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16621,'4846','Mandelieu-la-napoule','MANDELIEU-LA-NAPOULE',NULL,'','France','',0,0,76,'2016-10-17 11:17:40','1900-01-01 00:00:00',1,0,1),(16622,'24677','Manderfeld','MANDERFELD',NULL,'','Belgium','',0,0,21,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16623,'13082','Mandeville','MANDEVILLE',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16624,'21226','Mandeville','MANDEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16625,'40608','Mandjala','MANDJALA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16626,'37940','Mandraki','MANDRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16627,'38413','Mandritsara','MANDRITSARA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16628,'40865','Mandu','MANDU',NULL,'','India','Mandu',15,0,101,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16629,'26598','Mandurah','MANDURAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16630,'38694','Manduria','MANDURIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:41','1900-01-01 00:00:00',1,0,1),(16631,'11274','Manerba Del Garda','MANERBA DEL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16632,'37640','Manerbio','MANERBIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16633,'10557','Manesar','MANESAR',NULL,'','India','Manesar ',20,0,101,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16634,'12083','Manfredonia','MANFREDONIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16635,'24068','Mangaia','MANGAIA',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16636,'42624','Mangalia','MANGALIA',NULL,'','Romania','',0,0,179,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16637,'37161','Mangalore','MANGALORE',NULL,'','India','Mangalore',17,0,101,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16639,'25136','Mangaratiba','MANGARATIBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16640,'16122','Mangareva','MANGAREVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16641,'15214','Mangatawhiri','MANGATAWHIRI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16642,'15215','Mangere','MANGERE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:42','1900-01-01 00:00:00',1,0,1),(16643,'10243','Manggis','MANGGIS',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16644,'9892','Mangilao','MANGILAO',NULL,'','Guam','',0,0,90,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16645,'14278','Mangochi','MANGOCHI',NULL,'','Malawi','',0,0,131,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16646,'10244','Mangole','MANGOLE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16647,'37308','Mangonui','MANGONUI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16648,'24881','Mangrove Cay','MANGROVE CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16649,'10245','Mangsit','MANGSIT',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16650,'16084','Mangualde','MANGUALDE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16651,'43657','Manguri','MANGURI',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16652,'37493','Manguzi','MANGUZI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16653,'28937','Manhasset','MANHASSET',NULL,'','United States','',0,0,231,'2016-10-17 11:17:43','1900-01-01 00:00:00',1,0,1),(16654,'28938','Manhattan','MANHATTAN',NULL,'','United States','',0,0,231,'2016-10-17 11:17:44','1900-01-01 00:00:00',1,0,1),(16655,'30038','Manheim','MANHEIM',NULL,'','United States','',0,0,231,'2016-10-17 11:17:45','1900-01-01 00:00:00',1,0,1),(16656,'6661','Manigod','MANIGOD',NULL,'','France','',0,0,76,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16657,'16123','Manihi','MANIHI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16658,'24069','Manihiki Island','MANIHIKI ISLAND',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16659,'15553','Manila','MANILA',NULL,'','Philippines','Manila',0,0,173,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16660,'3261','Manilva','MANILVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16661,'26376','Maningrida','MANINGRIDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16662,'37166','Manipal','MANIPAL',NULL,'','INDIA','',17,0,101,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16663,'5820','Maniquerville','MANIQUERVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16664,'17334','Manisa','MANISA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:17:46','1900-01-01 00:00:00',1,0,1),(16665,'3762','Manises','MANISES',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:47','1900-01-01 00:00:00',1,0,1),(16666,'22155','Manistee','MANISTEE',NULL,'','United States','',0,0,231,'2016-10-17 11:17:47','1900-01-01 00:00:00',1,0,1),(16667,'22156','Manistique','MANISTIQUE',NULL,'','United States','',0,0,231,'2016-10-17 11:17:47','1900-01-01 00:00:00',1,0,1),(16668,'33488','Manitou Springs','MANITOU SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16669,'34554','Manitouwadge','MANITOUWADGE',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16670,'34555','Manitowaning','MANITOWANING',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16671,'31804','Manitowoc','MANITOWOC',NULL,'','United States','',0,0,231,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16672,'37751','Maniwaki','MANIWAKI',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16673,'24101','Manizales','MANIZALES',NULL,'','Colombia','',0,0,49,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16674,'38929','Manja','MANJA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:17:48','1900-01-01 00:00:00',1,0,1),(16675,'26599','Manjimup','MANJIMUP',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:49','1900-01-01 00:00:00',1,0,1),(16676,'17404','Manjou','MANJOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:17:49','1900-01-01 00:00:00',1,0,1),(16677,'21091','Mankato','MANKATO',NULL,'','United States','',0,0,231,'2016-10-17 11:17:49','1900-01-01 00:00:00',1,0,1),(16678,'17694','Manley Hot Springs','MANLEY HOT SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:17:50','1900-01-01 00:00:00',1,0,1),(16679,'3561','Manlleu','MANLLEU',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:50','1900-01-01 00:00:00',1,0,1),(16680,'34234','Manly','MANLY',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:50','1900-01-01 00:00:00',1,0,1),(16681,'39317','Manneville-la-raoult','MANNEVILLE-LA-RAOULT',NULL,'','France','',0,0,76,'2016-10-17 11:17:50','1900-01-01 00:00:00',1,0,1),(16682,'22591','Mannheim','MANNHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16683,'30368','Manning','MANNING',NULL,'','United States','',0,0,231,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16684,'43666','Mannum','MANNUM',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16685,'12084','Manocalzati','MANOCALZATI',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16686,'17695','Manokotak','MANOKOTAK',NULL,'','United States','',0,0,231,'2016-10-17 11:17:51','1900-01-01 00:00:00',1,0,1),(16687,'10312','Manokwari','MANOKWARI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16688,'43725','Manoora','MANOORA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16689,'6480','Manosque','MANOSQUE',NULL,'','France','',0,0,76,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16690,'2938','Manresa','MANRESA',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16691,'32651','Mansa','MANSA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16692,'1667','Mansehra','MANSEHRA',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:17:52','1900-01-01 00:00:00',1,0,1),(16693,'30779','Mansfield','MANSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:17:53','1900-01-01 00:00:00',1,0,1),(16694,'26913','Mansfield','MANSFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:53','1900-01-01 00:00:00',1,0,1),(16695,'8518','Mansfield','MANSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:54','1900-01-01 00:00:00',1,0,1),(16696,'31547','Manson','MANSON',NULL,'','United States','',0,0,231,'2016-10-17 11:17:55','1900-01-01 00:00:00',1,0,1),(16697,'22785','Mansonville','MANSONVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:17:55','1900-01-01 00:00:00',1,0,1),(16698,'8519','Manston','MANSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:17:55','1900-01-01 00:00:00',1,0,1),(16699,'2403','Manta','MANTA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:17:55','1900-01-01 00:00:00',1,0,1),(16700,'41914','Manta Rota','MANTA ROTA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16701,'18650','Manteca','MANTECA',NULL,'','United States','',0,0,231,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16702,'15969','Manteigas','MANTEIGAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16703,'11275','Mantello','MANTELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16704,'20641','Manteno','MANTENO',NULL,'','United States','',0,0,231,'2016-10-17 11:17:56','1900-01-01 00:00:00',1,0,1),(16705,'33928','Manteo','MANTEO',NULL,'','United States','',0,0,231,'2016-10-17 11:17:57','1900-01-01 00:00:00',1,0,1),(16706,'4750','Mantes-la-jolie','MANTES-LA-JOLIE',NULL,'','France','',0,0,76,'2016-10-17 11:17:57','1900-01-01 00:00:00',1,0,1),(16707,'33358','Manti','MANTI',NULL,'','United States','',0,0,231,'2016-10-17 11:17:57','1900-01-01 00:00:00',1,0,1),(16708,'12085','Mantova','MANTOVA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16709,'5779','Mantry','MANTRY',NULL,'','France','',0,0,76,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16710,'43130','Mantua','MANTUA',NULL,'','Italy','',0,0,107,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16711,'3939','Mantyharju','MANTYHARJU',NULL,'','Finland','',0,0,75,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16712,'24176','Manuel Antonio','MANUEL ANTONIO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:17:58','1900-01-01 00:00:00',1,0,1),(16713,'43726','Manunda','MANUNDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16714,'40866','Manvar','MANVAR',NULL,'','India','',0,0,101,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16715,'40594','Manvel','MANVEL',NULL,'','United States','',0,0,231,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16716,'21228','Many','MANY',NULL,'','United States','',0,0,231,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16717,'41612','Manyeleti Game Reserve','MANYELETI GAME RESERVE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16718,'3413','Manzanares','MANZANARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:17:59','1900-01-01 00:00:00',1,0,1),(16719,'11277','Manzania','MANZANIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16720,'32205','Manzanillo','MANZANILLO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16721,'13968','Manzanillo','MANZANILLO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16722,'29702','Manzanita','MANZANITA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16723,'37835','Manziana','MANZIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16724,'16910','Manzini','MANZINI',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:18:00','1900-01-01 00:00:00',1,0,1),(16725,'2474','Maó','MAÓ',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16726,'23970','Maoming','MAOMING',NULL,'','China','',0,0,46,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16727,'34885','Maoxian','MAOXIAN',NULL,'','China','',0,0,46,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16728,'22157','Maple City','MAPLE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16729,'22949','Maple Creek','MAPLE CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:01','1900-01-01 00:00:00',1,0,1),(16730,'39406','Mapleton','MAPLETON',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:02','1900-01-01 00:00:00',1,0,1),(16731,'30040','Mapleton','MAPLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:03','1900-01-01 00:00:00',1,0,1),(16732,'27440','Maplewood','MAPLEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:18:03','1900-01-01 00:00:00',1,0,1),(16733,'13500','Mapo-dong','MAPO-DONG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16734,'11278','Mappano','MAPPANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16735,'39127','Mapua','MAPUA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16736,'10434','Mapusa','MAPUSA',NULL,'','India','Mapusa',11,0,101,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16737,'14221','Maputo','MAPUTO',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16738,'20240','Maquoketa','MAQUOKETA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:04','1900-01-01 00:00:00',1,0,1),(16739,'25103','Maraba','MARABA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16740,'32215','Maracaibo','MARACAIBO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16741,'32185','Maracay','MARACAY',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16742,'35955','Maragogi','MARAGOGI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16743,'25023','Maragoji','MARAGOJI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16744,'43025','Marahau','MARAHAU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16745,'4387','Marais','MARAIS',NULL,'','France','',0,0,76,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16746,'32579','Maraisburg','MARAISBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16747,'13465','Marakei','MARAKEI',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16748,'41613','Marakele National Park','MARAKELE NATIONAL PARK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:18:05','1900-01-01 00:00:00',1,0,1),(16749,'18161','Marana','MARANA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16750,'42916','Marananga','MARANANGA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16751,'12086','Maranello','MARANELLO',NULL,'','Italy','Maranello',0,0,107,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16752,'42843','Marang','MARANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16753,'6348','Marans','MARANS',NULL,'','France','',0,0,76,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16754,'1636','Marao','MARAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16755,'40867','Mararikulam','MARARIKULAM',NULL,'','India','',0,0,101,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16756,'12087','Maratea','MARATEA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:06','1900-01-01 00:00:00',1,0,1),(16757,'39389','Marathokampos','MARATHOKAMPOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:07','1900-01-01 00:00:00',1,0,1),(16758,'30780','Marathon','MARATHON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:07','1900-01-01 00:00:00',1,0,1),(16759,'35263','Marathon','MARATHON',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:07','1900-01-01 00:00:00',1,0,1),(16760,'34556','Marathon','MARATHON',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16761,'35266','Marathonas','MARATHONAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16762,'35954','Marau','MARAU',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16763,'16550','Marau','MARAU',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16764,'17130','Maraval','MARAVAL',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16765,'15554','Marawi','MARAWI',NULL,'','Philippines','',0,0,173,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16766,'35847','Marawila','MARAWILA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16767,'8520','Marazion','MARAZION',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16768,'3262','Marbella','MARBELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16769,'24218','Marbella','MARBELLA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:18:08','1900-01-01 00:00:00',1,0,1),(16770,'26600','Marble Bar','MARBLE BAR',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:09','1900-01-01 00:00:00',1,0,1),(16771,'21427','Marblehead','MARBLEHEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:18:10','1900-01-01 00:00:00',1,0,1),(16772,'32116','Marbleton','MARBLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:10','1900-01-01 00:00:00',1,0,1),(16773,'73','Marburg','MARBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:10','1900-01-01 00:00:00',1,0,1),(16774,'27707','Marceline','MARCELINE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:11','1900-01-01 00:00:00',1,0,1),(16775,'37589','Marcenay','MARCENAY',NULL,'','France','',0,0,76,'2016-10-17 11:18:11','1900-01-01 00:00:00',1,0,1),(16776,'4388','Marcey-les-grèves','MARCEY-LES-GRÈVES',NULL,'','France','',0,0,76,'2016-10-17 11:18:11','1900-01-01 00:00:00',1,0,1),(16777,'5780','Marchaux','MARCHAUX',NULL,'','France','',0,0,76,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16778,'40970','Marche','MARCHE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16779,'38597','Marchula','MARCHULA',NULL,'','India','',0,0,101,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16780,'8521','Marchwiel','MARCHWIEL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16781,'4922','Marciac','MARCIAC',NULL,'','France','',0,0,76,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16782,'11280','Marciaga','MARCIAGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16783,'12088','Marcialla','MARCIALLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:12','1900-01-01 00:00:00',1,0,1),(16784,'12089','Marciana','MARCIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16785,'12091','Marcianise','MARCIANISE',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16786,'37441','Marcilla','MARCILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16787,'15641','Marcinowice','MARCINOWICE',NULL,'','Poland','',0,0,174,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16788,'19474','Marco Island','MARCO ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:18:13','1900-01-01 00:00:00',1,0,1),(16789,'12894','Marcon','MARCON',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16790,'42230','Marcoola','MARCOOLA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16791,'4751','Marcoussis','MARCOUSSIS',NULL,'','France','',0,0,76,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16792,'6182','Marcq-en-baroeul','MARCQ-EN-BAROEUL',NULL,'','France','',0,0,76,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16793,'4389','Marcy L Etoile','MARCY L ETOILE',NULL,'','France','',0,0,76,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16794,'17335','Mardin','MARDIN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16795,'14424','Mare','MARE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16796,'32351','Mareb','MAREB',NULL,'','Yemen','',0,0,240,'2016-10-17 11:18:14','1900-01-01 00:00:00',1,0,1),(16797,'11281','Marebbe','MAREBBE',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16798,'42002','Marebello Di Rimini','MAREBELLO DI RIMINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16799,'42761','Marechal Deodoro','MARECHAL DEODORO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16800,'26418','Mareeba','MAREEBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16801,'20241','Marengo','MARENGO',NULL,'','United States','',0,0,231,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16802,'6349','Marennes (Poitou-charentes)','MARENNES (POITOU-CHARENTES)',NULL,'','France','',0,0,76,'2016-10-17 11:18:15','1900-01-01 00:00:00',1,0,1),(16803,'42642','Maresias','MARESIAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16804,'5860','Mareuil-les-meaux','MAREUIL-LES-MEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16805,'30783','Marfa','MARFA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16806,'14187','Marfa','MARFA',NULL,'','Malta','',0,0,135,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16807,'25731','Margaree','MARGAREE',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:16','1900-01-01 00:00:00',1,0,1),(16808,'26960','Margaret River','MARGARET RIVER',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:17','1900-01-01 00:00:00',1,0,1),(16809,'27004','Margareten','MARGARETEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:17','1900-01-01 00:00:00',1,0,1),(16810,'42965','Margaretting','MARGARETTING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:17','1900-01-01 00:00:00',1,0,1),(16811,'28939','Margaretville','MARGARETVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:17','1900-01-01 00:00:00',1,0,1),(16812,'8522','Margate','MARGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16813,'5214','Margaux','MARGAUX',NULL,'','France','',0,0,76,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16814,'12895','Marghera','MARGHERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16815,'12092','Margherita Di Savoia','MARGHERITA DI SAVOIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16816,'5010','Margny Les Compiegne','MARGNY LES COMPIEGNE',NULL,'','France','',0,0,76,'2016-10-17 11:18:18','1900-01-01 00:00:00',1,0,1),(16817,'37799','Margon','MARGON',NULL,'','France','',0,0,76,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16818,'22786','Maria','MARIA',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16819,'24389','Maria Alm','MARIA ALM',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16820,'643','Maria Laach','MARIA LAACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16821,'27005','Mariahilf','MARIAHILF',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16822,'35569','Marian D\'agro','MARIAN D\'AGRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:19','1900-01-01 00:00:00',1,0,1),(16823,'7200','Marianglas','MARIANGLAS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16824,'39176','Marianka','MARIANKA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16825,'18048','Marianna','MARIANNA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16826,'24317','Marianske Lazne','MARIANSKE LAZNE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16827,'24427','Mariatrost','MARIATROST',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:20','1900-01-01 00:00:00',1,0,1),(16828,'39557','Mariaville','MARIAVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16829,'24428','Mariazell','MARIAZELL',NULL,'','Austria','',0,0,14,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16830,'37110','Marib','MARIB',NULL,'','Yemen','',0,0,240,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16831,'2303','Maribo','MARIBO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16832,'16642','Maribor','MARIBOR',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16833,'15758','Maricao','MARICAO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16834,'18163','Maricopa','MARICOPA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:21','1900-01-01 00:00:00',1,0,1),(16835,'16761','Marieberg','MARIEBERG',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16836,'16776','Mariefred','MARIEFRED',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16837,'9366','Marie-galante','MARIE-GALANTE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16838,'3910','Mariehamn','MARIEHAMN',NULL,'','Finland','',0,0,75,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16839,'16872','Marieholm','MARIEHOLM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16840,'40577','Marienberg','MARIENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16841,'453','Mariendorf','MARIENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16842,'725','Marienfelde','MARIENFELDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:22','1900-01-01 00:00:00',1,0,1),(16843,'533','Marienheide','MARIENHEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16844,'36443','Mariental','MARIENTAL',NULL,'','Namibia','',0,0,151,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16845,'30041','Marienville','MARIENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16846,'16888','Mariestad','MARIESTAD',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16847,'32924','Marietta','MARIETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:23','1900-01-01 00:00:00',1,0,1),(16848,'12093','Marigliano','MARIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:24','1900-01-01 00:00:00',1,0,1),(16849,'6481','Marignane','MARIGNANE',NULL,'','France','',0,0,76,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16850,'9384','Marigot','MARIGOT',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16851,'2103','Marigot','MARIGOT',NULL,'','Dominica','',0,0,500,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16852,'13579','Marigot Bay','MARIGOT BAY',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16853,'38879','Marijampole','MARIJAMPOLE',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16854,'15533','Marikina','MARIKINA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16855,'25209','Marilia','MARILIA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16856,'3667','Marin','MARIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16857,'18652','Marin County','MARIN COUNTY',NULL,'','United States','',0,0,231,'2016-10-17 11:18:25','1900-01-01 00:00:00',1,0,1),(16858,'18653','Marina','MARINA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:26','1900-01-01 00:00:00',1,0,1),(16859,'32523','Marina Beach','MARINA BEACH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:18:26','1900-01-01 00:00:00',1,0,1),(16860,'15455','Marinduque','MARINDUQUE',NULL,'','Philippines','',0,0,173,'2016-10-17 11:18:28','1900-01-01 00:00:00',1,0,1),(16861,'22158','Marine City','MARINE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:18:29','1900-01-01 00:00:00',1,0,1),(16862,'41210','Marine Park','MARINE PARK',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:18:29','1900-01-01 00:00:00',1,0,1),(16863,'19476','Marineland','MARINELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:18:29','1900-01-01 00:00:00',1,0,1),(16864,'31805','Marinette','MARINETTE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16865,'25115','Maringa','MARINGA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16866,'15859','Marinha','MARINHA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16867,'10848','Marino','MARINO',NULL,'','Ireland','',0,0,105,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16868,'20642','Marion','MARION',NULL,'','United States','',0,0,231,'2016-10-17 11:18:30','1900-01-01 00:00:00',1,0,1),(16869,'18656','Mariposa','MARIPOSA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16870,'43026','Mariri','MARIRI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16871,'38375','Marisule','MARISULE',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16872,'18050','Marked Tree','MARKED TREE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16873,'14753','Markelo','MARKELO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:18:34','1900-01-01 00:00:00',1,0,1),(16874,'8527','Markfield','MARKFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:35','1900-01-01 00:00:00',1,0,1),(16875,'34557','Markham','MARKHAM',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:35','1900-01-01 00:00:00',1,0,1),(16876,'20643','Markham','MARKHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16877,'15696','Marki','MARKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16878,'34692','Markinch','MARKINCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16879,'1891','Markkleeberg','MARKKLEEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16880,'20937','Markle','MARKLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:36','1900-01-01 00:00:00',1,0,1),(16881,'18657','Markleeville','MARKLEEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:37','1900-01-01 00:00:00',1,0,1),(16882,'74','Markranstädt','MARKRANSTÄDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:37','1900-01-01 00:00:00',1,0,1),(16883,'1499','Marksville','MARKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:37','1900-01-01 00:00:00',1,0,1),(16884,'37701','Markt Schwaben','MARKT SCHWABEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16885,'253','Marktbreit','MARKTBREIT',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16886,'254','Marktheidenfeld','MARKTHEIDENFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16887,'255','Marktredwitz','MARKTREDWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16888,'8529','Markyate','MARKYATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16889,'27254','Marl','MARL',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:38','1900-01-01 00:00:00',1,0,1),(16890,'42710','Marla','MARLA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:39','1900-01-01 00:00:00',1,0,1),(16891,'31350','Marlboro','MARLBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:18:39','1900-01-01 00:00:00',1,0,1),(16892,'21429','Marlborough','MARLBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16893,'15129','Marlborough','MARLBOROUGH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16894,'8530','Marlborough','MARLBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16895,'12103','Marlengo','MARLENGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16896,'21739','Marley','MARLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:18:40','1900-01-01 00:00:00',1,0,1),(16897,'40459','Marliana','MARLIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:41','1900-01-01 00:00:00',1,0,1),(16898,'30784','Marlin','MARLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:18:41','1900-01-01 00:00:00',1,0,1),(16899,'32008','Marlinton','MARLINTON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:42','1900-01-01 00:00:00',1,0,1),(16900,'32925','Marlow','MARLOW',NULL,'','United States','',0,0,231,'2016-10-17 11:18:42','1900-01-01 00:00:00',1,0,1),(16901,'8531','Marlow','MARLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:42','1900-01-01 00:00:00',1,0,1),(16902,'36328','Marlow-on-thames','MARLOW-ON-THAMES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:43','1900-01-01 00:00:00',1,0,1),(16903,'28335','Marlton','MARLTON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:43','1900-01-01 00:00:00',1,0,1),(16904,'33931','Marlwood Acre','MARLWOOD ACRE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16905,'10705','Marmagao','MARMAGAO',NULL,'','India','',0,0,101,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16906,'5215','Marmande','MARMANDE',NULL,'','France','',0,0,76,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16907,'9694','Marmaras','MARMARAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16908,'17340','Marmaris','MARMARIS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16909,'36806','Marmaris-icmeler','MARMARIS-ICMELER',NULL,'','Turkey','',0,0,222,'2016-10-17 11:18:44','1900-01-01 00:00:00',1,0,1),(16910,'3263','Marmolejo','MARMOLEJO',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:45','1900-01-01 00:00:00',1,0,1),(16911,'28336','Marmora','MARMORA',NULL,'','United States','',0,0,231,'2016-10-17 11:18:45','1900-01-01 00:00:00',1,0,1),(16912,'5861','Marne-la-vallee','MARNE-LA-VALLEE',NULL,'','France','Marne-la-Vallee',0,0,76,'2016-10-17 11:18:45','1900-01-01 00:00:00',1,0,1),(16913,'38633','Marnhull','MARNHULL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:45','1900-01-01 00:00:00',1,0,1),(16914,'3264','Maro','MARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16915,'39167','Maroantsetra','MAROANTSETRA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16916,'13834','Maroma','MAROMA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16917,'9695','Maronia','MARONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16918,'26723','Maroochydore','MAROOCHYDORE',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16919,'26263','Maroochydore-mooloolaba','MAROOCHYDORE-MOOLOOLABA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16920,'12104','Marostica','MAROSTICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16921,'12105','Marotta','MAROTTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16922,'24018','Maroua','MAROUA',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16923,'34235','Maroubra','MAROUBRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:46','1900-01-01 00:00:00',1,0,1),(16924,'43196','Maroussi','MAROUSSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:18:47','1900-01-01 00:00:00',1,0,1),(16925,'39481','Marquay','MARQUAY',NULL,'','France','',0,0,76,'2016-10-17 11:18:47','1900-01-01 00:00:00',1,0,1),(16926,'16124','Marquesas Islands','MARQUESAS ISLANDS',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:18:47','1900-01-01 00:00:00',1,0,1),(16927,'20243','Marquette','MARQUETTE',NULL,'','United States','',0,0,231,'2016-10-17 11:18:47','1900-01-01 00:00:00',1,0,1),(16928,'9843','Marquis','MARQUIS',NULL,'','Grenada','',0,0,88,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16929,'6183','Marquise','MARQUISE',NULL,'','France','',0,0,76,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16930,'13698','Marrakech','MARRAKECH',NULL,'','Morocco','',0,0,148,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16931,'938','Marrara','MARRARA',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16932,'42709','Marree','MARREE',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:48','1900-01-01 00:00:00',1,0,1),(16933,'21229','Marrero','MARRERO',NULL,'','United States','',0,0,231,'2016-10-17 11:18:49','1900-01-01 00:00:00',1,0,1),(16934,'34236','Marrickville','MARRICKVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:18:49','1900-01-01 00:00:00',1,0,1),(16935,'30043','Mars','MARS',NULL,'','United States','',0,0,231,'2016-10-17 11:18:49','1900-01-01 00:00:00',1,0,1),(16936,'2431','Marsa Alam','MARSA ALAM',NULL,'','Egypt','',0,0,65,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16937,'12846','Marsala','MARSALA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16938,'14196','Marsalforn','MARSALFORN',NULL,'','Malta','',0,0,135,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16939,'4893','Marsannay-la-cote','MARSANNAY-LA-COTE',NULL,'','France','',0,0,76,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16940,'14188','Marsascala','MARSASCALA',NULL,'','Malta','',0,0,135,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16941,'44038','Marsaskala','MARSASKALA',NULL,'','Malta','',0,0,135,'2016-10-17 11:18:50','1900-01-01 00:00:00',1,0,1),(16942,'37309','Marsberg','MARSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16943,'35560','Marsciano','MARSCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16944,'8532','Marsden','MARSDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16945,'37268','Marseillan','MARSEILLAN',NULL,'','France','',0,0,76,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16946,'6482','Marseille','MARSEILLE',NULL,'','France','',0,0,76,'2016-10-17 11:18:51','1900-01-01 00:00:00',1,0,1),(16947,'24885','Marsh Harbour','MARSH HARBOUR',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:18:52','1900-01-01 00:00:00',1,0,1),(16948,'33933','Marshall','MARSHALL',NULL,'','United States','',0,0,231,'2016-10-17 11:18:52','1900-01-01 00:00:00',1,0,1),(16949,'30044','Marshalls Creek','MARSHALLS CREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:18:54','1900-01-01 00:00:00',1,0,1),(16950,'20244','Marshalltown','MARSHALLTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:18:55','1900-01-01 00:00:00',1,0,1),(16951,'38623','Marsham','MARSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:55','1900-01-01 00:00:00',1,0,1),(16952,'27709','Marshfield','MARSHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:18:56','1900-01-01 00:00:00',1,0,1),(16953,'39388','Marsolan','MARSOLAN',NULL,'','France','',0,0,76,'2016-10-17 11:18:57','1900-01-01 00:00:00',1,0,1),(16954,'16781','Marsta','MARSTA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:57','1900-01-01 00:00:00',1,0,1),(16955,'2193','Marstal','MARSTAL',NULL,'','Denmark','',0,0,59,'2016-10-17 11:18:57','1900-01-01 00:00:00',1,0,1),(16956,'27710','Marston','MARSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:18:57','1900-01-01 00:00:00',1,0,1),(16957,'8533','Marston','MARSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16958,'36671','Marstrand','MARSTRAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16959,'12106','Marta','MARTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16960,'38260','Martel','MARTEL',NULL,'','France','',0,0,76,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16961,'40426','Martellago','MARTELLAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16962,'22950','Martensville','MARTENSVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:18:58','1900-01-01 00:00:00',1,0,1),(16963,'21431','Martha\'s Vineyard','MARTHA\'S VINEYARD',NULL,'','United States','',0,0,231,'2016-10-17 11:18:59','1900-01-01 00:00:00',1,0,1),(16964,'4393','Martigne Briand','MARTIGNE BRIAND',NULL,'','France','',0,0,76,'2016-10-17 11:18:59','1900-01-01 00:00:00',1,0,1),(16965,'6252','Martigne-sur-mayenne','MARTIGNE-SUR-MAYENNE',NULL,'','France','',0,0,76,'2016-10-17 11:18:59','1900-01-01 00:00:00',1,0,1),(16966,'33','Martigny','MARTIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:18:59','1900-01-01 00:00:00',1,0,1),(16967,'4864','Martigues','MARTIGUES',NULL,'','France','',0,0,76,'2016-10-17 11:19:00','1900-01-01 00:00:00',1,0,1),(16968,'39073','Martillac','MARTILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:19:00','1900-01-01 00:00:00',1,0,1),(16969,'33026','Martin','MARTIN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:00','1900-01-01 00:00:00',1,0,1),(16970,'12107','Martina Franca','MARTINA FRANCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16971,'15130','Martinborough','MARTINBOROUGH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16972,'18659','Martinez','MARTINEZ',NULL,'','United States','',0,0,231,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16973,'38904','Martinez De La Torre','MARTINEZ DE LA TORRE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16974,'36576','Martinho Do Porto','MARTINHO DO PORTO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16975,'14231','Martinique','MARTINIQUE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:19:01','1900-01-01 00:00:00',1,0,1),(16976,'29418','Martins Ferry','MARTINS FERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:19:02','1900-01-01 00:00:00',1,0,1),(16977,'32009','Martinsburg','MARTINSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:19:02','1900-01-01 00:00:00',1,0,1),(16978,'27999','Martinsdale','MARTINSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:03','1900-01-01 00:00:00',1,0,1),(16979,'40246','Martinsicuro','MARTINSICURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:03','1900-01-01 00:00:00',1,0,1),(16980,'31163','Martinsville','MARTINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:03','1900-01-01 00:00:00',1,0,1),(16981,'8535','Martock','MARTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:04','1900-01-01 00:00:00',1,0,1),(16982,'3562','Martorell','MARTORELL',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:04','1900-01-01 00:00:00',1,0,1),(16983,'14382','Marudi','MARUDI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:19:04','1900-01-01 00:00:00',1,0,1),(16984,'43917','Marugame','MARUGAME',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:04','1900-01-01 00:00:00',1,0,1),(16985,'13289','Maruko','MARUKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16986,'43851','Marungoor','MARUNGOOR',NULL,'','India','',0,0,101,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16987,'16017','Marvao','MARVAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16988,'38082','Marvejols','MARVEJOLS',NULL,'','France','',0,0,76,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16989,'15978','Marvila','MARVILA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16990,'17109','Mary','MARY',NULL,'','Turkmenistan','',0,0,223,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16991,'19477','Mary Esther','MARY ESTHER',NULL,'','United States','',0,0,231,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16992,'43659','Mary River Wetland','MARY RIVER WETLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16993,'26914','Maryborough','MARYBOROUGH',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:05','1900-01-01 00:00:00',1,0,1),(16994,'38499','Marybrook','MARYBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16995,'8536','Maryculter','MARYCULTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16996,'27711','Maryland Heights','MARYLAND HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16997,'7201','Marylebone','MARYLEBONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16998,'25666','Mary\'s Harbour','MARY\'S HARBOUR',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(16999,'25667','Marystown','MARYSTOWN',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:06','1900-01-01 00:00:00',1,0,1),(17000,'26915','Marysville','MARYSVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:07','1900-01-01 00:00:00',1,0,1),(17001,'29419','Marysville','MARYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:07','1900-01-01 00:00:00',1,0,1),(17002,'26725','Maryvale','MARYVALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:08','1900-01-01 00:00:00',1,0,1),(17003,'20645','Maryville','MARYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:08','1900-01-01 00:00:00',1,0,1),(17004,'2004','Marzahn','MARZAHN',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:09','1900-01-01 00:00:00',1,0,1),(17005,'3983','Masaby','MASABY',NULL,'','Finland','',0,0,75,'2016-10-17 11:19:09','1900-01-01 00:00:00',1,0,1),(17006,'11047','Masada','MASADA',NULL,'','Israel','',0,0,106,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17007,'37442','Masai Mara','MASAI MARA',NULL,'','Kenya','',0,0,113,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17008,'3763','Masalfasar','MASALFASAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17009,'44295','Masalfassar','MASALFASSAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17010,'10361','Masamba','MASAMBA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17011,'17462','Masasi','MASASI',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17012,'43984','Masatepe','MASATEPE',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17013,'43985','Masaya','MASAYA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17014,'15521','Masbate','MASBATE',NULL,'','Philippines','',0,0,173,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17015,'12108','Mascali','MASCALI',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:10','1900-01-01 00:00:00',1,0,1),(17016,'37644','Mascara','MASCARA',NULL,'','Algeria','',0,0,3,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17017,'34237','Mascot','MASCOT',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17018,'14018','Mascota','MASCOTA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17019,'22787','Mascouche','MASCOUCHE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17020,'40251','Mascoutah','MASCOUTAH',NULL,'','United States','',0,0,231,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17021,'22592','Maselheim','MASELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17022,'12109','Masera Di Padova','MASERA DI PADOVA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17023,'13629','Maseru','MASERU',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:19:11','1900-01-01 00:00:00',1,0,1),(17024,'40600','Mashabei Sade','MASHABEI SADE',NULL,'','Israel','',0,0,106,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17025,'42219','Mashad','MASHAD',NULL,'','Iran','',0,0,103,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17026,'8537','Masham','MASHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17027,'19105','Mashantucket','MASHANTUCKET',NULL,'','United States','',0,0,231,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17028,'35434','Mashhad','MASHHAD',NULL,'','Iran','',0,0,103,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17029,'40868','Mashobra','MASHOBRA',NULL,'','India','Mashobra',1,0,101,'2016-10-17 11:19:12','1900-01-01 00:00:00',1,0,1),(17030,'21432','Mashpee','MASHPEE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17031,'2693','Masía Aldamar','MASÍA ALDAMAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17032,'43852','Masinagudi','MASINAGUDI',NULL,'','India','',0,0,101,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17034,'15278','Masirah','MASIRAH',NULL,'','Oman','',0,0,165,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17035,'24916','Maskall','MASKALL',NULL,'','Belize','',0,0,22,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17036,'3563','Masnou','MASNOU',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17037,'24664','Masnuy-saint-jean','MASNUY-SAINT-JEAN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:19:13','1900-01-01 00:00:00',1,0,1),(17038,'32011','Mason','MASON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:14','1900-01-01 00:00:00',1,0,1),(17039,'3370','Maspalomas','MASPALOMAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:15','1900-01-01 00:00:00',1,0,1),(17040,'28940','Maspeth','MASPETH',NULL,'','United States','',0,0,231,'2016-10-17 11:19:15','1900-01-01 00:00:00',1,0,1),(17041,'3564','Masquefa','MASQUEFA',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:15','1900-01-01 00:00:00',1,0,1),(17042,'12855','Massa','MASSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:15','1900-01-01 00:00:00',1,0,1),(17043,'43271','Massalfassar','MASSALFASSAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:16','1900-01-01 00:00:00',1,0,1),(17044,'31165','Massanutten','MASSANUTTEN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:16','1900-01-01 00:00:00',1,0,1),(17045,'43107','Massanzago','MASSANZAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:17','1900-01-01 00:00:00',1,0,1),(17046,'28941','Massapequa','MASSAPEQUA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:17','1900-01-01 00:00:00',1,0,1),(17047,'12112','Massarosa','MASSAROSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17048,'28943','Massena','MASSENA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17049,'1979','Masserberg','MASSERBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17050,'25480','Masset','MASSET',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17051,'34558','Massey','MASSEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:18','1900-01-01 00:00:00',1,0,1),(17052,'4833','Massieux','MASSIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17053,'6350','Massignac','MASSIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17054,'29421','Massillon','MASSILLON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17055,'11289','Massino Visconti','MASSINO VISCONTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17056,'37859','Massouri','MASSOURI',NULL,'','Greece','',0,0,86,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17057,'5131','Massy','MASSY',NULL,'','France','',0,0,76,'2016-10-17 11:19:19','1900-01-01 00:00:00',1,0,1),(17058,'15076','Masterton','MASTERTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17059,'24865','Mastic Point','MASTIC POINT',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17060,'43434','Mastihari','MASTIHARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17061,'13164','Masuda','MASUDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17062,'15592','Masurian Lakes','MASURIAN LAKES',NULL,'','Poland','',0,0,174,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17063,'32665','Masvingo','MASVINGO',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17064,'25043','Mata De Sao Joao','MATA DE SAO JOAO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17065,'24027','Matadi','MATADI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17066,'14447','Matagalpa','MATAGALPA',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17067,'22788','Matagami','MATAGAMI',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17068,'2694','Matagorda','MATAGORDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17069,'16163','Mataiva','MATAIVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:19:20','1900-01-01 00:00:00',1,0,1),(17070,'43027','Matakana','MATAKANA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17071,'9696','Matala','MATALA',NULL,'','Greece','',0,0,86,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17072,'36164','Matalascanas','MATALASCANAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17073,'3461','Matalebreras','MATALEBRERAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17074,'16521','Matam','MATAM',NULL,'','Senegal','',0,0,187,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17075,'36204','Matamanoa Island','MATAMANOA ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17076,'43624','Matamata','MATAMATA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17077,'30045','Matamoras','MATAMORAS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17078,'14108','Matamoros','MATAMOROS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17079,'22789','Matane','MATANE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:21','1900-01-01 00:00:00',1,0,1),(17080,'4064','Matangi Island','MATANGI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17081,'43086','Matanzas','MATANZAS',NULL,'','Cuba','',0,0,56,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17082,'22790','Matapedia','MATAPEDIA',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17083,'38334','Mataranka','MATARANKA',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17084,'3565','Mataro','MATARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17085,'15217','Matauri Bay','MATAURI BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17086,'7202','Matchams','MATCHAMS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17087,'14085','Matehuala','MATEHUALA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17088,'37795','Matelica','MATELICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17089,'38968','Matemo Island','MATEMO ISLAND',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:19:22','1900-01-01 00:00:00',1,0,1),(17090,'12701','Matera','MATERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17091,'8538','Matfen','MATFEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17092,'21093','Matfield Green','MATFIELD GREEN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17093,'43853','Matheran','MATHERAN',NULL,'','India','Matheran',5,0,101,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17094,'43634','Mathinna','MATHINNA',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:23','1900-01-01 00:00:00',1,0,1),(17095,'30786','Mathis','MATHIS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17096,'10683','Mathura','MATHURA',NULL,'','India','Mathura',6,0,101,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17097,'38614','Matino','MATINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17098,'19478','Matlacha','MATLACHA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17099,'8539','Matlock','MATLOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:24','1900-01-01 00:00:00',1,0,1),(17100,'17176','Matmata','MATMATA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17101,'16027','Matosinhos','MATOSINHOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17102,'40599','Matougues','MATOUGUES',NULL,'','France','',0,0,76,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17103,'10076','Matrahaza','MATRAHAZA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17104,'35342','Matraszentimre','MATRASZENTIMRE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17105,'39951','Mátraszentimre','MÁTRASZENTIMRE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17106,'35882','Matrei','MATREI',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17107,'13630','Matsaile','MATSAILE',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17108,'13290','Matsubara','MATSUBARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:25','1900-01-01 00:00:00',1,0,1),(17109,'13291','Matsudo','MATSUDO',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17110,'35740','Matsue','MATSUE',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17111,'13292','Matsumoto','MATSUMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17112,'42561','Matsuo','MATSUO',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17113,'43052','Matsusaka','MATSUSAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17114,'42687','Matsushima','MATSUSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17115,'13293','Matsuyama','MATSUYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17116,'21433','Mattapan','MATTAPAN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17117,'12113','Mattarello','MATTARELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:26','1900-01-01 00:00:00',1,0,1),(17118,'20646','Matteson','MATTESON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:27','1900-01-01 00:00:00',1,0,1),(17119,'24860','Matthew Town','MATTHEW TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:19:27','1900-01-01 00:00:00',1,0,1),(17120,'33934','Matthews','MATTHEWS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:27','1900-01-01 00:00:00',1,0,1),(17121,'12114','Mattinata','MATTINATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:27','1900-01-01 00:00:00',1,0,1),(17122,'20647','Mattoon','MATTOON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:28','1900-01-01 00:00:00',1,0,1),(17123,'38443','Mattsee','MATTSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:28','1900-01-01 00:00:00',1,0,1),(17124,'28944','Mattydale','MATTYDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:28','1900-01-01 00:00:00',1,0,1),(17125,'30252','Matunuck','MATUNUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17126,'24989','Matupa','MATUPA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17127,'32203','Maturin','MATURIN',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17128,'6773','Matzenheim','MATZENHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17129,'6184','Maubeuge','MAUBEUGE',NULL,'','France','',0,0,76,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17130,'27108','Mauerbach','MAUERBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:29','1900-01-01 00:00:00',1,0,1),(17131,'37485','Mauerstetten','MAUERSTETTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:30','1900-01-01 00:00:00',1,0,1),(17132,'25031','Maues','MAUES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:19:30','1900-01-01 00:00:00',1,0,1),(17133,'4937','Mauguio','MAUGUIO',NULL,'','France','',0,0,76,'2016-10-17 11:19:30','1900-01-01 00:00:00',1,0,1),(17134,'36917','Maui-hana','MAUI-HANA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:30','1900-01-01 00:00:00',1,0,1),(17135,'36938','Maui-kaanapali','MAUI-KAANAPALI',NULL,'','United States','',0,0,231,'2016-10-17 11:19:31','1900-01-01 00:00:00',1,0,1),(17136,'36939','Maui-kahana','MAUI-KAHANA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:31','1900-01-01 00:00:00',1,0,1),(17137,'36999','Maui-kahului','MAUI-KAHULUI',NULL,'','United States','',0,0,231,'2016-10-17 11:19:31','1900-01-01 00:00:00',1,0,1),(17138,'36936','Maui-kapalua','MAUI-KAPALUA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:32','1900-01-01 00:00:00',1,0,1),(17139,'36946','Maui-kihei','MAUI-KIHEI',NULL,'','United States','',0,0,231,'2016-10-17 11:19:32','1900-01-01 00:00:00',1,0,1),(17140,'36953','Maui-lahaina','MAUI-LAHAINA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:33','1900-01-01 00:00:00',1,0,1),(17141,'36969','Maui-maalaea','MAUI-MAALAEA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:33','1900-01-01 00:00:00',1,0,1),(17142,'36980','Maui-makena','MAUI-MAKENA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:33','1900-01-01 00:00:00',1,0,1),(17143,'36988','Maui-napili','MAUI-NAPILI',NULL,'','United States','',0,0,231,'2016-10-17 11:19:34','1900-01-01 00:00:00',1,0,1),(17144,'37056','Maui-wailea','MAUI-WAILEA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:34','1900-01-01 00:00:00',1,0,1),(17145,'36971','Maui-wailuku','MAUI-WAILUKU',NULL,'','United States','',0,0,231,'2016-10-17 11:19:34','1900-01-01 00:00:00',1,0,1),(17146,'24070','Mauke','MAUKE',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:19:35','1900-01-01 00:00:00',1,0,1),(17147,'30370','Mauldin','MAULDIN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:35','1900-01-01 00:00:00',1,0,1),(17148,'5821','Maulevrier','MAULEVRIER',NULL,'','France','',0,0,76,'2016-10-17 11:19:35','1900-01-01 00:00:00',1,0,1),(17149,'29422','Maumee','MAUMEE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:35','1900-01-01 00:00:00',1,0,1),(17150,'18052','Maumelle','MAUMELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:36','1900-01-01 00:00:00',1,0,1),(17151,'10353','Maumere','MAUMERE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:19:36','1900-01-01 00:00:00',1,0,1),(17152,'25261','Maun','MAUN',NULL,'','Botswana','',0,0,28,'2016-10-17 11:19:36','1900-01-01 00:00:00',1,0,1),(17153,'38868','Maunabo','MAUNABO',NULL,'','United States','',0,0,231,'2016-10-17 11:19:36','1900-01-01 00:00:00',1,0,1),(17154,'20079','Maunaloa','MAUNALOA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17155,'16125','Maupiti','MAUPITI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17156,'23282','Maur','MAUR',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17157,'24482','Maurach','MAURACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17158,'5822','Maurepas','MAUREPAS',NULL,'','France','',0,0,76,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17159,'15131','Mauria River Valley','MAURIA RIVER VALLEY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17160,'40180','Mauriac','MAURIAC',NULL,'','France','',0,0,76,'2016-10-17 11:19:37','1900-01-01 00:00:00',1,0,1),(17161,'42162','Mauricie','MAURICIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17162,'14254','Mauritius','MAURITIUS',NULL,'','Mauritius','Mauritius',35,0,139,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17164,'36413','Mauritius-trou D\'eau','MAURITIUS-TROU D\'EAU',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17165,'5216','Maury','MAURY',NULL,'','France','',0,0,76,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17166,'41386','Maussane-les Alpilles','MAUSSANE-LES ALPILLES',NULL,'','France','',0,0,76,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17167,'4394','Maussane-les-alpilles','MAUSSANE-LES-ALPILLES',NULL,'','France','',0,0,76,'2016-10-17 11:19:38','1900-01-01 00:00:00',1,0,1),(17168,'36289','Maussanne Les Alpill','MAUSSANNE LES ALPILL',NULL,'','France','',0,0,76,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17169,'31808','Mauston','MAUSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17170,'24390','Mauterndorf','MAUTERNDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17171,'27080','Mauthen','MAUTHEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17172,'39864','Mauvezin','MAUVEZIN',NULL,'','France','',0,0,76,'2016-10-17 11:19:39','1900-01-01 00:00:00',1,0,1),(17173,'5473','Maux','MAUX',NULL,'','France','',0,0,76,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17174,'38790','Mavillette','MAVILLETTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17175,'42215','Mawatha','MAWATHA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17176,'8540','Mawdesley','MAWDESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17177,'42256','Mawlamyine','MAWLAMYINE',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17178,'37310','Mawson Lakes','MAWSON LAKES',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17179,'31166','Max Meadows','MAX MEADOWS',NULL,'','United States','',0,0,231,'2016-10-17 11:19:40','1900-01-01 00:00:00',1,0,1),(17180,'38035','Maxaranguape','MAXARANGUAPE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17181,'14128','Maxcanu','MAXCANU',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17182,'6046','Maxeville','MAXEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17183,'15759','Mayaguez','MAYAGUEZ',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17184,'28945','Maybrook','MAYBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17185,'27109','Mayerling','MAYERLING',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:41','1900-01-01 00:00:00',1,0,1),(17186,'21094','Mayetta','MAYETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:42','1900-01-01 00:00:00',1,0,1),(17187,'8541','Mayfair','MAYFAIR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:19:42','1900-01-01 00:00:00',1,0,1),(17188,'34238','Mayfield','MAYFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:42','1900-01-01 00:00:00',1,0,1),(17189,'25820','Mayfield','MAYFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:42','1900-01-01 00:00:00',1,0,1),(17190,'33690','Mayfield','MAYFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:43','1900-01-01 00:00:00',1,0,1),(17191,'43854','Mayiladuthurai','MAYILADUTHURAI',NULL,'','India','',0,0,101,'2016-10-17 11:19:43','1900-01-01 00:00:00',1,0,1),(17192,'42080','Maymyo','MAYMYO',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17193,'21434','Maynard','MAYNARD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17194,'25249','Maynards','MAYNARDS',NULL,'','Barbados','',0,0,19,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17195,'25481','Mayne Island','MAYNE ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17196,'10889','Maynooth','MAYNOOTH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17197,'22980','Mayo','MAYO',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17198,'6839','Mayoumba','MAYOUMBA',NULL,'','Gabon','',0,0,80,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17199,'32164','Mayreau Island','MAYREAU ISLAND',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 11:19:44','1900-01-01 00:00:00',1,0,1),(17200,'35883','Mayrhofen','MAYRHOFEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:19:45','1900-01-01 00:00:00',1,0,1),(17201,'75','Mayschoss','MAYSCHOSS',NULL,'','Germany','',0,0,83,'2016-10-17 11:19:45','1900-01-01 00:00:00',1,0,1),(17202,'33691','Maysville','MAYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:45','1900-01-01 00:00:00',1,0,1),(17203,'31809','Mayville','MAYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:45','1900-01-01 00:00:00',1,0,1),(17204,'28139','Maywood','MAYWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:47','1900-01-01 00:00:00',1,0,1),(17205,'3265','Mazagon','MAZAGON',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:47','1900-01-01 00:00:00',1,0,1),(17206,'31550','Mazama','MAZAMA',NULL,'','United States','',0,0,231,'2016-10-17 11:19:47','1900-01-01 00:00:00',1,0,1),(17207,'43957','Mazamitla','MAZAMITLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17208,'5328','Mazan','MAZAN',NULL,'','France','',0,0,76,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17209,'12115','Mazara Del Vallo','MAZARA DEL VALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17210,'6483','Mazargues','MAZARGUES',NULL,'','France','',0,0,76,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17211,'3668','Mazaricos','MAZARICOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:48','1900-01-01 00:00:00',1,0,1),(17212,'25840','Mazar-i-sharif','MAZAR-I-SHARIF',NULL,'','Afghanistan','',0,0,1,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17213,'3037','Mazarron','MAZARRON',NULL,'','Spain','',0,0,199,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17214,'14094','Mazatlan','MAZATLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17215,'31810','Mazomanie','MAZOMANIE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17216,'39270','Mazotos','MAZOTOS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17217,'38015','Mazzarino','MAZZARINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:49','1900-01-01 00:00:00',1,0,1),(17218,'11290','Mazzaro','MAZZARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17219,'43154','Mazzeo','MAZZEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17220,'11291','Mazzetelli','MAZZETELLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17221,'12116','Mazzin','MAZZIN',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17222,'12117','Mazzolla','MAZZOLLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17223,'16911','Mbabane','MBABANE',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17224,'16551','Mbambanakira','MBAMBANAKIRA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:19:50','1900-01-01 00:00:00',1,0,1),(17225,'24028','Mbandaka','MBANDAKA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17226,'17481','Mbarara','MBARARA',NULL,'','Uganda','',0,0,226,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17227,'4093','Mbengga','MBENGGA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17228,'17463','Mbeya','MBEYA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17229,'6840','M\'bigou','M\'BIGOU',NULL,'','Gabon','',0,0,80,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17230,'43993','Mbodiene','MBODIENE',NULL,'','Senegal','',0,0,187,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17231,'16526','Mbour','MBOUR',NULL,'','Senegal','',0,0,187,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17232,'24029','Mbuji-mayi','MBUJI-MAYI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17233,'28337','Mcafee','MCAFEE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17234,'32926','Mcalester','MCALESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:19:51','1900-01-01 00:00:00',1,0,1),(17235,'30787','Mcallen','MCALLEN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:52','1900-01-01 00:00:00',1,0,1),(17236,'25482','Mcbride','MCBRIDE',NULL,'','Canada','',0,0,39,'2016-10-17 11:19:53','1900-01-01 00:00:00',1,0,1),(17237,'20376','Mccall','MCCALL',NULL,'','United States','',0,0,231,'2016-10-17 11:19:53','1900-01-01 00:00:00',1,0,1),(17238,'1515','Mccallen','MCCALLEN',NULL,'','United States','',0,0,231,'2016-10-17 11:19:53','1900-01-01 00:00:00',1,0,1),(17239,'39738','Mccamey','MCCAMEY',NULL,'','United States','',0,0,231,'2016-10-17 11:19:54','1900-01-01 00:00:00',1,0,1),(17240,'17697','Mccarthy','MCCARTHY',NULL,'','United States','',0,0,231,'2016-10-17 11:19:54','1900-01-01 00:00:00',1,0,1),(17241,'30371','Mcclellanville','MCCLELLANVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:55','1900-01-01 00:00:00',1,0,1),(17242,'18661','Mccloud','MCCLOUD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:55','1900-01-01 00:00:00',1,0,1),(17243,'27883','Mccomb','MCCOMB',NULL,'','United States','',0,0,231,'2016-10-17 11:19:55','1900-01-01 00:00:00',1,0,1),(17244,'28140','Mccook','MCCOOK',NULL,'','United States','',0,0,231,'2016-10-17 11:19:56','1900-01-01 00:00:00',1,0,1),(17245,'30372','Mccormick','MCCORMICK',NULL,'','United States','',0,0,231,'2016-10-17 11:19:56','1900-01-01 00:00:00',1,0,1),(17246,'26264','Mccracken','MCCRACKEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:19:56','1900-01-01 00:00:00',1,0,1),(17247,'32832','Mcdermitt','MCDERMITT',NULL,'','United States','',0,0,231,'2016-10-17 11:19:57','1900-01-01 00:00:00',1,0,1),(17248,'33204','Mcdonald','MCDONALD',NULL,'','United States','',0,0,231,'2016-10-17 11:19:57','1900-01-01 00:00:00',1,0,1),(17249,'19870','Mcdonough','MCDONOUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:19:57','1900-01-01 00:00:00',1,0,1),(17250,'24318','Mcely','MCELY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:19:58','1900-01-01 00:00:00',1,0,1),(17251,'31167','Mcgaheysville','MCGAHEYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:58','1900-01-01 00:00:00',1,0,1),(17252,'18053','Mcgehee','MCGEHEE',NULL,'','United States','',0,0,231,'2016-10-17 11:19:58','1900-01-01 00:00:00',1,0,1),(17253,'17698','Mcgrath','MCGRATH',NULL,'','United States','',0,0,231,'2016-10-17 11:19:59','1900-01-01 00:00:00',1,0,1),(17254,'28947','Mcgraw','MCGRAW',NULL,'','United States','',0,0,231,'2016-10-17 11:19:59','1900-01-01 00:00:00',1,0,1),(17255,'30789','Mcgregor','MCGREGOR',NULL,'','United States','',0,0,231,'2016-10-17 11:20:00','1900-01-01 00:00:00',1,0,1),(17256,'28338','Mcguire Airforce Base','MCGUIRE AIRFORCE BASE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:01','1900-01-01 00:00:00',1,0,1),(17257,'18164','Mcguireville','MCGUIREVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:01','1900-01-01 00:00:00',1,0,1),(17258,'21740','Mchenry','MCHENRY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:01','1900-01-01 00:00:00',1,0,1),(17259,'34559','Mckellar','MCKELLAR',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:02','1900-01-01 00:00:00',1,0,1),(17260,'31168','Mckenney','MCKENNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:02','1900-01-01 00:00:00',1,0,1),(17261,'33205','Mckenzie','MCKENZIE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:02','1900-01-01 00:00:00',1,0,1),(17262,'18662','Mckinleyville','MCKINLEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:03','1900-01-01 00:00:00',1,0,1),(17263,'30790','Mckinney','MCKINNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:04','1900-01-01 00:00:00',1,0,1),(17264,'26460','Mclaren Vale','MCLAREN VALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:04','1900-01-01 00:00:00',1,0,1),(17265,'20650','Mclean','MCLEAN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:04','1900-01-01 00:00:00',1,0,1),(17266,'33935','Mcleansville','MCLEANSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:05','1900-01-01 00:00:00',1,0,1),(17267,'72952','Mcleodganj','MCLEODGANJ',NULL,'','India','',0,0,101,'2016-10-17 11:20:05','1900-01-01 00:00:00',1,0,1),(17268,'22163','Mcmillan','MCMILLAN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:05','1900-01-01 00:00:00',1,0,1),(17269,'29704','Mcminnville','MCMINNVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:06','1900-01-01 00:00:00',1,0,1),(17270,'18165','Mcnary','MCNARY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:06','1900-01-01 00:00:00',1,0,1),(17271,'21095','Mcpherson','MCPHERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:20:07','1900-01-01 00:00:00',1,0,1),(17272,'30791','Mcqueeney','MCQUEENEY',NULL,'','United States','',0,0,231,'2016-10-17 11:20:07','1900-01-01 00:00:00',1,0,1),(17273,'19871','Mcrae','MCRAE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:07','1900-01-01 00:00:00',1,0,1),(17274,'14197','Mdina','MDINA',NULL,'','Malta','',0,0,135,'2016-10-17 11:20:08','1900-01-01 00:00:00',1,0,1),(17275,'22951','Meadow Lake','MEADOW LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:08','1900-01-01 00:00:00',1,0,1),(17276,'1507','Meadowlands','MEADOWLANDS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:08','1900-01-01 00:00:00',1,0,1),(17277,'42225','Meads Bay','MEADS BAY',NULL,'','Anguilla','',0,0,7,'2016-10-17 11:20:08','1900-01-01 00:00:00',1,0,1),(17278,'18166','Meadview','MEADVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:20:09','1900-01-01 00:00:00',1,0,1),(17279,'30046','Meadville','MEADVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:09','1900-01-01 00:00:00',1,0,1),(17280,'40030','Meaford','MEAFORD',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17281,'15860','Mealhada','MEALHADA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17282,'1639','Mealhanda','MEALHANDA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17283,'3669','Meano','MEANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17284,'22164','Mears','MEARS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17285,'40306','Méaudre','MÉAUDRE',NULL,'','France','',0,0,76,'2016-10-17 11:20:10','1900-01-01 00:00:00',1,0,1),(17286,'33936','Mebane','MEBANE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:11','1900-01-01 00:00:00',1,0,1),(17287,'16513','Mecca','MECCA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:20:11','1900-01-01 00:00:00',1,0,1),(17288,'30048','Mechanicsburg','MECHANICSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:20:11','1900-01-01 00:00:00',1,0,1),(17289,'21741','Mechanicsville','MECHANICSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:12','1900-01-01 00:00:00',1,0,1),(17290,'24611','Mechelen','MECHELEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17291,'37837','Mecina Fondales','MECINA FONDALES',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17292,'76','Mecklenburger Seenplatte','MECKLENBURGER SEENPLATTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17293,'37755','Medebach','MEDEBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17294,'15897','Medelim','MEDELIM',NULL,'','Portugal','',0,0,175,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17295,'24104','Medellin','MEDELLIN',NULL,'','Colombia','',0,0,49,'2016-10-17 11:20:13','1900-01-01 00:00:00',1,0,1),(17296,'14647','Medemblik','MEDEMBLIK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17297,'17173','Medenine','MEDENINE',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17298,'12118','Medesano','MEDESANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17299,'21435','Medfield','MEDFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17300,'21436','Medford','MEDFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:20:14','1900-01-01 00:00:00',1,0,1),(17301,'13750','Medhufinolhu','MEDHUFINOLHU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:20:16','1900-01-01 00:00:00',1,0,1),(17302,'30049','Media','MEDIA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:16','1900-01-01 00:00:00',1,0,1),(17303,'16223','Medias','MEDIAS',NULL,'','Romania','',0,0,179,'2016-10-17 11:20:16','1900-01-01 00:00:00',1,0,1),(17304,'42328','Medicina','MEDICINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:16','1900-01-01 00:00:00',1,0,1),(17305,'32117','Medicine Bow','MEDICINE BOW',NULL,'','United States','',0,0,231,'2016-10-17 11:20:17','1900-01-01 00:00:00',1,0,1),(17306,'25336','Medicine Hat','MEDICINE HAT',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:17','1900-01-01 00:00:00',1,0,1),(17307,'16482','Medina','MEDINA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:20:17','1900-01-01 00:00:00',1,0,1),(17308,'29425','Medina','MEDINA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:17','1900-01-01 00:00:00',1,0,1),(17309,'2695','Medina-sidonia','MEDINA-SIDONIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:18','1900-01-01 00:00:00',1,0,1),(17310,'2696','Mediodia','MEDIODIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17311,'39198','Medis','MEDIS',NULL,'','France','',0,0,76,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17312,'34835','Medjugorje','MEDJUGORJE',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17313,'12119','Medolago','MEDOLAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17314,'28074','Medora','MEDORA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:19','1900-01-01 00:00:00',1,0,1),(17315,'39333','Medugorje','MEDUGORJE',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17316,'9971','Medulin','MEDULIN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17317,'16462','Medvedkovo','MEDVEDKOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17318,'38707','Medvode','MEDVODE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17319,'13751','Meedhupparu','MEEDHUPPARU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17320,'26601','Meekatharra','MEEKATHARRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17321,'33489','Meeker','MEEKER',NULL,'','United States','',0,0,231,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17322,'1892','Meerane','MEERANE',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17323,'77','Meerbusch','MEERBUSCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:20','1900-01-01 00:00:00',1,0,1),(17324,'36458','Meerkerk','MEERKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17325,'22593','Meersburg','MEERSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17326,'13752','Meeru','MEERU',NULL,'','Maldives','',0,0,133,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17327,'24687','Meeuwen','MEEUWEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17328,'39783','Megala Chorafia','MEGALA CHORAFIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17329,'43435','Megali Ammos','MEGALI AMMOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17330,'9535','Megalochori','MEGALOCHORI',NULL,'','Greece','',0,0,86,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17331,'39250','Megas Gialos','MEGAS GIALOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17332,'6820','Megeve','MEGEVE',NULL,'','France','',0,0,76,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17333,'23283','Meggen','MEGGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17334,'1661','Meggido','MEGGIDO',NULL,'','Israel','',0,0,106,'2016-10-17 11:20:21','1900-01-01 00:00:00',1,0,1),(17335,'15057','Meghauli','MEGHAULI',NULL,'','Nepal','',0,0,153,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17336,'14161','Megit Island','MEGIT ISLAND',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17337,'13294','Meguro','MEGURO',NULL,'','Japan','',0,0,110,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17338,'14884','Mehamn','MEHAMN',NULL,'','Norway','',0,0,164,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17339,'27713','Mehlville','MEHLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17340,'15932','Meia Praia','MEIA PRAIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17341,'24535','Meidling','MEIDLING',NULL,'','Austria','',0,0,14,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17342,'23284','Meilen','MEILEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17343,'37276','Meina','MEINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:22','1900-01-01 00:00:00',1,0,1),(17344,'1980','Meiningen','MEININGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17345,'22988','Meiringen','MEIRINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17346,'1942','Meisdorf','MEISDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17347,'37381','Meisenthal','MEISENTHAL',NULL,'','France','',0,0,76,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17348,'2092','Meissen','MEISSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17349,'40455','Meissenheim','MEISSENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17350,'23939','Meixian','MEIXIAN',NULL,'','China','',0,0,46,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17351,'23971','Meizhou','MEIZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17352,'3984','Mejlans','MEJLANS',NULL,'','Finland','',0,0,75,'2016-10-17 11:20:23','1900-01-01 00:00:00',1,0,1),(17353,'41500','Mejorada Del Campo','MEJORADA DEL CAMPO',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1);
INSERT INTO `tb_master_geo_city` VALUES (17354,'6851','Mekambo','MEKAMBO',NULL,'','Gabon','',0,0,80,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17355,'3867','Mekane Selam','MEKANE SELAM',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17356,'13701','Meknes','MEKNES',NULL,'','Morocco','Meknes',0,0,148,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17357,'17699','Mekoryuk','MEKORYUK',NULL,'','United States','',0,0,231,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17358,'43546','Melaka','MELAKA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17359,'10181','Melanguane','MELANGUANE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17360,'27255','Melbeck','MELBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:24','1900-01-01 00:00:00',1,0,1),(17361,'37986','Melbourn','MELBOURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17362,'19479','Melbourne','MELBOURNE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17363,'14920','Melbu','MELBU',NULL,'','Norway','',0,0,164,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17364,'23285','Melchnau','MELCHNAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17365,'726','Meldorf','MELDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:25','1900-01-01 00:00:00',1,0,1),(17366,'32330','Mele','MELE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17367,'12120','Melendugno','MELENDUGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17368,'12121','Melezzole','MELEZZOLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17369,'22952','Melfort','MELFORT',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17370,'24127','Melgar','MELGAR',NULL,'','Colombia','',0,0,49,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17371,'23286','Melide','MELIDE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17372,'2872','Melilla','MELILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17373,'43535','Melilli','MELILLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:26','1900-01-01 00:00:00',1,0,1),(17374,'38448','Melissa','MELISSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17375,'39468','Melito Di Napoli','MELITO DI NAPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17376,'40737','Melizzano','MELIZZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17377,'35884','Melk','MELK',NULL,'','Austria','Melk',0,0,14,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17378,'8542','Melksham','MELKSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17379,'5570','Mellac','MELLAC',NULL,'','France','',0,0,76,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17380,'27007','Mellau','MELLAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17381,'39175','Mellbystrand','MELLBYSTRAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:20:27','1900-01-01 00:00:00',1,0,1),(17382,'27256','Melle','MELLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17383,'16889','Mellerud','MELLERUD',NULL,'','Sweden','',0,0,209,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17384,'14198','Mellieha','MELLIEHA',NULL,'','Malta','',0,0,135,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17385,'1981','Mellingen','MELLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17386,'8543','Mellor','MELLOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17387,'3985','Mellungsby','MELLUNGSBY',NULL,'','Finland','',0,0,75,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17388,'32524','Melmoth','MELMOTH',NULL,'','South Africa','',0,0,195,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17389,'2697','Meloneras','MELONERAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17390,'14809','Meloyvaer','MELOYVAER',NULL,'','Norway','',0,0,164,'2016-10-17 11:20:28','1900-01-01 00:00:00',1,0,1),(17391,'27443','Melrose','MELROSE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:29','1900-01-01 00:00:00',1,0,1),(17392,'8544','Melrose','MELROSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:29','1900-01-01 00:00:00',1,0,1),(17393,'42708','Melrose','MELROSE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:29','1900-01-01 00:00:00',1,0,1),(17394,'727','Melsdorf','MELSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17395,'454','Melsungen','MELSUNGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17396,'8545','Meltham','MELTHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17397,'38670','Melton','MELTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17398,'8546','Melton Mowbray','MELTON MOWBRAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:30','1900-01-01 00:00:00',1,0,1),(17399,'5863','Melun','MELUN',NULL,'','France','',0,0,76,'2016-10-17 11:20:31','1900-01-01 00:00:00',1,0,1),(17400,'21098','Melvern','MELVERN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:31','1900-01-01 00:00:00',1,0,1),(17401,'42682','Melvich','MELVICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:31','1900-01-01 00:00:00',1,0,1),(17402,'26602','Melville','MELVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:31','1900-01-01 00:00:00',1,0,1),(17403,'22953','Melville','MELVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:32','1900-01-01 00:00:00',1,0,1),(17404,'28949','Melville','MELVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:32','1900-01-01 00:00:00',1,0,1),(17405,'22165','Melvindale','MELVINDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:32','1900-01-01 00:00:00',1,0,1),(17406,'44231','Melzo','MELZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:32','1900-01-01 00:00:00',1,0,1),(17407,'13165','Memanbetsu','MEMANBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17408,'256','Memmelsdorf','MEMMELSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17409,'257','Memmingen','MEMMINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17410,'28141','Memorial Stadium','MEMORIAL STADIUM',NULL,'','United States','',0,0,231,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17411,'27714','Memphis','MEMPHIS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:33','1900-01-01 00:00:00',1,0,1),(17412,'3868','Mena','MENA',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:20:35','1900-01-01 00:00:00',1,0,1),(17413,'18054','Mena','MENA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:35','1900-01-01 00:00:00',1,0,1),(17414,'12122','Menaggio','MENAGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:35','1900-01-01 00:00:00',1,0,1),(17415,'28950','Menands','MENANDS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:36','1900-01-01 00:00:00',1,0,1),(17416,'38916','Menara','MENARA',NULL,'','Israel','',0,0,106,'2016-10-17 11:20:36','1900-01-01 00:00:00',1,0,1),(17417,'38822','Menard','MENARD',NULL,'','United States','',0,0,231,'2016-10-17 11:20:36','1900-01-01 00:00:00',1,0,1),(17418,'5938','Mende','MENDE',NULL,'','France','',0,0,76,'2016-10-17 11:20:36','1900-01-01 00:00:00',1,0,1),(17419,'27885','Mendenhall','MENDENHALL',NULL,'','United States','',0,0,231,'2016-10-17 11:20:37','1900-01-01 00:00:00',1,0,1),(17420,'39875','Mendham','MENDHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:37','1900-01-01 00:00:00',1,0,1),(17421,'3869','Mendi','MENDI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:20:37','1900-01-01 00:00:00',1,0,1),(17422,'18663','Mendocino','MENDOCINO',NULL,'','United States','',0,0,231,'2016-10-17 11:20:37','1900-01-01 00:00:00',1,0,1),(17423,'31351','Mendon','MENDON',NULL,'','United States','',0,0,231,'2016-10-17 11:20:38','1900-01-01 00:00:00',1,0,1),(17424,'20652','Mendota','MENDOTA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:39','1900-01-01 00:00:00',1,0,1),(17425,'26124','Mendoza','MENDOZA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:20:39','1900-01-01 00:00:00',1,0,1),(17426,'23287','Mendrisio','MENDRISIO',NULL,'','Switzerland','Mendrisio',0,0,210,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17427,'21438','Menemsha','MENEMSHA',NULL,'','United States','',0,0,231,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17428,'24730','Menen','MENEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17429,'44075','Menerbes','MENERBES',NULL,'','France','',0,0,76,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17430,'4396','Ménerbes','MÉNERBES',NULL,'','France','',0,0,76,'2016-10-17 11:20:40','1900-01-01 00:00:00',1,0,1),(17431,'12123','Menfi','MENFI',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17432,'78','Mengershausen','MENGERSHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17433,'455','Mengerskirchen','MENGERSKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17434,'14391','Menggatal','MENGGATAL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17435,'3266','Mengibar','MENGIBAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17436,'34888','Mengzi','MENGZI',NULL,'','China','',0,0,46,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17437,'43626','Meningie','MENINGIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17438,'10182','Menjangan Bay','MENJANGAN BAY',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17439,'18665','Menlo Park','MENLO PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:20:41','1900-01-01 00:00:00',1,0,1),(17440,'4752','Mennecy','MENNECY',NULL,'','France','',0,0,76,'2016-10-17 11:20:42','1900-01-01 00:00:00',1,0,1),(17441,'22167','Menominee','MENOMINEE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:42','1900-01-01 00:00:00',1,0,1),(17442,'31812','Menomonee Falls','MENOMONEE FALLS',NULL,'','United States','',0,0,231,'2016-10-17 11:20:42','1900-01-01 00:00:00',1,0,1),(17443,'31813','Menomonie','MENOMONIE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:43','1900-01-01 00:00:00',1,0,1),(17444,'25847','Menongue','MENONGUE',NULL,'','Angola','',0,0,6,'2016-10-17 11:20:43','1900-01-01 00:00:00',1,0,1),(17445,'35001','Menorca-cala Binianc','MENORCA-CALA BINIANC',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:43','1900-01-01 00:00:00',1,0,1),(17446,'35015','Menorca-ciudadela','MENORCA-CIUDADELA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17447,'36117','Menorca-fornells','MENORCA-FORNELLS',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17448,'36162','Menorca-mahon','MENORCA-MAHON',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17449,'36168','Menorca-mercadal','MENORCA-MERCADAL',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17450,'36199','Menorca-playa Son Bo','MENORCA-PLAYA SON BO',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17451,'35100','Menorca-santo Tomas','MENORCA-SANTO TOMAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17452,'35081','Menorca-son Xoriguer','MENORCA-SON XORIGUER',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:44','1900-01-01 00:00:00',1,0,1),(17453,'2304','Menstrup','MENSTRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17454,'11292','Mentana','MENTANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17455,'10289','Menteng','MENTENG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17456,'6663','Menthon-saint-bernard','MENTHON-SAINT-BERNARD',NULL,'','France','',0,0,76,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17457,'4847','Menton','MENTON',NULL,'','France','',0,0,76,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17458,'26521','Mentone','MENTONE',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:45','1900-01-01 00:00:00',1,0,1),(17459,'29426','Mentor','MENTOR',NULL,'','United States','',0,0,231,'2016-10-17 11:20:46','1900-01-01 00:00:00',1,0,1),(17460,'38573','Meolo','MEOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:46','1900-01-01 00:00:00',1,0,1),(17461,'14497','Meppel','MEPPEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:20:46','1900-01-01 00:00:00',1,0,1),(17462,'27257','Meppen','MEPPEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:20:46','1900-01-01 00:00:00',1,0,1),(17463,'8547','Meppershall','MEPPERSHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17464,'31814','Mequon','MEQUON',NULL,'','United States','',0,0,231,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17465,'5023','Meracq','MERACQ',NULL,'','France','',0,0,76,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17466,'44258','Meradhoo','MERADHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17467,'1786','Merang','MERANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:20:47','1900-01-01 00:00:00',1,0,1),(17468,'10313','Merauke','MERAUKE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:48','1900-01-01 00:00:00',1,0,1),(17469,'21230','Meraux','MERAUX',NULL,'','United States','',0,0,231,'2016-10-17 11:20:48','1900-01-01 00:00:00',1,0,1),(17470,'35574','Mercatale','MERCATALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:48','1900-01-01 00:00:00',1,0,1),(17471,'18666','Merced','MERCED',NULL,'','United States','',0,0,231,'2016-10-17 11:20:49','1900-01-01 00:00:00',1,0,1),(17472,'30793','Mercedes','MERCEDES',NULL,'','United States','',0,0,231,'2016-10-17 11:20:49','1900-01-01 00:00:00',1,0,1),(17473,'17541','Mercedes','MERCEDES',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:20:49','1900-01-01 00:00:00',1,0,1),(17474,'30051','Mercer','MERCER',NULL,'','United States','',0,0,231,'2016-10-17 11:20:50','1900-01-01 00:00:00',1,0,1),(17475,'30052','Mercersburg','MERCERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:20:51','1900-01-01 00:00:00',1,0,1),(17476,'7204','Merchiston','MERCHISTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:51','1900-01-01 00:00:00',1,0,1),(17477,'6111','Mercues','MERCUES',NULL,'','France','',0,0,76,'2016-10-17 11:20:51','1900-01-01 00:00:00',1,0,1),(17478,'10183','Merdey','MERDEY',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:20:51','1900-01-01 00:00:00',1,0,1),(17479,'33490','Meredith','MEREDITH',NULL,'','United States','',0,0,231,'2016-10-17 11:20:52','1900-01-01 00:00:00',1,0,1),(17480,'4753','Mereville','MEREVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:20:52','1900-01-01 00:00:00',1,0,1),(17481,'37541','Mergozzo','MERGOZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17482,'6664','Meribel','MERIBEL',NULL,'','France','',0,0,76,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17483,'41385','Meribel-mottaret','MERIBEL-MOTTARET',NULL,'','France','',0,0,76,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17484,'14129','Merida','MERIDA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17485,'3644','Merida','MERIDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:20:53','1900-01-01 00:00:00',1,0,1),(17486,'32200','Merida','MERIDA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:20:54','1900-01-01 00:00:00',1,0,1),(17487,'19106','Meriden','MERIDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:54','1900-01-01 00:00:00',1,0,1),(17488,'8548','Meriden','MERIDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:20:54','1900-01-01 00:00:00',1,0,1),(17489,'27886','Meridian','MERIDIAN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:55','1900-01-01 00:00:00',1,0,1),(17490,'5217','Merignac','MERIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17491,'34240','Merimbula','MERIMBULA',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17492,'6484','Merindol','MERINDOL',NULL,'','France','',0,0,76,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17493,'15132','Merivale','MERIVALE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17494,'30795','Merkel','MERKEL',NULL,'','United States','',0,0,231,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17495,'23288','Merligen','MERLIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:56','1900-01-01 00:00:00',1,0,1),(17496,'29707','Merlin','MERLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17497,'23058','Merlischachen','MERLISCHACHEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17498,'26141','Merlo','MERLO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17499,'26266','Merlynston','MERLYNSTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17500,'26726','Mermaid Beach','MERMAID BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17501,'39919','Merom Golan','MEROM GOLAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17502,'11294','Merone','MERONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:20:57','1900-01-01 00:00:00',1,0,1),(17503,'21099','Merriam','MERRIAM',NULL,'','United States','',0,0,231,'2016-10-17 11:20:58','1900-01-01 00:00:00',1,0,1),(17504,'28951','Merrick','MERRICK',NULL,'','United States','',0,0,231,'2016-10-17 11:20:58','1900-01-01 00:00:00',1,0,1),(17505,'34560','Merrickville','MERRICKVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:20:58','1900-01-01 00:00:00',1,0,1),(17506,'42130','Merrijig','MERRIJIG',NULL,'','Australia','',0,0,13,'2016-10-17 11:20:58','1900-01-01 00:00:00',1,0,1),(17507,'31816','Merrill','MERRILL',NULL,'','United States','',0,0,231,'2016-10-17 11:20:59','1900-01-01 00:00:00',1,0,1),(17508,'20939','Merrillville','MERRILLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:20:59','1900-01-01 00:00:00',1,0,1),(17509,'31817','Merrimac','MERRIMAC',NULL,'','United States','',0,0,231,'2016-10-17 11:21:00','1900-01-01 00:00:00',1,0,1),(17510,'32737','Merrimack','MERRIMACK',NULL,'','United States','',0,0,231,'2016-10-17 11:21:00','1900-01-01 00:00:00',1,0,1),(17511,'10750','Merrion','MERRION',NULL,'','Ireland','',0,0,105,'2016-10-17 11:21:00','1900-01-01 00:00:00',1,0,1),(17512,'25483','Merritt','MERRITT',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:00','1900-01-01 00:00:00',1,0,1),(17513,'19480','Merritt Island','MERRITT ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:21:01','1900-01-01 00:00:00',1,0,1),(17514,'42425','Mersa Matruh','MERSA MATRUH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:21:01','1900-01-01 00:00:00',1,0,1),(17515,'1943','Merseburg','MERSEBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:01','1900-01-01 00:00:00',1,0,1),(17516,'17363','Mersin','MERSIN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17517,'14286','Mersing','MERSING',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17518,'39681','Mers-les-bains','MERS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17519,'39180','Mertesdorf','MERTESDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17520,'8549','Merthyr Tydfil','MERTHYR TYDFIL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17521,'38676','Mertola','MERTOLA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:21:02','1900-01-01 00:00:00',1,0,1),(17522,'26267','Merty','MERTY',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:03','1900-01-01 00:00:00',1,0,1),(17523,'30053','Mertz Town','MERTZ TOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:03','1900-01-01 00:00:00',1,0,1),(17524,'30054','Mertztown','MERTZTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:04','1900-01-01 00:00:00',1,0,1),(17525,'37421','Mery-sur-oise','MERY-SUR-OISE',NULL,'','France','',0,0,76,'2016-10-17 11:21:04','1900-01-01 00:00:00',1,0,1),(17526,'17243','Merzifon','MERZIFON',NULL,'','Turkey','',0,0,222,'2016-10-17 11:21:04','1900-01-01 00:00:00',1,0,1),(17527,'39621','Merzig','MERZIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:05','1900-01-01 00:00:00',1,0,1),(17528,'13694','Merzouga','MERZOUGA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:21:05','1900-01-01 00:00:00',1,0,1),(17529,'12124','Mesagne','MESAGNE',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17530,'16183','Mesaieed','MESAIEED',NULL,'','Qatar','',0,0,177,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17531,'16074','Mesao Frio','MESAO FRIO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17532,'28547','Mescalero','MESCALERO',NULL,'','United States','',0,0,231,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17533,'534','Meschede','MESCHEDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:06','1900-01-01 00:00:00',1,0,1),(17534,'28548','Mesilla','MESILLA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17535,'38655','Mesnil-saint-pere','MESNIL-SAINT-PERE',NULL,'','France','',0,0,76,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17536,'39424','Mesnil-val-plage','MESNIL-VAL-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17537,'39878','Mespelbrunn','MESPELBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17538,'40013','Mesquer','MESQUER',NULL,'','France','',0,0,76,'2016-10-17 11:21:07','1900-01-01 00:00:00',1,0,1),(17539,'25137','Mesquita','MESQUITA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:21:08','1900-01-01 00:00:00',1,0,1),(17540,'30796','Mesquite','MESQUITE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:08','1900-01-01 00:00:00',1,0,1),(17541,'5571','Messac','MESSAC',NULL,'','France','',0,0,76,'2016-10-17 11:21:08','1900-01-01 00:00:00',1,0,1),(17542,'24701','Messancy','MESSANCY',NULL,'','Belgium','',0,0,21,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17543,'5218','Messanges','MESSANGES',NULL,'','France','',0,0,76,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17544,'9536','Messaria','MESSARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17545,'32580','Messina','MESSINA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17546,'13007','Messina','MESSINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17547,'9537','Messinia','MESSINIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17548,'39131','Messolonghi','MESSOLONGHI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17549,'43436','Messonghi','MESSONGHI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:09','1900-01-01 00:00:00',1,0,1),(17550,'9538','Messongi','MESSONGI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17551,'2698','Mestas','MESTAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17552,'12896','Mestre','MESTRE',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17553,'38514','Mestrino','MESTRINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17554,'12125','Meta','META',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17555,'21231','Metairie','METAIRIE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:10','1900-01-01 00:00:00',1,0,1),(17556,'9539','Metamorfosi','METAMORFOSI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17557,'42329','Metaponto','METAPONTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17558,'25484','Metchosin','METCHOSIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17559,'43549','Metepec','METEPEC',NULL,'','Mexico','',0,0,141,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17560,'9697','Methoni','METHONI',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17561,'31552','Methow Valley','METHOW VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:11','1900-01-01 00:00:00',1,0,1),(17562,'21440','Methuen','METHUEN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:12','1900-01-01 00:00:00',1,0,1),(17563,'15218','Methven','METHVEN',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:21:12','1900-01-01 00:00:00',1,0,1),(17564,'22791','Metis-sur-mer','METIS-SUR-MER',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:12','1900-01-01 00:00:00',1,0,1),(17565,'17700','Metlakatla','METLAKATLA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:12','1900-01-01 00:00:00',1,0,1),(17566,'29708','Metolius','METOLIUS',NULL,'','United States','',0,0,231,'2016-10-17 11:21:13','1900-01-01 00:00:00',1,0,1),(17567,'20653','Metropolis','METROPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:21:13','1900-01-01 00:00:00',1,0,1),(17568,'38829','Metsovo','METSOVO',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:13','1900-01-01 00:00:00',1,0,1),(17569,'20654','Mettawa','METTAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:13','1900-01-01 00:00:00',1,0,1),(17570,'19872','Metter','METTER',NULL,'','United States','',0,0,231,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17571,'535','Mettingen','METTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17572,'682','Mettlach','METTLACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17573,'536','Mettmann','METTMANN',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17574,'1653','Metula','METULA',NULL,'','Israel','',0,0,106,'2016-10-17 11:21:14','1900-01-01 00:00:00',1,0,1),(17575,'26522','Metung','METUNG',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:15','1900-01-01 00:00:00',1,0,1),(17576,'22594','Metzingen','METZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:15','1900-01-01 00:00:00',1,0,1),(17577,'5085','Metz-tessy','METZ-TESSY',NULL,'','France','',0,0,76,'2016-10-17 11:21:15','1900-01-01 00:00:00',1,0,1),(17578,'4397','Meudon','MEUDON',NULL,'','France','',0,0,76,'2016-10-17 11:21:15','1900-01-01 00:00:00',1,0,1),(17579,'4754','Meulan','MEULAN',NULL,'','France','',0,0,76,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17580,'4398','Meurthe-et-moselle','MEURTHE-ET-MOSELLE',NULL,'','France','',0,0,76,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17581,'4399','Meuse','MEUSE',NULL,'','France','',0,0,76,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17582,'42966','Mexborough','MEXBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17583,'30797','Mexia','MEXIA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:16','1900-01-01 00:00:00',1,0,1),(17584,'13906','Mexicali','MEXICALI',NULL,'','Mexico','',0,0,141,'2016-10-17 11:21:17','1900-01-01 00:00:00',1,0,1),(17585,'27715','Mexico','MEXICO',NULL,'','United States','',0,0,231,'2016-10-17 11:21:17','1900-01-01 00:00:00',1,0,1),(17586,'6048','Mexy','MEXY',NULL,'','France','',0,0,76,'2016-10-17 11:21:18','1900-01-01 00:00:00',1,0,1),(17587,'17701','Meyers Chuck','MEYERS CHUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:21:18','1900-01-01 00:00:00',1,0,1),(17588,'44248','Meyerton','MEYERTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:21:18','1900-01-01 00:00:00',1,0,1),(17589,'21100','Meyetta','MEYETTA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:18','1900-01-01 00:00:00',1,0,1),(17590,'4957','Meylan','MEYLAN',NULL,'','France','',0,0,76,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17591,'5219','Meyrals','MEYRALS',NULL,'','France','',0,0,76,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17592,'6485','Meyrargues','MEYRARGUES',NULL,'','France','',0,0,76,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17593,'6486','Meyreuil','MEYREUIL',NULL,'','France','',0,0,76,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17594,'23437','Meyrin','MEYRIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:21:19','1900-01-01 00:00:00',1,0,1),(17595,'39944','Meyronne','MEYRONNE',NULL,'','France','',0,0,76,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17596,'5939','Meyrueis','MEYRUEIS',NULL,'','France','',0,0,76,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17597,'6665','Meyzieu','MEYZIEU',NULL,'','France','',0,0,76,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17598,'39323','Mezokovesd','MEZOKOVESD',NULL,'','Hungary','',0,0,99,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17599,'10108','Mezotur','MEZOTUR',NULL,'','Hungary','',0,0,99,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17600,'12126','Mezzana','MEZZANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17601,'11296','Mezzegra','MEZZEGRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17602,'32640','Mfuwe','MFUWE',NULL,'','Zambia','',0,0,242,'2016-10-17 11:21:20','1900-01-01 00:00:00',1,0,1),(17603,'14199','Mgarr','MGARR',NULL,'','Malta','',0,0,135,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17604,'40418','Mhamid','MHAMID',NULL,'','Morocco','',0,0,148,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17605,'39112','Mhlambanyatsi','MHLAMBANYATSI',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17606,'17405','Mi Chih','MI CHIH',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17607,'13522','Mia-dong','MIA-DONG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:21:21','1900-01-01 00:00:00',1,0,1),(17608,'2699','Miami Platja','MIAMI PLATJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:23','1900-01-01 00:00:00',1,0,1),(17609,'40471','Miandrivazo','MIANDRIVAZO',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:21:24','1900-01-01 00:00:00',1,0,1),(17610,'12127','Miane','MIANE',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:24','1900-01-01 00:00:00',1,0,1),(17611,'15309','Mianwali','MIANWALI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:21:24','1900-01-01 00:00:00',1,0,1),(17612,'23996','Mianyang','MIANYANG',NULL,'','China','',0,0,46,'2016-10-17 11:21:24','1900-01-01 00:00:00',1,0,1),(17613,'34887','Mianzhu','MIANZHU',NULL,'','China','',0,0,46,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17614,'17444','Miaoli','MIAOLI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17615,'19490','Micanopy','MICANOPY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17616,'7205','Michaelwood','MICHAELWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17617,'16268','Michajlovskoje','MICHAJLOVSKOJE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17618,'456','Michelstadt','MICHELSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17619,'793','Michendorf','MICHENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:25','1900-01-01 00:00:00',1,0,1),(17620,'20940','Michigan City','MICHIGAN CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17621,'13582','Micoud','MICOUD',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17622,'9933','Mid Levels','MID LEVELS',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17623,'32478','Middelburg','MIDDELBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17624,'14697','Middelburg','MIDDELBURG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17625,'2194','Middelfart','MIDDELFART',NULL,'','Denmark','',0,0,59,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17626,'23610','Middle Chaoyang','MIDDLE CHAOYANG',NULL,'','China','',0,0,46,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17627,'9994','Middle Dalmatia','MIDDLE DALMATIA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17628,'79','Middle Rhine','MIDDLE RHINE',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:26','1900-01-01 00:00:00',1,0,1),(17629,'21441','Middleboro','MIDDLEBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:21:27','1900-01-01 00:00:00',1,0,1),(17630,'29429','Middleburg','MIDDLEBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:21:28','1900-01-01 00:00:00',1,0,1),(17631,'20941','Middlebury','MIDDLEBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:29','1900-01-01 00:00:00',1,0,1),(17632,'21442','Middlefield','MIDDLEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:21:31','1900-01-01 00:00:00',1,0,1),(17633,'8553','Middleham','MIDDLEHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:31','1900-01-01 00:00:00',1,0,1),(17634,'26268','Middlemount','MIDDLEMOUNT',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:31','1900-01-01 00:00:00',1,0,1),(17635,'33692','Middlesboro','MIDDLESBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:21:31','1900-01-01 00:00:00',1,0,1),(17636,'36329','Middlesborough','MIDDLESBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:32','1900-01-01 00:00:00',1,0,1),(17637,'1468','Middlesbrough','MIDDLESBROUGH',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:21:32','1900-01-01 00:00:00',1,0,1),(17638,'21443','Middleton','MIDDLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:21:32','1900-01-01 00:00:00',1,0,1),(17639,'8555','Middleton','MIDDLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:32','1900-01-01 00:00:00',1,0,1),(17640,'8558','Middlewich','MIDDLEWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:36','1900-01-01 00:00:00',1,0,1),(17641,'40407','Midge Point','MIDGE POINT',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:36','1900-01-01 00:00:00',1,0,1),(17642,'42967','Midgham','MIDGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:37','1900-01-01 00:00:00',1,0,1),(17643,'8559','Midhurst','MIDHURST',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:37','1900-01-01 00:00:00',1,0,1),(17644,'34561','Midland','MIDLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:37','1900-01-01 00:00:00',1,0,1),(17645,'22168','Midland','MIDLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:21:37','1900-01-01 00:00:00',1,0,1),(17646,'10812','Midleton','MIDLETON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:21:38','1900-01-01 00:00:00',1,0,1),(17647,'31173','Midlothian','MIDLOTHIAN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:38','1900-01-01 00:00:00',1,0,1),(17648,'7206','Midlothian','MIDLOTHIAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:39','1900-01-01 00:00:00',1,0,1),(17649,'25337','Midnapore','MIDNAPORE',NULL,'','Canada','',0,0,39,'2016-10-17 11:21:39','1900-01-01 00:00:00',1,0,1),(17650,'17174','Midoun','MIDOUN',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:21:39','1900-01-01 00:00:00',1,0,1),(17651,'18668','Midpines','MIDPINES',NULL,'','United States','',0,0,231,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17652,'32581','Midrand','MIDRAND',NULL,'','South Africa','',0,0,195,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17653,'40729','Midsomer Norton','MIDSOMER NORTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17654,'16835','Midsommarkransen','MIDSOMMARKRANSEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17655,'28954','Midtown','MIDTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:40','1900-01-01 00:00:00',1,0,1),(17656,'33359','Midvale','MIDVALE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:41','1900-01-01 00:00:00',1,0,1),(17657,'7207','Mid-wales','MID-WALES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:41','1900-01-01 00:00:00',1,0,1),(17658,'19875','Midway','MIDWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:42','1900-01-01 00:00:00',1,0,1),(17659,'32929','Midwest City','MIDWEST CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:43','1900-01-01 00:00:00',1,0,1),(17660,'39450','Miedzybrodzie Bialskie','MIEDZYBRODZIE BIALSKIE',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:43','1900-01-01 00:00:00',1,0,1),(17661,'15728','Miedzyzdroje','MIEDZYZDROJE',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:43','1900-01-01 00:00:00',1,0,1),(17662,'39791','Mielenko','MIELENKO',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:43','1900-01-01 00:00:00',1,0,1),(17663,'38297','Mielno','MIELNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17664,'24483','Mieming','MIEMING',NULL,'','Austria','',0,0,14,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17665,'42397','Miercurea Ciuc','MIERCUREA CIUC',NULL,'','Romania','',0,0,179,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17666,'16224','Miercurea-ciuc','MIERCUREA-CIUC',NULL,'','Romania','',0,0,179,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17667,'3095','Mieres','MIERES',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17668,'14602','Mierlo','MIERLO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17669,'37521','Mierzecice','MIERZECICE',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17670,'258','Miesbach','MIESBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17671,'30056','Mifflintown','MIFFLINTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:44','1900-01-01 00:00:00',1,0,1),(17672,'30057','Mifflinville','MIFFLINVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:45','1900-01-01 00:00:00',1,0,1),(17673,'12129','Migliarino','MIGLIARINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:45','1900-01-01 00:00:00',1,0,1),(17674,'6351','Mignaloux-beauvoir','MIGNALOUX-BEAUVOIR',NULL,'','France','',0,0,76,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17675,'16269','Migolosci','MIGOLOSCI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17676,'42885','Mihara','MIHARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17677,'3267','Mijas','MIJAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17678,'14685','Mijdrecht','MIJDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17679,'40784','Mijoux','MIJOUX',NULL,'','France','',0,0,76,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17680,'3940','Mikkeli','MIKKELI',NULL,'','Finland','',0,0,75,'2016-10-17 11:21:46','1900-01-01 00:00:00',1,0,1),(17681,'42283','Mikolajki','MIKOLAJKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:21:47','1900-01-01 00:00:00',1,0,1),(17682,'43103','Mikri Vigla','MIKRI VIGLA',NULL,'','Greece','',0,0,86,'2016-10-17 11:21:47','1900-01-01 00:00:00',1,0,1),(17683,'41865','Mikulov','MIKULOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:21:47','1900-01-01 00:00:00',1,0,1),(17684,'27445','Milaca','MILACA',NULL,'','United States','',0,0,231,'2016-10-17 11:21:47','1900-01-01 00:00:00',1,0,1),(17685,'37930','Milagros','MILAGROS',NULL,'','Spain','',0,0,199,'2016-10-17 11:21:48','1900-01-01 00:00:00',1,0,1),(17686,'33210','Milan','MILAN',NULL,'','United States','',0,0,231,'2016-10-17 11:21:48','1900-01-01 00:00:00',1,0,1),(17687,'12725','Milano Marittima','MILANO MARITTIMA',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:49','1900-01-01 00:00:00',1,0,1),(17688,'17341','Milas','MILAS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:21:49','1900-01-01 00:00:00',1,0,1),(17689,'39291','Milawa','MILAWA',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:49','1900-01-01 00:00:00',1,0,1),(17690,'12130','Milazzo','MILAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:21:49','1900-01-01 00:00:00',1,0,1),(17691,'33027','Milbank','MILBANK',NULL,'','United States','',0,0,231,'2016-10-17 11:21:50','1900-01-01 00:00:00',1,0,1),(17692,'21893','Milbridge','MILBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:50','1900-01-01 00:00:00',1,0,1),(17693,'8560','Mildenhall','MILDENHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:50','1900-01-01 00:00:00',1,0,1),(17694,'34241','Mildura','MILDURA',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:50','1900-01-01 00:00:00',1,0,1),(17695,'28000','Miles City','MILES CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:21:51','1900-01-01 00:00:00',1,0,1),(17696,'30058','Milesburg','MILESBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:21:51','1900-01-01 00:00:00',1,0,1),(17697,'30059','Milford','MILFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:21:51','1900-01-01 00:00:00',1,0,1),(17698,'8561','Milford','MILFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:21:53','1900-01-01 00:00:00',1,0,1),(17699,'10813','Milford','MILFORD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:21:55','1900-01-01 00:00:00',1,0,1),(17700,'15133','Milford Sound','MILFORD SOUND',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:21:55','1900-01-01 00:00:00',1,0,1),(17701,'14162','Mili','MILI',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:21:55','1900-01-01 00:00:00',1,0,1),(17702,'26269','Milingimbi','MILINGIMBI',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:56','1900-01-01 00:00:00',1,0,1),(17703,'24285','Miliou','MILIOU',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:21:56','1900-01-01 00:00:00',1,0,1),(17704,'4400','Milky Way','MILKY WAY',NULL,'','France','',0,0,76,'2016-10-17 11:21:56','1900-01-01 00:00:00',1,0,1),(17705,'14603','Mill','MILL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:21:56','1900-01-01 00:00:00',1,0,1),(17706,'26270','Mill Park','MILL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:57','1900-01-01 00:00:00',1,0,1),(17707,'43673','Millaa Millaa','MILLAA MILLAA',NULL,'','Australia','',0,0,13,'2016-10-17 11:21:57','1900-01-01 00:00:00',1,0,1),(17708,'28142','Millard','MILLARD',NULL,'','United States','',0,0,231,'2016-10-17 11:21:58','1900-01-01 00:00:00',1,0,1),(17709,'6112','Millau','MILLAU',NULL,'','France','',0,0,76,'2016-10-17 11:21:58','1900-01-01 00:00:00',1,0,1),(17710,'31174','Millboro Springs','MILLBORO SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:21:59','1900-01-01 00:00:00',1,0,1),(17711,'18671','Millbrae','MILLBRAE',NULL,'','United States','',0,0,231,'2016-10-17 11:21:59','1900-01-01 00:00:00',1,0,1),(17712,'28956','Millbrook','MILLBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:22:00','1900-01-01 00:00:00',1,0,1),(17713,'29436','Millbury','MILLBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:01','1900-01-01 00:00:00',1,0,1),(17714,'33362','Millcreek','MILLCREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:22:01','1900-01-01 00:00:00',1,0,1),(17715,'19110','Milldale','MILLDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:02','1900-01-01 00:00:00',1,0,1),(17716,'19876','Milledgeville','MILLEDGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:02','1900-01-01 00:00:00',1,0,1),(17717,'19877','Millen','MILLEN',NULL,'','United States','',0,0,231,'2016-10-17 11:22:03','1900-01-01 00:00:00',1,0,1),(17718,'33028','Miller','MILLER',NULL,'','United States','',0,0,231,'2016-10-17 11:22:03','1900-01-01 00:00:00',1,0,1),(17719,'29437','Millersburg','MILLERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:22:04','1900-01-01 00:00:00',1,0,1),(17720,'30061','Millersville','MILLERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:04','1900-01-01 00:00:00',1,0,1),(17721,'2195','Millinge','MILLINGE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:22:04','1900-01-01 00:00:00',1,0,1),(17722,'33211','Millington','MILLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:22:05','1900-01-01 00:00:00',1,0,1),(17723,'21895','Millinocket','MILLINOCKET',NULL,'','United States','',0,0,231,'2016-10-17 11:22:05','1900-01-01 00:00:00',1,0,1),(17724,'21446','Millis','MILLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:05','1900-01-01 00:00:00',1,0,1),(17725,'39324','Millom','MILLOM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:06','1900-01-01 00:00:00',1,0,1),(17726,'19229','Millsboro','MILLSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:22:06','1900-01-01 00:00:00',1,0,1),(17727,'27008','Millstatt','MILLSTATT',NULL,'','Austria','',0,0,14,'2016-10-17 11:22:06','1900-01-01 00:00:00',1,0,1),(17728,'10822','Milltown','MILLTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:22:06','1900-01-01 00:00:00',1,0,1),(17729,'28341','Millville','MILLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17730,'32479','Milnerton','MILNERTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17731,'8563','Milngavie','MILNGAVIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17732,'12131','Milo','MILO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17733,'38452','Milon-la-chapelle','MILON-LA-CHAPELLE',NULL,'','France','',0,0,76,'2016-10-17 11:22:07','1900-01-01 00:00:00',1,0,1),(17734,'9541','Milos','MILOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17735,'15610','Milowka','MILOWKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17736,'13975','Milpa Alta','MILPA ALTA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17737,'18672','Milpitas','MILPITAS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17738,'30062','Milroy','MILROY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:08','1900-01-01 00:00:00',1,0,1),(17739,'34242','Milsons Point','MILSONS POINT',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:09','1900-01-01 00:00:00',1,0,1),(17740,'259','Miltenberg','MILTENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:09','1900-01-01 00:00:00',1,0,1),(17741,'1469','Milton Keynes','MILTON KEYNES',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:22:11','1900-01-01 00:00:00',1,0,1),(17742,'7208','Milton-under-wychwood','MILTON-UNDER-WYCHWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:11','1900-01-01 00:00:00',1,0,1),(17743,'41512','Miltown Malbay','MILTOWN MALBAY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:22:11','1900-01-01 00:00:00',1,0,1),(17744,'31821','Milwaukee','MILWAUKEE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:11','1900-01-01 00:00:00',1,0,1),(17745,'29709','Milwaukie','MILWAUKIE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:12','1900-01-01 00:00:00',1,0,1),(17746,'42886','Mimasaka','MIMASAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:12','1900-01-01 00:00:00',1,0,1),(17747,'6487','Mimet','MIMET',NULL,'','France','',0,0,76,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17748,'5220','Mimizan','MIMIZAN',NULL,'','France','',0,0,76,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17749,'41758','Mina Clavero','MINA CLAVERO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17750,'35742','Minabe','MINABE',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17751,'35746','Minakami','MINAKAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17752,'34563','Minaki','MINAKI',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17753,'13295','Minami','MINAMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17754,'35741','Minamiawaji','MINAMIAWAJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:13','1900-01-01 00:00:00',1,0,1),(17755,'35745','Minamichita','MINAMICHITA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17756,'35747','Minamiizu','MINAMIIZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17757,'35735','Minamioguni','MINAMIOGUNI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17758,'37075','Minas','MINAS',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17759,'13969','Minatitlan','MINATITLAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17760,'13296','Minatomachi','MINATOMACHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17761,'17005','Minburi','MINBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17762,'8569','Minchinhampton','MINCHINHAMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17763,'15456','Mindanao','MINDANAO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17764,'24143','Mindelo','MINDELO',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17765,'28144','Minden','MINDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:22:14','1900-01-01 00:00:00',1,0,1),(17766,'537','Minden','MINDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:15','1900-01-01 00:00:00',1,0,1),(17767,'15457','Mindoro','MINDORO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:22:15','1900-01-01 00:00:00',1,0,1),(17768,'8570','Minehead','MINEHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:15','1900-01-01 00:00:00',1,0,1),(17769,'30801','Mineola','MINEOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:16','1900-01-01 00:00:00',1,0,1),(17770,'31175','Mineral','MINERAL',NULL,'','United States','',0,0,231,'2016-10-17 11:22:16','1900-01-01 00:00:00',1,0,1),(17771,'39313','Mineral Del Monte','MINERAL DEL MONTE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:22:17','1900-01-01 00:00:00',1,0,1),(17772,'16270','Mineralnye Vody','MINERALNYE VODY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:22:18','1900-01-01 00:00:00',1,0,1),(17773,'32012','Mineralwells','MINERALWELLS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:18','1900-01-01 00:00:00',1,0,1),(17774,'12132','Minerbio','MINERBIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:18','1900-01-01 00:00:00',1,0,1),(17775,'38821','Minerva','MINERVA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:18','1900-01-01 00:00:00',1,0,1),(17776,'38990','Minervino Di Lecce','MINERVINO DI LECCE',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17777,'14315','Mines City','MINES CITY',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17778,'34564','Minett','MINETT',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17779,'23906','Minhang','MINHANG',NULL,'','China','',0,0,46,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17780,'43437','Minies','MINIES',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17781,'42946','Miniloc Island','MINILOC ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17782,'35765','Minimiboso','MINIMIBOSO',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17783,'27447','Minneapolis','MINNEAPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:19','1900-01-01 00:00:00',1,0,1),(17784,'27448','Minneapolis-st. Paul Area','MINNEAPOLIS-ST. PAUL AREA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:20','1900-01-01 00:00:00',1,0,1),(17785,'25611','Minnedosa','MINNEDOSA',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:20','1900-01-01 00:00:00',1,0,1),(17786,'27449','Minnesota City','MINNESOTA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:20','1900-01-01 00:00:00',1,0,1),(17787,'27450','Minnetonka','MINNETONKA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:21','1900-01-01 00:00:00',1,0,1),(17788,'31824','Minocqua','MINOCQUA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:21','1900-01-01 00:00:00',1,0,1),(17789,'42887','Minoh','MINOH',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:21','1900-01-01 00:00:00',1,0,1),(17790,'20656','Minonk','MINONK',NULL,'','United States','',0,0,231,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17791,'2701','Minorca','MINORCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17792,'12133','Minori','MINORI',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17793,'28075','Minot','MINOT',NULL,'','United States','',0,0,231,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17794,'24898','Minsk','MINSK',NULL,'','Belarus','',0,0,20,'2016-10-17 11:22:22','1900-01-01 00:00:00',1,0,1),(17795,'33937','Mint Hill','MINT HILL',NULL,'','United States','',0,0,231,'2016-10-17 11:22:23','1900-01-01 00:00:00',1,0,1),(17796,'43633','Mintaro','MINTARO',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:23','1900-01-01 00:00:00',1,0,1),(17797,'34244','Minto','MINTO',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:23','1900-01-01 00:00:00',1,0,1),(17798,'17702','Minto','MINTO',NULL,'','United States','',0,0,231,'2016-10-17 11:22:23','1900-01-01 00:00:00',1,0,1),(17799,'33492','Minturn','MINTURN',NULL,'','United States','',0,0,231,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17800,'39670','Minturno','MINTURNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17801,'23289','Minusio','MINUSIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17802,'13618','Minuwangoda','MINUWANGODA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17803,'6856','Minvoul','MINVOUL',NULL,'','Gabon','',0,0,80,'2016-10-17 11:22:24','1900-01-01 00:00:00',1,0,1),(17804,'22171','Mio','MIO',NULL,'','United States','',0,0,231,'2016-10-17 11:22:25','1900-01-01 00:00:00',1,0,1),(17805,'4401','Miomo','MIOMO',NULL,'','France','',0,0,76,'2016-10-17 11:22:25','1900-01-01 00:00:00',1,0,1),(17806,'6666','Mionnay','MIONNAY',NULL,'','France','',0,0,76,'2016-10-17 11:22:25','1900-01-01 00:00:00',1,0,1),(17807,'12897','Mira','MIRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:25','1900-01-01 00:00:00',1,0,1),(17808,'22792','Mirabel','MIRABEL',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17809,'12134','Miradolo Terme','MIRADOLO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17810,'15412','Miraflores','MIRAFLORES',NULL,'','Peru','',0,0,172,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17811,'2971','Miraflores De La Sierra','MIRAFLORES DE LA SIERRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17812,'19496','Miramar','MIRAMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17813,'13907','Miramar','MIRAMAR',NULL,'','Mexico','',0,0,141,'2016-10-17 11:22:26','1900-01-01 00:00:00',1,0,1),(17814,'3764','Miramar','MIRAMAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:27','1900-01-01 00:00:00',1,0,1),(17815,'12726','Miramare','MIRAMARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:27','1900-01-01 00:00:00',1,0,1),(17816,'6352','Mirambeau','MIRAMBEAU',NULL,'','France','',0,0,76,'2016-10-17 11:22:28','1900-01-01 00:00:00',1,0,1),(17817,'34405','Miramichi','MIRAMICHI',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:28','1900-01-01 00:00:00',1,0,1),(17818,'5221','Miramont-de-guyenne','MIRAMONT-DE-GUYENNE',NULL,'','France','',0,0,76,'2016-10-17 11:22:28','1900-01-01 00:00:00',1,0,1),(17819,'18675','Miranda','MIRANDA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:28','1900-01-01 00:00:00',1,0,1),(17820,'875','Miranda','MIRANDA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17821,'34245','Miranda','MIRANDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17822,'3463','Miranda De Ebro','MIRANDA DE EBRO',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17823,'15891','Miranda Do Douro','MIRANDA DO DOURO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17824,'41652','Mirandela','MIRANDELA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17825,'12898','Mirano','MIRANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17826,'40411','Mirbat','MIRBAT',NULL,'','Oman','',0,0,165,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17827,'6049','Mirecourt','MIRECOURT',NULL,'','France','',0,0,76,'2016-10-17 11:22:29','1900-01-01 00:00:00',1,0,1),(17828,'38535','Miremont','MIREMONT',NULL,'','France','',0,0,76,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17829,'6113','Mirepoix','MIREPOIX',NULL,'','France','',0,0,76,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17830,'8572','Mirfield','MIRFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17831,'37874','Mirhleft','MIRHLEFT',NULL,'','Morocco','',0,0,148,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17832,'14383','Miri','MIRI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17833,'6667','Miribel','MIRIBEL',NULL,'','France','',0,0,76,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17834,'13753','Mirihi','MIRIHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:22:30','1900-01-01 00:00:00',1,0,1),(17835,'16300','Mirnyy','MIRNYY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17836,'15310','Mirpur Khas','MIRPUR KHAS',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17837,'40869','Mirzapur','MIRZAPUR',NULL,'','India','',0,0,101,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17838,'16371','Misailovo','MISAILOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17839,'12135','Misano Adriatico','MISANO ADRIATICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17840,'13297','Misawa','MISAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17841,'20943','Mishawaka','MISHAWAKA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:31','1900-01-01 00:00:00',1,0,1),(17842,'31825','Mishicot','MISHICOT',NULL,'','United States','',0,0,231,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17843,'43918','Mishima','MISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17844,'39544','Misilmeri','MISILMERI',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17845,'42094','Misiones','MISIONES',NULL,'','Argentina','',0,0,10,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17846,'7209','Miskin','MISKIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17847,'10096','Miskolc','MISKOLC',NULL,'','Hungary','',0,0,99,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17848,'10077','Miskolc-tapolca','MISKOLC-TAPOLCA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:22:32','1900-01-01 00:00:00',1,0,1),(17849,'30254','Misquamicut','MISQUAMICUT',NULL,'','United States','',0,0,231,'2016-10-17 11:22:33','1900-01-01 00:00:00',1,0,1),(17850,'6254','Missillac','MISSILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:22:33','1900-01-01 00:00:00',1,0,1),(17851,'25486','Mission','MISSION',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:34','1900-01-01 00:00:00',1,0,1),(17852,'34565','Mississauga','MISSISSAUGA',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:37','1900-01-01 00:00:00',1,0,1),(17853,'28001','Missoula','MISSOULA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:37','1900-01-01 00:00:00',1,0,1),(17854,'30804','Missouri City','MISSOURI CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:38','1900-01-01 00:00:00',1,0,1),(17855,'22793','Mistassini','MISTASSINI',NULL,'','Canada','',0,0,39,'2016-10-17 11:22:38','1900-01-01 00:00:00',1,0,1),(17856,'13005','Misterbianco','MISTERBIANCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:38','1900-01-01 00:00:00',1,0,1),(17857,'8573','Mistley','MISTLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:38','1900-01-01 00:00:00',1,0,1),(17858,'9543','Mistra','MISTRA',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17859,'42330','Mistretta','MISTRETTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17860,'13565','Misurata','MISURATA',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17861,'12136','Misurina','MISURINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17862,'26461','Mitcham','MITCHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17863,'33030','Mitchell','MITCHELL',NULL,'','United States','',0,0,231,'2016-10-17 11:22:39','1900-01-01 00:00:00',1,0,1),(17864,'26369','Mitchell','MITCHELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:40','1900-01-01 00:00:00',1,0,1),(17865,'44177','Mithimna','MITHIMNA',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:40','1900-01-01 00:00:00',1,0,1),(17866,'9544','Mitilini','MITILINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:22:40','1900-01-01 00:00:00',1,0,1),(17867,'13393','Mito','MITO',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:40','1900-01-01 00:00:00',1,0,1),(17868,'11048','Mitspeh Ramon','MITSPEH RAMON',NULL,'','Israel','',0,0,106,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17869,'34246','Mittagong','MITTAGONG',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17870,'24560','Mittelberg','MITTELBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17871,'6774','Mittelhausen','MITTELHAUSEN',NULL,'','France','',0,0,76,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17872,'457','Mittelkalbach','MITTELKALBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17873,'260','Mittenwald','MITTENWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17874,'794','Mittenwalde','MITTENWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17875,'261','Mitterfels','MITTERFELS',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:41','1900-01-01 00:00:00',1,0,1),(17876,'262','Mitterfirmiansreut','MITTERFIRMIANSREUT',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17877,'40440','Mittersill','MITTERSILL',NULL,'','Austria','',0,0,14,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17878,'263','Mitwitz','MITWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17879,'6857','Mitzic','MITZIC',NULL,'','Gabon','',0,0,80,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17880,'42619','Mitzpe Ramon','MITZPE RAMON',NULL,'','Israel','',0,0,106,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17881,'18683','Mi-wuk Village','MI-WUK VILLAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17882,'43179','Miyagi','MIYAGI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17883,'35711','Miyajima Island','MIYAJIMA ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:42','1900-01-01 00:00:00',1,0,1),(17884,'13168','Miyake Jima','MIYAKE JIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17885,'35744','Miyako Jima Island','MIYAKO JIMA ISLAND',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17886,'39604','Miyakojima, Okinawa','MIYAKOJIMA, OKINAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17887,'13299','Miyakonojo','MIYAKONOJO',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17888,'43919','Miyawaka','MIYAWAKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17889,'13300','Miyazaki','MIYAZAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17890,'35743','Miyazu','MIYAZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17891,'23893','Miyun','MIYUN',NULL,'','China','',0,0,46,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17892,'3870','Mizan Teferi','MIZAN TEFERI',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17893,'16769','Mjolby','MJOLBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17894,'32480','Mkambati','MKAMBATI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17895,'32525','Mkuze','MKUZE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17896,'10024','Mlini','MLINI',NULL,'','Croatia','',0,0,55,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17897,'44314','Mljet','MLJET',NULL,'','Croatia','',0,0,55,'2016-10-17 11:22:43','1900-01-01 00:00:00',1,0,1),(17898,'32481','Mmabatho','MMABATHO',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17899,'16396','Mnevniki','MNEVNIKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17900,'33363','Moab','MOAB',NULL,'','United States','',0,0,231,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17901,'6848','Moabi','MOABI',NULL,'','Gabon','',0,0,80,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17902,'4099','Moala','MOALA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17903,'34247','Moama','MOAMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17904,'43028','Moana','MOANA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17905,'41568','Moana','MOANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17906,'10184','Moanamani','MOANAMANI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:22:44','1900-01-01 00:00:00',1,0,1),(17907,'6843','Moanda','MOANDA',NULL,'','Gabon','',0,0,80,'2016-10-17 11:22:45','1900-01-01 00:00:00',1,0,1),(17908,'24030','Moanda','MOANDA',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:22:45','1900-01-01 00:00:00',1,0,1),(17909,'27716','Moberly','MOBERLY',NULL,'','United States','',0,0,231,'2016-10-17 11:22:45','1900-01-01 00:00:00',1,0,1),(17910,'17917','Mobile','MOBILE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:45','1900-01-01 00:00:00',1,0,1),(17911,'33032','Mobridge','MOBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:46','1900-01-01 00:00:00',1,0,1),(17912,'33938','Mocksville','MOCKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:46','1900-01-01 00:00:00',1,0,1),(17913,'31554','Moclips','MOCLIPS',NULL,'','United States','',0,0,231,'2016-10-17 11:22:47','1900-01-01 00:00:00',1,0,1),(17914,'39255','Moconesi','MOCONESI',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:47','1900-01-01 00:00:00',1,0,1),(17915,'6668','Modane','MODANE',NULL,'','France','',0,0,76,'2016-10-17 11:22:47','1900-01-01 00:00:00',1,0,1),(17916,'32582','Modderfontein','MODDERFONTEIN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:22:47','1900-01-01 00:00:00',1,0,1),(17917,'18684','Modesto','MODESTO',NULL,'','United States','',0,0,231,'2016-10-17 11:22:48','1900-01-01 00:00:00',1,0,1),(17918,'12847','Modica','MODICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17919,'27110','Modling','MODLING',NULL,'','Austria','',0,0,14,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17920,'15645','Modlnica','MODLNICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17921,'44047','Modlniczka','MODLNICZKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17922,'12137','Modugno','MODUGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17923,'26523','Moe','MOE',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17924,'5572','Moelan-sur-mer','MOELAN-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17925,'12138','Moena','MOENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:49','1900-01-01 00:00:00',1,0,1),(17926,'1694','Moenchengladbach','MOENCHENGLADBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17927,'14604','Moerdijk','MOERDIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17928,'80','Moerfelden-walldorf','MOERFELDEN-WALLDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17929,'538','Moers','MOERS',NULL,'','Germany','',0,0,83,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17930,'8574','Moffat','MOFFAT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17931,'37164','Moga','MOGA',NULL,'','India','',0,0,101,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17932,'3464','Mogarraz','MOGARRAZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17933,'11301','Moggiona','MOGGIONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:50','1900-01-01 00:00:00',1,0,1),(17934,'25210','Mogi Das Cruzes','MOGI DAS CRUZES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17935,'24896','Mogilev','MOGILEV',NULL,'','Belarus','',0,0,20,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17936,'12899','Mogliano Veneto','MOGLIANO VENETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17937,'36173','Mogro','MOGRO',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17938,'41381','Moguer','MOGUER',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17939,'38793','Mohale','MOHALE',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17940,'40822','Mohali','MOHALI',NULL,'','India','Mohali',19,0,101,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17941,'43970','Mohammedia','MOHAMMEDIA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17942,'10559','Mohan','MOHAN',NULL,'','India','',0,0,101,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17943,'28959','Mohegan Lake','MOHEGAN LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:51','1900-01-01 00:00:00',1,0,1),(17944,'24139','Moheli','MOHELI',NULL,'','Comoros','',0,0,50,'2016-10-17 11:22:52','1900-01-01 00:00:00',1,0,1),(17945,'15311','Mohenjo Daro','MOHENJO DARO',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:22:52','1900-01-01 00:00:00',1,0,1),(17946,'40574','Mohill','MOHILL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:22:52','1900-01-01 00:00:00',1,0,1),(17947,'30064','Mohnton','MOHNTON',NULL,'','United States','',0,0,231,'2016-10-17 11:22:52','1900-01-01 00:00:00',1,0,1),(17948,'14860','Moi','MOI',NULL,'','Norway','',0,0,164,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17949,'42707','Moina','MOINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17950,'12139','Moio Alcantara','MOIO ALCANTARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17951,'28960','Moira','MOIRA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17952,'14921','Mo-i-rana','MO-I-RANA',NULL,'','Norway','',0,0,164,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17953,'4958','Moirans','MOIRANS',NULL,'','France','',0,0,76,'2016-10-17 11:22:53','1900-01-01 00:00:00',1,0,1),(17954,'5110','Moissac','MOISSAC',NULL,'','France','',0,0,76,'2016-10-17 11:22:54','1900-01-01 00:00:00',1,0,1),(17955,'6488','Moissac-bellevue','MOISSAC-BELLEVUE',NULL,'','France','',0,0,76,'2016-10-17 11:22:54','1900-01-01 00:00:00',1,0,1),(17956,'5864','Moissy-cramayel','MOISSY-CRAMAYEL',NULL,'','France','',0,0,76,'2016-10-17 11:22:54','1900-01-01 00:00:00',1,0,1),(17957,'5658','Moisy','MOISY',NULL,'','France','',0,0,76,'2016-10-17 11:22:54','1900-01-01 00:00:00',1,0,1),(17958,'18686','Mojave','MOJAVE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:55','1900-01-01 00:00:00',1,0,1),(17959,'42798','Mojokerto','MOJOKERTO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:22:55','1900-01-01 00:00:00',1,0,1),(17960,'18687','Mokelumne Hill','MOKELUMNE HILL',NULL,'','United States','',0,0,231,'2016-10-17 11:22:55','1900-01-01 00:00:00',1,0,1),(17961,'20657','Mokena','MOKENA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:55','1900-01-01 00:00:00',1,0,1),(17962,'13631','Mokhotlong','MOKHOTLONG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17963,'15697','Mokotow','MOKOTOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17964,'13501','Mokpo','MOKPO',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17965,'35812','Mokpo','MOKPO',NULL,'','South Korea','',0,0,197,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17966,'20080','Mokuleia','MOKULEIA',NULL,'','United States','',0,0,231,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17967,'14402','Mokuti Lodge','MOKUTI LODGE',NULL,'','Namibia','',0,0,151,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17968,'37289','Molazzana','MOLAZZANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:56','1900-01-01 00:00:00',1,0,1),(17969,'2298','Molby','MOLBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17970,'8575','Mold','MOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17971,'14982','Molde','MOLDE',NULL,'','Norway','',0,0,164,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17972,'43667','Mole Creek','MOLE CREEK',NULL,'','Australia','',0,0,13,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17973,'14544','Molenhoek','MOLENHOEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17974,'41384','Molieres','MOLIERES',NULL,'','France','',0,0,76,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17975,'39963','Moliéres','MOLIÉRES',NULL,'','France','',0,0,76,'2016-10-17 11:22:57','1900-01-01 00:00:00',1,0,1),(17976,'5222','Moliets-et-maa','MOLIETS-ET-MAA',NULL,'','France','',0,0,76,'2016-10-17 11:22:58','1900-01-01 00:00:00',1,0,1),(17977,'12140','Molina Di Ledro','MOLINA DI LEDRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:58','1900-01-01 00:00:00',1,0,1),(17978,'39991','Molinaseca','MOLINASECA',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:58','1900-01-01 00:00:00',1,0,1),(17979,'20658','Moline','MOLINE',NULL,'','United States','',0,0,231,'2016-10-17 11:22:58','1900-01-01 00:00:00',1,0,1),(17980,'12141','Molinella','MOLINELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17981,'12142','Molini Di Tures','MOLINI DI TURES',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17982,'2702','Molins De Rei','MOLINS DE REI',NULL,'','Spain','',0,0,199,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17983,'12143','Molise','MOLISE',NULL,'','Italy','',0,0,107,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17984,'4402','Molitg-les-bains','MOLITG-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17985,'8576','Molland','MOLLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17986,'43855','Mollem','MOLLEM',NULL,'','India','',0,0,101,'2016-10-17 11:22:59','1900-01-01 00:00:00',1,0,1),(17987,'2703','Mollet Del Valles','MOLLET DEL VALLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17988,'8577','Mollington','MOLLINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17989,'37687','Mollkirch','MOLLKIRCH',NULL,'','France','',0,0,76,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17990,'728','Molln','MOLLN',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17991,'41492','Mollo','MOLLO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17992,'37945','Molló','MOLLÓ',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17993,'34248','Mollymook','MOLLYMOOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:23:00','1900-01-01 00:00:00',1,0,1),(17994,'16890','Molndal','MOLNDAL',NULL,'','Sweden','',0,0,209,'2016-10-17 11:23:01','1900-01-01 00:00:00',1,0,1),(17995,'6775','Molsheim','MOLSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:23:01','1900-01-01 00:00:00',1,0,1),(17996,'11302','Moltrasio','MOLTRASIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:01','1900-01-01 00:00:00',1,0,1),(17997,'12144','Molveno','MOLVENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:01','1900-01-01 00:00:00',1,0,1),(17998,'39921','Molville','MOLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(17999,'9545','Molyvos','MOLYVOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18000,'11303','Mombaruzzo','MOMBARUZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18001,'13442','Mombasa','MOMBASA',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18002,'35780','Mombasa-bamburi Beac','MOMBASA-BAMBURI BEAC',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18003,'35781','Mombasa-diani','MOMBASA-DIANI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18004,'35782','Mombasa-kikambala','MOMBASA-KIKAMBALA',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18005,'35784','Mombasa-nyali Beach','MOMBASA-NYALI BEACH',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18006,'35785','Mombasa-shanzu Beach','MOMBASA-SHANZU BEACH',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:02','1900-01-01 00:00:00',1,0,1),(18007,'35786','Mombasa-tiwi','MOMBASA-TIWI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18008,'4100','Momi','MOMI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18009,'39165','Mompiche','MOMPICHE',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18010,'42081','Mon State','MON STATE',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18011,'30065','Monaca','MONACA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18012,'3269','Monachil','MONACHIL',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18013,'1589','Monaco','MONACO',NULL,'','France','',0,0,76,'2016-10-17 11:23:03','1900-01-01 00:00:00',1,0,1),(18014,'13715','Monaco','MONACO',NULL,'','Monaco','',0,0,145,'2016-10-17 11:23:04','1900-01-01 00:00:00',1,0,1),(18015,'36227','Monaco-beausoleil','MONACO-BEAUSOLEIL',NULL,'','France','',0,0,76,'2016-10-17 11:23:04','1900-01-01 00:00:00',1,0,1),(18016,'36238','Monaco-cap D\'ail','MONACO-CAP D\'AIL',NULL,'','France','',0,0,76,'2016-10-17 11:23:04','1900-01-01 00:00:00',1,0,1),(18017,'13714','Monaco-ville','MONACO-VILLE',NULL,'','Monaco','Monaco-Ville',0,0,145,'2016-10-17 11:23:04','1900-01-01 00:00:00',1,0,1),(18018,'30805','Monahans','MONAHANS',NULL,'','United States','',0,0,231,'2016-10-17 11:23:05','1900-01-01 00:00:00',1,0,1),(18019,'33493','Monarch','MONARCH',NULL,'','United States','',0,0,231,'2016-10-17 11:23:05','1900-01-01 00:00:00',1,0,1),(18020,'12900','Monastier Di Treviso','MONASTIER DI TREVISO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18021,'17165','Monastir','MONASTIR',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18022,'1470','Monastir- Skanes','MONASTIR- SKANES',NULL,'','TUNISIA','',0,0,220,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18023,'40709','Monastiraki','MONASTIRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18024,'13169','Monbetsu','MONBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18025,'3566','Moncada','MONCADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18026,'12145','Moncalieri','MONCALIERI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18027,'16067','Moncao','MONCAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18028,'15933','Moncarapacho','MONCARAPACHO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:06','1900-01-01 00:00:00',1,0,1),(18029,'6050','Moncel Les Luneville','MONCEL LES LUNEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:23:07','1900-01-01 00:00:00',1,0,1),(18030,'539','Monchengladbach','MONCHENGLADBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:07','1900-01-01 00:00:00',1,0,1),(18031,'2033','Mönchengladbach','MÖNCHENGLADBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:07','1900-01-01 00:00:00',1,0,1),(18032,'30373','Moncks Corner','MONCKS CORNER',NULL,'','United States','',0,0,231,'2016-10-17 11:23:07','1900-01-01 00:00:00',1,0,1),(18033,'44076','Monclar-de-quercy','MONCLAR-DE-QUERCY',NULL,'','France','',0,0,76,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18034,'13961','Monclova','MONCLOVA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18035,'3765','Moncofar','MONCOFAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18036,'5107','Moncoutant','MONCOUTANT',NULL,'','France','',0,0,76,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18037,'28145','Moncton','MONCTON',NULL,'','United States','',0,0,231,'2016-10-17 11:23:08','1900-01-01 00:00:00',1,0,1),(18038,'34406','Moncton','MONCTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18039,'37775','Moncucco Torinese','MONCUCCO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18040,'3270','Monda','MONDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18041,'40062','Mondana','MONDANA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18042,'3670','Mondariz','MONDARIZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18043,'3414','Mondejar','MONDEJAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18044,'41038','Mondello','MONDELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18045,'32410','Mondeor','MONDEOR',NULL,'','South Africa','',0,0,195,'2016-10-17 11:23:09','1900-01-01 00:00:00',1,0,1),(18046,'4872','Mondeville','MONDEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18047,'39274','Mondim De Basto','MONDIM DE BASTO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18048,'3567','Mondonedo','MONDONEDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18049,'13651','Mondorf-les-bains','MONDORF-LES-BAINS',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18050,'31826','Mondovi','MONDOVI',NULL,'','United States','',0,0,231,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18051,'38447','Mondovi','MONDOVI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:10','1900-01-01 00:00:00',1,0,1),(18052,'39395','Mondragone','MONDRAGONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18053,'27138','Mondsee','MONDSEE',NULL,'','Austria','Mondsee',0,0,14,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18054,'42724','Mondulkiri','MONDULKIRI',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18055,'12146','Moneglia','MONEGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18056,'3568','Monells','MONELLS',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:11','1900-01-01 00:00:00',1,0,1),(18057,'9794','Monemvasia','MONEMVASIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18058,'42495','Monemvassia','MONEMVASSIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18059,'30066','Monessen','MONESSEN',NULL,'','United States','',0,0,231,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18060,'5223','Monestier','MONESTIER',NULL,'','France','',0,0,76,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18061,'5474','Moneteau','MONETEAU',NULL,'','France','',0,0,76,'2016-10-17 11:23:12','1900-01-01 00:00:00',1,0,1),(18062,'4404','Monetier-les-bains','MONETIER-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:23:13','1900-01-01 00:00:00',1,0,1),(18063,'27717','Monett','MONETT',NULL,'','United States','',0,0,231,'2016-10-17 11:23:13','1900-01-01 00:00:00',1,0,1),(18064,'44191','Moneymore','MONEYMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:13','1900-01-01 00:00:00',1,0,1),(18065,'8578','Moneyreagh','MONEYREAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:13','1900-01-01 00:00:00',1,0,1),(18066,'37872','Monfalcone','MONFALCONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18067,'5224','Monflanquin','MONFLANQUIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18068,'16018','Monforte','MONFORTE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18069,'37431','Monforte Dalba','MONFORTE DALBA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18070,'3671','Monforte De Lemos','MONFORTE DE LEMOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18071,'39285','Monfortinho','MONFORTINHO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:14','1900-01-01 00:00:00',1,0,1),(18072,'9934','Mong Kok','MONG KOK',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18073,'3569','Mongat','MONGAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18074,'32647','Mongu','MONGU',NULL,'','Zambia','',0,0,242,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18075,'540','Monheim','MONHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18076,'8579','Monifieth','MONIFIETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18077,'12147','Moniga Del Garda','MONIGA DEL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18078,'2704','Monistrol De Montserrat','MONISTROL DE MONTSERRAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18079,'14279','Monkey Bay','MONKEY BAY',NULL,'','Malawi','',0,0,131,'2016-10-17 11:23:15','1900-01-01 00:00:00',1,0,1),(18080,'26603','Monkey Mia','MONKEY MIA',NULL,'','Australia','',0,0,13,'2016-10-17 11:23:16','1900-01-01 00:00:00',1,0,1),(18081,'10849','Monkstown','MONKSTOWN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:23:16','1900-01-01 00:00:00',1,0,1),(18082,'21743','Monkton','MONKTON',NULL,'','United States','',0,0,231,'2016-10-17 11:23:16','1900-01-01 00:00:00',1,0,1),(18083,'8580','Monkton','MONKTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:16','1900-01-01 00:00:00',1,0,1),(18084,'20660','Monmouth','MONMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 11:23:17','1900-01-01 00:00:00',1,0,1),(18085,'8581','Monmouth','MONMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:17','1900-01-01 00:00:00',1,0,1),(18086,'6669','Monnetier-mornex','MONNETIER-MORNEX',NULL,'','France','',0,0,76,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18087,'43346','Monnickendam','MONNICKENDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18088,'16552','Mono Island','MONO ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18089,'38299','Monodendri','MONODENDRI',NULL,'','Greece','',0,0,86,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18090,'31827','Monona','MONONA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18091,'12808','Monopoli','MONOPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18092,'5225','Monpazier','MONPAZIER',NULL,'','France','',0,0,76,'2016-10-17 11:23:18','1900-01-01 00:00:00',1,0,1),(18093,'12148','Monreale','MONREALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:19','1900-01-01 00:00:00',1,0,1),(18094,'22172','Monroe','MONROE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:19','1900-01-01 00:00:00',1,0,1),(18095,'30067','Monroeville','MONROEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:23','1900-01-01 00:00:00',1,0,1),(18096,'18688','Monrovia','MONROVIA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:23','1900-01-01 00:00:00',1,0,1),(18097,'42269','Monrovia','MONROVIA',NULL,'','Liberia','',0,0,122,'2016-10-17 11:23:23','1900-01-01 00:00:00',1,0,1),(18098,'24665','Mons','MONS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18099,'37354','Monsampolo Del Tronto','MONSAMPOLO DEL TRONTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18100,'43331','Monsanto','MONSANTO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18101,'15778','Monsaraz','MONSARAZ',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18102,'42448','Monschau','MONSCHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18103,'12149','Monselice','MONSELICE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18104,'6185','Mons-en-baroeul','MONS-EN-BAROEUL',NULL,'','France','',0,0,76,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18105,'12150','Monsummano','MONSUMMANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:24','1900-01-01 00:00:00',1,0,1),(18106,'14266','Mont Choisy','MONT CHOISY',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:23:25','1900-01-01 00:00:00',1,0,1),(18107,'37825','Monta','MONTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18108,'644','Montabaur','MONTABAUR',NULL,'','Germany','',0,0,83,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18109,'8582','Montacute','MONTACUTE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18110,'11305','Montafia','MONTAFIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18111,'39383','Montagano','MONTAGANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18112,'38605','Montagnac','MONTAGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:23:26','1900-01-01 00:00:00',1,0,1),(18113,'37343','Montagnac-montpezat','MONTAGNAC-MONTPEZAT',NULL,'','France','',0,0,76,'2016-10-17 11:23:27','1900-01-01 00:00:00',1,0,1),(18114,'12151','Montagnana','MONTAGNANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:27','1900-01-01 00:00:00',1,0,1),(18115,'6670','Montagnole','MONTAGNOLE',NULL,'','France','',0,0,76,'2016-10-17 11:23:27','1900-01-01 00:00:00',1,0,1),(18116,'4405','Montagny-lès-beaune','MONTAGNY-LÈS-BEAUNE',NULL,'','France','',0,0,76,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18117,'32386','Montagu','MONTAGU',NULL,'','South Africa','',0,0,195,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18118,'26850','Montagu Bay','MONTAGU BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18119,'22174','Montague','MONTAGUE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18120,'25821','Montague','MONTAGUE',NULL,'','Canada','',0,0,39,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18121,'6114','Montaigu-de-quercy','MONTAIGU-DE-QUERCY',NULL,'','France','',0,0,76,'2016-10-17 11:23:28','1900-01-01 00:00:00',1,0,1),(18122,'6671','Montailleur','MONTAILLEUR',NULL,'','France','',0,0,76,'2016-10-17 11:23:29','1900-01-01 00:00:00',1,0,1),(18123,'12152','Montaione','MONTAIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:29','1900-01-01 00:00:00',1,0,1),(18124,'11306','Montalbano','MONTALBANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:29','1900-01-01 00:00:00',1,0,1),(18125,'12154','Montalcino','MONTALCINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:29','1900-01-01 00:00:00',1,0,1),(18126,'13038','Montaldo Torinese','MONTALDO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18127,'37487','Montale','MONTALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18128,'16075','Montalegre','MONTALEGRE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18129,'28003','Montana City','MONTANA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18130,'3766','Montanejos','MONTANEJOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18131,'41692','Montano Lucino','MONTANO LUCINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:30','1900-01-01 00:00:00',1,0,1),(18132,'18689','Montara','MONTARA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:31','1900-01-01 00:00:00',1,0,1),(18133,'37811','Montargil','MONTARGIL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:31','1900-01-01 00:00:00',1,0,1),(18134,'5659','Montargis','MONTARGIS',NULL,'','France','',0,0,76,'2016-10-17 11:23:31','1900-01-01 00:00:00',1,0,1),(18135,'12155','Montasola','MONTASOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:31','1900-01-01 00:00:00',1,0,1),(18136,'28961','Montauk','MONTAUK',NULL,'','United States','',0,0,231,'2016-10-17 11:23:32','1900-01-01 00:00:00',1,0,1),(18137,'40559','Montauro','MONTAURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:32','1900-01-01 00:00:00',1,0,1),(18138,'6489','Montauroux','MONTAUROUX',NULL,'','France','',0,0,76,'2016-10-17 11:23:32','1900-01-01 00:00:00',1,0,1),(18139,'5475','Montbard','MONTBARD',NULL,'','France','',0,0,76,'2016-10-17 11:23:32','1900-01-01 00:00:00',1,0,1),(18140,'5660','Montbazon','MONTBAZON',NULL,'','France','',0,0,76,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18141,'5781','Montbeliard','MONTBELIARD',NULL,'','France','',0,0,76,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18142,'38586','Montblanc','MONTBLANC',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18143,'4406','Montbonnot Saint Martin','MONTBONNOT SAINT MARTIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18144,'6672','Montboucher-sur-jabron','MONTBOUCHER-SUR-JABRON',NULL,'','France','',0,0,76,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18145,'2705','Montbrio Del Camp','MONTBRIO DEL CAMP',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:33','1900-01-01 00:00:00',1,0,1),(18146,'6673','Montbrison','MONTBRISON',NULL,'','France','',0,0,76,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18147,'6353','Montbron','MONTBRON',NULL,'','France','',0,0,76,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18148,'38560','Montbrun-les-bains','MONTBRUN-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18149,'41496','Montcada Reixac','MONTCADA REIXAC',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18150,'38449','Montcaret','MONTCARET',NULL,'','France','',0,0,76,'2016-10-17 11:23:34','1900-01-01 00:00:00',1,0,1),(18151,'6186','Montcavrel','MONTCAVREL',NULL,'','France','',0,0,76,'2016-10-17 11:23:35','1900-01-01 00:00:00',1,0,1),(18152,'5476','Montceau-les-mines','MONTCEAU-LES-MINES',NULL,'','France','',0,0,76,'2016-10-17 11:23:35','1900-01-01 00:00:00',1,0,1),(18153,'5477','Montchanin','MONTCHANIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:35','1900-01-01 00:00:00',1,0,1),(18154,'19231','Montchanin','MONTCHANIN',NULL,'','United States','',0,0,231,'2016-10-17 11:23:35','1900-01-01 00:00:00',1,0,1),(18155,'4407','Montchavin','MONTCHAVIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:36','1900-01-01 00:00:00',1,0,1),(18157,'18690','Montclair','MONTCLAIR',NULL,'','United States','',0,0,231,'2016-10-17 11:23:36','1900-01-01 00:00:00',1,0,1),(18158,'6490','Montclar','MONTCLAR',NULL,'','France','',0,0,76,'2016-10-17 11:23:37','1900-01-01 00:00:00',1,0,1),(18159,'5940','Montclus','MONTCLUS',NULL,'','France','',0,0,76,'2016-10-17 11:23:37','1900-01-01 00:00:00',1,0,1),(18160,'41382','Mont-de-marsan','MONT-DE-MARSAN',NULL,'','France','',0,0,76,'2016-10-17 11:23:37','1900-01-01 00:00:00',1,0,1),(18161,'4408','Mont-dore','MONT-DORE',NULL,'','France','',0,0,76,'2016-10-17 11:23:37','1900-01-01 00:00:00',1,0,1),(18162,'41154','Monte Cara','MONTE CARA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:23:38','1900-01-01 00:00:00',1,0,1),(18163,'13716','Monte Carlo','MONTE CARLO',NULL,'','Monaco','',0,0,145,'2016-10-17 11:23:38','1900-01-01 00:00:00',1,0,1),(18164,'25104','Monte Dourado','MONTE DOURADO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:23:38','1900-01-01 00:00:00',1,0,1),(18165,'16578','Monte Giardino','MONTE GIARDINO',NULL,'','San Marino','',0,0,184,'2016-10-17 11:23:38','1900-01-01 00:00:00',1,0,1),(18166,'43812','Monte Patria','MONTE PATRIA',NULL,'','Chile','',0,0,45,'2016-10-17 11:23:39','1900-01-01 00:00:00',1,0,1),(18167,'33212','Monteagle','MONTEAGLE',NULL,'','United States','',0,0,231,'2016-10-17 11:23:40','1900-01-01 00:00:00',1,0,1),(18168,'3415','Monteagudo De Las Salinas','MONTEAGUDO DE LAS SALINAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18169,'18692','Montebello','MONTEBELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18170,'22799','Montebello','MONTEBELLO',NULL,'','Canada','',0,0,39,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18171,'39220','Montebello Vicentino','MONTEBELLO VICENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18172,'11310','Montebonello','MONTEBONELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:41','1900-01-01 00:00:00',1,0,1),(18173,'12162','Montecalvo In Foglia','MONTECALVO IN FOGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18174,'40551','Montecarlo','MONTECARLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18175,'12163','Montecassiano','MONTECASSIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18176,'1548','Montecatimi Terme','MONTECATIMI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18177,'1476','Montecatini','MONTECATINI',NULL,'','ITALY','',0,0,107,'2016-10-17 11:23:42','1900-01-01 00:00:00',1,0,1),(18178,'42331','Montecatini-fucecchio','MONTECATINI-FUCECCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:43','1900-01-01 00:00:00',1,0,1),(18179,'18693','Montecito','MONTECITO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:43','1900-01-01 00:00:00',1,0,1),(18180,'11313','Montecopiolo','MONTECOPIOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18181,'3271','Montecorto','MONTECORTO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18182,'39398','Montecorvino Rovella','MONTECORVINO ROVELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18183,'12165','Montefalco','MONTEFALCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18184,'12166','Montefano','MONTEFANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18185,'3272','Montefrio','MONTEFRIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18186,'12167','Montegabbione','MONTEGABBIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:44','1900-01-01 00:00:00',1,0,1),(18187,'35580','Monteggiori','MONTEGGIORI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18188,'13091','Montego Bay','MONTEGO BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18189,'11314','Montegridolfo','MONTEGRIDOLFO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18190,'12168','Montegrotto Terme','MONTEGROTTO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18191,'5941','Monteils','MONTEILS',NULL,'','France','',0,0,76,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18192,'39069','Montejaque','MONTEJAQUE',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:45','1900-01-01 00:00:00',1,0,1),(18193,'12169','Montelanico','MONTELANICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18194,'12170','Monteleone D\'orvieto','MONTELEONE D\'ORVIETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18195,'4907','Montelimar','MONTELIMAR',NULL,'','France','',0,0,76,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18196,'14439','Montelimar','MONTELIMAR',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18197,'40522','Montellano','MONTELLANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18198,'32836','Montello','MONTELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:46','1900-01-01 00:00:00',1,0,1),(18199,'12171','Montelupo Albese','MONTELUPO ALBESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18200,'39504','Montelupone','MONTELUPONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18201,'12173','Montemaggiore Al Metauro','MONTEMAGGIORE AL METAURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18202,'39360','Montemarciano','MONTEMARCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18203,'12174','Montemerano','MONTEMERANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:47','1900-01-01 00:00:00',1,0,1),(18204,'39637','Montemignaio','MONTEMIGNAIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18205,'37752','Montemitro','MONTEMITRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18206,'40443','Montemor-o-novo','MONTEMOR-O-NOVO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18207,'12175','Montemurlo','MONTEMURLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18208,'1379','Montenegro','MONTENEGRO',NULL,'','MONTENEGRO','',0,0,466,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18209,'32364','Montenegro Coast','MONTENEGRO COAST',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18210,'42327','Montenero','MONTENERO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:48','1900-01-01 00:00:00',1,0,1),(18211,'11315','Montepaone Lido','MONTEPAONE LIDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18212,'37809','Monteprandone','MONTEPRANDONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18213,'12176','Montepulciano','MONTEPULCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18214,'12746','Montereale Valcellina','MONTEREALE VALCELLINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18215,'12177','Monterenzio','MONTERENZIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:49','1900-01-01 00:00:00',1,0,1),(18216,'18694','Monterey','MONTEREY',NULL,'','United States','',0,0,231,'2016-10-17 11:23:50','1900-01-01 00:00:00',1,0,1),(18217,'24079','Monteria','MONTERIA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:23:51','1900-01-01 00:00:00',1,0,1),(18218,'12178','Monteriggioni','MONTERIGGIONI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:51','1900-01-01 00:00:00',1,0,1),(18219,'12179','Monteroni D\'arbia','MONTERONI D\'ARBIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:51','1900-01-01 00:00:00',1,0,1),(18220,'43108','Monterosso - Sicily','MONTEROSSO - SICILY',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18221,'12182','Monterotondo','MONTEROTONDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18222,'13908','Monterrey','MONTERREY',NULL,'','Mexico','',0,0,141,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18223,'25090','Montes Claros','MONTES CLAROS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18224,'15936','Montes De Alvor','MONTES DE ALVOR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18225,'41595','Montes De Malaga','MONTES DE MALAGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18226,'39654','Montesano Salentino','MONTESANO SALENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:52','1900-01-01 00:00:00',1,0,1),(18227,'11316','Montescudaio','MONTESCUDAIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18228,'12183','Montesilvano','MONTESILVANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18229,'12184','Montespertoli','MONTESPERTOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18230,'4755','Montesson','MONTESSON',NULL,'','France','',0,0,76,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18231,'40023','Monteux','MONTEUX',NULL,'','France','',0,0,76,'2016-10-17 11:23:53','1900-01-01 00:00:00',1,0,1),(18232,'17921','Montevallo','MONTEVALLO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18233,'12185','Montevarchi','MONTEVARCHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18234,'39741','Monteveglio','MONTEVEGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18235,'24231','Monteverde','MONTEVERDE',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18236,'11317','Monteverde Nuovo','MONTEVERDE NUOVO',NULL,'','Italy','',0,0,107,'2016-10-17 11:23:54','1900-01-01 00:00:00',1,0,1),(18237,'17535','Montevideo','MONTEVIDEO',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18238,'27451','Montevideo','MONTEVIDEO',NULL,'','United States','',0,0,231,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18239,'5865','Montevrain','MONTEVRAIN',NULL,'','France','',0,0,76,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18240,'37692','Montezillon','MONTEZILLON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18241,'20945','Montezuma','MONTEZUMA',NULL,'','United States','',0,0,231,'2016-10-17 11:23:55','1900-01-01 00:00:00',1,0,1),(18242,'912','Montezuma','MONTEZUMA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:23:56','1900-01-01 00:00:00',1,0,1),(18243,'6491','Montfavet','MONTFAVET',NULL,'','France','',0,0,76,'2016-10-17 11:23:56','1900-01-01 00:00:00',1,0,1),(18244,'3570','Montferrer','MONTFERRER',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:56','1900-01-01 00:00:00',1,0,1),(18245,'3571','Montferri','MONTFERRI',NULL,'','Spain','',0,0,199,'2016-10-17 11:23:56','1900-01-01 00:00:00',1,0,1),(18246,'5942','Montferrier-sur-lez','MONTFERRIER-SUR-LEZ',NULL,'','France','',0,0,76,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18247,'37788','Montfoort','MONTFOORT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18248,'4409','Montfort Le Gesnois','MONTFORT LE GESNOIS',NULL,'','France','',0,0,76,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18249,'5573','Montfort-sur-meu','MONTFORT-SUR-MEU',NULL,'','France','',0,0,76,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18250,'6492','Montgenevre','MONTGENEVRE',NULL,'','France','',0,0,76,'2016-10-17 11:23:57','1900-01-01 00:00:00',1,0,1),(18251,'4756','Montgeron','MONTGERON',NULL,'','France','',0,0,76,'2016-10-17 11:23:58','1900-01-01 00:00:00',1,0,1),(18252,'20946','Montgomery','MONTGOMERY',NULL,'','United States','',0,0,231,'2016-10-17 11:23:58','1900-01-01 00:00:00',1,0,1),(18253,'8583','Montgomery','MONTGOMERY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:00','1900-01-01 00:00:00',1,0,1),(18254,'25338','Montgomery - University Of Calgary','MONTGOMERY - UNIVERSITY OF CALGARY',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:00','1900-01-01 00:00:00',1,0,1),(18255,'30068','Montgomeryville','MONTGOMERYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18256,'39449','Monthey','MONTHEY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18257,'4834','Monthieux','MONTHIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18258,'11318','Monticelli Terme','MONTICELLI TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18259,'4757','Monticello','MONTICELLO',NULL,'','France','',0,0,76,'2016-10-17 11:24:01','1900-01-01 00:00:00',1,0,1),(18260,'19498','Monticello','MONTICELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:24:02','1900-01-01 00:00:00',1,0,1),(18261,'12186','Montichiari','MONTICHIARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18262,'12187','Monticiano','MONTICIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18263,'12188','Montieri','MONTIERI',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18264,'4904','Montignac','MONTIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18265,'12189','Montignoso','MONTIGNOSO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18266,'5329','Montigny','MONTIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:24:07','1900-01-01 00:00:00',1,0,1),(18267,'5478','Montigny-en-morvan','MONTIGNY-EN-MORVAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:08','1900-01-01 00:00:00',1,0,1),(18268,'40299','Montigny-la-resle','MONTIGNY-LA-RESLE',NULL,'','France','',0,0,76,'2016-10-17 11:24:08','1900-01-01 00:00:00',1,0,1),(18269,'4758','Montigny-le-bretonneux','MONTIGNY-LE-BRETONNEUX',NULL,'','France','',0,0,76,'2016-10-17 11:24:08','1900-01-01 00:00:00',1,0,1),(18270,'38344','Montigny-le-roi','MONTIGNY-LE-ROI',NULL,'','France','',0,0,76,'2016-10-17 11:24:08','1900-01-01 00:00:00',1,0,1),(18271,'3273','Montilla','MONTILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18272,'11319','Montirone','MONTIRONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18273,'35583','Montisi','MONTISI',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18274,'5823','Montivilliers','MONTIVILLIERS',NULL,'','France','',0,0,76,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18275,'22801','Mont-laurier','MONT-LAURIER',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:09','1900-01-01 00:00:00',1,0,1),(18276,'4759','Montlhery','MONTLHERY',NULL,'','France','',0,0,76,'2016-10-17 11:24:10','1900-01-01 00:00:00',1,0,1),(18277,'44077','Montlivault','MONTLIVAULT',NULL,'','France','',0,0,76,'2016-10-17 11:24:10','1900-01-01 00:00:00',1,0,1),(18278,'5943','Mont-louis','MONT-LOUIS',NULL,'','France','',0,0,76,'2016-10-17 11:24:10','1900-01-01 00:00:00',1,0,1),(18279,'5661','Montlouis-sur-loire','MONTLOUIS-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:24:10','1900-01-01 00:00:00',1,0,1),(18280,'5330','Montlucon','MONTLUCON',NULL,'','France','',0,0,76,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18281,'6674','Montluel','MONTLUEL',NULL,'','France','',0,0,76,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18282,'22802','Montmagny','MONTMAGNY',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18283,'4410','Montmartre','MONTMARTRE',NULL,'','France','',0,0,76,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18284,'40710','Montmelard','MONTMELARD',NULL,'','France','',0,0,76,'2016-10-17 11:24:11','1900-01-01 00:00:00',1,0,1),(18285,'6675','Montmelian','MONTMELIAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:12','1900-01-01 00:00:00',1,0,1),(18286,'3572','Montmelo','MONTMELO',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:12','1900-01-01 00:00:00',1,0,1),(18287,'26524','Montmorency','MONTMORENCY',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:12','1900-01-01 00:00:00',1,0,1),(18288,'6354','Montmorillon','MONTMORILLON',NULL,'','France','',0,0,76,'2016-10-17 11:24:12','1900-01-01 00:00:00',1,0,1),(18289,'38768','Montone','MONTONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:13','1900-01-01 00:00:00',1,0,1),(18290,'11320','Montopoli Val D Arno','MONTOPOLI VAL D ARNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:13','1900-01-01 00:00:00',1,0,1),(18291,'30807','Montopolis','MONTOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:13','1900-01-01 00:00:00',1,0,1),(18292,'3465','Montorio','MONTORIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:13','1900-01-01 00:00:00',1,0,1),(18293,'3573','Montornes Del Valles','MONTORNES DEL VALLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:14','1900-01-01 00:00:00',1,0,1),(18294,'38106','Montoro','MONTORO',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:14','1900-01-01 00:00:00',1,0,1),(18295,'37351','Montory','MONTORY',NULL,'','France','',0,0,76,'2016-10-17 11:24:14','1900-01-01 00:00:00',1,0,1),(18296,'28965','Montour Falls','MONTOUR FALLS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:14','1900-01-01 00:00:00',1,0,1),(18297,'30069','Montoursville','MONTOURSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:15','1900-01-01 00:00:00',1,0,1),(18298,'4411','Montparnasse','MONTPARNASSE',NULL,'','France','',0,0,76,'2016-10-17 11:24:15','1900-01-01 00:00:00',1,0,1),(18299,'20378','Montpelier','MONTPELIER',NULL,'','United States','',0,0,231,'2016-10-17 11:24:15','1900-01-01 00:00:00',1,0,1),(18300,'5944','Montpellier','MONTPELLIER',NULL,'','France','',0,0,76,'2016-10-17 11:24:16','1900-01-01 00:00:00',1,0,1),(18301,'22803','Montreal','MONTREAL',NULL,'','Canada','Montreal',0,0,39,'2016-10-17 11:24:16','1900-01-01 00:00:00',1,0,1),(18302,'35982','Montreal-dorval','MONTREAL-DORVAL',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:17','1900-01-01 00:00:00',1,0,1),(18303,'22805','Montreal-est','MONTREAL-EST',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:17','1900-01-01 00:00:00',1,0,1),(18304,'22806','Montreal-nord','MONTREAL-NORD',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:17','1900-01-01 00:00:00',1,0,1),(18305,'6255','Montrelais','MONTRELAIS',NULL,'','France','',0,0,76,'2016-10-17 11:24:17','1900-01-01 00:00:00',1,0,1),(18306,'6256','Montreuil-bellay','MONTREUIL-BELLAY',NULL,'','France','',0,0,76,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18307,'6187','Montreuil-sur-mer','MONTREUIL-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18308,'23290','Montreux','MONTREUX',NULL,'','Switzerland','Montreux',0,0,210,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18309,'5662','Montrichard','MONTRICHARD',NULL,'','France','',0,0,76,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18310,'6676','Montriond','MONTRIOND',NULL,'','France','',0,0,76,'2016-10-17 11:24:18','1900-01-01 00:00:00',1,0,1),(18311,'2707','Mont-roig Del Camp','MONT-ROIG DEL CAMP',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:19','1900-01-01 00:00:00',1,0,1),(18312,'6677','Montrond-les-bains','MONTROND-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:24:19','1900-01-01 00:00:00',1,0,1),(18313,'8584','Montrose','MONTROSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:19','1900-01-01 00:00:00',1,0,1),(18314,'33495','Montrose','MONTROSE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:19','1900-01-01 00:00:00',1,0,1),(18315,'31177','Montross','MONTROSS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:20','1900-01-01 00:00:00',1,0,1),(18316,'4760','Montrouge','MONTROUGE',NULL,'','France','',0,0,76,'2016-10-17 11:24:20','1900-01-01 00:00:00',1,0,1),(18317,'22807','Mont-royal','MONT-ROYAL',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:20','1900-01-01 00:00:00',1,0,1),(18318,'6115','Montrozier','MONTROZIER',NULL,'','France','',0,0,76,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18319,'5824','Mont-saint-aignan','MONT-SAINT-AIGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18320,'5479','Mont-saint-jean','MONT-SAINT-JEAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18321,'5741','Mont-saint-martin','MONT-SAINT-MARTIN',NULL,'','France','',0,0,76,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18322,'3574','Montseny','MONTSENY',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:21','1900-01-01 00:00:00',1,0,1),(18323,'5945','Montseret','MONTSERET',NULL,'','France','',0,0,76,'2016-10-17 11:24:22','1900-01-01 00:00:00',1,0,1),(18324,'14227','Montserrat','MONTSERRAT',NULL,'','Montserrat','',0,0,147,'2016-10-17 11:24:22','1900-01-01 00:00:00',1,0,1),(18325,'37340','Montsoreau','MONTSOREAU',NULL,'','France','',0,0,76,'2016-10-17 11:24:22','1900-01-01 00:00:00',1,0,1),(18326,'4761','Montsoult','MONTSOULT',NULL,'','France','',0,0,76,'2016-10-17 11:24:22','1900-01-01 00:00:00',1,0,1),(18327,'22808','Mont-tremblant','MONT-TREMBLANT',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:23','1900-01-01 00:00:00',1,0,1),(18328,'2911','Montuiri','MONTUIRI',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:23','1900-01-01 00:00:00',1,0,1),(18329,'28344','Montvale','MONTVALE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:23','1900-01-01 00:00:00',1,0,1),(18330,'6821','Montvalezan','MONTVALEZAN',NULL,'','France','',0,0,76,'2016-10-17 11:24:24','1900-01-01 00:00:00',1,0,1),(18331,'38230','Montville','MONTVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:24','1900-01-01 00:00:00',1,0,1),(18332,'33497','Monument','MONUMENT',NULL,'','United States','',0,0,231,'2016-10-17 11:24:24','1900-01-01 00:00:00',1,0,1),(18333,'42064','Monywa','MONYWA',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:24:25','1900-01-01 00:00:00',1,0,1),(18334,'12190','Monza','MONZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18335,'12191','Monzambano','MONZAMBANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18336,'3334','Monzon','MONZON',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18337,'12192','Monzuno','MONZUNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18338,'19111','Moodus','MOODUS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:26','1900-01-01 00:00:00',1,0,1),(18339,'21896','Moody','MOODY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:27','1900-01-01 00:00:00',1,0,1),(18340,'44259','Moofushi Island','MOOFUSHI ISLAND',NULL,'','Maldives','',0,0,133,'2016-10-17 11:24:27','1900-01-01 00:00:00',1,0,1),(18341,'26273','Moomba','MOOMBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:27','1900-01-01 00:00:00',1,0,1),(18342,'26525','Moonee Ponds','MOONEE PONDS',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:28','1900-01-01 00:00:00',1,0,1),(18343,'26274','Moonlight Head','MOONLIGHT HEAD',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:28','1900-01-01 00:00:00',1,0,1),(18344,'40079','Moonrooka','MOONROOKA',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:28','1900-01-01 00:00:00',1,0,1),(18345,'26918','Moorabbin','MOORABBIN',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:28','1900-01-01 00:00:00',1,0,1),(18346,'16126','Moorea','MOOREA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18347,'36532','Moorea-cooks Bay','MOOREA-COOKS BAY',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18348,'36533','Moorea-hauru Point','MOOREA-HAURU POINT',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18349,'36535','Moorea-maharepa','MOOREA-MAHAREPA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18350,'36534','Moorea-temae','MOOREA-TEMAE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18351,'32014','Moorefield','MOOREFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:24:29','1900-01-01 00:00:00',1,0,1),(18352,'33940','Mooresville','MOORESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:30','1900-01-01 00:00:00',1,0,1),(18353,'27454','Moorhead','MOORHEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:24:30','1900-01-01 00:00:00',1,0,1),(18354,'26526','Moorooduc','MOOROODUC',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:30','1900-01-01 00:00:00',1,0,1),(18355,'264','Moosach','MOOSACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18356,'42236','Moosburg','MOOSBURG',NULL,'','Austria','',0,0,14,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18357,'39994','Moosburg','MOOSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18358,'32118','Moose','MOOSE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18359,'22954','Moose Jaw','MOOSE JAW',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:31','1900-01-01 00:00:00',1,0,1),(18360,'22955','Moosejaw','MOOSEJAW',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:32','1900-01-01 00:00:00',1,0,1),(18361,'30071','Moosic','MOOSIC',NULL,'','United States','',0,0,231,'2016-10-17 11:24:32','1900-01-01 00:00:00',1,0,1),(18362,'5047','Mooslargue','MOOSLARGUE',NULL,'','France','',0,0,76,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18363,'34566','Moosonee','MOOSONEE',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18364,'19112','Moosup','MOOSUP',NULL,'','United States','',0,0,231,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18365,'42196','Moquehue','MOQUEHUE',NULL,'','Argentina','',0,0,10,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18366,'16836','Mora','MORA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:24:33','1900-01-01 00:00:00',1,0,1),(18367,'3335','Mora De Rubielos','MORA DE RUBIELOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18368,'10684','Moradabad','MORADABAD',NULL,'','India','',0,0,101,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18369,'38407','Morafenobe','MORAFENOBE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18370,'18697','Moraga','MORAGA',NULL,'','United States','',0,0,231,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18371,'13619','Moragalla','MORAGALLA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:24:34','1900-01-01 00:00:00',1,0,1),(18372,'29441','Moraine','MORAINE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18373,'41428','Moraira','MORAIRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18374,'9778','Moraitika','MORAITIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18375,'38609','Moralzarzal','MORALZARZAL',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18376,'31178','Moran','MORAN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:35','1900-01-01 00:00:00',1,0,1),(18377,'39352','Morana','MORANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:37','1900-01-01 00:00:00',1,0,1),(18378,'26275','Moranbah','MORANBAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:37','1900-01-01 00:00:00',1,0,1),(18379,'6678','Morance','MORANCE',NULL,'','France','',0,0,76,'2016-10-17 11:24:37','1900-01-01 00:00:00',1,0,1),(18380,'4762','Morangis','MORANGIS',NULL,'','France','',0,0,76,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18381,'40201','Morannes','MORANNES',NULL,'','France','',0,0,76,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18382,'12193','Morano Calabro','MORANO CALABRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18383,'3002','Moratalaz','MORATALAZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18384,'3038','Moratalla','MORATALLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:38','1900-01-01 00:00:00',1,0,1),(18385,'13606','Moratuwa','MORATUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18386,'24292','Moravian Silesian','MORAVIAN SILESIAN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18387,'38600','Moravske Toplice','MORAVSKE TOPLICE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18388,'26604','Morawa','MORAWA',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18389,'44048','Morawica','MORAWICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18390,'7211','Moray','MORAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18391,'9969','Morazan','MORAZAN',NULL,'','Honduras','',0,0,97,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18392,'43590','Morbisch Am See','MORBISCH AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18393,'38849','Morciano Di Leuca','MORCIANO DI LEUCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:39','1900-01-01 00:00:00',1,0,1),(18394,'23291','Morcote','MORCOTE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18395,'12194','Mordano','MORDANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18396,'25612','Morden','MORDEN',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18397,'8585','Morden','MORDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18398,'36810','Mordogan','MORDOGAN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18399,'14810','More Og Romsdal','MORE OG ROMSDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18400,'8586','Morecambe','MORECAMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18401,'34249','Moree','MOREE',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:40','1900-01-01 00:00:00',1,0,1),(18402,'44166','Moree','MOREE',NULL,'','Ghana','',0,0,84,'2016-10-17 11:24:41','1900-01-01 00:00:00',1,0,1),(18403,'33694','Morehead','MOREHEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:24:41','1900-01-01 00:00:00',1,0,1),(18404,'23292','Morel','MOREL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:42','1900-01-01 00:00:00',1,0,1),(18405,'14043','Morelia','MORELIA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:24:42','1900-01-01 00:00:00',1,0,1),(18406,'25822','Morell','MORELL',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:42','1900-01-01 00:00:00',1,0,1),(18407,'3767','Morella','MORELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:42','1900-01-01 00:00:00',1,0,1),(18408,'18698','Moreno Valley','MORENO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:43','1900-01-01 00:00:00',1,0,1),(18409,'4413','Moret Sur Loing','MORET SUR LOING',NULL,'','France','',0,0,76,'2016-10-17 11:24:43','1900-01-01 00:00:00',1,0,1),(18410,'42231','Moreton Island','MORETON ISLAND',NULL,'','Australia','Moreton Island',0,0,13,'2016-10-17 11:24:43','1900-01-01 00:00:00',1,0,1),(18411,'7212','Moreton-in-marsh','MORETON-IN-MARSH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:43','1900-01-01 00:00:00',1,0,1),(18412,'31356','Moretown','MORETOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:44','1900-01-01 00:00:00',1,0,1),(18413,'40680','Morey-saint-denis','MOREY-SAINT-DENIS',NULL,'','France','',0,0,76,'2016-10-17 11:24:44','1900-01-01 00:00:00',1,0,1),(18414,'41016','Morfelden-walldorf','MORFELDEN-WALLDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:44','1900-01-01 00:00:00',1,0,1),(18415,'31357','Morgan','MORGAN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:45','1900-01-01 00:00:00',1,0,1),(18416,'24886','Morgan\'s Bluff','MORGAN\'S BLUFF',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:24:46','1900-01-01 00:00:00',1,0,1),(18417,'33943','Morganton','MORGANTON',NULL,'','United States','',0,0,231,'2016-10-17 11:24:46','1900-01-01 00:00:00',1,0,1),(18418,'30072','Morgantown','MORGANTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:46','1900-01-01 00:00:00',1,0,1),(18419,'5574','Morgat','MORGAT',NULL,'','France','',0,0,76,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18420,'15006','Morgedal','MORGEDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18421,'37593','Morgenrothe-rautenkranz','MORGENROTHE-RAUTENKRANZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18422,'23060','Morges','MORGES',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18423,'6051','Morhange','MORHANGE',NULL,'','France','',0,0,76,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18424,'28549','Moriarty','MORIARTY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:48','1900-01-01 00:00:00',1,0,1),(18425,'6493','Morieres-les-avignon','MORIERES-LES-AVIGNON',NULL,'','France','',0,0,76,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18426,'40533','Morigerati','MORIGERATI',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18427,'13301','Moriguchi','MORIGUCHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18428,'12195','Morimondo','MORIMONDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18429,'13394','Morioka','MORIOKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:24:49','1900-01-01 00:00:00',1,0,1),(18430,'23293','Morissen','MORISSEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18431,'1893','Moritzburg','MORITZBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18432,'42888','Moriyama','MORIYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18433,'4913','Morlaix','MORLAIX',NULL,'','France','',0,0,76,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18434,'25339','Morley','MORLEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18435,'7213','Morley','MORLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18436,'38779','Morley','MORLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:50','1900-01-01 00:00:00',1,0,1),(18437,'23061','Morlon','MORLON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18438,'18169','Mormon Lake','MORMON LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18439,'6494','Mornas','MORNAS',NULL,'','France','',0,0,76,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18440,'38837','Mornico Losana','MORNICO LOSANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18441,'8588','Morningside','MORNINGSIDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:51','1900-01-01 00:00:00',1,0,1),(18442,'32526','Morningside','MORNINGSIDE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18443,'40764','Morningside','MORNINGSIDE',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18444,'26919','Mornington','MORNINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18445,'32482','Moroka','MOROKA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18446,'37708','Morombe','MOROMBE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18447,'26078','Moron','MORON',NULL,'','Argentina','',0,0,10,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18448,'39640','Morondava','MORONDAVA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18449,'18700','Morongo Valley','MORONGO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:52','1900-01-01 00:00:00',1,0,1),(18450,'24140','Moroni','MORONI',NULL,'','Comoros','',0,0,50,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18451,'10185','Morotai Island','MOROTAI ISLAND',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18452,'34250','Morpeth','MORPETH',NULL,'','Australia','',0,0,13,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18453,'8589','Morpeth','MORPETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18454,'28146','Morrill','MORRILL',NULL,'','United States','',0,0,231,'2016-10-17 11:24:53','1900-01-01 00:00:00',1,0,1),(18455,'18057','Morrilton','MORRILTON',NULL,'','United States','',0,0,231,'2016-10-17 11:24:54','1900-01-01 00:00:00',1,0,1),(18456,'20662','Morris','MORRIS',NULL,'','United States','',0,0,231,'2016-10-17 11:24:54','1900-01-01 00:00:00',1,0,1),(18457,'25613','Morris','MORRIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:54','1900-01-01 00:00:00',1,0,1),(18458,'34567','Morrisburg','MORRISBURG',NULL,'','Canada','',0,0,39,'2016-10-17 11:24:56','1900-01-01 00:00:00',1,0,1),(18459,'33498','Morrison','MORRISON',NULL,'','United States','',0,0,231,'2016-10-17 11:24:56','1900-01-01 00:00:00',1,0,1),(18460,'28347','Morristown','MORRISTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:24:57','1900-01-01 00:00:00',1,0,1),(18461,'33944','Morrisville','MORRISVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:24:58','1900-01-01 00:00:00',1,0,1),(18462,'18701','Morro Bay','MORRO BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:24:59','1900-01-01 00:00:00',1,0,1),(18463,'24990','Morro De Sao Paulo','MORRO DE SAO PAULO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:24:59','1900-01-01 00:00:00',1,0,1),(18464,'3112','Morro Del Jable','MORRO DEL JABLE',NULL,'','Spain','',0,0,199,'2016-10-17 11:24:59','1900-01-01 00:00:00',1,0,1),(18465,'37823','Morrovalle','MORROVALLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:24:59','1900-01-01 00:00:00',1,0,1),(18466,'19881','Morrow','MORROW',NULL,'','United States','',0,0,231,'2016-10-17 11:25:00','1900-01-01 00:00:00',1,0,1),(18467,'6776','Morsbronn-les-bains','MORSBRONN-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:25:00','1900-01-01 00:00:00',1,0,1),(18468,'23294','Morschach','MORSCHACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:25:00','1900-01-01 00:00:00',1,0,1),(18469,'5986','Morschwiller-le-bas','MORSCHWILLER-LE-BAS',NULL,'','France','',0,0,76,'2016-10-17 11:25:00','1900-01-01 00:00:00',1,0,1),(18470,'39374','Mortagne-au-perche','MORTAGNE-AU-PERCHE',NULL,'','France','',0,0,76,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18471,'6257','Mortagne-sur-sevre','MORTAGNE-SUR-SEVRE',NULL,'','France','',0,0,76,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18472,'42771','Mortagua','MORTAGUA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18473,'39937','Mortain','MORTAIN',NULL,'','France','',0,0,76,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18474,'11321','Mortelle','MORTELLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18475,'27458','Morton','MORTON',NULL,'','United States','',0,0,231,'2016-10-17 11:25:01','1900-01-01 00:00:00',1,0,1),(18476,'33697','Mortons Gap','MORTONS GAP',NULL,'','United States','',0,0,231,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18477,'25074','Morumbi','MORUMBI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18478,'34251','Moruya','MORUYA',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18479,'26920','Morwell','MORWELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18480,'37836','Mory','MORY',NULL,'','Poland','',0,0,174,'2016-10-17 11:25:03','1900-01-01 00:00:00',1,0,1),(18481,'5086','Morzine','MORZINE',NULL,'','France','',0,0,76,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18482,'40278','Mosbach','MOSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18483,'33499','Mosca','MOSCA',NULL,'','United States','',0,0,231,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18484,'2912','Moscari','MOSCARI',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18485,'10025','Moscenicka Draga','MOSCENICKA DRAGA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18486,'12196','Mosciano','MOSCIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:04','1900-01-01 00:00:00',1,0,1),(18487,'20379','Moscow','MOSCOW',NULL,'','United States','',0,0,231,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18488,'16271','Moscow','MOSCOW',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18489,'36644','Moscow-domodedovo','MOSCOW-DOMODEDOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18490,'36646','Moscow-nakhabino','MOSCOW-NAKHABINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18491,'36648','Moscow-sheremetyevo','MOSCOW-SHEREMETYEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18492,'81','Moselle - Nahe','MOSELLE - NAHE',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:05','1900-01-01 00:00:00',1,0,1),(18493,'17704','Moser Bay','MOSER BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:25:06','1900-01-01 00:00:00',1,0,1),(18494,'31557','Moses Lake','MOSES LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:06','1900-01-01 00:00:00',1,0,1),(18495,'11001','Mosfellsbaer','MOSFELLSBAER',NULL,'','Iceland','Mosfellsbaer',0,0,100,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18496,'1660','Moshav Neve Ativ','MOSHAV NEVE ATIV',NULL,'','Israel','',0,0,106,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18497,'37910','Moshi','MOSHI',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18498,'31829','Mosinee','MOSINEE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18499,'14922','Mosjoen','MOSJOEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18500,'9699','Moskhaton','MOSKHATON',NULL,'','Greece','',0,0,86,'2016-10-17 11:25:07','1900-01-01 00:00:00',1,0,1),(18501,'5411','Mosles','MOSLES',NULL,'','France','',0,0,76,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18502,'34252','Mosman','MOSMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18503,'5663','Mosnes','MOSNES',NULL,'','France','',0,0,76,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18504,'37098','Moso Island','MOSO ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18505,'10078','Mosonmagyarovar','MOSONMAGYAROVAR',NULL,'','Hungary','',0,0,99,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18506,'14962','Moss','MOSS',NULL,'','Norway','',0,0,164,'2016-10-17 11:25:08','1900-01-01 00:00:00',1,0,1),(18507,'18702','Moss Beach','MOSS BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:25:09','1900-01-01 00:00:00',1,0,1),(18508,'34253','Moss Vale','MOSS VALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18509,'32387','Mossel Bay','MOSSEL BAY',NULL,'','South Africa','Mossel Bay',0,0,195,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18510,'24054','Mossendjo','MOSSENDJO',NULL,'','Congo','',0,0,51,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18511,'26729','Mossman','MOSSMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18512,'40338','Mossoro','MOSSORO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18513,'37624','Most','MOST',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18514,'38930','Most Na Soci','MOST NA SOCI',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18515,'24892','Mostar','MOSTAR',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18516,'14811','Mosteroy','MOSTEROY',NULL,'','Norway','',0,0,164,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18517,'3003','Mostoles','MOSTOLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:10','1900-01-01 00:00:00',1,0,1),(18518,'38736','Mostov','MOSTOV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18519,'3416','Mota Del Cuervo','MOTA DEL CUERVO',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18520,'32320','Mota Lava','MOTA LAVA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18521,'16770','Motala','MOTALA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18522,'8590','Motherwell','MOTHERWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18523,'3417','Motilla Del Palancar','MOTILLA DEL PALANCAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18524,'27459','Motley','MOTLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:25:11','1900-01-01 00:00:00',1,0,1),(18525,'39107','Motobu','MOTOBU',NULL,'','Japan','',0,0,110,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18526,'40301','Motovun','MOTOVUN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18527,'3274','Motril','MOTRIL',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18528,'37250','Motshane','MOTSHANE',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18529,'11322','Motta Camastra','MOTTA CAMASTRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18530,'39415','Motten','MOTTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:12','1900-01-01 00:00:00',1,0,1),(18531,'12197','Mottola','MOTTOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:13','1900-01-01 00:00:00',1,0,1),(18532,'40925','Mottram St Andrew','MOTTRAM ST ANDREW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:13','1900-01-01 00:00:00',1,0,1),(18533,'15134','Motueka','MOTUEKA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:25:13','1900-01-01 00:00:00',1,0,1),(18534,'4415','Mouans Sartoux','MOUANS SARTOUX',NULL,'','France','',0,0,76,'2016-10-17 11:25:13','1900-01-01 00:00:00',1,0,1),(18535,'42353','Mouans-sartoux','MOUANS-SARTOUX',NULL,'','France','',0,0,76,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18536,'5331','Moudeyres','MOUDEYRES',NULL,'','France','',0,0,76,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18537,'6495','Mougins','MOUGINS',NULL,'','France','',0,0,76,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18538,'6847','Mouila','MOUILA',NULL,'','Gabon','',0,0,80,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18539,'32483','Mouille Point','MOUILLE POINT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18540,'6258','Mouilleron-le-captif','MOUILLERON-LE-CAPTIF',NULL,'','France','',0,0,76,'2016-10-17 11:25:14','1900-01-01 00:00:00',1,0,1),(18541,'6259','Moulay','MOULAY',NULL,'','France','',0,0,76,'2016-10-17 11:25:15','1900-01-01 00:00:00',1,0,1),(18542,'36387','Moulay Idriss','MOULAY IDRISS',NULL,'','Morocco','',0,0,148,'2016-10-17 11:25:15','1900-01-01 00:00:00',1,0,1),(18543,'5227','Mouleydier','MOULEYDIER',NULL,'','France','',0,0,76,'2016-10-17 11:25:15','1900-01-01 00:00:00',1,0,1),(18544,'5332','Moulins','MOULINS',NULL,'','France','',0,0,76,'2016-10-17 11:25:15','1900-01-01 00:00:00',1,0,1),(18545,'17925','Moulton','MOULTON',NULL,'','United States','',0,0,231,'2016-10-17 11:25:16','1900-01-01 00:00:00',1,0,1),(18546,'32739','Moultonborough','MOULTONBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:25:16','1900-01-01 00:00:00',1,0,1),(18547,'19882','Moultrie','MOULTRIE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:16','1900-01-01 00:00:00',1,0,1),(18548,'27719','Mound City','MOUND CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:25:17','1900-01-01 00:00:00',1,0,1),(18549,'21104','Moundridge','MOUNDRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:17','1900-01-01 00:00:00',1,0,1),(18550,'27460','Mounds View','MOUNDS VIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:25:18','1900-01-01 00:00:00',1,0,1),(18551,'10435','Mount Abu','MOUNT ABU',NULL,'','India','Mount Abu',2,0,101,'2016-10-17 11:25:18','1900-01-01 00:00:00',1,0,1),(18552,'15135','Mount Albert','MOUNT ALBERT',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:25:19','1900-01-01 00:00:00',1,0,1),(18553,'36371','Mount Athos-amoulian','MOUNT ATHOS-AMOULIAN',NULL,'','Greece','',0,0,86,'2016-10-17 11:25:20','1900-01-01 00:00:00',1,0,1),(18554,'11324','Mount Etna','MOUNT ETNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:23','1900-01-01 00:00:00',1,0,1),(18555,'15577','Mount Hagen','MOUNT HAGEN',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:25:24','1900-01-01 00:00:00',1,0,1),(18556,'34568','Mount Hope','MOUNT HOPE',NULL,'','Canada','',0,0,39,'2016-10-17 11:25:25','1900-01-01 00:00:00',1,0,1),(18557,'41451','Mount Kenya National Park','MOUNT KENYA NATIONAL PARK',NULL,'','Kenya','',0,0,113,'2016-10-17 11:25:27','1900-01-01 00:00:00',1,0,1),(18558,'13620','Mount Lavinia','MOUNT LAVINIA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:25:27','1900-01-01 00:00:00',1,0,1),(18559,'37902','Mount Naeba Area','MOUNT NAEBA AREA',NULL,'','Japan','',0,0,110,'2016-10-17 11:25:28','1900-01-01 00:00:00',1,0,1),(18560,'24857','Mount Thompson','MOUNT THOMPSON',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:25:35','1900-01-01 00:00:00',1,0,1),(18561,'24910','Mountain Pine Ridge','MOUNTAIN PINE RIDGE',NULL,'','Belize','',0,0,22,'2016-10-17 11:25:42','1900-01-01 00:00:00',1,0,1),(18562,'28550','Mountainair','MOUNTAINAIR',NULL,'','United States','',0,0,231,'2016-10-17 11:25:44','1900-01-01 00:00:00',1,0,1),(18563,'30078','Mountainhome','MOUNTAINHOME',NULL,'','United States','',0,0,231,'2016-10-17 11:25:44','1900-01-01 00:00:00',1,0,1),(18564,'28352','Mountainside','MOUNTAINSIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:45','1900-01-01 00:00:00',1,0,1),(18565,'31562','Mountlake Terrace','MOUNTLAKE TERRACE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:45','1900-01-01 00:00:00',1,0,1),(18566,'10791','Mountshannon','MOUNTSHANNON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:45','1900-01-01 00:00:00',1,0,1),(18567,'30079','Mountville','MOUNTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:46','1900-01-01 00:00:00',1,0,1),(18568,'44178','Mouresi','MOURESI',NULL,'','Greece','',0,0,86,'2016-10-17 11:25:46','1900-01-01 00:00:00',1,0,1),(18569,'6496','Mouries','MOURIES',NULL,'','France','',0,0,76,'2016-10-17 11:25:46','1900-01-01 00:00:00',1,0,1),(18570,'5866','Mouroux','MOUROUX',NULL,'','France','',0,0,76,'2016-10-17 11:25:46','1900-01-01 00:00:00',1,0,1),(18571,'9700','Mousata','MOUSATA',NULL,'','Greece','',0,0,86,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18572,'24666','Mouscron','MOUSCRON',NULL,'','Belgium','',0,0,21,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18573,'8591','Mousehole','MOUSEHOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18574,'5575','Mousteru','MOUSTERU',NULL,'','France','',0,0,76,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18575,'6497','Moustiers-sainte-marie','MOUSTIERS-SAINTE-MARIE',NULL,'','France','',0,0,76,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18576,'10823','Moville','MOVILLE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:47','1900-01-01 00:00:00',1,0,1),(18577,'37660','Moville','MOVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18578,'40926','Moville, Co.donegal','MOVILLE, CO.DONEGAL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18579,'14136','Moyahua','MOYAHUA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18580,'39290','Moyard','MOYARD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18581,'10186','Moyo Island','MOYO ISLAND',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18582,'869','Moyobamba','MOYOBAMBA',NULL,'','Peru','',0,0,172,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18583,'37895','Moyvalley','MOYVALLEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:25:48','1900-01-01 00:00:00',1,0,1),(18584,'40529','Mozaga','MOZAGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18585,'1479','Mozambique','MOZAMBIQUE',NULL,'','MOZAMBIQUE','',0,0,149,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18586,'3466','Mozarbez','MOZARBEZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18587,'42541','Mozirje','MOZIRJE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18588,'11326','Mozzo','MOZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18589,'1740','Mpacha','MPACHA',NULL,'','Namibia','',0,0,151,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18590,'1478','Mpumalanga-kruger Area','MPUMALANGA-KRUGER AREA',NULL,'','SOUTH AFRICA','',0,0,195,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18591,'15663','Mragowo','MRAGOWO',NULL,'','Poland','',0,0,174,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18592,'42063','Mrauk U','MRAUK U',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18593,'40279','Msambweni','MSAMBWENI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:25:49','1900-01-01 00:00:00',1,0,1),(18594,'17219','Mt. Erciyes','MT. ERCIYES',NULL,'','Turkey','',0,0,222,'2016-10-17 11:25:50','1900-01-01 00:00:00',1,0,1),(18595,'26851','Mt. Field National Park','MT. FIELD NATIONAL PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:50','1900-01-01 00:00:00',1,0,1),(18596,'39912','Mtolle','MTOLLE',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18597,'37738','Mtubatuba','MTUBATUBA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18598,'32527','Mtunzini','MTUNZINI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18599,'17464','Mtwara','MTWARA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18600,'42297','Muak Lek','MUAK LEK',NULL,'','Thailand','',0,0,215,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18601,'13548','Muang Khong','MUANG KHONG',NULL,'','Laos','',0,0,118,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18602,'541','Much','MUCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:51','1900-01-01 00:00:00',1,0,1),(18603,'38114','Much Hadham','MUCH HADHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:52','1900-01-01 00:00:00',1,0,1),(18604,'43247','Muchamiel','MUCHAMIEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:25:52','1900-01-01 00:00:00',1,0,1),(18605,'23787','Mudanjiang','MUDANJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:25:52','1900-01-01 00:00:00',1,0,1),(18606,'20671','Muddy','MUDDY',NULL,'','United States','',0,0,231,'2016-10-17 11:25:52','1900-01-01 00:00:00',1,0,1),(18607,'7215','Mudeford','MUDEFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:53','1900-01-01 00:00:00',1,0,1),(18608,'34255','Mudgee','MUDGEE',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:53','1900-01-01 00:00:00',1,0,1),(18609,'26732','Mudjimba','MUDJIMBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:25:53','1900-01-01 00:00:00',1,0,1),(18610,'29449','Mudsock','MUDSOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:25:53','1900-01-01 00:00:00',1,0,1),(18612,'40468','Muehlen','MUEHLEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18613,'37414','Muellheim','MUELLHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18614,'44146','Muelsen','MUELSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18615,'39117','Muenchberg','MUENCHBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18616,'37484','Muenchwilen','MUENCHWILEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18617,'82','Muensing','MUENSING',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:54','1900-01-01 00:00:00',1,0,1),(18618,'83','Muensterland','MUENSTERLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18619,'863','Muerren','MUERREN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18620,'39932','Mugena','MUGENA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18621,'2005','Muggelheim','MUGGELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18622,'39521','Muggia','MUGGIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18623,'17342','Mugla','MUGLA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18624,'40102','Mugnano Di Napoli','MUGNANO DI NAPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:55','1900-01-01 00:00:00',1,0,1),(18625,'43856','Muhamma','MUHAMMA',NULL,'','India','Muhamma',3,0,101,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18626,'37410','Muhlbach Am Hochkonig','MUHLBACH AM HOCHKONIG',NULL,'','Austria','',0,0,14,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18627,'84','Muhldorf Am Inn','MUHLDORF AM INN',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18628,'22596','Muhlhausen','MUHLHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18629,'265','Muhltal','MUHLTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18630,'27010','Muhlviertel','MUHLVIERTEL',NULL,'','Austria','',0,0,14,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18631,'3822','Muhu Island','MUHU ISLAND',NULL,'','Estonia','',0,0,69,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18632,'32262','Mui Ne','MUI NE',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18633,'9906','Mui Wo','MUI WO',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:25:56','1900-01-01 00:00:00',1,0,1),(18634,'5665','Muides-sur-loire','MUIDES-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18635,'7216','Muirhouse','MUIRHOUSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18636,'32484','Muizenberg','MUIZENBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18637,'14384','Mukah','MUKAH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18638,'32352','Mukalla','MUKALLA',NULL,'','Yemen','',0,0,240,'2016-10-17 11:25:57','1900-01-01 00:00:00',1,0,1),(18639,'42592','Mukandgarh','MUKANDGARH',NULL,'','India','',0,0,101,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18641,'43073','Mukdahan','MUKDAHAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18642,'32353','Mukeiras','MUKEIRAS',NULL,'','Yemen','',0,0,240,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18643,'31563','Mukilteo','MUKILTEO',NULL,'','United States','',0,0,231,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18644,'43857','Mukki','MUKKI',NULL,'','India','',0,0,101,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18645,'13302','Muko','MUKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18646,'44002','Mukono','MUKONO',NULL,'','Uganda','',0,0,226,'2016-10-17 11:25:58','1900-01-01 00:00:00',1,0,1),(18648,'40870','Mukundgarh','MUKUNDGARH',NULL,'','India','',0,0,101,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18649,'31831','Mukwonago','MUKWONAGO',NULL,'','United States','',0,0,231,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18650,'13754','Mulaku Atoll','MULAKU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18651,'43858','Mulavukadu','MULAVUKADU',NULL,'','India','',0,0,101,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18652,'12198','Mulazzo','MULAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:25:59','1900-01-01 00:00:00',1,0,1),(18653,'19501','Mulberry','MULBERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:26:00','1900-01-01 00:00:00',1,0,1),(18654,'32583','Muldersdrif','MULDERSDRIF',NULL,'','South Africa','',0,0,195,'2016-10-17 11:26:00','1900-01-01 00:00:00',1,0,1),(18655,'42833','Muldersdrift','MULDERSDRIFT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:26:00','1900-01-01 00:00:00',1,0,1),(18656,'33700','Muldraugh','MULDRAUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:26:00','1900-01-01 00:00:00',1,0,1),(18657,'32931','Muldrow','MULDROW',NULL,'','United States','',0,0,231,'2016-10-17 11:26:01','1900-01-01 00:00:00',1,0,1),(18658,'37533','Mulege','MULEGE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:26:01','1900-01-01 00:00:00',1,0,1),(18659,'30815','Muleshoe','MULESHOE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:01','1900-01-01 00:00:00',1,0,1),(18660,'38130','Mulfingen','MULFINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:02','1900-01-01 00:00:00',1,0,1),(18661,'542','Mulheim','MULHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:02','1900-01-01 00:00:00',1,0,1),(18662,'2035','Mülheim An Der Ruhr','MÜLHEIM AN DER RUHR',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:02','1900-01-01 00:00:00',1,0,1),(18663,'6777','Mulhouse','MULHOUSE',NULL,'','France','',0,0,76,'2016-10-17 11:26:02','1900-01-01 00:00:00',1,0,1),(18664,'10247','Mulia','MULIA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18665,'26282','Mulka','MULKA',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18666,'1623','Mull','MULL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18667,'26961','Mullaloo','MULLALOO',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18668,'32019','Mullens','MULLENS',NULL,'','United States','',0,0,231,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18669,'13652','Mullerthal','MULLERTHAL',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:26:03','1900-01-01 00:00:00',1,0,1),(18670,'10943','Mullingar','MULLINGAR',NULL,'','Ireland','',0,0,105,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18671,'8594','Mullion','MULLION',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18672,'10751','Mulranny','MULRANNY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18673,'38606','Mulsanne','MULSANNE',NULL,'','France','',0,0,76,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18674,'15312','Multan','MULTAN',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18675,'43615','Mulungu','MULUNGU',NULL,'','Brazil','',0,0,30,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18676,'144306','Mumbai','MUMBAI',NULL,'','India','Mumbai',5,0,101,'2016-10-17 11:26:04','1900-01-01 00:00:00',1,0,1),(18677,'8595','Mumbles','MUMBLES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18678,'28972','Mumford','MUMFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18679,'35748','Munakata','MUNAKATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18680,'40399','Munchendorf','MUNCHENDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18681,'20949','Muncie','MUNCIE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:05','1900-01-01 00:00:00',1,0,1),(18682,'30080','Muncy','MUNCY',NULL,'','United States','',0,0,231,'2016-10-17 11:26:06','1900-01-01 00:00:00',1,0,1),(18683,'16553','Munda','MUNDA',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:26:06','1900-01-01 00:00:00',1,0,1),(18684,'3714','Mundaka','MUNDAKA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:06','1900-01-01 00:00:00',1,0,1),(18685,'20673','Mundelein','MUNDELEIN',NULL,'','United States','',0,0,231,'2016-10-17 11:26:06','1900-01-01 00:00:00',1,0,1),(18686,'8596','Mundesley','MUNDESLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:07','1900-01-01 00:00:00',1,0,1),(18687,'40139','Mundford','MUNDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:07','1900-01-01 00:00:00',1,0,1),(18688,'37703','Mundolsheim','MUNDOLSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:26:07','1900-01-01 00:00:00',1,0,1),(18689,'10248','Munduk','MUNDUK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:07','1900-01-01 00:00:00',1,0,1),(18690,'33701','Munfordville','MUNFORDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18691,'26283','Mungeranie','MUNGERANIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18692,'41365','Mungia','MUNGIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18693,'3715','Munguia','MUNGUIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18694,'266','Munich','MUNICH',NULL,'','Germany','Munich',0,0,83,'2016-10-17 11:26:08','1900-01-01 00:00:00',1,0,1),(18695,'22179','Munising','MUNISING',NULL,'','United States','',0,0,231,'2016-10-17 11:26:09','1900-01-01 00:00:00',1,0,1),(18696,'29450','Munks Corners','MUNKS CORNERS',NULL,'','United States','',0,0,231,'2016-10-17 11:26:09','1900-01-01 00:00:00',1,0,1),(18697,'10561','Munnar','MUNNAR',NULL,'','India','Munnar',3,0,101,'2016-10-17 11:26:09','1900-01-01 00:00:00',1,0,1),(18698,'267','Munnerstadt','MUNNERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:09','1900-01-01 00:00:00',1,0,1),(18699,'43730','Munster','MUNSTER',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:10','1900-01-01 00:00:00',1,0,1),(18700,'20950','Munster','MUNSTER',NULL,'','United States','',0,0,231,'2016-10-17 11:26:10','1900-01-01 00:00:00',1,0,1),(18701,'6052','Munster','MUNSTER',NULL,'','France','',0,0,76,'2016-10-17 11:26:10','1900-01-01 00:00:00',1,0,1),(18702,'86','Munstertal','MUNSTERTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:10','1900-01-01 00:00:00',1,0,1),(18703,'41878','Muntelier','MUNTELIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18704,'43112','Muntinlupa','MUNTINLUPA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18705,'37832','Munxar','MUNXAR',NULL,'','Malta','',0,0,135,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18706,'3927','Muonio','MUONIO',NULL,'','Finland','',0,0,75,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18707,'23295','Muotathal','MUOTATHAL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18708,'40871','Muradabad','MURADABAD',NULL,'','India','',0,0,101,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18709,'42667','Muralto','MURALTO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18710,'12901','Murano','MURANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18711,'40419','Murarrie','MURARRIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:11','1900-01-01 00:00:00',1,0,1),(18712,'43766','Murau','MURAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:26:12','1900-01-01 00:00:00',1,0,1),(18713,'12826','Muravera','MURAVERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:12','1900-01-01 00:00:00',1,0,1),(18714,'6778','Murbach','MURBACH',NULL,'','France','',0,0,76,'2016-10-17 11:26:12','1900-01-01 00:00:00',1,0,1),(18715,'15220','Murchison','MURCHISON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:26:12','1900-01-01 00:00:00',1,0,1),(18716,'36140','Murcia-l.manga D.mar','MURCIA-L.MANGA D.MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18717,'36146','Murcia-la Azohia','MURCIA-LA AZOHIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18718,'36157','Murcia-los Alcazares','MURCIA-LOS ALCAZARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18719,'36191','Murcia-puerto De Maz','MURCIA-PUERTO DE MAZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18720,'35082','Murcia-s.pedro Pinat','MURCIA-S.PEDRO PINAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18721,'39841','Mur-de-barrez','MUR-DE-BARREZ',NULL,'','France','',0,0,76,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18722,'33034','Murdo','MURDO',NULL,'','United States','',0,0,231,'2016-10-17 11:26:13','1900-01-01 00:00:00',1,0,1),(18723,'6116','Muret','MURET',NULL,'','France','',0,0,76,'2016-10-17 11:26:14','1900-01-01 00:00:00',1,0,1),(18724,'33219','Murfreesboro','MURFREESBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:26:14','1900-01-01 00:00:00',1,0,1),(18725,'41457','Murgia','MURGIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18726,'42983','Murguia','MURGUIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18727,'23296','Muri','MURI',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18728,'24071','Muri Beach','MURI BEACH',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18729,'15313','Muridke','MURIDKE',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18730,'3130','Muriedas','MURIEDAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:15','1900-01-01 00:00:00',1,0,1),(18731,'16323','Murino','MURINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:16','1900-01-01 00:00:00',1,0,1),(18732,'16406','Murmansk','MURMANSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:16','1900-01-01 00:00:00',1,0,1),(18733,'87','Murnau','MURNAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:16','1900-01-01 00:00:00',1,0,1),(18734,'37800','Muro','MURO',NULL,'','France','',0,0,76,'2016-10-17 11:26:16','1900-01-01 00:00:00',1,0,1),(18735,'960','Muro Alto','MURO ALTO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18736,'5333','Murol','MUROL',NULL,'','France','',0,0,76,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18737,'13303','Muroran, Japan','MURORAN, JAPAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18738,'3096','Muros De Nalon','MUROS DE NALON',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18739,'33952','Murphy','MURPHY',NULL,'','United States','',0,0,231,'2016-10-17 11:26:17','1900-01-01 00:00:00',1,0,1),(18740,'18708','Murphys','MURPHYS',NULL,'','United States','',0,0,231,'2016-10-17 11:26:18','1900-01-01 00:00:00',1,0,1),(18741,'20674','Murphysboro','MURPHYSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:26:18','1900-01-01 00:00:00',1,0,1),(18742,'33702','Murray','MURRAY',NULL,'','United States','',0,0,231,'2016-10-17 11:26:18','1900-01-01 00:00:00',1,0,1),(18743,'26811','Murray Bridge','MURRAY BRIDGE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:19','1900-01-01 00:00:00',1,0,1),(18744,'7217','Murrayfield','MURRAYFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:19','1900-01-01 00:00:00',1,0,1),(18745,'26285','Murraylands','MURRAYLANDS',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18746,'15314','Murree Hills','MURREE HILLS',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18747,'30376','Murrells Inlet','MURRELLS INLET',NULL,'','United States','',0,0,231,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18748,'23297','Murren','MURREN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18749,'22597','Murrhardt','MURRHARDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:20','1900-01-01 00:00:00',1,0,1),(18750,'18709','Murrieta','MURRIETA',NULL,'','United States','',0,0,231,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18751,'41511','Murroe','MURROE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18752,'30081','Murrysville','MURRYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18753,'37757','Murs','MURS',NULL,'','France','',0,0,76,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18754,'16643','Murska','MURSKA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:26:21','1900-01-01 00:00:00',1,0,1),(18755,'23298','Murten','MURTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18756,'36577','Murtosa','MURTOSA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18757,'1637','Murtosa-torreira','MURTOSA-TORREIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18758,'3716','Murueta','MURUETA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18759,'34256','Murwillumbah','MURWILLUMBAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18760,'43987','Musannah','MUSANNAH',NULL,'','Oman','',0,0,165,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18761,'13418','Musashino','MUSASHINO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18762,'15275','Muscat','MUSCAT',NULL,'','Oman','Muscat',0,0,165,'2016-10-17 11:26:22','1900-01-01 00:00:00',1,0,1),(18763,'20255','Muscatine','MUSCATINE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:23','1900-01-01 00:00:00',1,0,1),(18764,'17927','Muscle Shoals','MUSCLE SHOALS',NULL,'','United States','',0,0,231,'2016-10-17 11:26:23','1900-01-01 00:00:00',1,0,1),(18765,'3768','Museros','MUSEROS',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:23','1900-01-01 00:00:00',1,0,1),(18766,'15813','Musgueira','MUSGUEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:26:24','1900-01-01 00:00:00',1,0,1),(18767,'22180','Muskegon','MUSKEGON',NULL,'','United States','',0,0,231,'2016-10-17 11:26:24','1900-01-01 00:00:00',1,0,1),(18768,'32932','Muskogee','MUSKOGEE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:25','1900-01-01 00:00:00',1,0,1),(18769,'1675','Muskoka','MUSKOKA',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18770,'34569','Muskrat Dam','MUSKRAT DAM',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18771,'17465','Musoma','MUSOMA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18772,'44303','Mussanah','MUSSANAH',NULL,'','Oman','',0,0,165,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18773,'9274','Musselburgh','MUSSELBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:26','1900-01-01 00:00:00',1,0,1),(18774,'5228','Mussidan','MUSSIDAN',NULL,'','France','',0,0,76,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18775,'11328','Mussolente','MUSSOLENTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18776,'10562','Mussoorie','MUSSOORIE',NULL,'','India','Mussoorie',9,0,101,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18777,'40379','Mustafapasa','MUSTAFAPASA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18778,'30816','Mustang Island','MUSTANG ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18779,'32165','Mustique Island','MUSTIQUE ISLAND',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 11:26:27','1900-01-01 00:00:00',1,0,1),(18780,'34257','Muswellbrook','MUSWELLBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18781,'15658','Muszyna','MUSZYNA',NULL,'','Poland','',0,0,174,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18782,'32666','Mutare','MUTARE',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18783,'8597','Muthill','MUTHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18784,'10314','Muting','MUTING',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18785,'43134','Mutrah','MUTRAH',NULL,'','Oman','',0,0,165,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18786,'26422','Muttaburra','MUTTABURRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18787,'23299','Muttenz','MUTTENZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18788,'39900','Mutters','MUTTERS',NULL,'','Austria','',0,0,14,'2016-10-17 11:26:28','1900-01-01 00:00:00',1,0,1),(18789,'28973','Muttontown','MUTTONTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18790,'10440','Muttukadu','MUTTUKADU',NULL,'','India','',0,0,101,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18791,'2874','Mutxamel','MUTXAMEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18792,'6779','Mutzig','MUTZIG',NULL,'','France','',0,0,76,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18793,'3825','Muuga','MUUGA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18794,'2710','Muxika','MUXIKA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:29','1900-01-01 00:00:00',1,0,1),(18795,'8598','Muxton','MUXTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18796,'15315','Muzaffarabad','MUZAFFARABAD',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18797,'10563','Muzaffarpur','MUZAFFARPUR',NULL,'','India','',16,0,101,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18798,'17466','Mwanza','MWANZA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18799,'42129','Myall Lake','MYALL LAKE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18800,'9546','Mycenae','MYCENAE',NULL,'','Greece','Mycenae',0,0,86,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18801,'18710','Myers Flat','MYERS FLAT',NULL,'','United States','',0,0,231,'2016-10-17 11:26:30','1900-01-01 00:00:00',1,0,1),(18802,'30082','Myerstown','MYERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:26:31','1900-01-01 00:00:00',1,0,1),(18803,'37444','Mykolaiv (Black Sea Coast)','MYKOLAIV (BLACK SEA COAST)',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:26:31','1900-01-01 00:00:00',1,0,1),(18804,'1472','Mykonos','MYKONOS',NULL,'','GREECE','Mykonos',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18805,'36364','Mykonos-agio Ioannis','MYKONOS-AGIO IOANNIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18806,'35226','Mykonos-elia','MYKONOS-ELIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18807,'35240','Mykonos-mykonos Town','MYKONOS-MYKONOS TOWN',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18808,'35275','Mykonos-ornos','MYKONOS-ORNOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18809,'35280','Mykonos-platis Yialo','MYKONOS-PLATIS YIALO',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18810,'35297','Mykonos-st Stefanos','MYKONOS-ST STEFANOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18811,'24758','Mymensingh','MYMENSINGH',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18812,'38503','Myoko','MYOKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18813,'9547','Myrina','MYRINA',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18814,'9548','Myron, Myk','MYRON, MYK',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18815,'38748','Myrtees','MYRTEES',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:32','1900-01-01 00:00:00',1,0,1),(18816,'30377','Myrtle Beach','MYRTLE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:26:33','1900-01-01 00:00:00',1,0,1),(18817,'40027','Myrtletown','MYRTLETOWN',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18818,'43438','Myrtos Bay','MYRTOS BAY',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18819,'40500','Mys Kamennyy','MYS KAMENNYY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18820,'15646','Myslenice','MYSLENICE',NULL,'','Poland','',0,0,174,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18821,'10659','Mysore','MYSORE',NULL,'','India','Mysore',17,0,101,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18822,'19113','Mystic','MYSTIC',NULL,'','United States','',0,0,231,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18823,'42494','Mystras','MYSTRAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:34','1900-01-01 00:00:00',1,0,1),(18825,'8599','Mytholmroyd','MYTHOLMROYD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18826,'43439','Mytilene','MYTILENE',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18827,'9819','Mytilini','MYTILINI',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18828,'16397','Mytishchi','MYTISHCHI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18829,'10986','Myvatn','MYVATN',NULL,'','Iceland','',0,0,100,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18830,'32411','Mzamba','MZAMBA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18831,'43229','Mzarr','MZARR',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18832,'14280','Mzuzu','MZUZU',NULL,'','Malawi','',0,0,131,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18833,'6841','N Dende','N DENDE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18834,'24006','N Gaoundere','N GAOUNDERE',NULL,'','Cameroon','',0,0,38,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18835,'25842','N Zeto','N ZETO',NULL,'','Angola','',0,0,6,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18836,'14723','Naaldwijk','NAALDWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:26:35','1900-01-01 00:00:00',1,0,1),(18837,'20082','Naalehu','NAALEHU',NULL,'','United States','',0,0,231,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18838,'43404','Naama Bay','NAAMA BAY',NULL,'','Egypt','',0,0,65,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18839,'4022','Naantali','NAANTALI',NULL,'','Finland','',0,0,75,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18840,'14648','Naarden','NAARDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18841,'10890','Naas','NAAS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18842,'16273','Naberevnye Chelny','NABEREVNYE CHELNY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18843,'36792','Nabeul','NABEUL',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18844,'10315','Nabire','NABIRE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18845,'32584','Naboomspruit','NABOOMSPRUIT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:26:36','1900-01-01 00:00:00',1,0,1),(18846,'43405','Nabq Bay','NABQ BAY',NULL,'','Egypt','',0,0,65,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18847,'17144','Nabul','NABUL',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18848,'42623','Nachikatsuura','NACHIKATSUURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18849,'35752','Nachi-katsuura','NACHI-KATSUURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18850,'17467','Nachingwea','NACHINGWEA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18851,'37460','Nachod','NACHOD',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18852,'16837','Nacka','NACKA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18853,'30817','Nacogdoches','NACOGDOCHES',NULL,'','United States','',0,0,231,'2016-10-17 11:26:37','1900-01-01 00:00:00',1,0,1),(18854,'10442','Naddi','NADDI',NULL,'','India','',0,0,101,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18855,'4065','Nadi','NADI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18856,'36206','Nadi-nadi Bay','NADI-NADI BAY',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18857,'13683','Nador','NADOR',NULL,'','Morocco','',0,0,148,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18858,'40823','Nadukani','NADUKANI',NULL,'','India','',0,0,101,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18859,'16476','Nadym','NADYM',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18860,'2305','Naestved','NAESTVED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18861,'9827','Nafpaktos','NAFPAKTOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18862,'9791','Nafplion','NAFPLION',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18863,'15504','Naga','NAGA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18864,'35749','Nagahama','NAGAHAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:38','1900-01-01 00:00:00',1,0,1),(18865,'26924','Nagambie','NAGAMBIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18866,'13304','Nagano','NAGANO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18867,'10564','Nagappattinam','NAGAPPATTINAM',NULL,'','India','',0,0,101,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18868,'40824','Nagarhole','NAGARHOLE',NULL,'','India','',17,0,101,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18869,'36504','Nagarkot','NAGARKOT',NULL,'','Nepal','',0,0,153,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18870,'13400','Nagasaki','NAGASAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18871,'43859','Nagaur','NAGAUR',NULL,'','India','Nagaur',2,0,101,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18872,'40872','Nagda','NAGDA',NULL,'','India','',0,0,101,'2016-10-17 11:26:39','1900-01-01 00:00:00',1,0,1),(18873,'39253','Nagercoil','NAGERCOIL',NULL,'','India','',0,0,101,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18874,'13306','Nago','NAGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18875,'13379','Nagoya','NAGOYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18876,'10565','Nagpur','NAGPUR',NULL,'','India','Nagpur',5,0,101,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18877,'33954','Nags Head','NAGS HEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18878,'32190','Naguanagua','NAGUANAGUA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18879,'10126','Nagykanizsa','NAGYKANIZSA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18880,'13426','Naha','NAHA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:40','1900-01-01 00:00:00',1,0,1),(18881,'10187','Naha','NAHA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18882,'25774','Nahanni Butte','NAHANNI BUTTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18883,'1650','Naharia','NAHARIA',NULL,'','Israel','',0,0,106,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18884,'43394','Nahariya','NAHARIYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18885,'11066','Nahariyya','NAHARIYYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18886,'20083','Nahiku','NAHIKU',NULL,'','United States','',0,0,231,'2016-10-17 11:26:41','1900-01-01 00:00:00',1,0,1),(18887,'42035','Nai Yang','NAI YANG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18888,'4066','Naigani Island','NAIGANI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18889,'38593','Naila','NAILA',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18890,'8600','Nailsworth','NAILSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18891,'25668','Nain','NAIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18892,'1769','Nainital','NAINITAL',NULL,'','India','Nainital travel packages | Nainital Tour | Trip to',9,0,101,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18893,'8601','Nairn','NAIRN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18894,'13443','Nairobi','NAIROBI',NULL,'','Kenya','Nairobi',0,0,113,'2016-10-17 11:26:42','1900-01-01 00:00:00',1,0,1),(18895,'6117','Najac','NAJAC',NULL,'','France','',0,0,76,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18896,'2967','Najera','NAJERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18897,'13170','Najio','NAJIO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18898,'43554','Najran','NAJRAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18899,'13171','Nakagyo','NAKAGYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18900,'13308','Nakano','NAKANO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18901,'38389','Nakanojo','NAKANOJO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:43','1900-01-01 00:00:00',1,0,1),(18902,'13172','Nakanoshima - Osaka Castle','NAKANOSHIMA - OSAKA CASTLE',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:44','1900-01-01 00:00:00',1,0,1),(18903,'13173','Nakashibetsu','NAKASHIBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:44','1900-01-01 00:00:00',1,0,1),(18904,'1831','Nakensdorf','NAKENSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:26:44','1900-01-01 00:00:00',1,0,1),(18905,'16418','Nakhodka','NAKHODKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:44','1900-01-01 00:00:00',1,0,1),(18907,'17707','Naknek','NAKNEK',NULL,'','United States','',0,0,231,'2016-10-17 11:26:45','1900-01-01 00:00:00',1,0,1),(18909,'2306','Nakskov','NAKSKOV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:26:45','1900-01-01 00:00:00',1,0,1),(18910,'25487','Nakusp','NAKUSP',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:45','1900-01-01 00:00:00',1,0,1),(18911,'10566','Nalagarh','NALAGARH',NULL,'','India','',0,0,101,'2016-10-17 11:26:45','1900-01-01 00:00:00',1,0,1),(18912,'39422','Nalaguraidhoo','NALAGURAIDHOO',NULL,'','Maldives','',0,0,133,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18913,'16274','Nalchik','NALCHIK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18914,'32158','Namangan','NAMANGAN',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18915,'4101','Namatakula','NAMATAKULA',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18916,'37611','Namba','NAMBA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18917,'26423','Nambour','NAMBOUR',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18918,'34258','Nambucca Heads','NAMBUCCA HEADS',NULL,'','Australia','',0,0,13,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18919,'13481','Namhae','NAMHAE',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18920,'14403','Namib','NAMIB',NULL,'','Namibia','',0,0,151,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18921,'25853','Namibe','NAMIBE',NULL,'','Angola','',0,0,6,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18922,'10343','Namlea','NAMLEA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18923,'14163','Namorik','NAMORIK',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:26:46','1900-01-01 00:00:00',1,0,1),(18924,'20381','Nampa','NAMPA',NULL,'','United States','',0,0,231,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18925,'6309','Nampont','NAMPONT',NULL,'','France','',0,0,76,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18926,'14222','Nampula','NAMPULA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18927,'10344','Namrole','NAMROLE',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18928,'14938','Namsos','NAMSOS',NULL,'','Norway','',0,0,164,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18929,'14164','Namu','NAMU',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18930,'25488','Namu','NAMU',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18931,'24711','Namur','NAMUR',NULL,'','Belgium','',0,0,21,'2016-10-17 11:26:47','1900-01-01 00:00:00',1,0,1),(18932,'39078','Nanae','NANAE',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18933,'25489','Nanaimo','NANAIMO',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18934,'20084','Nanakuli','NANAKULI',NULL,'','United States','',0,0,231,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18935,'42387','Nanan','NANAN',NULL,'','China','',0,0,46,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18936,'34890','Nan\'an','NAN\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18937,'36207','Nananu Island','NANANU ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18938,'42889','Nanao','NANAO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18939,'23733','Nanchang','NANCHANG',NULL,'','China','',0,0,46,'2016-10-17 11:26:48','1900-01-01 00:00:00',1,0,1),(18940,'23997','Nanchong','NANCHONG',NULL,'','China','',0,0,46,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18941,'6053','Nancois-sur-ornain','NANCOIS-SUR-ORNAIN',NULL,'','France','',0,0,76,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18942,'10567','Nanded','NANDED',NULL,'','India','Nanded',5,0,101,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18943,'10444','Nangi','NANGI',NULL,'','India','',0,0,101,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18944,'39403','Nango','NANGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18945,'23972','Nanhai','NANHAI',NULL,'','China','',0,0,46,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18946,'23708','Nanhui','NANHUI',NULL,'','China','',0,0,46,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18947,'25801','Nanisivik','NANISIVIK',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18948,'13174','Naniwa','NANIWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:49','1900-01-01 00:00:00',1,0,1),(18949,'23746','Nanjing','NANJING',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18950,'39661','Nankan','NANKAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18951,'13175','Nanki Shirahama','NANKI SHIRAHAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18952,'1750','Nanking Nanjing','NANKING NANJING',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18953,'23857','Nanning','NANNING',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18954,'25491','Nanoose Bay','NANOOSE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18955,'9862','Nanortalik','NANORTALIK',NULL,'','Greenland','',0,0,87,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18956,'23774','Nanping','NANPING',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18957,'39694','Nansha','NANSHA',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18958,'23613','Nanshan','NANSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:26:50','1900-01-01 00:00:00',1,0,1),(18959,'6498','Nans-les-pins','NANS-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:26:51','1900-01-01 00:00:00',1,0,1),(18960,'21449','Nantasket Beach','NANTASKET BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:26:51','1900-01-01 00:00:00',1,0,1),(18961,'4763','Nanterre','NANTERRE',NULL,'','France','',0,0,76,'2016-10-17 11:26:51','1900-01-01 00:00:00',1,0,1),(18962,'6260','Nantes','NANTES',NULL,'','France','',0,0,76,'2016-10-17 11:26:51','1900-01-01 00:00:00',1,0,1),(18963,'5101','Nanteuil Les Meaux','NANTEUIL LES MEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18964,'41374','Nanteuil-les-meaux','NANTEUIL-LES-MEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18965,'5229','Nantheuil','NANTHEUIL',NULL,'','France','',0,0,76,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18966,'23747','Nantong','NANTONG',NULL,'','China','',0,0,46,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18967,'17406','Nantou','NANTOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:26:52','1900-01-01 00:00:00',1,0,1),(18968,'6680','Nantua','NANTUA',NULL,'','France','',0,0,76,'2016-10-17 11:26:53','1900-01-01 00:00:00',1,0,1),(18969,'21450','Nantucket','NANTUCKET',NULL,'','United States','',0,0,231,'2016-10-17 11:26:53','1900-01-01 00:00:00',1,0,1),(18970,'8602','Nantwich','NANTWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18971,'28974','Nanuet','NANUET',NULL,'','United States','',0,0,231,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18972,'36208','Nanuya Lailai Island','NANUYA LAILAI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18973,'23795','Nanyang','NANYANG',NULL,'','China','',0,0,46,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18974,'23688','Nanyuan','NANYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18975,'38402','Nanyuki','NANYUKI',NULL,'','Kenya','Nanyuki',0,0,113,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18976,'10445','Naoabad','NAOABAD',NULL,'','India','',0,0,101,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18977,'37987','Naousa','NAOUSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:54','1900-01-01 00:00:00',1,0,1),(18978,'9549','Naoussa','NAOUSSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:26:55','1900-01-01 00:00:00',1,0,1),(18979,'17708','Napakiak','NAPAKIAK',NULL,'','United States','',0,0,231,'2016-10-17 11:26:55','1900-01-01 00:00:00',1,0,1),(18980,'34570','Napanee','NAPANEE',NULL,'','Canada','',0,0,39,'2016-10-17 11:26:56','1900-01-01 00:00:00',1,0,1),(18981,'17709','Napaskiak','NAPASKIAK',NULL,'','United States','',0,0,231,'2016-10-17 11:26:56','1900-01-01 00:00:00',1,0,1),(18982,'20675','Naperville','NAPERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:26:56','1900-01-01 00:00:00',1,0,1),(18983,'40287','Napier','NAPIER',NULL,'','South Africa','Napier',0,0,195,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18984,'15221','Napier','NAPIER',NULL,'','New Zealand','Napier',0,0,157,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18985,'36511','Napier-hastings','NAPIER-HASTINGS',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18986,'28975','Naples','NAPLES',NULL,'','United States','',0,0,231,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18987,'11329','Naples','NAPLES',NULL,'','Italy','Naples',0,0,107,'2016-10-17 11:26:57','1900-01-01 00:00:00',1,0,1),(18988,'35490','Naples-castello D.ci','NAPLES-CASTELLO D.CI',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:58','1900-01-01 00:00:00',1,0,1),(18989,'35520','Naples-ercolano','NAPLES-ERCOLANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18990,'35536','Naples-giugliano In','NAPLES-GIUGLIANO IN',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18991,'35571','Naples-massa Lubrens','NAPLES-MASSA LUBRENS',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18992,'35591','Naples-nola','NAPLES-NOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18993,'29451','Napoleon','NAPOLEON',NULL,'','United States','',0,0,231,'2016-10-17 11:26:59','1900-01-01 00:00:00',1,0,1),(18994,'20951','Nappanee','NAPPANEE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18995,'16133','Napuka','NAPUKA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18996,'13402','Nara','NARA',NULL,'','Japan','Nara',0,0,110,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18997,'26462','Naracoorte','NARACOORTE',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18998,'25492','Naramata','NARAMATA',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(18999,'19504','Naranja','NARANJA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:00','1900-01-01 00:00:00',1,0,1),(19000,'24200','Naranjo','NARANJO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19001,'13309','Narashino','NARASHINO',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19002,'17072','Narathiwat','NARATHIWAT',NULL,'','Thailand','',0,0,215,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19003,'40003','Narberth','NARBERTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19004,'43665','Narbethong','NARBETHONG',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19005,'12200','Narbolia','NARBOLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19006,'5946','Narbonne','NARBONNE',NULL,'','France','',0,0,76,'2016-10-17 11:27:01','1900-01-01 00:00:00',1,0,1),(19007,'5947','Narbonne-plage','NARBONNE-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19008,'24113','Nare','NARE',NULL,'','Colombia','',0,0,49,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19009,'40873','Narendra Nagar','NARENDRA NAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19011,'26528','Naringal','NARINGAL',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19012,'13310','Narita','NARITA',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:02','1900-01-01 00:00:00',1,0,1),(19013,'40874','Narlai','NARLAI',NULL,'','India','',0,0,101,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19014,'39936','Narni','NARNI',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19015,'13444','Narok','NAROK',NULL,'','Kenya','Narok',0,0,113,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19016,'3672','Naron','NARON',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19017,'34259','Narooma','NAROOMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19018,'38282','Narrabeen','NARRABEEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19019,'34260','Narrabri','NARRABRI',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:03','1900-01-01 00:00:00',1,0,1),(19020,'26635','Narrabundah','NARRABUNDAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19021,'30255','Narragansett','NARRAGANSETT',NULL,'','United States','',0,0,231,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19022,'34261','Narrandera','NARRANDERA',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19023,'26529','Narre Warren','NARRE WARREN',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19024,'9851','Narsaq','NARSAQ',NULL,'','Greenland','',0,0,87,'2016-10-17 11:27:04','1900-01-01 00:00:00',1,0,1),(19025,'9863','Narsarsuaq','NARSARSUAQ',NULL,'','Greenland','',0,0,87,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19026,'42264','Narssarssuag','NARSSARSSUAG',NULL,'','Greenland','',0,0,87,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19027,'13311','Naruto','NARUTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19028,'3827','Narva','NARVA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19029,'38620','Narva-joesuu','NARVA-JOESUU',NULL,'','Estonia','',0,0,69,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19030,'14923','Narvik','NARVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:27:05','1900-01-01 00:00:00',1,0,1),(19031,'30083','Narvon','NARVON',NULL,'','United States','',0,0,231,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19032,'40565','Nasaker','NASAKER',NULL,'','Sweden','',0,0,209,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19033,'36524','Nasca','NASCA',NULL,'','Peru','',0,0,172,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19034,'43372','Nashik','NASHIK',NULL,'','India','Nashik',5,0,101,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19035,'32741','Nashua','NASHUA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:06','1900-01-01 00:00:00',1,0,1),(19036,'33220','Nashville','NASHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:07','1900-01-01 00:00:00',1,0,1),(19038,'30819','Nassau Bay','NASSAU BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:27:09','1900-01-01 00:00:00',1,0,1),(19039,'31182','Nassawadox','NASSAWADOX',NULL,'','United States','',0,0,231,'2016-10-17 11:27:09','1900-01-01 00:00:00',1,0,1),(19040,'37374','Nassereith','NASSEREITH',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19041,'27011','Nassfeld','NASSFELD',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19042,'16722','Nassjo','NASSJO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19043,'13312','Nasu','NASU',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19044,'15490','Nasugbu','NASUGBU',NULL,'','Philippines','',0,0,173,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19045,'40283','Nasushiobara','NASUSHIOBARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19046,'25262','Nata','NATA',NULL,'','Botswana','',0,0,28,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19047,'43176','Natadola','NATADOLA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19048,'37265','Natadola','NATADOLA',NULL,'','Fiji Islands','',0,0,74,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19049,'25153','Natal','NATAL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:10','1900-01-01 00:00:00',1,0,1),(19050,'35947','Natal-genipabu','NATAL-GENIPABU',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19051,'35959','Natal-pipa','NATAL-PIPA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19052,'35965','Natal-tibau Do Sul','NATAL-TIBAU DO SUL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19053,'1654','Natanya','NATANYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19054,'22810','Natashquan','NATASHQUAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19055,'27889','Natchez','NATCHEZ',NULL,'','United States','',0,0,231,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19056,'21238','Natchitoches','NATCHITOCHES',NULL,'','United States','',0,0,231,'2016-10-17 11:27:11','1900-01-01 00:00:00',1,0,1),(19057,'23300','Naters','NATERS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:27:12','1900-01-01 00:00:00',1,0,1),(19058,'43860','Nathdwara','NATHDWARA',NULL,'','India','',0,0,101,'2016-10-17 11:27:12','1900-01-01 00:00:00',1,0,1),(19059,'33502','Nathrop','NATHROP',NULL,'','United States','',0,0,231,'2016-10-17 11:27:12','1900-01-01 00:00:00',1,0,1),(19060,'42591','Nathuakhan','NATHUAKHAN',NULL,'','India','',0,0,101,'2016-10-17 11:27:12','1900-01-01 00:00:00',1,0,1),(19061,'21452','Natick','NATICK',NULL,'','United States','',0,0,231,'2016-10-17 11:27:13','1900-01-01 00:00:00',1,0,1),(19062,'31183','Natural Bridge','NATURAL BRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:14','1900-01-01 00:00:00',1,0,1),(19063,'38410','Naturaliste','NATURALISTE',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:14','1900-01-01 00:00:00',1,0,1),(19064,'33503','Naturita','NATURITA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:15','1900-01-01 00:00:00',1,0,1),(19065,'12202','Naturno','NATURNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:15','1900-01-01 00:00:00',1,0,1),(19066,'11084','Naturns','NATURNS',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19067,'14038','Naucalpan','NAUCALPAN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19068,'24484','Nauders','NAUDERS',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19069,'19115','Naugatuck','NAUGATUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19070,'40838','Naukuchiatal','NAUKUCHIATAL',NULL,'','India','',0,0,101,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19071,'458','Naumburg','NAUMBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:16','1900-01-01 00:00:00',1,0,1),(19072,'1894','Naunhof','NAUNHOF',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19073,'41637','Naupactus','NAUPACTUS',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19074,'9550','Nauplia','NAUPLIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19075,'44294','Naut Aran','NAUT ARAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19076,'37257','Nauta','NAUTA',NULL,'','Peru','',0,0,172,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19077,'20677','Nauvoo','NAUVOO',NULL,'','United States','',0,0,231,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19078,'3004','Navacerrada','NAVACERRADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:17','1900-01-01 00:00:00',1,0,1),(19079,'3005','Navalcarnero','NAVALCARNERO',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19080,'34571','Navan','NAVAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19081,'10913','Navan','NAVAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19082,'1336','Navarra','NAVARRA',NULL,'','SPAIN','',0,0,199,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19083,'19505','Navarre','NAVARRE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:18','1900-01-01 00:00:00',1,0,1),(19084,'2712','Navarredonda De Gredos','NAVARREDONDA DE GREDOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:19','1900-01-01 00:00:00',1,0,1),(19085,'5230','Navarrenx','NAVARRENX',NULL,'','France','',0,0,76,'2016-10-17 11:27:19','1900-01-01 00:00:00',1,0,1),(19086,'3717','Navarrete','NAVARRETE',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:19','1900-01-01 00:00:00',1,0,1),(19087,'43728','Navas','NAVAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19088,'3467','Navasfrias','NAVASFRIAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19089,'30820','Navasota','NAVASOTA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19090,'3575','Navata','NAVATA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19091,'3131','Naveda','NAVEDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:20','1900-01-01 00:00:00',1,0,1),(19092,'25185','Navegantes','NAVEGANTES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19093,'3097','Navia','NAVIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19094,'5480','Navilly','NAVILLY',NULL,'','France','',0,0,76,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19095,'14099','Navojoa','NAVOJOA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19096,'15507','Navotas','NAVOTAS',NULL,'','Philippines','',0,0,173,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19097,'15316','Nawab Shah','NAWAB SHAH',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19098,'40875','Nawalgarh','NAWALGARH',NULL,'','India','Nawalgarh',2,0,101,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19099,'20085','Nawiliwili Bay','NAWILIWILI BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:27:21','1900-01-01 00:00:00',1,0,1),(19100,'1244','Naxos','NAXOS',NULL,'','GREECE','',0,0,86,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19101,'36363','Naxos-agia Anna','NAXOS-AGIA ANNA',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19102,'36360','Naxos-agios Georgios','NAXOS-AGIOS GEORGIOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19103,'35296','Naxos-stilida','NAXOS-STILIDA',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19104,'39569','Naxxar','NAXXAR',NULL,'','Malta','',0,0,135,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19105,'43167','Nay Pyi Taw','NAY PYI TAW',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19106,'43779','Nayabazar','NAYABAZAR',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19107,'41739','Nayarit','NAYARIT',NULL,'','Mexico','',0,0,141,'2016-10-17 11:27:22','1900-01-01 00:00:00',1,0,1),(19108,'15980','Nazare','NAZARE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19109,'11049','Nazareth','NAZARETH',NULL,'','Israel','Nazareth',0,0,106,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19110,'15400','Nazca','NAZCA',NULL,'','Peru','',0,0,172,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19111,'4417','Nazelles-negron','NAZELLES-NEGRON',NULL,'','France','',0,0,76,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19112,'2450','Nazlat Khalifah','NAZLAT KHALIFAH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19113,'42254','N\'djamena','N\'DJAMENA',NULL,'','Chad','',0,0,44,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19114,'24038','Ndjili','NDJILI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19115,'32646','Ndola','NDOLA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19116,'24031','Ndolo','NDOLO',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:27:23','1900-01-01 00:00:00',1,0,1),(19117,'36630','Neamt','NEAMT',NULL,'','Romania','',0,0,179,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19118,'40732','Neano','NEANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19119,'38864','Neapoli','NEAPOLI',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19120,'1037','Neapolitan Riviera','NEAPOLITAN RIVIERA',NULL,'','ITALY','',0,0,107,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19121,'20678','Near North Side','NEAR NORTH SIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:24','1900-01-01 00:00:00',1,0,1),(19122,'8603','Neath','NEATH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:25','1900-01-01 00:00:00',1,0,1),(19123,'4764','Neauphle-le-chateau','NEAUPHLE-LE-CHATEAU',NULL,'','France','',0,0,76,'2016-10-17 11:27:25','1900-01-01 00:00:00',1,0,1),(19124,'40740','Nebouzat','NEBOUZAT',NULL,'','France','',0,0,76,'2016-10-17 11:27:25','1900-01-01 00:00:00',1,0,1),(19125,'28147','Nebraska City','NEBRASKA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:27:25','1900-01-01 00:00:00',1,0,1),(19126,'22598','Neckarsulm','NECKARSULM',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19127,'39828','Necochea','NECOCHEA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19128,'24092','Necocli','NECOCLI',NULL,'','Colombia','',0,0,49,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19129,'38809','Nedde','NEDDE',NULL,'','France','',0,0,76,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19130,'37649','Neddesitz','NEDDESITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:26','1900-01-01 00:00:00',1,0,1),(19131,'33504','Nederland','NEDERLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:27:27','1900-01-01 00:00:00',1,0,1),(19132,'40116','Nedumangad','NEDUMANGAD',NULL,'','India','',0,0,101,'2016-10-17 11:27:27','1900-01-01 00:00:00',1,0,1),(19133,'10447','Nedumbassery','NEDUMBASSERY',NULL,'','India','',0,0,101,'2016-10-17 11:27:27','1900-01-01 00:00:00',1,0,1),(19134,'21453','Needham','NEEDHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:27:28','1900-01-01 00:00:00',1,0,1),(19135,'8604','Needham Market','NEEDHAM MARKET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:28','1900-01-01 00:00:00',1,0,1),(19136,'18714','Needles','NEEDLES',NULL,'','United States','',0,0,231,'2016-10-17 11:27:28','1900-01-01 00:00:00',1,0,1),(19137,'38226','Neeleshwar','NEELESHWAR',NULL,'','India','',0,0,101,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19138,'40876','Neemrana','NEEMRANA',NULL,'','India','',0,0,101,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19139,'31832','Neenah','NEENAH',NULL,'','United States','',0,0,231,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19140,'25614','Neepawa','NEEPAWA',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19141,'24640','Neerijse','NEERIJSE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:27:29','1900-01-01 00:00:00',1,0,1),(19142,'17145','Nefta','NEFTA',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19143,'16339','Nefteyugansk','NEFTEYUGANSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19144,'25855','Negage','NEGAGE',NULL,'','Angola','',0,0,6,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19145,'39380','Negaunee','NEGAUNEE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19146,'41698','Negeri Sembilan','NEGERI SEMBILAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19147,'13621','Negombo','NEGOMBO',NULL,'','Sri Lanka','Negombo',0,0,200,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19148,'36378','Negombo-waikkal','NEGOMBO-WAIKKAL',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19149,'37571','Negotin','NEGOTIN',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:27:30','1900-01-01 00:00:00',1,0,1),(19150,'12203','Negrar','NEGRAR',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19151,'13101','Negril','NEGRIL',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19152,'39129','Nei Pori','NEI PORI',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19153,'3468','Neila','NEILA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19154,'31833','Neillsville','NEILLSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:31','1900-01-01 00:00:00',1,0,1),(19155,'40356','Neive','NEIVE',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19156,'40100','Nejdek','NEJDEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19157,'3871','Nejjo','NEJJO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19158,'16509','Nejran','NEJRAN',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19159,'3872','Nekemt','NEKEMT',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19160,'39464','Nekob','NEKOB',NULL,'','Morocco','',0,0,148,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19161,'31834','Nekoosa','NEKOOSA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19162,'2164','Nekso','NEKSO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:27:32','1900-01-01 00:00:00',1,0,1),(19163,'10660','Nelamangala','NELAMANGALA',NULL,'','India','',0,0,101,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19164,'16085','Nelas','NELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19165,'42125','Nellim','NELLIM',NULL,'','Finland','',0,0,75,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19166,'10618','Nellore','NELLORE',NULL,'','India','Nellore',7,0,101,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19167,'31184','Nellysford','NELLYSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19168,'15222','Nelson','NELSON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19169,'34262','Nelson Bay','NELSON BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:33','1900-01-01 00:00:00',1,0,1),(19170,'17710','Nelson Lagoon','NELSON LAGOON',NULL,'','United States','',0,0,231,'2016-10-17 11:27:34','1900-01-01 00:00:00',1,0,1),(19171,'34408','Nelson-miramichi','NELSON-MIRAMICHI',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:34','1900-01-01 00:00:00',1,0,1),(19172,'29452','Nelsonville','NELSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:27:34','1900-01-01 00:00:00',1,0,1),(19173,'32585','Nelspruit','NELSPRUIT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:27:34','1900-01-01 00:00:00',1,0,1),(19174,'16327','Neman','NEMAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19175,'38246','Nembro','NEMBRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19176,'16415','Nemchinovka','NEMCHINOVKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19177,'10127','Nemesnep','NEMESNEP',NULL,'','Hungary','',0,0,99,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19178,'37456','Nemesvita','NEMESVITA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19179,'35590','Nemi','NEMI',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19180,'22811','Nemiscau','NEMISCAU',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19181,'5867','Nemours','NEMOURS',NULL,'','France','',0,0,76,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19182,'10932','Nenagh','NENAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:27:35','1900-01-01 00:00:00',1,0,1),(19183,'17711','Nenana','NENANA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19184,'40422','Nendaz','NENDAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19185,'43943','Nendeln','NENDELN',NULL,'','Liechtenstein','',0,0,124,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19186,'683','Nennig','NENNIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19187,'9555','Neo Itilo','NEO ITILO',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19188,'21105','Neodesha','NEODESHA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:36','1900-01-01 00:00:00',1,0,1),(19189,'27723','Neosho','NEOSHO',NULL,'','United States','',0,0,231,'2016-10-17 11:27:37','1900-01-01 00:00:00',1,0,1),(19190,'15058','Nepalganj','NEPALGANJ',NULL,'','Nepal','',0,0,153,'2016-10-17 11:27:37','1900-01-01 00:00:00',1,0,1),(19191,'34572','Nepean','NEPEAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:27:37','1900-01-01 00:00:00',1,0,1),(19192,'33371','Nephi','NEPHI',NULL,'','United States','',0,0,231,'2016-10-17 11:27:37','1900-01-01 00:00:00',1,0,1),(19193,'38631','Nepi','NEPI',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:38','1900-01-01 00:00:00',1,0,1),(19194,'15605','Neple','NEPLE',NULL,'','Poland','',0,0,174,'2016-10-17 11:27:38','1900-01-01 00:00:00',1,0,1),(19195,'19507','Neptune Beach','NEPTUNE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:27:38','1900-01-01 00:00:00',1,0,1),(19196,'41907','Nerac','NERAC',NULL,'','France','',0,0,76,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19197,'38152','Neraida','NERAIDA',NULL,'','Greece','',0,0,86,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19198,'26733','Nerang','NERANG',NULL,'','Australia','',0,0,13,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19199,'40697','Nerezine','NEREZINE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19200,'13313','Nerima','NERIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19201,'5334','Neris Les Bains','NERIS LES BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:27:39','1900-01-01 00:00:00',1,0,1),(19202,'41373','Neris-les-bains','NERIS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19203,'3275','Nerja','NERJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19204,'12204','Nerola','NEROLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19205,'12206','Nerviano','NERVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19206,'16429','Neryungri','NERYUNGRI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:27:40','1900-01-01 00:00:00',1,0,1),(19207,'14870','Nesbyen','NESBYEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19208,'41849','Nesjar','NESJAR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19209,'10987','Neskaupsstadur','NESKAUPSSTADUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19210,'41481','Neskaupstadur','NESKAUPSTADUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19211,'24796','Nessebar','NESSEBAR',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19212,'268','Nesselwang','NESSELWANG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19213,'11063','Netanya','NETANYA',NULL,'','Israel','',0,0,106,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19214,'8605','Nether Stowey','NETHER STOWEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:41','1900-01-01 00:00:00',1,0,1),(19215,'8606','Netherton','NETHERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19216,'7218','Nethy Bridge','NETHY BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19217,'545','Nettetal','NETTETAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19218,'9367','Nettle Bay','NETTLE BAY',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19219,'12207','Nettuno','NETTUNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19220,'24429','Neuberg An Der Murz','NEUBERG AN DER MURZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19221,'1832','Neubrandenburg','NEUBRANDENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:42','1900-01-01 00:00:00',1,0,1),(19222,'22599','Neuburg','NEUBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19223,'24430','Neudau','NEUDAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19224,'23302','Neuenkirch','NEUENKIRCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19225,'27258','Neuenkirchen','NEUENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19226,'645','Neuerburg','NEUERBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19227,'269','Neufahrn','NEUFAHRN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19228,'6780','Neuf-brisach','NEUF-BRISACH',NULL,'','France','',0,0,76,'2016-10-17 11:27:43','1900-01-01 00:00:00',1,0,1),(19229,'6055','Neufchateau','NEUFCHATEAU',NULL,'','France','',0,0,76,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19230,'39716','Neufchateau','NEUFCHATEAU',NULL,'','Belgium','',0,0,21,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19231,'5018','Neufchatel-hardelot','NEUFCHATEL-HARDELOT',NULL,'','France','',0,0,76,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19232,'795','Neuhardenberg','NEUHARDENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19233,'39408','Neuhaus Am Inn','NEUHAUS AM INN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:44','1900-01-01 00:00:00',1,0,1),(19234,'22600','Neuhausen','NEUHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19235,'1895','Neuhermsdorf','NEUHERMSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19236,'271','Neuhof An Der Zenn','NEUHOF AN DER ZENN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19237,'38589','Neuhofen An Der Ybbs','NEUHOFEN AN DER YBBS',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19238,'5825','Neuilly','NEUILLY',NULL,'','France','',0,0,76,'2016-10-17 11:27:45','1900-01-01 00:00:00',1,0,1),(19239,'5481','Neuilly-les-dijon','NEUILLY-LES-DIJON',NULL,'','France','',0,0,76,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19240,'37690','Neuilly-plaisance','NEUILLY-PLAISANCE',NULL,'','France','',0,0,76,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19241,'4765','Neuilly-sur-seine','NEUILLY-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19242,'459','Neu-isenburg','NEU-ISENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19243,'22601','Neukirch','NEUKIRCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19244,'38051','Neukirchen','NEUKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:46','1900-01-01 00:00:00',1,0,1),(19245,'546','Neukirchen-vluyn','NEUKIRCHEN-VLUYN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19246,'2006','Neukolln','NEUKOLLN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19247,'40021','Neum','NEUM',NULL,'','Bosnia and Herzegowina','',0,0,27,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19248,'44150','Neumarkt','NEUMARKT',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19249,'90','Neumuenster','NEUMUENSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19250,'41628','Neumunster','NEUMUNSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:47','1900-01-01 00:00:00',1,0,1),(19251,'40592','Neunburg Vorm Wald','NEUNBURG VORM WALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19252,'26131','Neuquen','NEUQUEN',NULL,'','Argentina','',0,0,10,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19253,'22602','Neuravensburg','NEURAVENSBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19254,'273','Neureichenau','NEUREICHENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19255,'796','Neuruppin','NEURUPPIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19256,'27081','Neusach','NEUSACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19257,'39055','Neuschoenau','NEUSCHOENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19258,'27065','Neusiedl Am See','NEUSIEDL AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19259,'27012','Neusiedler Lake','NEUSIEDLER LAKE',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:48','1900-01-01 00:00:00',1,0,1),(19260,'10079','Neusiedler Lake','NEUSIEDLER LAKE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:27:49','1900-01-01 00:00:00',1,0,1),(19261,'2032','Neuss','NEUSS',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:49','1900-01-01 00:00:00',1,0,1),(19262,'41728','Neustadt-glewe','NEUSTADT-GLEWE',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:50','1900-01-01 00:00:00',1,0,1),(19263,'15','Neustift Im Stubaital','NEUSTIFT IM STUBAITAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:27:50','1900-01-01 00:00:00',1,0,1),(19264,'39525','Neustrelitz','NEUSTRELITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:50','1900-01-01 00:00:00',1,0,1),(19265,'2071','Neu-ulm','NEU-ULM',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:50','1900-01-01 00:00:00',1,0,1),(19266,'38359','Neuveglise','NEUVEGLISE',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19267,'39602','Neuvic','NEUVIC',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19268,'5335','Neuville','NEUVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19269,'5007','Neuville-en-ferrain','NEUVILLE-EN-FERRAIN',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19270,'6681','Neuville-sur-saone','NEUVILLE-SUR-SAONE',NULL,'','France','',0,0,76,'2016-10-17 11:27:51','1900-01-01 00:00:00',1,0,1),(19271,'40751','Neuwerk','NEUWERK',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:52','1900-01-01 00:00:00',1,0,1),(19272,'39173','Neuwied','NEUWIED',NULL,'','Germany','',0,0,83,'2016-10-17 11:27:52','1900-01-01 00:00:00',1,0,1),(19273,'6499','Nevache','NEVACHE',NULL,'','France','',0,0,76,'2016-10-17 11:27:52','1900-01-01 00:00:00',1,0,1),(19274,'20256','Nevada','NEVADA',NULL,'','United States','',0,0,231,'2016-10-17 11:27:52','1900-01-01 00:00:00',1,0,1),(19275,'5482','Nevers','NEVERS',NULL,'','France','',0,0,76,'2016-10-17 11:27:54','1900-01-01 00:00:00',1,0,1),(19276,'28976','Neversink','NEVERSINK',NULL,'','United States','',0,0,231,'2016-10-17 11:27:54','1900-01-01 00:00:00',1,0,1),(19277,'25138','Neves','NEVES',NULL,'','Brazil','',0,0,30,'2016-10-17 11:27:54','1900-01-01 00:00:00',1,0,1),(19278,'37643','Nevez','NEVEZ',NULL,'','France','',0,0,76,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19279,'39019','Neviano','NEVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19280,'27461','Nevis','NEVIS',NULL,'','United States','',0,0,231,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19281,'13475','Nevis','NEVIS',NULL,'','Saint Kitts And Nevis','',0,0,202,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19282,'17349','Nevsehir','NEVSEHIR',NULL,'','Turkey','Nevsehir',0,0,222,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19283,'36809','Nevshehir','NEVSHEHIR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19284,'36808','Nevshehir-kaymakli','NEVSHEHIR-KAYMAKLI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:27:55','1900-01-01 00:00:00',1,0,1),(19285,'15570','New Britain','NEW BRITAIN',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:27:59','1900-01-01 00:00:00',1,0,1),(19286,'14425','New Caledonia','NEW CALEDONIA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:28:00','1900-01-01 00:00:00',1,0,1),(19287,'13177','New Chitose Airport (Cts)','NEW CHITOSE AIRPORT (CTS)',NULL,'','Japan','',0,0,110,'2016-10-17 11:28:02','1900-01-01 00:00:00',1,0,1),(19288,'25735','New Glasgow','NEW GLASGOW',NULL,'','Canada','',0,0,39,'2016-10-17 11:28:05','1900-01-01 00:00:00',1,0,1),(19289,'9907','New Kowloon','NEW KOWLOON',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:28:09','1900-01-01 00:00:00',1,0,1),(19290,'15140','New Lynn','NEW LYNN',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:11','1900-01-01 00:00:00',1,0,1),(19291,'26852','New Norfolk','NEW NORFOLK',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:13','1900-01-01 00:00:00',1,0,1),(19292,'10948','New Ross','NEW ROSS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:16','1900-01-01 00:00:00',1,0,1),(19293,'21898','Newagen','NEWAGEN',NULL,'','United States','',0,0,231,'2016-10-17 11:28:20','1900-01-01 00:00:00',1,0,1),(19294,'39992','Newark','NEWARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:22','1900-01-01 00:00:00',1,0,1),(19295,'36989','Newark-delaware','NEWARK-DELAWARE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:23','1900-01-01 00:00:00',1,0,1),(19296,'36990','Newark-new Jersey','NEWARK-NEW JERSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:28:23','1900-01-01 00:00:00',1,0,1),(19297,'7221','Newark-on-trent','NEWARK-ON-TRENT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:24','1900-01-01 00:00:00',1,0,1),(19298,'22185','Newaygo','NEWAYGO',NULL,'','United States','',0,0,231,'2016-10-17 11:28:24','1900-01-01 00:00:00',1,0,1),(19299,'10949','Newbawn','NEWBAWN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:24','1900-01-01 00:00:00',1,0,1),(19300,'29714','Newberg','NEWBERG',NULL,'','United States','',0,0,231,'2016-10-17 11:28:24','1900-01-01 00:00:00',1,0,1),(19301,'22186','Newberry','NEWBERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:28:25','1900-01-01 00:00:00',1,0,1),(19302,'8608','Newbridge','NEWBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:25','1900-01-01 00:00:00',1,0,1),(19303,'10950','Newbridge','NEWBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:25','1900-01-01 00:00:00',1,0,1),(19304,'27727','Newburg','NEWBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:28:26','1900-01-01 00:00:00',1,0,1),(19305,'28988','Newburgh','NEWBURGH',NULL,'','United States','',0,0,231,'2016-10-17 11:28:26','1900-01-01 00:00:00',1,0,1),(19306,'8609','Newburgh','NEWBURGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:27','1900-01-01 00:00:00',1,0,1),(19307,'8610','Newbury','NEWBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:27','1900-01-01 00:00:00',1,0,1),(19308,'32744','Newbury','NEWBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:28:28','1900-01-01 00:00:00',1,0,1),(19309,'21459','Newburyport','NEWBURYPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:28:29','1900-01-01 00:00:00',1,0,1),(19310,'8611','Newby Bridge','NEWBY BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:29','1900-01-01 00:00:00',1,0,1),(19311,'8613','Newcastle','NEWCASTLE',NULL,'','United Kingdom','Newcastle',0,0,229,'2016-10-17 11:28:30','1900-01-01 00:00:00',1,0,1),(19312,'30825','Newcastle','NEWCASTLE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:30','1900-01-01 00:00:00',1,0,1),(19313,'34263','Newcastle','NEWCASTLE',NULL,'','Australia','Newcastle',0,0,13,'2016-10-17 11:28:30','1900-01-01 00:00:00',1,0,1),(19314,'13478','Newcastle','NEWCASTLE',NULL,'','Saint Kitts And Nevis','Newcastle',0,0,202,'2016-10-17 11:28:30','1900-01-01 00:00:00',1,0,1),(19315,'32528','Newcastle','NEWCASTLE',NULL,'','South Africa','Newcastle',0,0,195,'2016-10-17 11:28:31','1900-01-01 00:00:00',1,0,1),(19316,'34409','Newcastle','NEWCASTLE',NULL,'','Canada','Newcastle',0,0,39,'2016-10-17 11:28:31','1900-01-01 00:00:00',1,0,1),(19317,'1254','Newcastle Of Northern Ireland','NEWCASTLE OF NORTHERN IRELAND',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:28:31','1900-01-01 00:00:00',1,0,1),(19318,'35399','Newcastle West','NEWCASTLE WEST',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:32','1900-01-01 00:00:00',1,0,1),(19319,'41104','Newcastleton','NEWCASTLETON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:32','1900-01-01 00:00:00',1,0,1),(19320,'7222','Newcastle-under-lyme','NEWCASTLE-UNDER-LYME',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:32','1900-01-01 00:00:00',1,0,1),(19321,'1246','Newcastle-upon-tyne','NEWCASTLE-UPON-TYNE',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:28:32','1900-01-01 00:00:00',1,0,1),(19322,'29459','Newcomerstown','NEWCOMERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:28:33','1900-01-01 00:00:00',1,0,1),(19323,'7223','Newcraighall','NEWCRAIGHALL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:33','1900-01-01 00:00:00',1,0,1),(19324,'11076','Newe Ilan','NEWE ILAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:28:33','1900-01-01 00:00:00',1,0,1),(19325,'33956','Newell','NEWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:28:33','1900-01-01 00:00:00',1,0,1),(19326,'8615','Newent','NEWENT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:34','1900-01-01 00:00:00',1,0,1),(19327,'28990','Newfane','NEWFANE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:34','1900-01-01 00:00:00',1,0,1),(19328,'28991','Newfield','NEWFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:28:35','1900-01-01 00:00:00',1,0,1),(19329,'18718','Newhall','NEWHALL',NULL,'','United States','',0,0,231,'2016-10-17 11:28:36','1900-01-01 00:00:00',1,0,1),(19330,'8616','Newham','NEWHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:36','1900-01-01 00:00:00',1,0,1),(19331,'8617','Newhaven','NEWHAVEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:36','1900-01-01 00:00:00',1,0,1),(19332,'8618','Newington','NEWINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:37','1900-01-01 00:00:00',1,0,1),(19333,'19124','Newington','NEWINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:28:37','1900-01-01 00:00:00',1,0,1),(19334,'32586','Newington','NEWINGTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:28:37','1900-01-01 00:00:00',1,0,1),(19335,'34265','Newington','NEWINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:37','1900-01-01 00:00:00',1,0,1),(19336,'33957','Newland','NEWLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19337,'26607','Newman','NEWMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19338,'15141','Newmarket','NEWMARKET',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19339,'39026','Newmarket','NEWMARKET',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19340,'34575','Newmarket','NEWMARKET',NULL,'','Canada','',0,0,39,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19341,'9289','Newmarket','NEWMARKET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:38','1900-01-01 00:00:00',1,0,1),(19342,'10792','Newmarket On Fergus','NEWMARKET ON FERGUS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:39','1900-01-01 00:00:00',1,0,1),(19343,'19885','Newnan','NEWNAN',NULL,'','United States','',0,0,231,'2016-10-17 11:28:39','1900-01-01 00:00:00',1,0,1),(19344,'7224','Newnham On Severn','NEWNHAM ON SEVERN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:39','1900-01-01 00:00:00',1,0,1),(19345,'10906','Newport','NEWPORT',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:39','1900-01-01 00:00:00',1,0,1),(19346,'34266','Newport','NEWPORT',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:40','1900-01-01 00:00:00',1,0,1),(19347,'1248','Newport','NEWPORT',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:28:42','1900-01-01 00:00:00',1,0,1),(19348,'36334','Newport (Wales)','NEWPORT (WALES)',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:42','1900-01-01 00:00:00',1,0,1),(19349,'1249','Newquay','NEWQUAY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:28:44','1900-01-01 00:00:00',1,0,1),(19350,'8621','Newry','NEWRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:44','1900-01-01 00:00:00',1,0,1),(19351,'21900','Newry','NEWRY',NULL,'','United States','',0,0,231,'2016-10-17 11:28:44','1900-01-01 00:00:00',1,0,1),(19352,'17713','Newtok','NEWTOK',NULL,'','United States','',0,0,231,'2016-10-17 11:28:45','1900-01-01 00:00:00',1,0,1),(19353,'20258','Newton','NEWTON',NULL,'','United States','',0,0,231,'2016-10-17 11:28:45','1900-01-01 00:00:00',1,0,1),(19354,'10922','Newton','NEWTON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:46','1900-01-01 00:00:00',1,0,1),(19355,'15225','Newton','NEWTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:46','1900-01-01 00:00:00',1,0,1),(19356,'8625','Newton-le-willows','NEWTON-LE-WILLOWS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:49','1900-01-01 00:00:00',1,0,1),(19357,'8626','Newtonmore','NEWTONMORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:49','1900-01-01 00:00:00',1,0,1),(19358,'21462','Newtonville','NEWTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:50','1900-01-01 00:00:00',1,0,1),(19359,'30099','Newtown','NEWTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:28:50','1900-01-01 00:00:00',1,0,1),(19360,'34267','Newtown','NEWTOWN',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:50','1900-01-01 00:00:00',1,0,1),(19361,'8628','Newtownabbey','NEWTOWNABBEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:51','1900-01-01 00:00:00',1,0,1),(19362,'8630','Newtownbreda','NEWTOWNBREDA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:51','1900-01-01 00:00:00',1,0,1),(19363,'10752','Newtownmountkennedy','NEWTOWNMOUNTKENNEDY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:28:51','1900-01-01 00:00:00',1,0,1),(19364,'44078','Neydens','NEYDENS',NULL,'','France','',0,0,76,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19365,'10570','Neyveli','NEYVELI',NULL,'','India','',0,0,101,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19366,'4418','Nezignan L Eveque','NEZIGNAN L EVEQUE',NULL,'','France','',0,0,76,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19367,'44003','Ngamba Island','NGAMBA ISLAND',NULL,'','Uganda','',0,0,226,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19368,'24055','Ngamoueri','NGAMOUERI',NULL,'','Congo','',0,0,51,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19369,'17060','Ngao','NGAO',NULL,'','Thailand','',0,0,215,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19370,'42062','Ngapali','NGAPALI',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19371,'15142','Ngaruawahia','NGARUAWAHIA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19372,'24075','Ngatangiia','NGATANGIIA',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19373,'4067','Ngau','NGAU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:28:52','1900-01-01 00:00:00',1,0,1),(19374,'42721','Nghe An','NGHE AN',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19375,'24032','Ngombe','NGOMBE',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19376,'43029','Ngongotaha','NGONGOTAHA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19377,'17468','Ngorongoro','NGORONGORO',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19378,'26286','Ngukurr','NGUKURR',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19379,'42412','Ngwesaung','NGWESAUNG',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19380,'32282','Nha Be','NHA BE',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19381,'26530','Nhill','NHILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19382,'34576','Niagara Falls','NIAGARA FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19383,'28992','Niagara Falls','NIAGARA FALLS',NULL,'','United States','',0,0,231,'2016-10-17 11:28:53','1900-01-01 00:00:00',1,0,1),(19384,'34578','Niagara-on-the-lake','NIAGARA-ON-THE-LAKE',NULL,'','Canada','Niagara-on-the-Lake',0,0,39,'2016-10-17 11:28:54','1900-01-01 00:00:00',1,0,1),(19385,'19125','Niantic','NIANTIC',NULL,'','United States','',0,0,231,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19386,'37758','Niassa','NIASSA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19387,'38985','Nibbiaia','NIBBIAIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19388,'2247','Nibe','NIBE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19389,'38369','Nibionno','NIBIONNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19390,'10448','Nibra','NIBRA',NULL,'','India','',0,0,101,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19391,'4419','Nice','NICE',NULL,'','France','Nice',0,0,76,'2016-10-17 11:28:55','1900-01-01 00:00:00',1,0,1),(19392,'19510','Niceville','NICEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:56','1900-01-01 00:00:00',1,0,1),(19393,'12208','Nichelino','NICHELINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:56','1900-01-01 00:00:00',1,0,1),(19394,'33705','Nicholasville','NICHOLASVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:28:56','1900-01-01 00:00:00',1,0,1),(19395,'24887','Nicholls Town','NICHOLLS TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19396,'21109','Nickerson','NICKERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19397,'16275','Nicola','NICOLA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19398,'12209','Nicolosi','NICOLOSI',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19399,'24280','Nicosia','NICOSIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19400,'12995','Nicotera','NICOTERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:28:57','1900-01-01 00:00:00',1,0,1),(19401,'24219','Nicoya','NICOYA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19402,'39287','Nida','NIDA',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19403,'7227','Niddrie','NIDDRIE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19404,'24545','Niederalm','NIEDERALM',NULL,'','Austria','',0,0,14,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19405,'24485','Niederau','NIEDERAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19406,'1897','Niederau','NIEDERAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19407,'1622','Niederbronn Les Bain','NIEDERBRONN LES BAIN',NULL,'','France','',0,0,76,'2016-10-17 11:28:58','1900-01-01 00:00:00',1,0,1),(19408,'6781','Niederbronn-les-bains','NIEDERBRONN-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19409,'646','Niederfell','NIEDERFELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19410,'38751','Niederhaslach','NIEDERHASLACH',NULL,'','France','',0,0,76,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19411,'2041','Niederkassel','NIEDERKASSEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19412,'460','Nieder-moos','NIEDER-MOOS',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19413,'461','Niedernhausen','NIEDERNHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:28:59','1900-01-01 00:00:00',1,0,1),(19414,'2007','Niederschonhausen','NIEDERSCHONHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19415,'22603','Niederstetten','NIEDERSTETTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19416,'22604','Niederstotzingen','NIEDERSTOTZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19417,'93','Niederwerbe','NIEDERWERBE',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19418,'94','Niederwiesa','NIEDERWIESA',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19419,'647','Niederzissen','NIEDERZISSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19420,'22605','Niefern','NIEFERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:00','1900-01-01 00:00:00',1,0,1),(19421,'547','Nieheim','NIEHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19422,'797','Niemegk','NIEMEGK',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19423,'20','Niemeyer','NIEMEYER',NULL,'','Brazil','',0,0,30,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19424,'380','Niendorf','NIENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19425,'648','Nierstein','NIERSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19426,'6355','Nieuil','NIEUIL',NULL,'','France','',0,0,76,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19427,'6009','Nieul','NIEUL',NULL,'','France','',0,0,76,'2016-10-17 11:29:01','1900-01-01 00:00:00',1,0,1),(19428,'42837','Nieuw Vennep','NIEUW VENNEP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19429,'14686','Nieuwegein','NIEUWEGEIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19430,'14649','Nieuwendam','NIEUWENDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19431,'14724','Nieuwerkerk Aan Den Ijssel','NIEUWERKERK AAN DEN IJSSEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19432,'14562','Nieuweschans','NIEUWESCHANS',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19433,'24667','Nieuwpoort','NIEUWPOORT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19434,'14650','Nieuw-vennep','NIEUW-VENNEP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19435,'14698','Nieuwvliet','NIEUWVLIET',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19436,'4420','Nievre','NIEVRE',NULL,'','France','',0,0,76,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19437,'798','Niewitz','NIEWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:02','1900-01-01 00:00:00',1,0,1),(19438,'43062','Niforeika','NIFOREIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19439,'39579','Niftrik','NIFTRIK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19440,'43543','Nigata','NIGATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19441,'17353','Nigde','NIGDE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19442,'26377','Nightcliff','NIGHTCLIFF',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19443,'17714','Nightmute','NIGHTMUTE',NULL,'','United States','',0,0,231,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19444,'10188','Nihiwatu','NIHIWATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19445,'13403','Niigata','NIIGATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19446,'13178','Niiharu','NIIHARU',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:03','1900-01-01 00:00:00',1,0,1),(19447,'38693','Nijar','NIJAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19448,'36461','Nijkerk','NIJKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19449,'14545','Nijmegen','NIJMEGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19450,'9705','Nikaia','NIKAIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19451,'9706','Nikiana','NIKIANA',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19452,'35272','Nikiti','NIKITI',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19453,'13179','Nikko','NIKKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19454,'35728','Nikko-kinugawa','NIKKO-KINUGAWA',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19455,'42237','Niklasdorf','NIKLASDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19456,'17497','Nikolaev','NIKOLAEV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:29:04','1900-01-01 00:00:00',1,0,1),(19457,'17715','Nikolai','NIKOLAI',NULL,'','United States','',0,0,231,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19458,'2008','Nikolassee','NIKOLASSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19459,'16372','Nikolo-khovanskoye','NIKOLO-KHOVANSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19460,'17716','Nikolski','NIKOLSKI',NULL,'','United States','',0,0,231,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19461,'16276','Nikolskoye','NIKOLSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:05','1900-01-01 00:00:00',1,0,1),(19462,'16324','Nikulino','NIKULINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19463,'13466','Nikunau','NIKUNAU',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19464,'42844','Nilai','NILAI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19465,'43861','Nilambur','NILAMBUR',NULL,'','India','',0,0,101,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19466,'43406','Nile Cruise','NILE CRUISE',NULL,'','Egypt','',0,0,65,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19467,'29461','Niles','NILES',NULL,'','United States','',0,0,231,'2016-10-17 11:29:06','1900-01-01 00:00:00',1,0,1),(19468,'42590','Nileshwaram','NILESHWARAM',NULL,'','India','',0,0,101,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19469,'40877','Nilgiris','NILGIRIS',NULL,'','India','',0,0,101,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19470,'25139','Nilopolis','NILOPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19471,'4002','Nilsia','NILSIA',NULL,'','Finland','',0,0,75,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19472,'40878','Nimaj','NIMAJ',NULL,'','India','',0,0,101,'2016-10-17 11:29:07','1900-01-01 00:00:00',1,0,1),(19473,'5948','Nimes','NIMES',NULL,'','France','',0,0,76,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19474,'23709','Ningbo','NINGBO',NULL,'','China','',0,0,46,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19475,'23775','Ningde','NINGDE',NULL,'','China','',0,0,46,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19476,'34889','Ninghai','NINGHAI',NULL,'','China','',0,0,46,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19477,'37087','Ninh Binh','NINH BINH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19478,'17717','Ninilchik','NINILCHIK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:08','1900-01-01 00:00:00',1,0,1),(19479,'20086','Ninole','NINOLE',NULL,'','United States','',0,0,231,'2016-10-17 11:29:09','1900-01-01 00:00:00',1,0,1),(19480,'28148','Niobrara','NIOBRARA',NULL,'','United States','',0,0,231,'2016-10-17 11:29:09','1900-01-01 00:00:00',1,0,1),(19481,'24033','Nioki','NIOKI',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19482,'6356','Niort','NIORT',NULL,'','France','',0,0,76,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19483,'22956','Nipawin','NIPAWIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19484,'18721','Nipomo','NIPOMO',NULL,'','United States','',0,0,231,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19485,'32374','Nis','NIS',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19486,'13314','Niseko','NISEKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:10','1900-01-01 00:00:00',1,0,1),(19487,'40537','Nishiizu','NISHIIZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19488,'13316','Nishinomiya','NISHINOMIYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19489,'37607','Nishinoomote','NISHINOOMOTE',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19490,'13317','Nishiwaki','NISHIWAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19491,'25340','Nisku','NISKU',NULL,'','Canada','',0,0,39,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19492,'9556','Nissaki','NISSAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19493,'27467','Nisswa','NISSWA',NULL,'','United States','',0,0,231,'2016-10-17 11:29:11','1900-01-01 00:00:00',1,0,1),(19494,'42492','Nisyros','NISYROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19495,'25140','Niteroi','NITEROI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19496,'32022','Nitro','NITRO',NULL,'','United States','',0,0,231,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19497,'649','Nittel','NITTEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19498,'17113','Niuafo Ou','NIUAFO OU',NULL,'','Tonga','',0,0,218,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19499,'17114','Niuatoputapu','NIUATOPUTAPU',NULL,'','Tonga','',0,0,218,'2016-10-17 11:29:12','1900-01-01 00:00:00',1,0,1),(19500,'3948','Nivala','NIVALA',NULL,'','Finland','',0,0,75,'2016-10-17 11:29:13','1900-01-01 00:00:00',1,0,1),(19501,'24641','Nivelles','NIVELLES',NULL,'','Belgium','',0,0,21,'2016-10-17 11:29:13','1900-01-01 00:00:00',1,0,1),(19502,'38371','Nivillac','NIVILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:29:13','1900-01-01 00:00:00',1,0,1),(19503,'33506','Niwot','NIWOT',NULL,'','United States','',0,0,231,'2016-10-17 11:29:13','1900-01-01 00:00:00',1,0,1),(19504,'27728','Nixa','NIXA',NULL,'','United States','',0,0,231,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19505,'16340','Nizhnevartovsk','NIZHNEVARTOVSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19506,'16246','Nizhniy Novgorod','NIZHNIY NOVGOROD',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19507,'36517','Nizwa','NIZWA',NULL,'','Oman','Nizwa',0,0,165,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19508,'15280','Nizwá','NIZWÁ',NULL,'','Oman','',0,0,165,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19509,'41855','Njivice','NJIVICE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19510,'24056','Nkayi','NKAYI',NULL,'','Congo','',0,0,51,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19511,'41656','N\'koob','N\'KOOB',NULL,'','Morocco','',0,0,148,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19512,'32529','Nkwalini','NKWALINI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:29:14','1900-01-01 00:00:00',1,0,1),(19513,'3060','Noain','NOAIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:15','1900-01-01 00:00:00',1,0,1),(19514,'3673','Noalla','NOALLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:15','1900-01-01 00:00:00',1,0,1),(19515,'19126','Noank','NOANK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:15','1900-01-01 00:00:00',1,0,1),(19516,'26463','Noarlunga','NOARLUNGA',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:15','1900-01-01 00:00:00',1,0,1),(19517,'17718','Noatak','NOATAK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:16','1900-01-01 00:00:00',1,0,1),(19518,'26734','Nobby','NOBBY',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:16','1900-01-01 00:00:00',1,0,1),(19519,'34579','Nobel','NOBEL',NULL,'','Canada','',0,0,39,'2016-10-17 11:29:16','1900-01-01 00:00:00',1,0,1),(19520,'26531','Noble Park','NOBLE PARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:16','1900-01-01 00:00:00',1,0,1),(19521,'20957','Noblesville','NOBLESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:29:17','1900-01-01 00:00:00',1,0,1),(19522,'35753','Noboribetsu','NOBORIBETSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:29:17','1900-01-01 00:00:00',1,0,1),(19523,'12210','Nocera Superiore','NOCERA SUPERIORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:17','1900-01-01 00:00:00',1,0,1),(19524,'12212','Noceto','NOCETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19525,'12213','Noci','NOCI',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19526,'39514','Nods','NODS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19527,'95','Noerdlingen','NOERDLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19528,'43099','Noeux Les Mines','NOEUX LES MINES',NULL,'','France','',0,0,76,'2016-10-17 11:29:18','1900-01-01 00:00:00',1,0,1),(19529,'38284','Noeux-les-mines','NOEUX-LES-MINES',NULL,'','France','',0,0,76,'2016-10-17 11:29:19','1900-01-01 00:00:00',1,0,1),(19530,'28551','Nogal','NOGAL',NULL,'','United States','',0,0,231,'2016-10-17 11:29:19','1900-01-01 00:00:00',1,0,1),(19531,'18171','Nogales','NOGALES',NULL,'','United States','',0,0,231,'2016-10-17 11:29:19','1900-01-01 00:00:00',1,0,1),(19532,'13925','Nogales','NOGALES',NULL,'','Mexico','',0,0,141,'2016-10-17 11:29:20','1900-01-01 00:00:00',1,0,1),(19533,'12214','Nogara','NOGARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:20','1900-01-01 00:00:00',1,0,1),(19534,'6118','Nogaro','NOGARO',NULL,'','France','',0,0,76,'2016-10-17 11:29:20','1900-01-01 00:00:00',1,0,1),(19535,'12947','Nogarole Rocca','NOGAROLE ROCCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:21','1900-01-01 00:00:00',1,0,1),(19536,'16398','Nogatino','NOGATINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:21','1900-01-01 00:00:00',1,0,1),(19537,'4421','Nogent Le Rotrou','NOGENT LE ROTROU',NULL,'','France','',0,0,76,'2016-10-17 11:29:21','1900-01-01 00:00:00',1,0,1),(19538,'41370','Nogent-le-rotrou','NOGENT-LE-ROTROU',NULL,'','France','',0,0,76,'2016-10-17 11:29:21','1900-01-01 00:00:00',1,0,1),(19539,'4766','Nogent-sur-marne','NOGENT-SUR-MARNE',NULL,'','France','',0,0,76,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19540,'16028','Nogueira','NOGUEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19541,'38244','Nogueira De Ramuin','NOGUEIRA DE RAMUIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19542,'684','Nohfelden','NOHFELDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19543,'10449','Noida','NOIDA',NULL,'','India','Noida',6,0,101,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19544,'24702','Noirefontaine','NOIREFONTAINE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:29:22','1900-01-01 00:00:00',1,0,1),(19545,'6261','Noirmoutier','NOIRMOUTIER',NULL,'','France','',0,0,76,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19546,'5868','Noisiel','NOISIEL',NULL,'','France','',0,0,76,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19547,'4767','Noisy-le-grand','NOISY-LE-GRAND',NULL,'','France','',0,0,76,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19548,'5666','Noizay','NOIZAY',NULL,'','France','',0,0,76,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19549,'3132','Noja','NOJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19550,'16277','Nojabrxsk','NOJABRXSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:23','1900-01-01 00:00:00',1,0,1),(19551,'3917','Nokia','NOKIA',NULL,'','Finland','',0,0,75,'2016-10-17 11:29:24','1900-01-01 00:00:00',1,0,1),(19552,'19511','Nokomis','NOKOMIS',NULL,'','United States','',0,0,231,'2016-10-17 11:29:24','1900-01-01 00:00:00',1,0,1),(19553,'37967','Nomaglio','NOMAGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:24','1900-01-01 00:00:00',1,0,1),(19554,'40275','Nonant','NONANT',NULL,'','France','',0,0,76,'2016-10-17 11:29:25','1900-01-01 00:00:00',1,0,1),(19555,'21463','Nonantum','NONANTUM',NULL,'','United States','',0,0,231,'2016-10-17 11:29:25','1900-01-01 00:00:00',1,0,1),(19556,'17720','Nondalton','NONDALTON',NULL,'','United States','',0,0,231,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19557,'17066','Nong Khai','NONG KHAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19558,'23998','Nonghui','NONGHUI',NULL,'','China','',0,0,46,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19560,'13467','Nonouti','NONOUTI',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19561,'17074','Nonthaburi','NONTHABURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19562,'4104','Nontron','NONTRON',NULL,'','France','',0,0,76,'2016-10-17 11:29:26','1900-01-01 00:00:00',1,0,1),(19563,'37539','Noonu Atoll','NOONU ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19564,'14575','Noorbeek','NOORBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19565,'25835','Noord','NOORD',NULL,'','Aruba','',0,0,12,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19566,'32485','Noordhoek','NOORDHOEK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19567,'41043','Noordwijk','NOORDWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19568,'14726','Noordwijkerhout','NOORDWIJKERHOUT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19569,'17721','Noorvik','NOORVIK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:27','1900-01-01 00:00:00',1,0,1),(19570,'26736','Noosa','NOOSA',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19571,'26424','Noosaville','NOOSAVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19572,'14727','Nootdorp','NOOTDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19573,'41332','Nooverha','NOOVERHA',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19574,'16762','Nora','NORA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19575,'12216','Norcia','NORCIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:29:28','1900-01-01 00:00:00',1,0,1),(19576,'18723','Norco','NORCO',NULL,'','United States','',0,0,231,'2016-10-17 11:29:29','1900-01-01 00:00:00',1,0,1),(19577,'19886','Norcross','NORCROSS',NULL,'','United States','',0,0,231,'2016-10-17 11:29:29','1900-01-01 00:00:00',1,0,1),(19578,'44025','Nord-aurdal','NORD-AURDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:31','1900-01-01 00:00:00',1,0,1),(19579,'41333','Nordberg','NORDBERG',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19580,'37471','Nordborg','NORDBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19581,'2263','Nordby','NORDBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19582,'27259','Norddeich','NORDDEICH',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19583,'40105','Norddorf','NORDDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:35','1900-01-01 00:00:00',1,0,1),(19584,'18724','Norden','NORDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:29:36','1900-01-01 00:00:00',1,0,1),(19585,'27260','Norden','NORDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:36','1900-01-01 00:00:00',1,0,1),(19586,'27261','Nordenham','NORDENHAM',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:36','1900-01-01 00:00:00',1,0,1),(19587,'27262','Norderney','NORDERNEY',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:36','1900-01-01 00:00:00',1,0,1),(19588,'730','Norderstedt','NORDERSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19589,'16094','Nordeste','NORDESTE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19590,'14983','Nordfjordeid','NORDFJORDEID',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19591,'39571','Nordhausen','NORDHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19592,'96','Nordholz-spieka','NORDHOLZ-SPIEKA',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19593,'2126','Nordjylland','NORDJYLLAND',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19594,'276','Nordlingen','NORDLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19595,'20383','Nordman','NORDMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:29:37','1900-01-01 00:00:00',1,0,1),(19596,'43328','Nordreisa','NORDREISA',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:38','1900-01-01 00:00:00',1,0,1),(19597,'14954','Nordstrand','NORDSTRAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:38','1900-01-01 00:00:00',1,0,1),(19598,'14812','Nord-trondelag','NORD-TRONDELAG',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:38','1900-01-01 00:00:00',1,0,1),(19599,'3098','Norena','NORENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:29:39','1900-01-01 00:00:00',1,0,1),(19600,'39855','Noresund','NORESUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:39','1900-01-01 00:00:00',1,0,1),(19601,'21464','Norfolk','NORFOLK',NULL,'','United States','',0,0,231,'2016-10-17 11:29:39','1900-01-01 00:00:00',1,0,1),(19602,'7228','Norfolk','NORFOLK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:29:39','1900-01-01 00:00:00',1,0,1),(19603,'14437','Norfolk Island','NORFOLK ISLAND',NULL,'','Norfolk Island','',0,0,162,'2016-10-17 11:29:41','1900-01-01 00:00:00',1,0,1),(19604,'14900','Norheimsund','NORHEIMSUND',NULL,'','Norway','',0,0,164,'2016-10-17 11:29:41','1900-01-01 00:00:00',1,0,1),(19605,'16278','Norilsk','NORILSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:29:41','1900-01-01 00:00:00',1,0,1),(19606,'20680','Normal','NORMAL',NULL,'','United States','',0,0,231,'2016-10-17 11:29:42','1900-01-01 00:00:00',1,0,1),(19607,'32934','Norman','NORMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:29:42','1900-01-01 00:00:00',1,0,1),(19608,'7229','Norman Cross','NORMAN CROSS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:29:42','1900-01-01 00:00:00',1,0,1),(19609,'1400','Normandy','NORMANDY',NULL,'','FRANCE','',0,0,76,'2016-10-17 11:29:43','1900-01-01 00:00:00',1,0,1),(19610,'26425','Normanton','NORMANTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:43','1900-01-01 00:00:00',1,0,1),(19611,'26464','Normanville','NORMANVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:43','1900-01-01 00:00:00',1,0,1),(19612,'2196','Norre Broby','NORRE BROBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:43','1900-01-01 00:00:00',1,0,1),(19613,'20681','Norridge','NORRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:29:44','1900-01-01 00:00:00',1,0,1),(19614,'32121','Norris','NORRIS',NULL,'','United States','',0,0,231,'2016-10-17 11:29:45','1900-01-01 00:00:00',1,0,1),(19615,'30100','Norristown','NORRISTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:29:45','1900-01-01 00:00:00',1,0,1),(19616,'16656','Norrkoping','NORRKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:29:45','1900-01-01 00:00:00',1,0,1),(19617,'16838','Norrtalje','NORRTALJE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:29:45','1900-01-01 00:00:00',1,0,1),(19618,'26962','Norseman','NORSEMAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:29:46','1900-01-01 00:00:00',1,0,1),(19619,'32333','Norsup','NORSUP',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:29:46','1900-01-01 00:00:00',1,0,1),(19620,'27263','Norten-hardenberg','NORTEN-HARDENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:29:46','1900-01-01 00:00:00',1,0,1),(19621,'2127','North Arhus','NORTH ARHUS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:29:47','1900-01-01 00:00:00',1,0,1),(19622,'13755','North Ari Atoll','NORTH ARI ATOLL',NULL,'','Maldives','',0,0,133,'2016-10-17 11:29:47','1900-01-01 00:00:00',1,0,1),(19623,'22957','North Battleford','NORTH BATTLEFORD',NULL,'','Canada','',0,0,39,'2016-10-17 11:29:48','1900-01-01 00:00:00',1,0,1),(19624,'24778','North Black Sea Coast','NORTH BLACK SEA COAST',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:29:51','1900-01-01 00:00:00',1,0,1),(19625,'23616','North Chaoyang','NORTH CHAOYANG',NULL,'','China','',0,0,46,'2016-10-17 11:29:53','1900-01-01 00:00:00',1,0,1),(19626,'13842','North Coast','NORTH COAST',NULL,'','Mexico','',0,0,141,'2016-10-17 11:29:55','1900-01-01 00:00:00',1,0,1),(19627,'10451','North Dum-dum','NORTH DUM-DUM',NULL,'','India','',0,0,101,'2016-10-17 11:29:57','1900-01-01 00:00:00',1,0,1),(19628,'42015','North Eleuthera','NORTH ELEUTHERA',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:29:58','1900-01-01 00:00:00',1,0,1),(19629,'42628','North Labanon','NORTH LABANON',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:30:05','1900-01-01 00:00:00',1,0,1),(19630,'1255','North Portugal','NORTH PORTUGAL',NULL,'','PORTUGAL','',0,0,175,'2016-10-17 11:30:12','1900-01-01 00:00:00',1,0,1),(19631,'1402','North Sardinia','NORTH SARDINIA',NULL,'','ITALY','',0,0,107,'2016-10-17 11:30:16','1900-01-01 00:00:00',1,0,1),(19632,'97','North Sea Coast (Lower Saxony)','NORTH SEA COAST (LOWER SAXONY)',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:17','1900-01-01 00:00:00',1,0,1),(19633,'24262','North Side','NORTH SIDE',NULL,'','Cayman Islands','',0,0,42,'2016-10-17 11:30:18','1900-01-01 00:00:00',1,0,1),(19634,'32223','North Sound','NORTH SOUND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 11:30:18','1900-01-01 00:00:00',1,0,1),(19635,'8640','Northallerton','NORTHALLERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:24','1900-01-01 00:00:00',1,0,1),(19636,'26609','Northam','NORTHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:24','1900-01-01 00:00:00',1,0,1),(19637,'21483','Northampton','NORTHAMPTON',NULL,'','United States','',0,0,231,'2016-10-17 11:30:24','1900-01-01 00:00:00',1,0,1),(19638,'1404','Northampton','NORTHAMPTON',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:30:25','1900-01-01 00:00:00',1,0,1),(19639,'21484','Northborough','NORTHBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:30:25','1900-01-01 00:00:00',1,0,1),(19640,'26963','Northbridge','NORTHBRIDGE',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:25','1900-01-01 00:00:00',1,0,1),(19641,'20685','Northbrook','NORTHBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:30:26','1900-01-01 00:00:00',1,0,1),(19642,'26426','Northcote','NORTHCOTE',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:26','1900-01-01 00:00:00',1,0,1),(19643,'15226','Northcote','NORTHCOTE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:30:26','1900-01-01 00:00:00',1,0,1),(19644,'24779','Northeast Bulgaria','NORTHEAST BULGARIA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:30:26','1900-01-01 00:00:00',1,0,1),(19645,'197','Northeast Lake District','NORTHEAST LAKE DISTRICT',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:27','1900-01-01 00:00:00',1,0,1),(19646,'26854','Northeast Tasmania','NORTHEAST TASMANIA',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:27','1900-01-01 00:00:00',1,0,1),(19647,'31367','Northeastern Vermont','NORTHEASTERN VERMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:30:27','1900-01-01 00:00:00',1,0,1),(19648,'27264','Northeim','NORTHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:28','1900-01-01 00:00:00',1,0,1),(19649,'28552','Northern Albuquerque','NORTHERN ALBUQUERQUE',NULL,'','United States','',0,0,231,'2016-10-17 11:30:28','1900-01-01 00:00:00',1,0,1),(19650,'22365','Northern Black Forest','NORTHERN BLACK FOREST',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:28','1900-01-01 00:00:00',1,0,1),(19651,'2128','Northern City','NORTHERN CITY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:30:29','1900-01-01 00:00:00',1,0,1),(19652,'9956','Northern Coast','NORTHERN COAST',NULL,'','Honduras','',0,0,97,'2016-10-17 11:30:29','1900-01-01 00:00:00',1,0,1),(19653,'4424','Northern Corsica','NORTHERN CORSICA',NULL,'','France','',0,0,76,'2016-10-17 11:30:29','1900-01-01 00:00:00',1,0,1),(19654,'9996','Northern Dalmatia','NORTHERN DALMATIA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:30:29','1900-01-01 00:00:00',1,0,1),(19655,'10988','Northern Iceland','NORTHERN ICELAND',NULL,'','Iceland','',0,0,100,'2016-10-17 11:30:30','1900-01-01 00:00:00',1,0,1),(19656,'15814','Northern Leiria','NORTHERN LEIRIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:30:30','1900-01-01 00:00:00',1,0,1),(19657,'11332','Northern Piedmont','NORTHERN PIEDMONT',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:31','1900-01-01 00:00:00',1,0,1),(19658,'16681','Northern Stockholm County','NORTHERN STOCKHOLM COUNTY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:30:31','1900-01-01 00:00:00',1,0,1),(19659,'26029','Northern United Arab Emirates','NORTHERN UNITED ARAB EMIRATES',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:30:31','1900-01-01 00:00:00',1,0,1),(19660,'21485','Northfield','NORTHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:30:32','1900-01-01 00:00:00',1,0,1),(19661,'8642','Northfield','NORTHFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:32','1900-01-01 00:00:00',1,0,1),(19662,'32023','Northfork','NORTHFORK',NULL,'','United States','',0,0,231,'2016-10-17 11:30:33','1900-01-01 00:00:00',1,0,1),(19663,'26737','Northgate','NORTHGATE',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:33','1900-01-01 00:00:00',1,0,1),(19664,'33508','Northglenn','NORTHGLENN',NULL,'','United States','',0,0,231,'2016-10-17 11:30:33','1900-01-01 00:00:00',1,0,1),(19665,'40310','Northington','NORTHINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19666,'14475','North-kennemerland','NORTH-KENNEMERLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19667,'20686','Northlake','NORTHLAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19668,'1103','Northland Region','NORTHLAND REGION',NULL,'','NEW ZEALAND','',0,0,157,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19669,'8643','Northleach','NORTHLEACH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:34','1900-01-01 00:00:00',1,0,1),(19670,'27730','Northmoor','NORTHMOOR',NULL,'','United States','',0,0,231,'2016-10-17 11:30:35','1900-01-01 00:00:00',1,0,1),(19671,'8644','Northop','NORTHOP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:35','1900-01-01 00:00:00',1,0,1),(19672,'29000','Northport','NORTHPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:30:36','1900-01-01 00:00:00',1,0,1),(19673,'18732','Northridge','NORTHRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:30:36','1900-01-01 00:00:00',1,0,1),(19674,'18733','Northstar','NORTHSTAR',NULL,'','United States','',0,0,231,'2016-10-17 11:30:37','1900-01-01 00:00:00',1,0,1),(19675,'29001','Northville','NORTHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:30:37','1900-01-01 00:00:00',1,0,1),(19676,'30830','Northwest - Six Flags','NORTHWEST - SIX FLAGS',NULL,'','United States','',0,0,231,'2016-10-17 11:30:38','1900-01-01 00:00:00',1,0,1),(19677,'24780','Northwest Bulgaria','NORTHWEST BULGARIA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:30:39','1900-01-01 00:00:00',1,0,1),(19678,'16935','Northwest Point','NORTHWEST POINT',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:30:40','1900-01-01 00:00:00',1,0,1),(19679,'26855','Northwest Tasmania','NORTHWEST TASMANIA',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:40','1900-01-01 00:00:00',1,0,1),(19680,'8645','Northwich','NORTHWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:41','1900-01-01 00:00:00',1,0,1),(19681,'8646','Northwold','NORTHWOLD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:30:41','1900-01-01 00:00:00',1,0,1),(19682,'29476','Northwood','NORTHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:30:41','1900-01-01 00:00:00',1,0,1),(19683,'31191','Norton','NORTON',NULL,'','United States','',0,0,231,'2016-10-17 11:30:42','1900-01-01 00:00:00',1,0,1),(19684,'19130','Norwalk','NORWALK',NULL,'','United States','',0,0,231,'2016-10-17 11:30:44','1900-01-01 00:00:00',1,0,1),(19685,'22190','Norway','NORWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:30:45','1900-01-01 00:00:00',1,0,1),(19686,'25615','Norway House','NORWAY HOUSE',NULL,'','Canada','',0,0,39,'2016-10-17 11:30:45','1900-01-01 00:00:00',1,0,1),(19687,'21487','Norwell','NORWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:30:45','1900-01-01 00:00:00',1,0,1),(19688,'1405','Norwich','NORWICH',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:30:46','1900-01-01 00:00:00',1,0,1),(19689,'29478','Norwich','NORWICH',NULL,'','United States','',0,0,231,'2016-10-17 11:30:46','1900-01-01 00:00:00',1,0,1),(19690,'29479','Norwood','NORWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:30:47','1900-01-01 00:00:00',1,0,1),(19691,'24220','Nosara','NOSARA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19692,'13318','Noshiro','NOSHIRO',NULL,'','Japan','',0,0,110,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19693,'39877','Nossentiner Hutte','NOSSENTINER HUTTE',NULL,'','Germany','',0,0,83,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19694,'39187','Nossi-be','NOSSI-BE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19695,'40166','Noszvaj','NOSZVAJ',NULL,'','Hungary','',0,0,99,'2016-10-17 11:30:49','1900-01-01 00:00:00',1,0,1),(19696,'12217','Noto','NOTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19697,'43180','Noto','NOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19698,'15007','Notodden','NOTODDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19699,'41134','Notre Dame Du Portage','NOTRE DAME DU PORTAGE',NULL,'','Canada','',0,0,39,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19700,'6682','Notre-dame-de-bellecombe','NOTRE-DAME-DE-BELLECOMBE',NULL,'','France','',0,0,76,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19701,'40194','Notre-dame-de-monts','NOTRE-DAME-DE-MONTS',NULL,'','France','',0,0,76,'2016-10-17 11:30:50','1900-01-01 00:00:00',1,0,1),(19702,'39303','Notre-dame-du-bon-conseil','NOTRE-DAME-DU-BON-CONSEIL',NULL,'','Canada','',0,0,39,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19703,'26532','Notting Hill','NOTTING HILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19704,'1399','Nottingham','NOTTINGHAM',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19705,'23303','Nottwil','NOTTWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19706,'42553','Nouakchott','NOUAKCHOTT',NULL,'','Mauritania','',0,0,138,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19707,'14432','Noumea','NOUMEA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19708,'16644','Nova Gorica','NOVA GORICA',NULL,'','Slovenia','Nova Gorica',0,0,192,'2016-10-17 11:30:51','1900-01-01 00:00:00',1,0,1),(19709,'12221','Novafeltria','NOVAFELTRIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:52','1900-01-01 00:00:00',1,0,1),(19710,'10026','Novalja','NOVALJA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:30:52','1900-01-01 00:00:00',1,0,1),(19711,'12800','Novara','NOVARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:52','1900-01-01 00:00:00',1,0,1),(19712,'12222','Novate Milanese','NOVATE MILANESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:54','1900-01-01 00:00:00',1,0,1),(19713,'18735','Novato','NOVATO',NULL,'','United States','',0,0,231,'2016-10-17 11:30:58','1900-01-01 00:00:00',1,0,1),(19714,'16304','Novaya Derevnya','NOVAYA DEREVNYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:30:58','1900-01-01 00:00:00',1,0,1),(19715,'36025','Nove Mesto Na Morave','NOVE MESTO NA MORAVE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19716,'38255','Nove Zamky','NOVE ZAMKY',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19717,'11335','Novegro','NOVEGRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19718,'38937','Novello','NOVELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19719,'12902','Noventa Di Piave','NOVENTA DI PIAVE',NULL,'','Italy','',0,0,107,'2016-10-17 11:30:59','1900-01-01 00:00:00',1,0,1),(19720,'6500','Noves','NOVES',NULL,'','France','',0,0,76,'2016-10-17 11:31:00','1900-01-01 00:00:00',1,0,1),(19721,'12223','Novi Ligure','NOVI LIGURE',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19722,'36643','Novi Sad','NOVI SAD',NULL,'','Serbia','',0,0,468,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19723,'10027','Novi Vinodolski','NOVI VINODOLSKI',NULL,'','Croatia','',0,0,55,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19724,'9972','Novigrad','NOVIGRAD',NULL,'','Croatia','',0,0,55,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19725,'16305','Novinki','NOVINKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19726,'44267','Novkhana','NOVKHANA',NULL,'','Azerbaijan','',0,0,15,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19727,'36690','Novo Mesto','NOVO MESTO',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19728,'39682','Novo Sancti Petri','NOVO SANCTI PETRI',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19729,'16280','Novoarchangelskoje','NOVOARCHANGELSKOJE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19730,'16373','Novogireyevo','NOVOGIREYEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19731,'16399','Novokhovrino','NOVOKHOVRINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19732,'16336','Novokuznetsk','NOVOKUZNETSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:01','1900-01-01 00:00:00',1,0,1),(19733,'16281','Novorossijsk','NOVOROSSIJSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19734,'16410','Novosibirsk','NOVOSIBIRSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19735,'41866','Novy Jicin','NOVY JICIN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19736,'43996','Novy Smokovec','NOVY SMOKOVEC',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19737,'16282','Novyj Urengoj','NOVYJ URENGOJ',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19738,'39465','Nowogrod','NOWOGROD',NULL,'','Poland','',0,0,174,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19739,'34274','Nowra','NOWRA',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19740,'15659','Nowy Sacz','NOWY SACZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:31:02','1900-01-01 00:00:00',1,0,1),(19741,'38577','Noxen','NOXEN',NULL,'','United States','',0,0,231,'2016-10-17 11:31:03','1900-01-01 00:00:00',1,0,1),(19742,'5667','Noyant-de-touraine','NOYANT-DE-TOURAINE',NULL,'','France','',0,0,76,'2016-10-17 11:31:03','1900-01-01 00:00:00',1,0,1),(19743,'6188','Noyelles-godault','NOYELLES-GODAULT',NULL,'','France','',0,0,76,'2016-10-17 11:31:03','1900-01-01 00:00:00',1,0,1),(19744,'6189','Noyelles-sous-lens','NOYELLES-SOUS-LENS',NULL,'','France','',0,0,76,'2016-10-17 11:31:03','1900-01-01 00:00:00',1,0,1),(19745,'6310','Noyelles-sur-mer','NOYELLES-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:31:04','1900-01-01 00:00:00',1,0,1),(19746,'4427','Noyers Sur Cher','NOYERS SUR CHER',NULL,'','France','',0,0,76,'2016-10-17 11:31:04','1900-01-01 00:00:00',1,0,1),(19747,'6311','Noyon','NOYON',NULL,'','France','',0,0,76,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19748,'26856','Nubeena','NUBEENA',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19749,'4428','Nuces','NUCES',NULL,'','France','',0,0,76,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19750,'277','Nudlingen','NUDLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19751,'39060','Nuenen','NUENEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19752,'42446','Nuerburg','NUERBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:05','1900-01-01 00:00:00',1,0,1),(19753,'2081','Nuertingen','NUERTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19754,'41569','Nueva Andalucia','NUEVA ANDALUCIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19755,'13976','Nueva Atzacoalco','NUEVA ATZACOALCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19756,'43117','Nuevalos','NUEVALOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19757,'3807','Nuevo Horizonte','NUEVO HORIZONTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19758,'14109','Nuevo Laredo','NUEVO LAREDO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:31:06','1900-01-01 00:00:00',1,0,1),(19759,'22606','Nufringen','NUFRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:07','1900-01-01 00:00:00',1,0,1),(19760,'933','Nui Thanh','NUI THANH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:31:07','1900-01-01 00:00:00',1,0,1),(19761,'17723','Nuiqsut','NUIQSUT',NULL,'','United States','',0,0,231,'2016-10-17 11:31:07','1900-01-01 00:00:00',1,0,1),(19762,'4894','Nuits-saint-georges','NUITS-SAINT-GEORGES',NULL,'','France','',0,0,76,'2016-10-17 11:31:07','1900-01-01 00:00:00',1,0,1),(19763,'17115','Nuku Alofa','NUKU ALOFA',NULL,'','Tonga','',0,0,218,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19764,'36540','Nuku Hiva','NUKU HIVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19765,'36797','Nuku\'alofa','NUKU\'ALOFA',NULL,'','Tonga','',0,0,218,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19766,'4068','Nukubati Island','NUKUBATI ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19767,'32159','Nukus','NUKUS',NULL,'','Uzbekistan','',0,0,232,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19768,'14605','Nuland','NULAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19769,'17724','Nulato','NULATO',NULL,'','United States','',0,0,231,'2016-10-17 11:31:08','1900-01-01 00:00:00',1,0,1),(19770,'44265','Nulkaba','NULKABA',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19771,'12224','Numana','NUMANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19772,'13319','Numazu','NUMAZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19773,'548','Numbrecht','NUMBRECHT',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19774,'26296','Numbulwar','NUMBULWAR',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19775,'10189','Numfoor','NUMFOOR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:31:09','1900-01-01 00:00:00',1,0,1),(19776,'17725','Nunapitchuk','NUNAPITCHUK',NULL,'','United States','',0,0,231,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19777,'26533','Nunawading','NUNAWADING',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19778,'34276','Nundle','NUNDLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19779,'8649','Nuneaton','NUNEATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19780,'23547','Nunoa','NUNOA',NULL,'','Chile','',0,0,45,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19781,'14546','Nunspeet','NUNSPEET',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19782,'16134','Nunue','NUNUE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19783,'10249','Nunukan','NUNUKAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19784,'12827','Nuoro','NUORO',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:10','1900-01-01 00:00:00',1,0,1),(19785,'650','Nurburg','NURBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19786,'22367','Nuremberg','NUREMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19787,'36053','Nuremberg-fuerth','NUREMBERG-FUERTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19788,'26814','Nuriootpa','NURIOOTPA',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19789,'4003','Nurmes','NURMES',NULL,'','Finland','',0,0,75,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19790,'278','Nurnberg','NURNBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:11','1900-01-01 00:00:00',1,0,1),(19791,'43194','Nurtingen','NURTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19792,'22368','Nürtingen','NÜRTINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19793,'11338','Nusenna','NUSENNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19794,'39430','Nussdorf Am Inn','NUSSDORF AM INN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19795,'8650','Nutfield','NUTFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:12','1900-01-01 00:00:00',1,0,1),(19796,'9864','Nuuk','NUUK',NULL,'','Greenland','',0,0,87,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19797,'13602','Nuwara Eliya','NUWARA ELIYA',NULL,'','Sri Lanka','Nuwara Eliya',0,0,200,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19798,'2456','Nuweiba','NUWEIBA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19799,'17726','Nyac','NYAC',NULL,'','United States','',0,0,231,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19800,'29003','Nyack','NYACK',NULL,'','United States','',0,0,231,'2016-10-17 11:31:13','1900-01-01 00:00:00',1,0,1),(19801,'32667','Nyanga','NYANGA',NULL,'','Zimbabwe','',0,0,243,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19802,'41099','Nyaung Shwe','NYAUNG SHWE',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19803,'36394','Nyaung-u','NYAUNG-U',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19804,'2197','Nyborg','NYBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19805,'2323','Nyby Strandhuse','NYBY STRANDHUSE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:14','1900-01-01 00:00:00',1,0,1),(19806,'40348','Nyíregyháza','NYÍREGYHÁZA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19807,'2308','Nykobing','NYKOBING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19808,'16777','Nykoping','NYKOPING',NULL,'','Sweden','',0,0,209,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19809,'32587','Nylstroom','NYLSTROOM',NULL,'','South Africa','',0,0,195,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19810,'24354','Nymburk','NYMBURK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19811,'2264','Nymindegab','NYMINDEGAB',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19812,'16839','Nynashamn','NYNASHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19813,'34277','Nyngan','NYNGAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19814,'23304','Nyon','NYON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19815,'6683','Nyons','NYONS',NULL,'','France','',0,0,76,'2016-10-17 11:31:15','1900-01-01 00:00:00',1,0,1),(19816,'40162','O Carballino','O CARBALLINO',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:16','1900-01-01 00:00:00',1,0,1),(19817,'41489','O Grove','O GROVE',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:16','1900-01-01 00:00:00',1,0,1),(19818,'39680','O Pino','O PINO',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:16','1900-01-01 00:00:00',1,0,1),(19819,'33036','Oacoma','OACOMA',NULL,'','United States','',0,0,231,'2016-10-17 11:31:16','1900-01-01 00:00:00',1,0,1),(19820,'8651','Oadby','OADBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:17','1900-01-01 00:00:00',1,0,1),(19821,'36916','Oahu-honolulu','OAHU-HONOLULU',NULL,'','United States','',0,0,231,'2016-10-17 11:31:17','1900-01-01 00:00:00',1,0,1),(19822,'36942','Oahu-kapolei','OAHU-KAPOLEI',NULL,'','United States','',0,0,231,'2016-10-17 11:31:18','1900-01-01 00:00:00',1,0,1),(19823,'36978','Oahu-makaha','OAHU-MAKAHA',NULL,'','United States','',0,0,231,'2016-10-17 11:31:18','1900-01-01 00:00:00',1,0,1),(19824,'37059','Oahu-waikiki','OAHU-WAIKIKI',NULL,'','United States','',0,0,231,'2016-10-17 11:31:19','1900-01-01 00:00:00',1,0,1),(19825,'36856','Oahu-waimanalo','OAHU-WAIMANALO',NULL,'','United States','',0,0,231,'2016-10-17 11:31:19','1900-01-01 00:00:00',1,0,1),(19826,'25616','Oak Bluff','OAK BLUFF',NULL,'','Canada','',0,0,39,'2016-10-17 11:31:19','1900-01-01 00:00:00',1,0,1),(19827,'20691','Oakbrook Terrace','OAKBROOK TERRACE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:25','1900-01-01 00:00:00',1,0,1),(19828,'21242','Oakdale','OAKDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:25','1900-01-01 00:00:00',1,0,1),(19829,'8652','Oakham','OAKHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:27','1900-01-01 00:00:00',1,0,1),(19830,'19522','Oakhurst','OAKHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:31:27','1900-01-01 00:00:00',1,0,1),(19831,'20692','Oakland','OAKLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:31:28','1900-01-01 00:00:00',1,0,1),(19832,'26926','Oakleigh','OAKLEIGH',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:33','1900-01-01 00:00:00',1,0,1),(19833,'21111','Oakley','OAKLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:31:33','1900-01-01 00:00:00',1,0,1),(19834,'37596','Oakley','OAKLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:33','1900-01-01 00:00:00',1,0,1),(19835,'7242','Oakmere','OAKMERE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:34','1900-01-01 00:00:00',1,0,1),(19836,'30108','Oakmont','OAKMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:31:34','1900-01-01 00:00:00',1,0,1),(19837,'29719','Oakridge','OAKRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:35','1900-01-01 00:00:00',1,0,1),(19838,'18742','Oakville','OAKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:36','1900-01-01 00:00:00',1,0,1),(19839,'34583','Oakville','OAKVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:31:37','1900-01-01 00:00:00',1,0,1),(19840,'29480','Oakwood','OAKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:31:37','1900-01-01 00:00:00',1,0,1),(19841,'26857','Oakwood','OAKWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:37','1900-01-01 00:00:00',1,0,1),(19842,'15145','Oamaru','OAMARU',NULL,'','New Zealand','Oamaru',0,0,157,'2016-10-17 11:31:38','1900-01-01 00:00:00',1,0,1),(19843,'13320','Obama','OBAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:31:38','1900-01-01 00:00:00',1,0,1),(19844,'1407','Oban','OBAN',NULL,'','UNITED KINGDOM','Oban',0,0,469,'2016-10-17 11:31:38','1900-01-01 00:00:00',1,0,1),(19845,'10250','Obano','OBANO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19846,'24431','Obdach','OBDACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19847,'23305','Ober Tschappina','OBER TSCHAPPINA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19848,'279','Oberammergau','OBERAMMERGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19849,'24555','Oberau','OBERAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19850,'280','Oberaudorf','OBERAUDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19851,'462','Oberaula','OBERAULA',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19852,'463','Oberbreitzbach','OBERBREITZBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:39','1900-01-01 00:00:00',1,0,1),(19853,'11339','Obereggen','OBEREGGEN',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19854,'23465','Oberentfelden','OBERENTFELDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19855,'23306','Obererlinsbach','OBERERLINSBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19856,'39195','Obergesteln','OBERGESTELN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19857,'24558','Obergurgl','OBERGURGL',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19858,'22369','Oberharmersbach','OBERHARMERSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19859,'44180','Oberharz Am Brocken','OBERHARZ AM BROCKEN',NULL,'','Greece','',0,0,86,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19860,'40092','Oberhaslach','OBERHASLACH',NULL,'','France','',0,0,76,'2016-10-17 11:31:40','1900-01-01 00:00:00',1,0,1),(19861,'2036','Oberhausen','OBERHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19862,'2094','Oberhof','OBERHOF',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19863,'281','Oberkirch','OBERKIRCH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19864,'24536','Oberlaa','OBERLAA',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19865,'651','Oberlahr','OBERLAHR',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19866,'21112','Oberlin','OBERLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:31:41','1900-01-01 00:00:00',1,0,1),(19867,'22370','Obermaiselstein','OBERMAISELSTEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:42','1900-01-01 00:00:00',1,0,1),(19868,'6782','Obernai','OBERNAI',NULL,'','France','',0,0,76,'2016-10-17 11:31:42','1900-01-01 00:00:00',1,0,1),(19869,'39788','Obernberg Am Brenner','OBERNBERG AM BRENNER',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:42','1900-01-01 00:00:00',1,0,1),(19870,'282','Obernzell','OBERNZELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:42','1900-01-01 00:00:00',1,0,1),(19871,'464','Oberorke','OBERORKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19872,'283','Oberpfaffenhofen','OBERPFAFFENHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19873,'39037','Oberpullendorf','OBERPULLENDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19874,'38506','Oberraden','OBERRADEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19875,'284','Oberried','OBERRIED',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19876,'2068','Oberschleissheim','OBERSCHLEISSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19877,'2009','Oberschoneweide','OBERSCHONEWEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:43','1900-01-01 00:00:00',1,0,1),(19878,'285','Obersendling','OBERSENDLING',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19879,'286','Oberstaufen','OBERSTAUFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19880,'22371','Oberstdorf','OBERSTDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19881,'5043','Obersteigen','OBERSTEIGEN',NULL,'','France','',0,0,76,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19882,'23062','Oberstrass','OBERSTRASS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19883,'24393','Obertauern','OBERTAUERN',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19884,'38043','Oberterzen','OBERTERZEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:44','1900-01-01 00:00:00',1,0,1),(19885,'685','Oberthal','OBERTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19886,'39767','Obertraun','OBERTRAUN',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19887,'287','Obertrubach','OBERTRUBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19888,'27013','Obertrumersee','OBERTRUMERSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19889,'465','Oberursel','OBERURSEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19890,'39722','Oberwald','OBERWALD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19891,'44147','Oberwesel','OBERWESEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19892,'22372','Oberwiesenthal','OBERWIESENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19893,'44148','Oberwolfach','OBERWOLFACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:45','1900-01-01 00:00:00',1,0,1),(19894,'29483','Obetz','OBETZ',NULL,'','United States','',0,0,231,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19895,'15981','Obidos','OBIDOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19896,'13321','Obihiro','OBIHIRO',NULL,'','Japan','',0,0,110,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19897,'2097','Obock','OBOCK',NULL,'','Djibouti','',0,0,60,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19898,'38973','Obsteig','OBSTEIG',NULL,'','Austria','',0,0,14,'2016-10-17 11:31:46','1900-01-01 00:00:00',1,0,1),(19899,'42273','Obuasi','OBUASI',NULL,'','Ghana','',0,0,84,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19900,'38181','Obudu','OBUDU',NULL,'','Nigeria','',0,0,160,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19901,'23063','Obwalden - Nidwalden','OBWALDEN - NIDWALDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19902,'24797','Obzor','OBZOR',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19903,'19524','Ocala','OCALA',NULL,'','United States','',0,0,231,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19904,'24119','Ocana','OCANA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19905,'37522','Ocana','OCANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:31:47','1900-01-01 00:00:00',1,0,1),(19906,'12225','Occhiobello','OCCHIOBELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:48','1900-01-01 00:00:00',1,0,1),(19907,'18743','Occidental','OCCIDENTAL',NULL,'','United States','',0,0,231,'2016-10-17 11:31:48','1900-01-01 00:00:00',1,0,1),(19908,'12226','Occimiano','OCCIMIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:48','1900-01-01 00:00:00',1,0,1),(19909,'25497','Ocean Falls','OCEAN FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 11:31:50','1900-01-01 00:00:00',1,0,1),(19910,'18745','Oceano','OCEANO',NULL,'','United States','',0,0,231,'2016-10-17 11:31:53','1900-01-01 00:00:00',1,0,1),(19911,'13087','Ocho Rios','OCHO RIOS',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19912,'15698','Ochota','OCHOTA',NULL,'','Poland','',0,0,174,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19913,'288','Ochsenfurt','OCHSENFURT',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19914,'22607','Ochsenhausen','OCHSENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19915,'16225','Ocna Sibiului','OCNA SIBIULUI',NULL,'','Romania','',0,0,179,'2016-10-17 11:31:54','1900-01-01 00:00:00',1,0,1),(19916,'19525','Ocoee','OCOEE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:55','1900-01-01 00:00:00',1,0,1),(19917,'39050','Oconnor','OCONNOR',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:55','1900-01-01 00:00:00',1,0,1),(19918,'26611','O\'connor','O\'CONNOR',NULL,'','Australia','',0,0,13,'2016-10-17 11:31:55','1900-01-01 00:00:00',1,0,1),(19919,'31843','Oconomowoc','OCONOMOWOC',NULL,'','United States','',0,0,231,'2016-10-17 11:31:55','1900-01-01 00:00:00',1,0,1),(19920,'31844','Oconto','OCONTO',NULL,'','United States','',0,0,231,'2016-10-17 11:31:56','1900-01-01 00:00:00',1,0,1),(19921,'33963','Ocracoke','OCRACOKE',NULL,'','United States','',0,0,231,'2016-10-17 11:31:56','1900-01-01 00:00:00',1,0,1),(19922,'13323','Odawara','ODAWARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19923,'14777','Odda','ODDA',NULL,'','Norway','Odda',0,0,164,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19924,'2154','Odder','ODDER',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19925,'30834','Odem','ODEM',NULL,'','United States','',0,0,231,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19926,'2198','Odense','ODENSE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:31:57','1900-01-01 00:00:00',1,0,1),(19927,'21756','Odenton','ODENTON',NULL,'','United States','',0,0,231,'2016-10-17 11:31:58','1900-01-01 00:00:00',1,0,1),(19928,'22373','Odenwald','ODENWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:31:58','1900-01-01 00:00:00',1,0,1),(19929,'12903','Oderzo','ODERZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:31:58','1900-01-01 00:00:00',1,0,1),(19930,'34584','Odessa','ODESSA',NULL,'','Canada','',0,0,39,'2016-10-17 11:31:58','1900-01-01 00:00:00',1,0,1),(19931,'27734','Odessa','ODESSA',NULL,'','United States','',0,0,231,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19932,'17498','Odessa','ODESSA',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19933,'8654','Odiham','ODIHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19934,'41651','Odivelas','ODIVELAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19935,'14499','Odoorn','ODOORN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:31:59','1900-01-01 00:00:00',1,0,1),(19936,'36631','Odorheiu Secuiesc','ODORHEIU SECUIESC',NULL,'','Romania','',0,0,179,'2016-10-17 11:32:00','1900-01-01 00:00:00',1,0,1),(19937,'6119','Odos','ODOS',NULL,'','France','',0,0,76,'2016-10-17 11:32:00','1900-01-01 00:00:00',1,0,1),(19938,'14728','Oegstgeest','OEGSTGEEST',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:00','1900-01-01 00:00:00',1,0,1),(19939,'20262','Oelwein','OELWEIN',NULL,'','United States','',0,0,231,'2016-10-17 11:32:00','1900-01-01 00:00:00',1,0,1),(19940,'26298','Oenpelli','OENPELLI',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19941,'23307','Oerlikon','OERLIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19942,'37222','Oesterbybruk','OESTERBYBRUK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19943,'40001','Oestrich-winkel','OESTRICH-WINKEL',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19944,'24559','Oetz','OETZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19945,'27014','Oetztal','OETZTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19946,'41838','Oeversee','OEVERSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:01','1900-01-01 00:00:00',1,0,1),(19947,'5782','Offemont','OFFEMONT',NULL,'','France','',0,0,76,'2016-10-17 11:32:02','1900-01-01 00:00:00',1,0,1),(19948,'466','Offenbach','OFFENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:02','1900-01-01 00:00:00',1,0,1),(19949,'22608','Offenburg','OFFENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:02','1900-01-01 00:00:00',1,0,1),(19950,'37669','Offida','OFFIDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:02','1900-01-01 00:00:00',1,0,1),(19951,'15817','Ofir','OFIR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:03','1900-01-01 00:00:00',1,0,1),(19952,'26155','Ofu Island','OFU ISLAND',NULL,'','American Samoa','',0,0,4,'2016-10-17 11:32:03','1900-01-01 00:00:00',1,0,1),(19953,'13324','Ogaki','OGAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:03','1900-01-01 00:00:00',1,0,1),(19954,'28154','Ogallala','OGALLALA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:03','1900-01-01 00:00:00',1,0,1),(19955,'33374','Ogden','OGDEN',NULL,'','United States','',0,0,231,'2016-10-17 11:32:04','1900-01-01 00:00:00',1,0,1),(19956,'29008','Ogdensburg','OGDENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:32:05','1900-01-01 00:00:00',1,0,1),(19957,'11340','Oggebbio','OGGEBBIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:05','1900-01-01 00:00:00',1,0,1),(19958,'3276','Ogijares','OGIJARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:05','1900-01-01 00:00:00',1,0,1),(19959,'20694','Oglesby','OGLESBY',NULL,'','United States','',0,0,231,'2016-10-17 11:32:05','1900-01-01 00:00:00',1,0,1),(19960,'42153','Ogliastra','OGLIASTRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19961,'34585','Ogoki','OGOKI',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19962,'37415','Ogori','OGORI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19963,'43527','Ogre','OGRE',NULL,'','Latvia','',0,0,119,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19964,'21903','Ogunquit','OGUNQUIT',NULL,'','United States','',0,0,231,'2016-10-17 11:32:06','1900-01-01 00:00:00',1,0,1),(19965,'37511','Ohakune','OHAKUNE',NULL,'','New Zealand','Ohakune',0,0,157,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19966,'42689','Ohito','OHITO',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19967,'381','Ohlsdorf','OHLSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19968,'289','Ohlstadt','OHLSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19969,'41852','Ohrid','OHRID',NULL,'','Macedonia','',0,0,129,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19970,'32588','Ohrigstad','OHRIGSTAD',NULL,'','South Africa','',0,0,195,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19971,'9814','Oia','OIA',NULL,'','Greece','Oia',0,0,86,'2016-10-17 11:32:07','1900-01-01 00:00:00',1,0,1),(19972,'25026','Oiapoque','OIAPOQUE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:32:08','1900-01-01 00:00:00',1,0,1),(19973,'41471','Oiartzun','OIARTZUN',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:08','1900-01-01 00:00:00',1,0,1),(19974,'39592','Oiso','OISO',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:08','1900-01-01 00:00:00',1,0,1),(19975,'5826','Oissel','OISSEL',NULL,'','France','',0,0,76,'2016-10-17 11:32:08','1900-01-01 00:00:00',1,0,1),(19976,'14606','Oisterwijk','OISTERWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19977,'25243','Oistins','OISTINS',NULL,'','Barbados','',0,0,19,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19978,'13404','Oita','OITA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19979,'5668','Oizon','OIZON',NULL,'','France','',0,0,76,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19980,'42560','Oizumi','OIZUMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19981,'18747','Ojai','OJAI',NULL,'','United States','',0,0,231,'2016-10-17 11:32:09','1900-01-01 00:00:00',1,0,1),(19982,'3277','Ojen','OJEN',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19983,'10316','Okaba','OKABA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19984,'43030','Okains Bay','OKAINS BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19985,'13180','Okamoto','OKAMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19986,'43801','Okanagan Falls','OKANAGAN FALLS',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19987,'31570','Okanogan','OKANOGAN',NULL,'','United States','',0,0,231,'2016-10-17 11:32:10','1900-01-01 00:00:00',1,0,1),(19988,'14404','Okavango','OKAVANGO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19989,'20695','Okawville','OKAWVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19990,'42879','Okaya','OKAYA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19991,'13405','Okayama','OKAYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19992,'42690','Okazaki','OKAZAKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19993,'15593','Okecie Airport','OKECIE AIRPORT',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:11','1900-01-01 00:00:00',1,0,1),(19994,'19526','Okeechobee','OKEECHOBEE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:12','1900-01-01 00:00:00',1,0,1),(19995,'8655','Okehampton','OKEHAMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:12','1900-01-01 00:00:00',1,0,1),(19996,'32936','Okemah','OKEMAH',NULL,'','United States','',0,0,231,'2016-10-17 11:32:12','1900-01-01 00:00:00',1,0,1),(19997,'22194','Okemos','OKEMOS',NULL,'','United States','',0,0,231,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(19998,'15146','Okiato','OKIATO',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(19999,'32486','Okiep','OKIEP',NULL,'','South Africa','',0,0,195,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(20000,'35709','Okinawa-ginowan','OKINAWA-GINOWAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(20001,'35734','Okinawa-kunigamison','OKINAWA-KUNIGAMISON',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(20002,'35750','Okinawa-nago','OKINAWA-NAGO',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:13','1900-01-01 00:00:00',1,0,1),(20003,'35704','Okinawa-naha','OKINAWA-NAHA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20004,'35756','Okinawa-onnason','OKINAWA-ONNASON',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20005,'35769','Okinawa-yomitan','OKINAWA-YOMITAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20006,'13182','Okino Erabu','OKINO ERABU',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20007,'43198','Okinoshima','OKINOSHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:14','1900-01-01 00:00:00',1,0,1),(20008,'32939','Okmulgee','OKMULGEE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:15','1900-01-01 00:00:00',1,0,1),(20009,'20263','Okoboji','OKOBOJI',NULL,'','United States','',0,0,231,'2016-10-17 11:32:15','1900-01-01 00:00:00',1,0,1),(20010,'27894','Okolona','OKOLONA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20011,'6844','Okondja','OKONDJA',NULL,'','Gabon','',0,0,80,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20012,'25341','Okotoks','OKOTOKS',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20013,'24057','Okoyo','OKOYO',NULL,'','Congo','',0,0,51,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20014,'39930','Okrug Donji','OKRUG DONJI',NULL,'','Croatia','',0,0,55,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20015,'10191','Oksibil','OKSIBIL',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:32:16','1900-01-01 00:00:00',1,0,1),(20016,'17220','Okurcalar','OKURCALAR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20017,'13390','Okushiri','OKUSHIRI',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20018,'10989','Olafsfjordur','OLAFSFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20019,'11015','Olafsvik','OLAFSVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20020,'39048','Olaibar','OLAIBAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20021,'38575','Olakira Camp','OLAKIRA CAMP',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20022,'5949','Olargues','OLARGUES',NULL,'','France','',0,0,76,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20023,'21113','Olathe','OLATHE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:17','1900-01-01 00:00:00',1,0,1),(20024,'3061','Olave','OLAVE',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:18','1900-01-01 00:00:00',1,0,1),(20025,'1898','Olbernhau','OLBERNHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:18','1900-01-01 00:00:00',1,0,1),(20026,'1899','Olbersdorf','OLBERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:18','1900-01-01 00:00:00',1,0,1),(20027,'12768','Olbia','OLBIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:18','1900-01-01 00:00:00',1,0,1),(20028,'5336','Olby','OLBY',NULL,'','France','',0,0,76,'2016-10-17 11:32:19','1900-01-01 00:00:00',1,0,1),(20029,'290','Olching','OLCHING',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:19','1900-01-01 00:00:00',1,0,1),(20030,'14228','Old Towne','OLD TOWNE',NULL,'','Montserrat','',0,0,147,'2016-10-17 11:32:22','1900-01-01 00:00:00',1,0,1),(20031,'8658','Oldbury','OLDBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:23','1900-01-01 00:00:00',1,0,1),(20032,'14993','Olden','OLDEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:32:23','1900-01-01 00:00:00',1,0,1),(20033,'27265','Oldenburg','OLDENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:23','1900-01-01 00:00:00',1,0,1),(20034,'22374','Oldenburger Munsterland','OLDENBURGER MUNSTERLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:23','1900-01-01 00:00:00',1,0,1),(20035,'8659','Oldham','OLDHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:24','1900-01-01 00:00:00',1,0,1),(20036,'8660','Oldmeldrum','OLDMELDRUM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:24','1900-01-01 00:00:00',1,0,1),(20037,'25342','Olds','OLDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:24','1900-01-01 00:00:00',1,0,1),(20038,'19528','Oldsmar','OLDSMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:32:24','1900-01-01 00:00:00',1,0,1),(20039,'29012','Olean','OLEAN',NULL,'','United States','',0,0,231,'2016-10-17 11:32:25','1900-01-01 00:00:00',1,0,1),(20040,'25826','O\'leary','O\'LEARY',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:25','1900-01-01 00:00:00',1,0,1),(20041,'12936','Oleggio','OLEGGIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:25','1900-01-01 00:00:00',1,0,1),(20042,'3674','Oleiros','OLEIROS',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:25','1900-01-01 00:00:00',1,0,1),(20043,'6120','Olemps','OLEMPS',NULL,'','France','',0,0,76,'2016-10-17 11:32:26','1900-01-01 00:00:00',1,0,1),(20044,'42747','Olerdola','OLERDOLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:26','1900-01-01 00:00:00',1,0,1),(20045,'38628','Olèrdola','OLÈRDOLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:26','1900-01-01 00:00:00',1,0,1),(20046,'3576','Olesa De Montserrat','OLESA DE MONTSERRAT',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:26','1900-01-01 00:00:00',1,0,1),(20047,'38781','Oletta','OLETTA',NULL,'','France','',0,0,76,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20048,'17728','Olga Bay','OLGA BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20049,'16283','Olgino','OLGINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20050,'15937','Olhao','OLHAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20051,'15938','Olhos De Agua','OLHOS DE AGUA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20052,'44260','Olhuveli','OLHUVELI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:32:27','1900-01-01 00:00:00',1,0,1),(20053,'12227','Oliena','OLIENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20054,'25032','Olinda','OLINDA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20055,'40253','Olinda','OLINDA',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20056,'3062','Olite','OLITE',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20057,'15818','Olivais Sul','OLIVAIS SUL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20058,'39519','Olivares','OLIVARES',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:28','1900-01-01 00:00:00',1,0,1),(20059,'27895','Olive Branch','OLIVE BRANCH',NULL,'','United States','',0,0,231,'2016-10-17 11:32:29','1900-01-01 00:00:00',1,0,1),(20060,'15861','Oliveira De Azemeis','OLIVEIRA DE AZEMEIS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:32:29','1900-01-01 00:00:00',1,0,1),(20061,'38391','Olivella','OLIVELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20062,'3645','Olivenza','OLIVENZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20063,'25499','Oliver','OLIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20064,'29013','Oliverea','OLIVEREA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20065,'5669','Olivet','OLIVET',NULL,'','France','',0,0,76,'2016-10-17 11:32:30','1900-01-01 00:00:00',1,0,1),(20066,'12228','Oliveto Citra','OLIVETO CITRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:31','1900-01-01 00:00:00',1,0,1),(20067,'27736','Olivette','OLIVETTE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:31','1900-01-01 00:00:00',1,0,1),(20068,'27474','Olivia','OLIVIA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:31','1900-01-01 00:00:00',1,0,1),(20069,'23308','Olivone','OLIVONE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20070,'15379','Ollantaytambo','OLLANTAYTAMBO',NULL,'','Peru','',0,0,172,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20071,'5337','Olliergues','OLLIERGUES',NULL,'','France','',0,0,76,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20072,'41319','Olmedo','OLMEDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20073,'4768','Olmeto','OLMETO',NULL,'','France','',0,0,76,'2016-10-17 11:32:32','1900-01-01 00:00:00',1,0,1),(20074,'30836','Olmito','OLMITO',NULL,'','United States','',0,0,231,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20075,'20696','Olney','OLNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20076,'37709','Olocau Del Rey','OLOCAU DEL REY',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20077,'16682','Olofstroem','OLOFSTROEM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20078,'36673','Olofstrom','OLOFSTROM',NULL,'','Sweden','',0,0,209,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20079,'24348','Olomouc','OLOMOUC',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:32:33','1900-01-01 00:00:00',1,0,1),(20080,'15555','Olongapo','OLONGAPO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:32:34','1900-01-01 00:00:00',1,0,1),(20081,'36269','Oloron-herrere','OLORON-HERRERE',NULL,'','France','',0,0,76,'2016-10-17 11:32:34','1900-01-01 00:00:00',1,0,1),(20082,'5231','Oloron-sainte-marie','OLORON-SAINTE-MARIE',NULL,'','France','',0,0,76,'2016-10-17 11:32:34','1900-01-01 00:00:00',1,0,1),(20083,'20089','Olowalu','OLOWALU',NULL,'','United States','',0,0,231,'2016-10-17 11:32:34','1900-01-01 00:00:00',1,0,1),(20084,'32335','Olpoi','OLPOI',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20085,'549','Olsberg','OLSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20086,'2199','Olsted','OLSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20087,'15723','Olsztyn','OLSZTYN',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20088,'44049','Oltarzew','OLTARZEW',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20089,'23309','Olten','OLTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20090,'40511','Olvega','OLVEGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20091,'41947','Olvera','OLVERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:35','1900-01-01 00:00:00',1,0,1),(20092,'31571','Olympia','OLYMPIA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:36','1900-01-01 00:00:00',1,0,1),(20093,'9557','Olympia','OLYMPIA',NULL,'','Greece','Olympia',0,0,86,'2016-10-17 11:32:36','1900-01-01 00:00:00',1,0,1),(20094,'43664','Olympic Dam','OLYMPIC DAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:36','1900-01-01 00:00:00',1,0,1),(20095,'31573','Olympic National Park','OLYMPIC NATIONAL PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:32:37','1900-01-01 00:00:00',1,0,1),(20096,'43407','Om El Seid Hill','OM EL SEID HILL',NULL,'','Egypt','',0,0,65,'2016-10-17 11:32:37','1900-01-01 00:00:00',1,0,1),(20097,'8661','Omagh','OMAGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:37','1900-01-01 00:00:00',1,0,1),(20098,'31574','Omak','OMAK',NULL,'','United States','',0,0,231,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20099,'15147','Omapere','OMAPERE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20100,'15227','Omarama','OMARAMA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20101,'36444','Omaruru','OMARURU',NULL,'','Namibia','',0,0,151,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20102,'6855','Omboue','OMBOUE',NULL,'','Gabon','',0,0,80,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20103,'12229','Omegna','OMEGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20104,'34586','Omemee','OMEMEE',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20105,'13845','Ometusco','OMETUSCO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20106,'13502','Omin-ni','OMIN-NI',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:32:39','1900-01-01 00:00:00',1,0,1),(20107,'10029','Omis','OMIS',NULL,'','Croatia','',0,0,55,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20108,'35329','Omisalj','OMISALJ',NULL,'','Croatia','Omisalj',0,0,55,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20109,'37417','Omkareshwar','OMKARESHWAR',NULL,'','India','',0,0,101,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20110,'14754','Ommen','OMMEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20111,'9964','Omoa','OMOA',NULL,'','Honduras','',0,0,97,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20112,'31845','Omro','OMRO',NULL,'','United States','',0,0,231,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20113,'16411','Omsk','OMSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20114,'43921','Omura','OMURA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:40','1900-01-01 00:00:00',1,0,1),(20115,'31846','Onalaska','ONALASKA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:41','1900-01-01 00:00:00',1,0,1),(20116,'27475','Onamia','ONAMIA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:41','1900-01-01 00:00:00',1,0,1),(20117,'31192','Onancock','ONANCOCK',NULL,'','United States','',0,0,231,'2016-10-17 11:32:42','1900-01-01 00:00:00',1,0,1),(20118,'42695','Onanole','ONANOLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:32:42','1900-01-01 00:00:00',1,0,1),(20119,'42078','Onate','ONATE',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:42','1900-01-01 00:00:00',1,0,1),(20120,'38160','Onati','ONATI',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:42','1900-01-01 00:00:00',1,0,1),(20121,'20264','Onawa','ONAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20122,'14418','Ondangwa','ONDANGWA',NULL,'','Namibia','',0,0,151,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20123,'40324','Ondara','ONDARA',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20124,'5232','Ondres','ONDRES',NULL,'','France','',0,0,76,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20125,'15148','One Tree Hill','ONE TREE HILL',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20126,'15149','Onehunga','ONEHUNGA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:43','1900-01-01 00:00:00',1,0,1),(20127,'33231','Oneida','ONEIDA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:44','1900-01-01 00:00:00',1,0,1),(20128,'28158','Oneill','ONEILL',NULL,'','United States','',0,0,231,'2016-10-17 11:32:44','1900-01-01 00:00:00',1,0,1),(20129,'28159','O\'neill','O\'NEILL',NULL,'','United States','',0,0,231,'2016-10-17 11:32:45','1900-01-01 00:00:00',1,0,1),(20130,'22195','Onekama','ONEKAMA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:45','1900-01-01 00:00:00',1,0,1),(20131,'17929','Oneonta','ONEONTA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:46','1900-01-01 00:00:00',1,0,1),(20132,'15150','Oneroa','ONEROA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:47','1900-01-01 00:00:00',1,0,1),(20133,'41302','Ongayo','ONGAYO',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:47','1900-01-01 00:00:00',1,0,1),(20134,'8662','Onich','ONICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:32:47','1900-01-01 00:00:00',1,0,1),(20135,'33232','Only','ONLY',NULL,'','United States','',0,0,231,'2016-10-17 11:32:48','1900-01-01 00:00:00',1,0,1),(20136,'23443','Onnens','ONNENS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:48','1900-01-01 00:00:00',1,0,1),(20137,'4069','Ono-i-lau','ONO-I-LAU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:32:48','1900-01-01 00:00:00',1,0,1),(20138,'13468','Onotoa','ONOTOA',NULL,'','Kiribati','',0,0,114,'2016-10-17 11:32:48','1900-01-01 00:00:00',1,0,1),(20139,'21490','Onset','ONSET',NULL,'','United States','',0,0,231,'2016-10-17 11:32:49','1900-01-01 00:00:00',1,0,1),(20140,'26612','Onslow','ONSLOW',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:49','1900-01-01 00:00:00',1,0,1),(20141,'29721','Ontario','ONTARIO',NULL,'','United States','',0,0,231,'2016-10-17 11:32:49','1900-01-01 00:00:00',1,0,1),(20142,'24918','Ontario Village','ONTARIO VILLAGE',NULL,'','Belize','',0,0,22,'2016-10-17 11:32:50','1900-01-01 00:00:00',1,0,1),(20143,'3154','Ontinyent','ONTINYENT',NULL,'','Spain','',0,0,199,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20144,'22196','Ontonagon','ONTONAGON',NULL,'','United States','',0,0,231,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20145,'38208','Onuma','ONUMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20146,'5670','Onzain','ONZAIN',NULL,'','France','',0,0,76,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20147,'14547','Ooij','OOIJ',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:51','1900-01-01 00:00:00',1,0,1),(20148,'20090','Ookala','OOKALA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:52','1900-01-01 00:00:00',1,0,1),(20149,'33233','Ooltewah','OOLTEWAH',NULL,'','United States','',0,0,231,'2016-10-17 11:32:52','1900-01-01 00:00:00',1,0,1),(20150,'24731','Oostduinkerke','OOSTDUINKERKE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:32:52','1900-01-01 00:00:00',1,0,1),(20151,'40971','Oostende','OOSTENDE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:32:52','1900-01-01 00:00:00',1,0,1),(20152,'14548','Oosterbeek','OOSTERBEEK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20153,'14607','Oosterhout','OOSTERHOUT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20154,'14517','Oosterwolde','OOSTERWOLDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20155,'40513','Oostkamp','OOSTKAMP',NULL,'','Belgium','',0,0,21,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20156,'14518','Oost-vlieland','OOST-VLIELAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20157,'39768','Oostvoorne','OOSTVOORNE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20158,'1765','Ootacamund','OOTACAMUND',NULL,'','India','',0,0,101,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20159,'34278','Ootha','OOTHA',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20160,'14755','Ootmarsum','OOTMARSUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20161,'40879','Ooty','OOTY',NULL,'','India','Ooty',18,0,101,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20162,'40009','Opalenica','OPALENICA',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:53','1900-01-01 00:00:00',1,0,1),(20163,'19529','Opa-locka','OPA-LOCKA',NULL,'','United States','',0,0,231,'2016-10-17 11:32:54','1900-01-01 00:00:00',1,0,1),(20164,'10030','Opatija','OPATIJA',NULL,'','Croatia','Opatija',0,0,55,'2016-10-17 11:32:54','1900-01-01 00:00:00',1,0,1),(20165,'21243','Opelousas','OPELOUSAS',NULL,'','United States','',0,0,231,'2016-10-17 11:32:54','1900-01-01 00:00:00',1,0,1),(20166,'12230','Opera','OPERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:32:55','1900-01-01 00:00:00',1,0,1),(20167,'42411','Opfikon','OPFIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:32:55','1900-01-01 00:00:00',1,0,1),(20168,'20091','Opihikao','OPIHIKAO',NULL,'','United States','',0,0,231,'2016-10-17 11:32:55','1900-01-01 00:00:00',1,0,1),(20169,'6501','Opio','OPIO',NULL,'','France','',0,0,76,'2016-10-17 11:32:55','1900-01-01 00:00:00',1,0,1),(20170,'15652','Opole','OPOLE',NULL,'','Poland','',0,0,174,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20171,'15228','Opononi','OPONONI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20172,'14939','Oppdal','OPPDAL',NULL,'','Norway','',0,0,164,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20173,'4431','Oppède','OPPÈDE',NULL,'','France','',0,0,76,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20174,'22609','Oppenau','OPPENAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:32:56','1900-01-01 00:00:00',1,0,1),(20175,'14813','Oppland','OPPLAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20176,'43018','Opua','OPUA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20177,'36445','Opuwo','OPUWO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20178,'13096','Oracabessa','ORACABESSA',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20179,'18175','Oracle','ORACLE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20180,'16226','Oradea','ORADEA',NULL,'','Romania','',0,0,179,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20181,'37801','Oraison','ORAISON',NULL,'','France','',0,0,76,'2016-10-17 11:32:57','1900-01-01 00:00:00',1,0,1),(20182,'15229','Orakei','ORAKEI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:32:58','1900-01-01 00:00:00',1,0,1),(20183,'38774','Oran','ORAN',NULL,'','Algeria','',0,0,3,'2016-10-17 11:32:58','1900-01-01 00:00:00',1,0,1),(20184,'29485','Orange','ORANGE',NULL,'','United States','',0,0,231,'2016-10-17 11:32:58','1900-01-01 00:00:00',1,0,1),(20185,'5119','Orange','ORANGE',NULL,'','France','',0,0,76,'2016-10-17 11:32:58','1900-01-01 00:00:00',1,0,1),(20186,'34279','Orange','ORANGE',NULL,'','Australia','',0,0,13,'2016-10-17 11:32:59','1900-01-01 00:00:00',1,0,1),(20187,'24921','Orange Walk','ORANGE WALK',NULL,'','Belize','',0,0,22,'2016-10-17 11:33:02','1900-01-01 00:00:00',1,0,1),(20188,'30383','Orangeburg','ORANGEBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:33:03','1900-01-01 00:00:00',1,0,1),(20189,'34587','Orangeville','ORANGEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20190,'14414','Oranjemund','ORANJEMUND',NULL,'','Namibia','',0,0,151,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20191,'25902','Oranjestad','ORANJESTAD',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20192,'25837','Oranjestad','ORANJESTAD',NULL,'','Aruba','',0,0,12,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20193,'14519','Oranjewoud','ORANJEWOUD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20194,'32487','Oranjezicht','ORANJEZICHT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20195,'10870','Oranmore','ORANMORE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20196,'39905','Orasac','ORASAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20197,'12231','Orbassano','ORBASSANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:04','1900-01-01 00:00:00',1,0,1),(20198,'4432','Orbec','ORBEC',NULL,'','France','',0,0,76,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20199,'12980','Orbetello','ORBETELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20200,'6783','Orbey','ORBEY',NULL,'','France','',0,0,76,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20201,'26536','Orbost','ORBOST',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20202,'16891','Orby','ORBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:05','1900-01-01 00:00:00',1,0,1),(20203,'31575','Orcas','ORCAS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:06','1900-01-01 00:00:00',1,0,1),(20204,'31576','Orchards','ORCHARDS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:07','1900-01-01 00:00:00',1,0,1),(20205,'10571','Orchha','ORCHHA',NULL,'','India','Orchha',15,0,101,'2016-10-17 11:33:07','1900-01-01 00:00:00',1,0,1),(20206,'26738','Orchid Beach','ORCHID BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:07','1900-01-01 00:00:00',1,0,1),(20207,'17407','Orchid Island','ORCHID ISLAND',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:33:08','1900-01-01 00:00:00',1,0,1),(20208,'6502','Orcieres','ORCIERES',NULL,'','France','',0,0,76,'2016-10-17 11:33:08','1900-01-01 00:00:00',1,0,1),(20209,'5338','Orcines','ORCINES',NULL,'','France','',0,0,76,'2016-10-17 11:33:08','1900-01-01 00:00:00',1,0,1),(20210,'38070','Orco Feglino','ORCO FEGLINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:08','1900-01-01 00:00:00',1,0,1),(20211,'3063','Orcoyen','ORCOYEN',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20212,'25881','Ordino','ORDINO',NULL,'','Andorra','',0,0,5,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20213,'43827','Ordos City','ORDOS CITY',NULL,'','China','',0,0,46,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20214,'2330','Ordrup','ORDRUP',NULL,'','Denmark','',0,0,59,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20215,'17354','Ordu','ORDU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20216,'41945','Orduna','ORDUNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20217,'3156','Orduña','ORDUÑA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20218,'10031','Orebic','OREBIC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20219,'16763','Orebro','OREBRO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20220,'16684','Orebro-bofors','OREBRO-BOFORS',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:09','1900-01-01 00:00:00',1,0,1),(20221,'37285','Orel','OREL',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:33:11','1900-01-01 00:00:00',1,0,1),(20222,'17509','Orel','OREL',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:33:11','1900-01-01 00:00:00',1,0,1),(20223,'6684','Orelle','ORELLE',NULL,'','France','',0,0,76,'2016-10-17 11:33:11','1900-01-01 00:00:00',1,0,1),(20224,'33376','Orem','OREM',NULL,'','United States','',0,0,231,'2016-10-17 11:33:11','1900-01-01 00:00:00',1,0,1),(20225,'3675','Orense','ORENSE',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20226,'39537','Orestiada','ORESTIADA',NULL,'','Greece','',0,0,86,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20227,'15230','Orewa','OREWA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20228,'11342','Orfengo Di Casalino','ORFENGO DI CASALINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20229,'43676','Orford','ORFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20230,'32750','Orford','ORFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:33:12','1900-01-01 00:00:00',1,0,1),(20231,'8663','Orford','ORFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:13','1900-01-01 00:00:00',1,0,1),(20232,'4769','Orgeval','ORGEVAL',NULL,'','France','',0,0,76,'2016-10-17 11:33:13','1900-01-01 00:00:00',1,0,1),(20233,'2716','Orgiva','ORGIVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:13','1900-01-01 00:00:00',1,0,1),(20234,'6503','Orgon','ORGON',NULL,'','France','',0,0,76,'2016-10-17 11:33:13','1900-01-01 00:00:00',1,0,1),(20235,'13064','Oriago','ORIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:14','1900-01-01 00:00:00',1,0,1),(20236,'2717','Orient','ORIENT',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:14','1900-01-01 00:00:00',1,0,1),(20237,'9368','Orient Bay','ORIENT BAY',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:33:14','1900-01-01 00:00:00',1,0,1),(20238,'21491','Orient Heights','ORIENT HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:14','1900-01-01 00:00:00',1,0,1),(20239,'19532','Orienta Gardens','ORIENTA GARDENS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:15','1900-01-01 00:00:00',1,0,1),(20240,'33964','Oriental','ORIENTAL',NULL,'','United States','',0,0,231,'2016-10-17 11:33:15','1900-01-01 00:00:00',1,0,1),(20241,'23064','Origlio','ORIGLIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:33:15','1900-01-01 00:00:00',1,0,1),(20242,'3771','Orihuela','ORIHUELA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:15','1900-01-01 00:00:00',1,0,1),(20243,'18755','Orinda','ORINDA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:16','1900-01-01 00:00:00',1,0,1),(20244,'42491','Orini Nafpaktia','ORINI NAFPAKTIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:33:16','1900-01-01 00:00:00',1,0,1),(20245,'29020','Oriskany','ORISKANY',NULL,'','United States','',0,0,231,'2016-10-17 11:33:16','1900-01-01 00:00:00',1,0,1),(20246,'12828','Oristano','ORISTANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:17','1900-01-01 00:00:00',1,0,1),(20247,'13931','Orizaba','ORIZABA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:33:17','1900-01-01 00:00:00',1,0,1),(20248,'14994','Orkanger','ORKANGER',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:17','1900-01-01 00:00:00',1,0,1),(20249,'43343','Orkney','ORKNEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:17','1900-01-01 00:00:00',1,0,1),(20250,'21906','Orland','ORLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:33:18','1900-01-01 00:00:00',1,0,1),(20251,'14814','Orland','ORLAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:18','1900-01-01 00:00:00',1,0,1),(20252,'19533','Orlando','ORLANDO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:19','1900-01-01 00:00:00',1,0,1),(20253,'34589','Orleans','ORLEANS',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:19','1900-01-01 00:00:00',1,0,1),(20254,'4982','Orleans','ORLEANS',NULL,'','France','',0,0,76,'2016-10-17 11:33:20','1900-01-01 00:00:00',1,0,1),(20255,'35169','Orleans-saran','ORLEANS-SARAN',NULL,'','France','',0,0,76,'2016-10-17 11:33:20','1900-01-01 00:00:00',1,0,1),(20256,'4770','Orly','ORLY',NULL,'','France','',0,0,76,'2016-10-17 11:33:20','1900-01-01 00:00:00',1,0,1),(20257,'15317','Ormara','ORMARA',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20258,'9708','Ormilia','ORMILIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20259,'15556','Ormoc','ORMOC',NULL,'','Philippines','',0,0,173,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20260,'26299','Ormond','ORMOND',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20261,'19536','Ormond Beach','ORMOND BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:33:21','1900-01-01 00:00:00',1,0,1),(20262,'32412','Ormonde','ORMONDE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:33:22','1900-01-01 00:00:00',1,0,1),(20263,'44279','Ormont-dessus','ORMONT-DESSUS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:33:22','1900-01-01 00:00:00',1,0,1),(20264,'8664','Ormskirk','ORMSKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:22','1900-01-01 00:00:00',1,0,1),(20265,'5950','Ornaisons','ORNAISONS',NULL,'','France','',0,0,76,'2016-10-17 11:33:22','1900-01-01 00:00:00',1,0,1),(20266,'36672','Ornskoldsvick','ORNSKOLDSVICK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20267,'16806','Ornskoldsvik','ORNSKOLDSVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20268,'901','Orocue','OROCUE',NULL,'','Colombia','',0,0,49,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20269,'20384','Orofino','OROFINO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20270,'34411','Oromocto','OROMOCTO',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:23','1900-01-01 00:00:00',1,0,1),(20271,'21907','Orono','ORONO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:24','1900-01-01 00:00:00',1,0,1),(20272,'21908','Orono, Town Of','ORONO, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:33:24','1900-01-01 00:00:00',1,0,1),(20273,'3418','Oropesa','OROPESA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:24','1900-01-01 00:00:00',1,0,1),(20274,'12232','Orosei','OROSEI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:25','1900-01-01 00:00:00',1,0,1),(20275,'24205','Orosi','OROSI',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:33:25','1900-01-01 00:00:00',1,0,1),(20276,'3676','Oroso','OROSO',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:25','1900-01-01 00:00:00',1,0,1),(20277,'31577','Oroville','OROVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:25','1900-01-01 00:00:00',1,0,1),(20278,'26300','Orpheus Island','ORPHEUS ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:26','1900-01-01 00:00:00',1,0,1),(20279,'8665','Orphir','ORPHIR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:26','1900-01-01 00:00:00',1,0,1),(20280,'30111','Orrtanna','ORRTANNA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:27','1900-01-01 00:00:00',1,0,1),(20281,'29487','Orrville','ORRVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20282,'36674','Orsa','ORSA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20283,'686','Orscholz','ORSCHOLZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20284,'23065','Orselina','ORSELINA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20285,'14815','Orsta','ORSTA',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:28','1900-01-01 00:00:00',1,0,1),(20286,'17343','Ortaca','ORTACA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:33:29','1900-01-01 00:00:00',1,0,1),(20287,'5024','Orthez','ORTHEZ',NULL,'','France','',0,0,76,'2016-10-17 11:33:29','1900-01-01 00:00:00',1,0,1),(20288,'12951','Ortisei','ORTISEI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:29','1900-01-01 00:00:00',1,0,1),(20289,'27478','Ortonville','ORTONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:29','1900-01-01 00:00:00',1,0,1),(20290,'6262','Orvault','ORVAULT',NULL,'','France','',0,0,76,'2016-10-17 11:33:30','1900-01-01 00:00:00',1,0,1),(20291,'30112','Orwigsburg','ORWIGSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:33:31','1900-01-01 00:00:00',1,0,1),(20292,'13530','Oryu-dong','ORYU-DONG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:33:31','1900-01-01 00:00:00',1,0,1),(20293,'20266','Osage','OSAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:31','1900-01-01 00:00:00',1,0,1),(20294,'35726','Osaka-kansai','OSAKA-KANSAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:33:32','1900-01-01 00:00:00',1,0,1),(20295,'25211','Osasco','OSASCO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:33:32','1900-01-01 00:00:00',1,0,1),(20296,'21114','Osawatomie','OSAWATOMIE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:33','1900-01-01 00:00:00',1,0,1),(20297,'21115','Osborne','OSBORNE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:33','1900-01-01 00:00:00',1,0,1),(20298,'16873','Osby','OSBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:33','1900-01-01 00:00:00',1,0,1),(20299,'18065','Osceola','OSCEOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:34','1900-01-01 00:00:00',1,0,1),(20300,'1944','Oschersleben','OSCHERSLEBEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20301,'22197','Oscoda','OSCODA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20302,'14651','Osdorp','OSDORP',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20303,'13447','Osh','OSH',NULL,'','Kyrgyzstan','',0,0,117,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20304,'14416','Oshakati','OSHAKATI',NULL,'','Namibia','',0,0,151,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20305,'34590','Oshawa','OSHAWA',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:35','1900-01-01 00:00:00',1,0,1),(20306,'31848','Oshkosh','OSHKOSH',NULL,'','United States','',0,0,231,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20307,'40880','Osian','OSIAN',NULL,'','India','Osian',2,0,101,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20308,'10060','Osijek','OSIJEK',NULL,'','Croatia','',0,0,55,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20309,'12235','Osimo','OSIMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20310,'20268','Oskaloosa','OSKALOOSA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:36','1900-01-01 00:00:00',1,0,1),(20311,'14924','Oskarsborg','OSKARSBORG',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20312,'16731','Oskarshamn','OSKARSHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20313,'39090','Oskemen','OSKEMEN',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20314,'14955','Oslo','OSLO',NULL,'','Norway','Oslo',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20315,'36468','Oslo-asker','OSLO-ASKER',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20316,'15458','Oslob','OSLOB',NULL,'','Philippines','',0,0,173,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20317,'36471','Oslo-drammen','OSLO-DRAMMEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20318,'36472','Oslo-fornbeu','OSLO-FORNBEU',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20319,'36473','Oslo-gardermoen Airp','OSLO-GARDERMOEN AIRP',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20320,'36477','Oslo-hovik','OSLO-HOVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:37','1900-01-01 00:00:00',1,0,1),(20321,'36478','Oslo-kolbotn','OSLO-KOLBOTN',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20322,'36481','Oslo-lorenskog','OSLO-LORENSKOG',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20323,'36485','Oslo-royken','OSLO-ROYKEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20324,'36487','Oslo-sandvika','OSLO-SANDVIKA',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20325,'38120','Osmo','OSMO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20326,'36081','Osnabruck','OSNABRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20327,'22376','Osnabrucker Land','OSNABRUCKER LAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20328,'27266','Osnabrueck','OSNABRUECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20329,'23527','Osorno','OSORNO',NULL,'','Chile','',0,0,45,'2016-10-17 11:33:38','1900-01-01 00:00:00',1,0,1),(20330,'3469','Osorno','OSORNO',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20331,'25500','Osoyoos','OSOYOOS',NULL,'','Canada','',0,0,39,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20332,'41050','Osoyro','OSOYRO',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20333,'12236','Ospedaletti','OSPEDALETTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20334,'12237','Ospedaletto D\'alpinolo','OSPEDALETTO D\'ALPINOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:39','1900-01-01 00:00:00',1,0,1),(20335,'12239','Ospedalicchio','OSPEDALICCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:40','1900-01-01 00:00:00',1,0,1),(20336,'19537','Osprey','OSPREY',NULL,'','United States','',0,0,231,'2016-10-17 11:33:40','1900-01-01 00:00:00',1,0,1),(20337,'41364','Osseja','OSSEJA',NULL,'','France','',0,0,76,'2016-10-17 11:33:40','1900-01-01 00:00:00',1,0,1),(20338,'31849','Osseo','OSSEO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:41','1900-01-01 00:00:00',1,0,1),(20339,'43234','Ossett','OSSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:41','1900-01-01 00:00:00',1,0,1),(20340,'27082','Ossiach','OSSIACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20341,'27015','Ossiacher Lake','OSSIACHER LAKE',NULL,'','Austria','',0,0,14,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20342,'44232','Ossona','OSSONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20343,'37676','Ossuccio','OSSUCCIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20344,'16840','Ostberga','OSTBERGA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20345,'550','Ostbevern','OSTBEVERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20346,'12240','Ostellato','OSTELLATO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20347,'291','Osten','OSTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:42','1900-01-01 00:00:00',1,0,1),(20348,'467','Osterfeld','OSTERFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20349,'16685','Ostergotland','OSTERGOTLAND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20350,'40927','Osterley','OSTERLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20351,'37741','Ostermundigen','OSTERMUNDIGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20352,'38717','Osterode Am Harz','OSTERODE AM HARZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20353,'16712','Ostersund','OSTERSUND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:43','1900-01-01 00:00:00',1,0,1),(20354,'21493','Osterville','OSTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20355,'22377','Ostfildern','OSTFILDERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20356,'14817','Ostfold - Vestfold','OSTFOLD - VESTFOLD',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20357,'653','Osthofen','OSTHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20358,'11344','Ostia - Pomezia','OSTIA - POMEZIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:44','1900-01-01 00:00:00',1,0,1),(20359,'16874','Ostra Tommarp','OSTRA TOMMARP',NULL,'','Sweden','',0,0,209,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20360,'24349','Ostrava','OSTRAVA',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20361,'37588','Ostravice','OSTRAVICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20362,'37481','Ostringen','OSTRINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20363,'44050','Ostroda','OSTRODA',NULL,'','Poland','',0,0,174,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20364,'16421','Ostrov','OSTROV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20365,'39923','Ostrov','OSTROV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20366,'1833','Ostseebad Ahrenshoop','OSTSEEBAD AHRENSHOOP',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:45','1900-01-01 00:00:00',1,0,1),(20367,'12242','Ostuni','OSTUNI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:47','1900-01-01 00:00:00',1,0,1),(20368,'6784','Ostwald','OSTWALD',NULL,'','France','',0,0,76,'2016-10-17 11:33:47','1900-01-01 00:00:00',1,0,1),(20369,'551','Ostwig','OSTWIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:47','1900-01-01 00:00:00',1,0,1),(20370,'3278','Osuna','OSUNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:33:47','1900-01-01 00:00:00',1,0,1),(20371,'20699','Oswego','OSWEGO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:48','1900-01-01 00:00:00',1,0,1),(20372,'8667','Oswestry','OSWESTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:48','1900-01-01 00:00:00',1,0,1),(20373,'40928','Oswestry','OSWESTRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:33:48','1900-01-01 00:00:00',1,0,1),(20374,'38502','Oswiecim','OSWIECIM',NULL,'','Poland','',0,0,174,'2016-10-17 11:33:48','1900-01-01 00:00:00',1,0,1),(20375,'43663','Otago','OTAGO',NULL,'','Australia','',0,0,13,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20376,'15151','Otahuhu','OTAHUHU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20377,'15231','Otara','OTARA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20378,'42880','Otari','OTARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20379,'13330','Otaru','OTARU',NULL,'','Japan','',0,0,110,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20380,'2399','Otavalo','OTAVALO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20381,'18758','Otay','OTAY',NULL,'','United States','',0,0,231,'2016-10-17 11:33:49','1900-01-01 00:00:00',1,0,1),(20382,'15232','Otematata','OTEMATATA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:33:50','1900-01-01 00:00:00',1,0,1),(20383,'3834','Otepaa','OTEPAA',NULL,'','Estonia','',0,0,69,'2016-10-17 11:33:50','1900-01-01 00:00:00',1,0,1),(20384,'31578','Othello','OTHELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:50','1900-01-01 00:00:00',1,0,1),(20385,'29723','Otis','OTIS',NULL,'','United States','',0,0,231,'2016-10-17 11:33:50','1900-01-01 00:00:00',1,0,1),(20386,'36446','Otjiwarongo','OTJIWARONGO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20387,'40469','Otocec','OTOCEC',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20388,'42542','Otocek','OTOCEK',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20389,'38236','Otofuke','OTOFUKE',NULL,'','Japan','',0,0,110,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20390,'40365','Otongo','OTONGO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:33:51','1900-01-01 00:00:00',1,0,1),(20391,'12243','Otricoli','OTRICOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20392,'27480','Otsego','OTSEGO',NULL,'','United States','',0,0,231,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20393,'14949','Otta','OTTA',NULL,'','Norway','',0,0,164,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20394,'24537','Ottakring','OTTAKRING',NULL,'','Austria','',0,0,14,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20395,'12244','Ottavia','OTTAVIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:52','1900-01-01 00:00:00',1,0,1),(20396,'12245','Ottaviano','OTTAVIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:33:53','1900-01-01 00:00:00',1,0,1),(20397,'20700','Ottawa','OTTAWA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:53','1900-01-01 00:00:00',1,0,1),(20398,'34592','Ottawa','OTTAWA',NULL,'','Canada','Ottawa',0,0,39,'2016-10-17 11:33:53','1900-01-01 00:00:00',1,0,1),(20399,'654','Otterberg','OTTERBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:55','1900-01-01 00:00:00',1,0,1),(20400,'8669','Otterburn','OTTERBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:55','1900-01-01 00:00:00',1,0,1),(20401,'27267','Otterndorf','OTTERNDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:55','1900-01-01 00:00:00',1,0,1),(20402,'8670','Ottershaw','OTTERSHAW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:55','1900-01-01 00:00:00',1,0,1),(20403,'39191','Otterstadt','OTTERSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:56','1900-01-01 00:00:00',1,0,1),(20404,'27481','Ottertail','OTTERTAIL',NULL,'','United States','',0,0,231,'2016-10-17 11:33:56','1900-01-01 00:00:00',1,0,1),(20405,'7246','Ottery St Mary','OTTERY ST MARY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:33:56','1900-01-01 00:00:00',1,0,1),(20406,'6785','Ottmarsheim','OTTMARSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:33:56','1900-01-01 00:00:00',1,0,1),(20407,'37903','Ottobeuren','OTTOBEUREN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20408,'292','Ottobrunn','OTTOBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20409,'26156','Ottoville','OTTOVILLE',NULL,'','American Samoa','',0,0,4,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20410,'6786','Ottrott','OTTROTT',NULL,'','France','',0,0,76,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20411,'30113','Ottsville','OTTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:33:57','1900-01-01 00:00:00',1,0,1),(20412,'20269','Ottumwa','OTTUMWA',NULL,'','United States','',0,0,231,'2016-10-17 11:33:58','1900-01-01 00:00:00',1,0,1),(20413,'24093','Otu','OTU',NULL,'','Colombia','',0,0,49,'2016-10-17 11:33:58','1900-01-01 00:00:00',1,0,1),(20414,'16164','Otumai','OTUMAI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:33:58','1900-01-01 00:00:00',1,0,1),(20415,'24750','Ouagadougou','OUAGADOUGOU',NULL,'','Burkina Faso','',0,0,35,'2016-10-17 11:33:58','1900-01-01 00:00:00',1,0,1),(20416,'38404','Oualidia','OUALIDIA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20417,'38285','Ouargla','OUARGLA',NULL,'','Algeria','',0,0,3,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20418,'13702','Ouarzazate','OUARZAZATE',NULL,'','Morocco','',0,0,148,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20419,'35142','Ouchamps','OUCHAMPS',NULL,'','France','',0,0,76,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20420,'38757','Oudega','OUDEGA',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20421,'24719','Oudenaarde','OUDENAARDE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20422,'24732','Oudenburg','OUDENBURG',NULL,'','Belgium','',0,0,21,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20423,'24642','Oudergem','OUDERGEM',NULL,'','Belgium','',0,0,21,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20424,'14652','Ouderkerk Aan De Amstel','OUDERKERK AAN DE AMSTEL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20425,'14520','Oudkerk','OUDKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:33:59','1900-01-01 00:00:00',1,0,1),(20426,'32488','Oudtshoorn','OUDTSHOORN',NULL,'','South Africa','Oudtshoorn',0,0,195,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20427,'24612','Oud-turnhout','OUD-TURNHOUT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20428,'14426','Ouen Island','OUEN ISLAND',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20429,'24058','Ouesso','OUESSO',NULL,'','Congo','',0,0,51,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20430,'10871','Oughterard','OUGHTERARD',NULL,'','Ireland','',0,0,105,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20431,'5783','Ougney-douvot','OUGNEY-DOUVOT',NULL,'','France','',0,0,76,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20432,'13699','Ouirgane','OUIRGANE',NULL,'','Morocco','',0,0,148,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20433,'5412','Ouistreham','OUISTREHAM',NULL,'','France','',0,0,76,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20434,'13705','Oujda','OUJDA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20435,'13700','Oukaimeden','OUKAIMEDEN',NULL,'','Morocco','',0,0,148,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20436,'3928','Oulanka','OULANKA',NULL,'','Finland','',0,0,75,'2016-10-17 11:34:00','1900-01-01 00:00:00',1,0,1),(20437,'6685','Oullins','OULLINS',NULL,'','France','',0,0,76,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20438,'8671','Oulton','OULTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20439,'3949','Oulu','OULU',NULL,'','Finland','',0,0,75,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20440,'39002','Oulx','OULX',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20441,'37382','Ounara','OUNARA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:34:01','1900-01-01 00:00:00',1,0,1),(20442,'8672','Oundle','OUNDLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20443,'9709','Ouranopolis','OURANOPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20444,'43455','Ouranoupolis','OURANOUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20445,'33511','Ouray','OURAY',NULL,'','United States','',0,0,231,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20446,'1631','Ourem-fatima','OUREM-FATIMA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20447,'1256','Ourense','OURENSE',NULL,'','SPAIN','',0,0,199,'2016-10-17 11:34:02','1900-01-01 00:00:00',1,0,1),(20448,'25092','Ouro Preto','OURO PRETO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20449,'42164','Outaouais','OUTAOUAIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20450,'33965','Outer Banks','OUTER BANKS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20451,'7248','Outer Hebrides','OUTER HEBRIDES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20452,'36447','Outjo','OUTJO',NULL,'','Namibia','',0,0,151,'2016-10-17 11:34:03','1900-01-01 00:00:00',1,0,1),(20453,'41100','Outlane','OUTLANE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20454,'22958','Outlook','OUTLOOK',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20455,'9909','Outlying Islands','OUTLYING ISLANDS',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20456,'22816','Outremont','OUTREMONT',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20457,'14427','Ouvea','OUVEA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20458,'26537','Ouyen','OUYEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20459,'17729','Ouzinkie','OUZINKIE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:04','1900-01-01 00:00:00',1,0,1),(20460,'40767','Ovada','OVADA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20461,'23524','Ovalle','OVALLE',NULL,'','Chile','',0,0,45,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20462,'28007','Ovando','OVANDO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20463,'15863','Ovar','OVAR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20464,'11051','Ovda','OVDA',NULL,'','Israel','',0,0,106,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20465,'42904','Overath','OVERATH',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:05','1900-01-01 00:00:00',1,0,1),(20466,'40213','Overberg','OVERBERG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:34:06','1900-01-01 00:00:00',1,0,1),(20467,'38899','Överkalix','ÖVERKALIX',NULL,'','Sweden','',0,0,209,'2016-10-17 11:34:06','1900-01-01 00:00:00',1,0,1),(20468,'27739','Overland','OVERLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:34:06','1900-01-01 00:00:00',1,0,1),(20469,'40012','Overlida','OVERLIDA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:34:08','1900-01-01 00:00:00',1,0,1),(20470,'22379','Oversee','OVERSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:08','1900-01-01 00:00:00',1,0,1),(20471,'8673','Overstrand','OVERSTRAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:08','1900-01-01 00:00:00',1,0,1),(20472,'32839','Overton','OVERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:34:08','1900-01-01 00:00:00',1,0,1),(20473,'14653','Overtoomseveld','OVERTOOMSEVELD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:34:09','1900-01-01 00:00:00',1,0,1),(20474,'3099','Oviedo','OVIEDO',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:09','1900-01-01 00:00:00',1,0,1),(20475,'19538','Oviedo','OVIEDO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:09','1900-01-01 00:00:00',1,0,1),(20476,'40609','Ovifat','OVIFAT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20477,'13039','Oviglio','OVIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20478,'35596','Ovindoli','OVINDOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20479,'8674','Ovington','OVINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20480,'16086','Ovoa','OVOA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20481,'23310','Ovronnaz','OVRONNAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:34:10','1900-01-01 00:00:00',1,0,1),(20482,'24059','Owando','OWANDO',NULL,'','Congo','',0,0,51,'2016-10-17 11:34:11','1900-01-01 00:00:00',1,0,1),(20483,'32941','Owasso','OWASSO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:11','1900-01-01 00:00:00',1,0,1),(20484,'27482','Owatonna','OWATONNA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:11','1900-01-01 00:00:00',1,0,1),(20485,'29022','Owego','OWEGO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:12','1900-01-01 00:00:00',1,0,1),(20486,'34595','Owen Sound','OWEN SOUND',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:12','1900-01-01 00:00:00',1,0,1),(20487,'40320','Owens Cross Roads','OWENS CROSS ROADS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:13','1900-01-01 00:00:00',1,0,1),(20488,'33708','Owensboro','OWENSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:13','1900-01-01 00:00:00',1,0,1),(20489,'15152','Owhanake Bay','OWHANAKE BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:34:14','1900-01-01 00:00:00',1,0,1),(20490,'21758','Owings Mills','OWINGS MILLS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:14','1900-01-01 00:00:00',1,0,1),(20491,'33710','Owingsville','OWINGSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:14','1900-01-01 00:00:00',1,0,1),(20492,'22199','Owosso','OWOSSO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:15','1900-01-01 00:00:00',1,0,1),(20493,'22200','Oxbow','OXBOW',NULL,'','United States','',0,0,231,'2016-10-17 11:34:15','1900-01-01 00:00:00',1,0,1),(20494,'16778','Oxelosund','OXELOSUND',NULL,'','Sweden','',0,0,209,'2016-10-17 11:34:16','1900-01-01 00:00:00',1,0,1),(20495,'19137','Oxford','OXFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:34:16','1900-01-01 00:00:00',1,0,1),(20496,'1416','Oxford','OXFORD',NULL,'','UNITED KINGDOM','Oxford',0,0,469,'2016-10-17 11:34:18','1900-01-01 00:00:00',1,0,1),(20497,'9710','Oxilithos','OXILITHOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:18','1900-01-01 00:00:00',1,0,1),(20498,'18759','Oxnard','OXNARD',NULL,'','United States','',0,0,231,'2016-10-17 11:34:19','1900-01-01 00:00:00',1,0,1),(20499,'21760','Oxon Hill','OXON HILL',NULL,'','United States','',0,0,231,'2016-10-17 11:34:19','1900-01-01 00:00:00',1,0,1),(20500,'6858','Oyem','OYEM',NULL,'','Gabon','',0,0,80,'2016-10-17 11:34:19','1900-01-01 00:00:00',1,0,1),(20501,'25343','Oyen','OYEN',NULL,'','Canada','',0,0,39,'2016-10-17 11:34:19','1900-01-01 00:00:00',1,0,1),(20502,'14818','Oyer','OYER',NULL,'','Norway','',0,0,164,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20503,'37838','Oy-mittelberg','OY-MITTELBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20504,'22380','Oynhausen','OYNHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20505,'6686','Oyonnax','OYONNAX',NULL,'','France','',0,0,76,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20506,'29023','Oyster Bay','OYSTER BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:34:20','1900-01-01 00:00:00',1,0,1),(20507,'17469','Oyster Bay','OYSTER BAY',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20508,'40216','Oyster Bay','OYSTER BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20509,'25891','Oyster Pond','OYSTER POND',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20510,'36484','Oystese','OYSTESE',NULL,'','Norway','',0,0,164,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20511,'38944','Oyten','OYTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:21','1900-01-01 00:00:00',1,0,1),(20512,'15459','Ozamis City','OZAMIS CITY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:22','1900-01-01 00:00:00',1,0,1),(20513,'27740','Ozark','OZARK',NULL,'','United States','',0,0,231,'2016-10-17 11:34:22','1900-01-01 00:00:00',1,0,1),(20514,'15699','Ozarow Mazowiecki','OZAROW MAZOWIECKI',NULL,'','Poland','',0,0,174,'2016-10-17 11:34:23','1900-01-01 00:00:00',1,0,1),(20515,'17319','Ozdere','OZDERE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:34:23','1900-01-01 00:00:00',1,0,1),(20516,'16302','Ozerki','OZERKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:34:23','1900-01-01 00:00:00',1,0,1),(20517,'30838','Ozona','OZONA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:23','1900-01-01 00:00:00',1,0,1),(20518,'40127','Ozone Park','OZONE PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:34:24','1900-01-01 00:00:00',1,0,1),(20519,'13332','Ozu','OZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:34:24','1900-01-01 00:00:00',1,0,1),(20520,'32321','Paama','PAAMA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:34:24','1900-01-01 00:00:00',1,0,1),(20521,'32489','Paarl','PAARL',NULL,'','South Africa','',0,0,195,'2016-10-17 11:34:24','1900-01-01 00:00:00',1,0,1),(20522,'20092','Paauilo','PAAUILO',NULL,'','United States','',0,0,231,'2016-10-17 11:34:25','1900-01-01 00:00:00',1,0,1),(20523,'19539','Pablo Keys','PABLO KEYS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:25','1900-01-01 00:00:00',1,0,1),(20524,'37914','Paceco','PACECO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:25','1900-01-01 00:00:00',1,0,1),(20525,'40881','Pachewar','PACHEWAR',NULL,'','India','',0,0,101,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20526,'39977','Pachmarhi','PACHMARHI',NULL,'','India','Pachmarhi',15,0,101,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20527,'13779','Pachuca','PACHUCA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20528,'39927','Paciano','PACIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20529,'27741','Pacific','PACIFIC',NULL,'','United States','',0,0,231,'2016-10-17 11:34:26','1900-01-01 00:00:00',1,0,1),(20530,'4070','Pacific Harbour','PACIFIC HARBOUR',NULL,'','Fiji','',0,0,74,'2016-10-17 11:34:28','1900-01-01 00:00:00',1,0,1),(20531,'42128','Pacific Palms','PACIFIC PALMS',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:29','1900-01-01 00:00:00',1,0,1),(20532,'18764','Pacifica','PACIFICA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:29','1900-01-01 00:00:00',1,0,1),(20533,'42947','Pacijan Island','PACIJAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:29','1900-01-01 00:00:00',1,0,1),(20534,'8676','Packington','PACKINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:29','1900-01-01 00:00:00',1,0,1),(20535,'31579','Packwood','PACKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20536,'15495','Paco','PACO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20537,'16008','Paco De Arcos','PACO DE ARCOS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20538,'16029','Pacos De Ferreira','PACOS DE FERREIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20539,'10372','Padang','PADANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20540,'3823','Padaste','PADASTE',NULL,'','Estonia','',0,0,69,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20541,'38730','Paddington','PADDINGTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:30','1900-01-01 00:00:00',1,0,1),(20542,'12246','Padenghe Sul Garda','PADENGHE SUL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20543,'552','Paderborn','PADERBORN',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20544,'11346','Paderno Del Grappa','PADERNO DEL GRAPPA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20545,'35504','Padova-cittadella','PADOVA-CITTADELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20546,'36179','Padron','PADRON',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:31','1900-01-01 00:00:00',1,0,1),(20547,'8677','Padstow','PADSTOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:32','1900-01-01 00:00:00',1,0,1),(20548,'39675','Padthaway','PADTHAWAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:32','1900-01-01 00:00:00',1,0,1),(20549,'33711','Paducah','PADUCAH',NULL,'','United States','',0,0,231,'2016-10-17 11:34:32','1900-01-01 00:00:00',1,0,1),(20550,'12247','Padula','PADULA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20551,'7250','Padworth','PADWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20552,'16165','Paea','PAEA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20553,'40483','Paese','PAESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20554,'12991','Paestum','PAESTUM',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:33','1900-01-01 00:00:00',1,0,1),(20555,'22381','Paewesin','PAEWESIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:34:34','1900-01-01 00:00:00',1,0,1),(20556,'43378','Pag','PAG',NULL,'','Croatia','',0,0,55,'2016-10-17 11:34:34','1900-01-01 00:00:00',1,0,1),(20557,'15557','Pagadian','PAGADIAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:34','1900-01-01 00:00:00',1,0,1),(20558,'12248','Paganica','PAGANICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:34','1900-01-01 00:00:00',1,0,1),(20559,'30385','Pageland','PAGELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:34:35','1900-01-01 00:00:00',1,0,1),(20560,'24929','Paget','PAGET',NULL,'','Bermuda','',0,0,24,'2016-10-17 11:34:35','1900-01-01 00:00:00',1,0,1),(20561,'26157','Pago Pago','PAGO PAGO',NULL,'','American Samoa','',0,0,4,'2016-10-17 11:34:35','1900-01-01 00:00:00',1,0,1),(20562,'33512','Pagosa Springs','PAGOSA SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:36','1900-01-01 00:00:00',1,0,1),(20563,'15516','Pagsanjan','PAGSANJAN',NULL,'','Philippines','Pagsanjan',0,0,173,'2016-10-17 11:34:36','1900-01-01 00:00:00',1,0,1),(20564,'42948','Pagudpud','PAGUDPUD',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:36','1900-01-01 00:00:00',1,0,1),(20565,'20093','Pahala','PAHALA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:36','1900-01-01 00:00:00',1,0,1),(20566,'38439','Pahalgam','PAHALGAM',NULL,'','India','Pahalgam',13,0,101,'2016-10-17 11:34:37','1900-01-01 00:00:00',1,0,1),(20567,'32122','Pahaska','PAHASKA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:37','1900-01-01 00:00:00',1,0,1),(20568,'20094','Pahoa','PAHOA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:37','1900-01-01 00:00:00',1,0,1),(20569,'32840','Pahrump','PAHRUMP',NULL,'','United States','',0,0,231,'2016-10-17 11:34:38','1900-01-01 00:00:00',1,0,1),(20570,'17047','Pai','PAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:34:38','1900-01-01 00:00:00',1,0,1),(20571,'39273','Paide','PAIDE',NULL,'','Estonia','',0,0,69,'2016-10-17 11:34:38','1900-01-01 00:00:00',1,0,1),(20572,'8678','Paignton','PAIGNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20573,'15233','Paihia','PAIHIA',NULL,'','New Zealand','Paihia',0,0,157,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20574,'42725','Pailin','PAILIN',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20575,'4023','Paimio','PAIMIO',NULL,'','Finland','',0,0,75,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20576,'4897','Paimpol','PAIMPOL',NULL,'','France','',0,0,76,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20577,'40690','Paimpont','PAIMPONT',NULL,'','France','',0,0,76,'2016-10-17 11:34:39','1900-01-01 00:00:00',1,0,1),(20578,'29489','Painesville','PAINESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:40','1900-01-01 00:00:00',1,0,1),(20579,'8679','Painswick','PAINSWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:40','1900-01-01 00:00:00',1,0,1),(20580,'33713','Paintsville','PAINTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:41','1900-01-01 00:00:00',1,0,1),(20581,'24100','Paipa','PAIPA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:34:41','1900-01-01 00:00:00',1,0,1),(20582,'8680','Paisley','PAISLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:34:41','1900-01-01 00:00:00',1,0,1),(20583,'26301','Paisley','PAISLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:34:41','1900-01-01 00:00:00',1,0,1),(20584,'14433','Paita','PAITA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20585,'849','Paja Blanca','PAJA BLANCA',NULL,'','Panama','',0,0,169,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20586,'16756','Pajala','PAJALA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20587,'3808','Pajara','PAJARA',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20588,'35813','Paju','PAJU',NULL,'','South Korea','',0,0,197,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20589,'17071','Pak Chong','PAK CHONG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20590,'38301','Paka','PAKA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20591,'43886','Pakem','PAKEM',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20592,'40787','Pakostane','PAKOSTANE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20593,'1776','Paksane','PAKSANE',NULL,'','Laos','',0,0,118,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20594,'13542','Pakse','PAKSE',NULL,'','Laos','',0,0,118,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20595,'15234','Pakuranga','PAKURANGA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:34:42','1900-01-01 00:00:00',1,0,1),(20596,'30840','Palacios','PALACIOS',NULL,'','United States','',0,0,231,'2016-10-17 11:34:43','1900-01-01 00:00:00',1,0,1),(20597,'41572','Palacios De La Valduerna','PALACIOS DE LA VALDUERNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:43','1900-01-01 00:00:00',1,0,1),(20598,'41944','Palafolls','PALAFOLLS',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:43','1900-01-01 00:00:00',1,0,1),(20599,'12250','Palagiano','PALAGIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20600,'12251','Palaia','PALAIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20601,'9711','Palaion Faliron','PALAION FALIRON',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20602,'43456','Palairos','PALAIROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20603,'4773','Palaiseau','PALAISEAU',NULL,'','France','',0,0,76,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20604,'10452','Palakkad','PALAKKAD',NULL,'','India','Palakkad',3,0,101,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20605,'3578','Palamos','PALAMOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20606,'10572','Palampur','PALAMPUR',NULL,'','India','Palampur',1,0,101,'2016-10-17 11:34:44','1900-01-01 00:00:00',1,0,1),(20607,'42272','Palandoken','PALANDOKEN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20608,'13635','Palanga','PALANGA',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20609,'10330','Palangkaraya','PALANGKARAYA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20610,'14140','Palanque','PALANQUE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20611,'2720','Palas De Rei','PALAS DE REI',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20612,'20702','Palatine','PALATINE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:45','1900-01-01 00:00:00',1,0,1),(20613,'19540','Palatka','PALATKA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:46','1900-01-01 00:00:00',1,0,1),(20614,'11085','Palau','PALAU',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:46','1900-01-01 00:00:00',1,0,1),(20615,'15565','Palau','PALAU',NULL,'','Palau','',0,0,167,'2016-10-17 11:34:46','1900-01-01 00:00:00',1,0,1),(20616,'5951','Palavas-les-flots','PALAVAS-LES-FLOTS',NULL,'','France','',0,0,76,'2016-10-17 11:34:46','1900-01-01 00:00:00',1,0,1),(20617,'15460','Palawan','PALAWAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20618,'11349','Palazzolo Sull\'oglio','PALAZZOLO SULL\'OGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20619,'12252','Palazzuolo Sul Senio','PALAZZUOLO SUL SENIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20620,'39536','Palekastro','PALEKASTRO',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20621,'10373','Palembang','PALEMBANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20622,'3470','Palencia','PALENCIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20623,'13937','Palenque','PALENQUE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:34:47','1900-01-01 00:00:00',1,0,1),(20624,'29027','Palenville','PALENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:48','1900-01-01 00:00:00',1,0,1),(20625,'40265','Paleohora','PALEOHORA',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:48','1900-01-01 00:00:00',1,0,1),(20626,'9560','Paleokastritsa','PALEOKASTRITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:48','1900-01-01 00:00:00',1,0,1),(20627,'44181','Paleoxari','PALEOXARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:48','1900-01-01 00:00:00',1,0,1),(20628,'35450','Palermo-alcamo','PALERMO-ALCAMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20629,'35494','Palermo-castellammar','PALERMO-CASTELLAMMAR',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20630,'35503','Palermo-cinisi','PALERMO-CINISI',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20631,'35668','Palermo-termini Imer','PALERMO-TERMINI IMER',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20632,'35675','Palermo-trabia','PALERMO-TRABIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:49','1900-01-01 00:00:00',1,0,1),(20633,'35690','Palermo-villagrazia','PALERMO-VILLAGRAZIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20634,'38981','Paleros','PALEROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20635,'42958','Palese','PALESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20636,'30841','Palestine','PALESTINE',NULL,'','United States','',0,0,231,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20637,'35598','Palestrina','PALESTRINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:50','1900-01-01 00:00:00',1,0,1),(20638,'973','Palhoca','PALHOCA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:34:51','1900-01-01 00:00:00',1,0,1),(20639,'39513','Pali','PALI',NULL,'','India','Pali',2,0,101,'2016-10-17 11:34:51','1900-01-01 00:00:00',1,0,1),(20640,'12253','Palinuro','PALINURO',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:51','1900-01-01 00:00:00',1,0,1),(20641,'42589','Palitana','PALITANA',NULL,'','India','Palitana',16,0,101,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20642,'35597','Pallanza','PALLANZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20643,'3579','Palleja','PALLEJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20644,'15153','Palliser Bay','PALLISER BAY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20645,'15491','Pallocan','PALLOCAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20646,'19541','Palm Bay','PALM BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:34:52','1900-01-01 00:00:00',1,0,1),(20647,'25832','Palm Beach','PALM BEACH',NULL,'','Aruba','',0,0,12,'2016-10-17 11:34:53','1900-01-01 00:00:00',1,0,1),(20648,'37077','Palm Island','PALM ISLAND',NULL,'','Saint Vincent And The Grenadines','',0,0,204,'2016-10-17 11:34:57','1900-01-01 00:00:00',1,0,1),(20649,'19552','Palma Sola','PALMA SOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20650,'39595','Palmadula','PALMADULA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20651,'38622','Palmanova','PALMANOVA',NULL,'','Italy','',0,0,107,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20652,'24240','Palmar','PALMAR',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20653,'14255','Palmar','PALMAR',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:34:59','1900-01-01 00:00:00',1,0,1),(20654,'24249','Palmares','PALMARES',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20655,'41112','Palmas','PALMAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20656,'18769','Palmdale','PALMDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20657,'3677','Palmeira','PALMEIRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20658,'16059','Palmela','PALMELA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:35:00','1900-01-01 00:00:00',1,0,1),(20659,'17730','Palmer','PALMER',NULL,'','United States','',0,0,231,'2016-10-17 11:35:01','1900-01-01 00:00:00',1,0,1),(20660,'10251','Palmerah','PALMERAH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20661,'10850','Palmerston','PALMERSTON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20662,'39530','Palmerston','PALMERSTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20663,'34597','Palmerston','PALMERSTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20664,'15235','Palmerston North','PALMERSTON NORTH',NULL,'','New Zealand','Palmerston North',0,0,157,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20665,'30114','Palmerton','PALMERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:35:02','1900-01-01 00:00:00',1,0,1),(20666,'19888','Palmetto','PALMETTO',NULL,'','United States','',0,0,231,'2016-10-17 11:35:03','1900-01-01 00:00:00',1,0,1),(20667,'24876','Palmetto Point','PALMETTO POINT',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:35:03','1900-01-01 00:00:00',1,0,1),(20668,'12707','Palmi','PALMI',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:04','1900-01-01 00:00:00',1,0,1),(20669,'30115','Palmyra','PALMYRA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:04','1900-01-01 00:00:00',1,0,1),(20670,'16932','Palmyra','PALMYRA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:35:04','1900-01-01 00:00:00',1,0,1),(20671,'40882','Palni','PALNI',NULL,'','India','',0,0,101,'2016-10-17 11:35:05','1900-01-01 00:00:00',1,0,1),(20672,'18770','Palo Alto','PALO ALTO',NULL,'','United States','',0,0,231,'2016-10-17 11:35:06','1900-01-01 00:00:00',1,0,1),(20673,'914','Palo Seco','PALO SECO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:06','1900-01-01 00:00:00',1,0,1),(20674,'40325','Palombara Sabina','PALOMBARA SABINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:06','1900-01-01 00:00:00',1,0,1),(20675,'20703','Palos Heights','PALOS HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:35:06','1900-01-01 00:00:00',1,0,1),(20676,'3580','Pals','PALS',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20677,'10364','Palu','PALU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20678,'15461','Pamalican Island','PAMALICAN ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20679,'34281','Pambula','PAMBULA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20680,'10303','Pamekasan','PAMEKASAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20681,'38279','Pamhagen','PAMHAGEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20682,'6121','Pamiers','PAMIERS',NULL,'','France','',0,0,76,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20683,'30842','Pampa','PAMPA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:07','1900-01-01 00:00:00',1,0,1),(20684,'32206','Pampatar','PAMPATAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20685,'3064','Pamplona','PAMPLONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20686,'24781','Pamporovo','PAMPOROVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20687,'17190','Pamukkale','PAMUKKALE',NULL,'','Turkey','Pamukkale',0,0,222,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20688,'39762','Panagitsa','PANAGITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20689,'9882','Panajachel','PANAJACHEL',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20690,'10706','Panaji','PANAJI',NULL,'','India','Panaji',11,0,101,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20691,'24221','Panama','PANAMA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:08','1900-01-01 00:00:00',1,0,1),(20692,'15342','Panama','PANAMA',NULL,'','Panama','',0,0,169,'2016-10-17 11:35:09','1900-01-01 00:00:00',1,0,1),(20693,'19554','Panama City','PANAMA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:35:09','1900-01-01 00:00:00',1,0,1),(20694,'11352','Panarea','PANAREA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20695,'38178','Pancevo','PANCEVO',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20696,'10573','Panchgani','PANCHGANI',NULL,'','India','Panchgani',5,0,101,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20697,'17408','Panchiao','PANCHIAO',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20698,'10453','Panchkula','PANCHKULA',NULL,'','India','',20,0,101,'2016-10-17 11:35:10','1900-01-01 00:00:00',1,0,1),(20699,'13953','Pancho Villa','PANCHO VILLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20700,'10454','Panchur','PANCHUR',NULL,'','India','',0,0,101,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20701,'10252','Pancoran','PANCORAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20702,'3471','Pancorbo','PANCORBO',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20703,'15505','Pandacan','PANDACAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20704,'44242','Pandan','PANDAN',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20705,'35370','Pandeglang','PANDEGLANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20706,'26303','Pandie Pandie','PANDIE PANDIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20707,'2724','Pandorado','PANDORADO',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:11','1900-01-01 00:00:00',1,0,1),(20708,'3100','Panes','PANES',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20709,'13642','Panevezys','PANEVEZYS',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20710,'43044','Pangandaran','PANGANDARAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20711,'8681','Pangbourne','PANGBOURNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20712,'23894','Panggezhuang','PANGGEZHUANG',NULL,'','China','',0,0,46,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20713,'10331','Pangkalanbuun','PANGKALANBUUN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20714,'10253','Pangkalpinang','PANGKALPINANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20715,'1779','Pangkor','PANGKOR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:35:12','1900-01-01 00:00:00',1,0,1),(20716,'15462','Panglao Island','PANGLAO ISLAND',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20717,'25802','Pangnirtung','PANGNIRTUNG',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20718,'43862','Pangot','PANGOT',NULL,'','India','',0,0,101,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20719,'23528','Panguipulli','PANGUIPULLI',NULL,'','Chile','',0,0,45,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20720,'33377','Panguitch','PANGUITCH',NULL,'','United States','',0,0,231,'2016-10-17 11:35:13','1900-01-01 00:00:00',1,0,1),(20721,'12747','Panicale','PANICALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20722,'10695','Panihati','PANIHATI',NULL,'','India','',0,0,101,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20723,'15318','Panjgur','PANJGUR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20724,'23617','Panjin','PANJIN',NULL,'','China','',0,0,46,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20725,'39386','Panker','PANKER',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20726,'2010','Pankow','PANKOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20727,'15236','Panmure','PANMURE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20728,'40107','Panna','PANNA',NULL,'','India','',0,0,101,'2016-10-17 11:35:14','1900-01-01 00:00:00',1,0,1),(20729,'9712','Panorama','PANORAMA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20730,'25501','Panorama','PANORAMA',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20731,'40545','Panormos (Crete)','PANORMOS (CRETE)',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20732,'42033','Pansea','PANSEA',NULL,'','Thailand','',0,0,215,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20733,'14319','Pantai Cenang','PANTAI CENANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20734,'42762','Pantanal','PANTANAL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:15','1900-01-01 00:00:00',1,0,1),(20735,'12254','Pantelleria','PANTELLERIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:16','1900-01-01 00:00:00',1,0,1),(20736,'19890','Panthersville','PANTHERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:16','1900-01-01 00:00:00',1,0,1),(20737,'2476','Panticosa','PANTICOSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:16','1900-01-01 00:00:00',1,0,1),(20738,'4774','Pantin','PANTIN',NULL,'','France','',0,0,76,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20739,'10574','Pantnagar','PANTNAGAR',NULL,'','India','Pantnagar',9,0,101,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20740,'41479','Panton','PANTON',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20741,'37247','Panvel','PANVEL',NULL,'','India','Panvel',5,0,101,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20742,'23618','Panyu','PANYU',NULL,'','China','',0,0,46,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20743,'12255','Panzano','PANZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20744,'12256','Paola','PAOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:17','1900-01-01 00:00:00',1,0,1),(20745,'21118','Paola','PAOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:18','1900-01-01 00:00:00',1,0,1),(20746,'33515','Paonia','PAONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:18','1900-01-01 00:00:00',1,0,1),(20747,'7251','Papa Westray','PAPA WESTRAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:19','1900-01-01 00:00:00',1,0,1),(20748,'20097','Papaaloa','PAPAALOA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:19','1900-01-01 00:00:00',1,0,1),(20749,'20098','Papaikou','PAPAIKOU',NULL,'','United States','',0,0,231,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20750,'41224','Papallacta','PAPALLACTA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20751,'13997','Papanoa','PAPANOA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20752,'15237','Papanui','PAPANUI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20753,'16166','Papao','PAPAO',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20754,'40640','Papar','PAPAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20755,'15154','Papatoetoe','PAPATOETOE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20756,'16167','Papeete','PAPEETE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20757,'42010','Papenburg','PAPENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20758,'14729','Papendrecht','PAPENDRECHT',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20759,'16135','Papenoo','PAPENOO',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:35:20','1900-01-01 00:00:00',1,0,1),(20760,'16168','Papetoai','PAPETOAI',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20761,'24272','Paphos','PAPHOS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20762,'28160','Papillion','PAPILLION',NULL,'','United States','',0,0,231,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20763,'44264','Para','PARA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20764,'15319','Para Chinar','PARA CHINAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20765,'38617','Parabiago','PARABIAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:21','1900-01-01 00:00:00',1,0,1),(20766,'40217','Parabita','PARABITA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20767,'26304','Paraburdoo','PARABURDOO',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20768,'41296','Paracas','PARACAS',NULL,'','Peru','',0,0,172,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20769,'42706','Parachilna','PARACHILNA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20770,'33516','Parachute','PARACHUTE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20771,'10455','Paradeep','PARADEEP',NULL,'','India','',0,0,101,'2016-10-17 11:35:22','1900-01-01 00:00:00',1,0,1),(20772,'32841','Paradise','PARADISE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:23','1900-01-01 00:00:00',1,0,1),(20773,'43662','Paradise Bay','PARADISE BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:25','1900-01-01 00:00:00',1,0,1),(20774,'24838','Paradise Island','PARADISE ISLAND',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:35:25','1900-01-01 00:00:00',1,0,1),(20775,'25670','Paradise River','PARADISE RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:25','1900-01-01 00:00:00',1,0,1),(20776,'4438','Paradiski','PARADISKI',NULL,'','France','',0,0,76,'2016-10-17 11:35:26','1900-01-01 00:00:00',1,0,1),(20777,'6504','Paradou','PARADOU',NULL,'','France','',0,0,76,'2016-10-17 11:35:26','1900-01-01 00:00:00',1,0,1),(20778,'18067','Paragould','PARAGOULD',NULL,'','United States','',0,0,231,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20779,'40883','Paragpur','PARAGPUR',NULL,'','India','',0,0,101,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20780,'38321','Paraiso','PARAISO',NULL,'','Panama','',0,0,169,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20781,'24222','Paraiso','PARAISO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20782,'39541','Paraiso','PARAISO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20783,'9561','Parakila,lesvos','PARAKILA,LESVOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20784,'24275','Paralimni','PARALIMNI',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20785,'35284','Paralio Astros','PARALIO ASTROS',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20786,'16584','Paramaribo','PARAMARIBO',NULL,'','Suriname','',0,0,206,'2016-10-17 11:35:27','1900-01-01 00:00:00',1,0,1),(20787,'28367','Paramus','PARAMUS',NULL,'','United States','',0,0,231,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20788,'26118','Parana','PARANA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20789,'39539','Paranagua','PARANAGUA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20790,'41988','Paranapanema','PARANAPANEMA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20791,'38947','Parañaque','PARAÑAQUE',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20792,'9562','Paranga','PARANGA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20793,'39755','Parap','PARAP',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20794,'15077','Paraparaumu','PARAPARAUMU',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20795,'10254','Parapat','PARAPAT',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:28','1900-01-01 00:00:00',1,0,1),(20796,'16554','Parasi','PARASI',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20797,'12257','Paratico','PARATICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20798,'35956','Paraty','PARATY',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20799,'41300','Parauta','PARAUTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20800,'10575','Paravur','PARAVUR',NULL,'','India','',0,0,101,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20801,'41363','Paray Le Monial','PARAY LE MONIAL',NULL,'','France','',0,0,76,'2016-10-17 11:35:29','1900-01-01 00:00:00',1,0,1),(20802,'5483','Paray-le-monial','PARAY-LE-MONIAL',NULL,'','France','',0,0,76,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20803,'5671','Parcay-meslay','PARCAY-MESLAY',NULL,'','France','',0,0,76,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20804,'15939','Parchal','PARCHAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20805,'1841','Parchim','PARCHIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20806,'38912','Parcines','PARCINES',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:30','1900-01-01 00:00:00',1,0,1),(20807,'24350','Pardubice','PARDUBICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20808,'16030','Paredes','PAREDES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20809,'38581','Parent','PARENT',NULL,'','France','',0,0,76,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20810,'4439','Parentis En Born','PARENTIS EN BORN',NULL,'','France','',0,0,76,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20811,'41362','Parentis-en-born','PARENTIS-EN-BORN',NULL,'','France','',0,0,76,'2016-10-17 11:35:31','1900-01-01 00:00:00',1,0,1),(20812,'43457','Parga','PARGA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20813,'4024','Pargas','PARGAS',NULL,'','Finland','',0,0,75,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20814,'12258','Parghelia','PARGHELIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20815,'16443','Pargolovo','PARGOLOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20816,'12259','Pariana','PARIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20817,'5576','Parigne','PARIGNE',NULL,'','France','',0,0,76,'2016-10-17 11:35:32','1900-01-01 00:00:00',1,0,1),(20818,'5413','Parigny','PARIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20819,'9563','Parikia','PARIKIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20820,'24991','Parintins','PARINTINS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20821,'11354','Parioli - Normentano','PARIOLI - NORMENTANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20822,'4775','Paris','PARIS',NULL,'','France','Paris',0,0,76,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20823,'33234','Paris','PARIS',NULL,'','United States','',0,0,231,'2016-10-17 11:35:33','1900-01-01 00:00:00',1,0,1),(20824,'29727','Parkdale','PARKDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:39','1900-01-01 00:00:00',1,0,1),(20825,'18180','Parker','PARKER',NULL,'','United States','',0,0,231,'2016-10-17 11:35:40','1900-01-01 00:00:00',1,0,1),(20826,'33716','Parkers Lake','PARKERS LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:41','1900-01-01 00:00:00',1,0,1),(20827,'32025','Parkersburg','PARKERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:35:41','1900-01-01 00:00:00',1,0,1),(20828,'34282','Parkes','PARKES',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:42','1900-01-01 00:00:00',1,0,1),(20829,'8682','Parkgate','PARKGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:42','1900-01-01 00:00:00',1,0,1),(20830,'32589','Parkhurst','PARKHURST',NULL,'','South Africa','',0,0,195,'2016-10-17 11:35:42','1900-01-01 00:00:00',1,0,1),(20831,'33967','Parkland','PARKLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:35:42','1900-01-01 00:00:00',1,0,1),(20832,'39690','Parklea','PARKLEA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:43','1900-01-01 00:00:00',1,0,1),(20833,'35402','Parknasilla','PARKNASILLA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:35:43','1900-01-01 00:00:00',1,0,1),(20834,'18772','Parkside','PARKSIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:43','1900-01-01 00:00:00',1,0,1),(20835,'29030','Parksville','PARKSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:43','1900-01-01 00:00:00',1,0,1),(20836,'25502','Parksville','PARKSVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:44','1900-01-01 00:00:00',1,0,1),(20837,'32590','Parktown','PARKTOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:35:44','1900-01-01 00:00:00',1,0,1),(20838,'27744','Parkville','PARKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:44','1900-01-01 00:00:00',1,0,1),(20839,'26927','Parkville','PARKVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:45','1900-01-01 00:00:00',1,0,1),(20840,'2972','Parla','PARLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:45','1900-01-01 00:00:00',1,0,1),(20841,'12728','Parma','PARMA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:45','1900-01-01 00:00:00',1,0,1),(20842,'29490','Parma','PARMA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:45','1900-01-01 00:00:00',1,0,1),(20843,'41755','Parnaiba','PARNAIBA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20844,'42490','Parnassos - Amfiklia','PARNASSOS - AMFIKLIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20845,'26305','Parndana','PARNDANA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20846,'27066','Parndorf','PARNDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20847,'15238','Parnell','PARNELL',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20848,'3830','Parnu','PARNU',NULL,'','Estonia','',0,0,69,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20849,'25255','Paro','PARO',NULL,'','Bhutan','Paro',0,0,25,'2016-10-17 11:35:46','1900-01-01 00:00:00',1,0,1),(20850,'35225','Paros-drios','PAROS-DRIOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20851,'35270','Paros-naousa','PAROS-NAOUSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20852,'35277','Paros-parika','PAROS-PARIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20853,'32490','Parow','PAROW',NULL,'','South Africa','',0,0,195,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20854,'33380','Parowan','PAROWAN',NULL,'','United States','',0,0,231,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20855,'8683','Parracombe','PARRACOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:47','1900-01-01 00:00:00',1,0,1),(20856,'43579','Parramata','PARRAMATA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20857,'34283','Parramatta','PARRAMATTA',NULL,'','Australia','',0,0,13,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20858,'39151','Parrano','PARRANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20859,'13962','Parras De La Fuente','PARRAS DE LA FUENTE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20860,'30386','Parris Island','PARRIS ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20861,'24155','Parrita','PARRITA',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:35:48','1900-01-01 00:00:00',1,0,1),(20862,'16936','Parrot Cay','PARROT CAY',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20863,'33235','Parrottsville','PARROTTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20864,'34599','Parry Sound','PARRY SOUND',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20865,'293','Parsberg','PARSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20866,'42905','Parsdorf','PARSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:49','1900-01-01 00:00:00',1,0,1),(20867,'33518','Parshall','PARSHALL',NULL,'','United States','',0,0,231,'2016-10-17 11:35:50','1900-01-01 00:00:00',1,0,1),(20868,'28369','Parsippany','PARSIPPANY',NULL,'','United States','',0,0,231,'2016-10-17 11:35:50','1900-01-01 00:00:00',1,0,1),(20869,'21120','Parsons','PARSONS',NULL,'','United States','',0,0,231,'2016-10-17 11:35:51','1900-01-01 00:00:00',1,0,1),(20870,'6357','Parthenay','PARTHENAY',NULL,'','France','',0,0,76,'2016-10-17 11:35:51','1900-01-01 00:00:00',1,0,1),(20871,'40448','Parthenonas','PARTHENONAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:35:52','1900-01-01 00:00:00',1,0,1),(20872,'37598','Parwanoo','PARWANOO',NULL,'','India','Parwanoo',1,0,101,'2016-10-17 11:35:52','1900-01-01 00:00:00',1,0,1),(20873,'25870','Pas De La Casa','PAS DE LA CASA',NULL,'','Andorra','',0,0,5,'2016-10-17 11:35:52','1900-01-01 00:00:00',1,0,1),(20874,'30848','Pasadena','PASADENA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:52','1900-01-01 00:00:00',1,0,1),(20875,'2725','Pasaron De La Vera','PASARON DE LA VERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:53','1900-01-01 00:00:00',1,0,1),(20876,'15497','Pasay','PASAY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:53','1900-01-01 00:00:00',1,0,1),(20877,'27898','Pascagoula','PASCAGOULA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:53','1900-01-01 00:00:00',1,0,1),(20878,'31581','Pasco','PASCO',NULL,'','United States','',0,0,231,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20879,'4441','Pas-de-calais','PAS-DE-CALAIS',NULL,'','France','',0,0,76,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20880,'1842','Pasewalk','PASEWALK',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20881,'38462','Pasiano Di Pordenone','PASIANO DI PORDENONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20882,'15511','Pasig','PASIG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:35:54','1900-01-01 00:00:00',1,0,1),(20883,'295','Pasing','PASING',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:55','1900-01-01 00:00:00',1,0,1),(20884,'15320','Pasni','PASNI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:35:55','1900-01-01 00:00:00',1,0,1),(20885,'26111','Paso De La Patria','PASO DE LA PATRIA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:35:55','1900-01-01 00:00:00',1,0,1),(20886,'18774','Paso Robles','PASO ROBLES',NULL,'','United States','',0,0,231,'2016-10-17 11:35:55','1900-01-01 00:00:00',1,0,1),(20887,'41135','Paspebiac','PASPEBIAC',NULL,'','Canada','',0,0,39,'2016-10-17 11:35:56','1900-01-01 00:00:00',1,0,1),(20888,'28371','Passaic','PASSAIC',NULL,'','United States','',0,0,231,'2016-10-17 11:35:56','1900-01-01 00:00:00',1,0,1),(20889,'296','Passau','PASSAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20890,'12260','Passignano Sul Trasimeno','PASSIGNANO SUL TRASIMENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20891,'25161','Passo Fundo','PASSO FUNDO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20892,'12261','Pastena','PASTENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20893,'24116','Pasto','PASTO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20894,'10304','Pasuruan','PASURUAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20895,'15647','Paszkowka','PASZKOWKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:35:57','1900-01-01 00:00:00',1,0,1),(20896,'18181','Patagonia','PATAGONIA',NULL,'','United States','',0,0,231,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20897,'15059','Patan','PATAN',NULL,'','Nepal','Patan',0,0,153,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20898,'17222','Patara','PATARA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20899,'42587','Pataudi','PATAUDI',NULL,'','India','',0,0,101,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20900,'29031','Patchogue','PATCHOGUE',NULL,'','United States','',0,0,231,'2016-10-17 11:35:58','1900-01-01 00:00:00',1,0,1),(20901,'8684','Patchway','PATCHWAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:59','1900-01-01 00:00:00',1,0,1),(20902,'38380','Pateley Bridge','PATELEY BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:35:59','1900-01-01 00:00:00',1,0,1),(20903,'3772','Paterna','PATERNA',NULL,'','Spain','',0,0,199,'2016-10-17 11:35:59','1900-01-01 00:00:00',1,0,1),(20904,'38568','Paternoster','PATERNOSTER',NULL,'','South Africa','',0,0,195,'2016-10-17 11:35:59','1900-01-01 00:00:00',1,0,1),(20905,'31582','Pateros','PATEROS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20906,'28372','Paterson','PATERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20907,'32491','Paterson','PATERSON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20908,'14500','Paterswolde','PATERSWOLDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20909,'40826','Pathankot','PATHANKOT',NULL,'','India','Pathankot ',19,0,101,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20910,'42061','Pathein','PATHEIN',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:36:00','1900-01-01 00:00:00',1,0,1),(20912,'43339','Pathumthani','PATHUMTHANI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20913,'38275','Pathumwan','PATHUMWAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20914,'10666','Patiala','PATIALA',NULL,'','India','Patiala',19,0,101,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20915,'15760','Patillas','PATILLAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20916,'16169','Patio','PATIO',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20917,'9825','Patmos','PATMOS',NULL,'','Greece','Patmos',0,0,86,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20918,'10576','Patna','PATNA',NULL,'','India','Patna',24,0,101,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20920,'43863','Patnitop','PATNITOP',NULL,'','India','Patnitop',13,0,101,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20921,'9566','Patras','PATRAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20922,'10990','Patreksfjordur','PATREKSFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:36:01','1900-01-01 00:00:00',1,0,1),(20923,'4442','Patrimonio','PATRIMONIO',NULL,'','France','',0,0,76,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20924,'17100','Pattani','PATTANI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20925,'17011','Pattaya','PATTAYA',NULL,'','Thailand','Pattaya',0,0,215,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20926,'37672','Pattensen','PATTENSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20927,'21244','Patterson','PATTERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:02','1900-01-01 00:00:00',1,0,1),(20928,'12262','Patti','PATTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:03','1900-01-01 00:00:00',1,0,1),(20929,'8685','Pattingham','PATTINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:03','1900-01-01 00:00:00',1,0,1),(20930,'39793','Paty','PATY',NULL,'','Hungary','',0,0,99,'2016-10-17 11:36:03','1900-01-01 00:00:00',1,0,1),(20931,'13909','Patzcuaro','PATZCUARO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:36:03','1900-01-01 00:00:00',1,0,1),(20932,'15239','Pauanui','PAUANUI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20933,'15394','Paucartambo','PAUCARTAMBO',NULL,'','Peru','',0,0,172,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20934,'36264','Pau-gan','PAU-GAN',NULL,'','France','',0,0,76,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20935,'5233','Pauillac','PAUILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20936,'15956','Paul Do Mar','PAUL DO MAR',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20937,'25776','Paulatuk','PAULATUK',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20938,'25212','Paulinia','PAULINIA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:36:04','1900-01-01 00:00:00',1,0,1),(20939,'36279','Pau-lons','PAU-LONS',NULL,'','France','',0,0,76,'2016-10-17 11:36:05','1900-01-01 00:00:00',1,0,1),(20940,'32531','Paulpietersburg','PAULPIETERSBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:36:05','1900-01-01 00:00:00',1,0,1),(20941,'32943','Pauls Valley','PAULS VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:05','1900-01-01 00:00:00',1,0,1),(20942,'20099','Pauwalu','PAUWALU',NULL,'','United States','',0,0,231,'2016-10-17 11:36:06','1900-01-01 00:00:00',1,0,1),(20943,'20100','Pauwela','PAUWELA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:06','1900-01-01 00:00:00',1,0,1),(20944,'13438','Pavlodar','PAVLODAR',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:36:07','1900-01-01 00:00:00',1,0,1),(20945,'41693','Pavone Canavese','PAVONE CANAVESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:07','1900-01-01 00:00:00',1,0,1),(20946,'24178','Pavones','PAVONES',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:36:07','1900-01-01 00:00:00',1,0,1),(20947,'22202','Paw Paw','PAW PAW',NULL,'','United States','',0,0,231,'2016-10-17 11:36:07','1900-01-01 00:00:00',1,0,1),(20948,'19139','Pawcatuck','PAWCATUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:36:08','1900-01-01 00:00:00',1,0,1),(20949,'30387','Pawleys Island','PAWLEYS ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:36:08','1900-01-01 00:00:00',1,0,1),(20950,'30261','Pawtucket','PAWTUCKET',NULL,'','United States','',0,0,231,'2016-10-17 11:36:09','1900-01-01 00:00:00',1,0,1),(20951,'42489','Paxi','PAXI',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:09','1900-01-01 00:00:00',1,0,1),(20952,'30117','Paxinos','PAXINOS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:09','1900-01-01 00:00:00',1,0,1),(20953,'28161','Paxton','PAXTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:10','1900-01-01 00:00:00',1,0,1),(20954,'10136','Payangan','PAYANGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:10','1900-01-01 00:00:00',1,0,1),(20955,'27111','Payerbach','PAYERBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:10','1900-01-01 00:00:00',1,0,1),(20956,'43780','Paynes Bay','PAYNES BAY',NULL,'','Barbados','',0,0,19,'2016-10-17 11:36:11','1900-01-01 00:00:00',1,0,1),(20957,'18777','Paynes Creek','PAYNES CREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:36:11','1900-01-01 00:00:00',1,0,1),(20958,'27485','Paynesville','PAYNESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:11','1900-01-01 00:00:00',1,0,1),(20959,'41361','Payrac','PAYRAC',NULL,'','France','',0,0,76,'2016-10-17 11:36:12','1900-01-01 00:00:00',1,0,1),(20960,'17537','Paysandu','PAYSANDU',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:36:12','1900-01-01 00:00:00',1,0,1),(20961,'33381','Payson','PAYSON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:12','1900-01-01 00:00:00',1,0,1),(20962,'24782','Pazardzik','PAZARDZIK',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:36:13','1900-01-01 00:00:00',1,0,1),(20963,'24486','Paznaun','PAZNAUN',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:13','1900-01-01 00:00:00',1,0,1),(20964,'21494','Peabody','PEABODY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:13','1900-01-01 00:00:00',1,0,1),(20965,'25344','Peace River','PEACE RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:13','1900-01-01 00:00:00',1,0,1),(20966,'18183','Peach Springs','PEACH SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:14','1900-01-01 00:00:00',1,0,1),(20967,'25503','Peachland','PEACHLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:14','1900-01-01 00:00:00',1,0,1),(20968,'19891','Peachtree City','PEACHTREE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:14','1900-01-01 00:00:00',1,0,1),(20969,'7253','Peak District','PEAK DISTRICT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:15','1900-01-01 00:00:00',1,0,1),(20970,'18184','Pearce','PEARCE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:15','1900-01-01 00:00:00',1,0,1),(20971,'40754','Pearisburg','PEARISBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:36:15','1900-01-01 00:00:00',1,0,1),(20972,'27900','Pearl','PEARL',NULL,'','United States','',0,0,231,'2016-10-17 11:36:16','1900-01-01 00:00:00',1,0,1),(20973,'847','Pearl Islands','PEARL ISLANDS',NULL,'','Panama','',0,0,169,'2016-10-17 11:36:17','1900-01-01 00:00:00',1,0,1),(20974,'30849','Pearland','PEARLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:36:18','1900-01-01 00:00:00',1,0,1),(20975,'27901','Pearlington','PEARLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:18','1900-01-01 00:00:00',1,0,1),(20976,'30850','Pearsall','PEARSALL',NULL,'','United States','',0,0,231,'2016-10-17 11:36:19','1900-01-01 00:00:00',1,0,1),(20977,'7254','Peaslake','PEASLAKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:19','1900-01-01 00:00:00',1,0,1),(20978,'8686','Peasmarsh','PEASMARSH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:19','1900-01-01 00:00:00',1,0,1),(20979,'34601','Peawanuck','PEAWANUCK',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:19','1900-01-01 00:00:00',1,0,1),(20980,'18778','Pebble Beach','PEBBLE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:36:20','1900-01-01 00:00:00',1,0,1),(20981,'10255','Pecatu','PECATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:20','1900-01-01 00:00:00',1,0,1),(20982,'41684','Peccioli','PECCIOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:20','1900-01-01 00:00:00',1,0,1),(20983,'12263','Pecetto Torinese','PECETTO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:20','1900-01-01 00:00:00',1,0,1),(20984,'15940','Pechao','PECHAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:21','1900-01-01 00:00:00',1,0,1),(20985,'16463','Pechki','PECHKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:36:21','1900-01-01 00:00:00',1,0,1),(20986,'29033','Peconic','PECONIC',NULL,'','United States','',0,0,231,'2016-10-17 11:36:21','1900-01-01 00:00:00',1,0,1),(20987,'30851','Pecos','PECOS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:21','1900-01-01 00:00:00',1,0,1),(20988,'10097','Pecs','PECS',NULL,'','Hungary','',0,0,99,'2016-10-17 11:36:22','1900-01-01 00:00:00',1,0,1),(20989,'27745','Peculiar','PECULIAR',NULL,'','United States','',0,0,231,'2016-10-17 11:36:22','1900-01-01 00:00:00',1,0,1),(20990,'40179','Pedace','PEDACE',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20991,'12264','Pedara','PEDARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20992,'39413','Pedasi','PEDASI',NULL,'','Panama','',0,0,169,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20993,'12265','Pedemonte','PEDEMONTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20994,'24144','Pedra Badejo','PEDRA BADEJO',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:36:23','1900-01-01 00:00:00',1,0,1),(20995,'12266','Pedraces','PEDRACES',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(20996,'3773','Pedralba','PEDRALBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(20997,'3472','Pedraza','PEDRAZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(20998,'17732','Pedro Bay','PEDRO BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(20999,'44286','Pedro Gonzalez','PEDRO GONZALEZ',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(21000,'15898','Pedrogao Pequeno','PEDROGAO PEQUENO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(21001,'32207','Pedrogonzalez','PEDROGONZALEZ',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:36:24','1900-01-01 00:00:00',1,0,1),(21002,'39659','Pedrola','PEDROLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21003,'1325','Peebles','PEEBLES',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21004,'29034','Peekskill','PEEKSKILL',NULL,'','United States','',0,0,231,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21005,'39036','Peer','PEER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21006,'43864','Peermade-','PEERMADE-',NULL,'','India','',0,0,101,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21007,'43458','Pefkos','PEFKOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21008,'25739','Peggys Cove','PEGGYS COVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:25','1900-01-01 00:00:00',1,0,1),(21009,'297','Pegnitz','PEGNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21010,'41648','Pego','PEGO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21011,'3774','Pego','PEGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21012,'39436','Pegognaga','PEGOGNAGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21013,'2726','Peguera Del Madrona','PEGUERA DEL MADRONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21014,'22817','Peidmont - Saint-sauveur-des-monts','PEIDMONT - SAINT-SAUVEUR-DES-MONTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21015,'37422','Peigney','PEIGNEY',NULL,'','France','',0,0,76,'2016-10-17 11:36:26','1900-01-01 00:00:00',1,0,1),(21016,'37370','Peillon','PEILLON',NULL,'','France','',0,0,76,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21017,'17409','Peinan','PEINAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21018,'27268','Peine','PEINE',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21019,'12267','Peio','PEIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21020,'4443','Peisey-nancroix','PEISEY-NANCROIX',NULL,'','France','',0,0,76,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21021,'27269','Peissen','PEISSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:27','1900-01-01 00:00:00',1,0,1),(21022,'38862','Peiting','PEITING',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21023,'17410','Peitou','PEITOU',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21024,'43887','Pejarakan','PEJARAKAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21025,'42799','Pekalongan','PEKALONGAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21026,'10357','Pekanbaru','PEKANBARU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21027,'20708','Pekin','PEKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21028,'43888','Pekutatan','PEKUTATAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:28','1900-01-01 00:00:00',1,0,1),(21029,'37512','Pelabravo','PELABRAVO',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21030,'14358','Pelabuhan Kelang','PELABUHAN KELANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21031,'42342','Pelabuhan Ratu','PELABUHAN RATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21032,'10290','Pelabuhanratu','PELABUHANRATU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21033,'35600','Pelago','PELAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21034,'1778','Pelana-weligama','PELANA-WELIGAMA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21035,'23488','Pelequen','PELEQUEN',NULL,'','Chile','',0,0,45,'2016-10-17 11:36:29','1900-01-01 00:00:00',1,0,1),(21036,'17936','Pelham','PELHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:36:30','1900-01-01 00:00:00',1,0,1),(21037,'17733','Pelican','PELICAN',NULL,'','United States','',0,0,231,'2016-10-17 11:36:30','1900-01-01 00:00:00',1,0,1),(21038,'26306','Pelican Waters','PELICAN WATERS',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:31','1900-01-01 00:00:00',1,0,1),(21039,'3280','Peligros','PELIGROS',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:31','1900-01-01 00:00:00',1,0,1),(21040,'9568','Pelion','PELION',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:31','1900-01-01 00:00:00',1,0,1),(21041,'35307','Pelion-visitsa','PELION-VISITSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:31','1900-01-01 00:00:00',1,0,1),(21042,'20272','Pella','PELLA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:32','1900-01-01 00:00:00',1,0,1),(21043,'39156','Pelling','PELLING',NULL,'','India','Pelling',25,0,101,'2016-10-17 11:36:32','1900-01-01 00:00:00',1,0,1),(21044,'11357','Pellio Intelvi','PELLIO INTELVI',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:32','1900-01-01 00:00:00',1,0,1),(21045,'22203','Pellston','PELLSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21046,'25803','Pelly Bay','PELLY BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21047,'1327','Peloponesse','PELOPONESSE',NULL,'','GREECE','',0,0,86,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21048,'43382','Peloponnese','PELOPONNESE',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21049,'25162','Pelotas','PELOTAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21050,'4444','Pelvoux','PELVOUX',NULL,'','France','',0,0,76,'2016-10-17 11:36:33','1900-01-01 00:00:00',1,0,1),(21051,'8688','Pelynt','PELYNT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21052,'14219','Pemba','PEMBA',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21053,'17452','Pemba Island','PEMBA ISLAND',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21054,'25504','Pemberton','PEMBERTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21055,'28373','Pemberton','PEMBERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21056,'26613','Pemberton','PEMBERTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:34','1900-01-01 00:00:00',1,0,1),(21057,'31851','Pembine','PEMBINE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:35','1900-01-01 00:00:00',1,0,1),(21058,'24930','Pembroke','PEMBROKE',NULL,'','Bermuda','',0,0,24,'2016-10-17 11:36:35','1900-01-01 00:00:00',1,0,1),(21059,'21495','Pembroke','PEMBROKE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:35','1900-01-01 00:00:00',1,0,1),(21060,'34602','Pembroke','PEMBROKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:36','1900-01-01 00:00:00',1,0,1),(21061,'8689','Pembroke','PEMBROKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:37','1900-01-01 00:00:00',1,0,1),(21062,'7255','Pembrokeshire Coast National Park','PEMBROKESHIRE COAST NATIONAL PARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21063,'40885','Pemeyangste','PEMEYANGSTE',NULL,'','India','',0,0,101,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21064,'10192','Pemuteran','PEMUTERAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21065,'37325','Penacaballera','PENACABALLERA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21066,'15906','Penacova','PENACOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21067,'41528','Penafiel','PENAFIEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21068,'16031','Penafiel','PENAFIEL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:38','1900-01-01 00:00:00',1,0,1),(21069,'2727','Peñafiel','PEÑAFIEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21070,'8691','Penally','PENALLY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21071,'42776','Penalva Do Castelo','PENALVA DO CASTELO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21072,'3072','Peñamellera Baja','PEÑAMELLERA BAJA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21073,'42846','Penampang','PENAMPANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21074,'14321','Penang','PENANG',NULL,'','Malaysia','Penang',0,0,132,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21075,'8692','Penarth','PENARTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:39','1900-01-01 00:00:00',1,0,1),(21076,'32027','Pence Springs','PENCE SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:36:40','1900-01-01 00:00:00',1,0,1),(21077,'40827','Pench','PENCH',NULL,'','India','',0,0,101,'2016-10-17 11:36:40','1900-01-01 00:00:00',1,0,1),(21078,'8693','Pencoed','PENCOED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:40','1900-01-01 00:00:00',1,0,1),(21079,'8694','Pencraig','PENCRAIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:40','1900-01-01 00:00:00',1,0,1),(21080,'17310','Pendik','PENDIK',NULL,'','Turkey','',0,0,222,'2016-10-17 11:36:41','1900-01-01 00:00:00',1,0,1),(21081,'8695','Pendlebury','PENDLEBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:41','1900-01-01 00:00:00',1,0,1),(21082,'30388','Pendleton','PENDLETON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:41','1900-01-01 00:00:00',1,0,1),(21083,'37928','Penestin','PENESTIN',NULL,'','France','',0,0,76,'2016-10-17 11:36:42','1900-01-01 00:00:00',1,0,1),(21084,'29036','Penfield','PENFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21085,'9935','Peng Chau','PENG CHAU',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21086,'25186','Penha','PENHA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21087,'41998','Penia Di Canazei','PENIA DI CANAZEI',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21088,'15982','Peniche','PENICHE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21089,'8696','Penicuik','PENICUIK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21090,'15941','Penina','PENINA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:36:43','1900-01-01 00:00:00',1,0,1),(21091,'2728','Peniscola','PENISCOLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:44','1900-01-01 00:00:00',1,0,1),(21092,'8697','Penkridge','PENKRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:44','1900-01-01 00:00:00',1,0,1),(21093,'12268','Penna In Teverina','PENNA IN TEVERINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21094,'34284','Pennant Hills','PENNANT HILLS',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21095,'26465','Penneshaw','PENNESHAW',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21096,'28374','Pennington','PENNINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21097,'32413','Pennington','PENNINGTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:36:45','1900-01-01 00:00:00',1,0,1),(21098,'28376','Pennsauken','PENNSAUKEN',NULL,'','United States','',0,0,231,'2016-10-17 11:36:46','1900-01-01 00:00:00',1,0,1),(21099,'32028','Pennsboro','PENNSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21100,'28377','Pennsville','PENNSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21101,'26466','Penola','PENOLA',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21102,'15335','Penonome','PENONOME',NULL,'','Panama','',0,0,169,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21103,'24072','Penrhyn Island','PENRHYN ISLAND',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:36:47','1900-01-01 00:00:00',1,0,1),(21104,'8698','Penrith','PENRITH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:48','1900-01-01 00:00:00',1,0,1),(21105,'34285','Penrith','PENRITH',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:48','1900-01-01 00:00:00',1,0,1),(21106,'34286','Penrose','PENROSE',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:48','1900-01-01 00:00:00',1,0,1),(21107,'19558','Pensacola','PENSACOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:48','1900-01-01 00:00:00',1,0,1),(21108,'8699','Pensford','PENSFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:49','1900-01-01 00:00:00',1,0,1),(21109,'7256','Pensilva','PENSILVA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:49','1900-01-01 00:00:00',1,0,1),(21110,'25506','Penticton','PENTICTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:50','1900-01-01 00:00:00',1,0,1),(21111,'8700','Pentraeth','PENTRAETH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:50','1900-01-01 00:00:00',1,0,1),(21112,'8701','Pentre-foelas','PENTRE-FOELAS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:50','1900-01-01 00:00:00',1,0,1),(21113,'5577','Pentrez','PENTREZ',NULL,'','France','',0,0,76,'2016-10-17 11:36:50','1900-01-01 00:00:00',1,0,1),(21114,'22204','Pentwater','PENTWATER',NULL,'','United States','',0,0,231,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21115,'16416','Penza','PENZA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21116,'8702','Penzance','PENZANCE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21117,'42445','Penzberg','PENZBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21118,'27016','Penzing','PENZING',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21119,'20709','Peoria','PEORIA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:51','1900-01-01 00:00:00',1,0,1),(21120,'20274','Peosta','PEOSTA',NULL,'','United States','',0,0,231,'2016-10-17 11:36:53','1900-01-01 00:00:00',1,0,1),(21121,'20102','Pepeekeo','PEPEEKEO',NULL,'','United States','',0,0,231,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21122,'24678','Pepinster','PEPINSTER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21123,'40714','Pepowo','PEPOWO',NULL,'','Poland','',0,0,174,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21124,'29492','Pepper Pike','PEPPER PIKE',NULL,'','United States','',0,0,231,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21125,'43661','Peppers Palm','PEPPERS PALM',NULL,'','Australia','',0,0,13,'2016-10-17 11:36:54','1900-01-01 00:00:00',1,0,1),(21126,'27486','Pequot Lakes','PEQUOT LAKES',NULL,'','United States','',0,0,231,'2016-10-17 11:36:55','1900-01-01 00:00:00',1,0,1),(21127,'2477','Peralada','PERALADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:55','1900-01-01 00:00:00',1,0,1),(21128,'22818','Perce','PERCE',NULL,'','Canada','',0,0,39,'2016-10-17 11:36:55','1900-01-01 00:00:00',1,0,1),(21129,'39309','Perchtoldsdorf','PERCHTOLDSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:56','1900-01-01 00:00:00',1,0,1),(21130,'20275','Percival','PERCIVAL',NULL,'','United States','',0,0,231,'2016-10-17 11:36:56','1900-01-01 00:00:00',1,0,1),(21131,'19561','Perdido Bay','PERDIDO BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:36:56','1900-01-01 00:00:00',1,0,1),(21132,'9767','Perdika','PERDIKA',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21133,'38214','Pere','PERE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21134,'24122','Pereira','PEREIRA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21135,'37479','Perelada','PERELADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21136,'42431','Perello','PERELLO',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21137,'12269','Peretola','PERETOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:57','1900-01-01 00:00:00',1,0,1),(21138,'38723','Pereybere','PEREYBERE',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:36:58','1900-01-01 00:00:00',1,0,1),(21139,'27139','Perg','PERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:36:58','1900-01-01 00:00:00',1,0,1),(21140,'12270','Pergine Valdarno','PERGINE VALDARNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:36:58','1900-01-01 00:00:00',1,0,1),(21141,'27487','Perham','PERHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:36:58','1900-01-01 00:00:00',1,0,1),(21142,'42857','Perhentian Islands','PERHENTIAN ISLANDS',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21143,'38649','Periana','PERIANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21144,'9569','Perigiali','PERIGIALI',NULL,'','Greece','',0,0,86,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21145,'42974','Perignat Les Sarlieve','PERIGNAT LES SARLIEVE',NULL,'','France','',0,0,76,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21146,'41360','Perigny','PERIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:36:59','1900-01-01 00:00:00',1,0,1),(21147,'5234','Perigueux','PERIGUEUX',NULL,'','France','',0,0,76,'2016-10-17 11:37:00','1900-01-01 00:00:00',1,0,1),(21148,'3678','Perillo','PERILLO',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:00','1900-01-01 00:00:00',1,0,1),(21149,'19893','Perimeter Center','PERIMETER CENTER',NULL,'','United States','',0,0,231,'2016-10-17 11:37:00','1900-01-01 00:00:00',1,0,1),(21150,'34287','Perisher Valley','PERISHER VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:00','1900-01-01 00:00:00',1,0,1),(21151,'9570','Perissa','PERISSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21152,'9715','Peristerion','PERISTERION',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21153,'37954','Perito Moreno','PERITO MORENO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21154,'9571','Perivolos','PERIVOLOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21155,'10456','Periwar Tiger Reserve','PERIWAR TIGER RESERVE',NULL,'','India','',0,0,101,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21156,'43320','Periyar','PERIYAR',NULL,'','India','',0,0,101,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21157,'31372','Perkinsville','PERKINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:01','1900-01-01 00:00:00',1,0,1),(21158,'30118','Perkiomenville','PERKIOMENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:02','1900-01-01 00:00:00',1,0,1),(21159,'44153','Perl','PERL',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21160,'40414','Perledo','PERLEDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21161,'39234','Perlora','PERLORA',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21162,'16417','Perm','PERM',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21163,'43784','Pernambuco','PERNAMBUCO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:03','1900-01-01 00:00:00',1,0,1),(21164,'6505','Pernes-les-fontaines','PERNES-LES-FONTAINES',NULL,'','France','',0,0,76,'2016-10-17 11:37:04','1900-01-01 00:00:00',1,0,1),(21165,'42250','Pernik','PERNIK',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:37:04','1900-01-01 00:00:00',1,0,1),(21166,'43897','Pernis','PERNIS',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:37:05','1900-01-01 00:00:00',1,0,1),(21167,'12272','Pero','PERO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:05','1900-01-01 00:00:00',1,0,1),(21168,'5952','Perols','PEROLS',NULL,'','France','',0,0,76,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21169,'6312','Peronne','PERONNE',NULL,'','France','',0,0,76,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21170,'9572','Peroulades','PEROULADES',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21171,'16473','Perovo','PEROVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21172,'5953','Perpignan','PERPIGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:37:06','1900-01-01 00:00:00',1,0,1),(21173,'8703','Perranporth','PERRANPORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:07','1900-01-01 00:00:00',1,0,1),(21174,'5484','Perreux','PERREUX',NULL,'','France','',0,0,76,'2016-10-17 11:37:07','1900-01-01 00:00:00',1,0,1),(21175,'18779','Perris','PERRIS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:07','1900-01-01 00:00:00',1,0,1),(21176,'4898','Perros-guirec','PERROS-GUIREC',NULL,'','France','',0,0,76,'2016-10-17 11:37:07','1900-01-01 00:00:00',1,0,1),(21177,'19894','Perry','PERRY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:08','1900-01-01 00:00:00',1,0,1),(21178,'30119','Perryopolis','PERRYOPOLIS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:10','1900-01-01 00:00:00',1,0,1),(21179,'29493','Perrysburg','PERRYSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:11','1900-01-01 00:00:00',1,0,1),(21180,'29494','Perrysville','PERRYSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:11','1900-01-01 00:00:00',1,0,1),(21181,'30852','Perryton','PERRYTON',NULL,'','United States','',0,0,231,'2016-10-17 11:37:12','1900-01-01 00:00:00',1,0,1),(21182,'21763','Perryville','PERRYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:12','1900-01-01 00:00:00',1,0,1),(21183,'33236','Persey','PERSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:14','1900-01-01 00:00:00',1,0,1),(21184,'8704','Pershore','PERSHORE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:14','1900-01-01 00:00:00',1,0,1),(21185,'8705','Perth','PERTH',NULL,'','United Kingdom','Perth',0,0,229,'2016-10-17 11:37:14','1900-01-01 00:00:00',1,0,1),(21186,'28378','Perth Amboy','PERTH AMBOY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:15','1900-01-01 00:00:00',1,0,1),(21187,'38995','Perth-andover','PERTH-ANDOVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:15','1900-01-01 00:00:00',1,0,1),(21188,'35924','Perth-como','PERTH-COMO',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:15','1900-01-01 00:00:00',1,0,1),(21189,'34813','Perth-scarborough','PERTH-SCARBOROUGH',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21190,'34817','Perth-sorrento','PERTH-SORRENTO',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21191,'1328','Perth-south Western','PERTH-SOUTH WESTERN',NULL,'','AUSTRALIA','',0,0,13,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21192,'24487','Pertisau','PERTISAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21193,'6506','Pertuis','PERTUIS',NULL,'','France','',0,0,76,'2016-10-17 11:37:16','1900-01-01 00:00:00',1,0,1),(21194,'35599','Perugia-passignano S','PERUGIA-PASSIGNANO S',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:18','1900-01-01 00:00:00',1,0,1),(21195,'981','Peruibe','PERUIBE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:18','1900-01-01 00:00:00',1,0,1),(21196,'12793','Pesaro','PESARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:18','1900-01-01 00:00:00',1,0,1),(21197,'18780','Pescadero','PESCADERO',NULL,'','United States','',0,0,231,'2016-10-17 11:37:18','1900-01-01 00:00:00',1,0,1),(21198,'38580','Pescaglia','PESCAGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:19','1900-01-01 00:00:00',1,0,1),(21199,'12983','Pescara','PESCARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:19','1900-01-01 00:00:00',1,0,1),(21200,'35506','Pescara-citta Sant\'a','PESCARA-CITTA SANT\'A',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21201,'35537','Pescara-guilianova','PESCARA-GUILIANOVA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21202,'37949','Pescasseroli','PESCASSEROLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21203,'12274','Peschici','PESCHICI',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21204,'12275','Peschiera Del Garda','PESCHIERA DEL GARDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:20','1900-01-01 00:00:00',1,0,1),(21205,'12276','Pescia','PESCIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21206,'37191','Pescocostanzo','PESCOCOSTANZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21207,'38317','Pescosolido','PESCOSOLIDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21208,'15321','Peshawar','PESHAWAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21209,'16076','Peso Da Regua','PESO DA REGUA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21210,'16346','Pesochnyy','PESOCHNYY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21211,'5235','Pessac','PESSAC',NULL,'','France','',0,0,76,'2016-10-17 11:37:21','1900-01-01 00:00:00',1,0,1),(21212,'9573','Petalidi','PETALIDI',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21213,'14345','Petaling Jaya','PETALING JAYA',NULL,'','Malaysia','Petaling Jaya',0,0,132,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21214,'18781','Petaluma','PETALUMA',NULL,'','United States','',0,0,231,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21215,'34604','Petawawa','PETAWAWA',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21216,'1793','Petchburi','PETCHBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21217,'35312','Peten','PETEN',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21218,'32224','Peter Island','PETER ISLAND',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 11:37:22','1900-01-01 00:00:00',1,0,1),(21219,'32238','Peterborg','PETERBORG',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 11:37:23','1900-01-01 00:00:00',1,0,1),(21220,'34605','Peterborough','PETERBOROUGH',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:23','1900-01-01 00:00:00',1,0,1),(21221,'7257','Peterborough','PETERBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:23','1900-01-01 00:00:00',1,0,1),(21222,'32751','Peterborough','PETERBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:37:23','1900-01-01 00:00:00',1,0,1),(21223,'8706','Peterhead','PETERHEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:24','1900-01-01 00:00:00',1,0,1),(21224,'37912','Peterlee','PETERLEE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:24','1900-01-01 00:00:00',1,0,1),(21225,'40308','Petersberg','PETERSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:24','1900-01-01 00:00:00',1,0,1),(21226,'33237','Petersburg','PETERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:24','1900-01-01 00:00:00',1,0,1),(21227,'8707','Petersfield','PETERSFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:26','1900-01-01 00:00:00',1,0,1),(21228,'553','Petershagen','PETERSHAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:27','1900-01-01 00:00:00',1,0,1),(21229,'21496','Petersham','PETERSHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:37:27','1900-01-01 00:00:00',1,0,1),(21230,'8708','Petham','PETHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:27','1900-01-01 00:00:00',1,0,1),(21231,'42265','Petionville','PETIONVILLE',NULL,'','Haiti','',0,0,95,'2016-10-17 11:37:27','1900-01-01 00:00:00',1,0,1),(21232,'32167','Petit St. Vincent','PETIT ST. VINCENT',NULL,'','St Vincent And The Grenadines','',0,0,513,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21233,'5236','Petit-bersac','PETIT-BERSAC',NULL,'','France','',0,0,76,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21234,'4445','Petite-foret','PETITE-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21235,'41368','Petite-ile','PETITE-ILE',NULL,'','Reunion','',0,0,178,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21236,'10193','Petitenget','PETITENGET',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21237,'22819','Petite-riviera-saint-francois','PETITE-RIVIERA-SAINT-FRANCOIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21238,'40673','Petone','PETONE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:37:28','1900-01-01 00:00:00',1,0,1),(21239,'22206','Petoskey','PETOSKEY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:29','1900-01-01 00:00:00',1,0,1),(21240,'2915','Petra','PETRA',NULL,'','Spain','Petra',0,0,199,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21241,'13106','Petra','PETRA',NULL,'','Jordan','Petra',0,0,111,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21242,'37315','Petralia Soprana','PETRALIA SOPRANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21243,'41192','Petrcane','PETRCANE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21244,'41414','Petrer','PETRER',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:30','1900-01-01 00:00:00',1,0,1),(21245,'1347','Petrified Forest - Az','PETRIFIED FOREST - AZ',NULL,'','United States','',0,0,231,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21246,'12279','Petrignano','PETRIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21247,'16444','Petrodvorets','PETRODVORETS',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21248,'42488','Petrohori','PETROHORI',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21249,'23529','Petrohue','PETROHUE',NULL,'','Chile','',0,0,45,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21250,'25124','Petrolina','PETROLINA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21251,'13440','Petropavlovsk','PETROPAVLOVSK',NULL,'','Kazakhstan','',0,0,112,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21252,'16333','Petropavlovsk-kamchatsky','PETROPAVLOVSK-KAMCHATSKY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21253,'25163','Petropolis','PETROPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21254,'12280','Petrosino','PETROSINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:31','1900-01-01 00:00:00',1,0,1),(21255,'9717','Petroupolis','PETROUPOLIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21256,'32370','Petrovac','PETROVAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21257,'16422','Petrovskoye','PETROVSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21258,'16334','Petrozavodsk','PETROZAVODSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21259,'11363','Pettenasco','PETTENASCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21260,'8709','Pettistree','PETTISTREE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21261,'24488','Pettneu Am Arlberg','PETTNEU AM ARLBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:37:32','1900-01-01 00:00:00',1,0,1),(21262,'19204','Petworth','PETWORTH',NULL,'','United States','',0,0,231,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21263,'38341','Petworth','PETWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21264,'23530','Peulla','PEULLA',NULL,'','Chile','Peulla',0,0,45,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21265,'16317','Pevek','PEVEK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21266,'27747','Pevely','PEVELY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:33','1900-01-01 00:00:00',1,0,1),(21267,'8710','Pevensey','PEVENSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:34','1900-01-01 00:00:00',1,0,1),(21268,'31852','Pewaukee','PEWAUKEE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:34','1900-01-01 00:00:00',1,0,1),(21269,'38964','Pewsey','PEWSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:34','1900-01-01 00:00:00',1,0,1),(21270,'43844','Peyia','PEYIA',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21271,'6507','Peymeinade','PEYMEINADE',NULL,'','France','',0,0,76,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21272,'6508','Peypin','PEYPIN',NULL,'','France','',0,0,76,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21273,'4446','Peyragudes','PEYRAGUDES',NULL,'','France','',0,0,76,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21274,'5237','Peyrehorade','PEYREHORADE',NULL,'','France','',0,0,76,'2016-10-17 11:37:35','1900-01-01 00:00:00',1,0,1),(21275,'6122','Peyreleau','PEYRELEAU',NULL,'','France','',0,0,76,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21276,'5954','Pezenas','PEZENAS',NULL,'','France','',0,0,76,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21277,'23311','Pfaffikon','PFAFFIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21278,'22610','Pfahlbronn','PFAHLBRONN',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21279,'22611','Pfalzgrafenweiler','PFALZGRAFENWEILER',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21280,'22382','Pfinztal','PFINZTAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:36','1900-01-01 00:00:00',1,0,1),(21281,'30853','Pflugerville','PFLUGERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:37','1900-01-01 00:00:00',1,0,1),(21282,'22612','Pforzheim','PFORZHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:37','1900-01-01 00:00:00',1,0,1),(21283,'298','Pfronten','PFRONTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:37','1900-01-01 00:00:00',1,0,1),(21284,'22613','Pfullendorf','PFULLENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:37','1900-01-01 00:00:00',1,0,1),(21285,'22614','Pfullingen','PFULLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21286,'38983','Phagwara','PHAGWARA',NULL,'','India','',0,0,101,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21287,'17012','Phala Beach','PHALA BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21288,'32591','Phalaborwa','PHALABORWA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21289,'35428','Phalodi','PHALODI',NULL,'','India','Phalodi',2,0,101,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21290,'42821','Phan Rang-thap Cham','PHAN RANG-THAP CHAM',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21291,'15041','Phaplu','PHAPLU',NULL,'','Nepal','',0,0,153,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21292,'30854','Pharr','PHARR',NULL,'','United States','',0,0,231,'2016-10-17 11:37:38','1900-01-01 00:00:00',1,0,1),(21293,'17041','Phasi Charoen','PHASI CHAROEN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:39','1900-01-01 00:00:00',1,0,1),(21294,'41704','Phayao','PHAYAO',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:39','1900-01-01 00:00:00',1,0,1),(21295,'18782','Phelan','PHELAN',NULL,'','United States','',0,0,231,'2016-10-17 11:37:39','1900-01-01 00:00:00',1,0,1),(21296,'29038','Phelps','PHELPS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:40','1900-01-01 00:00:00',1,0,1),(21297,'17938','Phenix City','PHENIX CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:37:40','1900-01-01 00:00:00',1,0,1),(21299,'16959','Phetchabun','PHETCHABUN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:41','1900-01-01 00:00:00',1,0,1),(21300,'16960','Phetchaburi','PHETCHABURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:41','1900-01-01 00:00:00',1,0,1),(21301,'27902','Philadelphia','PHILADELPHIA',NULL,'','United States','',0,0,231,'2016-10-17 11:37:41','1900-01-01 00:00:00',1,0,1),(21302,'32030','Philippi','PHILIPPI',NULL,'','United States','',0,0,231,'2016-10-17 11:37:43','1900-01-01 00:00:00',1,0,1),(21303,'30123','Philipsburg','PHILIPSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:43','1900-01-01 00:00:00',1,0,1),(21304,'25903','Philipsburg','PHILIPSBURG',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:37:43','1900-01-01 00:00:00',1,0,1),(21305,'26636','Phillip','PHILLIP',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:44','1900-01-01 00:00:00',1,0,1),(21306,'31854','Phillips','PHILLIPS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:44','1900-01-01 00:00:00',1,0,1),(21307,'21121','Phillipsburg','PHILLIPSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:45','1900-01-01 00:00:00',1,0,1),(21308,'32414','Phinda','PHINDA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:37:45','1900-01-01 00:00:00',1,0,1),(21309,'10457','Phinga','PHINGA',NULL,'','India','',0,0,101,'2016-10-17 11:37:45','1900-01-01 00:00:00',1,0,1),(21310,'21909','Phippsburg','PHIPPSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:37:46','1900-01-01 00:00:00',1,0,1),(21311,'17064','Phitsanulok','PHITSANULOK',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:46','1900-01-01 00:00:00',1,0,1),(21313,'13448','Phnom Penh','PHNOM PENH',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:37:46','1900-01-01 00:00:00',1,0,1),(21314,'9574','Phocis','PHOCIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:46','1900-01-01 00:00:00',1,0,1),(21315,'30124','Phoenixville','PHOENIXVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:48','1900-01-01 00:00:00',1,0,1),(21316,'1777','Phonesavanh','PHONESAVANH',NULL,'','Laos','',0,0,118,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21317,'17061','Phrae','PHRAE',NULL,'','Thailand','',0,0,215,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21318,'9575','Phthiotis','PHTHIOTIS',NULL,'','Greece','',0,0,86,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21319,'17093','Phuket','PHUKET',NULL,'','Thailand','Phuket',28,0,215,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21320,'32296','Phuoc Loc Xa','PHUOC LOC XA',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21321,'12729','Piacenza','PIACENZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:49','1900-01-01 00:00:00',1,0,1),(21322,'43732','Pialba','PIALBA',NULL,'','Australia','',0,0,13,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21323,'4776','Piana','PIANA',NULL,'','France','',0,0,76,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21324,'39182','Piana Degli Albanesi','PIANA DEGLI ALBANESI',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21325,'37284','Piancastagnaio','PIANCASTAGNAIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21326,'35601','Piancavallo','PIANCAVALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:50','1900-01-01 00:00:00',1,0,1),(21327,'35602','Pianella','PIANELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:51','1900-01-01 00:00:00',1,0,1),(21328,'12281','Pianezza','PIANEZZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:51','1900-01-01 00:00:00',1,0,1),(21329,'39872','Pianopoli','PIANOPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:51','1900-01-01 00:00:00',1,0,1),(21330,'12283','Pianoro','PIANORO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:51','1900-01-01 00:00:00',1,0,1),(21331,'17131','Piarco','PIARCO',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21332,'39394','Piaseczno','PIASECZNO',NULL,'','Poland','',0,0,174,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21333,'15700','Piastow','PIASTOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21334,'25044','Piata','PIATA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21335,'36633','Piatra Neamt','PIATRA NEAMT',NULL,'','Romania','',0,0,179,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21336,'24992','Piaui','PIAUI',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21337,'12284','Piazza Armerina','PIAZZA ARMERINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21338,'3155','Picaña','PICAÑA',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21339,'41278','Picanya','PICANYA',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:52','1900-01-01 00:00:00',1,0,1),(21340,'27903','Picayune','PICAYUNE',NULL,'','United States','',0,0,231,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21341,'38744','Piccione','PICCIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21342,'12285','Picerno','PICERNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21343,'15819','Picheleira','PICHELEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21344,'37763','Pichidangui','PICHIDANGUI',NULL,'','Chile','',0,0,45,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21345,'37581','Pichilemu','PICHILEMU',NULL,'','Chile','',0,0,45,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21346,'13846','Pichilingue','PICHILINGUE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21347,'24432','Pichl Bei Schladming','PICHL BEI SCHLADMING',NULL,'','Austria','',0,0,14,'2016-10-17 11:37:53','1900-01-01 00:00:00',1,0,1),(21348,'27017','Pichl-preunegg','PICHL-PREUNEGG',NULL,'','Austria','',0,0,14,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21349,'24334','Picin','PICIN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21350,'30389','Pickens','PICKENS',NULL,'','United States','',0,0,231,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21351,'8711','Pickering','PICKERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21352,'34607','Pickering','PICKERING',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:54','1900-01-01 00:00:00',1,0,1),(21353,'29495','Pickerington','PICKERINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:37:55','1900-01-01 00:00:00',1,0,1),(21354,'34608','Pickle Lake','PICKLE LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:55','1900-01-01 00:00:00',1,0,1),(21355,'33238','Pickwick Dam','PICKWICK DAM',NULL,'','United States','',0,0,231,'2016-10-17 11:37:55','1900-01-01 00:00:00',1,0,1),(21356,'15820','Pico Island','PICO ISLAND',NULL,'','Portugal','',0,0,175,'2016-10-17 11:37:55','1900-01-01 00:00:00',1,0,1),(21357,'18783','Pico Rivera','PICO RIVERA',NULL,'','United States','',0,0,231,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21358,'34609','Picton','PICTON',NULL,'','Canada','Picton',0,0,39,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21359,'15155','Picton','PICTON',NULL,'','New Zealand','Picton',0,0,157,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21360,'25740','Pictou','PICTOU',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21361,'38725','Pidhirtsi','PIDHIRTSI',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21362,'13954','Pie De La Cuesta','PIE DE LA CUESTA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21363,'25213','Piedade','PIEDADE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21364,'22820','Piedmont','PIEDMONT',NULL,'','Canada','',0,0,39,'2016-10-17 11:37:56','1900-01-01 00:00:00',1,0,1),(21365,'2729','Piedras Blancas','PIEDRAS BLANCAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:37:58','1900-01-01 00:00:00',1,0,1),(21366,'13990','Piedras Negras','PIEDRAS NEGRAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:37:58','1900-01-01 00:00:00',1,0,1),(21367,'12286','Piegaro','PIEGARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:59','1900-01-01 00:00:00',1,0,1),(21368,'3941','Pieksamaki','PIEKSAMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:37:59','1900-01-01 00:00:00',1,0,1),(21369,'12287','Pienza','PIENZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:59','1900-01-01 00:00:00',1,0,1),(21370,'12288','Pierantonio','PIERANTONIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:37:59','1900-01-01 00:00:00',1,0,1),(21371,'20385','Pierce','PIERCE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:00','1900-01-01 00:00:00',1,0,1),(21372,'36336','Piercebridge','PIERCEBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:38:00','1900-01-01 00:00:00',1,0,1),(21373,'43081','Pieria','PIERIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:00','1900-01-01 00:00:00',1,0,1),(21374,'33038','Pierre','PIERRE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:00','1900-01-01 00:00:00',1,0,1),(21375,'6687','Pierre-benite','PIERRE-BENITE',NULL,'','France','',0,0,76,'2016-10-17 11:38:01','1900-01-01 00:00:00',1,0,1),(21376,'38438','Pierrefeu-du-var','PIERREFEU-DU-VAR',NULL,'','France','',0,0,76,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21377,'41358','Pierrefitte-nestalas','PIERREFITTE-NESTALAS',NULL,'','France','',0,0,76,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21378,'22821','Pierrefonds','PIERREFONDS',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21379,'39237','Pierrefonds','PIERREFONDS',NULL,'','France','',0,0,76,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21380,'6688','Pierrelatte','PIERRELATTE',NULL,'','France','',0,0,76,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21381,'38098','Piesendorf','PIESENDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:38:02','1900-01-01 00:00:00',1,0,1),(21382,'36706','Piestany','PIESTANY',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21383,'32532','Pietermaritzburg','PIETERMARITZBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21384,'35604','Pietra Ligure','PIETRA LIGURE',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21385,'37195','Pietralunga','PIETRALUNGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21386,'4777','Pietranera','PIETRANERA',NULL,'','France','',0,0,76,'2016-10-17 11:38:03','1900-01-01 00:00:00',1,0,1),(21387,'12289','Pietrasanta','PIETRASANTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:04','1900-01-01 00:00:00',1,0,1),(21388,'38977','Pietrelcina','PIETRELCINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:04','1900-01-01 00:00:00',1,0,1),(21389,'38860','Pievepelago','PIEVEPELAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:05','1900-01-01 00:00:00',1,0,1),(21390,'11368','Pievescola','PIEVESCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:05','1900-01-01 00:00:00',1,0,1),(21391,'24839','Pigeon Cay','PIGEON CAY',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:38:05','1900-01-01 00:00:00',1,0,1),(21392,'13574','Pigeon Island','PIGEON ISLAND',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21393,'17120','Pigeon Point','PIGEON POINT',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21394,'16907','Piggs Peak','PIGGS PEAK',NULL,'','Swaziland','',0,0,208,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21395,'12293','Pignola','PIGNOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21396,'16170','Pihaena','PIHAENA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21397,'4025','Pihtipudas','PIHTIPUDAS',NULL,'','Finland','',0,0,75,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21398,'34610','Pikangikum','PIKANGIKUM',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:06','1900-01-01 00:00:00',1,0,1),(21399,'37926','Pikermi','PIKERMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:07','1900-01-01 00:00:00',1,0,1),(21400,'21764','Pikesville','PIKESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:07','1900-01-01 00:00:00',1,0,1),(21401,'29496','Piketon','PIKETON',NULL,'','United States','',0,0,231,'2016-10-17 11:38:07','1900-01-01 00:00:00',1,0,1),(21402,'33240','Pikeville','PIKEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:08','1900-01-01 00:00:00',1,0,1),(21403,'15666','Pila','PILA',NULL,'','Poland','',0,0,174,'2016-10-17 11:38:08','1900-01-01 00:00:00',1,0,1),(21404,'13060','Pila','PILA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21405,'32593','Pilanesberg','PILANESBERG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21406,'37119','Pilanesburg','PILANESBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21407,'26102','Pilar','PILAR',NULL,'','Argentina','',0,0,10,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21408,'3775','Pilar De La Horadada','PILAR DE LA HORADADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21409,'11369','Pilastro','PILASTRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21410,'8','Pilbara','PILBARA',NULL,'','Australia','',0,0,13,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21411,'32415','Pilgrims Rest','PILGRIMS REST',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:09','1900-01-01 00:00:00',1,0,1),(21412,'41943','Pilona','PILONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:10','1900-01-01 00:00:00',1,0,1),(21413,'38807','Pilos','PILOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:10','1900-01-01 00:00:00',1,0,1),(21414,'33969','Pilot Mountain','PILOT MOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:38:10','1900-01-01 00:00:00',1,0,1),(21415,'7258','Pimlico','PIMLICO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:38:11','1900-01-01 00:00:00',1,0,1),(21416,'26079','Pinamar','PINAMAR',NULL,'','Argentina','',0,0,10,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21417,'34944','Pinar Del Rio','PINAR DEL RIO',NULL,'','Cuba','',0,0,56,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21418,'12730','Pinarella','PINARELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21419,'25345','Pincher Creek','PINCHER CREEK',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21420,'20713','Pinckneyville','PINCKNEYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:12','1900-01-01 00:00:00',1,0,1),(21421,'42207','Pindamonhangaba','PINDAMONHANGABA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:38:13','1900-01-01 00:00:00',1,0,1),(21422,'42060','Pindaya','PINDAYA',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:38:13','1900-01-01 00:00:00',1,0,1),(21423,'16937','Pine Cay','PINE CAY',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:38:15','1900-01-01 00:00:00',1,0,1),(21424,'34611','Pine Grove','PINE GROVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:15','1900-01-01 00:00:00',1,0,1),(21425,'33971','Pinebluff','PINEBLUFF',NULL,'','United States','',0,0,231,'2016-10-17 11:38:18','1900-01-01 00:00:00',1,0,1),(21426,'33972','Pinecrest','PINECREST',NULL,'','United States','',0,0,231,'2016-10-17 11:38:18','1900-01-01 00:00:00',1,0,1),(21427,'2730','Pineda De Mar','PINEDA DE MAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:19','1900-01-01 00:00:00',1,0,1),(21428,'32123','Pinedale','PINEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:19','1900-01-01 00:00:00',1,0,1),(21429,'21497','Pinehurst','PINEHURST',NULL,'','United States','',0,0,231,'2016-10-17 11:38:19','1900-01-01 00:00:00',1,0,1),(21430,'19567','Pinellas Park','PINELLAS PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:38:20','1900-01-01 00:00:00',1,0,1),(21431,'12294','Pinerolo','PINEROLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:21','1900-01-01 00:00:00',1,0,1),(21432,'11370','Pineta Mare','PINETA MARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:21','1900-01-01 00:00:00',1,0,1),(21433,'12295','Pineto','PINETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:21','1900-01-01 00:00:00',1,0,1),(21434,'18189','Pinetop','PINETOP',NULL,'','United States','',0,0,231,'2016-10-17 11:38:21','1900-01-01 00:00:00',1,0,1),(21435,'18190','Pinetop-lakeside','PINETOP-LAKESIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:22','1900-01-01 00:00:00',1,0,1),(21436,'42661','Pinetown','PINETOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:38:22','1900-01-01 00:00:00',1,0,1),(21437,'33974','Pineville','PINEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:22','1900-01-01 00:00:00',1,0,1),(21438,'5742','Piney','PINEY',NULL,'','France','',0,0,76,'2016-10-17 11:38:23','1900-01-01 00:00:00',1,0,1),(21439,'43828','Pingdingshan','PINGDINGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:38:23','1900-01-01 00:00:00',1,0,1),(21440,'23807','Pingfang','PINGFANG',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21441,'23710','Pinghu','PINGHU',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21442,'23817','Pingjiang','PINGJIANG',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21443,'34892','Pingliang','PINGLIANG',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21444,'17411','Pingtung','PINGTUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21445,'23918','Pingyao','PINGYAO',NULL,'','China','',0,0,46,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21446,'41781','Pinhais','PINHAIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21447,'16032','Pinhao','PINHAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21448,'15970','Pinhel','PINHEL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21449,'40828','Pinjore','PINJORE',NULL,'','India','Pinjore',20,0,101,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21450,'731','Pinneberg','PINNEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:38:24','1900-01-01 00:00:00',1,0,1),(21451,'8712','Pinner','PINNER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:38:25','1900-01-01 00:00:00',1,0,1),(21452,'18785','Pinole','PINOLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:25','1900-01-01 00:00:00',1,0,1),(21453,'28554','Pinos Altos','PINOS ALTOS',NULL,'','United States','',0,0,231,'2016-10-17 11:38:25','1900-01-01 00:00:00',1,0,1),(21454,'3337','Pinseque','PINSEQUE',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21455,'43813','Pinto','PINTO',NULL,'','Chile','',0,0,45,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21456,'3006','Pinto','PINTO',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21457,'27018','Pinzgau','PINZGAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21458,'12296','Pinzolo','PINZOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21459,'12856','Piombino','PIOMBINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:26','1900-01-01 00:00:00',1,0,1),(21460,'33241','Pioneer','PIONEER',NULL,'','United States','',0,0,231,'2016-10-17 11:38:27','1900-01-01 00:00:00',1,0,1),(21461,'23312','Piotta','PIOTTA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:38:27','1900-01-01 00:00:00',1,0,1),(21462,'40259','Piove Di Sacco','PIOVE DI SACCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:28','1900-01-01 00:00:00',1,0,1),(21463,'30126','Pipersville','PIPERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:28','1900-01-01 00:00:00',1,0,1),(21464,'32031','Pipestem','PIPESTEM',NULL,'','United States','',0,0,231,'2016-10-17 11:38:28','1900-01-01 00:00:00',1,0,1),(21465,'27490','Pipestone','PIPESTONE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:29','1900-01-01 00:00:00',1,0,1),(21466,'29497','Piqua','PIQUA',NULL,'','United States','',0,0,231,'2016-10-17 11:38:29','1900-01-01 00:00:00',1,0,1),(21467,'25214','Piracicaba','PIRACICABA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21468,'16171','Pirae','PIRAE',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21469,'9576','Piraeus','PIRAEUS',NULL,'','Greece','Piraeus',0,0,86,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21470,'37633','Piraino','PIRAINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21471,'36691','Piran','PIRAN',NULL,'','Slovenia','Piran',0,0,192,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21472,'40150','Pirgadikia','PIRGADIKIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21473,'42156','Piriapolis','PIRIAPOLIS',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21474,'1900','Pirna','PIRNA',NULL,'','Germany','',0,0,83,'2016-10-17 11:38:30','1900-01-01 00:00:00',1,0,1),(21475,'32376','Pirot','PIROT',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21476,'10033','Pirovac','PIROVAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21477,'39369','Pirque','PIRQUE',NULL,'','Chile','',0,0,45,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21478,'12857','Pisa','PISA',NULL,'','Italy','Pisa',0,0,107,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21479,'15395','Pisac','PISAC',NULL,'','Peru','',0,0,172,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21480,'35584','Pisa-montopoli Val D','PISA-MONTOPOLI VAL D',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21481,'35609','Pisa-pontedera','PISA-PONTEDERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:31','1900-01-01 00:00:00',1,0,1),(21482,'35629','Pisa-riparbella','PISA-RIPARBELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:32','1900-01-01 00:00:00',1,0,1),(21483,'35656','Pisa-s.giuliano Term','PISA-S.GIULIANO TERM',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:32','1900-01-01 00:00:00',1,0,1),(21484,'28381','Piscataway','PISCATAWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:38:32','1900-01-01 00:00:00',1,0,1),(21485,'39154','Pischanka','PISCHANKA',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21486,'40477','Pisciotta','PISCIOTTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21487,'15401','Pisco','PISCO',NULL,'','Peru','',0,0,172,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21488,'29042','Piseco','PISECO',NULL,'','United States','',0,0,231,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21489,'36026','Pisek','PISEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21490,'38587','Písek','PÍSEK',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:38:33','1900-01-01 00:00:00',1,0,1),(21491,'18787','Pismo Beach','PISMO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21492,'9577','Piso Livadi','PISO LIVADI',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21493,'24282','Pissouri','PISSOURI',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21494,'14130','Piste','PISTE',NULL,'','Mexico','',0,0,141,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21495,'12988','Pisticci','PISTICCI',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:34','1900-01-01 00:00:00',1,0,1),(21496,'35550','Pistoia-le Piastre','PISTOIA-LE PIASTRE',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:35','1900-01-01 00:00:00',1,0,1),(21497,'8713','Pitcaple','PITCAPLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:38:35','1900-01-01 00:00:00',1,0,1),(21498,'16757','Pitea','PITEA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:38:35','1900-01-01 00:00:00',1,0,1),(21499,'36634','Pitesti','PITESTI',NULL,'','Romania','',0,0,179,'2016-10-17 11:38:35','1900-01-01 00:00:00',1,0,1),(21500,'5672','Pithiviers','PITHIVIERS',NULL,'','France','',0,0,76,'2016-10-17 11:38:36','1900-01-01 00:00:00',1,0,1),(21501,'12298','Pitigliano','PITIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:36','1900-01-01 00:00:00',1,0,1),(21502,'37440','Pitkin','PITKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:38:36','1900-01-01 00:00:00',1,0,1),(21503,'1335','Pitlochry','PITLOCHRY',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:38:36','1900-01-01 00:00:00',1,0,1),(21504,'28382','Pitman','PITMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:38:37','1900-01-01 00:00:00',1,0,1),(21505,'37791','Pitres','PITRES',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:37','1900-01-01 00:00:00',1,0,1),(21506,'25507','Pitt Meadows','PITT MEADOWS',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:37','1900-01-01 00:00:00',1,0,1),(21507,'33242','Pittman Center','PITTMAN CENTER',NULL,'','United States','',0,0,231,'2016-10-17 11:38:37','1900-01-01 00:00:00',1,0,1),(21508,'33975','Pittsboro','PITTSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:38:38','1900-01-01 00:00:00',1,0,1),(21509,'32752','Pittsburg','PITTSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:38:38','1900-01-01 00:00:00',1,0,1),(21510,'30127','Pittsburgh','PITTSBURGH',NULL,'','United States','',0,0,231,'2016-10-17 11:38:40','1900-01-01 00:00:00',1,0,1),(21511,'20714','Pittsfield','PITTSFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:38:41','1900-01-01 00:00:00',1,0,1),(21512,'29043','Pittsford','PITTSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:38:43','1900-01-01 00:00:00',1,0,1),(21513,'28383','Pittsgrove','PITTSGROVE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:44','1900-01-01 00:00:00',1,0,1),(21514,'30130','Pittston','PITTSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:38:44','1900-01-01 00:00:00',1,0,1),(21515,'28384','Pittstown','PITTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21516,'26742','Pittsworth','PITTSWORTH',NULL,'','Australia','',0,0,13,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21517,'15424','Piura','PIURA',NULL,'','Peru','',0,0,172,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21518,'35605','Pizzo','PIZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21519,'24911','Placencia','PLACENCIA',NULL,'','Belize','',0,0,22,'2016-10-17 11:38:45','1900-01-01 00:00:00',1,0,1),(21520,'42427','Placencia','PLACENCIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:38:46','1900-01-01 00:00:00',1,0,1),(21521,'25671','Placentia','PLACENTIA',NULL,'','Canada','',0,0,39,'2016-10-17 11:38:46','1900-01-01 00:00:00',1,0,1),(21522,'18789','Placentia','PLACENTIA',NULL,'','United States','',0,0,231,'2016-10-17 11:38:46','1900-01-01 00:00:00',1,0,1),(21523,'18790','Placerville','PLACERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:46','1900-01-01 00:00:00',1,0,1),(21524,'19568','Placida','PLACIDA',NULL,'','United States','',0,0,231,'2016-10-17 11:38:48','1900-01-01 00:00:00',1,0,1),(21525,'28555','Placitas','PLACITAS',NULL,'','United States','',0,0,231,'2016-10-17 11:38:48','1900-01-01 00:00:00',1,0,1),(21526,'5011','Plailly','PLAILLY',NULL,'','France','',0,0,76,'2016-10-17 11:38:49','1900-01-01 00:00:00',1,0,1),(21527,'40254','Plaine','PLAINE',NULL,'','France','',0,0,76,'2016-10-17 11:38:49','1900-01-01 00:00:00',1,0,1),(21528,'14267','Plaine Magnien','PLAINE MAGNIEN',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:38:49','1900-01-01 00:00:00',1,0,1),(21529,'5128','Plainfaing','PLAINFAING',NULL,'','France','',0,0,76,'2016-10-17 11:38:49','1900-01-01 00:00:00',1,0,1),(21530,'31855','Plainfield','PLAINFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:38:50','1900-01-01 00:00:00',1,0,1),(21531,'28386','Plainsboro','PLAINSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:38:52','1900-01-01 00:00:00',1,0,1),(21532,'29045','Plainview','PLAINVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:38:52','1900-01-01 00:00:00',1,0,1),(21533,'19141','Plainville','PLAINVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:53','1900-01-01 00:00:00',1,0,1),(21534,'22208','Plainwell','PLAINWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:38:53','1900-01-01 00:00:00',1,0,1),(21535,'4778','Plaisir','PLAISIR',NULL,'','France','',0,0,76,'2016-10-17 11:38:54','1900-01-01 00:00:00',1,0,1),(21536,'9718','Plakias','PLAKIAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:54','1900-01-01 00:00:00',1,0,1),(21537,'5578','Plancoet','PLANCOET',NULL,'','France','',0,0,76,'2016-10-17 11:38:54','1900-01-01 00:00:00',1,0,1),(21538,'6509','Plan-de-cuques','PLAN-DE-CUQUES',NULL,'','France','',0,0,76,'2016-10-17 11:38:55','1900-01-01 00:00:00',1,0,1),(21539,'6510','Plan-de-la-tour','PLAN-DE-LA-TOUR',NULL,'','France','',0,0,76,'2016-10-17 11:38:55','1900-01-01 00:00:00',1,0,1),(21540,'37828','Planegg','PLANEGG',NULL,'','Germany','',0,0,83,'2016-10-17 11:38:55','1900-01-01 00:00:00',1,0,1),(21541,'5579','Planguenoual','PLANGUENOUAL',NULL,'','France','',0,0,76,'2016-10-17 11:38:55','1900-01-01 00:00:00',1,0,1),(21542,'33041','Plankinton','PLANKINTON',NULL,'','United States','',0,0,231,'2016-10-17 11:38:56','1900-01-01 00:00:00',1,0,1),(21543,'40481','Plan-les-ouates','PLAN-LES-OUATES',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:38:56','1900-01-01 00:00:00',1,0,1),(21544,'30858','Plano','PLANO',NULL,'','United States','',0,0,231,'2016-10-17 11:38:56','1900-01-01 00:00:00',1,0,1),(21545,'19569','Plant City','PLANT CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:38:57','1900-01-01 00:00:00',1,0,1),(21546,'19570','Plantation','PLANTATION',NULL,'','United States','',0,0,231,'2016-10-17 11:38:58','1900-01-01 00:00:00',1,0,1),(21547,'36210','Plantation Island','PLANTATION ISLAND',NULL,'','Fiji','',0,0,74,'2016-10-17 11:38:58','1900-01-01 00:00:00',1,0,1),(21548,'19142','Plantsville','PLANTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:58','1900-01-01 00:00:00',1,0,1),(21549,'21247','Plaquemine','PLAQUEMINE',NULL,'','United States','',0,0,231,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21550,'14576','Plasmolen','PLASMOLEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21551,'42497','Plastiras','PLASTIRAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21552,'35325','Plat','PLAT',NULL,'','Croatia','',0,0,55,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21553,'42486','Platamon','PLATAMON',NULL,'','Greece','',0,0,86,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21554,'35606','Platamona','PLATAMONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:38:59','1900-01-01 00:00:00',1,0,1),(21555,'22822','Plateau Mont Royal - Quartier Latin','PLATEAU MONT ROYAL - QUARTIER LATIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:00','1900-01-01 00:00:00',1,0,1),(21556,'4448','Plateau-d\'assy','PLATEAU-D\'ASSY',NULL,'','France','',0,0,76,'2016-10-17 11:39:00','1900-01-01 00:00:00',1,0,1),(21557,'17738','Platinum','PLATINUM',NULL,'','United States','',0,0,231,'2016-10-17 11:39:00','1900-01-01 00:00:00',1,0,1),(21558,'24268','Platres','PLATRES',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:39:01','1900-01-01 00:00:00',1,0,1),(21559,'27748','Platte City','PLATTE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:01','1900-01-01 00:00:00',1,0,1),(21560,'31856','Platteville','PLATTEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:39:02','1900-01-01 00:00:00',1,0,1),(21561,'29046','Plattsburgh','PLATTSBURGH',NULL,'','United States','',0,0,231,'2016-10-17 11:39:02','1900-01-01 00:00:00',1,0,1),(21562,'43459','Platys Gialos','PLATYS GIALOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21563,'1843','Plau','PLAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21564,'799','Plaue','PLAUE',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21565,'1901','Plauen','PLAUEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21566,'16606','Plavec','PLAVEC',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:39:03','1900-01-01 00:00:00',1,0,1),(21567,'878','Playa Bavaro','PLAYA BAVARO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:39:04','1900-01-01 00:00:00',1,0,1),(21568,'24179','Playa Bejuco','PLAYA BEJUCO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:39:04','1900-01-01 00:00:00',1,0,1),(21569,'14077','Playa Del Carmen','PLAYA DEL CARMEN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:39:05','1900-01-01 00:00:00',1,0,1),(21570,'42173','Playa Del Este','PLAYA DEL ESTE',NULL,'','Cuba','',0,0,56,'2016-10-17 11:39:05','1900-01-01 00:00:00',1,0,1),(21571,'18792','Playa Del Rey','PLAYA DEL REY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:05','1900-01-01 00:00:00',1,0,1),(21572,'42192','Playa Grande','PLAYA GRANDE',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:39:06','1900-01-01 00:00:00',1,0,1),(21573,'41298','Playa Montelimar','PLAYA MONTELIMAR',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:39:07','1900-01-01 00:00:00',1,0,1),(21574,'41729','Playacar','PLAYACAR',NULL,'','Mexico','',0,0,141,'2016-10-17 11:39:07','1900-01-01 00:00:00',1,0,1),(21575,'43497','Playas De Fornells','PLAYAS DE FORNELLS',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:07','1900-01-01 00:00:00',1,0,1),(21576,'13780','Playas De Rosarito','PLAYAS DE ROSARITO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:39:07','1900-01-01 00:00:00',1,0,1),(21577,'30861','Pleasanton','PLEASANTON',NULL,'','United States','',0,0,231,'2016-10-17 11:39:10','1900-01-01 00:00:00',1,0,1),(21578,'29048','Pleasantville','PLEASANTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:39:12','1900-01-01 00:00:00',1,0,1),(21579,'38919','Pleidelsheim','PLEIDELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:13','1900-01-01 00:00:00',1,0,1),(21580,'32268','Pleiku','PLEIKU',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:39:13','1900-01-01 00:00:00',1,0,1),(21581,'299','Pleinfeld','PLEINFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:13','1900-01-01 00:00:00',1,0,1),(21582,'3719','Plencia','PLENCIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:13','1900-01-01 00:00:00',1,0,1),(21583,'4449','Pleneuf Val Andre','PLENEUF VAL ANDRE',NULL,'','France','',0,0,76,'2016-10-17 11:39:14','1900-01-01 00:00:00',1,0,1),(21584,'44079','Pleneuf-val-andre','PLENEUF-VAL-ANDRE',NULL,'','France','',0,0,76,'2016-10-17 11:39:14','1900-01-01 00:00:00',1,0,1),(21585,'28008','Plentywood','PLENTYWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:39:14','1900-01-01 00:00:00',1,0,1),(21586,'9721','Plepi','PLEPI',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:14','1900-01-01 00:00:00',1,0,1),(21587,'5580','Plerin','PLERIN',NULL,'','France','',0,0,76,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21588,'27083','Plescherken','PLESCHERKEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21589,'11374','Plesio','PLESIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21590,'22823','Plessisville','PLESSISVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21591,'32492','Plettenberg Bay','PLETTENBERG BAY',NULL,'','South Africa','Plettenberg Bay',0,0,195,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21592,'41355','Pleudihen-sur-rance','PLEUDIHEN-SUR-RANCE',NULL,'','France','',0,0,76,'2016-10-17 11:39:15','1900-01-01 00:00:00',1,0,1),(21593,'5581','Pleugueneuc','PLEUGUENEUC',NULL,'','France','',0,0,76,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21594,'4899','Pleumeur-bodou','PLEUMEUR-BODOU',NULL,'','France','',0,0,76,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21595,'24805','Pleven','PLEVEN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21596,'300','Pliening','PLIENING',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21597,'22615','Pliezhausen','PLIEZHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21598,'40989','Plitvice','PLITVICE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:39:16','1900-01-01 00:00:00',1,0,1),(21599,'37854','Ploaghe','PLOAGHE',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21600,'22616','Plochingen','PLOCHINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21601,'15668','Plock','PLOCK',NULL,'','Poland','',0,0,174,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21602,'5582','Ploemel','PLOEMEL',NULL,'','France','',0,0,76,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21603,'5583','Ploemeur','PLOEMEUR',NULL,'','France','',0,0,76,'2016-10-17 11:39:17','1900-01-01 00:00:00',1,0,1),(21604,'37706','Ploen','PLOEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21605,'39810','Plogoff','PLOGOFF',NULL,'','France','',0,0,76,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21606,'16227','Ploiesti','PLOIESTI',NULL,'','Romania','',0,0,179,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21607,'9820','Plomarion','PLOMARION',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21608,'6056','Plombieres-les-bains','PLOMBIERES-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21609,'42075','Plon','PLON',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:18','1900-01-01 00:00:00',1,0,1),(21610,'5584','Ploneour-lanvern','PLONEOUR-LANVERN',NULL,'','France','',0,0,76,'2016-10-17 11:39:19','1900-01-01 00:00:00',1,0,1),(21611,'4450','Plorec Sur Arguenon','PLOREC SUR ARGUENON',NULL,'','France','',0,0,76,'2016-10-17 11:39:19','1900-01-01 00:00:00',1,0,1),(21612,'42355','Plorec-sur-arguenon','PLOREC-SUR-ARGUENON',NULL,'','France','',0,0,76,'2016-10-17 11:39:19','1900-01-01 00:00:00',1,0,1),(21613,'5585','Ploubazlanec','PLOUBAZLANEC',NULL,'','France','',0,0,76,'2016-10-17 11:39:19','1900-01-01 00:00:00',1,0,1),(21614,'44080','Plouescat','PLOUESCAT',NULL,'','France','',0,0,76,'2016-10-17 11:39:20','1900-01-01 00:00:00',1,0,1),(21615,'39846','Plougasnou','PLOUGASNOU',NULL,'','France','',0,0,76,'2016-10-17 11:39:20','1900-01-01 00:00:00',1,0,1),(21616,'4914','Plougastel-daoulas','PLOUGASTEL-DAOULAS',NULL,'','France','',0,0,76,'2016-10-17 11:39:20','1900-01-01 00:00:00',1,0,1),(21617,'39126','Plougonvelin','PLOUGONVELIN',NULL,'','France','',0,0,76,'2016-10-17 11:39:20','1900-01-01 00:00:00',1,0,1),(21618,'5586','Plouharnel','PLOUHARNEL',NULL,'','France','',0,0,76,'2016-10-17 11:39:21','1900-01-01 00:00:00',1,0,1),(21619,'5587','Plouider','PLOUIDER',NULL,'','France','',0,0,76,'2016-10-17 11:39:21','1900-01-01 00:00:00',1,0,1),(21620,'24808','Plovdiv','PLOVDIV',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:39:21','1900-01-01 00:00:00',1,0,1),(21621,'31858','Plover','PLOVER',NULL,'','United States','',0,0,231,'2016-10-17 11:39:21','1900-01-01 00:00:00',1,0,1),(21622,'30131','Plumsteadville','PLUMSTEADVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:39:22','1900-01-01 00:00:00',1,0,1),(21623,'5588','Plurien','PLURIEN',NULL,'','France','',0,0,76,'2016-10-17 11:39:22','1900-01-01 00:00:00',1,0,1),(21624,'22209','Plymouth','PLYMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 11:39:23','1900-01-01 00:00:00',1,0,1),(21625,'8715','Plymouth','PLYMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:23','1900-01-01 00:00:00',1,0,1),(21626,'17138','Plymouth','PLYMOUTH',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:39:24','1900-01-01 00:00:00',1,0,1),(21627,'8716','Plympton','PLYMPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21628,'26815','Plympton','PLYMPTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21629,'24335','Plzen','PLZEN',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21630,'1774','Pnh Phnom Penh','PNH PHNOM PENH',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21631,'9910','Po Lin','PO LIN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:39:27','1900-01-01 00:00:00',1,0,1),(21632,'26858','Poatina','POATINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:39:28','1900-01-01 00:00:00',1,0,1),(21633,'1902','Pobershau','POBERSHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:28','1900-01-01 00:00:00',1,0,1),(21634,'2746','Poblenou','POBLENOU',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:28','1900-01-01 00:00:00',1,0,1),(21635,'20278','Pocahontas','POCAHONTAS',NULL,'','United States','',0,0,231,'2016-10-17 11:39:28','1900-01-01 00:00:00',1,0,1),(21636,'25346','Pocahontas','POCAHONTAS',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:29','1900-01-01 00:00:00',1,0,1),(21637,'21500','Pocasset','POCASSET',NULL,'','United States','',0,0,231,'2016-10-17 11:39:29','1900-01-01 00:00:00',1,0,1),(21638,'20386','Pocatello','POCATELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:39:30','1900-01-01 00:00:00',1,0,1),(21639,'44006','Pochaiv','POCHAIV',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:39:30','1900-01-01 00:00:00',1,0,1),(21640,'14442','Pochomil','POCHOMIL',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:39:30','1900-01-01 00:00:00',1,0,1),(21641,'21765','Pocomoke City','POCOMOKE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:30','1900-01-01 00:00:00',1,0,1),(21642,'25075','Pocone','POCONE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:39:31','1900-01-01 00:00:00',1,0,1),(21643,'30133','Pocono Manor','POCONO MANOR',NULL,'','United States','',0,0,231,'2016-10-17 11:39:31','1900-01-01 00:00:00',1,0,1),(21644,'30134','Poconos','POCONOS',NULL,'','United States','',0,0,231,'2016-10-17 11:39:31','1900-01-01 00:00:00',1,0,1),(21645,'955','Pocos De Caldas','POCOS DE CALDAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21646,'16607','Podbrezova','PODBREZOVA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21647,'16645','Podcetrtek','PODCETRTEK',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21648,'41867','Podebrady','PODEBRADY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21649,'39088','Podenzana','PODENZANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21650,'12299','Podenzano','PODENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21651,'41191','Podgora','PODGORA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:39:32','1900-01-01 00:00:00',1,0,1),(21652,'32371','Podgorica','PODGORICA',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21653,'15595','Podlachia','PODLACHIA',NULL,'','Poland','',0,0,174,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21654,'16522','Podor','PODOR',NULL,'','Senegal','',0,0,187,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21655,'10034','Podstrana','PODSTRANA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21656,'41805','Poertschach','POERTSCHACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21657,'12300','Poggiardo','POGGIARDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21658,'12301','Poggibonsi','POGGIBONSI',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21659,'12302','Poggio A Caiano','POGGIO A CAIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:33','1900-01-01 00:00:00',1,0,1),(21660,'11375','Poggioreale Del Carso','POGGIOREALE DEL CARSO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21661,'44299','Pogradeci','POGRADECI',NULL,'','Albania','',0,0,2,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21662,'13503','Pohang','POHANG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21663,'42287','Pohnpei','POHNPEI',NULL,'','Micronesia','',0,0,143,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21664,'41882','Pohorje','POHORJE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21665,'16204','Poiana Brasov','POIANA BRASOV',NULL,'','Romania','',0,0,179,'2016-10-17 11:39:34','1900-01-01 00:00:00',1,0,1),(21666,'19571','Poinciana','POINCIANA',NULL,'','United States','',0,0,231,'2016-10-17 11:39:35','1900-01-01 00:00:00',1,0,1),(21667,'41904','Poindimie','POINDIMIE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:39:35','1900-01-01 00:00:00',1,0,1),(21668,'36347','Point Salines','POINT SALINES',NULL,'','Grenada','',0,0,88,'2016-10-17 11:39:40','1900-01-01 00:00:00',1,0,1),(21669,'14268','Pointe Aux Cannoniers','POINTE AUX CANNONIERS',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:39:41','1900-01-01 00:00:00',1,0,1),(21670,'22824','Pointe Claire','POINTE CLAIRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:41','1900-01-01 00:00:00',1,0,1),(21671,'24060','Pointe Noire','POINTE NOIRE',NULL,'','Congo','',0,0,51,'2016-10-17 11:39:41','1900-01-01 00:00:00',1,0,1),(21672,'9385','Pointe-a-pitre','POINTE-A-PITRE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21673,'22825','Pointe-au-pic','POINTE-AU-PIC',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21674,'22826','Pointe-aux-trembles','POINTE-AUX-TREMBLES',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21675,'41136','Pointe-claire','POINTE-CLAIRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21676,'22827','Pointe-du-lac','POINTE-DU-LAC',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21677,'38088','Pointe-noire','POINTE-NOIRE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21678,'42765','Pointon','POINTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21679,'22959','Points North Landing','POINTS NORTH LANDING',NULL,'','Canada','',0,0,39,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21680,'2747','Poio','POIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:42','1900-01-01 00:00:00',1,0,1),(21681,'42726','Poipet','POIPET',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:39:43','1900-01-01 00:00:00',1,0,1),(21682,'6358','Poitiers','POITIERS',NULL,'','France','',0,0,76,'2016-10-17 11:39:43','1900-01-01 00:00:00',1,0,1),(21683,'36262','Poitiers-futuroscope','POITIERS-FUTUROSCOPE',NULL,'','France','',0,0,76,'2016-10-17 11:39:44','1900-01-01 00:00:00',1,0,1),(21684,'9911','Pok Fu Lam','POK FU LAM',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:39:44','1900-01-01 00:00:00',1,0,1),(21685,'20964','Pokagon Lake','POKAGON LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:39:44','1900-01-01 00:00:00',1,0,1),(21686,'36512','Pokeno','POKENO',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21687,'15060','Pokhara','POKHARA',NULL,'','Nepal','Pokhara',0,0,153,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21689,'34288','Pokolbin','POKOLBIN',NULL,'','Australia','Pokolbin',0,0,13,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21690,'16374','Pokrovsko-streshnevo','POKROVSKO-STRESHNEVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21691,'16425','Pokrovskoye','POKROVSKOYE',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21692,'3101','Pola De Lena','POLA DE LENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:45','1900-01-01 00:00:00',1,0,1),(21693,'18191','Polacca','POLACCA',NULL,'','United States','',0,0,231,'2016-10-17 11:39:46','1900-01-01 00:00:00',1,0,1),(21694,'29498','Poland','POLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:39:46','1900-01-01 00:00:00',1,0,1),(21695,'28009','Polaris','POLARIS',NULL,'','United States','',0,0,231,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21696,'8717','Polegate','POLEGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21697,'43865','Polibetta','POLIBETTA',NULL,'','India','',0,0,101,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21698,'9579','Polichrono','POLICHRONO',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21699,'12304','Policoro','POLICORO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:47','1900-01-01 00:00:00',1,0,1),(21700,'12305','Polignano A Mare','POLIGNANO A MARE',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21701,'39631','Poligny','POLIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21702,'24265','Polis','POLIS',NULL,'','Cyprus','',0,0,57,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21703,'12306','Polizzi Generosa','POLIZZI GENEROSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21704,'17742','Polk Inlet','POLK INLET',NULL,'','United States','',0,0,231,'2016-10-17 11:39:48','1900-01-01 00:00:00',1,0,1),(21705,'41797','Pollein','POLLEIN',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21706,'41558','Pollenca','POLLENCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21707,'2917','Pollensa','POLLENSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21708,'38270','Pollica','POLLICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21709,'27140','Polling Im Innkreis','POLLING IM INNKREIS',NULL,'','Austria','',0,0,14,'2016-10-17 11:39:49','1900-01-01 00:00:00',1,0,1),(21710,'18801','Pollock Pines','POLLOCK PINES',NULL,'','United States','',0,0,231,'2016-10-17 11:39:50','1900-01-01 00:00:00',1,0,1),(21711,'39016','Pollonia','POLLONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:39:50','1900-01-01 00:00:00',1,0,1),(21712,'8718','Polmont','POLMONT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:50','1900-01-01 00:00:00',1,0,1),(21713,'20716','Polo','POLO',NULL,'','United States','',0,0,231,'2016-10-17 11:39:50','1900-01-01 00:00:00',1,0,1),(21714,'1743','Polokwane','POLOKWANE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:39:51','1900-01-01 00:00:00',1,0,1),(21716,'13589','Polonnaruwa','POLONNARUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:39:51','1900-01-01 00:00:00',1,0,1),(21717,'8719','Polperro','POLPERRO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:51','1900-01-01 00:00:00',1,0,1),(21718,'8720','Polsham','POLSHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:51','1900-01-01 00:00:00',1,0,1),(21719,'28010','Polson','POLSON',NULL,'','United States','',0,0,231,'2016-10-17 11:39:52','1900-01-01 00:00:00',1,0,1),(21720,'8721','Polstead','POLSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:39:52','1900-01-01 00:00:00',1,0,1),(21721,'17519','Poltava','POLTAVA',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:39:52','1900-01-01 00:00:00',1,0,1),(21722,'12769','Poltu Quatu','POLTU QUATU',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21723,'12307','Polvica','POLVICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21724,'16284','Polyarnyj','POLYARNYJ',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21725,'16445','Polyustrovo','POLYUSTROVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21726,'17014','Pom Prap Sattru Phai','POM PRAP SATTRU PHAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21727,'10256','Pomalaa','POMALAA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21728,'12308','Pomarance','POMARANCE',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21729,'15821','Pombal','POMBAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21730,'9997','Pomena','POMENA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:39:53','1900-01-01 00:00:00',1,0,1),(21731,'29499','Pomeroy','POMEROY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:54','1900-01-01 00:00:00',1,0,1),(21732,'19143','Pomfret','POMFRET',NULL,'','United States','',0,0,231,'2016-10-17 11:39:54','1900-01-01 00:00:00',1,0,1),(21733,'12310','Pomigliano D\'arco','POMIGLIANO D\'ARCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:55','1900-01-01 00:00:00',1,0,1),(21734,'301','Pommelsbrunn','POMMELSBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:39:55','1900-01-01 00:00:00',1,0,1),(21735,'28391','Pomona','POMONA',NULL,'','United States','',0,0,231,'2016-10-17 11:39:55','1900-01-01 00:00:00',1,0,1),(21736,'24798','Pomorie','POMORIE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:39:56','1900-01-01 00:00:00',1,0,1),(21737,'19572','Pompano Beach','POMPANO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:39:56','1900-01-01 00:00:00',1,0,1),(21738,'11376','Pompeii','POMPEII',NULL,'','Italy','',0,0,107,'2016-10-17 11:39:56','1900-01-01 00:00:00',1,0,1),(21739,'4451','Pompidou Centre - Notre Dame (3 And 4)','POMPIDOU CENTRE - NOTRE DAME (3 AND 4)',NULL,'','France','',0,0,76,'2016-10-17 11:39:57','1900-01-01 00:00:00',1,0,1),(21740,'28392','Pompton Plains','POMPTON PLAINS',NULL,'','United States','',0,0,231,'2016-10-17 11:39:57','1900-01-01 00:00:00',1,0,1),(21741,'32945','Ponca City','PONCA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:39:57','1900-01-01 00:00:00',1,0,1),(21742,'15761','Ponce','PONCE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:39:58','1900-01-01 00:00:00',1,0,1),(21743,'19573','Ponce Inlet','PONCE INLET',NULL,'','United States','',0,0,231,'2016-10-17 11:39:58','1900-01-01 00:00:00',1,0,1),(21744,'21248','Ponchatoula','PONCHATOULA',NULL,'','United States','',0,0,231,'2016-10-17 11:39:59','1900-01-01 00:00:00',1,0,1),(21745,'20388','Ponderay','PONDERAY',NULL,'','United States','',0,0,231,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21746,'3473','Ponferrada','PONFERRADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21747,'32594','Pongola','PONGOLA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21748,'40678','Ponnampet','PONNAMPET',NULL,'','India','',0,0,101,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21749,'25347','Ponoka','PONOKA',NULL,'','Canada','',0,0,39,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21750,'12311','Ponsacco','PONSACCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21751,'15240','Ponsonby','PONSONBY',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:40:00','1900-01-01 00:00:00',1,0,1),(21752,'41056','Ponta Delgada','PONTA DELGADA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:40:01','1900-01-01 00:00:00',1,0,1),(21753,'41155','Ponta Do Sol','PONTA DO SOL',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:40:01','1900-01-01 00:00:00',1,0,1),(21754,'25116','Ponta Grossa','PONTA GROSSA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:40:01','1900-01-01 00:00:00',1,0,1),(21755,'5239','Pontaillac','PONTAILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21756,'6057','Pont-a-mousson','PONT-A-MOUSSON',NULL,'','France','',0,0,76,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21757,'5784','Pontarlier','PONTARLIER',NULL,'','France','',0,0,76,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21758,'12312','Pontassieve','PONTASSIEVE',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21759,'5414','Pontaubault','PONTAUBAULT',NULL,'','France','',0,0,76,'2016-10-17 11:40:02','1900-01-01 00:00:00',1,0,1),(21760,'5827','Pont-audemer','PONT-AUDEMER',NULL,'','France','',0,0,76,'2016-10-17 11:40:03','1900-01-01 00:00:00',1,0,1),(21761,'40991','Pontault Combault','PONTAULT COMBAULT',NULL,'','France','',0,0,76,'2016-10-17 11:40:03','1900-01-01 00:00:00',1,0,1),(21762,'4453','Pontault-combault','PONTAULT-COMBAULT',NULL,'','France','',0,0,76,'2016-10-17 11:40:03','1900-01-01 00:00:00',1,0,1),(21763,'38305','Pontaumur','PONTAUMUR',NULL,'','France','',0,0,76,'2016-10-17 11:40:03','1900-01-01 00:00:00',1,0,1),(21764,'44081','Pont-aven','PONT-AVEN',NULL,'','France','',0,0,76,'2016-10-17 11:40:04','1900-01-01 00:00:00',1,0,1),(21765,'39775','Pont-de-salars','PONT-DE-SALARS',NULL,'','France','',0,0,76,'2016-10-17 11:40:04','1900-01-01 00:00:00',1,0,1),(21766,'40601','Pont-du-chateau','PONT-DU-CHATEAU',NULL,'','France','',0,0,76,'2016-10-17 11:40:04','1900-01-01 00:00:00',1,0,1),(21767,'41647','Ponte De Lima','PONTE DE LIMA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:40:04','1900-01-01 00:00:00',1,0,1),(21768,'23066','Ponte Tresa','PONTE TRESA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:40:05','1900-01-01 00:00:00',1,0,1),(21769,'19574','Ponte Vedra','PONTE VEDRA',NULL,'','United States','',0,0,231,'2016-10-17 11:40:05','1900-01-01 00:00:00',1,0,1),(21770,'39799','Pontebba','PONTEBBA',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:06','1900-01-01 00:00:00',1,0,1),(21771,'12319','Pontecagnano','PONTECAGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:06','1900-01-01 00:00:00',1,0,1),(21772,'41434','Pontedeume','PONTEDEUME',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:07','1900-01-01 00:00:00',1,0,1),(21773,'8722','Pontefract','PONTEFRACT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:07','1900-01-01 00:00:00',1,0,1),(21774,'12321','Pontelatone','PONTELATONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:07','1900-01-01 00:00:00',1,0,1),(21775,'12322','Pontenure','PONTENURE',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:07','1900-01-01 00:00:00',1,0,1),(21776,'11378','Ponteranica','PONTERANICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21777,'7259','Ponterwyd','PONTERWYD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21778,'43071','Pontetaro Di Noceto','PONTETARO DI NOCETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21779,'3679','Pontevedra','PONTEVEDRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21780,'36171','Pontevedra-mondariz','PONTEVEDRA-MONDARIZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:08','1900-01-01 00:00:00',1,0,1),(21781,'5673','Pontgouin','PONTGOUIN',NULL,'','France','',0,0,76,'2016-10-17 11:40:09','1900-01-01 00:00:00',1,0,1),(21782,'22211','Pontiac','PONTIAC',NULL,'','United States','',0,0,231,'2016-10-17 11:40:09','1900-01-01 00:00:00',1,0,1),(21783,'10328','Pontianak','PONTIANAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21784,'5589','Pontivy','PONTIVY',NULL,'','France','',0,0,76,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21785,'5590','Pont-l\'abbe','PONT-L\'ABBE',NULL,'','France','',0,0,76,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21786,'23067','Pont-la-ville','PONT-LA-VILLE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21787,'5415','Pont-l\'eveque','PONT-L\'EVEQUE',NULL,'','France','',0,0,76,'2016-10-17 11:40:10','1900-01-01 00:00:00',1,0,1),(21788,'4966','Pontlevoy','PONTLEVOY',NULL,'','France','',0,0,76,'2016-10-17 11:40:11','1900-01-01 00:00:00',1,0,1),(21789,'4780','Pontoise','PONTOISE',NULL,'','France','',0,0,76,'2016-10-17 11:40:11','1900-01-01 00:00:00',1,0,1),(21790,'38396','Pontons','PONTONS',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:11','1900-01-01 00:00:00',1,0,1),(21791,'20718','Pontoon Beach','PONTOON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:40:11','1900-01-01 00:00:00',1,0,1),(21792,'5416','Pontorson','PONTORSON',NULL,'','France','',0,0,76,'2016-10-17 11:40:12','1900-01-01 00:00:00',1,0,1),(21793,'27904','Pontotoc','PONTOTOC',NULL,'','United States','',0,0,231,'2016-10-17 11:40:12','1900-01-01 00:00:00',1,0,1),(21794,'5485','Pontoux','PONTOUX',NULL,'','France','',0,0,76,'2016-10-17 11:40:12','1900-01-01 00:00:00',1,0,1),(21795,'23313','Pontresina','PONTRESINA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21796,'38139','Pontrieux','PONTRIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21797,'40124','Pont-saint-esprit','PONT-SAINT-ESPRIT',NULL,'','France','',0,0,76,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21798,'37318','Pont-saint-martin','PONT-SAINT-MARTIN',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21799,'7260','Pontyclun','PONTYCLUN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:13','1900-01-01 00:00:00',1,0,1),(21800,'8723','Pontypool','PONTYPOOL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:14','1900-01-01 00:00:00',1,0,1),(21801,'8724','Pontypridd','PONTYPRIDD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:14','1900-01-01 00:00:00',1,0,1),(21802,'12323','Ponza','PONZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:14','1900-01-01 00:00:00',1,0,1),(21803,'35619','Ponzano Romano','PONZANO ROMANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:14','1900-01-01 00:00:00',1,0,1),(21804,'11380','Ponziane Islands','PONZIANE ISLANDS',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:15','1900-01-01 00:00:00',1,0,1),(21805,'9240','Poole','POOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:15','1900-01-01 00:00:00',1,0,1),(21806,'19897','Pooler','POOLER',NULL,'','United States','',0,0,231,'2016-10-17 11:40:15','1900-01-01 00:00:00',1,0,1),(21807,'8725','Pooley Bridge','POOLEY BRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21808,'7261','Pool-in-wharfedale','POOL-IN-WHARFEDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21809,'10458','Poovar','POOVAR',NULL,'','India','Poovar',3,0,101,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21810,'24103','Popayan','POPAYAN',NULL,'','Colombia','',0,0,49,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21811,'38304','Poperinge','POPERINGE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21812,'35610','Popiglio','POPIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:16','1900-01-01 00:00:00',1,0,1),(21813,'27750','Poplar Bluff','POPLAR BLUFF',NULL,'','United States','',0,0,231,'2016-10-17 11:40:17','1900-01-01 00:00:00',1,0,1),(21814,'34612','Poplar Hill','POPLAR HILL',NULL,'','Canada','',0,0,39,'2016-10-17 11:40:17','1900-01-01 00:00:00',1,0,1),(21815,'40144','Popoli','POPOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:17','1900-01-01 00:00:00',1,0,1),(21816,'12324','Poppi','POPPI',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:17','1900-01-01 00:00:00',1,0,1),(21817,'42277','Poprad','POPRAD',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:40:18','1900-01-01 00:00:00',1,0,1),(21818,'19144','Poquetanuck','POQUETANUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:40:18','1900-01-01 00:00:00',1,0,1),(21819,'10577','Porbandar','PORBANDAR',NULL,'','India','Porbandar',16,0,101,'2016-10-17 11:40:18','1900-01-01 00:00:00',1,0,1),(21820,'12325','Porcari','PORCARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:18','1900-01-01 00:00:00',1,0,1),(21821,'10063','Porec','POREC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:40:19','1900-01-01 00:00:00',1,0,1),(21822,'26539','Porepunkah','POREPUNKAH',NULL,'','Australia','',0,0,13,'2016-10-17 11:40:19','1900-01-01 00:00:00',1,0,1),(21823,'35538','Poretta Terme','PORETTA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:19','1900-01-01 00:00:00',1,0,1),(21824,'4026','Pori','PORI',NULL,'','Finland','',0,0,75,'2016-10-17 11:40:19','1900-01-01 00:00:00',1,0,1),(21825,'44015','Porirua','PORIRUA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21826,'32208','Porlamar','PORLAMAR',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21827,'8726','Porlock','PORLOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21828,'6263','Pornic','PORNIC',NULL,'','France','',0,0,76,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21829,'6264','Pornichet','PORNICHET',NULL,'','France','',0,0,76,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21830,'15660','Poronim','PORONIM',NULL,'','Poland','',0,0,174,'2016-10-17 11:40:20','1900-01-01 00:00:00',1,0,1),(21831,'9788','Poros','POROS',NULL,'','Greece','Poros',0,0,86,'2016-10-17 11:40:21','1900-01-01 00:00:00',1,0,1),(21832,'12327','Porotto','POROTTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:21','1900-01-01 00:00:00',1,0,1),(21833,'2749','Porreres','PORRERES',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:21','1900-01-01 00:00:00',1,0,1),(21834,'12328','Porretta Terme','PORRETTA TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:21','1900-01-01 00:00:00',1,0,1),(21835,'41401','Porrino','PORRINO',NULL,'','Spain','',0,0,199,'2016-10-17 11:40:22','1900-01-01 00:00:00',1,0,1),(21836,'15008','Porsgrunn','PORSGRUNN',NULL,'','Norway','',0,0,164,'2016-10-17 11:40:22','1900-01-01 00:00:00',1,0,1),(21837,'13083','Port Antonio','PORT ANTONIO',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:40:24','1900-01-01 00:00:00',1,0,1),(21838,'882','Port Au Prince','PORT AU PRINCE',NULL,'','Haiti','',0,0,95,'2016-10-17 11:40:25','1900-01-01 00:00:00',1,0,1),(21839,'40677','Port Berge','PORT BERGE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:40:26','1900-01-01 00:00:00',1,0,1),(21840,'14359','Port Dickson','PORT DICKSON',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:40:29','1900-01-01 00:00:00',1,0,1),(21841,'36793','Port El Kantaoui','PORT EL KANTAOUI',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:40:29','1900-01-01 00:00:00',1,0,1),(21842,'6853','Port Gentil','PORT GENTIL',NULL,'','Gabon','',0,0,80,'2016-10-17 11:40:30','1900-01-01 00:00:00',1,0,1),(21843,'14438','Port Harcourt','PORT HARCOURT',NULL,'','Nigeria','',0,0,160,'2016-10-17 11:40:31','1900-01-01 00:00:00',1,0,1),(21844,'14269','Port Louis','PORT LOUIS',NULL,'','Mauritius','Port Louis',0,0,139,'2016-10-17 11:40:35','1900-01-01 00:00:00',1,0,1),(21845,'15579','Port Moresby','PORT MORESBY',NULL,'','Papua New Guinea','',0,0,170,'2016-10-17 11:40:36','1900-01-01 00:00:00',1,0,1),(21846,'17121','Port Of Spain','PORT OF SPAIN',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:40:37','1900-01-01 00:00:00',1,0,1),(21847,'40909','Port Sudan','PORT SUDAN',NULL,'','Sudan','',0,0,205,'2016-10-17 11:40:41','1900-01-01 00:00:00',1,0,1),(21848,'32306','Port Vila','PORT VILA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:40:42','1900-01-01 00:00:00',1,0,1),(21849,'554','Porta Westfalica','PORTA WESTFALICA',NULL,'','Germany','',0,0,83,'2016-10-17 11:40:43','1900-01-01 00:00:00',1,0,1),(21850,'37668','Portacomaro','PORTACOMARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:44','1900-01-01 00:00:00',1,0,1),(21851,'8730','Portadown','PORTADOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:44','1900-01-01 00:00:00',1,0,1),(21852,'8731','Portaferry','PORTAFERRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:44','1900-01-01 00:00:00',1,0,1),(21853,'20965','Portage','PORTAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:40:45','1900-01-01 00:00:00',1,0,1),(21854,'44016','Portage','PORTAGE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:40:45','1900-01-01 00:00:00',1,0,1),(21855,'27751','Portageville','PORTAGEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:40:46','1900-01-01 00:00:00',1,0,1),(21856,'28077','Portal','PORTAL',NULL,'','United States','',0,0,231,'2016-10-17 11:40:47','1900-01-01 00:00:00',1,0,1),(21857,'16020','Portalegre','PORTALEGRE',NULL,'','Portugal','',0,0,175,'2016-10-17 11:40:48','1900-01-01 00:00:00',1,0,1),(21858,'28556','Portales','PORTALES',NULL,'','United States','',0,0,231,'2016-10-17 11:40:48','1900-01-01 00:00:00',1,0,1),(21859,'9723','Portaria','PORTARIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:40:49','1900-01-01 00:00:00',1,0,1),(21860,'40755','Portbail','PORTBAIL',NULL,'','France','',0,0,76,'2016-10-17 11:40:49','1900-01-01 00:00:00',1,0,1),(21861,'5038','Port-barcares','PORT-BARCARES',NULL,'','France','',0,0,76,'2016-10-17 11:40:49','1900-01-01 00:00:00',1,0,1),(21862,'42657','Port-boise','PORT-BOISE',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:40:50','1900-01-01 00:00:00',1,0,1),(21863,'8732','Portbury','PORTBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:50','1900-01-01 00:00:00',1,0,1),(21864,'4456','Port-camargue','PORT-CAMARGUE',NULL,'','France','',0,0,76,'2016-10-17 11:40:50','1900-01-01 00:00:00',1,0,1),(21865,'6359','Port-d\'envaux','PORT-D\'ENVAUX',NULL,'','France','',0,0,76,'2016-10-17 11:40:51','1900-01-01 00:00:00',1,0,1),(21866,'4873','Port-en-bessin','PORT-EN-BESSIN',NULL,'','France','',0,0,76,'2016-10-17 11:40:51','1900-01-01 00:00:00',1,0,1),(21867,'41351','Port-en-bessin-huppain','PORT-EN-BESSIN-HUPPAIN',NULL,'','France','',0,0,76,'2016-10-17 11:40:51','1900-01-01 00:00:00',1,0,1),(21868,'20966','Porter','PORTER',NULL,'','United States','',0,0,231,'2016-10-17 11:40:52','1900-01-01 00:00:00',1,0,1),(21869,'25743','Porter\'s Lake','PORTER\'S LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:40:52','1900-01-01 00:00:00',1,0,1),(21870,'18804','Porterville','PORTERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:40:53','1900-01-01 00:00:00',1,0,1),(21871,'4458','Portes Les Valence','PORTES LES VALENCE',NULL,'','France','',0,0,76,'2016-10-17 11:40:53','1900-01-01 00:00:00',1,0,1),(21872,'8733','Portesham','PORTESHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:53','1900-01-01 00:00:00',1,0,1),(21873,'5240','Portet','PORTET',NULL,'','France','',0,0,76,'2016-10-17 11:40:54','1900-01-01 00:00:00',1,0,1),(21874,'6123','Portet-sur-garonne','PORTET-SUR-GARONNE',NULL,'','France','',0,0,76,'2016-10-17 11:40:54','1900-01-01 00:00:00',1,0,1),(21875,'8734','Port-eynon','PORT-EYNON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:54','1900-01-01 00:00:00',1,0,1),(21876,'8736','Porthcawl','PORTHCAWL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21877,'8737','Porthmadog','PORTHMADOG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21878,'4781','Porticcio','PORTICCIO',NULL,'','France','',0,0,76,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21879,'12329','Portico Di Romagna','PORTICO DI ROMAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21880,'16205','Portile De Fier','PORTILE DE FIER',NULL,'','Romania','',0,0,179,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21881,'15943','Portimao','PORTIMAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:40:55','1900-01-01 00:00:00',1,0,1),(21882,'7262','Portinscale','PORTINSCALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:56','1900-01-01 00:00:00',1,0,1),(21883,'5955','Portiragnes','PORTIRAGNES',NULL,'','France','',0,0,76,'2016-10-17 11:40:56','1900-01-01 00:00:00',1,0,1),(21884,'11382','Portisco','PORTISCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:40:56','1900-01-01 00:00:00',1,0,1),(21885,'22216','Portland','PORTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:40:56','1900-01-01 00:00:00',1,0,1),(21886,'7263','Portland','PORTLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:40:57','1900-01-01 00:00:00',1,0,1),(21887,'26928','Portland','PORTLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:40:58','1900-01-01 00:00:00',1,0,1),(21888,'5956','Port-la-nouvelle','PORT-LA-NOUVELLE',NULL,'','France','',0,0,76,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21889,'10753','Portlaoise','PORTLAOISE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21890,'5785','Port-lesney','PORT-LESNEY',NULL,'','France','',0,0,76,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21891,'8738','Portloe','PORTLOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21892,'7264','Portmeirion','PORTMEIRION',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:01','1900-01-01 00:00:00',1,0,1),(21893,'4782','Porto','PORTO',NULL,'','France','',0,0,76,'2016-10-17 11:41:02','1900-01-01 00:00:00',1,0,1),(21894,'25093','Porto Alegre','PORTO ALEGRE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:02','1900-01-01 00:00:00',1,0,1),(21895,'25848','Porto Amboim','PORTO AMBOIM',NULL,'','Angola','',0,0,6,'2016-10-17 11:41:02','1900-01-01 00:00:00',1,0,1),(21896,'9581','Porto Carras','PORTO CARRAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:02','1900-01-01 00:00:00',1,0,1),(21897,'8739','Portobello','PORTOBELLO',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:06','1900-01-01 00:00:00',1,0,1),(21898,'43991','Portobelo','PORTOBELO',NULL,'','Panama','',0,0,169,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21899,'12909','Portobuffole','PORTOBUFFOLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21900,'12336','Portoferraio','PORTOFERRAIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21901,'12337','Portofino','PORTOFINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21902,'40040','Portogruaro','PORTOGRUARO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:07','1900-01-01 00:00:00',1,0,1),(21903,'9583','Porto-heli','PORTO-HELI',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21904,'18805','Portola','PORTOLA',NULL,'','United States','',0,0,231,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21905,'41349','Portomarin','PORTOMARIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21906,'35696','Portonovo','PORTONOVO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21907,'3680','Portonovo','PORTONOVO',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:08','1900-01-01 00:00:00',1,0,1),(21908,'11391','Portopalo Di Capo Passero','PORTOPALO DI CAPO PASSERO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21909,'16619','Portoroz','PORTOROZ',NULL,'','Slovenia','Portoroz',0,0,192,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21910,'12829','Portoscuso','PORTOSCUSO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21911,'4887','Porto-vecchio','PORTO-VECCHIO',NULL,'','France','',0,0,76,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21912,'12338','Portovenere','PORTOVENERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:09','1900-01-01 00:00:00',1,0,1),(21913,'2404','Portoviejo','PORTOVIEJO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21914,'36600','Porto-vila Nova De G','PORTO-VILA NOVA DE G',NULL,'','Portugal','',0,0,175,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21915,'8740','Portpatrick','PORTPATRICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21916,'8741','Portree','PORTREE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21917,'8742','Portrush','PORTRUSH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21918,'40929','Portrush, Co. Antrim','PORTRUSH, CO. ANTRIM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:10','1900-01-01 00:00:00',1,0,1),(21919,'39034','Port-saint-pere','PORT-SAINT-PERE',NULL,'','France','',0,0,76,'2016-10-17 11:41:11','1900-01-01 00:00:00',1,0,1),(21920,'10824','Portsalon','PORTSALON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:41:11','1900-01-01 00:00:00',1,0,1),(21921,'26542','Portsea','PORTSEA',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:11','1900-01-01 00:00:00',1,0,1),(21922,'30262','Portsmouth','PORTSMOUTH',NULL,'','United States','',0,0,231,'2016-10-17 11:41:11','1900-01-01 00:00:00',1,0,1),(21923,'2105','Portsmouth','PORTSMOUTH',NULL,'','Dominica','',0,0,500,'2016-10-17 11:41:12','1900-01-01 00:00:00',1,0,1),(21924,'8743','Portsmouth','PORTSMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:13','1900-01-01 00:00:00',1,0,1),(21925,'38302','Portsonachan','PORTSONACHAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:14','1900-01-01 00:00:00',1,0,1),(21926,'8744','Portstewart','PORTSTEWART',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:14','1900-01-01 00:00:00',1,0,1),(21927,'7265','Portswood','PORTSWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:14','1900-01-01 00:00:00',1,0,1),(21928,'35614','Portu Sa Ruxi (Sardi','PORTU SA RUXI (SARDI',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:14','1900-01-01 00:00:00',1,0,1),(21929,'25674','Portugal Cove','PORTUGAL COVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21930,'3720','Portugalete','PORTUGALETE',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21931,'43246','Portugos','PORTUGOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21932,'10872','Portumna','PORTUMNA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21933,'43814','Porvenir','PORVENIR',NULL,'','Chile','',0,0,45,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21934,'3986','Porvoo','PORVOO',NULL,'','Finland','',0,0,75,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21935,'12339','Posada','POSADA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21936,'26127','Posadas','POSADAS',NULL,'','Argentina','',0,0,10,'2016-10-17 11:41:15','1900-01-01 00:00:00',1,0,1),(21937,'23472','Poschiavo','POSCHIAVO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21938,'37189','Posedarje','POSEDARJE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21939,'40829','Poshina','POSHINA',NULL,'','India','',0,0,101,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21940,'3929','Posio','POSIO',NULL,'','Finland','',0,0,75,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21941,'12340','Positano','POSITANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21942,'10365','Poso','POSO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21943,'37535','Possidonia','POSSIDONIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21944,'22383','Possneck','POSSNECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:16','1900-01-01 00:00:00',1,0,1),(21945,'39505','Posta Fibreno','POSTA FIBRENO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21946,'8745','Postbridge','POSTBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21947,'14245','Poste De Flacq','POSTE DE FLACQ',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21948,'42444','Postmuenster','POSTMUENSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21949,'302','Postmunster','POSTMUNSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:18','1900-01-01 00:00:00',1,0,1),(21950,'16646','Postojna','POSTOJNA',NULL,'','Slovenia','Postojna',0,0,192,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21951,'41788','Postolowo','POSTOLOWO',NULL,'','Poland','',0,0,174,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21952,'25675','Postville','POSTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21953,'32947','Poteau','POTEAU',NULL,'','United States','',0,0,231,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21954,'12702','Potenza','POTENZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:19','1900-01-01 00:00:00',1,0,1),(21955,'3133','Potes','POTES',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21956,'40029','Poti','POTI',NULL,'','Georgia','',0,0,82,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21957,'43060','Potidea','POTIDEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21958,'42647','Potlogi','POTLOGI',NULL,'','Romania','',0,0,179,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21959,'21767','Potomac','POTOMAC',NULL,'','United States','',0,0,231,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21960,'9585','Potos','POTOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:20','1900-01-01 00:00:00',1,0,1),(21961,'27752','Potosi','POTOSI',NULL,'','United States','',0,0,231,'2016-10-17 11:41:21','1900-01-01 00:00:00',1,0,1),(21962,'24955','Potosi','POTOSI',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:41:21','1900-01-01 00:00:00',1,0,1),(21963,'24223','Potrero','POTRERO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:41:21','1900-01-01 00:00:00',1,0,1),(21964,'29055','Potsdam','POTSDAM',NULL,'','United States','',0,0,231,'2016-10-17 11:41:21','1900-01-01 00:00:00',1,0,1),(21965,'2083','Potsdam','POTSDAM',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:22','1900-01-01 00:00:00',1,0,1),(21966,'8746','Pott Shrigley','POTT SHRIGLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:22','1900-01-01 00:00:00',1,0,1),(21967,'8747','Potters Bar','POTTERS BAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:22','1900-01-01 00:00:00',1,0,1),(21968,'8748','Potton','POTTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:22','1900-01-01 00:00:00',1,0,1),(21969,'34291','Potts Point','POTTS POINT',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:23','1900-01-01 00:00:00',1,0,1),(21970,'30870','Pottsboro','POTTSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:41:23','1900-01-01 00:00:00',1,0,1),(21971,'30137','Pottstown','POTTSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:41:23','1900-01-01 00:00:00',1,0,1),(21972,'30138','Pottsville','POTTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:24','1900-01-01 00:00:00',1,0,1),(21973,'29056','Poughkeepsie','POUGHKEEPSIE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:24','1900-01-01 00:00:00',1,0,1),(21974,'5486','Pougues-les-eaux','POUGUES-LES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 11:41:25','1900-01-01 00:00:00',1,0,1),(21975,'5487','Pouilly-en-auxois','POUILLY-EN-AUXOIS',NULL,'','France','',0,0,76,'2016-10-17 11:41:25','1900-01-01 00:00:00',1,0,1),(21976,'38844','Pouilly-sur-loire','POUILLY-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:41:26','1900-01-01 00:00:00',1,0,1),(21977,'1618','Pouligny Notre Dame','POULIGNY NOTRE DAME',NULL,'','France','',0,0,76,'2016-10-17 11:41:26','1900-01-01 00:00:00',1,0,1),(21978,'5674','Pouligny-notre-dame','POULIGNY-NOTRE-DAME',NULL,'','France','',0,0,76,'2016-10-17 11:41:26','1900-01-01 00:00:00',1,0,1),(21979,'31590','Poulsbo','POULSBO',NULL,'','United States','',0,0,231,'2016-10-17 11:41:26','1900-01-01 00:00:00',1,0,1),(21980,'31376','Poultney','POULTNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:41:27','1900-01-01 00:00:00',1,0,1),(21981,'37302','Poulton-le-fylde','POULTON-LE-FYLDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:27','1900-01-01 00:00:00',1,0,1),(21982,'14434','Poum','POUM',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:41:27','1900-01-01 00:00:00',1,0,1),(21983,'29058','Pound Ridge','POUND RIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:28','1900-01-01 00:00:00',1,0,1),(21984,'31202','Pounding Mill','POUNDING MILL',NULL,'','United States','',0,0,231,'2016-10-17 11:41:28','1900-01-01 00:00:00',1,0,1),(21985,'8749','Poundon','POUNDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:28','1900-01-01 00:00:00',1,0,1),(21986,'38202','Pounta','POUNTA',NULL,'','Greece','',0,0,86,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21987,'21','Pouso Alegre','POUSO ALEGRE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21988,'6265','Pouzauges','POUZAUGES',NULL,'','France','',0,0,76,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21989,'11392','Pove Del Grappa','POVE DEL GRAPPA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21990,'39479','Povegliano','POVEGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:29','1900-01-01 00:00:00',1,0,1),(21991,'38062','Poviglio','POVIGLIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21992,'41646','Povoa De Lanhoso','POVOA DE LANHOSO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21993,'16096','Povoacao','POVOACAO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21994,'22830','Povungnituk','POVUNGNITUK',NULL,'','Canada','',0,0,39,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21995,'18806','Poway','POWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:41:30','1900-01-01 00:00:00',1,0,1),(21996,'19899','Powder Springs','POWDER SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:41:31','1900-01-01 00:00:00',1,0,1),(21997,'33522','Powderhorn','POWDERHORN',NULL,'','United States','',0,0,231,'2016-10-17 11:41:31','1900-01-01 00:00:00',1,0,1),(21998,'32124','Powell','POWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:41:32','1900-01-01 00:00:00',1,0,1),(21999,'25515','Powell River','POWELL RIVER',NULL,'','Canada','',0,0,39,'2016-10-17 11:41:33','1900-01-01 00:00:00',1,0,1),(22000,'7266','Powmill','POWMILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:33','1900-01-01 00:00:00',1,0,1),(22001,'31377','Pownal','POWNAL',NULL,'','United States','',0,0,231,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22002,'40580','Poysdorf','POYSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22003,'13781','Poza Rica','POZA RICA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22004,'15724','Poznan','POZNAN',NULL,'','Poland','',0,0,174,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22005,'3281','Pozo Alcon','POZO ALCON',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22006,'12341','Pozza Di Fassa','POZZA DI FASSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:34','1900-01-01 00:00:00',1,0,1),(22007,'12342','Pozzallo','POZZALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22008,'40538','Pozzilli','POZZILLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22009,'12343','Pozzolengo','POZZOLENGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22010,'12344','Pozzuoli','POZZUOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22011,'11393','Pozzuolo Martesana','POZZUOLO MARTESANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:35','1900-01-01 00:00:00',1,0,1),(22012,'43309','Pra Loup','PRA LOUP',NULL,'','France','',0,0,76,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22013,'42083','Prachinburi','PRACHINBURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22015,'17087','Prachuap Khiri Khan','PRACHUAP KHIRI KHAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22016,'12749','Pradamano','PRADAMANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22017,'4459','Pradelles Cabardes','PRADELLES CABARDES',NULL,'','France','',0,0,76,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22018,'5339','Prades','PRADES',NULL,'','France','',0,0,76,'2016-10-17 11:41:36','1900-01-01 00:00:00',1,0,1),(22019,'6512','Pradet','PRADET',NULL,'','France','',0,0,76,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22020,'37367','Prado','PRADO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22021,'39157','Prado - Parc Chanot','PRADO - PARC CHANOT',NULL,'','France','',0,0,76,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22022,'3282','Prado Del Rey','PRADO DEL REY',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22023,'15596','Praga Poludnie','PRAGA POLUDNIE',NULL,'','Poland','',0,0,174,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22024,'13040','Pragelato','PRAGELATO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:37','1900-01-01 00:00:00',1,0,1),(22025,'40830','Pragpur','PRAGPUR',NULL,'','India','',0,0,101,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22026,'24332','Prague','PRAGUE',NULL,'','Czech Republic','Prague',0,0,58,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22027,'26929','Prahran','PRAHRAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22028,'24145','Praia','PRAIA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22029,'24995','Praia','PRAIA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:38','1900-01-01 00:00:00',1,0,1),(22030,'11394','Praiano','PRAIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:39','1900-01-01 00:00:00',1,0,1),(22031,'15042','Prakashpur','PRAKASHPUR',NULL,'','Nepal','',0,0,153,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22032,'6822','Pralognan-la-vanoise','PRALOGNAN-LA-VANOISE',NULL,'','France','',0,0,76,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22033,'38494','Pralormo','PRALORMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22034,'6513','Pra-loup','PRA-LOUP',NULL,'','France','',0,0,76,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22035,'16961','Pran Buri','PRAN BURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:41:41','1900-01-01 00:00:00',1,0,1),(22037,'23314','Prangins','PRANGINS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:42','1900-01-01 00:00:00',1,0,1),(22038,'41617','Praslin','PRASLIN',NULL,'','Seychelles','Praslin',0,0,188,'2016-10-17 11:41:42','1900-01-01 00:00:00',1,0,1),(22039,'12750','Prata Di Pordenone','PRATA DI PORDENONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:42','1900-01-01 00:00:00',1,0,1),(22040,'38009','Pratdip','PRATDIP',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:42','1900-01-01 00:00:00',1,0,1),(22041,'4460','Prats De Mollo La Preste','PRATS DE MOLLO LA PRESTE',NULL,'','France','',0,0,76,'2016-10-17 11:41:43','1900-01-01 00:00:00',1,0,1),(22042,'2755','Prats I Sansor','PRATS I SANSOR',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:43','1900-01-01 00:00:00',1,0,1),(22043,'21123','Pratt','PRATT',NULL,'','United States','',0,0,231,'2016-10-17 11:41:43','1900-01-01 00:00:00',1,0,1),(22044,'23315','Pratteln','PRATTELN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:43','1900-01-01 00:00:00',1,0,1),(22045,'17940','Prattville','PRATTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:44','1900-01-01 00:00:00',1,0,1),(22046,'64264','Pratunam','PRATUNAM',NULL,'','Thailand','',0,0,215,'2016-10-17 11:41:44','1900-01-01 00:00:00',1,0,1),(22047,'39986','Prauthoy','PRAUTHOY',NULL,'','France','',0,0,76,'2016-10-17 11:41:44','1900-01-01 00:00:00',1,0,1),(22048,'43792','Pravets','PRAVETS',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:41:44','1900-01-01 00:00:00',1,0,1),(22049,'3104','Pravia','PRAVIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:45','1900-01-01 00:00:00',1,0,1),(22050,'28012','Pray','PRAY',NULL,'','United States','',0,0,231,'2016-10-17 11:41:45','1900-01-01 00:00:00',1,0,1),(22051,'6124','Prayssac','PRAYSSAC',NULL,'','France','',0,0,76,'2016-10-17 11:41:45','1900-01-01 00:00:00',1,0,1),(22052,'23316','Praz','PRAZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:45','1900-01-01 00:00:00',1,0,1),(22053,'41899','Praz Sur Arly','PRAZ SUR ARLY',NULL,'','France','',0,0,76,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22054,'15959','Prazeres','PRAZERES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22055,'5087','Praz-sur-arly','PRAZ-SUR-ARLY',NULL,'','France','',0,0,76,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22056,'38567','Prechacq-les-bains','PRECHACQ-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22057,'23317','Preda','PREDA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:46','1900-01-01 00:00:00',1,0,1),(22058,'12348','Predazzo','PREDAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22059,'37575','Preddvor','PREDDVOR',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22060,'16228','Predeal','PREDEAL',NULL,'','Romania','',0,0,179,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22061,'39757','Predlitz-turrach','PREDLITZ-TURRACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22062,'1844','Preetz','PREETZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22063,'6266','Prefailles','PREFAILLES',NULL,'','France','',0,0,76,'2016-10-17 11:41:47','1900-01-01 00:00:00',1,0,1),(22064,'12910','Preganziol','PREGANZIOL',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22065,'11396','Pregnana Milanese','PREGNANA MILANESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22066,'41309','Prellezo','PRELLEZO',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22067,'43866','Prem Nagar','PREM NAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22068,'37863','Prémanon','PRÉMANON',NULL,'','France','',0,0,76,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22069,'44082','Premesques','PREMESQUES',NULL,'','France','',0,0,76,'2016-10-17 11:41:48','1900-01-01 00:00:00',1,0,1),(22070,'2756','Premia De Dalt','PREMIA DE DALT',NULL,'','Spain','',0,0,199,'2016-10-17 11:41:49','1900-01-01 00:00:00',1,0,1),(22071,'31864','Prentice','PRENTICE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:49','1900-01-01 00:00:00',1,0,1),(22072,'41868','Prerov','PREROV',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:41:49','1900-01-01 00:00:00',1,0,1),(22073,'39699','Pre-saint-didier','PRE-SAINT-DIDIER',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:50','1900-01-01 00:00:00',1,0,1),(22074,'8750','Prescot','PRESCOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:50','1900-01-01 00:00:00',1,0,1),(22075,'31865','Prescott','PRESCOTT',NULL,'','United States','',0,0,231,'2016-10-17 11:41:50','1900-01-01 00:00:00',1,0,1),(22076,'11397','Presezzo','PRESEZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:53','1900-01-01 00:00:00',1,0,1),(22077,'33042','Presho','PRESHO',NULL,'','United States','',0,0,231,'2016-10-17 11:41:53','1900-01-01 00:00:00',1,0,1),(22078,'12349','Presicce','PRESICCE',NULL,'','Italy','',0,0,107,'2016-10-17 11:41:53','1900-01-01 00:00:00',1,0,1),(22079,'41991','Presidente Prudente','PRESIDENTE PRUDENTE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:41:54','1900-01-01 00:00:00',1,0,1),(22080,'30872','Presidio','PRESIDIO',NULL,'','United States','',0,0,231,'2016-10-17 11:41:54','1900-01-01 00:00:00',1,0,1),(22081,'40501','Presov','PRESOV',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:41:54','1900-01-01 00:00:00',1,0,1),(22082,'39812','Presque Isle','PRESQUE ISLE',NULL,'','United States','',0,0,231,'2016-10-17 11:41:54','1900-01-01 00:00:00',1,0,1),(22083,'27020','Presseggersee','PRESSEGGERSEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22084,'8751','Prestatyn','PRESTATYN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22085,'8752','Prestbury','PRESTBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22086,'7267','Presteigne','PRESTEIGNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22087,'1343','Preston','PRESTON',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:41:55','1900-01-01 00:00:00',1,0,1),(22088,'26543','Preston','PRESTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:56','1900-01-01 00:00:00',1,0,1),(22089,'27492','Preston','PRESTON',NULL,'','United States','',0,0,231,'2016-10-17 11:41:56','1900-01-01 00:00:00',1,0,1),(22090,'43736','Prestons','PRESTONS',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:57','1900-01-01 00:00:00',1,0,1),(22091,'33719','Prestonsburg','PRESTONSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:41:57','1900-01-01 00:00:00',1,0,1),(22092,'8753','Prestwich','PRESTWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22093,'1167','Prestwick','PRESTWICK',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22094,'32595','Pretoria','PRETORIA',NULL,'','South Africa','Pretoria',0,0,195,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22095,'34292','Pretty Beach','PRETTY BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22096,'37540','Prevelly','PREVELLY',NULL,'','Australia','',0,0,13,'2016-10-17 11:41:58','1900-01-01 00:00:00',1,0,1),(22097,'23068','Preverenges','PREVERENGES',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:59','1900-01-01 00:00:00',1,0,1),(22098,'23069','Prevessin','PREVESSIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:41:59','1900-01-01 00:00:00',1,0,1),(22099,'6689','Prevessin','PREVESSIN',NULL,'','France','',0,0,76,'2016-10-17 11:41:59','1900-01-01 00:00:00',1,0,1),(22100,'44083','Prevessin-moens','PREVESSIN-MOENS',NULL,'','France','',0,0,76,'2016-10-17 11:41:59','1900-01-01 00:00:00',1,0,1),(22101,'9724','Preveza','PREVEZA',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:00','1900-01-01 00:00:00',1,0,1),(22102,'37389','Pribylina','PRIBYLINA',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:42:00','1900-01-01 00:00:00',1,0,1),(22103,'33384','Price','PRICE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:00','1900-01-01 00:00:00',1,0,1),(22104,'17941','Priceville','PRICEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:01','1900-01-01 00:00:00',1,0,1),(22105,'25348','Priddis','PRIDDIS',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:01','1900-01-01 00:00:00',1,0,1),(22106,'40741','Priego','PRIEGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:01','1900-01-01 00:00:00',1,0,1),(22107,'43337','Prien Am Chiemsee','PRIEN AM CHIEMSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:02','1900-01-01 00:00:00',1,0,1),(22108,'14176','Prilep','PRILEP',NULL,'','Macedonia, FYR Of','',0,0,191,'2016-10-17 11:42:02','1900-01-01 00:00:00',1,0,1),(22109,'34293','Primbee','PRIMBEE',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:02','1900-01-01 00:00:00',1,0,1),(22110,'32843','Primm','PRIMM',NULL,'','United States','',0,0,231,'2016-10-17 11:42:02','1900-01-01 00:00:00',1,0,1),(22111,'13910','Primo Tapia','PRIMO TAPIA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:03','1900-01-01 00:00:00',1,0,1),(22112,'24799','Primorsko','PRIMORSKO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:42:03','1900-01-01 00:00:00',1,0,1),(22113,'9973','Primosten','PRIMOSTEN',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:03','1900-01-01 00:00:00',1,0,1),(22114,'22960','Prince Albert','PRINCE ALBERT',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:03','1900-01-01 00:00:00',1,0,1),(22115,'44193','Princes Risborough','PRINCES RISBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:04','1900-01-01 00:00:00',1,0,1),(22116,'25109','Princesa Isabel','PRINCESA ISABEL',NULL,'','Brazil','',0,0,30,'2016-10-17 11:42:04','1900-01-01 00:00:00',1,0,1),(22117,'21769','Princess Anne','PRINCESS ANNE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:05','1900-01-01 00:00:00',1,0,1),(22118,'25518','Princeton','PRINCETON',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:05','1900-01-01 00:00:00',1,0,1),(22119,'28393','Princeton','PRINCETON',NULL,'','United States','',0,0,231,'2016-10-17 11:42:05','1900-01-01 00:00:00',1,0,1),(22120,'16582','Principe Island','PRINCIPE ISLAND',NULL,'','Sao Tome And Principe','',0,0,185,'2016-10-17 11:42:10','1900-01-01 00:00:00',1,0,1),(22121,'29736','Prineville','PRINEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:10','1900-01-01 00:00:00',1,0,1),(22122,'40520','Pringle Bay','PRINGLE BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:42:10','1900-01-01 00:00:00',1,0,1),(22123,'9850','Prins Christian Sund','PRINS CHRISTIAN SUND',NULL,'','Greenland','',0,0,87,'2016-10-17 11:42:10','1900-01-01 00:00:00',1,0,1),(22124,'27494','Prior Lake','PRIOR LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22125,'11398','Priora','PRIORA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22126,'32377','Pristina','PRISTINA',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22127,'39118','Privlaka','PRIVLAKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22128,'1539','Prizba','PRIZBA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22129,'468','Probbach','PROBBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22130,'35371','Probolinggo','PROBOLINGGO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:42:11','1900-01-01 00:00:00',1,0,1),(22131,'8755','Probus','PROBUS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:12','1900-01-01 00:00:00',1,0,1),(22132,'12350','Procchio','PROCCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:12','1900-01-01 00:00:00',1,0,1),(22133,'12351','Procida','PROCIDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:12','1900-01-01 00:00:00',1,0,1),(22134,'27495','Proctor','PROCTOR',NULL,'','United States','',0,0,231,'2016-10-17 11:42:13','1900-01-01 00:00:00',1,0,1),(22135,'31378','Proctorsville','PROCTORSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:13','1900-01-01 00:00:00',1,0,1),(22136,'36585','Proenca A Nova','PROENCA A NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:42:13','1900-01-01 00:00:00',1,0,1),(22137,'15899','Proenca-a-nova','PROENCA-A-NOVA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22138,'9725','Profitis Ilias','PROFITIS ILIAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22139,'13885','Progreso','PROGRESO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22140,'37391','Projan','PROJAN',NULL,'','France','',0,0,76,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22141,'38171','Propata','PROPATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22142,'4888','Propriano','PROPRIANO',NULL,'','France','',0,0,76,'2016-10-17 11:42:14','1900-01-01 00:00:00',1,0,1),(22143,'26427','Proserpine','PROSERPINE',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:15','1900-01-01 00:00:00',1,0,1),(22144,'33722','Prospect','PROSPECT',NULL,'','United States','',0,0,231,'2016-10-17 11:42:15','1900-01-01 00:00:00',1,0,1),(22145,'26817','Prospect','PROSPECT',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:15','1900-01-01 00:00:00',1,0,1),(22146,'13078','Prospect','PROSPECT',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:42:16','1900-01-01 00:00:00',1,0,1),(22147,'30393','Prosperity','PROSPERITY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:17','1900-01-01 00:00:00',1,0,1),(22148,'31591','Prosser','PROSSER',NULL,'','United States','',0,0,231,'2016-10-17 11:42:17','1900-01-01 00:00:00',1,0,1),(22149,'11399','Provaglio D\'iseo','PROVAGLIO D\'ISEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:18','1900-01-01 00:00:00',1,0,1),(22150,'39717','Provatas','PROVATAS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:18','1900-01-01 00:00:00',1,0,1),(22151,'30263','Providence','PROVIDENCE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:18','1900-01-01 00:00:00',1,0,1),(22152,'902','Providencia','PROVIDENCIA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:42:19','1900-01-01 00:00:00',1,0,1),(22153,'16938','Providenciales','PROVIDENCIALES',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:42:19','1900-01-01 00:00:00',1,0,1),(22154,'6190','Proville','PROVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:42:19','1900-01-01 00:00:00',1,0,1),(22155,'21501','Provincetown','PROVINCETOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:42:20','1900-01-01 00:00:00',1,0,1),(22156,'5869','Provins','PROVINS',NULL,'','France','',0,0,76,'2016-10-17 11:42:20','1900-01-01 00:00:00',1,0,1),(22157,'33387','Provo','PROVO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:20','1900-01-01 00:00:00',1,0,1),(22158,'25349','Provost','PROVOST',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:21','1900-01-01 00:00:00',1,0,1),(22159,'22217','Prudenville','PRUDENVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:21','1900-01-01 00:00:00',1,0,1),(22160,'17754','Prudhoe Bay','PRUDHOE BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:22','1900-01-01 00:00:00',1,0,1),(22161,'24319','Pruhonice','PRUHONICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:42:22','1900-01-01 00:00:00',1,0,1),(22162,'37186','Prullans','PRULLANS',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:22','1900-01-01 00:00:00',1,0,1),(22163,'15701','Pruszkow','PRUSZKOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:22','1900-01-01 00:00:00',1,0,1),(22164,'38674','Prvic Luka','PRVIC LUKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:23','1900-01-01 00:00:00',1,0,1),(22165,'32948','Pryor','PRYOR',NULL,'','United States','',0,0,231,'2016-10-17 11:42:23','1900-01-01 00:00:00',1,0,1),(22166,'15672','Przemysl','PRZEMYSL',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:23','1900-01-01 00:00:00',1,0,1),(22167,'15673','Przeworsk','PRZEWORSK',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:23','1900-01-01 00:00:00',1,0,1),(22168,'39522','Psakoudia','PSAKOUDIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22169,'43461','Psarou Beach','PSAROU BEACH',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22170,'40723','Psathopirgos','PSATHOPIRGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22171,'42485','Psathopyrgos','PSATHOPYRGOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22172,'9726','Psikhikon','PSIKHIKON',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22173,'16423','Pskov','PSKOV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22174,'42484','Ptolemaida','PTOLEMAIDA',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22175,'37617','Ptuj','PTUJ',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:42:24','1900-01-01 00:00:00',1,0,1),(22176,'20107','Puako','PUAKO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22177,'15435','Pucallpa','PUCALLPA',NULL,'','Peru','',0,0,172,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22178,'24394','Puch Bei Hallein','PUCH BEI HALLEIN',NULL,'','Austria','',0,0,14,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22179,'38397','Puchberg Am Schneeberg','PUCHBERG AM SCHNEEBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22180,'37724','Puchenstuben','PUCHENSTUBEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22181,'303','Puchheim','PUCHHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22182,'38045','Pucisca','PUCISCA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22183,'15622','Puck','PUCK',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22184,'23512','Pucon','PUCON',NULL,'','Chile','',0,0,45,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22185,'23619','Pudong Airport','PUDONG AIRPORT',NULL,'','China','',0,0,46,'2016-10-17 11:42:25','1900-01-01 00:00:00',1,0,1),(22186,'8756','Pudsey','PUDSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:26','1900-01-01 00:00:00',1,0,1),(22187,'10459','Puducherry','PUDUCHERRY',NULL,'','India','',0,0,101,'2016-10-17 11:42:26','1900-01-01 00:00:00',1,0,1),(22188,'14067','Puebla','PUEBLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:26','1900-01-01 00:00:00',1,0,1),(22189,'3776','Puebla De Farnals','PUEBLA DE FARNALS',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:26','1900-01-01 00:00:00',1,0,1),(22190,'33523','Pueblo','PUEBLO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:27','1900-01-01 00:00:00',1,0,1),(22191,'15413','Pueblo Libre','PUEBLO LIBRE',NULL,'','Peru','',0,0,172,'2016-10-17 11:42:27','1900-01-01 00:00:00',1,0,1),(22192,'23548','Puente Alto','PUENTE ALTO',NULL,'','Chile','',0,0,45,'2016-10-17 11:42:28','1900-01-01 00:00:00',1,0,1),(22193,'40482','Puente De Genave','PUENTE DE GENAVE',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:28','1900-01-01 00:00:00',1,0,1),(22194,'14047','Puente De Ixtla','PUENTE DE IXTLA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:28','1900-01-01 00:00:00',1,0,1),(22195,'37882','Puerto Angel','PUERTO ANGEL',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22196,'43217','Puerto Arenas','PUERTO ARENAS',NULL,'','Chile','Puerto Arenas',0,0,45,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22197,'32180','Puerto Ayacucho','PUERTO AYACUCHO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22198,'2387','Puerto Ayora','PUERTO AYORA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22199,'9880','Puerto Barrios','PUERTO BARRIOS',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22200,'24094','Puerto Berrio','PUERTO BERRIO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:42:29','1900-01-01 00:00:00',1,0,1),(22201,'14450','Puerto Cabezas','PUERTO CABEZAS',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:42:30','1900-01-01 00:00:00',1,0,1),(22202,'9957','Puerto Cortes','PUERTO CORTES',NULL,'','Honduras','',0,0,97,'2016-10-17 11:42:30','1900-01-01 00:00:00',1,0,1),(22203,'15437','Puerto Galera','PUERTO GALERA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:42:31','1900-01-01 00:00:00',1,0,1),(22204,'15380','Puerto General San Martin','PUERTO GENERAL SAN MARTIN',NULL,'','Peru','',0,0,172,'2016-10-17 11:42:31','1900-01-01 00:00:00',1,0,1),(22205,'24242','Puerto Jimenez','PUERTO JIMENEZ',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:42:31','1900-01-01 00:00:00',1,0,1),(22206,'2362','Puerto Plata','PUERTO PLATA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:42:33','1900-01-01 00:00:00',1,0,1),(22207,'951','Puerto Quijarro','PUERTO QUIJARRO',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:42:33','1900-01-01 00:00:00',1,0,1),(22208,'15733','Puerto Rico','PUERTO RICO',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:42:33','1900-01-01 00:00:00',1,0,1),(22209,'3419','Puertollano','PUERTOLLANO',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:34','1900-01-01 00:00:00',1,0,1),(22210,'6514','Puget','PUGET',NULL,'','France','',0,0,76,'2016-10-17 11:42:34','1900-01-01 00:00:00',1,0,1),(22211,'42333','Pugnochiuso','PUGNOCHIUSO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:35','1900-01-01 00:00:00',1,0,1),(22212,'20108','Puhi','PUHI',NULL,'','United States','',0,0,231,'2016-10-17 11:42:35','1900-01-01 00:00:00',1,0,1),(22213,'3582','Puigcerda','PUIGCERDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:35','1900-01-01 00:00:00',1,0,1),(22214,'2924','Puigpunyent','PUIGPUNYENT',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:36','1900-01-01 00:00:00',1,0,1),(22215,'4880','Puilboreau','PUILBOREAU',NULL,'','France','',0,0,76,'2016-10-17 11:42:36','1900-01-01 00:00:00',1,0,1),(22216,'5241','Pujols','PUJOLS',NULL,'','France','',0,0,76,'2016-10-17 11:42:36','1900-01-01 00:00:00',1,0,1),(22217,'20109','Pukalani','PUKALANI',NULL,'','United States','',0,0,231,'2016-10-17 11:42:36','1900-01-01 00:00:00',1,0,1),(22218,'25621','Pukatawagan','PUKATAWAGAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:42:37','1900-01-01 00:00:00',1,0,1),(22219,'20110','Pukoo','PUKOO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:37','1900-01-01 00:00:00',1,0,1),(22220,'10035','Pula','PULA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:37','1900-01-01 00:00:00',1,0,1),(22221,'12786','Pula','PULA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:37','1900-01-01 00:00:00',1,0,1),(22222,'42847','Pulai','PULAI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:42:38','1900-01-01 00:00:00',1,0,1),(22223,'29059','Pulaski','PULASKI',NULL,'','United States','',0,0,231,'2016-10-17 11:42:38','1900-01-01 00:00:00',1,0,1),(22224,'42848','Pulau Besar','PULAU BESAR',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:42:39','1900-01-01 00:00:00',1,0,1),(22225,'8757','Pulborough','PULBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:40','1900-01-01 00:00:00',1,0,1),(22226,'8758','Pulford','PULFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22227,'555','Pulheim','PULHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22228,'17412','Puli','PULI',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22229,'5488','Puligny-montrachet','PULIGNY-MONTRACHET',NULL,'','France','',0,0,76,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22230,'31592','Pullman','PULLMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:42:41','1900-01-01 00:00:00',1,0,1),(22231,'12352','Pulsano','PULSANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:42','1900-01-01 00:00:00',1,0,1),(22232,'37121','Pumba','PUMBA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:42:42','1900-01-01 00:00:00',1,0,1),(22233,'16172','Punaauia','PUNAAUIA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:42:42','1900-01-01 00:00:00',1,0,1),(22234,'15242','Punakaiki','PUNAKAIKI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:42:42','1900-01-01 00:00:00',1,0,1),(22235,'20112','Punaluu (Hawaii)','PUNALUU (HAWAII)',NULL,'','United States','',0,0,231,'2016-10-17 11:42:43','1900-01-01 00:00:00',1,0,1),(22236,'9999','Punat','PUNAT',NULL,'','Croatia','',0,0,55,'2016-10-17 11:42:43','1900-01-01 00:00:00',1,0,1),(22237,'39949','Punchbowl','PUNCHBOWL',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:43','1900-01-01 00:00:00',1,0,1),(22238,'10652','Pune','PUNE',NULL,'','India','Pune',5,0,101,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22239,'4035','Punkaharju','PUNKAHARJU',NULL,'','Finland','',0,0,75,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22240,'11400','Punta Ala','PUNTA ALA',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22241,'44235','Punta Allen','PUNTA ALLEN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22242,'23480','Punta Arenas','PUNTA ARENAS',NULL,'','Chile','',0,0,45,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22243,'15464','Punta Bunga','PUNTA BUNGA',NULL,'','Philippines','',0,0,173,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22244,'2375','Punta Cana','PUNTA CANA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:42:44','1900-01-01 00:00:00',1,0,1),(22245,'917','Punta Cocles','PUNTA COCLES',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22246,'17534','Punta Del Este','PUNTA DEL ESTE',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22247,'19584','Punta Gorda','PUNTA GORDA',NULL,'','United States','',0,0,231,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22248,'24925','Punta Gorda','PUNTA GORDA',NULL,'','Belize','',0,0,22,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22249,'38339','Punta Hermosa','PUNTA HERMOSA',NULL,'','Peru','',0,0,172,'2016-10-17 11:42:45','1900-01-01 00:00:00',1,0,1),(22250,'38660','Puntallana','PUNTALLANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:46','1900-01-01 00:00:00',1,0,1),(22251,'24183','Puntarenas','PUNTARENAS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:42:46','1900-01-01 00:00:00',1,0,1),(22252,'41121','Punto Fijo','PUNTO FIJO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:42:46','1900-01-01 00:00:00',1,0,1),(22253,'30139','Punxsutawney','PUNXSUTAWNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:47','1900-01-01 00:00:00',1,0,1),(22254,'32950','Purcell','PURCELL',NULL,'','United States','',0,0,231,'2016-10-17 11:42:47','1900-01-01 00:00:00',1,0,1),(22255,'29060','Purchase','PURCHASE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:48','1900-01-01 00:00:00',1,0,1),(22256,'29061','Purdys','PURDYS',NULL,'','United States','',0,0,231,'2016-10-17 11:42:48','1900-01-01 00:00:00',1,0,1),(22257,'40045','Purfleet','PURFLEET',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:48','1900-01-01 00:00:00',1,0,1),(22258,'33526','Purgatory - Durango','PURGATORY - DURANGO',NULL,'','United States','',0,0,231,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22259,'2155','Purhus','PURHUS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22260,'10663','Puri','PURI',NULL,'','India','Puri',8,0,101,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22261,'42732','Puriscal','PURISCAL',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22262,'8759','Puriton','PURITON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:49','1900-01-01 00:00:00',1,0,1),(22263,'38294','Purkersdorf','PURKERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22264,'29062','Purling','PURLING',NULL,'','United States','',0,0,231,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22265,'26120','Purmamarca','PURMAMARCA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22266,'14654','Purmerend','PURMEREND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22267,'8760','Purton','PURTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22268,'35372','Purwakarta','PURWAKARTA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22269,'10297','Purwokerto','PURWOKERTO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:42:50','1900-01-01 00:00:00',1,0,1),(22270,'10578','Pushkar','PUSHKAR',NULL,'','India','Pushkar',2,0,101,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22271,'37991','Pushkin','PUSHKIN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22272,'6690','Pusignan','PUSIGNAN',NULL,'','France','',0,0,76,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22274,'16285','Puskinskaya - Tverskaya','PUSKINSKAYA - TVERSKAYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22275,'43173','Putao','PUTAO',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22276,'1845','Putbus','PUTBUS',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:51','1900-01-01 00:00:00',1,0,1),(22277,'4784','Puteaux','PUTEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22278,'37375','Puthenthope','PUTHENTHOPE',NULL,'','India','',0,0,101,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22279,'23776','Putian','PUTIAN',NULL,'','China','',0,0,46,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22280,'12353','Putignano','PUTIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22281,'16375','Putilkovo','PUTILKOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22282,'29506','Put-in-bay','PUT-IN-BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:52','1900-01-01 00:00:00',1,0,1),(22283,'19147','Putnam','PUTNAM',NULL,'','United States','',0,0,231,'2016-10-17 11:42:53','1900-01-01 00:00:00',1,0,1),(22284,'31379','Putney','PUTNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:42:53','1900-01-01 00:00:00',1,0,1),(22285,'14322','Putra World Trade Centre','PUTRA WORLD TRADE CENTRE',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22286,'14323','Putrajaya','PUTRAJAYA',NULL,'','Malaysia','Putrajaya',0,0,132,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22287,'38552','Puttaparthi','PUTTAPARTHI',NULL,'','India','Puttaparthi',7,0,101,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22289,'14608','Putten','PUTTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22290,'38923','Puttgarden','PUTTGARDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22291,'34893','Putuoshan','PUTUOSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22292,'10257','Putussibau','PUTUSSIBAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22293,'304','Putzbrunn','PUTZBRUNN',NULL,'','Germany','',0,0,83,'2016-10-17 11:42:54','1900-01-01 00:00:00',1,0,1),(22294,'20114','Puuiki','PUUIKI',NULL,'','United States','',0,0,231,'2016-10-17 11:42:55','1900-01-01 00:00:00',1,0,1),(22295,'20115','Puunene','PUUNENE',NULL,'','United States','',0,0,231,'2016-10-17 11:42:55','1900-01-01 00:00:00',1,0,1),(22296,'41900','Puy Saint Vincent','PUY SAINT VINCENT',NULL,'','France','',0,0,76,'2016-10-17 11:42:56','1900-01-01 00:00:00',1,0,1),(22297,'31594','Puyallup','PUYALLUP',NULL,'','United States','',0,0,231,'2016-10-17 11:42:56','1900-01-01 00:00:00',1,0,1),(22298,'23796','Puyang','PUYANG',NULL,'','China','',0,0,46,'2016-10-17 11:42:56','1900-01-01 00:00:00',1,0,1),(22299,'4461','Puy-de-dome','PUY-DE-DOME',NULL,'','France','',0,0,76,'2016-10-17 11:42:56','1900-01-01 00:00:00',1,0,1),(22300,'23533','Puyehue','PUYEHUE',NULL,'','Chile','',0,0,45,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22301,'40585','Puygiron','PUYGIRON',NULL,'','France','',0,0,76,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22302,'5242','Puymirol','PUYMIROL',NULL,'','France','',0,0,76,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22303,'4462','Puy-saint-vincent','PUY-SAINT-VINCENT',NULL,'','France','',0,0,76,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22304,'3778','Puzol','PUZOL',NULL,'','Spain','',0,0,199,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22305,'8761','Pwllheli','PWLLHELI',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:42:57','1900-01-01 00:00:00',1,0,1),(22306,'37436','Pyatigorsk','PYATIGORSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22307,'42059','Pyay','PYAY',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22308,'35815','Pyeongchang','PYEONGCHANG',NULL,'','South Korea','',0,0,197,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22309,'41719','Pyha','PYHA',NULL,'','Finland','',0,0,75,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22310,'35122','Pyhatunturi','PYHATUNTURI',NULL,'','Finland','',0,0,75,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22311,'42483','Pylos','PYLOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22312,'39209','Pyoseon-ri','PYOSEON-RI',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 11:42:58','1900-01-01 00:00:00',1,0,1),(22313,'34294','Pyrmont','PYRMONT',NULL,'','Australia','',0,0,13,'2016-10-17 11:42:59','1900-01-01 00:00:00',1,0,1),(22314,'44051','Pyrzowice','PYRZOWICE',NULL,'','Poland','',0,0,174,'2016-10-17 11:42:59','1900-01-01 00:00:00',1,0,1),(22315,'9587','Pythagorio','PYTHAGORIO',NULL,'','Greece','',0,0,86,'2016-10-17 11:42:59','1900-01-01 00:00:00',1,0,1),(22316,'42058','Pyun U Lwin','PYUN U LWIN',NULL,'','Myanmar','',0,0,150,'2016-10-17 11:42:59','1900-01-01 00:00:00',1,0,1),(22317,'13632','Qacha\'s Nek','QACHA\'S NEK',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22318,'16499','Qaisumah','QAISUMAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22319,'37364','Qamea Island','QAMEA ISLAND',NULL,'','Fiji Islands','',0,0,74,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22320,'43147','Qaraoun','QARAOUN',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22321,'14189','Qawra','QAWRA',NULL,'','Malta','',0,0,135,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22322,'23907','Qibao','QIBAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22323,'34895','Qidong','QIDONG',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22324,'23844','Qiemo','QIEMO',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22325,'23621','Qieshikou','QIESHIKOU',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22326,'23919','Qingcheng','QINGCHENG',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22327,'23928','Qingdao','QINGDAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22328,'23622','Qinghuayuan','QINGHUAYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22329,'23908','Qingpu','QINGPU',NULL,'','China','',0,0,46,'2016-10-17 11:43:00','1900-01-01 00:00:00',1,0,1),(22330,'23561','Qingtao','QINGTAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22331,'23689','Qingtian','QINGTIAN',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22332,'23623','Qingyang','QINGYANG',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22333,'23624','Qingyuan','QINGYUAN',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22334,'23625','Qinhangdao','QINHANGDAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22335,'23808','Qinhuangdao','QINHUANGDAO',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22336,'23986','Qionghai','QIONGHAI',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22337,'23788','Qiqihar','QIQIHAR',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22338,'11052','Qiryat Anavim','QIRYAT ANAVIM',NULL,'','Israel','',0,0,106,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22339,'32361','Qishn','QISHN',NULL,'','Yemen','',0,0,240,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22340,'34897','Qitai','QITAI',NULL,'','China','',0,0,46,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22341,'35435','Qom','QOM',NULL,'','Iran','',0,0,103,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22342,'25519','Quadra Island','QUADRA ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:01','1900-01-01 00:00:00',1,0,1),(22343,'30140','Quakertown','QUAKERTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:43:02','1900-01-01 00:00:00',1,0,1),(22344,'40777','Qualiano','QUALIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:02','1900-01-01 00:00:00',1,0,1),(22345,'25520','Qualicum','QUALICUM',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:02','1900-01-01 00:00:00',1,0,1),(22346,'30873','Quanah','QUANAH',NULL,'','United States','',0,0,231,'2016-10-17 11:43:03','1900-01-01 00:00:00',1,0,1),(22347,'935','Quang Binh','QUANG BINH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:43:03','1900-01-01 00:00:00',1,0,1),(22348,'41695','Quangzhou','QUANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:43:03','1900-01-01 00:00:00',1,0,1),(22349,'31205','Quantico','QUANTICO',NULL,'','United States','',0,0,231,'2016-10-17 11:43:03','1900-01-01 00:00:00',1,0,1),(22350,'23777','Quanzhou','QUANZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22351,'22831','Quaqtaq','QUAQTAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22352,'12354','Quarrata','QUARRATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22353,'5489','Quarre-les-tombes','QUARRE-LES-TOMBES',NULL,'','France','',0,0,76,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22354,'9936','Quarry Bay','QUARRY BAY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22355,'15945','Quarteira','QUARTEIRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:43:04','1900-01-01 00:00:00',1,0,1),(22356,'9370','Quartier D Orleans','QUARTIER D ORLEANS',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:43:05','1900-01-01 00:00:00',1,0,1),(22357,'12355','Quarto','QUARTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:05','1900-01-01 00:00:00',1,0,1),(22358,'18195','Quartzsite','QUARTZSITE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:06','1900-01-01 00:00:00',1,0,1),(22359,'25522','Quathiaski Cove','QUATHIASKI COVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:06','1900-01-01 00:00:00',1,0,1),(22360,'43968','Quatre-bornes','QUATRE-BORNES',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:43:06','1900-01-01 00:00:00',1,0,1),(22361,'965','Quatro Barras','QUATRO BARRAS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:43:06','1900-01-01 00:00:00',1,0,1),(22362,'38806','Quattordio','QUATTORDIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22363,'34295','Queanbeyan','QUEANBEYAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22364,'22833','Quebec','QUEBEC',NULL,'','Canada','Quebec city',0,0,39,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22365,'15762','Quebradillas','QUEBRADILLAS',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22366,'31380','Quechee','QUECHEE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:07','1900-01-01 00:00:00',1,0,1),(22367,'8762','Quedgeley','QUEDGELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:08','1900-01-01 00:00:00',1,0,1),(22368,'1945','Quedlinburg','QUEDLINBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:08','1900-01-01 00:00:00',1,0,1),(22369,'29063','Queens','QUEENS',NULL,'','United States','',0,0,231,'2016-10-17 11:43:09','1900-01-01 00:00:00',1,0,1),(22370,'29066','Queensbury','QUEENSBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:10','1900-01-01 00:00:00',1,0,1),(22371,'26544','Queenscliff','QUEENSCLIFF',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:11','1900-01-01 00:00:00',1,0,1),(22372,'41824','Queensland Central Coast','QUEENSLAND CENTRAL COAST',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:11','1900-01-01 00:00:00',1,0,1),(22373,'15156','Queenstown','QUEENSTOWN',NULL,'','New Zealand','Queenstown',0,0,157,'2016-10-17 11:43:11','1900-01-01 00:00:00',1,0,1),(22374,'21770','Queenstown','QUEENSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:43:11','1900-01-01 00:00:00',1,0,1),(22375,'26861','Queenstown','QUEENSTOWN',NULL,'','Australia','Queenstown',0,0,13,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22376,'1112','Queenstown/southern Lakes','QUEENSTOWN/SOUTHERN LAKES',NULL,'','NEW ZEALAND','',0,0,157,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22377,'36586','Queijas','QUEIJAS',NULL,'','Portugal','',0,0,175,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22378,'3721','Quejana','QUEJANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22379,'14225','Quelimane','QUELIMANE',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22380,'42763','Quellon','QUELLON',NULL,'','Chile','',0,0,45,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22381,'14020','Quemaro','QUEMARO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22382,'24243','Quepos','QUEPOS',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22383,'2768','Queralbs','QUERALBS',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:12','1900-01-01 00:00:00',1,0,1),(22384,'12357','Quercegrossa','QUERCEGROSSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22385,'13854','Queretaro','QUERETARO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22386,'25523','Quesnel','QUESNEL',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22387,'5591','Questembert','QUESTEMBERT',NULL,'','France','',0,0,76,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22388,'4895','Quetigny','QUETIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:43:13','1900-01-01 00:00:00',1,0,1),(22389,'15322','Quetta','QUETTA',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22390,'5417','Quetteville','QUETTEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22391,'35313','Quetzaltenango','QUETZALTENANGO',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22392,'38056','Quevert','QUEVERT',NULL,'','France','',0,0,76,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22393,'42213','Quezon','QUEZON',NULL,'','Philippines','',0,0,173,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22394,'23929','Qufu','QUFU',NULL,'','China','',0,0,46,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22395,'42091','Qui Nhon','QUI NHON',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:43:14','1900-01-01 00:00:00',1,0,1),(22396,'15465','Quiapo','QUIAPO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22397,'24109','Quibdo','QUIBDO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22398,'5592','Quiberon','QUIBERON',NULL,'','France','',0,0,76,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22399,'27270','Quickborn','QUICKBORN',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22400,'12358','Quiliano','QUILIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22401,'22961','Quill Lake','QUILL LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22402,'39907','Quillan','QUILLAN',NULL,'','France','',0,0,76,'2016-10-17 11:43:15','1900-01-01 00:00:00',1,0,1),(22403,'26080','Quilmes','QUILMES',NULL,'','Argentina','',0,0,10,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22404,'26428','Quilpie','QUILPIE',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22405,'40631','Quilty','QUILTY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22406,'24121','Quimbaya','QUIMBAYA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22407,'5593','Quimper','QUIMPER',NULL,'','France','',0,0,76,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22408,'5594','Quimperle','QUIMPERLE',NULL,'','France','',0,0,76,'2016-10-17 11:43:16','1900-01-01 00:00:00',1,0,1),(22409,'10793','Quin','QUIN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:43:17','1900-01-01 00:00:00',1,0,1),(22410,'31595','Quinault','QUINAULT',NULL,'','United States','',0,0,231,'2016-10-17 11:43:17','1900-01-01 00:00:00',1,0,1),(22411,'40311','Quincieux','QUINCIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:43:17','1900-01-01 00:00:00',1,0,1),(22412,'21502','Quincy','QUINCY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:18','1900-01-01 00:00:00',1,0,1),(22413,'32322','Quine Hill','QUINE HILL',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:43:20','1900-01-01 00:00:00',1,0,1),(22414,'4993','Quineville','QUINEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:43:20','1900-01-01 00:00:00',1,0,1),(22415,'17755','Quinhagak','QUINHAGAK',NULL,'','United States','',0,0,231,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22416,'6125','Quint','QUINT',NULL,'','France','',0,0,76,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22417,'36588','Quinta Do Lago','QUINTA DO LAGO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22418,'23549','Quinta Normal','QUINTA NORMAL',NULL,'','Chile','',0,0,45,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22419,'39553','Quintana De Soba','QUINTANA DE SOBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22420,'3475','Quintanaduenas','QUINTANADUENAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:21','1900-01-01 00:00:00',1,0,1),(22421,'38368','Quintanilla De Arriba','QUINTANILLA DE ARRIBA',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:22','1900-01-01 00:00:00',1,0,1),(22422,'21124','Quinter','QUINTER',NULL,'','United States','',0,0,231,'2016-10-17 11:43:22','1900-01-01 00:00:00',1,0,1),(22423,'23502','Quintero','QUINTERO',NULL,'','Chile','',0,0,45,'2016-10-17 11:43:22','1900-01-01 00:00:00',1,0,1),(22424,'34620','Quinte\'s Isle - Prince Edward County','QUINTE\'S ISLE - PRINCE EDWARD COUNTY',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22425,'37505','Quinto Vicentino','QUINTO VICENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22426,'43221','Quirimbas','QUIRIMBAS',NULL,'','Mozambique','',0,0,149,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22427,'34296','Quirindi','QUIRINDI',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22428,'30875','Quitman','QUITMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:43:23','1900-01-01 00:00:00',1,0,1),(22429,'2408','Quito','QUITO',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22430,'43829','Qujing','QUJING',NULL,'','China','',0,0,46,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22431,'29068','Quogue','QUOGUE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22432,'8763','Quorndon','QUORNDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22433,'7268','Quothquan','QUOTHQUAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:24','1900-01-01 00:00:00',1,0,1),(22434,'34974','Quseir','QUSEIR',NULL,'','Egypt','',0,0,65,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22435,'32298','Quy Nhon','QUY NHON',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22436,'23711','Quzhou','QUZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22437,'43767','Raabs An Der Thaya','RAABS AN DER THAYA',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22438,'3950','Raahe','RAAHE',NULL,'','Finland','',0,0,75,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22439,'37193','Raalte','RAALTE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22440,'14609','Raamsdonksveer','RAAMSDONKSVEER',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22441,'41229','Raattvik','RAATTVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22442,'9974','Rab','RAB',NULL,'','Croatia','',0,0,55,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22443,'10001','Rabac','RABAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22444,'3583','Rabade','RABADE',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:25','1900-01-01 00:00:00',1,0,1),(22445,'35345','Rabafuzes','RABAFUZES',NULL,'','Hungary','',0,0,99,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22446,'13706','Rabat','RABAT',NULL,'','Morocco','Rabat',0,0,148,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22447,'27112','Rabenstein','RABENSTEIN',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22448,'4071','Rabi','RABI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22449,'39882','Racale','RACALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22450,'12359','Racalmuto','RACALMUTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22451,'12360','Racconigi','RACCONIGI',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:26','1900-01-01 00:00:00',1,0,1),(22452,'19586','Raccoon Key','RACCOON KEY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:27','1900-01-01 00:00:00',1,0,1),(22453,'21250','Raceland','RACELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:43:27','1900-01-01 00:00:00',1,0,1),(22454,'26744','Raceview','RACEVIEW',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:27','1900-01-01 00:00:00',1,0,1),(22455,'15637','Raciborz','RACIBORZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22456,'31866','Racine','RACINE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22457,'39487','Racines','RACINES',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22458,'38262','Rackeve','RACKEVE',NULL,'','Hungary','',0,0,99,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22459,'41295','Radauti','RADAUTI',NULL,'','Romania','',0,0,179,'2016-10-17 11:43:28','1900-01-01 00:00:00',1,0,1),(22460,'33723','Radcliff','RADCLIFF',NULL,'','United States','',0,0,231,'2016-10-17 11:43:29','1900-01-01 00:00:00',1,0,1),(22461,'8764','Radcliffe','RADCLIFFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:29','1900-01-01 00:00:00',1,0,1),(22462,'12971','Radda In Chianti','RADDA IN CHIANTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:29','1900-01-01 00:00:00',1,0,1),(22463,'1903','Radeberg','RADEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:29','1900-01-01 00:00:00',1,0,1),(22464,'1904','Radebeul','RADEBEUL',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22465,'1905','Radefeld','RADEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22466,'36692','Radenci','RADENCI',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22467,'27084','Radenthein','RADENTHEIN',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22468,'556','Radevormwald','RADEVORMWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22469,'37974','Radicondoli','RADICONDOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:30','1900-01-01 00:00:00',1,0,1),(22470,'22835','Radisson','RADISSON',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:31','1900-01-01 00:00:00',1,0,1),(22471,'25524','Radium Hot Springs','RADIUM HOT SPRINGS',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:31','1900-01-01 00:00:00',1,0,1),(22472,'30141','Radnor','RADNOR',NULL,'','United States','',0,0,231,'2016-10-17 11:43:31','1900-01-01 00:00:00',1,0,1),(22473,'42673','Radolfzell','RADOLFZELL',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:31','1900-01-01 00:00:00',1,0,1),(22474,'40228','Radom','RADOM',NULL,'','Poland','',0,0,174,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22475,'16647','Radovljica','RADOVLJICA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22476,'24395','Radstadt','RADSTADT',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22477,'8765','Radstock','RADSTOCK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22478,'16286','Raduzhnyi','RADUZHNYI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22479,'10579','Rae Bareli','RAE BARELI',NULL,'','India','',0,0,101,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22480,'25778','Rae Lakes','RAE LAKES',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22481,'33977','Raeford','RAEFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:43:32','1900-01-01 00:00:00',1,0,1),(22482,'8766','Raemoir','RAEMOIR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22483,'44017','Raetihi','RAETIHI',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22484,'3339','Rafales','RAFALES',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22485,'16514','Rafha','RAFHA',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22486,'9727','Rafina','RAFINA',NULL,'','Greece','',0,0,86,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22487,'23318','Rafz','RAFZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22488,'35626','Ragalna','RAGALNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:33','1900-01-01 00:00:00',1,0,1),(22489,'37577','Raggal','RAGGAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22490,'42921','Raglan','RAGLAN',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22491,'12849','Ragusa','RAGUSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22492,'35579','Ragusa-modica','RAGUSA-MODICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22493,'10368','Raha','RAHA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22494,'27271','Rahden','RAHDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:34','1900-01-01 00:00:00',1,0,1),(22495,'10852','Raheny','RAHENY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22496,'15323','Rahim Yar Khan','RAHIM YAR KHAN',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22497,'382','Rahlstedt','RAHLSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22498,'28395','Rahway','RAHWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22499,'16137','Raiatea','RAIATEA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22500,'40457','Raichak','RAICHAK',NULL,'','India','',0,0,101,'2016-10-17 11:43:35','1900-01-01 00:00:00',1,0,1),(22501,'17015','Railay Beach','RAILAY BEACH',NULL,'','Thailand','',0,0,215,'2016-10-17 11:43:36','1900-01-01 00:00:00',1,0,1),(22502,'30142','Railroad','RAILROAD',NULL,'','United States','',0,0,231,'2016-10-17 11:43:36','1900-01-01 00:00:00',1,0,1),(22503,'38672','Rainbow Beach','RAINBOW BEACH',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:36','1900-01-01 00:00:00',1,0,1),(22504,'25350','Rainbow Lake','RAINBOW LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:36','1900-01-01 00:00:00',1,0,1),(22505,'32034','Rainelle','RAINELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:37','1900-01-01 00:00:00',1,0,1),(22506,'33247','Raines','RAINES',NULL,'','United States','',0,0,231,'2016-10-17 11:43:37','1900-01-01 00:00:00',1,0,1),(22507,'17942','Rainsville','RAINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:37','1900-01-01 00:00:00',1,0,1),(22508,'10580','Raipur','RAIPUR',NULL,'','India','Raipur',46,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22509,'732','Raisdorf','RAISDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22510,'10619','Rajahmundry','RAJAHMUNDRY',NULL,'','India','Rajahmundry',7,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22511,'10637','Rajkot','RAJKOT',NULL,'','India','Rajkot',16,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22512,'3682','Rajo','RAJO',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22513,'10581','Rajpur','RAJPUR',NULL,'','India','',0,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22514,'10582','Rajsamand','RAJSAMAND',NULL,'','India','Rajsamand',2,0,101,'2016-10-17 11:43:38','1900-01-01 00:00:00',1,0,1),(22515,'24760','Rajshahi','RAJSHAHI',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22516,'38338','Rajula','RAJULA',NULL,'','India','',0,0,101,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22517,'15243','Rakaia Gorge','RAKAIA GORGE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22518,'41607','Rakek','RAKEK',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22519,'4102','Rakiraki','RAKIRAKI',NULL,'','Fiji','',0,0,74,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22520,'42540','Rakiura','RAKIURA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22521,'38867','Rakovica','RAKOVICA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22522,'3828','Rakvere','RAKVERE',NULL,'','Estonia','',0,0,69,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22523,'33248','Raleigh','RALEIGH',NULL,'','United States','',0,0,231,'2016-10-17 11:43:39','1900-01-01 00:00:00',1,0,1),(22524,'25676','Raleigh','RALEIGH',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:40','1900-01-01 00:00:00',1,0,1),(22525,'1846','Ralswiek','RALSWIEK',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:41','1900-01-01 00:00:00',1,0,1),(22526,'10460','Ramagundam','RAMAGUNDAM',NULL,'','India','',0,0,101,'2016-10-17 11:43:41','1900-01-01 00:00:00',1,0,1),(22527,'3135','Ramales De La Victoria','RAMALES DE LA VICTORIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:43:41','1900-01-01 00:00:00',1,0,1),(22528,'39839','Ramallo','RAMALLO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22529,'11073','Ramat Gan','RAMAT GAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22530,'6515','Ramatuelle','RAMATUELLE',NULL,'','France','',0,0,76,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22531,'4785','Rambouillet','RAMBOUILLET',NULL,'','France','',0,0,76,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22532,'7269','Rame','RAME',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22533,'15043','Ramechap','RAMECHAP',NULL,'','Nepal','',0,0,153,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22534,'16464','Ramenki','RAMENKI',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:43:42','1900-01-01 00:00:00',1,0,1),(22535,'39628','Rameshwaram','RAMESHWARAM',NULL,'','India','',0,0,101,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22536,'40832','Ramgarh','RAMGARH',NULL,'','India','',0,0,101,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22537,'22618','Rammingen','RAMMINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22538,'10583','Ramnagar','RAMNAGAR',NULL,'','India','Ramnagar',9,0,101,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22539,'36635','Ramnicu Valcea','RAMNICU VALCEA',NULL,'','Romania','',0,0,179,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22540,'39301','Ramoji Film City','RAMOJI FILM CITY',NULL,'','India','',0,0,101,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22541,'16475','Ramon','RAMON',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22542,'18808','Ramona','RAMONA',NULL,'','United States','',0,0,231,'2016-10-17 11:43:43','1900-01-01 00:00:00',1,0,1),(22543,'4920','Ramonville-saint-agne','RAMONVILLE-SAINT-AGNE',NULL,'','France','',0,0,76,'2016-10-17 11:43:44','1900-01-01 00:00:00',1,0,1),(22544,'39859','Ramot','RAMOT',NULL,'','Israel','',0,0,106,'2016-10-17 11:43:44','1900-01-01 00:00:00',1,0,1),(22545,'17122','Rampalnagas Village','RAMPALNAGAS VILLAGE',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:43:44','1900-01-01 00:00:00',1,0,1),(22546,'17756','Rampart','RAMPART',NULL,'','United States','',0,0,231,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22547,'24433','Ramsau','RAMSAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22548,'305','Ramsau','RAMSAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22549,'34621','Ramsayville','RAMSAYVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22550,'8767','Ramsbottom','RAMSBOTTOM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22551,'23319','Ramsen','RAMSEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:43:45','1900-01-01 00:00:00',1,0,1),(22552,'28396','Ramsey','RAMSEY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:46','1900-01-01 00:00:00',1,0,1),(22553,'8768','Ramsey','RAMSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:46','1900-01-01 00:00:00',1,0,1),(22554,'8769','Ramsgate','RAMSGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22555,'34297','Ramsgate','RAMSGATE',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22556,'10951','Ramsgrange','RAMSGRANGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22557,'36675','Ramundberget','RAMUNDBERGET',NULL,'','Sweden','',0,0,209,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22558,'35429','Ranakpur','RANAKPUR',NULL,'','India','',2,0,101,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22559,'42850','Ranau','RANAU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22560,'23525','Rancagua','RANCAGUA',NULL,'','Chile','',0,0,45,'2016-10-17 11:43:47','1900-01-01 00:00:00',1,0,1),(22561,'32125','Ranchester','RANCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:43:48','1900-01-01 00:00:00',1,0,1),(22562,'10584','Ranchi','RANCHI',NULL,'','India','Ranchi',48,0,101,'2016-10-17 11:43:48','1900-01-01 00:00:00',1,0,1),(22563,'1818','Rancho','RANCHO',NULL,'','United States','',0,0,231,'2016-10-17 11:43:48','1900-01-01 00:00:00',1,0,1),(22564,'28557','Ranchos De Taos','RANCHOS DE TAOS',NULL,'','United States','',0,0,231,'2016-10-17 11:43:52','1900-01-01 00:00:00',1,0,1),(22565,'37366','Randa','RANDA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:43:52','1900-01-01 00:00:00',1,0,1),(22566,'39104','Randaberg','RANDABERG',NULL,'','Norway','',0,0,164,'2016-10-17 11:43:53','1900-01-01 00:00:00',1,0,1),(22567,'21771','Randallstown','RANDALLSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:43:53','1900-01-01 00:00:00',1,0,1),(22568,'5340','Randan','RANDAN',NULL,'','France','',0,0,76,'2016-10-17 11:43:53','1900-01-01 00:00:00',1,0,1),(22569,'40730','Randazzo','RANDAZZO',NULL,'','Italy','',0,0,107,'2016-10-17 11:43:53','1900-01-01 00:00:00',1,0,1),(22570,'32596','Randburg','RANDBURG',NULL,'','South Africa','',0,0,195,'2016-10-17 11:43:54','1900-01-01 00:00:00',1,0,1),(22571,'2156','Randers','RANDERS',NULL,'','Denmark','',0,0,59,'2016-10-17 11:43:54','1900-01-01 00:00:00',1,0,1),(22572,'31597','Randle','RANDLE',NULL,'','United States','',0,0,231,'2016-10-17 11:43:54','1900-01-01 00:00:00',1,0,1),(22573,'21504','Randolph','RANDOLPH',NULL,'','United States','',0,0,231,'2016-10-17 11:43:54','1900-01-01 00:00:00',1,0,1),(22574,'34298','Randwick','RANDWICK',NULL,'','Australia','',0,0,13,'2016-10-17 11:43:55','1900-01-01 00:00:00',1,0,1),(22575,'5418','Ranes','RANES',NULL,'','France','',0,0,76,'2016-10-17 11:43:55','1900-01-01 00:00:00',1,0,1),(22576,'42102','Rangali','RANGALI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:43:56','1900-01-01 00:00:00',1,0,1),(22577,'39442','Rangeley','RANGELEY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:56','1900-01-01 00:00:00',1,0,1),(22578,'33527','Rangely','RANGELY',NULL,'','United States','',0,0,231,'2016-10-17 11:43:57','1900-01-01 00:00:00',1,0,1),(22579,'8770','Rangeworthy','RANGEWORTHY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:43:57','1900-01-01 00:00:00',1,0,1),(22580,'36542','Rangiroa','RANGIROA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:43:57','1900-01-01 00:00:00',1,0,1),(22581,'24761','Rangpur','RANGPUR',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:43:57','1900-01-01 00:00:00',1,0,1),(22582,'37171','Ranikhet','RANIKHET',NULL,'','India','Ranikhet',9,0,101,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22583,'37165','Ranipet','RANIPET',NULL,'','INDIA','',0,0,101,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22584,'25805','Rankin Inlet','RANKIN INLET',NULL,'','Canada','',0,0,39,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22585,'24523','Rankweil','RANKWEIL',NULL,'','Austria','',0,0,14,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22586,'13759','Rannalhi','RANNALHI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22587,'41440','Ranohira','RANOHIRA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22588,'36778','Ranong','RANONG',NULL,'','Thailand','',0,0,215,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22589,'38706','Ransbach-baumbach','RANSBACH-BAUMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22590,'10317','Ransiki','RANSIKI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:43:58','1900-01-01 00:00:00',1,0,1),(22591,'25882','Ransol','RANSOL',NULL,'','Andorra','',0,0,5,'2016-10-17 11:43:59','1900-01-01 00:00:00',1,0,1),(22592,'10362','Rantepao','RANTEPAO',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:43:59','1900-01-01 00:00:00',1,0,1),(22593,'43321','Ranthambore','RANTHAMBORE',NULL,'','India','',0,0,101,'2016-10-17 11:43:59','1900-01-01 00:00:00',1,0,1),(22594,'20723','Rantoul','RANTOUL',NULL,'','United States','',0,0,231,'2016-10-17 11:44:00','1900-01-01 00:00:00',1,0,1),(22595,'733','Rantum','RANTUM',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:00','1900-01-01 00:00:00',1,0,1),(22596,'12362','Rapale','RAPALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:00','1900-01-01 00:00:00',1,0,1),(22597,'12363','Rapallo','RAPALLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:00','1900-01-01 00:00:00',1,0,1),(22598,'31207','Raphine','RAPHINE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:01','1900-01-01 00:00:00',1,0,1),(22599,'39679','Rapolano Terme','RAPOLANO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:02','1900-01-01 00:00:00',1,0,1),(22600,'12364','Rapolla','RAPOLLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:02','1900-01-01 00:00:00',1,0,1),(22601,'23320','Rapperswil','RAPPERSWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22603,'28397','Raritan','RARITAN',NULL,'','United States','',0,0,231,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22604,'24076','Rarotonga','RAROTONGA',NULL,'','Cook Islands','',0,0,53,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22605,'25909','Ras Al Khaimah','RAS AL KHAIMAH',NULL,'','United Arab Emirates','',0,0,228,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22606,'34975','Ras El Sudr','RAS EL SUDR',NULL,'','Egypt','',0,0,65,'2016-10-17 11:44:03','1900-01-01 00:00:00',1,0,1),(22607,'3009','Rascafria','RASCAFRIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22608,'14819','Rasta','RASTA',NULL,'','Norway','',0,0,164,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22609,'38918','Rasun Di Sopra','RASUN DI SOPRA',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22610,'42727','Ratanakiri','RATANAKIRI',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22611,'40403','Ratbor','RATBOR',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:44:04','1900-01-01 00:00:00',1,0,1),(22612,'10462','Rathdana','RATHDANA',NULL,'','India','',0,0,101,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22613,'687','Rathen','RATHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22614,'10899','Rathkeale','RATHKEALE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22615,'10853','Rathmines','RATHMINES',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22616,'10825','Rathmullan','RATHMULLAN',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22617,'557','Ratingen','RATINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22618,'10585','Ratnagiri','RATNAGIRI',NULL,'','India','Ratnagiri',5,0,101,'2016-10-17 11:44:05','1900-01-01 00:00:00',1,0,1),(22619,'37966','Rattvik','RATTVIK',NULL,'','Sweden','',0,0,209,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22620,'306','Rauenberg','RAUENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22621,'11012','Raufarhofn','RAUFARHOFN',NULL,'','Iceland','',0,0,100,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22622,'3987','Rauha','RAUHA',NULL,'','Finland','',0,0,75,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22623,'15009','Rauland','RAULAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22624,'4027','Rauma','RAUMA',NULL,'','Finland','',0,0,75,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22625,'15158','Raumati Beach','RAUMATI BEACH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22626,'469','Raunheim','RAUNHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:06','1900-01-01 00:00:00',1,0,1),(22627,'38107','Rauris','RAURIS',NULL,'','Austria','',0,0,14,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22628,'12365','Ravello','RAVELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22629,'7270','Ravelston','RAVELSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22630,'8771','Ravenglass','RAVENGLASS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22631,'29507','Ravenna','RAVENNA',NULL,'','United States','',0,0,231,'2016-10-17 11:44:07','1900-01-01 00:00:00',1,0,1),(22632,'12733','Ravenna','RAVENNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22633,'39236','Ravensbourne','RAVENSBOURNE',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22634,'8772','Ravenscar','RAVENSCAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22635,'39013','Ravensdale','RAVENSDALE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22636,'8773','Ravenstonedale','RAVENSTONEDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:08','1900-01-01 00:00:00',1,0,1),(22637,'32036','Ravenswood','RAVENSWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22638,'2324','Ravnsbaek','RAVNSBAEK',NULL,'','Denmark','',0,0,59,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22639,'43616','Rawa Mazowiecka','RAWA MAZOWIECKA',NULL,'','Poland','',0,0,174,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22640,'42032','Rawai','RAWAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22641,'15324','Rawala Kot','RAWALA KOT',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22642,'15325','Rawalpindi','RAWALPINDI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:44:09','1900-01-01 00:00:00',1,0,1),(22643,'32126','Rawlins','RAWLINS',NULL,'','United States','',0,0,231,'2016-10-17 11:44:10','1900-01-01 00:00:00',1,0,1),(22644,'41756','Rawson','RAWSON',NULL,'','Argentina','',0,0,10,'2016-10-17 11:44:10','1900-01-01 00:00:00',1,0,1),(22645,'8774','Rayleigh','RAYLEIGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:10','1900-01-01 00:00:00',1,0,1),(22646,'31598','Raymond','RAYMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:44:11','1900-01-01 00:00:00',1,0,1),(22647,'34299','Raymond Terrace','RAYMOND TERRACE',NULL,'','Australia','Raymond Terrace',0,0,13,'2016-10-17 11:44:11','1900-01-01 00:00:00',1,0,1),(22648,'30878','Raymondville','RAYMONDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:12','1900-01-01 00:00:00',1,0,1),(22649,'21251','Rayne','RAYNE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:12','1900-01-01 00:00:00',1,0,1),(22650,'21505','Raynham','RAYNHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:44:13','1900-01-01 00:00:00',1,0,1),(22651,'4466','Rayol-canadel-sur-mer','RAYOL-CANADEL-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:44:13','1900-01-01 00:00:00',1,0,1),(22653,'27753','Raytown','RAYTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:44:14','1900-01-01 00:00:00',1,0,1),(22654,'5243','Razac-sur-l\'isle','RAZAC-SUR-L\'ISLE',NULL,'','France','',0,0,76,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22655,'42251','Razgrad','RAZGRAD',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22656,'24783','Razlog','RAZLOG',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22657,'13092','Reading','READING',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22658,'8775','Reading','READING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22659,'30143','Reading','READING',NULL,'','United States','',0,0,231,'2016-10-17 11:44:15','1900-01-01 00:00:00',1,0,1),(22660,'21507','Readville','READVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:17','1900-01-01 00:00:00',1,0,1),(22661,'17531','Real De San Carlos','REAL DE SAN CARLOS',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:44:17','1900-01-01 00:00:00',1,0,1),(22662,'40314','Realmont','REALMONT',NULL,'','France','',0,0,76,'2016-10-17 11:44:17','1900-01-01 00:00:00',1,0,1),(22663,'12366','Realmonte','REALMONTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22664,'23321','Realp','REALP',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22665,'36433','Rebak Besar Island','REBAK BESAR ISLAND',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22666,'2248','Rebild','REBILD',NULL,'','Denmark','',0,0,59,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22667,'13333','Rebun','REBUN',NULL,'','Japan','',0,0,110,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22668,'12367','Recanati','RECANATI',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22669,'37239','Recco','RECCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22670,'35404','Recess','RECESS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:18','1900-01-01 00:00:00',1,0,1),(22671,'1906','Rechenberg-bienenmuhle','RECHENBERG-BIENENMUHLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22672,'25045','Recife','RECIFE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22673,'23463','Reckingen','RECKINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22674,'22386','Recklinghausen','RECKLINGHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22675,'23550','Recoleta','RECOLETA',NULL,'','Chile','',0,0,45,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22676,'6191','Recques-sur-hem','RECQUES-SUR-HEM',NULL,'','France','',0,0,76,'2016-10-17 11:44:19','1900-01-01 00:00:00',1,0,1),(22677,'1161','Red Centre - Northern Territory','RED CENTRE - NORTHERN TERRITORY',NULL,'','AUSTRALIA','',0,0,13,'2016-10-17 11:44:21','1900-01-01 00:00:00',1,0,1),(22678,'1737','Red Sea','RED SEA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:44:25','1900-01-01 00:00:00',1,0,1),(22679,'40065','Reda','REDA',NULL,'','Poland','',0,0,174,'2016-10-17 11:44:25','1900-01-01 00:00:00',1,0,1),(22680,'39902','Redagno','REDAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:26','1900-01-01 00:00:00',1,0,1),(22681,'19901','Redan','REDAN',NULL,'','United States','',0,0,231,'2016-10-17 11:44:26','1900-01-01 00:00:00',1,0,1),(22682,'14325','Redang Island','REDANG ISLAND',NULL,'','Malaysia','Redang Island',0,0,132,'2016-10-17 11:44:26','1900-01-01 00:00:00',1,0,1),(22683,'8776','Redbourn','REDBOURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:26','1900-01-01 00:00:00',1,0,1),(22684,'8777','Redbridge','REDBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22685,'8778','Redcar','REDCAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22686,'32323','Redcliffe','REDCLIFFE',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22687,'26745','Redcliffe','REDCLIFFE',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22688,'37568','Redcross','REDCROSS',NULL,'','Ireland','',0,0,105,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22689,'18817','Redding','REDDING',NULL,'','United States','',0,0,231,'2016-10-17 11:44:27','1900-01-01 00:00:00',1,0,1),(22690,'8779','Redditch','REDDITCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:28','1900-01-01 00:00:00',1,0,1),(22691,'24997','Redencao','REDENCAO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:44:28','1900-01-01 00:00:00',1,0,1),(22692,'40282','Redentora','REDENTORA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:44:28','1900-01-01 00:00:00',1,0,1),(22693,'34300','Redfern','REDFERN',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:28','1900-01-01 00:00:00',1,0,1),(22694,'33045','Redfield','REDFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:44:29','1900-01-01 00:00:00',1,0,1),(22695,'22220','Redford','REDFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:44:29','1900-01-01 00:00:00',1,0,1),(22696,'31867','Redgranite','REDGRANITE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:30','1900-01-01 00:00:00',1,0,1),(22697,'8780','Redhill','REDHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:30','1900-01-01 00:00:00',1,0,1),(22698,'6058','Reding','REDING',NULL,'','France','',0,0,76,'2016-10-17 11:44:30','1900-01-01 00:00:00',1,0,1),(22699,'19587','Redington Beach','REDINGTON BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:44:31','1900-01-01 00:00:00',1,0,1),(22700,'26746','Redland Bay','REDLAND BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:31','1900-01-01 00:00:00',1,0,1),(22701,'18819','Redlands','REDLANDS',NULL,'','United States','',0,0,231,'2016-10-17 11:44:32','1900-01-01 00:00:00',1,0,1),(22702,'8781','Redlynch','REDLYNCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:32','1900-01-01 00:00:00',1,0,1),(22703,'26747','Redlynch','REDLYNCH',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:32','1900-01-01 00:00:00',1,0,1),(22704,'29738','Redmond','REDMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:44:33','1900-01-01 00:00:00',1,0,1),(22705,'40785','Redondo','REDONDO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:44:33','1900-01-01 00:00:00',1,0,1),(22706,'18820','Redondo Beach','REDONDO BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:44:33','1900-01-01 00:00:00',1,0,1),(22707,'38433','Redruth','REDRUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:34','1900-01-01 00:00:00',1,0,1),(22708,'33529','Redstone','REDSTONE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:34','1900-01-01 00:00:00',1,0,1),(22709,'18821','Redway','REDWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:44:35','1900-01-01 00:00:00',1,0,1),(22710,'18822','Redwood City','REDWOOD CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:44:35','1900-01-01 00:00:00',1,0,1),(22711,'43287','Redworth','REDWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:36','1900-01-01 00:00:00',1,0,1),(22712,'14820','Reed','REED',NULL,'','Norway','',0,0,164,'2016-10-17 11:44:36','1900-01-01 00:00:00',1,0,1),(22713,'18823','Reedley','REEDLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:44:37','1900-01-01 00:00:00',1,0,1),(22714,'27754','Reeds Spring','REEDS SPRING',NULL,'','United States','',0,0,231,'2016-10-17 11:44:37','1900-01-01 00:00:00',1,0,1),(22715,'31868','Reedsburg','REEDSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:44:38','1900-01-01 00:00:00',1,0,1),(22716,'29739','Reedsport','REEDSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:44:38','1900-01-01 00:00:00',1,0,1),(22717,'30146','Reedsville','REEDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:39','1900-01-01 00:00:00',1,0,1),(22718,'8782','Reepham','REEPHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:39','1900-01-01 00:00:00',1,0,1),(22719,'43651','Refer','REFER',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:40','1900-01-01 00:00:00',1,0,1),(22720,'39520','Reform','REFORM',NULL,'','United States','',0,0,231,'2016-10-17 11:44:40','1900-01-01 00:00:00',1,0,1),(22721,'13855','Reforma - Zona Rosa','REFORMA - ZONA ROSA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:44:40','1900-01-01 00:00:00',1,0,1),(22722,'30880','Refugio','REFUGIO',NULL,'','United States','',0,0,231,'2016-10-17 11:44:41','1900-01-01 00:00:00',1,0,1),(22723,'35627','Regello','REGELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:41','1900-01-01 00:00:00',1,0,1),(22724,'3584','Regencos','REGENCOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:44:41','1900-01-01 00:00:00',1,0,1),(22725,'307','Regensburg','REGENSBURG',NULL,'','Germany','Regensburg',0,0,83,'2016-10-17 11:44:41','1900-01-01 00:00:00',1,0,1),(22726,'23322','Regensdorf','REGENSDORF',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:44:42','1900-01-01 00:00:00',1,0,1),(22727,'12368','Reggello','REGGELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:42','1900-01-01 00:00:00',1,0,1),(22728,'12369','Reggiolo','REGGIOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:44:42','1900-01-01 00:00:00',1,0,1),(22729,'31208','Regina','REGINA',NULL,'','United States','',0,0,231,'2016-10-17 11:44:43','1900-01-01 00:00:00',1,0,1),(22730,'1643','Regina','REGINA',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:44:43','1900-01-01 00:00:00',1,0,1),(22731,'22962','Regina','REGINA',NULL,'','Canada','',0,0,39,'2016-10-17 11:44:43','1900-01-01 00:00:00',1,0,1),(22732,'19902','Register','REGISTER',NULL,'','United States','',0,0,231,'2016-10-17 11:44:43','1900-01-01 00:00:00',1,0,1),(22733,'43200','Reguengos De Monsaraz','REGUENGOS DE MONSARAZ',NULL,'','Portugal','',0,0,175,'2016-10-17 11:44:44','1900-01-01 00:00:00',1,0,1),(22734,'44084','Rehainviller','REHAINVILLER',NULL,'','France','',0,0,76,'2016-10-17 11:44:44','1900-01-01 00:00:00',1,0,1),(22735,'40781','Rehau','REHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:44','1900-01-01 00:00:00',1,0,1),(22736,'21508','Rehoboth','REHOBOTH',NULL,'','United States','',0,0,231,'2016-10-17 11:44:44','1900-01-01 00:00:00',1,0,1),(22737,'308','Reichelshofen','REICHELSHOFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:45','1900-01-01 00:00:00',1,0,1),(22738,'27113','Reichenau','REICHENAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:44:46','1900-01-01 00:00:00',1,0,1),(22739,'1907','Reichenbach','REICHENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:46','1900-01-01 00:00:00',1,0,1),(22740,'40198','Reichenfels','REICHENFELS',NULL,'','Austria','',0,0,14,'2016-10-17 11:44:46','1900-01-01 00:00:00',1,0,1),(22741,'37762','Reichenschwand','REICHENSCHWAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:46','1900-01-01 00:00:00',1,0,1),(22742,'38640','Reid','REID',NULL,'','Australia','',0,0,13,'2016-10-17 11:44:47','1900-01-01 00:00:00',1,0,1),(22743,'33981','Reidsville','REIDSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:44:47','1900-01-01 00:00:00',1,0,1),(22744,'8783','Reigate','REIGATE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22745,'39160','Reignac-sur-indre','REIGNAC-SUR-INDRE',NULL,'','France','',0,0,76,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22746,'22621','Reilingen','REILINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22747,'16686','Reimersholme','REIMERSHOLME',NULL,'','Sweden','',0,0,209,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22748,'4996','Reims','REIMS',NULL,'','France','',0,0,76,'2016-10-17 11:44:48','1900-01-01 00:00:00',1,0,1),(22749,'734','Reinbek','REINBEK',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:49','1900-01-01 00:00:00',1,0,1),(22750,'22622','Reinhardsachsen','REINHARDSACHSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:49','1900-01-01 00:00:00',1,0,1),(22751,'30147','Reinholds','REINHOLDS',NULL,'','United States','',0,0,231,'2016-10-17 11:44:49','1900-01-01 00:00:00',1,0,1),(22752,'2011','Reinickendorf','REINICKENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:52','1900-01-01 00:00:00',1,0,1),(22753,'3136','Reinosa','REINOSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:44:55','1900-01-01 00:00:00',1,0,1),(22754,'27272','Reinsehlen','REINSEHLEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:56','1900-01-01 00:00:00',1,0,1),(22755,'2086','Reinstorf','REINSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:56','1900-01-01 00:00:00',1,0,1),(22756,'21772','Reisterstown','REISTERSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:44:57','1900-01-01 00:00:00',1,0,1),(22757,'38945','Rekowo Gorne','REKOWO GORNE',NULL,'','Poland','',0,0,174,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22758,'3779','Relleu','RELLEU',NULL,'','Spain','',0,0,199,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22759,'735','Rellingen','RELLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22760,'655','Remagen','REMAGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22761,'6313','Remaisnil','REMAISNIL',NULL,'','France','',0,0,76,'2016-10-17 11:44:58','1900-01-01 00:00:00',1,0,1),(22762,'14476','Rembrandtplein','REMBRANDTPLEIN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22763,'13653','Remich','REMICH',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22764,'20969','Remington','REMINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22765,'559','Remscheid','REMSCHEID',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22766,'22387','Remshalden','REMSHALDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:44:59','1900-01-01 00:00:00',1,0,1),(22767,'15159','Remuera','REMUERA',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:45:00','1900-01-01 00:00:00',1,0,1),(22768,'14893','Rena','RENA',NULL,'','Norway','',0,0,164,'2016-10-17 11:45:00','1900-01-01 00:00:00',1,0,1),(22769,'23503','Renaca','RENACA',NULL,'','Chile','',0,0,45,'2016-10-17 11:45:00','1900-01-01 00:00:00',1,0,1),(22770,'23551','Renca','RENCA',NULL,'','Chile','',0,0,45,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22771,'25862','Rendezvous Bay','RENDEZVOUS BAY',NULL,'','Anguilla','',0,0,7,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22772,'41534','Renedo De Cabuerniga','RENEDO DE CABUERNIGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22773,'23323','Renens','RENENS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22774,'14699','Renesse','RENESSE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22775,'34623','Renfrew','RENFREW',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22776,'8784','Renfrew','RENFREW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:01','1900-01-01 00:00:00',1,0,1),(22777,'7271','Renfrewshire','RENFREWSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:02','1900-01-01 00:00:00',1,0,1),(22778,'33724','Renfro Valley','RENFRO VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:45:02','1900-01-01 00:00:00',1,0,1),(22779,'7272','Renishaw','RENISHAW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:02','1900-01-01 00:00:00',1,0,1),(22780,'14763','Renkum','RENKUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:45:02','1900-01-01 00:00:00',1,0,1),(22781,'26818','Renmark','RENMARK',NULL,'','Australia','',0,0,13,'2016-10-17 11:45:03','1900-01-01 00:00:00',1,0,1),(22782,'16555','Rennell Island','RENNELL ISLAND',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:45:03','1900-01-01 00:00:00',1,0,1),(22783,'30881','Renner','RENNER',NULL,'','United States','',0,0,231,'2016-10-17 11:45:03','1900-01-01 00:00:00',1,0,1),(22784,'41347','Rennes-chantepie','RENNES-CHANTEPIE',NULL,'','France','',0,0,76,'2016-10-17 11:45:03','1900-01-01 00:00:00',1,0,1),(22785,'27085','Rennweg','RENNWEG',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:04','1900-01-01 00:00:00',1,0,1),(22786,'30148','Renovo','RENOVO',NULL,'','United States','',0,0,231,'2016-10-17 11:45:05','1900-01-01 00:00:00',1,0,1),(22787,'20970','Rensselaer','RENSSELAER',NULL,'','United States','',0,0,231,'2016-10-17 11:45:06','1900-01-01 00:00:00',1,0,1),(22788,'31600','Renton','RENTON',NULL,'','United States','',0,0,231,'2016-10-17 11:45:07','1900-01-01 00:00:00',1,0,1),(22789,'10964','Renvyle','RENVYLE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:45:07','1900-01-01 00:00:00',1,0,1),(22790,'39711','Reocin','REOCIN',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:07','1900-01-01 00:00:00',1,0,1),(22791,'22836','Repentigny','REPENTIGNY',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:07','1900-01-01 00:00:00',1,0,1),(22792,'16248','Repino','REPINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:45:08','1900-01-01 00:00:00',1,0,1),(22793,'6691','Replonges','REPLONGES',NULL,'','France','',0,0,76,'2016-10-17 11:45:08','1900-01-01 00:00:00',1,0,1),(22794,'27755','Republic','REPUBLIC',NULL,'','United States','',0,0,231,'2016-10-17 11:45:08','1900-01-01 00:00:00',1,0,1),(22795,'25806','Repulse Bay','REPULSE BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:09','1900-01-01 00:00:00',1,0,1),(22796,'9912','Repulse Bay','REPULSE BAY',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:45:09','1900-01-01 00:00:00',1,0,1),(22797,'3780','Requena','REQUENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:09','1900-01-01 00:00:00',1,0,1),(22798,'38199','Rerik','RERIK',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:09','1900-01-01 00:00:00',1,0,1),(22799,'33983','Research Triangle Park','RESEARCH TRIANGLE PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:45:10','1900-01-01 00:00:00',1,0,1),(22800,'18824','Reseda','RESEDA',NULL,'','United States','',0,0,231,'2016-10-17 11:45:10','1900-01-01 00:00:00',1,0,1),(22801,'25144','Resende','RESENDE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22802,'26546','Reservoir','RESERVOIR',NULL,'','Australia','',0,0,13,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22803,'26092','Resistencia','RESISTENCIA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22804,'16238','Resita','RESITA',NULL,'','Romania','',0,0,179,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22805,'25807','Resolute','RESOLUTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22806,'7273','Restalrig','RESTALRIG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22807,'15830','Restelo','RESTELO',NULL,'','Portugal','',0,0,175,'2016-10-17 11:45:11','1900-01-01 00:00:00',1,0,1),(22808,'9272','Retford','RETFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22809,'9588','Rethimnon','RETHIMNON',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22810,'43462','Rethymno-adelianos Campos','RETHYMNO-ADELIANOS CAMPOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22811,'43463','Rethymno-skaleta','RETHYMNO-SKALETA',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22812,'24613','Retie','RETIE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:45:12','1900-01-01 00:00:00',1,0,1),(22813,'2769','Retiro - Prado','RETIRO - PRADO',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22814,'310','Rettenbach','RETTENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22815,'27114','Retz','RETZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22816,'4985','Reunion','REUNION',NULL,'','France','',0,0,76,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22817,'16187','Reunion','REUNION',NULL,'','Reunion','',0,0,178,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22818,'3585','Reus','REUS',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22819,'23070','Reussbuehl','REUSSBUEHL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22820,'24524','Reuthe','REUTHE',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:13','1900-01-01 00:00:00',1,0,1),(22821,'22623','Reutlingen','REUTLINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22822,'16376','Reutov','REUTOV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22823,'24491','Reutte','REUTTE',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22824,'6126','Revel','REVEL',NULL,'','France','',0,0,76,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22825,'25525','Revelstoke','REVELSTOKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22826,'21509','Revere','REVERE',NULL,'','United States','',0,0,231,'2016-10-17 11:45:14','1900-01-01 00:00:00',1,0,1),(22827,'3137','Revilla','REVILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22828,'12911','Revine Lago','REVINE LAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22829,'13985','Revolucion','REVOLUCION',NULL,'','Mexico','',0,0,141,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22830,'13856','Revolución','REVOLUCIÓN',NULL,'','Mexico','',0,0,141,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22831,'10586','Rewa','REWA',NULL,'','India','Rewa',15,0,101,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22832,'40064','Rewal','REWAL',NULL,'','Poland','',0,0,174,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22833,'38703','Rewari','REWARI',NULL,'','India','Rewari',20,0,101,'2016-10-17 11:45:15','1900-01-01 00:00:00',1,0,1),(22834,'20391','Rexburg','REXBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:45:16','1900-01-01 00:00:00',1,0,1),(22835,'34624','Rexdale','REXDALE',NULL,'','Canada','',0,0,39,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22836,'10991','Reydarfjoerdur','REYDARFJOERDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22837,'10992','Reydarfjordur','REYDARFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22838,'11005','Reykholt','REYKHOLT',NULL,'','Iceland','',0,0,100,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22839,'11009','Reykjavik','REYKJAVIK',NULL,'','Iceland','',0,0,100,'2016-10-17 11:45:17','1900-01-01 00:00:00',1,0,1),(22840,'26470','Reynella','REYNELLA',NULL,'','Australia','',0,0,13,'2016-10-17 11:45:18','1900-01-01 00:00:00',1,0,1),(22841,'29509','Reynoldsburg','REYNOLDSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:45:18','1900-01-01 00:00:00',1,0,1),(22842,'8785','Reynoldston','REYNOLDSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:18','1900-01-01 00:00:00',1,0,1),(22843,'14110','Reynosa','REYNOSA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:45:18','1900-01-01 00:00:00',1,0,1),(22844,'13669','Rezekne','REZEKNE',NULL,'','Latvia','',0,0,119,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22845,'12371','Rezzato','REZZATO',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22846,'8786','Rhayader','RHAYADER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22847,'560','Rheda-wiedenbruck','RHEDA-WIEDENBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22848,'40313','Rheden','RHEDEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:45:19','1900-01-01 00:00:00',1,0,1),(22849,'40570','Rheinau','RHEINAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22850,'23324','Rheinau','RHEINAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22851,'1692','Rheindahlen','RHEINDAHLEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22852,'39526','Rheine','RHEINE',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22853,'40643','Rheinfelden','RHEINFELDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22854,'23429','Rheinfelden','RHEINFELDEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22855,'800','Rheinsberg','RHEINSBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:20','1900-01-01 00:00:00',1,0,1),(22856,'801','Rheinsberg-glienicke','RHEINSBERG-GLIENICKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:21','1900-01-01 00:00:00',1,0,1),(22857,'29071','Rhinebeck','RHINEBECK',NULL,'','United States','',0,0,231,'2016-10-17 11:45:21','1900-01-01 00:00:00',1,0,1),(22858,'29072','Rhinecliff','RHINECLIFF',NULL,'','United States','',0,0,231,'2016-10-17 11:45:21','1900-01-01 00:00:00',1,0,1),(22859,'22389','Rhinehesse - Palatinate','RHINEHESSE - PALATINATE',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:22','1900-01-01 00:00:00',1,0,1),(22860,'39512','Rhineland','RHINELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:45:22','1900-01-01 00:00:00',1,0,1),(22861,'31869','Rhinelander','RHINELANDER',NULL,'','United States','',0,0,231,'2016-10-17 11:45:23','1900-01-01 00:00:00',1,0,1),(22862,'12372','Rho','RHO',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:23','1900-01-01 00:00:00',1,0,1),(22863,'40112','Rhodes','RHODES',NULL,'','South Africa','Rhodes',0,0,195,'2016-10-17 11:45:23','1900-01-01 00:00:00',1,0,1),(22864,'36357','Rhodes-afandou','RHODES-AFANDOU',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22865,'35228','Rhodes-faliraki','RHODES-FALIRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22866,'35236','Rhodes-ialyssos','RHODES-IALYSSOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22867,'35239','Rhodes-ixia','RHODES-IXIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22868,'35244','Rhodes-kalithea','RHODES-KALITHEA',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22869,'35252','Rhodes-kremasti','RHODES-KREMASTI',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22870,'35257','Rhodes-lindos','RHODES-LINDOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22871,'35288','Rhodes-rhodes Town','RHODES-RHODES TOWN',NULL,'','Greece','',0,0,86,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22872,'24784','Rhodopes','RHODOPES',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:45:24','1900-01-01 00:00:00',1,0,1),(22873,'30882','Rhome','RHOME',NULL,'','United States','',0,0,231,'2016-10-17 11:45:25','1900-01-01 00:00:00',1,0,1),(22874,'8787','Rhondda','RHONDDA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:25','1900-01-01 00:00:00',1,0,1),(22875,'8788','Rhoose','RHOOSE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:25','1900-01-01 00:00:00',1,0,1),(22876,'9335','Rhos On Sea','RHOS ON SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22877,'14326','Rhu Tapai','RHU TAPAI',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22878,'41094','Rhyl','RHYL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22879,'38537','Riace','RIACE',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22880,'3586','Rialp','RIALP',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:26','1900-01-01 00:00:00',1,0,1),(22881,'18825','Rialto','RIALTO',NULL,'','United States','',0,0,231,'2016-10-17 11:45:27','1900-01-01 00:00:00',1,0,1),(22882,'40526','Rianxo','RIANXO',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:27','1900-01-01 00:00:00',1,0,1),(22883,'10258','Riau','RIAU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:45:27','1900-01-01 00:00:00',1,0,1),(22884,'3478','Riaza','RIAZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22885,'3722','Ribabellosa','RIBABELLOSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22886,'39730','Ribadedeva','RIBADEDEVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22887,'3587','Ribadeo','RIBADEO',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22888,'3105','Ribadesella','RIBADESELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22889,'3066','Ribaforada','RIBAFORADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22890,'16648','Ribcev Laz','RIBCEV LAZ',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22891,'2266','Ribe','RIBE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:45:28','1900-01-01 00:00:00',1,0,1),(22892,'6314','Ribeauville','RIBEAUVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:45:29','1900-01-01 00:00:00',1,0,1),(22893,'3683','Ribeira','RIBEIRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:29','1900-01-01 00:00:00',1,0,1),(22894,'25215','Ribeirao Preto','RIBEIRAO PRETO',NULL,'','Brazil','',0,0,30,'2016-10-17 11:45:29','1900-01-01 00:00:00',1,0,1),(22895,'39710','Ribera','RIBERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:29','1900-01-01 00:00:00',1,0,1),(22896,'5244','Riberac','RIBERAC',NULL,'','France','',0,0,76,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22897,'24947','Riberalta','RIBERALTA',NULL,'','Bolivia','',0,0,26,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22898,'38220','Ribes De Freser','RIBES DE FRESER',NULL,'','Spain','',0,0,199,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22899,'1847','Ribnitz','RIBNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22900,'12374','Ricadi','RICADI',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22901,'24320','Ricany','RICANY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22902,'15160','Riccarton','RICCARTON',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:45:30','1900-01-01 00:00:00',1,0,1),(22903,'11404','Riccione','RICCIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:31','1900-01-01 00:00:00',1,0,1),(22904,'38737','Riccò Del Golfo Di Spezia','RICCÒ DEL GOLFO DI SPEZIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:31','1900-01-01 00:00:00',1,0,1),(22905,'32388','Richards Bay','RICHARDS BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:45:33','1900-01-01 00:00:00',1,0,1),(22906,'16518','Richard-toll','RICHARD-TOLL',NULL,'','Senegal','',0,0,187,'2016-10-17 11:45:33','1900-01-01 00:00:00',1,0,1),(22907,'30394','Richburg','RICHBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:45:33','1900-01-01 00:00:00',1,0,1),(22908,'5675','Richelieu','RICHELIEU',NULL,'','France','',0,0,76,'2016-10-17 11:45:34','1900-01-01 00:00:00',1,0,1),(22909,'29510','Richfield','RICHFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:34','1900-01-01 00:00:00',1,0,1),(22910,'31383','Richford','RICHFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:36','1900-01-01 00:00:00',1,0,1),(22911,'22221','Richland','RICHLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:45:37','1900-01-01 00:00:00',1,0,1),(22912,'31210','Richlands','RICHLANDS',NULL,'','United States','',0,0,231,'2016-10-17 11:45:39','1900-01-01 00:00:00',1,0,1),(22913,'31211','Richmond','RICHMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:45:40','1900-01-01 00:00:00',1,0,1),(22914,'26862','Richmond','RICHMOND',NULL,'','Australia','',0,0,13,'2016-10-17 11:45:41','1900-01-01 00:00:00',1,0,1),(22915,'42375','Richmond Upon Thames','RICHMOND UPON THAMES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:48','1900-01-01 00:00:00',1,0,1),(22916,'29074','Richmondville','RICHMONDVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:45:48','1900-01-01 00:00:00',1,0,1),(22917,'20725','Richton Park','RICHTON PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:45:49','1900-01-01 00:00:00',1,0,1),(22918,'33726','Richwood','RICHWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:49','1900-01-01 00:00:00',1,0,1),(22919,'8791','Rickmansworth','RICKMANSWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:45:50','1900-01-01 00:00:00',1,0,1),(22920,'16841','Riddarholmen','RIDDARHOLMEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:45:51','1900-01-01 00:00:00',1,0,1),(22921,'43898','Ridderkerk','RIDDERKERK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:45:51','1900-01-01 00:00:00',1,0,1),(22922,'18828','Ridgecrest','RIDGECREST',NULL,'','United States','',0,0,231,'2016-10-17 11:45:51','1900-01-01 00:00:00',1,0,1),(22923,'27759','Ridgedale','RIDGEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:45:52','1900-01-01 00:00:00',1,0,1),(22924,'28399','Ridgefield','RIDGEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:52','1900-01-01 00:00:00',1,0,1),(22925,'27907','Ridgeland','RIDGELAND',NULL,'','United States','',0,0,231,'2016-10-17 11:45:54','1900-01-01 00:00:00',1,0,1),(22926,'21774','Ridgely','RIDGELY',NULL,'','United States','',0,0,231,'2016-10-17 11:45:54','1900-01-01 00:00:00',1,0,1),(22927,'30396','Ridgeway','RIDGEWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:45:55','1900-01-01 00:00:00',1,0,1),(22928,'29075','Ridgewood','RIDGEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:45:56','1900-01-01 00:00:00',1,0,1),(22929,'33531','Ridgway','RIDGWAY',NULL,'','United States','',0,0,231,'2016-10-17 11:45:57','1900-01-01 00:00:00',1,0,1),(22930,'38551','Ried Im Innkreis','RIED IM INNKREIS',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:57','1900-01-01 00:00:00',1,0,1),(22931,'23071','Riederalp','RIEDERALP',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:58','1900-01-01 00:00:00',1,0,1),(22932,'2045','Riedstadt','RIEDSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:58','1900-01-01 00:00:00',1,0,1),(22933,'30150','Riegelsville','RIEGELSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:45:58','1900-01-01 00:00:00',1,0,1),(22934,'38894','Riemst','RIEMST',NULL,'','Belgium','',0,0,21,'2016-10-17 11:45:58','1900-01-01 00:00:00',1,0,1),(22935,'22390','Riesa','RIESA',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22936,'23072','Riesbach','RIESBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22937,'2038','Riesenbeck','RIESENBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22938,'12375','Rieti','RIETI',NULL,'','Italy','',0,0,107,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22939,'24492','Rietz','RIETZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22940,'6127','Rieupeyroux','RIEUPEYROUX',NULL,'','France','',0,0,76,'2016-10-17 11:45:59','1900-01-01 00:00:00',1,0,1),(22941,'40569','Rieux-minervois','RIEUX-MINERVOIS',NULL,'','France','',0,0,76,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22942,'24525','Riezlern','RIEZLERN',NULL,'','Austria','',0,0,14,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22943,'24034','Rifflart','RIFFLART',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22944,'33532','Rifle','RIFLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22945,'13670','Riga','RIGA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:46:00','1900-01-01 00:00:00',1,0,1),(22946,'22837','Rigaud','RIGAUD',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:01','1900-01-01 00:00:00',1,0,1),(22947,'20393','Rigby','RIGBY',NULL,'','United States','',0,0,231,'2016-10-17 11:46:01','1900-01-01 00:00:00',1,0,1),(22948,'20394','Riggins','RIGGINS',NULL,'','United States','',0,0,231,'2016-10-17 11:46:01','1900-01-01 00:00:00',1,0,1),(22949,'865','Rigi-kaltbad','RIGI-KALTBAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:46:02','1900-01-01 00:00:00',1,0,1),(22950,'25678','Rigolet','RIGOLET',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:02','1900-01-01 00:00:00',1,0,1),(22951,'11405','Rigomagno','RIGOMAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:02','1900-01-01 00:00:00',1,0,1),(22952,'13760','Rihiveli','RIHIVELI',NULL,'','Maldives','',0,0,133,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22953,'3918','Riihimaki','RIIHIMAKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22954,'10036','Rijeka','RIJEKA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22955,'14756','Rijssen','RIJSSEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22956,'14730','Rijswijk','RIJSWIJK',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22957,'40798','Riksgransen','RIKSGRANSEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22958,'4468','Rillieux-la-pape','RILLIEUX-LA-PAPE',NULL,'','France','',0,0,76,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22959,'15414','Rimac','RIMAC',NULL,'','Peru','',0,0,172,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22960,'311','Rimbach','RIMBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:46:03','1900-01-01 00:00:00',1,0,1),(22961,'25352','Rimbey','RIMBEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:04','1900-01-01 00:00:00',1,0,1),(22962,'16842','Rimbo','RIMBO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:46:04','1900-01-01 00:00:00',1,0,1),(22963,'22838','Rimouski','RIMOUSKI',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:04','1900-01-01 00:00:00',1,0,1),(22964,'18196','Rimrock','RIMROCK',NULL,'','United States','',0,0,231,'2016-10-17 11:46:04','1900-01-01 00:00:00',1,0,1),(22965,'16649','Rimske Toplice','RIMSKE TOPLICE',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22966,'312','Rimsting','RIMSTING',NULL,'','Germany','',0,0,83,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22967,'15763','Rincon','RINCON',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22968,'37244','Rincon','RINCON',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22969,'19906','Rincon','RINCON',NULL,'','United States','',0,0,231,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22970,'13857','Rincon De Guayabitos','RINCON DE GUAYABITOS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:46:05','1900-01-01 00:00:00',1,0,1),(22971,'35045','Rincon De La Victori','RINCON DE LA VICTORI',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:06','1900-01-01 00:00:00',1,0,1),(22972,'26051','Rincon De Los Sauces','RINCON DE LOS SAUCES',NULL,'','Argentina','',0,0,10,'2016-10-17 11:46:06','1900-01-01 00:00:00',1,0,1),(22973,'32757','Rindge','RINDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:06','1900-01-01 00:00:00',1,0,1),(22974,'10754','Ring Of Kerry','RING OF KERRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:46:06','1900-01-01 00:00:00',1,0,1),(22975,'13640','Ringaudai','RINGAUDAI',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:46:07','1900-01-01 00:00:00',1,0,1),(22976,'14950','Ringebu','RINGEBU',NULL,'','Norway','',0,0,164,'2016-10-17 11:46:07','1900-01-01 00:00:00',1,0,1),(22977,'23325','Ringgenberg','RINGGENBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:46:07','1900-01-01 00:00:00',1,0,1),(22978,'19907','Ringgold','RINGGOLD',NULL,'','United States','',0,0,231,'2016-10-17 11:46:07','1900-01-01 00:00:00',1,0,1),(22979,'23628','Ringha','RINGHA',NULL,'','China','',0,0,46,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22980,'16556','Ringi Cove','RINGI COVE',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22981,'2278','Ringkobing','RINGKOBING',NULL,'','Denmark','',0,0,59,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22982,'14365','Ringlet','RINGLET',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22983,'8792','Ringmer','RINGMER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22984,'10854','Ringsend','RINGSEND',NULL,'','Ireland','',0,0,105,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22985,'22624','Ringsheim','RINGSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22986,'2331','Ringsted','RINGSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:46:08','1900-01-01 00:00:00',1,0,1),(22987,'28401','Ringwood','RINGWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:46:09','1900-01-01 00:00:00',1,0,1),(22988,'8793','Ringwood','RINGWOOD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:09','1900-01-01 00:00:00',1,0,1),(22989,'26370','Ringwood','RINGWOOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:09','1900-01-01 00:00:00',1,0,1),(22990,'2299','Rinkenaes','RINKENAES',NULL,'','Denmark','',0,0,59,'2016-10-17 11:46:10','1900-01-01 00:00:00',1,0,1),(22991,'37401','Rinn','RINN',NULL,'','Austria','',0,0,14,'2016-10-17 11:46:10','1900-01-01 00:00:00',1,0,1),(22992,'27273','Rinteln','RINTELN',NULL,'','Germany','',0,0,83,'2016-10-17 11:46:10','1900-01-01 00:00:00',1,0,1),(22993,'40258','Río Claro','RÍO CLARO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:46:10','1900-01-01 00:00:00',1,0,1),(22994,'15764','Rio Grande','RIO GRANDE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:46:11','1900-01-01 00:00:00',1,0,1),(22995,'2369','Rio San Juan','RIO SAN JUAN',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:46:13','1900-01-01 00:00:00',1,0,1),(22996,'34969','Riobamba','RIOBAMBA',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:46:13','1900-01-01 00:00:00',1,0,1),(22997,'41524','Riofrio','RIOFRIO',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:13','1900-01-01 00:00:00',1,0,1),(22998,'24110','Riohacha','RIOHACHA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(22999,'15430','Rioja','RIOJA',NULL,'','Peru','',0,0,172,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23000,'12830','Riola Sardo','RIOLA SARDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23001,'12378','Riolo Terme','RIOLO TERME',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23002,'5957','Riols','RIOLS',NULL,'','France','',0,0,76,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23003,'5020','Riom','RIOM',NULL,'','France','',0,0,76,'2016-10-17 11:46:14','1900-01-01 00:00:00',1,0,1),(23004,'12379','Riomaggiore','RIOMAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23005,'2771','Riomar','RIOMAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23006,'4469','Riom-es-montagnes','RIOM-ES-MONTAGNES',NULL,'','France','',0,0,76,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23007,'24095','Rionegro','RIONEGRO',NULL,'','Colombia','',0,0,49,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23008,'3106','Riospaso','RIOSPASO',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:15','1900-01-01 00:00:00',1,0,1),(23009,'39421','Ripalimosani','RIPALIMOSANI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:16','1900-01-01 00:00:00',1,0,1),(23010,'29076','Ripley','RIPLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:46:16','1900-01-01 00:00:00',1,0,1),(23011,'8794','Ripley','RIPLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:17','1900-01-01 00:00:00',1,0,1),(23012,'3588','Ripollet','RIPOLLET',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:18','1900-01-01 00:00:00',1,0,1),(23013,'8795','Ripon','RIPON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:19','1900-01-01 00:00:00',1,0,1),(23014,'18830','Ripon','RIPON',NULL,'','United States','',0,0,231,'2016-10-17 11:46:19','1900-01-01 00:00:00',1,0,1),(23015,'39061','Riposto','RIPOSTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23016,'6787','Riquewihr','RIQUEWIHR',NULL,'','France','',0,0,76,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23017,'8796','Risca','RISCA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23018,'10587','Rishikesh','RISHIKESH',NULL,'','India','Rishikesh',9,0,101,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23019,'13186','Rishiri','RISHIRI',NULL,'','Japan','',0,0,110,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23020,'10696','Rishra','RISHRA',NULL,'','India','',0,0,101,'2016-10-17 11:46:20','1900-01-01 00:00:00',1,0,1),(23021,'39336','Rising Fawn','RISING FAWN',NULL,'','United States','',0,0,231,'2016-10-17 11:46:21','1900-01-01 00:00:00',1,0,1),(23022,'40428','Risor','RISOR',NULL,'','Norway','',0,0,164,'2016-10-17 11:46:21','1900-01-01 00:00:00',1,0,1),(23023,'4841','Risoul','RISOUL',NULL,'','France','',0,0,76,'2016-10-17 11:46:22','1900-01-01 00:00:00',1,0,1),(23024,'43310','Ritten','RITTEN',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:22','1900-01-01 00:00:00',1,0,1),(23025,'31604','Ritzville','RITZVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:22','1900-01-01 00:00:00',1,0,1),(23026,'43090','Riudecaneys','RIUDECANEYS',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:23','1900-01-01 00:00:00',1,0,1),(23027,'3589','Riudellots De La Selva','RIUDELLOTS DE LA SELVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:23','1900-01-01 00:00:00',1,0,1),(23028,'42003','Rivabella Di Rimini','RIVABELLA DI RIMINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:23','1900-01-01 00:00:00',1,0,1),(23029,'12383','Rivalta Di Torino','RIVALTA DI TORINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:23','1900-01-01 00:00:00',1,0,1),(23030,'38060','Rivarolo Canavese','RIVAROLO CANAVESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:24','1900-01-01 00:00:00',1,0,1),(23031,'14448','Rivas','RIVAS',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:46:24','1900-01-01 00:00:00',1,0,1),(23032,'42004','Rivazzurra Di Rimini','RIVAZZURRA DI RIMINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:24','1900-01-01 00:00:00',1,0,1),(23033,'6360','Rivedoux-plage','RIVEDOUX-PLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:46:24','1900-01-01 00:00:00',1,0,1),(23034,'17539','Rivera','RIVERA',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:46:26','1900-01-01 00:00:00',1,0,1),(23035,'18831','Riverbank','RIVERBANK',NULL,'','United States','',0,0,231,'2016-10-17 11:46:26','1900-01-01 00:00:00',1,0,1),(23036,'29077','Riverdale','RIVERDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:27','1900-01-01 00:00:00',1,0,1),(23037,'23629','Riverfront - Shamian Island','RIVERFRONT - SHAMIAN ISLAND',NULL,'','China','',0,0,46,'2016-10-17 11:46:28','1900-01-01 00:00:00',1,0,1),(23038,'29078','Riverhead','RIVERHEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:46:28','1900-01-01 00:00:00',1,0,1),(23039,'25527','Rivers Inlet','RIVERS INLET',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:28','1900-01-01 00:00:00',1,0,1),(23040,'27760','Riverside','RIVERSIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:29','1900-01-01 00:00:00',1,0,1),(23041,'33391','Riverton','RIVERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:46:32','1900-01-01 00:00:00',1,0,1),(23042,'25623','Riverton','RIVERTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:33','1900-01-01 00:00:00',1,0,1),(23043,'26311','Rivervale','RIVERVALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:33','1900-01-01 00:00:00',1,0,1),(23044,'22222','Riverview','RIVERVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:46:34','1900-01-01 00:00:00',1,0,1),(23045,'20728','Riverwoods','RIVERWOODS',NULL,'','United States','',0,0,231,'2016-10-17 11:46:35','1900-01-01 00:00:00',1,0,1),(23046,'5958','Rivesaltes','RIVESALTES',NULL,'','France','',0,0,76,'2016-10-17 11:46:35','1900-01-01 00:00:00',1,0,1),(23047,'30889','Riviera','RIVIERA',NULL,'','United States','',0,0,231,'2016-10-17 11:46:35','1900-01-01 00:00:00',1,0,1),(23048,'14080','Riviera Maya','RIVIERA MAYA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:46:37','1900-01-01 00:00:00',1,0,1),(23049,'22839','Riviere Du Loup','RIVIERE DU LOUP',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:37','1900-01-01 00:00:00',1,0,1),(23050,'14270','Riviere Noire','RIVIERE NOIRE',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23051,'22841','Riviere-du-loup','RIVIERE-DU-LOUP',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23052,'11409','Rivisondoli','RIVISONDOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23053,'12384','Rivoli','RIVOLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23054,'32597','Rivonia','RIVONIA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23055,'24643','Rixensart','RIXENSART',NULL,'','Belgium','',0,0,21,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23056,'6788','Rixheim','RIXHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:46:38','1900-01-01 00:00:00',1,0,1),(23057,'16483','Riyadh','RIYADH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23058,'32354','Riyan','RIYAN',NULL,'','Yemen','',0,0,240,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23059,'17356','Rize','RIZE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23060,'23930','Rizhao','RIZHAO',NULL,'','China','',0,0,46,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23061,'14778','Rjukan','RJUKAN',NULL,'','Norway','',0,0,164,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23062,'32228','Road Town','ROAD TOWN',NULL,'','Virgin Islands - British','',0,0,32,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23063,'6692','Roanne','ROANNE',NULL,'','France','',0,0,76,'2016-10-17 11:46:39','1900-01-01 00:00:00',1,0,1),(23064,'17944','Roanoke','ROANOKE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:40','1900-01-01 00:00:00',1,0,1),(23065,'9968','Roatan','ROATAN',NULL,'','Honduras','',0,0,97,'2016-10-17 11:46:43','1900-01-01 00:00:00',1,0,1),(23066,'27502','Robbinsdale','ROBBINSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:43','1900-01-01 00:00:00',1,0,1),(23067,'33987','Robbinsville','ROBBINSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:43','1900-01-01 00:00:00',1,0,1),(23068,'41799','Robecchetto Con Induno','ROBECCHETTO CON INDUNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23069,'39325','Robertson','ROBERTSON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23070,'26749','Robertson','ROBERTSON',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23071,'34412','Robertville','ROBERTVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23072,'24679','Robertville','ROBERTVILLE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:46:44','1900-01-01 00:00:00',1,0,1),(23073,'22842','Roberval','ROBERVAL',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23074,'38680','Robina','ROBINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23075,'26312','Robinhood','ROBINHOOD',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23076,'20729','Robinson','ROBINSON',NULL,'','United States','',0,0,231,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23077,'36212','Robinson Crusoe Isl','ROBINSON CRUSOE ISL',NULL,'','Fiji','',0,0,74,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23078,'43815','Robinson Crusoe Island','ROBINSON CRUSOE ISLAND',NULL,'','Chile','',0,0,45,'2016-10-17 11:46:45','1900-01-01 00:00:00',1,0,1),(23079,'27909','Robinsonville','ROBINSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:46','1900-01-01 00:00:00',1,0,1),(23080,'26313','Robinvale','ROBINVALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:46:46','1900-01-01 00:00:00',1,0,1),(23081,'27911','Robisonville','ROBISONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23082,'41939','Robledillo De Gata','ROBLEDILLO DE GATA',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23083,'3010','Robledo De Chavela','ROBLEDO DE CHAVELA',NULL,'','Spain','',0,0,199,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23084,'25624','Roblin','ROBLIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23085,'25528','Robson Street - West End','ROBSON STREET - WEST END',NULL,'','Canada','',0,0,39,'2016-10-17 11:46:47','1900-01-01 00:00:00',1,0,1),(23086,'30891','Robstown','ROBSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:46:48','1900-01-01 00:00:00',1,0,1),(23087,'4984','Rocamadour','ROCAMADOUR',NULL,'','France','',0,0,76,'2016-10-17 11:46:48','1900-01-01 00:00:00',1,0,1),(23088,'40731','Roccacasale','ROCCACASALE',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:49','1900-01-01 00:00:00',1,0,1),(23089,'12385','Roccalumera','ROCCALUMERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:49','1900-01-01 00:00:00',1,0,1),(23090,'12386','Roccamena','ROCCAMENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:49','1900-01-01 00:00:00',1,0,1),(23091,'12387','Roccaraso','ROCCARASO',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23092,'40750','Roccasecca','ROCCASECCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23093,'12388','Roccastrada','ROCCASTRADA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23094,'12389','Roccatederighi','ROCCATEDERIGHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23095,'12391','Rocchetta Nervina','ROCCHETTA NERVINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:46:50','1900-01-01 00:00:00',1,0,1),(23096,'8797','Rocester','ROCESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:51','1900-01-01 00:00:00',1,0,1),(23097,'8798','Rochdale','ROCHDALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:51','1900-01-01 00:00:00',1,0,1),(23098,'31605','Roche Harbor','ROCHE HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:46:51','1900-01-01 00:00:00',1,0,1),(23099,'5676','Rochecorbon','ROCHECORBON',NULL,'','France','',0,0,76,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23100,'24712','Rochefort','ROCHEFORT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23101,'5341','Rochefort','ROCHEFORT',NULL,'','France','',0,0,76,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23102,'5595','Rochefort-en-terre','ROCHEFORT-EN-TERRE',NULL,'','France','',0,0,76,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23103,'40067','Rochefort-sur-nenon','ROCHEFORT-SUR-NENON',NULL,'','France','',0,0,76,'2016-10-17 11:46:52','1900-01-01 00:00:00',1,0,1),(23104,'6693','Rochegude','ROCHEGUDE',NULL,'','France','',0,0,76,'2016-10-17 11:46:53','1900-01-01 00:00:00',1,0,1),(23105,'24703','Rochehaut','ROCHEHAUT',NULL,'','Belgium','',0,0,21,'2016-10-17 11:46:53','1900-01-01 00:00:00',1,0,1),(23106,'5787','Rochejean','ROCHEJEAN',NULL,'','France','',0,0,76,'2016-10-17 11:46:53','1900-01-01 00:00:00',1,0,1),(23107,'20730','Rochelle','ROCHELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:46:53','1900-01-01 00:00:00',1,0,1),(23108,'44085','Rochemaure','ROCHEMAURE',NULL,'','France','',0,0,76,'2016-10-17 11:46:54','1900-01-01 00:00:00',1,0,1),(23109,'27761','Rocheport','ROCHEPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:46:55','1900-01-01 00:00:00',1,0,1),(23110,'20731','Rochester','ROCHESTER',NULL,'','United States','',0,0,231,'2016-10-17 11:46:55','1900-01-01 00:00:00',1,0,1),(23111,'8799','Rochester','ROCHESTER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:46:57','1900-01-01 00:00:00',1,0,1),(23112,'28561','Rociada','ROCIADA',NULL,'','United States','',0,0,231,'2016-10-17 11:47:00','1900-01-01 00:00:00',1,0,1),(23113,'24889','Rock Sound','ROCK SOUND',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:47:03','1900-01-01 00:00:00',1,0,1),(23114,'29514','Rockbridge','ROCKBRIDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:06','1900-01-01 00:00:00',1,0,1),(23115,'8801','Rockcliffe','ROCKCLIFFE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:06','1900-01-01 00:00:00',1,0,1),(23116,'30892','Rockdale','ROCKDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:06','1900-01-01 00:00:00',1,0,1),(23117,'34302','Rockdale','ROCKDALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:07','1900-01-01 00:00:00',1,0,1),(23118,'20734','Rockford','ROCKFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:47:07','1900-01-01 00:00:00',1,0,1),(23119,'26750','Rockhampton','ROCKHAMPTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:08','1900-01-01 00:00:00',1,0,1),(23120,'26615','Rockingham','ROCKINGHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:08','1900-01-01 00:00:00',1,0,1),(23121,'33988','Rockingham','ROCKINGHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:47:09','1900-01-01 00:00:00',1,0,1),(23122,'34628','Rockland','ROCKLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:47:09','1900-01-01 00:00:00',1,0,1),(23123,'21511','Rockland','ROCKLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:47:10','1900-01-01 00:00:00',1,0,1),(23124,'19594','Rockledge','ROCKLEDGE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:11','1900-01-01 00:00:00',1,0,1),(23125,'18834','Rocklin','ROCKLIN',NULL,'','United States','',0,0,231,'2016-10-17 11:47:11','1900-01-01 00:00:00',1,0,1),(23126,'19909','Rockmart','ROCKMART',NULL,'','United States','',0,0,231,'2016-10-17 11:47:12','1900-01-01 00:00:00',1,0,1),(23127,'21778','Rockville','ROCKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:15','1900-01-01 00:00:00',1,0,1),(23128,'30894','Rockwall','ROCKWALL',NULL,'','United States','',0,0,231,'2016-10-17 11:47:16','1900-01-01 00:00:00',1,0,1),(23129,'30895','Rockwell','ROCKWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:47:17','1900-01-01 00:00:00',1,0,1),(23130,'30151','Rockwood','ROCKWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:47:17','1900-01-01 00:00:00',1,0,1),(23131,'27764','Rocky Comfort','ROCKY COMFORT',NULL,'','United States','',0,0,231,'2016-10-17 11:47:18','1900-01-01 00:00:00',1,0,1),(23132,'25353','Rocky Mountain House','ROCKY MOUNTAIN HOUSE',NULL,'','Canada','',0,0,39,'2016-10-17 11:47:20','1900-01-01 00:00:00',1,0,1),(23133,'33992','Rodanthe','RODANTHE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:21','1900-01-01 00:00:00',1,0,1),(23134,'2309','Rodby','RODBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:21','1900-01-01 00:00:00',1,0,1),(23135,'2310','Rodbyhavn','RODBYHAVN',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:21','1900-01-01 00:00:00',1,0,1),(23136,'656','Rodder','RODDER',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:21','1900-01-01 00:00:00',1,0,1),(23137,'471','Rodelheim','RODELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23138,'14501','Roden','RODEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23139,'657','Rodenbach','RODENBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23140,'12392','Rodengo','RODENGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23141,'18835','Rodeo','RODEO',NULL,'','United States','',0,0,231,'2016-10-17 11:47:22','1900-01-01 00:00:00',1,0,1),(23142,'36087','Rodermark','RODERMARK',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23143,'4858','Rodez','RODEZ',NULL,'','France','',0,0,76,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23144,'2046','Rodgau','RODGAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23145,'12393','Rodi Garganico','RODI GARGANICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23146,'12394','Rodigo','RODIGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:23','1900-01-01 00:00:00',1,0,1),(23147,'13575','Rodney Bay','RODNEY BAY',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23148,'14257','Rodrigues Island','RODRIGUES ISLAND',NULL,'','Mauritius','',0,0,139,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23149,'40669','Rodvig','RODVIG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23150,'28404','Roebling','ROEBLING',NULL,'','United States','',0,0,231,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23151,'22391','Roedermark','ROEDERMARK',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23152,'14577','Roermond','ROERMOND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:47:24','1900-01-01 00:00:00',1,0,1),(23153,'14821','Roervik','ROERVIK',NULL,'','Norway','',0,0,164,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23154,'43945','Roeser','ROESER',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23155,'37900','Roesrath','ROESRATH',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23156,'313','Roetz','ROETZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23157,'14822','Rogaland','ROGALAND',NULL,'','Norway','',0,0,164,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23158,'16650','Rogaska Slatina','ROGASKA SLATINA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23159,'27505','Rogers','ROGERS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:25','1900-01-01 00:00:00',1,0,1),(23160,'25529','Rogers Pass','ROGERS PASS',NULL,'','Canada','',0,0,39,'2016-10-17 11:47:27','1900-01-01 00:00:00',1,0,1),(23161,'17945','Rogersville','ROGERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:27','1900-01-01 00:00:00',1,0,1),(23162,'37980','Roggenburg','ROGGENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:28','1900-01-01 00:00:00',1,0,1),(23163,'14926','Rognan','ROGNAN',NULL,'','Norway','',0,0,164,'2016-10-17 11:47:28','1900-01-01 00:00:00',1,0,1),(23164,'21779','Rognel Heights','ROGNEL HEIGHTS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:28','1900-01-01 00:00:00',1,0,1),(23165,'38760','Rognonas','ROGNONAS',NULL,'','France','',0,0,76,'2016-10-17 11:47:29','1900-01-01 00:00:00',1,0,1),(23166,'40025','Rogny-les-sept-ecluses','ROGNY-LES-SEPT-ECLUSES',NULL,'','France','',0,0,76,'2016-10-17 11:47:29','1900-01-01 00:00:00',1,0,1),(23167,'29742','Rogue River','ROGUE RIVER',NULL,'','United States','',0,0,231,'2016-10-17 11:47:29','1900-01-01 00:00:00',1,0,1),(23168,'10463','Rohet','ROHET',NULL,'','India','',0,0,101,'2016-10-17 11:47:30','1900-01-01 00:00:00',1,0,1),(23169,'44155','Rohlstorf','ROHLSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:30','1900-01-01 00:00:00',1,0,1),(23170,'18836','Rohnert Park','ROHNERT PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:47:30','1900-01-01 00:00:00',1,0,1),(23171,'37345','Rohr','ROHR',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:30','1900-01-01 00:00:00',1,0,1),(23172,'855','Rohrmoos-schladming','ROHRMOOS-SCHLADMING',NULL,'','Austria','',0,0,14,'2016-10-17 11:47:31','1900-01-01 00:00:00',1,0,1),(23173,'10640','Rohtak','ROHTAK',NULL,'','India','',0,0,101,'2016-10-17 11:47:31','1900-01-01 00:00:00',1,0,1),(23175,'6361','Roiffe','ROIFFE',NULL,'','France','',0,0,76,'2016-10-17 11:47:31','1900-01-01 00:00:00',1,0,1),(23176,'4470','Roissy','ROISSY',NULL,'','France','',0,0,76,'2016-10-17 11:47:31','1900-01-01 00:00:00',1,0,1),(23177,'4786','Roissy-en-france','ROISSY-EN-FRANCE',NULL,'','France','',0,0,76,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23178,'3781','Rojales','ROJALES',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23179,'10089','Rojtokmuzsaj','ROJTOKMUZSAJ',NULL,'','Hungary','',0,0,99,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23180,'10194','Rokot','ROKOT',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23181,'5743','Rolampont','ROLAMPONT',NULL,'','France','',0,0,76,'2016-10-17 11:47:32','1900-01-01 00:00:00',1,0,1),(23182,'32952','Roland','ROLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:47:33','1900-01-01 00:00:00',1,0,1),(23183,'2249','Rold','ROLD',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:33','1900-01-01 00:00:00',1,0,1),(23184,'3040','Roldan','ROLDAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:33','1900-01-01 00:00:00',1,0,1),(23185,'23326','Rolle','ROLLE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:35','1900-01-01 00:00:00',1,0,1),(23186,'24840','Rolle Town','ROLLE TOWN',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:47:35','1900-01-01 00:00:00',1,0,1),(23187,'4787','Rolleboise','ROLLEBOISE',NULL,'','France','',0,0,76,'2016-10-17 11:47:35','1900-01-01 00:00:00',1,0,1),(23188,'8802','Rollesby','ROLLESBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:35','1900-01-01 00:00:00',1,0,1),(23189,'26429','Rolleston','ROLLESTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:36','1900-01-01 00:00:00',1,0,1),(23190,'24858','Rolleville','ROLLEVILLE',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:47:36','1900-01-01 00:00:00',1,0,1),(23191,'20736','Rolling Meadows','ROLLING MEADOWS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:36','1900-01-01 00:00:00',1,0,1),(23192,'30896','Rollingwood','ROLLINGWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:47:36','1900-01-01 00:00:00',1,0,1),(23193,'26752','Roma','ROMA',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23194,'39217','Romainmotier','ROMAINMOTIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23195,'4788','Romainville','ROMAINVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23196,'36636','Roman','ROMAN',NULL,'','Romania','',0,0,179,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23197,'24593','Roman Pais','ROMAN PAIS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23198,'4472','Romaneche Thorins','ROMANECHE THORINS',NULL,'','France','',0,0,76,'2016-10-17 11:47:37','1900-01-01 00:00:00',1,0,1),(23199,'23327','Romanshorn','ROMANSHORN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:38','1900-01-01 00:00:00',1,0,1),(23200,'6694','Romans-sur-isere','ROMANS-SUR-ISERE',NULL,'','France','',0,0,76,'2016-10-17 11:47:38','1900-01-01 00:00:00',1,0,1),(23201,'35532','Rome-genzano','ROME-GENZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:40','1900-01-01 00:00:00',1,0,1),(23202,'35581','Rome-monte Porzio Ca','ROME-MONTE PORZIO CA',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:40','1900-01-01 00:00:00',1,0,1),(23203,'20737','Romeoville','ROMEOVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:40','1900-01-01 00:00:00',1,0,1),(23204,'40930','Romford','ROMFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:41','1900-01-01 00:00:00',1,0,1),(23205,'43215','Romilla','ROMILLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:41','1900-01-01 00:00:00',1,0,1),(23206,'5744','Romilly-sur-seine','ROMILLY-SUR-SEINE',NULL,'','France','',0,0,76,'2016-10-17 11:47:41','1900-01-01 00:00:00',1,0,1),(23207,'32041','Romney','ROMNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:47:41','1900-01-01 00:00:00',1,0,1),(23208,'5677','Romorantin-lanthenay','ROMORANTIN-LANTHENAY',NULL,'','France','',0,0,76,'2016-10-17 11:47:42','1900-01-01 00:00:00',1,0,1),(23209,'472','Romrod','ROMROD',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:42','1900-01-01 00:00:00',1,0,1),(23210,'8803','Romsey','ROMSEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:42','1900-01-01 00:00:00',1,0,1),(23211,'22227','Romulus','ROMULUS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:43','1900-01-01 00:00:00',1,0,1),(23212,'31218','Ronald Reagan National Airport','RONALD REAGAN NATIONAL AIRPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:47:43','1900-01-01 00:00:00',1,0,1),(23213,'28015','Ronan','RONAN',NULL,'','United States','',0,0,231,'2016-10-17 11:47:44','1900-01-01 00:00:00',1,0,1),(23214,'12912','Roncade','RONCADE',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:44','1900-01-01 00:00:00',1,0,1),(23215,'6362','Ronce-les-bains','RONCE-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:47:44','1900-01-01 00:00:00',1,0,1),(23216,'11412','Ronchi','RONCHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23217,'6192','Ronchin','RONCHIN',NULL,'','France','',0,0,76,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23218,'12396','Ronciglione','RONCIGLIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23219,'23328','Ronco Bedretto','RONCO BEDRETTO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23220,'12734','Roncofreddo','RONCOFREDDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:45','1900-01-01 00:00:00',1,0,1),(23221,'11413','Roncola','RONCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23222,'6193','Roncq','RONCQ',NULL,'','France','',0,0,76,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23223,'3011','Ronda','RONDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23224,'25078','Rondonopolis','RONDONOPOLIS',NULL,'','Brazil','',0,0,30,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23225,'14165','Rongelap','RONGELAP',NULL,'','Marshall Islands','',0,0,136,'2016-10-17 11:47:46','1900-01-01 00:00:00',1,0,1),(23226,'29085','Ronkonkoma','RONKONKOMA',NULL,'','United States','',0,0,231,'2016-10-17 11:47:47','1900-01-01 00:00:00',1,0,1),(23227,'30152','Ronks','RONKS',NULL,'','United States','',0,0,231,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23228,'2165','Ronne','RONNE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23229,'16695','Ronneby','RONNEBY',NULL,'','Sweden','',0,0,209,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23230,'27274','Ronnenberg','RONNENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23231,'12397','Ronzone','RONZONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23232,'32598','Roodepoort','ROODEPOORT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23233,'42588','Roopangarh','ROOPANGARH',NULL,'','India','',0,0,101,'2016-10-17 11:47:48','1900-01-01 00:00:00',1,0,1),(23234,'44221','Roorkee','ROORKEE',NULL,'','India','',0,0,101,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23235,'14610','Roosendaal','ROOSENDAAL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23236,'33392','Roosevelt','ROOSEVELT',NULL,'','United States','',0,0,231,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23237,'10755','Rooskey','ROOSKEY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23238,'34303','Rooty Hill','ROOTY HILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:49','1900-01-01 00:00:00',1,0,1),(23239,'6516','Roquebilliere','ROQUEBILLIERE',NULL,'','France','',0,0,76,'2016-10-17 11:47:50','1900-01-01 00:00:00',1,0,1),(23240,'4848','Roquebrune Cap Martin','ROQUEBRUNE CAP MARTIN',NULL,'','France','',0,0,76,'2016-10-17 11:47:50','1900-01-01 00:00:00',1,0,1),(23241,'4849','Roquebrune-cap-martin','ROQUEBRUNE-CAP-MARTIN',NULL,'','France','',0,0,76,'2016-10-17 11:47:50','1900-01-01 00:00:00',1,0,1),(23242,'4473','Roquebrune-sur-argens','ROQUEBRUNE-SUR-ARGENS',NULL,'','France','',0,0,76,'2016-10-17 11:47:50','1900-01-01 00:00:00',1,0,1),(23243,'5245','Roquefort','ROQUEFORT',NULL,'','France','',0,0,76,'2016-10-17 11:47:51','1900-01-01 00:00:00',1,0,1),(23244,'4474','Roquefort-les-pins','ROQUEFORT-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:47:51','1900-01-01 00:00:00',1,0,1),(23245,'5246','Roques','ROQUES',NULL,'','France','',0,0,76,'2016-10-17 11:47:51','1900-01-01 00:00:00',1,0,1),(23246,'38414','Rorkes Drift','RORKES DRIFT',NULL,'','South Africa','',0,0,195,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23247,'14995','Roros','ROROS',NULL,'','Norway','',0,0,164,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23248,'23475','Rorschach','RORSCHACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23249,'23074','Rorschacherberg','RORSCHACHERBERG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23250,'3684','Rosal','ROSAL',NULL,'','Spain','',0,0,199,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23251,'18837','Rosamond','ROSAMOND',NULL,'','United States','',0,0,231,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23252,'26314','Rosanna','ROSANNA',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:52','1900-01-01 00:00:00',1,0,1),(23253,'37554','Rosario','ROSARIO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:47:53','1900-01-01 00:00:00',1,0,1),(23254,'26148','Rosario','ROSARIO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:47:53','1900-01-01 00:00:00',1,0,1),(23255,'44243','Rosario','ROSARIO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:47:53','1900-01-01 00:00:00',1,0,1),(23256,'31606','Rosario','ROSARIO',NULL,'','United States','',0,0,231,'2016-10-17 11:47:53','1900-01-01 00:00:00',1,0,1),(23257,'39459','Rosate','ROSATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:47:54','1900-01-01 00:00:00',1,0,1),(23258,'29087','Roscoe','ROSCOE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:54','1900-01-01 00:00:00',1,0,1),(23259,'5596','Roscoff','ROSCOFF',NULL,'','France','',0,0,76,'2016-10-17 11:47:54','1900-01-01 00:00:00',1,0,1),(23260,'10923','Roscommon','ROSCOMMON',NULL,'','Ireland','',0,0,105,'2016-10-17 11:47:54','1900-01-01 00:00:00',1,0,1),(23261,'41510','Roscrea','ROSCREA',NULL,'','Ireland','',0,0,105,'2016-10-17 11:47:55','1900-01-01 00:00:00',1,0,1),(23262,'13088','Rose Hall','ROSE HALL',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:47:55','1900-01-01 00:00:00',1,0,1),(23263,'27506','Roseau','ROSEAU',NULL,'','United States','',0,0,231,'2016-10-17 11:47:56','1900-01-01 00:00:00',1,0,1),(23264,'2099','Roseau','ROSEAU',NULL,'','Dominica','',0,0,500,'2016-10-17 11:47:56','1900-01-01 00:00:00',1,0,1),(23265,'32495','Rosebank','ROSEBANK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23266,'9315','Rosebank','ROSEBANK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23267,'5','Roseberth','ROSEBERTH',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23268,'26548','Rosebud','ROSEBUD',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23269,'29743','Roseburg','ROSEBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:47:57','1900-01-01 00:00:00',1,0,1),(23270,'21781','Rosedale','ROSEDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:47:58','1900-01-01 00:00:00',1,0,1),(23271,'34304','Rosehill','ROSEHILL',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:59','1900-01-01 00:00:00',1,0,1),(23272,'26315','Rosella Plains','ROSELLA PLAINS',NULL,'','Australia','',0,0,13,'2016-10-17 11:47:59','1900-01-01 00:00:00',1,0,1),(23273,'20738','Roselle','ROSELLE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:00','1900-01-01 00:00:00',1,0,1),(23274,'18838','Rosemead','ROSEMEAD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:00','1900-01-01 00:00:00',1,0,1),(23275,'20739','Rosemont','ROSEMONT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:01','1900-01-01 00:00:00',1,0,1),(23276,'27508','Rosemount','ROSEMOUNT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:01','1900-01-01 00:00:00',1,0,1),(23277,'30898','Rosenberg','ROSENBERG',NULL,'','United States','',0,0,231,'2016-10-17 11:48:02','1900-01-01 00:00:00',1,0,1),(23278,'29088','Rosendale','ROSENDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23279,'22392','Rosengarten Sieversen','ROSENGARTEN SIEVERSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23280,'314','Rosenheim','ROSENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23281,'473','Rosenthal','ROSENTHAL',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23282,'2480','Roses','ROSES',NULL,'','Spain','',0,0,199,'2016-10-17 11:48:03','1900-01-01 00:00:00',1,0,1),(23283,'35630','Roseto Degli Abruzzi','ROSETO DEGLI ABRUZZI',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:04','1900-01-01 00:00:00',1,0,1),(23284,'32','Rosetown','ROSETOWN',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:04','1900-01-01 00:00:00',1,0,1),(23285,'26863','Rosevears','ROSEVEARS',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:04','1900-01-01 00:00:00',1,0,1),(23286,'18839','Roseville','ROSEVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:04','1900-01-01 00:00:00',1,0,1),(23287,'33993','Rosewood','ROSEWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23288,'42620','Rosh Pina','ROSH PINA',NULL,'','Israel','',0,0,106,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23289,'11053','Rosh-pina','ROSH-PINA',NULL,'','Israel','',0,0,106,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23290,'12398','Rosia','ROSIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23291,'12399','Rosignano Marittimo','ROSIGNANO MARITTIMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23292,'2286','Roskilde','ROSKILDE',NULL,'','Denmark','',0,0,59,'2016-10-17 11:48:06','1900-01-01 00:00:00',1,0,1),(23293,'2340','Roslev','ROSLEV',NULL,'','Denmark','',0,0,59,'2016-10-17 11:48:07','1900-01-01 00:00:00',1,0,1),(23294,'37240','Roslin','ROSLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:07','1900-01-01 00:00:00',1,0,1),(23295,'21513','Roslindale','ROSLINDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:07','1900-01-01 00:00:00',1,0,1),(23296,'15244','Roslyn','ROSLYN',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:48:07','1900-01-01 00:00:00',1,0,1),(23297,'29089','Roslyn','ROSLYN',NULL,'','United States','',0,0,231,'2016-10-17 11:48:08','1900-01-01 00:00:00',1,0,1),(23298,'14611','Rosmalen','ROSMALEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:48:08','1900-01-01 00:00:00',1,0,1),(23299,'39410','Rosman','ROSMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:48:08','1900-01-01 00:00:00',1,0,1),(23300,'40017','Rosmaninhal','ROSMANINHAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:48:08','1900-01-01 00:00:00',1,0,1),(23301,'40992','Rosny Sous Bois','ROSNY SOUS BOIS',NULL,'','France','',0,0,76,'2016-10-17 11:48:09','1900-01-01 00:00:00',1,0,1),(23302,'4789','Rosny-sous-bois','ROSNY-SOUS-BOIS',NULL,'','France','',0,0,76,'2016-10-17 11:48:09','1900-01-01 00:00:00',1,0,1),(23303,'12913','Rosolina','ROSOLINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:09','1900-01-01 00:00:00',1,0,1),(23304,'12400','Rossano','ROSSANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23305,'1908','Rossau','ROSSAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23306,'38572','Rossbach','ROSSBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23307,'10757','Rosscarbery','ROSSCARBERY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23308,'22393','Rossdorf','ROSSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:10','1900-01-01 00:00:00',1,0,1),(23309,'23329','Rossens','ROSSENS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:11','1900-01-01 00:00:00',1,0,1),(23310,'10926','Rosses Point','ROSSES POINT',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:11','1900-01-01 00:00:00',1,0,1),(23311,'8804','Rossett','ROSSETT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:11','1900-01-01 00:00:00',1,0,1),(23312,'29515','Rossford','ROSSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:11','1900-01-01 00:00:00',1,0,1),(23313,'22394','Rosshaupten','ROSSHAUPTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23314,'39085','Rossiglione','ROSSIGLIONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23315,'23330','Rossiniere','ROSSINIERE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23316,'25530','Rossland','ROSSLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23317,'10952','Rosslare','ROSSLARE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23318,'44194','Rosslea','ROSSLEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:12','1900-01-01 00:00:00',1,0,1),(23319,'31220','Rosslyn','ROSSLYN',NULL,'','United States','',0,0,231,'2016-10-17 11:48:13','1900-01-01 00:00:00',1,0,1),(23320,'10759','Rossnowlagh','ROSSNOWLAGH',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:13','1900-01-01 00:00:00',1,0,1),(23321,'9291','Ross-on-wye','ROSS-ON-WYE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:13','1900-01-01 00:00:00',1,0,1),(23322,'14927','Rost','ROST',NULL,'','Norway','',0,0,164,'2016-10-17 11:48:14','1900-01-01 00:00:00',1,0,1),(23323,'11414','Rosta','ROSTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:14','1900-01-01 00:00:00',1,0,1),(23324,'22395','Rostock','ROSTOCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:14','1900-01-01 00:00:00',1,0,1),(23325,'16377','Rostokino','ROSTOKINO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:48:15','1900-01-01 00:00:00',1,0,1),(23326,'16477','Rostov','ROSTOV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:48:15','1900-01-01 00:00:00',1,0,1),(23327,'39298','Rostov-na-donu','ROSTOV-NA-DONU',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:48:15','1900-01-01 00:00:00',1,0,1),(23328,'19911','Roswell','ROSWELL',NULL,'','United States','',0,0,231,'2016-10-17 11:48:15','1900-01-01 00:00:00',1,0,1),(23329,'8805','Rosyth','ROSYTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:16','1900-01-01 00:00:00',1,0,1),(23330,'14208','Rota','ROTA',NULL,'','Northern Mariana Islands','',0,0,163,'2016-10-17 11:48:16','1900-01-01 00:00:00',1,0,1),(23331,'3285','Rota','ROTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:48:16','1900-01-01 00:00:00',1,0,1),(23332,'27275','Rotenburg','ROTENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:16','1900-01-01 00:00:00',1,0,1),(23333,'1719','Rothaurach','ROTHAURACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:17','1900-01-01 00:00:00',1,0,1),(23334,'8806','Rothbury','ROTHBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:17','1900-01-01 00:00:00',1,0,1),(23335,'34305','Rothbury','ROTHBURY',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:17','1900-01-01 00:00:00',1,0,1),(23336,'22229','Rothbury','ROTHBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:18','1900-01-01 00:00:00',1,0,1),(23337,'316','Rothenberg','ROTHENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:18','1900-01-01 00:00:00',1,0,1),(23338,'23075','Rothenburg','ROTHENBURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:18','1900-01-01 00:00:00',1,0,1),(23339,'1044','Rothenburg','ROTHENBURG',NULL,'','GERMANY','',0,0,83,'2016-10-17 11:48:18','1900-01-01 00:00:00',1,0,1),(23340,'36103','Rothenburg-uffenheim','ROTHENBURG-UFFENHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:19','1900-01-01 00:00:00',1,0,1),(23341,'8807','Rotherham','ROTHERHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:19','1900-01-01 00:00:00',1,0,1),(23342,'7275','Rotherwick','ROTHERWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:19','1900-01-01 00:00:00',1,0,1),(23343,'8809','Rothesay','ROTHESAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:19','1900-01-01 00:00:00',1,0,1),(23344,'34413','Rothesay','ROTHESAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:20','1900-01-01 00:00:00',1,0,1),(23345,'8810','Rothley','ROTHLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:20','1900-01-01 00:00:00',1,0,1),(23346,'23430','Rothrist','ROTHRIST',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:20','1900-01-01 00:00:00',1,0,1),(23347,'31876','Rothschild','ROTHSCHILD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:20','1900-01-01 00:00:00',1,0,1),(23348,'10259','Roti','ROTI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23349,'16173','Rotoava','ROTOAVA',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23350,'15161','Rotorua','ROTORUA',NULL,'','New Zealand','Rotorua',0,0,157,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23351,'1946','Rotta','ROTTA',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23352,'2066','Rottach-egern','ROTTACH-EGERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23353,'22625','Rottenburg','ROTTENBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23354,'14731','Rotterdam','ROTTERDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:48:21','1900-01-01 00:00:00',1,0,1),(23355,'29090','Rotterdam','ROTTERDAM',NULL,'','United States','',0,0,231,'2016-10-17 11:48:22','1900-01-01 00:00:00',1,0,1),(23356,'38941','Rotthalmuenster','ROTTHALMUENSTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:22','1900-01-01 00:00:00',1,0,1),(23357,'26316','Rottnest Island','ROTTNEST ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:22','1900-01-01 00:00:00',1,0,1),(23358,'22626','Rottweil','ROTTWEIL',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:22','1900-01-01 00:00:00',1,0,1),(23359,'6194','Roubaix','ROUBAIX',NULL,'','France','',0,0,76,'2016-10-17 11:48:23','1900-01-01 00:00:00',1,0,1),(23360,'4475','Roucas Blanc','ROUCAS BLANC',NULL,'','France','',0,0,76,'2016-10-17 11:48:23','1900-01-01 00:00:00',1,0,1),(23361,'5092','Rouen','ROUEN',NULL,'','France','',0,0,76,'2016-10-17 11:48:23','1900-01-01 00:00:00',1,0,1),(23362,'5048','Rouffach','ROUFFACH',NULL,'','France','',0,0,76,'2016-10-17 11:48:23','1900-01-01 00:00:00',1,0,1),(23363,'6129','Rouffiac-tolosan','ROUFFIAC-TOLOSAN',NULL,'','France','',0,0,76,'2016-10-17 11:48:24','1900-01-01 00:00:00',1,0,1),(23364,'23331','Rougemont','ROUGEMONT',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:24','1900-01-01 00:00:00',1,0,1),(23365,'5745','Rouilly-sacey','ROUILLY-SACEY',NULL,'','France','',0,0,76,'2016-10-17 11:48:24','1900-01-01 00:00:00',1,0,1),(23366,'40617','Roullet-saint-estèphe','ROULLET-SAINT-ESTÈPHE',NULL,'','France','',0,0,76,'2016-10-17 11:48:24','1900-01-01 00:00:00',1,0,1),(23367,'4476','Roumazieres-loubert','ROUMAZIERES-LOUBERT',NULL,'','France','',0,0,76,'2016-10-17 11:48:25','1900-01-01 00:00:00',1,0,1),(23368,'34629','Round Lake','ROUND LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:25','1900-01-01 00:00:00',1,0,1),(23369,'10873','Roundstone','ROUNDSTONE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:48:27','1900-01-01 00:00:00',1,0,1),(23370,'28016','Roundup','ROUNDUP',NULL,'','United States','',0,0,231,'2016-10-17 11:48:27','1900-01-01 00:00:00',1,0,1),(23371,'10465','Rourkela','ROURKELA',NULL,'','India','Rourkela',8,0,101,'2016-10-17 11:48:28','1900-01-01 00:00:00',1,0,1),(23372,'29093','Rouses Point','ROUSES POINT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:28','1900-01-01 00:00:00',1,0,1),(23373,'24785','Rousse','ROUSSE',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:48:28','1900-01-01 00:00:00',1,0,1),(23374,'6517','Rousset','ROUSSET',NULL,'','France','',0,0,76,'2016-10-17 11:48:28','1900-01-01 00:00:00',1,0,1),(23375,'37675','Roussospiti','ROUSSOSPITI',NULL,'','Greece','',0,0,86,'2016-10-17 11:48:29','1900-01-01 00:00:00',1,0,1),(23376,'6195','Rouvignies','ROUVIGNIES',NULL,'','France','',0,0,76,'2016-10-17 11:48:29','1900-01-01 00:00:00',1,0,1),(23377,'38124','Rouvres-en-xaintois','ROUVRES-EN-XAINTOIS',NULL,'','France','',0,0,76,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23378,'22845','Rouyn-noranda','ROUYN-NORANDA',NULL,'','Canada','',0,0,39,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23379,'3930','Rovaniemi','ROVANIEMI',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23380,'11416','Roveleto Di Cadeo','ROVELETO DI CADEO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23381,'38563','Rovere Veronese','ROVERE VERONESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23382,'12401','Rovereto','ROVERETO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:30','1900-01-01 00:00:00',1,0,1),(23383,'12402','Rovetta','ROVETTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23384,'12403','Rovigo','ROVIGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23385,'10037','Rovinj','ROVINJ',NULL,'','Croatia','',0,0,55,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23386,'23332','Rovio','ROVIO',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23387,'17499','Rovno','ROVNO',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:48:31','1900-01-01 00:00:00',1,0,1),(23388,'8811','Rowardennan','ROWARDENNAN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:32','1900-01-01 00:00:00',1,0,1),(23389,'21514','Rowe','ROWE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:32','1900-01-01 00:00:00',1,0,1),(23390,'33994','Rowland','ROWLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:48:33','1900-01-01 00:00:00',1,0,1),(23391,'26819','Rowland Flat','ROWLAND FLAT',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:33','1900-01-01 00:00:00',1,0,1),(23392,'8812','Rowlands Castle','ROWLANDS CASTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:34','1900-01-01 00:00:00',1,0,1),(23393,'30901','Rowlett','ROWLETT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:34','1900-01-01 00:00:00',1,0,1),(23394,'8813','Rowton','ROWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:35','1900-01-01 00:00:00',1,0,1),(23395,'26549','Rowville','ROWVILLE',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:35','1900-01-01 00:00:00',1,0,1),(23396,'15560','Roxas City','ROXAS CITY',NULL,'','Philippines','',0,0,173,'2016-10-17 11:48:35','1900-01-01 00:00:00',1,0,1),(23397,'33995','Roxboro','ROXBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:48:35','1900-01-01 00:00:00',1,0,1),(23398,'21516','Roxbury','ROXBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:36','1900-01-01 00:00:00',1,0,1),(23399,'15044','Royal Chitwan National Park','ROYAL CHITWAN NATIONAL PARK',NULL,'','Nepal','',0,0,153,'2016-10-17 11:48:37','1900-01-01 00:00:00',1,0,1),(23400,'7276','Royal Leamington Spa','ROYAL LEAMINGTON SPA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:37','1900-01-01 00:00:00',1,0,1),(23401,'43655','Royal Pines','ROYAL PINES',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:39','1900-01-01 00:00:00',1,0,1),(23402,'6363','Royan','ROYAN',NULL,'','France','',0,0,76,'2016-10-17 11:48:39','1900-01-01 00:00:00',1,0,1),(23403,'5342','Royat','ROYAT',NULL,'','France','',0,0,76,'2016-10-17 11:48:39','1900-01-01 00:00:00',1,0,1),(23404,'8815','Roybridge','ROYBRIDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:40','1900-01-01 00:00:00',1,0,1),(23405,'40558','Royeres','ROYERES',NULL,'','France','',0,0,76,'2016-10-17 11:48:40','1900-01-01 00:00:00',1,0,1),(23406,'37306','Royersford','ROYERSFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:40','1900-01-01 00:00:00',1,0,1),(23407,'3988','Royla','ROYLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:41','1900-01-01 00:00:00',1,0,1),(23408,'30902','Royse City','ROYSE CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:41','1900-01-01 00:00:00',1,0,1),(23409,'19912','Royston','ROYSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23410,'8816','Royston','ROYSTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23411,'7277','Rozel Bay','ROZEL BAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23412,'40130','Rozmberk Nad Vltavou','ROZMBERK NAD VLTAVOU',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23413,'40294','Roznov Pod Radhostem','ROZNOV POD RADHOSTEM',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:48:42','1900-01-01 00:00:00',1,0,1),(23414,'37774','Roztoky','ROZTOKY',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:48:43','1900-01-01 00:00:00',1,0,1),(23415,'12404','Rubano','RUBANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:43','1900-01-01 00:00:00',1,0,1),(23416,'5870','Rubelles','RUBELLES',NULL,'','France','',0,0,76,'2016-10-17 11:48:43','1900-01-01 00:00:00',1,0,1),(23417,'3479','Rubena','RUBENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:48:43','1900-01-01 00:00:00',1,0,1),(23418,'18841','Rubidoux','RUBIDOUX',NULL,'','United States','',0,0,231,'2016-10-17 11:48:44','1900-01-01 00:00:00',1,0,1),(23419,'12405','Rubiera','RUBIERA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:44','1900-01-01 00:00:00',1,0,1),(23420,'17760','Ruby','RUBY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:44','1900-01-01 00:00:00',1,0,1),(23421,'31221','Ruckersville','RUCKERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:45','1900-01-01 00:00:00',1,0,1),(23422,'317','Ruckholz','RUCKHOLZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:45','1900-01-01 00:00:00',1,0,1),(23423,'318','Rudersdorf','RUDERSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:45','1900-01-01 00:00:00',1,0,1),(23424,'36090','Rudesheim','RUDESHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:45','1900-01-01 00:00:00',1,0,1),(23425,'7278','Rudford','RUDFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23426,'7279','Rudge','RUDGE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23427,'37183','Rudloe','RUDLOE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23428,'22397','Rudolfshaus Bei Kirn','RUDOLFSHAUS BEI KIRN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23429,'23431','Rudolfstetten','RUDOLFSTETTEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:46','1900-01-01 00:00:00',1,0,1),(23430,'802','Rudow','RUDOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23431,'658','Ruedesheim Am Rhein','RUEDESHEIM AM RHEIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23432,'4790','Rueil','RUEIL',NULL,'','France','',0,0,76,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23433,'17413','Rueili Village','RUEILI VILLAGE',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23434,'5678','Rueil-la-gadeliere','RUEIL-LA-GADELIERE',NULL,'','France','',0,0,76,'2016-10-17 11:48:47','1900-01-01 00:00:00',1,0,1),(23435,'4791','Rueil-malmaison','RUEIL-MALMAISON',NULL,'','France','',0,0,76,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23436,'27276','Rueper','RUEPER',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23437,'23076','Rueschlikon','RUESCHLIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23438,'3480','Ruesga','RUESGA',NULL,'','Spain','',0,0,199,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23439,'8817','Rufford','RUFFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23440,'11418','Ruffre','RUFFRE',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:48','1900-01-01 00:00:00',1,0,1),(23441,'12406','Rufina','RUFINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:49','1900-01-01 00:00:00',1,0,1),(23442,'29745','Rufus','RUFUS',NULL,'','United States','',0,0,231,'2016-10-17 11:48:49','1900-01-01 00:00:00',1,0,1),(23443,'23748','Rugao','RUGAO',NULL,'','China','',0,0,46,'2016-10-17 11:48:49','1900-01-01 00:00:00',1,0,1),(23444,'8818','Rugby','RUGBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:49','1900-01-01 00:00:00',1,0,1),(23445,'28080','Rugby','RUGBY',NULL,'','United States','',0,0,231,'2016-10-17 11:48:50','1900-01-01 00:00:00',1,0,1),(23446,'8819','Rugeley','RUGELEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:50','1900-01-01 00:00:00',1,0,1),(23447,'42009','Rugen','RUGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:50','1900-01-01 00:00:00',1,0,1),(23448,'4478','Rugy','RUGY',NULL,'','France','',0,0,76,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23449,'40612','Ruhla','RUHLA',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23450,'38378','Ruhpolding','RUHPOLDING',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23451,'319','Ruhstorf','RUHSTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23452,'23712','Rui\'an','RUI\'AN',NULL,'','China','',0,0,46,'2016-10-17 11:48:51','1900-01-01 00:00:00',1,0,1),(23453,'28563','Ruidoso','RUIDOSO',NULL,'','United States','',0,0,231,'2016-10-17 11:48:52','1900-01-01 00:00:00',1,0,1),(23454,'34898','Ruili','RUILI',NULL,'','China','',0,0,46,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23455,'14502','Ruinerwold','RUINERWOLD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23456,'8820','Ruislip','RUISLIP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23457,'4028','Ruissalo','RUISSALO',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23458,'4039','Ruka','RUKA',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23459,'3900','Rukatunturi','RUKATUNTURI',NULL,'','Finland','',0,0,75,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23460,'37881','Rukavac','RUKAVAC',NULL,'','Croatia','',0,0,55,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23461,'32378','Ruma','RUMA',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23462,'17223','Rumelihisarc','RUMELIHISARC',NULL,'','Turkey','',0,0,222,'2016-10-17 11:48:53','1900-01-01 00:00:00',1,0,1),(23463,'30265','Rumford','RUMFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:48:54','1900-01-01 00:00:00',1,0,1),(23464,'38126','Rumia','RUMIA',NULL,'','Poland','',0,0,174,'2016-10-17 11:48:54','1900-01-01 00:00:00',1,0,1),(23465,'23333','Rumlang','RUMLANG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23466,'11419','Rumo','RUMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23467,'13089','Runaway Bay','RUNAWAY BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23468,'8821','Runcorn','RUNCORN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23469,'14417','Rundu','RUNDU',NULL,'','Namibia','',0,0,151,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23470,'4792','Rungis','RUNGIS',NULL,'','France','',0,0,76,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23471,'2180','Rungsted','RUNGSTED',NULL,'','Denmark','',0,0,59,'2016-10-17 11:48:55','1900-01-01 00:00:00',1,0,1),(23472,'28405','Runnemede','RUNNEMEDE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:56','1900-01-01 00:00:00',1,0,1),(23473,'18842','Running Springs','RUNNING SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:48:56','1900-01-01 00:00:00',1,0,1),(23474,'20395','Rupert','RUPERT',NULL,'','United States','',0,0,231,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23475,'42585','Rupnagar','RUPNAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23476,'561','Ruppichteroth','RUPPICHTEROTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23477,'3832','Rupsi','RUPSI',NULL,'','Estonia','',0,0,69,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23478,'10588','Rupsi','RUPSI',NULL,'','India','',0,0,101,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23479,'16138','Rurutu','RURUTU',NULL,'','French Polynesia','',0,0,78,'2016-10-17 11:48:57','1900-01-01 00:00:00',1,0,1),(23480,'41219','Ruschlikon','RUSCHLIKON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23481,'34306','Rushcutters Bay','RUSHCUTTERS BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23482,'8822','Rushden','RUSHDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23483,'36338','Rushford','RUSHFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23484,'20977','Rushville','RUSHVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:48:58','1900-01-01 00:00:00',1,0,1),(23485,'43289','Rushyford','RUSHYFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:48:59','1900-01-01 00:00:00',1,0,1),(23486,'30903','Rusk','RUSK',NULL,'','United States','',0,0,231,'2016-10-17 11:48:59','1900-01-01 00:00:00',1,0,1),(23487,'19596','Ruskin','RUSKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:49:00','1900-01-01 00:00:00',1,0,1),(23488,'8824','Rusper','RUSPER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:00','1900-01-01 00:00:00',1,0,1),(23489,'21126','Russell','RUSSELL',NULL,'','United States','',0,0,231,'2016-10-17 11:49:00','1900-01-01 00:00:00',1,0,1),(23490,'15245','Russell','RUSSELL',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:49:01','1900-01-01 00:00:00',1,0,1),(23491,'25625','Russell','RUSSELL',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:01','1900-01-01 00:00:00',1,0,1),(23492,'33728','Russellville','RUSSELLVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:49:01','1900-01-01 00:00:00',1,0,1),(23493,'475','Russelsheim','RUSSELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:03','1900-01-01 00:00:00',1,0,1),(23494,'22398','Rüsselsheim','RÜSSELSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:03','1900-01-01 00:00:00',1,0,1),(23495,'12735','Russi','RUSSI',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:03','1900-01-01 00:00:00',1,0,1),(23496,'17761','Russian Mission','RUSSIAN MISSION',NULL,'','United States','',0,0,231,'2016-10-17 11:49:03','1900-01-01 00:00:00',1,0,1),(23497,'15163','Russley - Christchurch International Airport (Chc)','RUSSLEY - CHRISTCHURCH INTERNATIONAL AIRPORT (CHC)',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23498,'22627','Rust','RUST',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23499,'27067','Rust','RUST',NULL,'','Austria','',0,0,14,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23500,'32599','Rustenburg','RUSTENBURG',NULL,'','South Africa','Rustenburg',0,0,195,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23501,'25828','Rusticoville','RUSTICOVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23502,'8825','Rustington','RUSTINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:04','1900-01-01 00:00:00',1,0,1),(23503,'21254','Ruston','RUSTON',NULL,'','United States','',0,0,231,'2016-10-17 11:49:05','1900-01-01 00:00:00',1,0,1),(23504,'42881','Rusutsu','RUSUTSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:49:05','1900-01-01 00:00:00',1,0,1),(23505,'37379','Rute','RUTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:06','1900-01-01 00:00:00',1,0,1),(23506,'23077','Rute','RUTE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:06','1900-01-01 00:00:00',1,0,1),(23507,'10354','Ruteng','RUTENG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:49:06','1900-01-01 00:00:00',1,0,1),(23508,'22399','Ruthen Kallenhardt','RUTHEN KALLENHARDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:06','1900-01-01 00:00:00',1,0,1),(23509,'18843','Rutherford','RUTHERFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:49:07','1900-01-01 00:00:00',1,0,1),(23510,'43745','Rutherford','RUTHERFORD',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:07','1900-01-01 00:00:00',1,0,1),(23511,'33996','Rutherfordton','RUTHERFORDTON',NULL,'','United States','',0,0,231,'2016-10-17 11:49:08','1900-01-01 00:00:00',1,0,1),(23512,'39606','Rutherglen','RUTHERGLEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:08','1900-01-01 00:00:00',1,0,1),(23513,'26550','Rutherglen','RUTHERGLEN',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:08','1900-01-01 00:00:00',1,0,1),(23514,'8826','Ruthin','RUTHIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:08','1900-01-01 00:00:00',1,0,1),(23515,'7280','Rutland','RUTLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:09','1900-01-01 00:00:00',1,0,1),(23516,'31386','Rutland','RUTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:49:09','1900-01-01 00:00:00',1,0,1),(23517,'26317','Rutland Plains','RUTLAND PLAINS',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:09','1900-01-01 00:00:00',1,0,1),(23518,'14549','Ruurlo','RUURLO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:49:10','1900-01-01 00:00:00',1,0,1),(23519,'5746','Ruvigny','RUVIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:49:10','1900-01-01 00:00:00',1,0,1),(23520,'12407','Ruvo Di Puglia','RUVO DI PUGLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:10','1900-01-01 00:00:00',1,0,1),(23521,'15286','Ruwi','RUWI',NULL,'','Oman','',0,0,165,'2016-10-17 11:49:10','1900-01-01 00:00:00',1,0,1),(23522,'37735','Ruyton Xi Towns','RUYTON XI TOWNS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23523,'24298','Ruzyne Airport (Prg)','RUZYNE AIRPORT (PRG)',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23524,'16427','Ryazan','RYAZAN',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23525,'16474','Rybatskaya','RYBATSKAYA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23526,'8827','Ryde','RYDE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23527,'34307','Ryde','RYDE',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:11','1900-01-01 00:00:00',1,0,1),(23528,'26931','Rye','RYE',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:12','1900-01-01 00:00:00',1,0,1),(23529,'8828','Rye','RYE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:12','1900-01-01 00:00:00',1,0,1),(23530,'15628','Rzepin','RZEPIN',NULL,'','Poland','',0,0,174,'2016-10-17 11:49:13','1900-01-01 00:00:00',1,0,1),(23531,'15718','Rzeszow','RZESZOW',NULL,'','Poland','',0,0,174,'2016-10-17 11:49:13','1900-01-01 00:00:00',1,0,1),(23532,'41561','S Agaro','S AGARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23533,'43502','S Algar','S ALGAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23534,'14760','S Hertogenbosch','S HERTOGENBOSCH',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23535,'38629','S Horta','S HORTA',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23536,'43503','S Illot','S ILLOT',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23537,'35074','S.miguel De Salinas','S.MIGUEL DE SALINAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:14','1900-01-01 00:00:00',1,0,1),(23538,'32355','Sa Dah','SA DAH',NULL,'','Yemen','',0,0,240,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23539,'42822','Sa Pa','SA PA',NULL,'','Vietnam','',0,0,236,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23540,'24396','Saalbach','SAALBACH',NULL,'','Austria','',0,0,14,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23541,'39962','Saalburg','SAALBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23542,'44138','Saalekreis','SAALEKREIS',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23543,'39572','Saales','SAALES',NULL,'','France','',0,0,76,'2016-10-17 11:49:15','1900-01-01 00:00:00',1,0,1),(23544,'1947','Saalfeld','SAALFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23545,'24397','Saalfelden','SAALFELDEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23546,'23078','Saanenmoeser','SAANENMOESER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23547,'25531','Saanichton','SAANICHTON',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23548,'43365','Saarbrucken','SAARBRUCKEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23549,'688','Saarbruecken','SAARBRUECKEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23550,'3901','Saariselka','SAARISELKA',NULL,'','Finland','',0,0,75,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23551,'4043','Saariselkä','SAARISELKÄ',NULL,'','Finland','',0,0,75,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23552,'43873','Saariselkae','SAARISELKAE',NULL,'','Finland','',0,0,75,'2016-10-17 11:49:16','1900-01-01 00:00:00',1,0,1),(23553,'689','Saarlouis','SAARLOUIS',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23554,'23079','Saas','SAAS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23555,'35994','Saas-fee','SAAS-FEE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23556,'25892','Saba','SABA',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23557,'10260','Saba','SABA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23558,'39204','Sabac','SABAC',NULL,'','Yugoslavia','',0,0,241,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23559,'3591','Sabadell','SABADELL',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:17','1900-01-01 00:00:00',1,0,1),(23560,'41701','Sabah','SABAH',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23562,'40034','Sabang','SABANG',NULL,'','Philippines','',0,0,173,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23563,'12409','Sabaudia','SABAUDIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23564,'12410','Sabbioneta','SABBIONETA',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23565,'1744','Sabi Sabi','SABI SABI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23566,'32600','Sabie','SABIE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23567,'3341','Sabinanigo','SABINANIGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:18','1900-01-01 00:00:00',1,0,1),(23568,'13963','Sabinas','SABINAS',NULL,'','Mexico','',0,0,141,'2016-10-17 11:49:19','1900-01-01 00:00:00',1,0,1),(23569,'39692','Sabine National Forest Area','SABINE NATIONAL FOREST AREA',NULL,'','United States','',0,0,231,'2016-10-17 11:49:19','1900-01-01 00:00:00',1,0,1),(23570,'3286','Sabiote','SABIOTE',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:20','1900-01-01 00:00:00',1,0,1),(23571,'40659','Sables-dor-les-pins','SABLES-DOR-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:49:20','1900-01-01 00:00:00',1,0,1),(23572,'5061','Sable-sur-sarthe','SABLE-SUR-SARTHE',NULL,'','France','',0,0,76,'2016-10-17 11:49:20','1900-01-01 00:00:00',1,0,1),(23573,'5959','Sabran','SABRAN',NULL,'','France','',0,0,76,'2016-10-17 11:49:20','1900-01-01 00:00:00',1,0,1),(23574,'5247','Sabres','SABRES',NULL,'','France','',0,0,76,'2016-10-17 11:49:21','1900-01-01 00:00:00',1,0,1),(23575,'2158','Sabro','SABRO',NULL,'','Denmark','',0,0,59,'2016-10-17 11:49:21','1900-01-01 00:00:00',1,0,1),(23576,'16077','Sabrosa','SABROSA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:49:21','1900-01-01 00:00:00',1,0,1),(23577,'20283','Sabula','SABULA',NULL,'','United States','',0,0,231,'2016-10-17 11:49:21','1900-01-01 00:00:00',1,0,1),(23578,'16414','Saburovo','SABUROVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23579,'43151','Sacele','SACELE',NULL,'','Romania','',0,0,179,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23580,'34630','Sachigo Lake','SACHIGO LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23581,'23334','Sachseln','SACHSELN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23582,'5747','Sachy','SACHY',NULL,'','France','',0,0,76,'2016-10-17 11:49:22','1900-01-01 00:00:00',1,0,1),(23583,'29097','Sackets Harbor','SACKETS HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:49:23','1900-01-01 00:00:00',1,0,1),(23584,'4793','Saclay','SACLAY',NULL,'','France','',0,0,76,'2016-10-17 11:49:23','1900-01-01 00:00:00',1,0,1),(23585,'18844','Sacramento','SACRAMENTO',NULL,'','United States','',0,0,231,'2016-10-17 11:49:25','1900-01-01 00:00:00',1,0,1),(23586,'36525','Sacred Valley','SACRED VALLEY',NULL,'','Peru','',0,0,172,'2016-10-17 11:49:25','1900-01-01 00:00:00',1,0,1),(23587,'12411','Sacrofano','SACROFANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:49:26','1900-01-01 00:00:00',1,0,1),(23588,'3685','Sada','SADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:26','1900-01-01 00:00:00',1,0,1),(23589,'28407','Saddle Brook','SADDLE BROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:49:26','1900-01-01 00:00:00',1,0,1),(23590,'42882','Sado','SADO',NULL,'','Japan','',0,0,110,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23591,'10589','Sadri','SADRI',NULL,'','India','Sadri',2,0,101,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23592,'36486','Saebo','SAEBO',NULL,'','Norway','',0,0,164,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23593,'39750','Saeby','SAEBY',NULL,'','Denmark','',0,0,59,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23594,'2435','Safaga','SAFAGA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23595,'41446','Safat','SAFAT',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23596,'35419','Safed','SAFED',NULL,'','Israel','',0,0,106,'2016-10-17 11:49:27','1900-01-01 00:00:00',1,0,1),(23597,'19597','Safety Harbor','SAFETY HARBOR',NULL,'','United States','',0,0,231,'2016-10-17 11:49:28','1900-01-01 00:00:00',1,0,1),(23598,'16790','Saffle','SAFFLE',NULL,'','Sweden','',0,0,209,'2016-10-17 11:49:28','1900-01-01 00:00:00',1,0,1),(23599,'18198','Safford','SAFFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:49:28','1900-01-01 00:00:00',1,0,1),(23600,'8829','Saffron Walden','SAFFRON WALDEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23601,'13684','Safi','SAFI',NULL,'','Morocco','',0,0,148,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23602,'36721','Safita','SAFITA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23603,'17369','Safranbolu','SAFRANBOLU',NULL,'','Turkey','',0,0,222,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23604,'13334','Saga','SAGA',NULL,'','Japan','',0,0,110,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23605,'13397','Sagamihara','SAGAMIHARA',NULL,'','Japan','',0,0,110,'2016-10-17 11:49:29','1900-01-01 00:00:00',1,0,1),(23606,'21517','Sagamore','SAGAMORE',NULL,'','United States','',0,0,231,'2016-10-17 11:49:30','1900-01-01 00:00:00',1,0,1),(23607,'1848','Sagard','SAGARD',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:30','1900-01-01 00:00:00',1,0,1),(23608,'2774','S\'agaro','S\'AGARO',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:30','1900-01-01 00:00:00',1,0,1),(23609,'10855','Saggart','SAGGART',NULL,'','Ireland','',0,0,105,'2016-10-17 11:49:30','1900-01-01 00:00:00',1,0,1),(23610,'42851','Sagil','SAGIL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:49:31','1900-01-01 00:00:00',1,0,1),(23611,'27767','Saginaw','SAGINAW',NULL,'','United States','',0,0,231,'2016-10-17 11:49:31','1900-01-01 00:00:00',1,0,1),(23612,'20396','Sagle','SAGLE',NULL,'','United States','',0,0,231,'2016-10-17 11:49:32','1900-01-01 00:00:00',1,0,1),(23613,'42356','Sagone','SAGONE',NULL,'','France','',0,0,76,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23614,'15780','Sagres','SAGRES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23615,'41137','Saguenay','SAGUENAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23616,'3782','Sagunto','SAGUNTO',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23617,'10105','Sagvar','SAGVAR',NULL,'','Hungary','',0,0,99,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23618,'3481','Sahagun','SAHAGUN',NULL,'','Spain','',0,0,199,'2016-10-17 11:49:33','1900-01-01 00:00:00',1,0,1),(23619,'9937','Sai Kung','SAI KUNG',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23620,'26318','Saibai Island','SAIBAI ISLAND',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23621,'43148','Saida','SAIDA',NULL,'','Lebanon','',0,0,120,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23622,'39511','Saidia','SAIDIA',NULL,'','Morocco','',0,0,148,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23623,'41216','Saidnaya','SAIDNAYA',NULL,'','Syrian Arab Republic','',0,0,211,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23624,'24762','Saidpur','SAIDPUR',NULL,'','Bangladesh','',0,0,18,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23625,'15326','Saidu Sharif','SAIDU SHARIF',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23626,'23335','Saignelegier','SAIGNELEGIER',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23627,'37151','Saigon And South','SAIGON AND SOUTH',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23628,'38846','Sailauf','SAILAUF',NULL,'','Germany','',0,0,83,'2016-10-17 11:49:34','1900-01-01 00:00:00',1,0,1),(23629,'40779','Saillagouse','SAILLAGOUSE',NULL,'','France','',0,0,76,'2016-10-17 11:49:35','1900-01-01 00:00:00',1,0,1),(23630,'23336','Saillon','SAILLON',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:49:35','1900-01-01 00:00:00',1,0,1),(23631,'26551','Saint Albans','SAINT ALBANS',NULL,'','Australia','',0,0,13,'2016-10-17 11:49:35','1900-01-01 00:00:00',1,0,1),(23632,'883','Saint Ann','SAINT ANN',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:49:36','1900-01-01 00:00:00',1,0,1),(23633,'43031','Saint Arnaud','SAINT ARNAUD',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:49:36','1900-01-01 00:00:00',1,0,1),(23634,'16188','Saint Benoit','SAINT BENOIT',NULL,'','Reunion','',0,0,178,'2016-10-17 11:49:37','1900-01-01 00:00:00',1,0,1),(23635,'893','Saint Croix Island','SAINT CROIX ISLAND',NULL,'','Virgin Islands - U.S.','',0,0,237,'2016-10-17 11:49:38','1900-01-01 00:00:00',1,0,1),(23636,'32417','Saint Francis Bay','SAINT FRANCIS BAY',NULL,'','South Africa','',0,0,195,'2016-10-17 11:49:40','1900-01-01 00:00:00',1,0,1),(23637,'41599','Saint George\'s','SAINT GEORGE\'S',NULL,'','Grenada','',0,0,88,'2016-10-17 11:49:40','1900-01-01 00:00:00',1,0,1),(23638,'18846','Saint Helena','SAINT HELENA',NULL,'','United States','',0,0,231,'2016-10-17 11:49:42','1900-01-01 00:00:00',1,0,1),(23639,'43445','Saint James','SAINT JAMES',NULL,'','Barbados','',0,0,19,'2016-10-17 11:49:43','1900-01-01 00:00:00',1,0,1),(23640,'876','Saint John\'s','SAINT JOHN\'S',NULL,'','Antigua And Barbuda','',0,0,9,'2016-10-17 11:49:43','1900-01-01 00:00:00',1,0,1),(23641,'43201','Saint Louis','SAINT LOUIS',NULL,'','Senegal','',0,0,187,'2016-10-17 11:49:45','1900-01-01 00:00:00',1,0,1),(23642,'888','Saint Lucia','SAINT LUCIA',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:49:45','1900-01-01 00:00:00',1,0,1),(23643,'877','Saint Maarten','SAINT MAARTEN',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:49:45','1900-01-01 00:00:00',1,0,1),(23644,'1641','Saint Petersburg','SAINT PETERSBURG',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:49:49','1900-01-01 00:00:00',1,0,1),(23645,'39391','Saint-affrique','SAINT-AFFRIQUE',NULL,'','France','',0,0,76,'2016-10-17 11:49:53','1900-01-01 00:00:00',1,0,1),(23646,'40727','Saint-affrique-les-montagnes','SAINT-AFFRIQUE-LES-MONTAGNES',NULL,'','France','',0,0,76,'2016-10-17 11:49:54','1900-01-01 00:00:00',1,0,1),(23647,'5490','Saint-albain','SAINT-ALBAIN',NULL,'','France','',0,0,76,'2016-10-17 11:49:54','1900-01-01 00:00:00',1,0,1),(23648,'5597','Saint-alban','SAINT-ALBAN',NULL,'','France','',0,0,76,'2016-10-17 11:49:54','1900-01-01 00:00:00',1,0,1),(23649,'22864','Saint-alexis-des-monts','SAINT-ALEXIS-DES-MONTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:54','1900-01-01 00:00:00',1,0,1),(23650,'44086','Saint-amand-les-eaux','SAINT-AMAND-LES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 11:49:55','1900-01-01 00:00:00',1,0,1),(23651,'38084','Saint-amans-soult','SAINT-AMANS-SOULT',NULL,'','France','',0,0,76,'2016-10-17 11:49:55','1900-01-01 00:00:00',1,0,1),(23652,'5491','Saint-amour-bellevue','SAINT-AMOUR-BELLEVUE',NULL,'','France','',0,0,76,'2016-10-17 11:49:55','1900-01-01 00:00:00',1,0,1),(23653,'5960','Saint-andre','SAINT-ANDRE',NULL,'','France','',0,0,76,'2016-10-17 11:49:55','1900-01-01 00:00:00',1,0,1),(23654,'4517','Saint-andré-des-eaux','SAINT-ANDRÉ-DES-EAUX',NULL,'','France','',0,0,76,'2016-10-17 11:49:56','1900-01-01 00:00:00',1,0,1),(23655,'5961','Saint-andre-de-valborgne','SAINT-ANDRE-DE-VALBORGNE',NULL,'','France','',0,0,76,'2016-10-17 11:49:56','1900-01-01 00:00:00',1,0,1),(23656,'39946','Saint-andre-les-alpes','SAINT-ANDRE-LES-ALPES',NULL,'','France','',0,0,76,'2016-10-17 11:49:56','1900-01-01 00:00:00',1,0,1),(23657,'5249','Saint-antoine','SAINT-ANTOINE',NULL,'','France','',0,0,76,'2016-10-17 11:49:56','1900-01-01 00:00:00',1,0,1),(23658,'22865','Saint-antonin','SAINT-ANTONIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23659,'40635','Saint-apollinaire','SAINT-APOLLINAIRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23660,'41341','Saint-apollinaire','SAINT-APOLLINAIRE',NULL,'','France','',0,0,76,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23661,'4972','Saint-arcons-d\'allier','SAINT-ARCONS-D\'ALLIER',NULL,'','France','',0,0,76,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23662,'38014','Saint-armel','SAINT-ARMEL',NULL,'','France','',0,0,76,'2016-10-17 11:49:57','1900-01-01 00:00:00',1,0,1),(23663,'41340','Saint-arnoult','SAINT-ARNOULT',NULL,'','France','',0,0,76,'2016-10-17 11:49:58','1900-01-01 00:00:00',1,0,1),(23664,'5419','Saint-aubin-sur-mer','SAINT-AUBIN-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:49:58','1900-01-01 00:00:00',1,0,1),(23665,'5093','Saint-aubin-sur-scie','SAINT-AUBIN-SUR-SCIE',NULL,'','France','',0,0,76,'2016-10-17 11:49:58','1900-01-01 00:00:00',1,0,1),(23666,'5962','Saint-aunes','SAINT-AUNES',NULL,'','France','',0,0,76,'2016-10-17 11:49:58','1900-01-01 00:00:00',1,0,1),(23667,'44087','Saint-avertin','SAINT-AVERTIN',NULL,'','France','',0,0,76,'2016-10-17 11:49:59','1900-01-01 00:00:00',1,0,1),(23668,'41338','Saint-avold','SAINT-AVOLD',NULL,'','France','',0,0,76,'2016-10-17 11:49:59','1900-01-01 00:00:00',1,0,1),(23669,'6520','Saint-aygulf','SAINT-AYGULF',NULL,'','France','',0,0,76,'2016-10-17 11:49:59','1900-01-01 00:00:00',1,0,1),(23670,'5598','Saint-barnabe','SAINT-BARNABE',NULL,'','France','',0,0,76,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23671,'34417','Saint-basile','SAINT-BASILE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23672,'41337','Saint-beauzeil','SAINT-BEAUZEIL',NULL,'','France','',0,0,76,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23673,'4518','Saint-benoît','SAINT-BENOÎT',NULL,'','France','',0,0,76,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23674,'5088','Saint-blaise','SAINT-BLAISE',NULL,'','France','',0,0,76,'2016-10-17 11:50:00','1900-01-01 00:00:00',1,0,1),(23675,'41336','Saint-bonnet-de-mure','SAINT-BONNET-DE-MURE',NULL,'','France','',0,0,76,'2016-10-17 11:50:01','1900-01-01 00:00:00',1,0,1),(23676,'39404','Saint-bonnet-en-champsaur','SAINT-BONNET-EN-CHAMPSAUR',NULL,'','France','',0,0,76,'2016-10-17 11:50:01','1900-01-01 00:00:00',1,0,1),(23677,'5343','Saint-bonnet-le-froid','SAINT-BONNET-LE-FROID',NULL,'','France','',0,0,76,'2016-10-17 11:50:01','1900-01-01 00:00:00',1,0,1),(23678,'44088','Saint-bon-tarentaise','SAINT-BON-TARENTAISE',NULL,'','France','',0,0,76,'2016-10-17 11:50:01','1900-01-01 00:00:00',1,0,1),(23679,'5963','Saint-bres','SAINT-BRES',NULL,'','France','',0,0,76,'2016-10-17 11:50:02','1900-01-01 00:00:00',1,0,1),(23680,'4976','Saint-brevin-les-pins','SAINT-BREVIN-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:50:02','1900-01-01 00:00:00',1,0,1),(23681,'5599','Saint-briac-sur-mer','SAINT-BRIAC-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:02','1900-01-01 00:00:00',1,0,1),(23682,'6268','Saint-brice','SAINT-BRICE',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23683,'44089','Saint-brice-en-cogles','SAINT-BRICE-EN-COGLES',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23684,'44090','Saint-brice-sous-foret','SAINT-BRICE-SOUS-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23685,'4519','Saint-brice-sous-forêt','SAINT-BRICE-SOUS-FORÊT',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23686,'4520','Saint-brieuc','SAINT-BRIEUC',NULL,'','France','',0,0,76,'2016-10-17 11:50:03','1900-01-01 00:00:00',1,0,1),(23687,'22866','Saint-bruno-de-montarville','SAINT-BRUNO-DE-MONTARVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:04','1900-01-01 00:00:00',1,0,1),(23688,'39700','Saint-calais','SAINT-CALAIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:04','1900-01-01 00:00:00',1,0,1),(23689,'6521','Saint-cannat','SAINT-CANNAT',NULL,'','France','',0,0,76,'2016-10-17 11:50:04','1900-01-01 00:00:00',1,0,1),(23690,'38430','Saint-caradec','SAINT-CARADEC',NULL,'','France','',0,0,76,'2016-10-17 11:50:04','1900-01-01 00:00:00',1,0,1),(23691,'40296','Saint-cergues','SAINT-CERGUES',NULL,'','France','',0,0,76,'2016-10-17 11:50:05','1900-01-01 00:00:00',1,0,1),(23692,'6522','Saint-chaffrey','SAINT-CHAFFREY',NULL,'','France','',0,0,76,'2016-10-17 11:50:05','1900-01-01 00:00:00',1,0,1),(23693,'6698','Saint-chamond','SAINT-CHAMOND',NULL,'','France','',0,0,76,'2016-10-17 11:50:05','1900-01-01 00:00:00',1,0,1),(23694,'6811','Saint-christol','SAINT-CHRISTOL',NULL,'','France','',0,0,76,'2016-10-17 11:50:06','1900-01-01 00:00:00',1,0,1),(23695,'41335','Saint-clement-de-riviere','SAINT-CLEMENT-DE-RIVIERE',NULL,'','France','',0,0,76,'2016-10-17 11:50:06','1900-01-01 00:00:00',1,0,1),(23696,'4521','Saint-clément-de-rivière','SAINT-CLÉMENT-DE-RIVIÈRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:06','1900-01-01 00:00:00',1,0,1),(23697,'5420','Saint-contest','SAINT-CONTEST',NULL,'','France','',0,0,76,'2016-10-17 11:50:07','1900-01-01 00:00:00',1,0,1),(23698,'5250','Saint-cyprien','SAINT-CYPRIEN',NULL,'','France','',0,0,76,'2016-10-17 11:50:07','1900-01-01 00:00:00',1,0,1),(23699,'39381','Saint-cyr-au-mont-dor','SAINT-CYR-AU-MONT-DOR',NULL,'','France','',0,0,76,'2016-10-17 11:50:07','1900-01-01 00:00:00',1,0,1),(23700,'4522','Saint-cyr-l\'école','SAINT-CYR-L\'ÉCOLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:07','1900-01-01 00:00:00',1,0,1),(23701,'5114','Saint-cyr-sur-mer','SAINT-CYR-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:08','1900-01-01 00:00:00',1,0,1),(23702,'16196','Saint-denis','SAINT-DENIS',NULL,'','Reunion','',0,0,178,'2016-10-17 11:50:08','1900-01-01 00:00:00',1,0,1),(23703,'39645','Saint-denis-le-gast','SAINT-DENIS-LE-GAST',NULL,'','France','',0,0,76,'2016-10-17 11:50:08','1900-01-01 00:00:00',1,0,1),(23704,'37627','Saint-denis-le-thiboult','SAINT-DENIS-LE-THIBOULT',NULL,'','France','',0,0,76,'2016-10-17 11:50:09','1900-01-01 00:00:00',1,0,1),(23705,'39884','Saint-desirat','SAINT-DESIRAT',NULL,'','France','',0,0,76,'2016-10-17 11:50:09','1900-01-01 00:00:00',1,0,1),(23706,'4523','Saint-didier','SAINT-DIDIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:09','1900-01-01 00:00:00',1,0,1),(23707,'4524','Saint-didier-au-mont-d Or','SAINT-DIDIER-AU-MONT-D OR',NULL,'','France','',0,0,76,'2016-10-17 11:50:10','1900-01-01 00:00:00',1,0,1),(23708,'41330','Saint-die','SAINT-DIE',NULL,'','France','',0,0,76,'2016-10-17 11:50:10','1900-01-01 00:00:00',1,0,1),(23709,'41328','Saint-dizier','SAINT-DIZIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:10','1900-01-01 00:00:00',1,0,1),(23710,'41327','Saint-doulchard','SAINT-DOULCHARD',NULL,'','France','',0,0,76,'2016-10-17 11:50:10','1900-01-01 00:00:00',1,0,1),(23711,'41410','Sainte Luce','SAINTE LUCE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:50:11','1900-01-01 00:00:00',1,0,1),(23712,'41441','Sainte Marie','SAINTE MARIE',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:50:11','1900-01-01 00:00:00',1,0,1),(23713,'22871','Sainte-adele','SAINTE-ADELE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:12','1900-01-01 00:00:00',1,0,1),(23714,'5828','Sainte-adresse','SAINTE-ADRESSE',NULL,'','France','',0,0,76,'2016-10-17 11:50:12','1900-01-01 00:00:00',1,0,1),(23715,'37292','Sainte-anastasie','SAINTE-ANASTASIE',NULL,'','France','',0,0,76,'2016-10-17 11:50:12','1900-01-01 00:00:00',1,0,1),(23716,'14241','Sainte-anne','SAINTE-ANNE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23717,'39432','Sainte-anne-dauray','SAINTE-ANNE-DAURAY',NULL,'','France','',0,0,76,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23718,'4526','Sainte-anne-la-palud','SAINTE-ANNE-LA-PALUD',NULL,'','France','',0,0,76,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23719,'24594','Sainte-catherine','SAINTE-CATHERINE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23720,'37532','Sainte-colombe','SAINTE-COLOMBE',NULL,'','France','',0,0,76,'2016-10-17 11:50:13','1900-01-01 00:00:00',1,0,1),(23721,'5964','Sainte-enimie','SAINTE-ENIMIE',NULL,'','France','',0,0,76,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23722,'22873','Sainte-eustache','SAINTE-EUSTACHE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23723,'22874','Sainte-famille','SAINTE-FAMILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23724,'39229','Sainte-florine','SAINTE-FLORINE',NULL,'','France','',0,0,76,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23725,'22875','Sainte-foy - Sillery','SAINTE-FOY - SILLERY',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:14','1900-01-01 00:00:00',1,0,1),(23726,'38355','Sainte-foy-daigrefeuille','SAINTE-FOY-DAIGREFEUILLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:15','1900-01-01 00:00:00',1,0,1),(23727,'5051','Sainte-foy-les-lyon','SAINTE-FOY-LES-LYON',NULL,'','France','',0,0,76,'2016-10-17 11:50:15','1900-01-01 00:00:00',1,0,1),(23728,'6699','Sainte-foy-tarentaise','SAINTE-FOY-TARENTAISE',NULL,'','France','',0,0,76,'2016-10-17 11:50:15','1900-01-01 00:00:00',1,0,1),(23729,'41326','Saint-egreve','SAINT-EGREVE',NULL,'','France','',0,0,76,'2016-10-17 11:50:15','1900-01-01 00:00:00',1,0,1),(23730,'4959','Saint-égrève','SAINT-ÉGRÈVE',NULL,'','France','',0,0,76,'2016-10-17 11:50:16','1900-01-01 00:00:00',1,0,1),(23731,'22876','Sainte-helene-de-bagot','SAINTE-HELENE-DE-BAGOT',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:16','1900-01-01 00:00:00',1,0,1),(23732,'40000','Sainte-hermine','SAINTE-HERMINE',NULL,'','France','',0,0,76,'2016-10-17 11:50:16','1900-01-01 00:00:00',1,0,1),(23733,'22877','Sainte-julie','SAINTE-JULIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:16','1900-01-01 00:00:00',1,0,1),(23734,'6700','Sainte-luce','SAINTE-LUCE',NULL,'','France','',0,0,76,'2016-10-17 11:50:17','1900-01-01 00:00:00',1,0,1),(23735,'14242','Sainte-luce','SAINTE-LUCE',NULL,'','Martinique','',0,0,137,'2016-10-17 11:50:17','1900-01-01 00:00:00',1,0,1),(23736,'44091','Sainte-luce-sur-loire','SAINTE-LUCE-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:17','1900-01-01 00:00:00',1,0,1),(23737,'4527','Sainte-lucie-de-porto-vecchio','SAINTE-LUCIE-DE-PORTO-VECCHIO',NULL,'','France','',0,0,76,'2016-10-17 11:50:18','1900-01-01 00:00:00',1,0,1),(23738,'44092','Sainte-marie-de-re','SAINTE-MARIE-DE-RE',NULL,'','France','',0,0,76,'2016-10-17 11:50:18','1900-01-01 00:00:00',1,0,1),(23739,'4528','Sainte-marie-de-ré','SAINTE-MARIE-DE-RÉ',NULL,'','France','',0,0,76,'2016-10-17 11:50:18','1900-01-01 00:00:00',1,0,1),(23740,'5965','Sainte-marie-la-mer','SAINTE-MARIE-LA-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:18','1900-01-01 00:00:00',1,0,1),(23741,'5251','Sainte-marthe','SAINTE-MARTHE',NULL,'','France','',0,0,76,'2016-10-17 11:50:19','1900-01-01 00:00:00',1,0,1),(23742,'41288','Sainte-maxime','SAINTE-MAXIME',NULL,'','France','',0,0,76,'2016-10-17 11:50:19','1900-01-01 00:00:00',1,0,1),(23743,'5421','Sainte-mere-eglise','SAINTE-MERE-EGLISE',NULL,'','France','',0,0,76,'2016-10-17 11:50:19','1900-01-01 00:00:00',1,0,1),(23744,'6315','Sainte-preuve','SAINTE-PREUVE',NULL,'','France','',0,0,76,'2016-10-17 11:50:20','1900-01-01 00:00:00',1,0,1),(23745,'9386','Sainte-rose','SAINTE-ROSE',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:50:20','1900-01-01 00:00:00',1,0,1),(23746,'6364','Saintes','SAINTES',NULL,'','France','',0,0,76,'2016-10-17 11:50:20','1900-01-01 00:00:00',1,0,1),(23747,'5252','Sainte-sabine','SAINTE-SABINE',NULL,'','France','',0,0,76,'2016-10-17 11:50:20','1900-01-01 00:00:00',1,0,1),(23748,'5748','Sainte-savine','SAINTE-SAVINE',NULL,'','France','',0,0,76,'2016-10-17 11:50:21','1900-01-01 00:00:00',1,0,1),(23749,'6523','Saintes-maries-de-la-mer','SAINTES-MARIES-DE-LA-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:21','1900-01-01 00:00:00',1,0,1),(23750,'39248','Sainte-suzanne','SAINTE-SUZANNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:21','1900-01-01 00:00:00',1,0,1),(23751,'22878','Sainte-therese','SAINTE-THERESE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:21','1900-01-01 00:00:00',1,0,1),(23752,'40778','Saint-etienne','SAINT-ETIENNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:22','1900-01-01 00:00:00',1,0,1),(23753,'38367','Saint-etienne-de-maurs','SAINT-ETIENNE-DE-MAURS',NULL,'','France','',0,0,76,'2016-10-17 11:50:22','1900-01-01 00:00:00',1,0,1),(23754,'38836','Saint-etienne-du-gres','SAINT-ETIENNE-DU-GRES',NULL,'','France','',0,0,76,'2016-10-17 11:50:23','1900-01-01 00:00:00',1,0,1),(23755,'41325','Saint-etienne-du-rouvray','SAINT-ETIENNE-DU-ROUVRAY',NULL,'','France','',0,0,76,'2016-10-17 11:50:23','1900-01-01 00:00:00',1,0,1),(23756,'6524','Saint-etienne-en-devoluy','SAINT-ETIENNE-EN-DEVOLUY',NULL,'','France','',0,0,76,'2016-10-17 11:50:23','1900-01-01 00:00:00',1,0,1),(23757,'4530','Saint-étienne-les-orgues','SAINT-ÉTIENNE-LES-ORGUES',NULL,'','France','',0,0,76,'2016-10-17 11:50:23','1900-01-01 00:00:00',1,0,1),(23758,'42737','Saint-fargeau-ponthierry','SAINT-FARGEAU-PONTHIERRY',NULL,'','France','',0,0,76,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23759,'22879','Saint-faustin','SAINT-FAUSTIN',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23760,'4889','Saint-florent','SAINT-FLORENT',NULL,'','France','',0,0,76,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23761,'41627','Saint-francois','SAINT-FRANCOIS',NULL,'','Guadeloupe','',0,0,89,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23762,'5071','Saint-francois-longchamp','SAINT-FRANCOIS-LONGCHAMP',NULL,'','France','',0,0,76,'2016-10-17 11:50:24','1900-01-01 00:00:00',1,0,1),(23763,'4970','Saint-galmier','SAINT-GALMIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:25','1900-01-01 00:00:00',1,0,1),(23764,'5253','Saint-genies','SAINT-GENIES',NULL,'','France','',0,0,76,'2016-10-17 11:50:25','1900-01-01 00:00:00',1,0,1),(23765,'6130','Saint-geniez-d\'olt','SAINT-GENIEZ-D\'OLT',NULL,'','France','',0,0,76,'2016-10-17 11:50:25','1900-01-01 00:00:00',1,0,1),(23766,'41324','Saint-genis-laval','SAINT-GENIS-LAVAL',NULL,'','France','',0,0,76,'2016-10-17 11:50:26','1900-01-01 00:00:00',1,0,1),(23767,'6701','Saint-genis-pouilly','SAINT-GENIS-POUILLY',NULL,'','France','',0,0,76,'2016-10-17 11:50:26','1900-01-01 00:00:00',1,0,1),(23768,'38207','Saint-georges-de-didonne','SAINT-GEORGES-DE-DIDONNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:26','1900-01-01 00:00:00',1,0,1),(23769,'41323','Saint-germain En-laye','SAINT-GERMAIN EN-LAYE',NULL,'','France','',0,0,76,'2016-10-17 11:50:27','1900-01-01 00:00:00',1,0,1),(23770,'5104','Saint-germain-en-laye','SAINT-GERMAIN-EN-LAYE',NULL,'','France','',0,0,76,'2016-10-17 11:50:27','1900-01-01 00:00:00',1,0,1),(23771,'4795','Saint-germain-les-corbeil','SAINT-GERMAIN-LES-CORBEIL',NULL,'','France','',0,0,76,'2016-10-17 11:50:27','1900-01-01 00:00:00',1,0,1),(23772,'37478','Saint-gervais','SAINT-GERVAIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:28','1900-01-01 00:00:00',1,0,1),(23773,'5492','Saint-gervais-en-valliere','SAINT-GERVAIS-EN-VALLIERE',NULL,'','France','',0,0,76,'2016-10-17 11:50:28','1900-01-01 00:00:00',1,0,1),(23774,'41317','Saint-gervais-la-foret','SAINT-GERVAIS-LA-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:50:28','1900-01-01 00:00:00',1,0,1),(23775,'4531','Saint-gervais-la-forêt','SAINT-GERVAIS-LA-FORÊT',NULL,'','France','',0,0,76,'2016-10-17 11:50:28','1900-01-01 00:00:00',1,0,1),(23776,'44093','Saint-gervais-les-bains','SAINT-GERVAIS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23777,'41369','Saint-gilles-les-bains','SAINT-GILLES-LES-BAINS',NULL,'','Reunion','',0,0,178,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23778,'4796','Saint-gratien','SAINT-GRATIEN',NULL,'','France','',0,0,76,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23779,'5254','Saint-gregoire','SAINT-GREGOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23780,'41316','Saint-herblain','SAINT-HERBLAIN',NULL,'','France','',0,0,76,'2016-10-17 11:50:29','1900-01-01 00:00:00',1,0,1),(23781,'37506','Saint-hilaire','SAINT-HILAIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:30','1900-01-01 00:00:00',1,0,1),(23782,'6269','Saint-hilaire-de-riez','SAINT-HILAIRE-DE-RIEZ',NULL,'','France','',0,0,76,'2016-10-17 11:50:30','1900-01-01 00:00:00',1,0,1),(23783,'40618','Saint-hilaire-dozilhan','SAINT-HILAIRE-DOZILHAN',NULL,'','France','',0,0,76,'2016-10-17 11:50:30','1900-01-01 00:00:00',1,0,1),(23784,'40277','Saint-hippolyte','SAINT-HIPPOLYTE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:30','1900-01-01 00:00:00',1,0,1),(23785,'38145','Saint-hippolyte','SAINT-HIPPOLYTE',NULL,'','France','',0,0,76,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23786,'38957','Saint-hippolyte-le-graveron','SAINT-HIPPOLYTE-LE-GRAVERON',NULL,'','France','',0,0,76,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23787,'38031','Saint-jacques','SAINT-JACQUES',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23788,'5600','Saint-jacques-de-la-lande','SAINT-JACQUES-DE-LA-LANDE',NULL,'','France','',0,0,76,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23789,'5344','Saint-jacques-des-blats','SAINT-JACQUES-DES-BLATS',NULL,'','France','',0,0,76,'2016-10-17 11:50:31','1900-01-01 00:00:00',1,0,1),(23790,'42124','Saint-jean-cap-ferrat','SAINT-JEAN-CAP-FERRAT',NULL,'','France','',0,0,76,'2016-10-17 11:50:32','1900-01-01 00:00:00',1,0,1),(23791,'6702','Saint-jean-d\'ardieres','SAINT-JEAN-D\'ARDIERES',NULL,'','France','',0,0,76,'2016-10-17 11:50:33','1900-01-01 00:00:00',1,0,1),(23792,'41314','Saint-jean-d\'arves','SAINT-JEAN-D\'ARVES',NULL,'','France','',0,0,76,'2016-10-17 11:50:33','1900-01-01 00:00:00',1,0,1),(23793,'5255','Saint-jean-de-blaignac','SAINT-JEAN-DE-BLAIGNAC',NULL,'','France','',0,0,76,'2016-10-17 11:50:33','1900-01-01 00:00:00',1,0,1),(23794,'5966','Saint-jean-de-la-blaquiere','SAINT-JEAN-DE-LA-BLAQUIERE',NULL,'','France','',0,0,76,'2016-10-17 11:50:33','1900-01-01 00:00:00',1,0,1),(23795,'41313','Saint-jean-de-luz','SAINT-JEAN-DE-LUZ',NULL,'','France','',0,0,76,'2016-10-17 11:50:34','1900-01-01 00:00:00',1,0,1),(23796,'40523','Saint-jean-de-matha','SAINT-JEAN-DE-MATHA',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:34','1900-01-01 00:00:00',1,0,1),(23797,'6270','Saint-jean-de-monts','SAINT-JEAN-DE-MONTS',NULL,'','France','',0,0,76,'2016-10-17 11:50:34','1900-01-01 00:00:00',1,0,1),(23798,'37999','Saint-jean-de-sixt','SAINT-JEAN-DE-SIXT',NULL,'','France','',0,0,76,'2016-10-17 11:50:34','1900-01-01 00:00:00',1,0,1),(23799,'41312','Saint-jean-de-vedas','SAINT-JEAN-DE-VEDAS',NULL,'','France','',0,0,76,'2016-10-17 11:50:35','1900-01-01 00:00:00',1,0,1),(23800,'6802','Saint-jean-de-védas','SAINT-JEAN-DE-VÉDAS',NULL,'','France','',0,0,76,'2016-10-17 11:50:35','1900-01-01 00:00:00',1,0,1),(23801,'39003','Saint-jean-du-gard','SAINT-JEAN-DU-GARD',NULL,'','France','',0,0,76,'2016-10-17 11:50:35','1900-01-01 00:00:00',1,0,1),(23802,'37721','Saint-jean-la-vetre','SAINT-JEAN-LA-VETRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:36','1900-01-01 00:00:00',1,0,1),(23803,'5679','Saint-jean-le-blanc','SAINT-JEAN-LE-BLANC',NULL,'','France','',0,0,76,'2016-10-17 11:50:36','1900-01-01 00:00:00',1,0,1),(23804,'44094','Saint-jean-le-braye','SAINT-JEAN-LE-BRAYE',NULL,'','France','',0,0,76,'2016-10-17 11:50:36','1900-01-01 00:00:00',1,0,1),(23805,'39613','Saint-jean-le-centenier','SAINT-JEAN-LE-CENTENIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:36','1900-01-01 00:00:00',1,0,1),(23806,'42149','Saint-jean-port-joli','SAINT-JEAN-PORT-JOLI',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23807,'40383','Saint-jean-saverne','SAINT-JEAN-SAVERNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23808,'22880','Saint-jean-sur-richelieu','SAINT-JEAN-SUR-RICHELIEU',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23809,'6271','Saint-joachim','SAINT-JOACHIM',NULL,'','France','',0,0,76,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23810,'4532','Saint-jorioz','SAINT-JORIOZ',NULL,'','France','',0,0,76,'2016-10-17 11:50:37','1900-01-01 00:00:00',1,0,1),(23811,'22881','Saint-joseph-de-la-rive','SAINT-JOSEPH-DE-LA-RIVE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:38','1900-01-01 00:00:00',1,0,1),(23812,'4941','Saint-jouan-des-guerets','SAINT-JOUAN-DES-GUERETS',NULL,'','France','',0,0,76,'2016-10-17 11:50:38','1900-01-01 00:00:00',1,0,1),(23813,'4797','Saint-julien','SAINT-JULIEN',NULL,'','France','',0,0,76,'2016-10-17 11:50:38','1900-01-01 00:00:00',1,0,1),(23814,'39265','Saint-julien-chapteuil','SAINT-JULIEN-CHAPTEUIL',NULL,'','France','',0,0,76,'2016-10-17 11:50:38','1900-01-01 00:00:00',1,0,1),(23815,'5256','Saint-julien-de-crempse','SAINT-JULIEN-DE-CREMPSE',NULL,'','France','',0,0,76,'2016-10-17 11:50:39','1900-01-01 00:00:00',1,0,1),(23816,'6703','Saint-julien-en-genevois','SAINT-JULIEN-EN-GENEVOIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:39','1900-01-01 00:00:00',1,0,1),(23817,'37697','Saint-julien-le-vendomois','SAINT-JULIEN-LE-VENDOMOIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:39','1900-01-01 00:00:00',1,0,1),(23818,'5126','Saint-junien','SAINT-JUNIEN',NULL,'','France','',0,0,76,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23819,'22882','Saint-lambert','SAINT-LAMBERT',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23820,'41311','Saint-lary Soulan','SAINT-LARY SOULAN',NULL,'','France','',0,0,76,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23821,'38013','Saint-lary-espiaube','SAINT-LARY-ESPIAUBE',NULL,'','France','',0,0,76,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23822,'22883','Saint-laurent','SAINT-LAURENT',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:40','1900-01-01 00:00:00',1,0,1),(23823,'5039','Saint-laurent-de-cerdans','SAINT-LAURENT-DE-CERDANS',NULL,'','France','',0,0,76,'2016-10-17 11:50:41','1900-01-01 00:00:00',1,0,1),(23824,'37824','Saint-laurent-de-la-cabrerisse','SAINT-LAURENT-DE-LA-CABRERISSE',NULL,'','France','',0,0,76,'2016-10-17 11:50:41','1900-01-01 00:00:00',1,0,1),(23825,'5052','Saint-laurent-de-mure','SAINT-LAURENT-DE-MURE',NULL,'','France','',0,0,76,'2016-10-17 11:50:41','1900-01-01 00:00:00',1,0,1),(23826,'5967','Saint-laurent-des-arbres','SAINT-LAURENT-DES-ARBRES',NULL,'','France','',0,0,76,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23827,'43514','Saint-laurent-du-var','SAINT-LAURENT-DU-VAR',NULL,'','France','',0,0,76,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23828,'4533','Saint-laurent-nouan','SAINT-LAURENT-NOUAN',NULL,'','France','',0,0,76,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23829,'22884','Saint-leonard','SAINT-LEONARD',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23830,'38656','Saint-léonard','SAINT-LÉONARD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:50:42','1900-01-01 00:00:00',1,0,1),(23831,'16197','Saint-leu','SAINT-LEU',NULL,'','Reunion','',0,0,178,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23832,'22885','Saint-liboire','SAINT-LIBOIRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23833,'4534','Saint-lieux-lès-lavaur','SAINT-LIEUX-LÈS-LAVAUR',NULL,'','France','',0,0,76,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23834,'44095','Saint-lo','SAINT-LO',NULL,'','France','',0,0,76,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23835,'39302','Saint-louet-sur-seulles','SAINT-LOUET-SUR-SEULLES',NULL,'','France','',0,0,76,'2016-10-17 11:50:43','1900-01-01 00:00:00',1,0,1),(23836,'5680','Saint-louis','SAINT-LOUIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23837,'42011','Saint-louis','SAINT-LOUIS',NULL,'','Senegal','',0,0,187,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23838,'40409','Saint-loup-lamairé','SAINT-LOUP-LAMAIRÉ',NULL,'','France','',0,0,76,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23839,'41310','Saint-luce-sur-loire','SAINT-LUCE-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23840,'37827','Saint-lyphard','SAINT-LYPHARD',NULL,'','France','',0,0,76,'2016-10-17 11:50:44','1900-01-01 00:00:00',1,0,1),(23841,'40345','Saint-lys','SAINT-LYS',NULL,'','France','',0,0,76,'2016-10-17 11:50:45','1900-01-01 00:00:00',1,0,1),(23842,'6365','Saint-maixent-l\'ecole','SAINT-MAIXENT-L\'ECOLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:45','1900-01-01 00:00:00',1,0,1),(23843,'40206','Saint-mamet','SAINT-MAMET',NULL,'','France','',0,0,76,'2016-10-17 11:50:45','1900-01-01 00:00:00',1,0,1),(23844,'5493','Saint-marcel','SAINT-MARCEL',NULL,'','France','',0,0,76,'2016-10-17 11:50:46','1900-01-01 00:00:00',1,0,1),(23845,'6704','Saint-marcellin','SAINT-MARCELLIN',NULL,'','France','',0,0,76,'2016-10-17 11:50:46','1900-01-01 00:00:00',1,0,1),(23846,'38463','Saint-mard','SAINT-MARD',NULL,'','France','',0,0,76,'2016-10-17 11:50:46','1900-01-01 00:00:00',1,0,1),(23847,'4874','Saint-martin-aux-chartrains','SAINT-MARTIN-AUX-CHARTRAINS',NULL,'','France','',0,0,76,'2016-10-17 11:50:47','1900-01-01 00:00:00',1,0,1),(23848,'6196','Saint-martin-boulogne','SAINT-MARTIN-BOULOGNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:47','1900-01-01 00:00:00',1,0,1),(23849,'4535','Saint-martin-d\' Uriage','SAINT-MARTIN-D\' URIAGE',NULL,'','France','',0,0,76,'2016-10-17 11:50:47','1900-01-01 00:00:00',1,0,1),(23850,'6705','Saint-martin-d\'ardeche','SAINT-MARTIN-D\'ARDECHE',NULL,'','France','',0,0,76,'2016-10-17 11:50:48','1900-01-01 00:00:00',1,0,1),(23851,'44096','Saint-martin-de-belleville','SAINT-MARTIN-DE-BELLEVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:48','1900-01-01 00:00:00',1,0,1),(23852,'6366','Saint-martin-de-re','SAINT-MARTIN-DE-RE',NULL,'','France','',0,0,76,'2016-10-17 11:50:48','1900-01-01 00:00:00',1,0,1),(23853,'6706','Saint-martin-d\'hères','SAINT-MARTIN-D\'HÈRES',NULL,'','France','',0,0,76,'2016-10-17 11:50:49','1900-01-01 00:00:00',1,0,1),(23854,'5829','Saint-martin-du-manoir','SAINT-MARTIN-DU-MANOIR',NULL,'','France','',0,0,76,'2016-10-17 11:50:49','1900-01-01 00:00:00',1,0,1),(23855,'44097','Saint-martin-du-vivier','SAINT-MARTIN-DU-VIVIER',NULL,'','France','',0,0,76,'2016-10-17 11:50:49','1900-01-01 00:00:00',1,0,1),(23856,'5494','Saint-martin-en-bresse','SAINT-MARTIN-EN-BRESSE',NULL,'','France','',0,0,76,'2016-10-17 11:50:49','1900-01-01 00:00:00',1,0,1),(23857,'5749','Saint-martin-sur-le-pre','SAINT-MARTIN-SUR-LE-PRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:50','1900-01-01 00:00:00',1,0,1),(23858,'5346','Saint-martin-valmeroux','SAINT-MARTIN-VALMEROUX',NULL,'','France','',0,0,76,'2016-10-17 11:50:50','1900-01-01 00:00:00',1,0,1),(23859,'4798','Saint-maur-des-fosses','SAINT-MAUR-DES-FOSSES',NULL,'','France','',0,0,76,'2016-10-17 11:50:50','1900-01-01 00:00:00',1,0,1),(23860,'23337','Saint-maurice','SAINT-MAURICE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:50:51','1900-01-01 00:00:00',1,0,1),(23861,'6707','Saint-maurice-de-beynost','SAINT-MAURICE-DE-BEYNOST',NULL,'','France','',0,0,76,'2016-10-17 11:50:51','1900-01-01 00:00:00',1,0,1),(23862,'6526','Saint-maximin-la-sainte-baume','SAINT-MAXIMIN-LA-SAINTE-BAUME',NULL,'','France','',0,0,76,'2016-10-17 11:50:51','1900-01-01 00:00:00',1,0,1),(23863,'5602','Saint-meloir-des-ondes','SAINT-MELOIR-DES-ONDES',NULL,'','France','',0,0,76,'2016-10-17 11:50:51','1900-01-01 00:00:00',1,0,1),(23864,'40951','Saint-michel Des Saints','SAINT-MICHEL DES SAINTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:52','1900-01-01 00:00:00',1,0,1),(23865,'6272','Saint-michel-chef-chef','SAINT-MICHEL-CHEF-CHEF',NULL,'','France','',0,0,76,'2016-10-17 11:50:52','1900-01-01 00:00:00',1,0,1),(23866,'22886','Saint-michel-des-saints','SAINT-MICHEL-DES-SAINTS',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:52','1900-01-01 00:00:00',1,0,1),(23867,'5681','Saint-michel-sur-loire','SAINT-MICHEL-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:50:52','1900-01-01 00:00:00',1,0,1),(23868,'4536','Saint-nicolas','SAINT-NICOLAS',NULL,'','France','',0,0,76,'2016-10-17 11:50:53','1900-01-01 00:00:00',1,0,1),(23869,'40368','Saint-nicolas','SAINT-NICOLAS',NULL,'','Canada','',0,0,39,'2016-10-17 11:50:53','1900-01-01 00:00:00',1,0,1),(23870,'40761','Saint-nicolas-de-la-grave','SAINT-NICOLAS-DE-LA-GRAVE',NULL,'','France','',0,0,76,'2016-10-17 11:50:53','1900-01-01 00:00:00',1,0,1),(23871,'5422','Saint-nicolas-des-bois','SAINT-NICOLAS-DES-BOIS',NULL,'','France','',0,0,76,'2016-10-17 11:50:53','1900-01-01 00:00:00',1,0,1),(23872,'41304','Saint-nicolas-les Arras','SAINT-NICOLAS-LES ARRAS',NULL,'','France','',0,0,76,'2016-10-17 11:50:54','1900-01-01 00:00:00',1,0,1),(23873,'6708','Saint-nizier-du-moucherotte','SAINT-NIZIER-DU-MOUCHEROTTE',NULL,'','France','',0,0,76,'2016-10-17 11:50:54','1900-01-01 00:00:00',1,0,1),(23874,'35168','Saint-omer','SAINT-OMER',NULL,'','France','',0,0,76,'2016-10-17 11:50:54','1900-01-01 00:00:00',1,0,1),(23875,'37600','Saint-omer-en-chaussee','SAINT-OMER-EN-CHAUSSEE',NULL,'','France','',0,0,76,'2016-10-17 11:50:54','1900-01-01 00:00:00',1,0,1),(23876,'44098','Saint-onen-la-chapelle','SAINT-ONEN-LA-CHAPELLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:55','1900-01-01 00:00:00',1,0,1),(23877,'37350','Saint-ouen-laumône','SAINT-OUEN-LAUMÔNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:55','1900-01-01 00:00:00',1,0,1),(23878,'5682','Saint-ouen-les-vignes','SAINT-OUEN-LES-VIGNES',NULL,'','France','',0,0,76,'2016-10-17 11:50:56','1900-01-01 00:00:00',1,0,1),(23879,'5871','Saint-ouen-sur-morin','SAINT-OUEN-SUR-MORIN',NULL,'','France','',0,0,76,'2016-10-17 11:50:56','1900-01-01 00:00:00',1,0,1),(23880,'6367','Saint-palais-sur-mer','SAINT-PALAIS-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:50:56','1900-01-01 00:00:00',1,0,1),(23881,'39082','Saint-pancrace','SAINT-PANCRACE',NULL,'','France','',0,0,76,'2016-10-17 11:50:56','1900-01-01 00:00:00',1,0,1),(23882,'37992','Saint-pardoux-la-croisille','SAINT-PARDOUX-LA-CROISILLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:57','1900-01-01 00:00:00',1,0,1),(23883,'44099','Saint-paterne','SAINT-PATERNE',NULL,'','France','',0,0,76,'2016-10-17 11:50:57','1900-01-01 00:00:00',1,0,1),(23884,'5603','Saint-patrice','SAINT-PATRICE',NULL,'','France','',0,0,76,'2016-10-17 11:50:57','1900-01-01 00:00:00',1,0,1),(23885,'39458','Saint-paul-de-fenouillet','SAINT-PAUL-DE-FENOUILLET',NULL,'','France','',0,0,76,'2016-10-17 11:50:58','1900-01-01 00:00:00',1,0,1),(23886,'44100','Saint-paul-de-vence','SAINT-PAUL-DE-VENCE',NULL,'','France','',0,0,76,'2016-10-17 11:50:58','1900-01-01 00:00:00',1,0,1),(23887,'6527','Saint-paul-en-foret','SAINT-PAUL-EN-FORET',NULL,'','France','',0,0,76,'2016-10-17 11:50:58','1900-01-01 00:00:00',1,0,1),(23888,'4965','Saint-paul-les-dax','SAINT-PAUL-LES-DAX',NULL,'','France','',0,0,76,'2016-10-17 11:50:58','1900-01-01 00:00:00',1,0,1),(23889,'4908','Saint-paul-trois-chateaux','SAINT-PAUL-TROIS-CHATEAUX',NULL,'','France','',0,0,76,'2016-10-17 11:50:59','1900-01-01 00:00:00',1,0,1),(23890,'40353','Saint-pée-sur-nivelle','SAINT-PÉE-SUR-NIVELLE',NULL,'','France','',0,0,76,'2016-10-17 11:50:59','1900-01-01 00:00:00',1,0,1),(23891,'5496','Saint-philibert','SAINT-PHILIBERT',NULL,'','France','',0,0,76,'2016-10-17 11:51:00','1900-01-01 00:00:00',1,0,1),(23892,'12412','Saint-pierre','SAINT-PIERRE',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:00','1900-01-01 00:00:00',1,0,1),(23893,'16189','Saint-pierre','SAINT-PIERRE',NULL,'','Reunion','',0,0,178,'2016-10-17 11:51:00','1900-01-01 00:00:00',1,0,1),(23894,'4537','Saint-pierre-d Entremont','SAINT-PIERRE-D ENTREMONT',NULL,'','France','',0,0,76,'2016-10-17 11:51:00','1900-01-01 00:00:00',1,0,1),(23895,'40792','Saint-pierre-dalbigny','SAINT-PIERRE-DALBIGNY',NULL,'','France','',0,0,76,'2016-10-17 11:51:01','1900-01-01 00:00:00',1,0,1),(23896,'5968','Saint-pierre-des-champs','SAINT-PIERRE-DES-CHAMPS',NULL,'','France','',0,0,76,'2016-10-17 11:51:01','1900-01-01 00:00:00',1,0,1),(23897,'5683','Saint-pierre-des-corps','SAINT-PIERRE-DES-CORPS',NULL,'','France','',0,0,76,'2016-10-17 11:51:01','1900-01-01 00:00:00',1,0,1),(23898,'6368','Saint-pierre-d\'oleron','SAINT-PIERRE-D\'OLERON',NULL,'','France','',0,0,76,'2016-10-17 11:51:01','1900-01-01 00:00:00',1,0,1),(23899,'44101','Saint-pierre-du-perray','SAINT-PIERRE-DU-PERRAY',NULL,'','France','',0,0,76,'2016-10-17 11:51:02','1900-01-01 00:00:00',1,0,1),(23900,'5830','Saint-pierre-du-vauvray','SAINT-PIERRE-DU-VAUVRAY',NULL,'','France','',0,0,76,'2016-10-17 11:51:02','1900-01-01 00:00:00',1,0,1),(23901,'5750','Saint-pierremont','SAINT-PIERREMONT',NULL,'','France','',0,0,76,'2016-10-17 11:51:02','1900-01-01 00:00:00',1,0,1),(23902,'37622','Saint-pierre-quiberon','SAINT-PIERRE-QUIBERON',NULL,'','France','',0,0,76,'2016-10-17 11:51:02','1900-01-01 00:00:00',1,0,1),(23903,'38087','Saint-pierre-sur-mer','SAINT-PIERRE-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:51:03','1900-01-01 00:00:00',1,0,1),(23904,'44102','Saint-pol-de-leon','SAINT-POL-DE-LEON',NULL,'','France','',0,0,76,'2016-10-17 11:51:03','1900-01-01 00:00:00',1,0,1),(23905,'6197','Saint-pol-sur-mer','SAINT-POL-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:51:03','1900-01-01 00:00:00',1,0,1),(23906,'4538','Saint-pons-de-thomières','SAINT-PONS-DE-THOMIÈRES',NULL,'','France','',0,0,76,'2016-10-17 11:51:04','1900-01-01 00:00:00',1,0,1),(23907,'5684','Saint-prest','SAINT-PREST',NULL,'','France','',0,0,76,'2016-10-17 11:51:04','1900-01-01 00:00:00',1,0,1),(23908,'6369','Saint-preuil','SAINT-PREUIL',NULL,'','France','',0,0,76,'2016-10-17 11:51:04','1900-01-01 00:00:00',1,0,1),(23909,'38886','Saint-priest-en-jarez','SAINT-PRIEST-EN-JAREZ',NULL,'','France','',0,0,76,'2016-10-17 11:51:04','1900-01-01 00:00:00',1,0,1),(23910,'4800','Saint-prix','SAINT-PRIX',NULL,'','France','',0,0,76,'2016-10-17 11:51:05','1900-01-01 00:00:00',1,0,1),(23911,'5604','Saint-quay-portrieux','SAINT-QUAY-PORTRIEUX',NULL,'','France','',0,0,76,'2016-10-17 11:51:05','1900-01-01 00:00:00',1,0,1),(23912,'5685','Saint-quentin','SAINT-QUENTIN',NULL,'','France','',0,0,76,'2016-10-17 11:51:05','1900-01-01 00:00:00',1,0,1),(23913,'41293','Saint-quentin-en-yvelines','SAINT-QUENTIN-EN-YVELINES',NULL,'','France','',0,0,76,'2016-10-17 11:51:06','1900-01-01 00:00:00',1,0,1),(23914,'6709','Saint-quentin-fallavier','SAINT-QUENTIN-FALLAVIER',NULL,'','France','',0,0,76,'2016-10-17 11:51:06','1900-01-01 00:00:00',1,0,1),(23915,'6710','Saint-quentin-sur-isere','SAINT-QUENTIN-SUR-ISERE',NULL,'','France','',0,0,76,'2016-10-17 11:51:06','1900-01-01 00:00:00',1,0,1),(23916,'4994','Saint-quentin-sur-le-homme','SAINT-QUENTIN-SUR-LE-HOMME',NULL,'','France','',0,0,76,'2016-10-17 11:51:07','1900-01-01 00:00:00',1,0,1),(23917,'5257','Saint-raphael','SAINT-RAPHAEL',NULL,'','France','',0,0,76,'2016-10-17 11:51:07','1900-01-01 00:00:00',1,0,1),(23918,'4540','Saint-remy-de-provence','SAINT-REMY-DE-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 11:51:07','1900-01-01 00:00:00',1,0,1),(23919,'39787','Saint-rhemy-en-bosses','SAINT-RHEMY-EN-BOSSES',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:08','1900-01-01 00:00:00',1,0,1),(23920,'6316','Saint-riquier','SAINT-RIQUIER',NULL,'','France','',0,0,76,'2016-10-17 11:51:08','1900-01-01 00:00:00',1,0,1),(23921,'37403','Saint-romain-de-colbosc','SAINT-ROMAIN-DE-COLBOSC',NULL,'','France','',0,0,76,'2016-10-17 11:51:08','1900-01-01 00:00:00',1,0,1),(23922,'39781','Saint-romain-la-motte','SAINT-ROMAIN-LA-MOTTE',NULL,'','France','',0,0,76,'2016-10-17 11:51:08','1900-01-01 00:00:00',1,0,1),(23923,'22887','Saint-romuald','SAINT-ROMUALD',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:09','1900-01-01 00:00:00',1,0,1),(23924,'5062','Saint-saturnin','SAINT-SATURNIN',NULL,'','France','',0,0,76,'2016-10-17 11:51:09','1900-01-01 00:00:00',1,0,1),(23925,'5120','Saint-saturnin-les-apt','SAINT-SATURNIN-LES-APT',NULL,'','France','',0,0,76,'2016-10-17 11:51:09','1900-01-01 00:00:00',1,0,1),(23926,'4542','Saint-saturnin-lès-avignon','SAINT-SATURNIN-LÈS-AVIGNON',NULL,'','France','',0,0,76,'2016-10-17 11:51:10','1900-01-01 00:00:00',1,0,1),(23927,'4543','Saint-sauveur-de-landemont','SAINT-SAUVEUR-DE-LANDEMONT',NULL,'','France','',0,0,76,'2016-10-17 11:51:10','1900-01-01 00:00:00',1,0,1),(23928,'6370','Saint-saviol','SAINT-SAVIOL',NULL,'','France','',0,0,76,'2016-10-17 11:51:10','1900-01-01 00:00:00',1,0,1),(23929,'4978','Saint-sebastien-sur-loire','SAINT-SEBASTIEN-SUR-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:51:11','1900-01-01 00:00:00',1,0,1),(23930,'6131','Saint-sernin-sur-rance','SAINT-SERNIN-SUR-RANCE',NULL,'','France','',0,0,76,'2016-10-17 11:51:11','1900-01-01 00:00:00',1,0,1),(23931,'23338','Saint-sulpice','SAINT-SULPICE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:51:11','1900-01-01 00:00:00',1,0,1),(23932,'6010','Saint-sylvestre','SAINT-SYLVESTRE',NULL,'','France','',0,0,76,'2016-10-17 11:51:11','1900-01-01 00:00:00',1,0,1),(23933,'5258','Saint-sylvestre-sur-lot','SAINT-SYLVESTRE-SUR-LOT',NULL,'','France','',0,0,76,'2016-10-17 11:51:12','1900-01-01 00:00:00',1,0,1),(23934,'4910','Saint-symphorien-le-chateau','SAINT-SYMPHORIEN-LE-CHATEAU',NULL,'','France','',0,0,76,'2016-10-17 11:51:12','1900-01-01 00:00:00',1,0,1),(23935,'5102','Saint-thibault-des-vignes','SAINT-THIBAULT-DES-VIGNES',NULL,'','France','',0,0,76,'2016-10-17 11:51:12','1900-01-01 00:00:00',1,0,1),(23936,'5969','Saint-thibery','SAINT-THIBERY',NULL,'','France','',0,0,76,'2016-10-17 11:51:13','1900-01-01 00:00:00',1,0,1),(23937,'38121','Saint-trinit','SAINT-TRINIT',NULL,'','France','',0,0,76,'2016-10-17 11:51:13','1900-01-01 00:00:00',1,0,1),(23938,'44270','Saint-trojan-les-bains','SAINT-TROJAN-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:51:13','1900-01-01 00:00:00',1,0,1),(23939,'5423','Saint-vaast-la-hougue','SAINT-VAAST-LA-HOUGUE',NULL,'','France','',0,0,76,'2016-10-17 11:51:14','1900-01-01 00:00:00',1,0,1),(23940,'41291','Saint-valery-en-caux','SAINT-VALERY-EN-CAUX',NULL,'','France','',0,0,76,'2016-10-17 11:51:14','1900-01-01 00:00:00',1,0,1),(23941,'6528','Saint-vallier-de-thiey','SAINT-VALLIER-DE-THIEY',NULL,'','France','',0,0,76,'2016-10-17 11:51:15','1900-01-01 00:00:00',1,0,1),(23942,'6011','Saint-viance','SAINT-VIANCE',NULL,'','France','',0,0,76,'2016-10-17 11:51:15','1900-01-01 00:00:00',1,0,1),(23943,'41290','Saint-victor','SAINT-VICTOR',NULL,'','France','',0,0,76,'2016-10-17 11:51:15','1900-01-01 00:00:00',1,0,1),(23944,'5970','Saint-victor-de-malcap','SAINT-VICTOR-DE-MALCAP',NULL,'','France','',0,0,76,'2016-10-17 11:51:16','1900-01-01 00:00:00',1,0,1),(23945,'6529','Saint-victoret','SAINT-VICTORET',NULL,'','France','',0,0,76,'2016-10-17 11:51:16','1900-01-01 00:00:00',1,0,1),(23946,'5259','Saint-vincent-de-cosse','SAINT-VINCENT-DE-COSSE',NULL,'','France','',0,0,76,'2016-10-17 11:51:16','1900-01-01 00:00:00',1,0,1),(23947,'4801','Saint-witz','SAINT-WITZ',NULL,'','France','',0,0,76,'2016-10-17 11:51:16','1900-01-01 00:00:00',1,0,1),(23948,'40534','Saint-yrieix-la-perche','SAINT-YRIEIX-LA-PERCHE',NULL,'','France','',0,0,76,'2016-10-17 11:51:17','1900-01-01 00:00:00',1,0,1),(23949,'41289','Saint-yrieix-sur-charente','SAINT-YRIEIX-SUR-CHARENTE',NULL,'','France','',0,0,76,'2016-10-17 11:51:17','1900-01-01 00:00:00',1,0,1),(23950,'14209','Saipan','SAIPAN',NULL,'','Northern Mariana Islands','',0,0,163,'2016-10-17 11:51:17','1900-01-01 00:00:00',1,0,1),(23951,'13187','Saitama','SAITAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:51:17','1900-01-01 00:00:00',1,0,1),(23952,'38813','Saix','SAIX',NULL,'','France','',0,0,76,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23953,'17016','Saiyoke','SAIYOKE',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23954,'13335','Sakai','SAKAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23955,'17372','Sakarya','SAKARYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23956,'13336','Sakata','SAKATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23957,'17068','Sakon Nakhon','SAKON NAKHON',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23958,'16812','Sala','SALA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:18','1900-01-01 00:00:00',1,0,1),(23959,'22889','Salaberry De Valleyfield','SALABERRY DE VALLEYFIELD',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23960,'17017','Saladan','SALADAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23961,'30906','Salado','SALADO',NULL,'','United States','',0,0,231,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23962,'17018','Salak Kok','SALAK KOK',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23963,'15285','Salalah','SALALAH',NULL,'','Oman','Salalah',0,0,165,'2016-10-17 11:51:19','1900-01-01 00:00:00',1,0,1),(23964,'29099','Salamanca','SALAMANCA',NULL,'','United States','',0,0,231,'2016-10-17 11:51:20','1900-01-01 00:00:00',1,0,1),(23965,'3482','Salamanca','SALAMANCA',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:20','1900-01-01 00:00:00',1,0,1),(23966,'13955','Salamanca','SALAMANCA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:51:20','1900-01-01 00:00:00',1,0,1),(23967,'29100','Salamanca, Town Of','SALAMANCA, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23968,'34308','Salamander Bay','SALAMANDER BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23969,'3592','Salardu','SALARDU',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23970,'41936','Salas','SALAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23971,'42800','Salatiga','SALATIGA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23972,'5260','Salaunes','SALAUNES',NULL,'','France','',0,0,76,'2016-10-17 11:51:21','1900-01-01 00:00:00',1,0,1),(23973,'6711','Salavas','SALAVAS',NULL,'','France','',0,0,76,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23974,'15402','Salaverry','SALAVERRY',NULL,'','Peru','',0,0,172,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23975,'16813','Salbohed','SALBOHED',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23976,'5686','Salbris','SALBRIS',NULL,'','France','',0,0,76,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23977,'8835','Salcombe','SALCOMBE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:22','1900-01-01 00:00:00',1,0,1),(23978,'8836','Salcott','SALCOTT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23979,'40142','Saldanha','SALDANHA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23980,'15892','Saldanha','SALDANHA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23981,'26552','Sale','SALE',NULL,'','Australia','',0,0,13,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23982,'8837','Sale','SALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23983,'32341','Salelologa','SALELOLOGA',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:23','1900-01-01 00:00:00',1,0,1),(23984,'10590','Salem','SALEM',NULL,'','India','Salem',18,0,101,'2016-10-17 11:51:27','1900-01-01 00:00:00',1,0,1),(23985,'12415','Salemi','SALEMI',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:30','1900-01-01 00:00:00',1,0,1),(23986,'41227','Salen','SALEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:30','1900-01-01 00:00:00',1,0,1),(23987,'8838','Salen','SALEN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:30','1900-01-01 00:00:00',1,0,1),(23988,'12992','Salerno','SALERNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:30','1900-01-01 00:00:00',1,0,1),(23989,'35458','Salerno-ascea Marina','SALERNO-ASCEA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23990,'5348','Salers','SALERS',NULL,'','France','',0,0,76,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23991,'12914','Salgareda','SALGAREDA',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23992,'23339','Salgesch','SALGESCH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23993,'16609','Salgovce','SALGOVCE',NULL,'','Slovakia (Slovak Republic)','',0,0,191,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23994,'40237','Salice Salentino','SALICE SALENTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:31','1900-01-01 00:00:00',1,0,1),(23995,'18847','Salida','SALIDA',NULL,'','United States','',0,0,231,'2016-10-17 11:51:32','1900-01-01 00:00:00',1,0,1),(23996,'6530','Saliers','SALIERS',NULL,'','France','',0,0,76,'2016-10-17 11:51:33','1900-01-01 00:00:00',1,0,1),(23997,'42358','Salies-de-bearn','SALIES-DE-BEARN',NULL,'','France','',0,0,76,'2016-10-17 11:51:33','1900-01-01 00:00:00',1,0,1),(23998,'5261','Salies-de-béarn','SALIES-DE-BÉARN',NULL,'','France','',0,0,76,'2016-10-17 11:51:33','1900-01-01 00:00:00',1,0,1),(23999,'14281','Salima','SALIMA',NULL,'','Malawi','',0,0,131,'2016-10-17 11:51:34','1900-01-01 00:00:00',1,0,1),(24000,'14190','Salina','SALINA',NULL,'','Malta','',0,0,135,'2016-10-17 11:51:34','1900-01-01 00:00:00',1,0,1),(24001,'12417','Salina','SALINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:34','1900-01-01 00:00:00',1,0,1),(24002,'33394','Salina','SALINA',NULL,'','United States','',0,0,231,'2016-10-17 11:51:34','1900-01-01 00:00:00',1,0,1),(24003,'18848','Salinas','SALINAS',NULL,'','United States','',0,0,231,'2016-10-17 11:51:36','1900-01-01 00:00:00',1,0,1),(24004,'2379','Salinas','SALINAS',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:51:36','1900-01-01 00:00:00',1,0,1),(24005,'16567','Salinitas','SALINITAS',NULL,'','El Salvador','',0,0,66,'2016-10-17 11:51:37','1900-01-01 00:00:00',1,0,1),(24006,'40066','Salins-les-bains','SALINS-LES-BAINS',NULL,'','France','',0,0,76,'2016-10-17 11:51:37','1900-01-01 00:00:00',1,0,1),(24007,'8840','Salisbury','SALISBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:38','1900-01-01 00:00:00',1,0,1),(24008,'2106','Salisbury','SALISBURY',NULL,'','Dominica','',0,0,500,'2016-10-17 11:51:38','1900-01-01 00:00:00',1,0,1),(24009,'3931','Salla','SALLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:51:40','1900-01-01 00:00:00',1,0,1),(24010,'6712','Sallanches','SALLANCHES',NULL,'','France','',0,0,76,'2016-10-17 11:51:40','1900-01-01 00:00:00',1,0,1),(24011,'14478','Salland','SALLAND',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:51:40','1900-01-01 00:00:00',1,0,1),(24012,'5971','Salleles-d\'aude','SALLELES-D\'AUDE',NULL,'','France','',0,0,76,'2016-10-17 11:51:41','1900-01-01 00:00:00',1,0,1),(24013,'2777','Sallent De Gallego','SALLENT DE GALLEGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:41','1900-01-01 00:00:00',1,0,1),(24014,'32953','Sallisaw','SALLISAW',NULL,'','United States','',0,0,231,'2016-10-17 11:51:41','1900-01-01 00:00:00',1,0,1),(24015,'22890','Salluit','SALLUIT',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:42','1900-01-01 00:00:00',1,0,1),(24016,'24538','Salmannsdorf','SALMANNSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:51:42','1900-01-01 00:00:00',1,0,1),(24017,'42212','Salmiyah','SALMIYAH',NULL,'','Kuwait','',0,0,116,'2016-10-17 11:51:42','1900-01-01 00:00:00',1,0,1),(24018,'20397','Salmon','SALMON',NULL,'','United States','',0,0,231,'2016-10-17 11:51:42','1900-01-01 00:00:00',1,0,1),(24019,'25532','Salmon Arm','SALMON ARM',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:43','1900-01-01 00:00:00',1,0,1),(24020,'2481','Salobrena','SALOBRENA',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:43','1900-01-01 00:00:00',1,0,1),(24021,'4865','Salon-de-provence','SALON-DE-PROVENCE',NULL,'','France','',0,0,76,'2016-10-17 11:51:43','1900-01-01 00:00:00',1,0,1),(24022,'3593','Salou','SALOU',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24023,'1058','Saloum','SALOUM',NULL,'','SENEGAL','',0,0,187,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24024,'38486','Salperwick','SALPERWICK',NULL,'','France','',0,0,76,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24025,'44236','Salsipuedes','SALSIPUEDES',NULL,'','Mexico','',0,0,141,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24026,'35642','Salsomaggiore','SALSOMAGGIORE',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:44','1900-01-01 00:00:00',1,0,1),(24027,'3594','Salt','SALT',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:45','1900-01-01 00:00:00',1,0,1),(24028,'38675','Salt','SALT',NULL,'','Jordan','',0,0,111,'2016-10-17 11:51:45','1900-01-01 00:00:00',1,0,1),(24029,'16939','Salt Cay','SALT CAY',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:51:45','1900-01-01 00:00:00',1,0,1),(24030,'32534','Salt Rock','SALT ROCK',NULL,'','South Africa','',0,0,195,'2016-10-17 11:51:46','1900-01-01 00:00:00',1,0,1),(24031,'13093','Salt Spring','SALT SPRING',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:51:46','1900-01-01 00:00:00',1,0,1),(24032,'25533','Salt Spring Island','SALT SPRING ISLAND',NULL,'','Canada','',0,0,39,'2016-10-17 11:51:46','1900-01-01 00:00:00',1,0,1),(24033,'26139','Salta','SALTA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:51:46','1900-01-01 00:00:00',1,0,1),(24034,'8841','Saltash','SALTASH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24035,'8842','Saltburn-by-the-sea','SALTBURN-BY-THE-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24036,'3287','Salteras','SALTERAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24037,'8843','Saltford','SALTFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24038,'10760','Salthill','SALTHILL',NULL,'','Ireland','',0,0,105,'2016-10-17 11:51:47','1900-01-01 00:00:00',1,0,1),(24039,'33254','Saltillo','SALTILLO',NULL,'','United States','',0,0,231,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24040,'14068','Saltillo','SALTILLO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24041,'12419','Saltino','SALTINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24042,'17523','Salto','SALTO',NULL,'','Uruguay','',0,0,230,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24043,'36011','Salto Del Laja','SALTO DEL LAJA',NULL,'','Chile','',0,0,45,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24044,'37220','Saltsjo Boo','SALTSJO BOO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24045,'16843','Saltsjobaden','SALTSJOBADEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:51:48','1900-01-01 00:00:00',1,0,1),(24046,'31224','Saltville','SALTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:51:49','1900-01-01 00:00:00',1,0,1),(24047,'16378','Saltykovka','SALTYKOVKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:51:49','1900-01-01 00:00:00',1,0,1),(24048,'33998','Saluda','SALUDA',NULL,'','United States','',0,0,231,'2016-10-17 11:51:49','1900-01-01 00:00:00',1,0,1),(24049,'25065','Salvador','SALVADOR',NULL,'','Brazil','',0,0,30,'2016-10-17 11:51:50','1900-01-01 00:00:00',1,0,1),(24050,'41993','Salvaterra','SALVATERRA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:51:50','1900-01-01 00:00:00',1,0,1),(24051,'12421','Salvaterra Di Casalgrande','SALVATERRA DI CASALGRANDE',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:50','1900-01-01 00:00:00',1,0,1),(24052,'33999','Salvo','SALVO',NULL,'','United States','',0,0,231,'2016-10-17 11:51:51','1900-01-01 00:00:00',1,0,1),(24053,'1059','Saly','SALY',NULL,'','SENEGAL','',0,0,187,'2016-10-17 11:51:51','1900-01-01 00:00:00',1,0,1),(24054,'44001','Salybia','SALYBIA',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:51:51','1900-01-01 00:00:00',1,0,1),(24055,'321','Salzburg','SALZBURG',NULL,'','Germany','Salzburg',0,0,83,'2016-10-17 11:51:51','1900-01-01 00:00:00',1,0,1),(24056,'27277','Salzgitter','SALZGITTER',NULL,'','Germany','',0,0,83,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24057,'2352','Samana','SAMANA',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24058,'16433','Samara','SAMARA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24059,'12423','Samarate','SAMARATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24060,'10334','Samarinda','SAMARINDA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:51:52','1900-01-01 00:00:00',1,0,1),(24061,'32156','Samarkand','SAMARKAND',NULL,'','Uzbekistan','Samarkand',0,0,232,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24062,'6132','Samatan','SAMATAN',NULL,'','France','',0,0,76,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24063,'17311','Samatya','SAMATYA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24064,'40182','Sambava','SAMBAVA',NULL,'','Madagascar','',0,0,130,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24065,'39508','Samburu','SAMBURU',NULL,'','Kenya','Samburu',0,0,113,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24066,'23081','Samedan','SAMEDAN',NULL,'','Switzerland','Samedan',0,0,210,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24067,'7286','Samford Peverell','SAMFORD PEVERELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:53','1900-01-01 00:00:00',1,0,1),(24068,'9781','Sami','SAMI',NULL,'','Greece','',0,0,86,'2016-10-17 11:51:54','1900-01-01 00:00:00',1,0,1),(24069,'3686','Samieira','SAMIEIRA',NULL,'','Spain','',0,0,199,'2016-10-17 11:51:54','1900-01-01 00:00:00',1,0,1),(24070,'8844','Samlesbury','SAMLESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:51:54','1900-01-01 00:00:00',1,0,1),(24071,'31608','Sammamish','SAMMAMISH',NULL,'','United States','',0,0,231,'2016-10-17 11:51:54','1900-01-01 00:00:00',1,0,1),(24072,'38962','Sammichele Di Bari','SAMMICHELE DI BARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24073,'23340','Samnaun','SAMNAUN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24074,'32338','Samoa','SAMOA',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24075,'44283','Samoa Point','SAMOA POINT',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24076,'37104','Samoa-apia','SAMOA-APIA',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24077,'37105','Samoa-mulifanua','SAMOA-MULIFANUA',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24078,'37103','Samoa-saanapu','SAMOA-SAANAPU',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24079,'37107','Samoa-savai\'i Island','SAMOA-SAVAI\'I ISLAND',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24080,'37106','Samoa-siumu','SAMOA-SIUMU',NULL,'','Samoa','',0,0,183,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24081,'10467','Samode','SAMODE',NULL,'','India','',0,0,101,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24082,'41287','Samoens','SAMOENS',NULL,'','France','',0,0,76,'2016-10-17 11:51:55','1900-01-01 00:00:00',1,0,1),(24083,'6713','Samoëns','SAMOËNS',NULL,'','France','',0,0,76,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24084,'38271','Samokov','SAMOKOV',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24085,'41642','Samora Correia','SAMORA CORREIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24086,'42482','Samothraki','SAMOTHRAKI',NULL,'','Greece','',0,0,86,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24087,'15492','Sampaloc','SAMPALOC',NULL,'','Philippines','',0,0,173,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24088,'12424','Sampieri','SAMPIERI',NULL,'','Italy','',0,0,107,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24089,'17358','Samsun','SAMSUN',NULL,'','Turkey','',0,0,222,'2016-10-17 11:51:56','1900-01-01 00:00:00',1,0,1),(24090,'22401','Samtens','SAMTENS',NULL,'','Germany','',0,0,83,'2016-10-17 11:51:57','1900-01-01 00:00:00',1,0,1),(24091,'17077','Samut Prakan','SAMUT PRAKAN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:51:57','1900-01-01 00:00:00',1,0,1),(24092,'41174','San Andres','SAN ANDRES',NULL,'','Colombia','',0,0,49,'2016-10-17 11:51:58','1900-01-01 00:00:00',1,0,1),(24093,'24888','San Andros','SAN ANDROS',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:51:58','1900-01-01 00:00:00',1,0,1),(24094,'43396','San Anton','SAN ANTON',NULL,'','Malta','',0,0,135,'2016-10-17 11:51:59','1900-01-01 00:00:00',1,0,1),(24095,'42782','San Antonio','SAN ANTONIO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:51:59','1900-01-01 00:00:00',1,0,1),(24096,'32212','San Antonio','SAN ANTONIO',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:51:59','1900-01-01 00:00:00',1,0,1),(24097,'14210','San Antonio','SAN ANTONIO',NULL,'','Northern Mariana Islands','',0,0,163,'2016-10-17 11:51:59','1900-01-01 00:00:00',1,0,1),(24098,'16109','San Bernardino','SAN BERNARDINO',NULL,'','Paraguay','',0,0,171,'2016-10-17 11:52:02','1900-01-01 00:00:00',1,0,1),(24099,'23552','San Bernardo','SAN BERNARDO',NULL,'','Chile','',0,0,45,'2016-10-17 11:52:03','1900-01-01 00:00:00',1,0,1),(24100,'17123','San Fernando','SAN FERNANDO',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:52:10','1900-01-01 00:00:00',1,0,1),(24101,'15765','San German','SAN GERMAN',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:52:12','1900-01-01 00:00:00',1,0,1),(24102,'24902','San Ignacio','SAN IGNACIO',NULL,'','Belize','',0,0,22,'2016-10-17 11:52:15','1900-01-01 00:00:00',1,0,1),(24103,'43696','San Ignacio','SAN IGNACIO',NULL,'','Honduras','',0,0,97,'2016-10-17 11:52:15','1900-01-01 00:00:00',1,0,1),(24104,'14449','San Juan Del Sur','SAN JUAN DEL SUR',NULL,'','Nicaragua','',0,0,158,'2016-10-17 11:52:19','1900-01-01 00:00:00',1,0,1),(24105,'16579','San Marino','SAN MARINO',NULL,'','San Marino','',0,0,184,'2016-10-17 11:52:24','1900-01-01 00:00:00',1,0,1),(24106,'16573','San Miguel','SAN MIGUEL',NULL,'','El Salvador','',0,0,66,'2016-10-17 11:52:27','1900-01-01 00:00:00',1,0,1),(24107,'25833','San Nicolas','SAN NICOLAS',NULL,'','Aruba','',0,0,12,'2016-10-17 11:52:27','1900-01-01 00:00:00',1,0,1),(24108,'41653','Sana','SANA',NULL,'','Yemen','',0,0,240,'2016-10-17 11:52:37','1900-01-01 00:00:00',1,0,1),(24109,'32356','Sana\'a','SANA\'A',NULL,'','Yemen','',0,0,240,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24110,'13337','Sanada','SANADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24111,'10345','Sanana','SANANA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24112,'11435','Sanarica','SANARICA',NULL,'','Italy','',0,0,107,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24113,'1596','Sanary','SANARY',NULL,'','France','',0,0,76,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24114,'6531','Sanary-sur-mer','SANARY-SUR-MER',NULL,'','France','',0,0,76,'2016-10-17 11:52:38','1900-01-01 00:00:00',1,0,1),(24115,'32761','Sanbornton','SANBORNTON',NULL,'','United States','',0,0,231,'2016-10-17 11:52:39','1900-01-01 00:00:00',1,0,1),(24116,'23630','Sanbu','SANBU',NULL,'','China','',0,0,46,'2016-10-17 11:52:39','1900-01-01 00:00:00',1,0,1),(24117,'41286','Sancerre','SANCERRE',NULL,'','France','',0,0,76,'2016-10-17 11:52:39','1900-01-01 00:00:00',1,0,1),(24118,'37907','Sanchi','SANCHI',NULL,'','India','Sanchi',15,0,101,'2016-10-17 11:52:39','1900-01-01 00:00:00',1,0,1),(24119,'17414','Sanchung','SANCHUNG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24120,'3139','Sancibrian','SANCIBRIAN',NULL,'','Spain','',0,0,199,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24121,'41201','Sancti Spiritus','SANCTI SPIRITUS',NULL,'','Cuba','',0,0,56,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24122,'42918','Sanctuary Cove','SANCTUARY COVE',NULL,'','Australia','',0,0,13,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24123,'5497','Sancy','SANCY',NULL,'','France','',0,0,76,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24124,'22628','Sand','SAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:52:40','1900-01-01 00:00:00',1,0,1),(24125,'35762','Sanda','SANDA',NULL,'','Japan','',0,0,110,'2016-10-17 11:52:41','1900-01-01 00:00:00',1,0,1),(24126,'14393','Sandakan','SANDAKAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:52:41','1900-01-01 00:00:00',1,0,1),(24127,'14985','Sandane','SANDANE',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:41','1900-01-01 00:00:00',1,0,1),(24128,'24813','Sandanski','SANDANSKI',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24129,'7287','Sanday','SANDAY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24130,'8845','Sandbach','SANDBACH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24131,'562','Sandebeck','SANDEBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24132,'15026','Sandefjord','SANDEFJORD',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:42','1900-01-01 00:00:00',1,0,1),(24133,'30915','Sanderson','SANDERSON',NULL,'','United States','',0,0,231,'2016-10-17 11:52:43','1900-01-01 00:00:00',1,0,1),(24134,'8846','Sanderstead','SANDERSTEAD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:43','1900-01-01 00:00:00',1,0,1),(24135,'19913','Sandersville','SANDERSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:52:43','1900-01-01 00:00:00',1,0,1),(24136,'19599','Sandestin','SANDESTIN',NULL,'','United States','',0,0,231,'2016-10-17 11:52:44','1900-01-01 00:00:00',1,0,1),(24137,'7288','Sandford-on-thames','SANDFORD-ON-THAMES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:44','1900-01-01 00:00:00',1,0,1),(24138,'26753','Sandgate','SANDGATE',NULL,'','Australia','',0,0,13,'2016-10-17 11:52:45','1900-01-01 00:00:00',1,0,1),(24139,'3989','Sandhamn','SANDHAMN',NULL,'','Finland','',0,0,75,'2016-10-17 11:52:45','1900-01-01 00:00:00',1,0,1),(24140,'28568','Sandia','SANDIA',NULL,'','United States','',0,0,231,'2016-10-17 11:52:45','1900-01-01 00:00:00',1,0,1),(24141,'8847','Sandiacre','SANDIACRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:46','1900-01-01 00:00:00',1,0,1),(24142,'21521','Sandisfield','SANDISFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:52:46','1900-01-01 00:00:00',1,0,1),(24143,'15032','Sandnes','SANDNES',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24144,'14928','Sandnessjoen','SANDNESSJOEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24145,'38219','Sandoeverken','SANDOEVERKEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24146,'8848','Sandown','SANDOWN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24147,'32601','Sandown','SANDOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24148,'20398','Sandpoint','SANDPOINT',NULL,'','United States','',0,0,231,'2016-10-17 11:52:47','1900-01-01 00:00:00',1,0,1),(24149,'12478','Sandrigo','SANDRIGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:52:48','1900-01-01 00:00:00',1,0,1),(24150,'26932','Sandringham','SANDRINGHAM',NULL,'','Australia','',0,0,13,'2016-10-17 11:52:48','1900-01-01 00:00:00',1,0,1),(24151,'15030','Sandsli','SANDSLI',NULL,'','Norway','',0,0,164,'2016-10-17 11:52:48','1900-01-01 00:00:00',1,0,1),(24152,'25534','Sandspit','SANDSPIT',NULL,'','Canada','',0,0,39,'2016-10-17 11:52:49','1900-01-01 00:00:00',1,0,1),(24153,'32602','Sandton','SANDTON',NULL,'','South Africa','',0,0,195,'2016-10-17 11:52:49','1900-01-01 00:00:00',1,0,1),(24154,'6823','Sandur','SANDUR',NULL,'','Faroe Islands','',0,0,73,'2016-10-17 11:52:49','1900-01-01 00:00:00',1,0,1),(24155,'29517','Sandusky','SANDUSKY',NULL,'','United States','',0,0,231,'2016-10-17 11:52:49','1900-01-01 00:00:00',1,0,1),(24156,'2166','Sandvig','SANDVIG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:52:51','1900-01-01 00:00:00',1,0,1),(24157,'16791','Sandviken','SANDVIKEN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:52:51','1900-01-01 00:00:00',1,0,1),(24158,'43187','Sandwell','SANDWELL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:51','1900-01-01 00:00:00',1,0,1),(24159,'21522','Sandwich','SANDWICH',NULL,'','United States','',0,0,231,'2016-10-17 11:52:51','1900-01-01 00:00:00',1,0,1),(24160,'8849','Sandwich','SANDWICH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:52','1900-01-01 00:00:00',1,0,1),(24161,'8850','Sandy','SANDY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:52:52','1900-01-01 00:00:00',1,0,1),(24162,'26866','Sandy Bay','SANDY BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24163,'13079','Sandy Bay','SANDY BAY',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24164,'25863','Sandy Ground','SANDY GROUND',NULL,'','Anguilla','',0,0,7,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24165,'34633','Sandy Lake','SANDY LAKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24166,'16949','Sandy Point','SANDY POINT',NULL,'','Turks And Caicos Islands','',0,0,221,'2016-10-17 11:52:53','1900-01-01 00:00:00',1,0,1),(24167,'21921','Sanford','SANFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:52:54','1900-01-01 00:00:00',1,0,1),(24168,'12479','Sangano','SANGANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:52:56','1900-01-01 00:00:00',1,0,1),(24169,'3688','Sangenjo','SANGENJO',NULL,'','Spain','',0,0,199,'2016-10-17 11:52:56','1900-01-01 00:00:00',1,0,1),(24170,'30916','Sanger','SANGER',NULL,'','United States','',0,0,231,'2016-10-17 11:52:56','1900-01-01 00:00:00',1,0,1),(24171,'37846','Sangerhausen','SANGERHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24172,'2409','Sangolqui','SANGOLQUI',NULL,'','Ecuador','',0,0,64,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24173,'37400','Sangudo','SANGUDO',NULL,'','Canada','',0,0,39,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24174,'36829','Sanhsia','SANHSIA',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24175,'23973','Sanhua','SANHUA',NULL,'','China','',0,0,46,'2016-10-17 11:52:57','1900-01-01 00:00:00',1,0,1),(24176,'19601','Sanibel','SANIBEL',NULL,'','United States','',0,0,231,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24177,'25808','Sanikiluaq','SANIKILUAQ',NULL,'','Canada','',0,0,39,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24178,'40544','Sanjo','SANJO',NULL,'','Japan','',0,0,110,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24179,'10591','Sankrail','SANKRAIL',NULL,'','India','',0,0,101,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24180,'39734','Sankt Andreasberg','SANKT ANDREASBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:52:58','1900-01-01 00:00:00',1,0,1),(24181,'24595','Sankt-vith','SANKT-VITH',NULL,'','Belgium','',0,0,21,'2016-10-17 11:53:02','1900-01-01 00:00:00',1,0,1),(24182,'17364','Sanliurfa','SANLIURFA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:02','1900-01-01 00:00:00',1,0,1),(24183,'35057','Sanlucar De Barramed','SANLUCAR DE BARRAMED',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:02','1900-01-01 00:00:00',1,0,1),(24184,'23797','Sanmenxia','SANMENXIA',NULL,'','China','',0,0,46,'2016-10-17 11:53:02','1900-01-01 00:00:00',1,0,1),(24185,'23778','Sanming','SANMING',NULL,'','China','',0,0,46,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24186,'14202','Sannat','SANNAT',NULL,'','Malta','',0,0,135,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24187,'40125','Sannicandro Di Bari','SANNICANDRO DI BARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24188,'39704','Sannicola','SANNICOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24189,'41283','Sannois','SANNOIS',NULL,'','France','',0,0,76,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24190,'4545','Sannois-ermont','SANNOIS-ERMONT',NULL,'','France','',0,0,76,'2016-10-17 11:53:03','1900-01-01 00:00:00',1,0,1),(24191,'8851','Sanquhar','SANQUHAR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:53:04','1900-01-01 00:00:00',1,0,1),(24192,'17022','Sansai','SANSAI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:53:04','1900-01-01 00:00:00',1,0,1),(24193,'12480','Sansepolcro','SANSEPOLCRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:04','1900-01-01 00:00:00',1,0,1),(24194,'17415','Sansia','SANSIA',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:53:04','1900-01-01 00:00:00',1,0,1),(24195,'25883','Sant Julia De Loria','SANT JULIA DE LORIA',NULL,'','Andorra','',0,0,5,'2016-10-17 11:53:07','1900-01-01 00:00:00',1,0,1),(24196,'15383','Santa','SANTA',NULL,'','Peru','',0,0,172,'2016-10-17 11:53:08','1900-01-01 00:00:00',1,0,1),(24197,'24948','Santa Ana','SANTA ANA',NULL,'','Bolivia','Santa Ana',0,0,26,'2016-10-17 11:53:08','1900-01-01 00:00:00',1,0,1),(24198,'16557','Santa Ana','SANTA ANA',NULL,'','Solomon Islands','Santa Ana',0,0,193,'2016-10-17 11:53:08','1900-01-01 00:00:00',1,0,1),(24199,'15475','Santa Ana','SANTA ANA',NULL,'','Philippines','Santa Ana',0,0,173,'2016-10-17 11:53:08','1900-01-01 00:00:00',1,0,1),(24200,'32181','Santa Barbara','SANTA BARBARA',NULL,'','Venezuela','',0,0,235,'2016-10-17 11:53:09','1900-01-01 00:00:00',1,0,1),(24201,'26058','Santa Catalina','SANTA CATALINA',NULL,'','Argentina','',0,0,10,'2016-10-17 11:53:10','1900-01-01 00:00:00',1,0,1),(24202,'41622','Santa Catarina','SANTA CATARINA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:53:10','1900-01-01 00:00:00',1,0,1),(24203,'42658','Santa Clara','SANTA CLARA',NULL,'','Panama','',0,0,169,'2016-10-17 11:53:11','1900-01-01 00:00:00',1,0,1),(24204,'39996','Santa Cruz','SANTA CRUZ',NULL,'','Aruba','',0,0,12,'2016-10-17 11:53:14','1900-01-01 00:00:00',1,0,1),(24205,'23491','Santa Cruz','SANTA CRUZ',NULL,'','Chile','',0,0,45,'2016-10-17 11:53:14','1900-01-01 00:00:00',1,0,1),(24206,'10468','Santa Cruz Domestic Airport (Bom)','SANTA CRUZ DOMESTIC AIRPORT (BOM)',NULL,'','India','',0,0,101,'2016-10-17 11:53:16','1900-01-01 00:00:00',1,0,1),(24207,'9876','Santa Elena','SANTA ELENA',NULL,'','Guatemala','',0,0,91,'2016-10-17 11:53:16','1900-01-01 00:00:00',1,0,1),(24208,'15766','Santa Isabel','SANTA ISABEL',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:53:18','1900-01-01 00:00:00',1,0,1),(24209,'2436','Santa Katarina','SANTA KATARINA',NULL,'','Egypt','',0,0,65,'2016-10-17 11:53:18','1900-01-01 00:00:00',1,0,1),(24210,'1085','Santa Lucia','SANTA LUCIA',NULL,'','Saint Lucia','',0,0,182,'2016-10-17 11:53:18','1900-01-01 00:00:00',1,0,1),(24211,'24147','Santa Maria','SANTA MARIA',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:53:19','1900-01-01 00:00:00',1,0,1),(24212,'24130','Santa Marta','SANTA MARTA',NULL,'','Colombia','',0,0,49,'2016-10-17 11:53:22','1900-01-01 00:00:00',1,0,1),(24213,'9959','Santa Rosa Copan','SANTA ROSA COPAN',NULL,'','Honduras','',0,0,97,'2016-10-17 11:53:25','1900-01-01 00:00:00',1,0,1),(24214,'41284','Santaella','SANTAELLA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:27','1900-01-01 00:00:00',1,0,1),(24215,'12493','Sant\'agata Di Militello','SANT\'AGATA DI MILITELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:27','1900-01-01 00:00:00',1,0,1),(24216,'12495','Sant\'agnello','SANT\'AGNELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24217,'12496','Sant\'alessio Siculo','SANT\'ALESSIO SICULO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24218,'37264','Santa-lucia-di-moriani','SANTA-LUCIA-DI-MORIANI',NULL,'','France','',0,0,76,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24219,'15961','Santana','SANTANA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24220,'39318','Santanatolia Di Narco','SANTANATOLIA DI NARCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24221,'3140','Santander','SANTANDER',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:28','1900-01-01 00:00:00',1,0,1),(24222,'35088','Santander-suances','SANTANDER-SUANCES',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:29','1900-01-01 00:00:00',1,0,1),(24223,'38044','Santandrea Apostolo Dello Ionio','SANTANDREA APOSTOLO DELLO IONIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:29','1900-01-01 00:00:00',1,0,1),(24224,'37779','Santandria','SANTANDRIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:29','1900-01-01 00:00:00',1,0,1),(24225,'38261','Santangelo A Fasanella','SANTANGELO A FASANELLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:29','1900-01-01 00:00:00',1,0,1),(24226,'12832','Sant\'anna Arresi','SANT\'ANNA ARRESI',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:30','1900-01-01 00:00:00',1,0,1),(24227,'38722','Santantimo','SANTANTIMO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:30','1900-01-01 00:00:00',1,0,1),(24228,'12833','Sant\'antioco','SANT\'ANTIOCO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:30','1900-01-01 00:00:00',1,0,1),(24229,'35648','Sant\'antonio Abate','SANT\'ANTONIO ABATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:30','1900-01-01 00:00:00',1,0,1),(24230,'2931','Santany','SANTANY',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24231,'41282','Santanyi','SANTANYI',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24232,'16050','Santarem','SANTAREM',NULL,'','Portugal','',0,0,175,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24233,'25105','Santarem','SANTAREM',NULL,'','Brazil','',0,0,30,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24234,'12497','Sante Marie','SANTE MARIE',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:31','1900-01-01 00:00:00',1,0,1),(24235,'18899','Santee','SANTEE',NULL,'','United States','',0,0,231,'2016-10-17 11:53:32','1900-01-01 00:00:00',1,0,1),(24236,'34002','Santeetlah','SANTEETLAH',NULL,'','United States','',0,0,231,'2016-10-17 11:53:33','1900-01-01 00:00:00',1,0,1),(24237,'12498','Sant\'elia Fiumerapido','SANT\'ELIA FIUMERAPIDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:33','1900-01-01 00:00:00',1,0,1),(24238,'5498','Santenay','SANTENAY',NULL,'','France','',0,0,76,'2016-10-17 11:53:33','1900-01-01 00:00:00',1,0,1),(24239,'37927','Santeramo In Colle','SANTERAMO IN COLLE',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24240,'12499','Sant\'eufemia Lamezia','SANT\'EUFEMIA LAMEZIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24241,'23555','Santiago','SANTIAGO',NULL,'','Chile','Santiago',0,0,45,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24242,'13941','Santiago','SANTIAGO',NULL,'','Mexico','Santiago',0,0,141,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24243,'2359','Santiago','SANTIAGO',NULL,'','Dominican Republic','Santiago',0,0,61,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24244,'15345','Santiago','SANTIAGO',NULL,'','Panama','Santiago',0,0,169,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24245,'2806','Santiago Bernabeu - Castellana','SANTIAGO BERNABEU - CASTELLANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24246,'1638','Santiago Cacem','SANTIAGO CACEM',NULL,'','Portugal','',0,0,175,'2016-10-17 11:53:34','1900-01-01 00:00:00',1,0,1),(24247,'34945','Santiago De Cuba','SANTIAGO DE CUBA',NULL,'','Cuba','',0,0,56,'2016-10-17 11:53:35','1900-01-01 00:00:00',1,0,1),(24248,'26149','Santiago Del Estero','SANTIAGO DEL ESTERO',NULL,'','Argentina','',0,0,10,'2016-10-17 11:53:35','1900-01-01 00:00:00',1,0,1),(24249,'36137','Santiago-la Estrada','SANTIAGO-LA ESTRADA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:36','1900-01-01 00:00:00',1,0,1),(24250,'12500','Sant\'ilario D\'enza','SANT\'ILARIO D\'ENZA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:36','1900-01-01 00:00:00',1,0,1),(24251,'3141','Santillana','SANTILLANA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:36','1900-01-01 00:00:00',1,0,1),(24252,'5499','Santilly','SANTILLY',NULL,'','France','',0,0,76,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24253,'12501','Santissima Annunziata','SANTISSIMA ANNUNZIATA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24254,'24148','Santo Antao','SANTO ANTAO',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24255,'24191','Santo Domingo','SANTO DOMINGO',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24256,'2360','Santo Domingo','SANTO DOMINGO',NULL,'','Dominican Republic','',0,0,61,'2016-10-17 11:53:37','1900-01-01 00:00:00',1,0,1),(24257,'37089','Santo-aore Island','SANTO-AORE ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:53:39','1900-01-01 00:00:00',1,0,1),(24258,'37091','Santo-bokissa Island','SANTO-BOKISSA ISLAND',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:53:39','1900-01-01 00:00:00',1,0,1),(24259,'38454','Santomobono Imagna','SANTOMOBONO IMAGNA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24260,'7289','Santon','SANTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24261,'35053','Santona','SANTONA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24262,'12505','Sant\'onofrio','SANT\'ONOFRIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24263,'37556','Santorcaz','SANTORCAZ',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24264,'40947','Santorini','SANTORINI',NULL,'','Greece','Santorini',0,0,86,'2016-10-17 11:53:40','1900-01-01 00:00:00',1,0,1),(24265,'36367','Santorini-akrotiri','SANTORINI-AKROTIRI',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24266,'35291','Santorini-fira Town','SANTORINI-FIRA TOWN',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24267,'35237','Santorini-imerovigli','SANTORINI-IMEROVIGLI',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24268,'35247','Santorini-kamari','SANTORINI-KAMARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24269,'35265','Santorini-monolithos','SANTORINI-MONOLITHOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24270,'35273','Santorini-oia','SANTORINI-OIA',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24271,'35283','Santorini-perissa','SANTORINI-PERISSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24272,'35285','Santorini-perivoloes','SANTORINI-PERIVOLOES',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:41','1900-01-01 00:00:00',1,0,1),(24273,'14655','Santpoort-noord','SANTPOORT-NOORD',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24274,'10857','Santry','SANTRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24275,'15767','Santurce','SANTURCE',NULL,'','Puerto Rico','',0,0,176,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24276,'2810','Santurtzi','SANTURTZI',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24277,'10276','Sanur','SANUR',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24278,'41276','Sanxenxo','SANXENXO',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:42','1900-01-01 00:00:00',1,0,1),(24279,'41158','Sao Felipe','SAO FELIPE',NULL,'','Cape Verde','',0,0,41,'2016-10-17 11:53:43','1900-01-01 00:00:00',1,0,1),(24280,'40341','São Pedro Do Sul','SÃO PEDRO DO SUL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:53:44','1900-01-01 00:00:00',1,0,1),(24281,'16583','Sao Tome Island','SAO TOME ISLAND',NULL,'','Sao Tome And Principe','',0,0,185,'2016-10-17 11:53:44','1900-01-01 00:00:00',1,0,1),(24282,'4546','Saone-et-loire','SAONE-ET-LOIRE',NULL,'','France','',0,0,76,'2016-10-17 11:53:45','1900-01-01 00:00:00',1,0,1),(24283,'32270','Sapa','SAPA',NULL,'','Viet Nam','',0,0,236,'2016-10-17 11:53:45','1900-01-01 00:00:00',1,0,1),(24284,'17277','Sapanca','SAPANCA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:45','1900-01-01 00:00:00',1,0,1),(24285,'28574','Sapello','SAPELLO',NULL,'','United States','',0,0,231,'2016-10-17 11:53:45','1900-01-01 00:00:00',1,0,1),(24286,'19915','Sapelo Island','SAPELO ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:53:46','1900-01-01 00:00:00',1,0,1),(24287,'35646','Sappada','SAPPADA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:46','1900-01-01 00:00:00',1,0,1),(24288,'34003','Sapphire','SAPPHIRE',NULL,'','United States','',0,0,231,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24289,'34309','Sapphire Coast','SAPPHIRE COAST',NULL,'','Australia','',0,0,13,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24290,'13391','Sapporo','SAPPORO',NULL,'','Japan','',0,0,110,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24291,'35707','Sapporo-chitose','SAPPORO-CHITOSE',NULL,'','Japan','',0,0,110,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24292,'35718','Sapporo-jozankei','SAPPORO-JOZANKEI',NULL,'','Japan','',0,0,110,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24293,'12712','Sapri','SAPRI',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:47','1900-01-01 00:00:00',1,0,1),(24294,'32956','Sapulpa','SAPULPA',NULL,'','United States','',0,0,231,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24295,'44459','Saputara','SAPUTARA',NULL,'','India','',0,0,101,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24296,'37338','Saquarema','SAQUAREMA',NULL,'','Brazil','',0,0,30,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24297,'32324','Sara','SARA',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24298,'43074','Saraburi','SARABURI',NULL,'','Thailand','',0,0,215,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24299,'24893','Sarajevo','SARAJEVO',NULL,'','Bosnia And Herzegovinia','',0,0,27,'2016-10-17 11:53:48','1900-01-01 00:00:00',1,0,1),(24300,'17947','Saraland','SARALAND',NULL,'','United States','',0,0,231,'2016-10-17 11:53:49','1900-01-01 00:00:00',1,0,1),(24301,'29102','Saranac Lake','SARANAC LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24302,'43561','Saranda','SARANDA',NULL,'','Albania','',0,0,2,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24303,'25869','Sarande','SARANDE',NULL,'','Albania','',0,0,2,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24304,'16249','Saransk','SARANSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24305,'44284','Saraotou','SARAOTOU',NULL,'','Vanuatu','',0,0,233,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24306,'24228','Sarapiqui','SARAPIQUI',NULL,'','Costa Rica','',0,0,54,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24307,'19603','Sarasota','SARASOTA',NULL,'','United States','',0,0,231,'2016-10-17 11:53:50','1900-01-01 00:00:00',1,0,1),(24308,'32132','Saratoga','SARATOGA',NULL,'','United States','',0,0,231,'2016-10-17 11:53:51','1900-01-01 00:00:00',1,0,1),(24309,'16449','Saratov','SARATOV',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:53:53','1900-01-01 00:00:00',1,0,1),(24310,'13543','Saravan','SARAVAN',NULL,'','Laos','',0,0,118,'2016-10-17 11:53:53','1900-01-01 00:00:00',1,0,1),(24311,'12506','Sarcedo','SARCEDO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:53','1900-01-01 00:00:00',1,0,1),(24312,'4802','Sarcelles','SARCELLES',NULL,'','France','',0,0,76,'2016-10-17 11:53:53','1900-01-01 00:00:00',1,0,1),(24313,'39685','Sardar Samand','SARDAR SAMAND',NULL,'','India','',0,0,101,'2016-10-17 11:53:54','1900-01-01 00:00:00',1,0,1),(24314,'12834','Sardara','SARDARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:54','1900-01-01 00:00:00',1,0,1),(24315,'42584','Sardargarh','SARDARGARH',NULL,'','India','',0,0,101,'2016-10-17 11:53:54','1900-01-01 00:00:00',1,0,1),(24317,'43311','Sardinia-bosa','SARDINIA-BOSA',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:55','1900-01-01 00:00:00',1,0,1),(24318,'27912','Sardis','SARDIS',NULL,'','United States','',0,0,231,'2016-10-17 11:53:55','1900-01-01 00:00:00',1,0,1),(24319,'5262','Sare','SARE',NULL,'','France','',0,0,76,'2016-10-17 11:53:55','1900-01-01 00:00:00',1,0,1),(24320,'10592','Sarenga','SARENGA',NULL,'','India','',0,0,101,'2016-10-17 11:53:55','1900-01-01 00:00:00',1,0,1),(24321,'2811','S\'argamassa','S\'ARGAMASSA',NULL,'','Spain','',0,0,199,'2016-10-17 11:53:56','1900-01-01 00:00:00',1,0,1),(24322,'33535','Sargents','SARGENTS',NULL,'','United States','',0,0,231,'2016-10-17 11:53:56','1900-01-01 00:00:00',1,0,1),(24323,'21922','Sargentville','SARGENTVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24324,'15327','Sargodha','SARGODHA',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24325,'17224','Sarigerme','SARIGERME',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24326,'44317','Sarikamis','SARIKAMIS',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24327,'26431','Sarina','SARINA',NULL,'','Australia','',0,0,13,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24328,'42582','Sariska National Park','SARISKA NATIONAL PARK',NULL,'','India','',0,0,101,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24329,'7290','Sark','SARK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24330,'40619','Sarkisla','SARKISLA',NULL,'','Turkey','',0,0,222,'2016-10-17 11:53:57','1900-01-01 00:00:00',1,0,1),(24331,'4905','Sarlat-la-caneda','SARLAT-LA-CANEDA',NULL,'','France','',0,0,76,'2016-10-17 11:53:58','1900-01-01 00:00:00',1,0,1),(24332,'10318','Sarmi','SARMI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:53:58','1900-01-01 00:00:00',1,0,1),(24333,'12507','Sarnano','SARNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:58','1900-01-01 00:00:00',1,0,1),(24334,'34634','Sarnia','SARNIA',NULL,'','Canada','',0,0,39,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24335,'13056','Sarnonico','SARNONICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24336,'9592','Saronic Islands','SARONIC ISLANDS',NULL,'','Greece','',0,0,86,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24337,'12509','Saronno','SARONNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24338,'14963','Sarpsborg','SARPSBORG',NULL,'','Norway','',0,0,164,'2016-10-17 11:53:59','1900-01-01 00:00:00',1,0,1),(24339,'41905','Sarramea','SARRAMEA',NULL,'','New Caledonia','',0,0,156,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24340,'6133','Sarrazac','SARRAZAC',NULL,'','France','',0,0,76,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24341,'40701','Sarre','SARRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24342,'4547','Sarreguemines','SARREGUEMINES',NULL,'','France','',0,0,76,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24343,'2812','Sarria','SARRIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:00','1900-01-01 00:00:00',1,0,1),(24344,'2814','Sarrià De Ter','SARRIÀ DE TER',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24345,'2815','Sarria-sant Gervasi','SARRIA-SANT GERVASI',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24346,'10593','Sarsa','SARSA',NULL,'','India','',0,0,101,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24347,'27278','Sarstedt','SARSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24348,'35649','Sarteano','SARTEANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:01','1900-01-01 00:00:00',1,0,1),(24349,'27510','Sartell','SARTELL',NULL,'','United States','',0,0,231,'2016-10-17 11:54:02','1900-01-01 00:00:00',1,0,1),(24350,'39608','Sartene','SARTENE',NULL,'','France','',0,0,76,'2016-10-17 11:54:02','1900-01-01 00:00:00',1,0,1),(24351,'4803','Sartrouville','SARTROUVILLE',NULL,'','France','',0,0,76,'2016-10-17 11:54:03','1900-01-01 00:00:00',1,0,1),(24352,'10115','Sarvar','SARVAR',NULL,'','Hungary','',0,0,99,'2016-10-17 11:54:03','1900-01-01 00:00:00',1,0,1),(24353,'12510','Sarzana','SARZANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:03','1900-01-01 00:00:00',1,0,1),(24354,'5605','Sarzeau','SARZEAU',NULL,'','France','',0,0,76,'2016-10-17 11:54:03','1900-01-01 00:00:00',1,0,1),(24355,'18200','Sasabe','SASABE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24356,'10667','Sasan','SASAN',NULL,'','India','',0,0,101,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24357,'39500','Sasang','SASANG',NULL,'','Korea (Democratic Peoples Republic Of)','',0,0,115,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24358,'22631','Sasbachwalden','SASBACHWALDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24359,'13401','Sasebo','SASEBO',NULL,'','Japan','',0,0,110,'2016-10-17 11:54:04','1900-01-01 00:00:00',1,0,1),(24360,'22963','Saskatoon','SASKATOON',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24361,'43654','Sassafras','SASSAFRAS',NULL,'','Australia','',0,0,13,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24362,'12835','Sassari','SASSARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24363,'14732','Sassenheim','SASSENHEIM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24364,'5831','Sassetot-le-mauconduit','SASSETOT-LE-MAUCONDUIT',NULL,'','France','',0,0,76,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24365,'12511','Sassetta','SASSETTA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:05','1900-01-01 00:00:00',1,0,1),(24366,'22403','Sassnitz','SASSNITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:06','1900-01-01 00:00:00',1,0,1),(24367,'12513','Sassuolo','SASSUOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:06','1900-01-01 00:00:00',1,0,1),(24368,'3343','Sastago','SASTAGO',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:06','1900-01-01 00:00:00',1,0,1),(24369,'21129','Satanta','SATANTA',NULL,'','United States','',0,0,231,'2016-10-17 11:54:07','1900-01-01 00:00:00',1,0,1),(24370,'38480','Satara','SATARA',NULL,'','South Africa','Satara',0,0,195,'2016-10-17 11:54:07','1900-01-01 00:00:00',1,0,1),(24371,'19605','Satellite Beach','SATELLITE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:54:07','1900-01-01 00:00:00',1,0,1),(24372,'6714','Sathonay-village','SATHONAY-VILLAGE',NULL,'','France','',0,0,76,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24373,'23438','Satigny','SATIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24374,'6715','Satillieu','SATILLIEU',NULL,'','France','',0,0,76,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24375,'38702','Satna','SATNA',NULL,'','India','Satna',15,0,101,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24376,'6716','Satolas','SATOLAS',NULL,'','France','',0,0,76,'2016-10-17 11:54:08','1900-01-01 00:00:00',1,0,1),(24377,'38016','Satriano','SATRIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:09','1900-01-01 00:00:00',1,0,1),(24378,'39941','Satsuma','SATSUMA',NULL,'','United States','',0,0,231,'2016-10-17 11:54:09','1900-01-01 00:00:00',1,0,1),(24379,'42581','Sattal','SATTAL',NULL,'','India','',0,0,101,'2016-10-17 11:54:09','1900-01-01 00:00:00',1,0,1),(24380,'27143','Sattledt','SATTLEDT',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:09','1900-01-01 00:00:00',1,0,1),(24381,'16229','Satu Mare','SATU MARE',NULL,'','Romania','',0,0,179,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24382,'41702','Satun','SATUN',NULL,'','Thailand','',0,0,215,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24383,'12514','Saturnia','SATURNIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24384,'5264','Saubusse','SAUBUSSE',NULL,'','France','',0,0,76,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24385,'41931','Saucelle','SAUCELLE',NULL,'','Spain','',0,0,199,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24386,'14969','Sauda','SAUDA',NULL,'','Norway','',0,0,164,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24387,'10993','Saudarkrokur','SAUDARKROKUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:54:10','1900-01-01 00:00:00',1,0,1),(24388,'322','Sauerlach','SAUERLACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:11','1900-01-01 00:00:00',1,0,1),(24389,'22404','Sauerland','SAUERLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:11','1900-01-01 00:00:00',1,0,1),(24390,'22236','Saugatuck','SAUGATUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:54:11','1900-01-01 00:00:00',1,0,1),(24391,'29105','Saugerties','SAUGERTIES',NULL,'','United States','',0,0,231,'2016-10-17 11:54:12','1900-01-01 00:00:00',1,0,1),(24392,'21523','Saugus','SAUGUS',NULL,'','United States','',0,0,231,'2016-10-17 11:54:12','1900-01-01 00:00:00',1,0,1),(24393,'31878','Saukville','SAUKVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:14','1900-01-01 00:00:00',1,0,1),(24394,'6717','Saulce-sur-rhone','SAULCE-SUR-RHONE',NULL,'','France','',0,0,76,'2016-10-17 11:54:14','1900-01-01 00:00:00',1,0,1),(24395,'37466','Saulges','SAULGES',NULL,'','France','',0,0,76,'2016-10-17 11:54:15','1900-01-01 00:00:00',1,0,1),(24396,'5500','Saulieu','SAULIEU',NULL,'','France','',0,0,76,'2016-10-17 11:54:15','1900-01-01 00:00:00',1,0,1),(24397,'4549','Saulon La Rue','SAULON LA RUE',NULL,'','France','',0,0,76,'2016-10-17 11:54:15','1900-01-01 00:00:00',1,0,1),(24398,'44103','Saulon-la-rue','SAULON-LA-RUE',NULL,'','France','',0,0,76,'2016-10-17 11:54:16','1900-01-01 00:00:00',1,0,1),(24399,'40953','Sault Ste Marie','SAULT STE MARIE',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:16','1900-01-01 00:00:00',1,0,1),(24400,'22237','Sault Ste. Marie','SAULT STE. MARIE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:16','1900-01-01 00:00:00',1,0,1),(24401,'42975','Saulx Les Chartreux','SAULX LES CHARTREUX',NULL,'','France','',0,0,76,'2016-10-17 11:54:17','1900-01-01 00:00:00',1,0,1),(24402,'4804','Saulx-les-chartreux','SAULX-LES-CHARTREUX',NULL,'','France','',0,0,76,'2016-10-17 11:54:17','1900-01-01 00:00:00',1,0,1),(24403,'6532','Saumane-de-vaucluse','SAUMANE-DE-VAUCLUSE',NULL,'','France','',0,0,76,'2016-10-17 11:54:17','1900-01-01 00:00:00',1,0,1),(24404,'4988','Saumur','SAUMUR',NULL,'','France','',0,0,76,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24405,'8852','Saundersfoot','SAUNDERSFOOT',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24406,'7291','Saunton','SAUNTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24407,'15045','Sauraha','SAURAHA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24408,'38393','Saurbaer','SAURBAER',NULL,'','Iceland','',0,0,100,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24409,'25860','Saurimo','SAURIMO',NULL,'','Angola','',0,0,6,'2016-10-17 11:54:18','1900-01-01 00:00:00',1,0,1),(24410,'18901','Sausalito','SAUSALITO',NULL,'','United States','',0,0,231,'2016-10-17 11:54:19','1900-01-01 00:00:00',1,0,1),(24411,'6789','Sausheim','SAUSHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:54:19','1900-01-01 00:00:00',1,0,1),(24412,'39083','Sausset-les-pins','SAUSSET-LES-PINS',NULL,'','France','',0,0,76,'2016-10-17 11:54:19','1900-01-01 00:00:00',1,0,1),(24413,'39396','Sautee','SAUTEE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:20','1900-01-01 00:00:00',1,0,1),(24414,'39286','Sautens','SAUTENS',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:20','1900-01-01 00:00:00',1,0,1),(24415,'6273','Sautron','SAUTRON',NULL,'','France','',0,0,76,'2016-10-17 11:54:20','1900-01-01 00:00:00',1,0,1),(24416,'5265','Sauveterre','SAUVETERRE',NULL,'','France','',0,0,76,'2016-10-17 11:54:21','1900-01-01 00:00:00',1,0,1),(24417,'4551','Sauveterre-de-bearn','SAUVETERRE-DE-BEARN',NULL,'','France','',0,0,76,'2016-10-17 11:54:21','1900-01-01 00:00:00',1,0,1),(24418,'4552','Sauveterre-de-comminges','SAUVETERRE-DE-COMMINGES',NULL,'','France','',0,0,76,'2016-10-17 11:54:22','1900-01-01 00:00:00',1,0,1),(24419,'6134','Sauveterre-de-rouergue','SAUVETERRE-DE-ROUERGUE',NULL,'','France','',0,0,76,'2016-10-17 11:54:22','1900-01-01 00:00:00',1,0,1),(24420,'5501','Sauvigny-le-bois','SAUVIGNY-LE-BOIS',NULL,'','France','',0,0,76,'2016-10-17 11:54:22','1900-01-01 00:00:00',1,0,1),(24421,'41690','Sauze D Oulx','SAUZE D OULX',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:22','1900-01-01 00:00:00',1,0,1),(24422,'40208','Sauzon','SAUZON',NULL,'','France','',0,0,76,'2016-10-17 11:54:23','1900-01-01 00:00:00',1,0,1),(24423,'27513','Savage','SAVAGE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:23','1900-01-01 00:00:00',1,0,1),(24424,'25834','Savaneta','SAVANETA',NULL,'','Aruba','',0,0,12,'2016-10-17 11:54:24','1900-01-01 00:00:00',1,0,1),(24425,'13069','Savanna La Mar','SAVANNA LA MAR',NULL,'','Jamaica','',0,0,109,'2016-10-17 11:54:25','1900-01-01 00:00:00',1,0,1),(24426,'19916','Savannah','SAVANNAH',NULL,'','United States','',0,0,231,'2016-10-17 11:54:25','1900-01-01 00:00:00',1,0,1),(24427,'24877','Savannah Sound','SAVANNAH SOUND',NULL,'','Bahamas','',0,0,16,'2016-10-17 11:54:28','1900-01-01 00:00:00',1,0,1),(24428,'13550','Savannakhet','SAVANNAKHET',NULL,'','Laos','',0,0,118,'2016-10-17 11:54:28','1900-01-01 00:00:00',1,0,1),(24429,'38149','Savas','SAVAS',NULL,'','France','',0,0,76,'2016-10-17 11:54:28','1900-01-01 00:00:00',1,0,1),(24430,'13041','Savelletri','SAVELLETRI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:28','1900-01-01 00:00:00',1,0,1),(24431,'32133','Savery','SAVERY',NULL,'','United States','',0,0,231,'2016-10-17 11:54:29','1900-01-01 00:00:00',1,0,1),(24432,'12516','Savigliano','SAVIGLIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:29','1900-01-01 00:00:00',1,0,1),(24433,'5266','Savignac-les-eglises','SAVIGNAC-LES-EGLISES',NULL,'','France','',0,0,76,'2016-10-17 11:54:29','1900-01-01 00:00:00',1,0,1),(24434,'39842','Savignano Sul Rubicone','SAVIGNANO SUL RUBICONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:29','1900-01-01 00:00:00',1,0,1),(24435,'6718','Savigneux','SAVIGNEUX',NULL,'','France','',0,0,76,'2016-10-17 11:54:30','1900-01-01 00:00:00',1,0,1),(24436,'40499','Savignone','SAVIGNONE',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:30','1900-01-01 00:00:00',1,0,1),(24437,'23347','Savigny','SAVIGNY',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:30','1900-01-01 00:00:00',1,0,1),(24438,'4553','Savigny Sur Braye','SAVIGNY SUR BRAYE',NULL,'','France','',0,0,76,'2016-10-17 11:54:30','1900-01-01 00:00:00',1,0,1),(24439,'5872','Savigny-le-temple','SAVIGNY-LE-TEMPLE',NULL,'','France','',0,0,76,'2016-10-17 11:54:31','1900-01-01 00:00:00',1,0,1),(24440,'4805','Savigny-sur-orge','SAVIGNY-SUR-ORGE',NULL,'','France','',0,0,76,'2016-10-17 11:54:31','1900-01-01 00:00:00',1,0,1),(24441,'16559','Savo','SAVO',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:54:31','1900-01-01 00:00:00',1,0,1),(24442,'38668','Savoca','SAVOCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:32','1900-01-01 00:00:00',1,0,1),(24443,'23348','Savognin','SAVOGNIN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:32','1900-01-01 00:00:00',1,0,1),(24444,'25535','Savona','SAVONA',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:32','1900-01-01 00:00:00',1,0,1),(24445,'12781','Savona','SAVONA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:32','1900-01-01 00:00:00',1,0,1),(24446,'3942','Savonlinna','SAVONLINNA',NULL,'','Finland','',0,0,75,'2016-10-17 11:54:33','1900-01-01 00:00:00',1,0,1),(24447,'5688','Savonnieres','SAVONNIERES',NULL,'','France','',0,0,76,'2016-10-17 11:54:33','1900-01-01 00:00:00',1,0,1),(24448,'17763','Savoonga','SAVOONGA',NULL,'','United States','',0,0,231,'2016-10-17 11:54:33','1900-01-01 00:00:00',1,0,1),(24449,'33046','Savoy','SAVOY',NULL,'','United States','',0,0,231,'2016-10-17 11:54:34','1900-01-01 00:00:00',1,0,1),(24450,'16723','Savsjo','SAVSJO',NULL,'','Sweden','',0,0,209,'2016-10-17 11:54:34','1900-01-01 00:00:00',1,0,1),(24451,'10038','Savudrija','SAVUDRIJA',NULL,'','Croatia','',0,0,55,'2016-10-17 11:54:34','1900-01-01 00:00:00',1,0,1),(24452,'4072','Savusavu','SAVUSAVU',NULL,'','Fiji','',0,0,74,'2016-10-17 11:54:34','1900-01-01 00:00:00',1,0,1),(24453,'10594','Sawai Madhopur','SAWAI MADHOPUR',NULL,'','India','Sawai Madhopur',2,0,101,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24455,'8853','Sawbridgeworth','SAWBRIDGEWORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24456,'7292','Sawrey','SAWREY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24457,'34310','Sawtell','SAWTELL',NULL,'','Australia','',0,0,13,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24458,'8854','Sawtry','SAWTRY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:35','1900-01-01 00:00:00',1,0,1),(24459,'10261','Sawu','SAWU',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:54:36','1900-01-01 00:00:00',1,0,1),(24460,'22238','Sawyer','SAWYER',NULL,'','United States','',0,0,231,'2016-10-17 11:54:36','1900-01-01 00:00:00',1,0,1),(24461,'31387','Saxtons River','SAXTONS RIVER',NULL,'','United States','',0,0,231,'2016-10-17 11:54:37','1900-01-01 00:00:00',1,0,1),(24462,'13190','Sayama','SAYAMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:54:37','1900-01-01 00:00:00',1,0,1),(24463,'32958','Sayre','SAYRE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:37','1900-01-01 00:00:00',1,0,1),(24464,'14021','Sayula','SAYULA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:54:38','1900-01-01 00:00:00',1,0,1),(24465,'14053','Sayulita','SAYULITA',NULL,'','Mexico','',0,0,141,'2016-10-17 11:54:38','1900-01-01 00:00:00',1,0,1),(24466,'37109','Say\'un','SAY\'UN',NULL,'','Yemen','',0,0,240,'2016-10-17 11:54:38','1900-01-01 00:00:00',1,0,1),(24467,'37473','Saze','SAZE',NULL,'','France','',0,0,76,'2016-10-17 11:54:38','1900-01-01 00:00:00',1,0,1),(24468,'38553','Scafati','SCAFATI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:39','1900-01-01 00:00:00',1,0,1),(24469,'11442','Scala','SCALA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:39','1900-01-01 00:00:00',1,0,1),(24470,'12517','Scalea','SCALEA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:39','1900-01-01 00:00:00',1,0,1),(24471,'34004','Scaly Mountain','SCALY MOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:54:39','1900-01-01 00:00:00',1,0,1),(24472,'26867','Scamander','SCAMANDER',NULL,'','Australia','',0,0,13,'2016-10-17 11:54:40','1900-01-01 00:00:00',1,0,1),(24473,'17764','Scammon Bay','SCAMMON BAY',NULL,'','United States','',0,0,231,'2016-10-17 11:54:40','1900-01-01 00:00:00',1,0,1),(24474,'12965','Scandicci','SCANDICCI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:40','1900-01-01 00:00:00',1,0,1),(24475,'12518','Scansano','SCANSANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24476,'25626','Scanterbury','SCANTERBURY',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24477,'11443','Scanzano Jonico','SCANZANO JONICO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24478,'40168','Scanzorosciate','SCANZOROSCIATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24479,'34636','Scarborough','SCARBOROUGH',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24480,'9341','Scarborough','SCARBOROUGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:41','1900-01-01 00:00:00',1,0,1),(24481,'21923','Scarborough','SCARBOROUGH',NULL,'','United States','',0,0,231,'2016-10-17 11:54:42','1900-01-01 00:00:00',1,0,1),(24482,'17139','Scarborough','SCARBOROUGH',NULL,'','Trinidad And Tobago','',0,0,219,'2016-10-17 11:54:42','1900-01-01 00:00:00',1,0,1),(24483,'12519','Scario','SCARIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:42','1900-01-01 00:00:00',1,0,1),(24484,'7293','Scarista','SCARISTA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24485,'12520','Scarlino','SCARLINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24486,'37754','Scarmagno','SCARMAGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24487,'12521','Scarperia','SCARPERIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24488,'10794','Scarriff','SCARRIFF',NULL,'','Ireland','',0,0,105,'2016-10-17 11:54:43','1900-01-01 00:00:00',1,0,1),(24489,'29106','Scarsdale','SCARSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24490,'12522','Scauri','SCAURI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24491,'12952','Scena','SCENA',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24492,'38993','Scerni','SCERNI',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24493,'24644','Schaarbeek','SCHAARBEEK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:54:44','1900-01-01 00:00:00',1,0,1),(24494,'737','Schackendorf','SCHACKENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24495,'43768','Schaerding','SCHAERDING',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24496,'23349','Schaffhausen','SCHAFFHAUSEN',NULL,'','Switzerland','Schaffhausen',0,0,210,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24497,'14656','Schagen','SCHAGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24498,'22633','Schallstadt','SCHALLSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24499,'38211','S-chanf','S-CHANF',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24500,'23350','Schangnau','SCHANGNAU',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24501,'1849','Schaprode','SCHAPRODE',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:45','1900-01-01 00:00:00',1,0,1),(24502,'38096','Scharbeutz','SCHARBEUTZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:46','1900-01-01 00:00:00',1,0,1),(24503,'27144','Scharding','SCHARDING',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:46','1900-01-01 00:00:00',1,0,1),(24504,'37251','Scharnitz','SCHARNITZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:46','1900-01-01 00:00:00',1,0,1),(24505,'20746','Schaumburg','SCHAUMBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:54:46','1900-01-01 00:00:00',1,0,1),(24506,'24556','Scheffau Am Wilden Kaiser','SCHEFFAU AM WILDEN KAISER',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24507,'22891','Schefferville','SCHEFFERVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24508,'12523','Scheggino','SCHEGGINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24509,'44156','Scheibenberg','SCHEIBENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24510,'37188','Scheidegg','SCHEIDEGG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:47','1900-01-01 00:00:00',1,0,1),(24511,'1909','Schellerhau','SCHELLERHAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:48','1900-01-01 00:00:00',1,0,1),(24512,'738','Schellhorn','SCHELLHORN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:48','1900-01-01 00:00:00',1,0,1),(24513,'14657','Schellingwoude','SCHELLINGWOUDE',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:48','1900-01-01 00:00:00',1,0,1),(24514,'30154','Schellsburg','SCHELLSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:54:48','1900-01-01 00:00:00',1,0,1),(24515,'29107','Schenectady','SCHENECTADY',NULL,'','United States','',0,0,231,'2016-10-17 11:54:49','1900-01-01 00:00:00',1,0,1),(24516,'739','Schenefeld','SCHENEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:49','1900-01-01 00:00:00',1,0,1),(24517,'24645','Schepdaal','SCHEPDAAL',NULL,'','Belgium','',0,0,21,'2016-10-17 11:54:49','1900-01-01 00:00:00',1,0,1),(24518,'20980','Schererville','SCHERERVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:54:50','1900-01-01 00:00:00',1,0,1),(24519,'564','Schermbeck','SCHERMBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:50','1900-01-01 00:00:00',1,0,1),(24520,'30917','Schertz','SCHERTZ',NULL,'','United States','',0,0,231,'2016-10-17 11:54:50','1900-01-01 00:00:00',1,0,1),(24521,'22409','Schesslitz','SCHESSLITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24522,'41044','Scheveningen','SCHEVENINGEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24523,'14733','Schiedam','SCHIEDAM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24524,'565','Schieder-schwalenberg','SCHIEDER-SCHWALENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24525,'38697','Schiefling Am See','SCHIEFLING AM SEE',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24526,'1948','Schierke','SCHIERKE',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24527,'43899','Schiermonnikoog','SCHIERMONNIKOOG',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:51','1900-01-01 00:00:00',1,0,1),(24528,'13026','Schignano','SCHIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:52','1900-01-01 00:00:00',1,0,1),(24529,'39445','Schildow','SCHILDOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:52','1900-01-01 00:00:00',1,0,1),(24530,'20748','Schiller Park','SCHILLER PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:54:52','1900-01-01 00:00:00',1,0,1),(24531,'27279','Schillig','SCHILLIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:52','1900-01-01 00:00:00',1,0,1),(24532,'323','Schillingsfurst','SCHILLINGSFURST',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24533,'6790','Schiltigheim','SCHILTIGHEIM',NULL,'','France','',0,0,76,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24534,'40584','Schindellegi','SCHINDELLEGI',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24535,'35558','Schio','SCHIO',NULL,'','Italy','',0,0,107,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24536,'14658','Schiphol','SCHIPHOL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:54:53','1900-01-01 00:00:00',1,0,1),(24537,'6791','Schirmeck','SCHIRMECK',NULL,'','France','',0,0,76,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24538,'1910','Schkeuditz','SCHKEUDITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24539,'1949','Schkopau','SCHKOPAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24540,'476','Schlangenbad','SCHLANGENBAD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24541,'23351','Schlatt','SCHLATT',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:54','1900-01-01 00:00:00',1,0,1),(24542,'37677','Schleching','SCHLECHING',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24543,'566','Schleiden','SCHLEIDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24544,'40218','Schlemmin','SCHLEMMIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24545,'23352','Schlieren','SCHLIEREN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24546,'324','Schliersee','SCHLIERSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:55','1900-01-01 00:00:00',1,0,1),(24547,'39982','Schlossbockelheim','SCHLOSSBOCKELHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24548,'22634','Schluchsee','SCHLUCHSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24549,'22410','Schluechtern','SCHLUECHTERN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24550,'42442','Schluesselfeld','SCHLUESSELFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24551,'325','Schlusselfeld','SCHLUSSELFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24552,'1983','Schmalkalden','SCHMALKALDEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:56','1900-01-01 00:00:00',1,0,1),(24553,'567','Schmallenberg','SCHMALLENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24554,'803','Schmargendorf','SCHMARGENDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24555,'2012','Schmockwitz','SCHMOCKWITZ',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24556,'22411','Schmoelln','SCHMOELLN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24557,'40093','Schnaittach','SCHNAITTACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:57','1900-01-01 00:00:00',1,0,1),(24558,'326','Schneeberg','SCHNEEBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24559,'327','Schneizlreuth','SCHNEIZLREUTH',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24560,'36093','Schnelldorf','SCHNELLDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24561,'22635','Schnetzenhausen','SCHNETZENHAUSEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24562,'27280','Schneverdingen','SCHNEVERDINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24563,'14243','Schoelcher','SCHOELCHER',NULL,'','Martinique','',0,0,137,'2016-10-17 11:54:58','1900-01-01 00:00:00',1,0,1),(24564,'43264','Schoenberg','SCHOENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24565,'38332','Schoenberg Am Kamp','SCHOENBERG AM KAMP',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24566,'40775','Schoenberg-lachtal','SCHOENBERG-LACHTAL',NULL,'','Austria','',0,0,14,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24567,'39887','Schoenebeck','SCHOENEBECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24568,'41014','Schoenefeld','SCHOENEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24569,'23082','Schoenengrund','SCHOENENGRUND',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24570,'22412','Schoenwald','SCHOENWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:54:59','1900-01-01 00:00:00',1,0,1),(24571,'31879','Schofield','SCHOFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:55:00','1900-01-01 00:00:00',1,0,1),(24572,'29108','Schoharie','SCHOHARIE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:00','1900-01-01 00:00:00',1,0,1),(24573,'42481','Schoinoussa','SCHOINOUSSA',NULL,'','Greece','',0,0,86,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24574,'22636','Schomberg','SCHOMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24575,'22637','Schonach','SCHONACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24576,'328','Schonau Am Konigssee','SCHONAU AM KONIGSSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24577,'22470','Schonberg','SCHONBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:01','1900-01-01 00:00:00',1,0,1),(24578,'22413','Schöneck','SCHÖNECK',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24579,'804','Schonefeld','SCHONEFELD',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24580,'23353','Schonenwerd','SCHONENWERD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24581,'805','Schonewalde','SCHONEWALDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24582,'806','Schonheide','SCHONHEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24583,'2057','Schönmünzach','SCHÖNMÜNZACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:02','1900-01-01 00:00:00',1,0,1),(24584,'36','Schonried','SCHONRIED',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24585,'41626','Schonwald','SCHONWALD',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24586,'40762','Schoonlo','SCHOONLO',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24587,'14659','Schoorl','SCHOORL',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24588,'24527','Schoppernau','SCHOPPERNAU',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24589,'2088','Schöppingen','SCHÖPPINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24590,'1911','Schopsdorf','SCHOPSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:03','1900-01-01 00:00:00',1,0,1),(24591,'1850','Schorssow','SCHORSSOW',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24592,'39125','Schortens','SCHORTENS',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24593,'41619','Schotten','SCHOTTEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24594,'22638','Schramberg','SCHRAMBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24595,'21257','Schriever','SCHRIEVER',NULL,'','United States','',0,0,231,'2016-10-17 11:55:04','1900-01-01 00:00:00',1,0,1),(24596,'27026','Schroecken','SCHROECKEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:05','1900-01-01 00:00:00',1,0,1),(24597,'27514','Schroeder','SCHROEDER',NULL,'','United States','',0,0,231,'2016-10-17 11:55:05','1900-01-01 00:00:00',1,0,1),(24598,'29109','Schroon Lake','SCHROON LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:06','1900-01-01 00:00:00',1,0,1),(24599,'24528','Schruns','SCHRUNS',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:06','1900-01-01 00:00:00',1,0,1),(24600,'14700','Schuddebeurs','SCHUDDEBEURS',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:55:06','1900-01-01 00:00:00',1,0,1),(24601,'39207','Schuettorf','SCHUETTORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:06','1900-01-01 00:00:00',1,0,1),(24602,'30918','Schulenburg','SCHULENBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:55:07','1900-01-01 00:00:00',1,0,1),(24603,'23354','Schupfen','SCHUPFEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:07','1900-01-01 00:00:00',1,0,1),(24604,'37773','Schuttrange','SCHUTTRANGE',NULL,'','Luxembourg','',0,0,127,'2016-10-17 11:55:07','1900-01-01 00:00:00',1,0,1),(24605,'28162','Schuyler','SCHUYLER',NULL,'','United States','',0,0,231,'2016-10-17 11:55:07','1900-01-01 00:00:00',1,0,1),(24606,'329','Schwabach','SCHWABACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24607,'22639','Schwabisch Gmund','SCHWABISCH GMUND',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24608,'42441','Schwaebisch Hall','SCHWAEBISCH HALL',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24609,'330','Schwaig','SCHWAIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24610,'331','Schwaig-oberding','SCHWAIG-OBERDING',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:08','1900-01-01 00:00:00',1,0,1),(24611,'23083','Schwamendingen','SCHWAMENDINGEN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:09','1900-01-01 00:00:00',1,0,1),(24612,'22641','Schwanheim','SCHWANHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:09','1900-01-01 00:00:00',1,0,1),(24613,'27281','Schwarmstedt','SCHWARMSTEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:09','1900-01-01 00:00:00',1,0,1),(24614,'38427','Schwartbuck','SCHWARTBUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:09','1900-01-01 00:00:00',1,0,1),(24615,'27027','Schwarzenberg','SCHWARZENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24616,'22642','Schwarzenberg','SCHWARZENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24617,'333','Schwarzenbruck','SCHWARZENBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24618,'23355','Schwarzenburg','SCHWARZENBURG',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24619,'807','Schwarzheide','SCHWARZHEIDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24620,'1984','Schwarzmuhle','SCHWARZMUHLE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:10','1900-01-01 00:00:00',1,0,1),(24621,'27116','Schwechat','SCHWECHAT',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24622,'660','Schwedelbach','SCHWEDELBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24623,'808','Schwedt','SCHWEDT',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24624,'23356','Schwefelbergbad','SCHWEFELBERGBAD',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24625,'334','Schweinfurt','SCHWEINFURT',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24626,'335','Schweitenkirchen','SCHWEITENKIRCHEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:11','1900-01-01 00:00:00',1,0,1),(24627,'20400','Schweitzer Mountain','SCHWEITZER MOUNTAIN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24628,'38950','Schwendt','SCHWENDT',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24629,'1851','Schwerin','SCHWERIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24630,'22643','Schwetzingen','SCHWETZINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24631,'22644','Schwieberdingen','SCHWIEBERDINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:12','1900-01-01 00:00:00',1,0,1),(24632,'1950','Schwielowsee','SCHWIELOWSEE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24633,'23357','Schwyz','SCHWYZ',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24634,'12850','Sciacca','SCIACCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24635,'12524','Scicli','SCICLI',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24636,'6719','Sciez','SCIEZ',NULL,'','France','',0,0,76,'2016-10-17 11:55:13','1900-01-01 00:00:00',1,0,1),(24637,'40489','Scilla','SCILLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:14','1900-01-01 00:00:00',1,0,1),(24638,'29519','Scio','SCIO',NULL,'','United States','',0,0,231,'2016-10-17 11:55:14','1900-01-01 00:00:00',1,0,1),(24639,'6720','Scionzier','SCIONZIER',NULL,'','France','',0,0,76,'2016-10-17 11:55:14','1900-01-01 00:00:00',1,0,1),(24640,'33399','Scipio','SCIPIO',NULL,'','United States','',0,0,231,'2016-10-17 11:55:15','1900-01-01 00:00:00',1,0,1),(24641,'21524','Scituate','SCITUATE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:15','1900-01-01 00:00:00',1,0,1),(24642,'12525','Scoglitti','SCOGLITTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24643,'8855','Scole','SCOLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24644,'7294','Scone','SCONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24645,'34311','Scone','SCONE',NULL,'','Australia','',0,0,13,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24646,'12526','Scopello','SCOPELLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:16','1900-01-01 00:00:00',1,0,1),(24647,'8856','Scorton','SCORTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:17','1900-01-01 00:00:00',1,0,1),(24648,'12920','Scorze','SCORZE',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:17','1900-01-01 00:00:00',1,0,1),(24649,'9271','Scotch Corner','SCOTCH CORNER',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:17','1900-01-01 00:00:00',1,0,1),(24650,'8857','Scotforth','SCOTFORTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:17','1900-01-01 00:00:00',1,0,1),(24651,'21786','Scotland','SCOTLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:55:18','1900-01-01 00:00:00',1,0,1),(24652,'30156','Scotrun','SCOTRUN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:19','1900-01-01 00:00:00',1,0,1),(24653,'19920','Scottdale','SCOTTDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:20','1900-01-01 00:00:00',1,0,1),(24654,'7295','Scottish Borders','SCOTTISH BORDERS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:21','1900-01-01 00:00:00',1,0,1),(24655,'18902','Scotts Valley','SCOTTS VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:55:21','1900-01-01 00:00:00',1,0,1),(24656,'28163','Scottsbluff','SCOTTSBLUFF',NULL,'','United States','',0,0,231,'2016-10-17 11:55:22','1900-01-01 00:00:00',1,0,1),(24657,'17948','Scottsboro','SCOTTSBORO',NULL,'','United States','',0,0,231,'2016-10-17 11:55:23','1900-01-01 00:00:00',1,0,1),(24658,'20981','Scottsburg','SCOTTSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:55:24','1900-01-01 00:00:00',1,0,1),(24659,'18201','Scottsdale','SCOTTSDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:24','1900-01-01 00:00:00',1,0,1),(24660,'31226','Scottsville','SCOTTSVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:25','1900-01-01 00:00:00',1,0,1),(24661,'30157','Scranton','SCRANTON',NULL,'','United States','',0,0,231,'2016-10-17 11:55:26','1900-01-01 00:00:00',1,0,1),(24662,'12753','Scritto','SCRITTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:26','1900-01-01 00:00:00',1,0,1),(24663,'8858','Scunthorpe','SCUNTHORPE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:27','1900-01-01 00:00:00',1,0,1),(24664,'23358','Scuol','SCUOL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:27','1900-01-01 00:00:00',1,0,1),(24665,'31611','Seabeck','SEABECK',NULL,'','United States','',0,0,231,'2016-10-17 11:55:29','1900-01-01 00:00:00',1,0,1),(24666,'30919','Seabrook','SEABROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:55:29','1900-01-01 00:00:00',1,0,1),(24667,'32763','Seabrook, Town Of','SEABROOK, TOWN OF',NULL,'','United States','',0,0,231,'2016-10-17 11:55:31','1900-01-01 00:00:00',1,0,1),(24668,'8859','Seaford','SEAFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:32','1900-01-01 00:00:00',1,0,1),(24669,'19237','Seaford','SEAFORD',NULL,'','United States','',0,0,231,'2016-10-17 11:55:32','1900-01-01 00:00:00',1,0,1),(24670,'30920','Seagoville','SEAGOVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:32','1900-01-01 00:00:00',1,0,1),(24671,'19606','Seagrove Beach','SEAGROVE BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:55:33','1900-01-01 00:00:00',1,0,1),(24672,'9244','Seaham','SEAHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:33','1900-01-01 00:00:00',1,0,1),(24673,'9248','Seahouses','SEAHOUSES',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:33','1900-01-01 00:00:00',1,0,1),(24674,'18904','Seal Beach','SEAL BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:55:34','1900-01-01 00:00:00',1,0,1),(24675,'8860','Seale','SEALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:35','1900-01-01 00:00:00',1,0,1),(24676,'34006','Sealevel','SEALEVEL',NULL,'','United States','',0,0,231,'2016-10-17 11:55:35','1900-01-01 00:00:00',1,0,1),(24677,'30921','Sealy','SEALY',NULL,'','United States','',0,0,231,'2016-10-17 11:55:36','1900-01-01 00:00:00',1,0,1),(24678,'29520','Seaman','SEAMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:36','1900-01-01 00:00:00',1,0,1),(24679,'18076','Searcy','SEARCY',NULL,'','United States','',0,0,231,'2016-10-17 11:55:37','1900-01-01 00:00:00',1,0,1),(24680,'21925','Searsport','SEARSPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:55:37','1900-01-01 00:00:00',1,0,1),(24681,'8861','Seascale','SEASCALE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:37','1900-01-01 00:00:00',1,0,1),(24682,'19607','Seaside','SEASIDE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:38','1900-01-01 00:00:00',1,0,1),(24683,'31612','Seatac','SEATAC',NULL,'','United States','',0,0,231,'2016-10-17 11:55:40','1900-01-01 00:00:00',1,0,1),(24684,'8862','Seaton','SEATON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:41','1900-01-01 00:00:00',1,0,1),(24685,'31615','Seattle-tacoma International Airport (Sea)','SEATTLE-TACOMA INTERNATIONAL AIRPORT (SEA)',NULL,'','United States','',0,0,231,'2016-10-17 11:55:42','1900-01-01 00:00:00',1,0,1),(24686,'31616','Seaview','SEAVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:55:42','1900-01-01 00:00:00',1,0,1),(24687,'8864','Seaview','SEAVIEW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:43','1900-01-01 00:00:00',1,0,1),(24688,'21926','Sebasco Estates','SEBASCO ESTATES',NULL,'','United States','',0,0,231,'2016-10-17 11:55:43','1900-01-01 00:00:00',1,0,1),(24689,'19608','Sebastian','SEBASTIAN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:44','1900-01-01 00:00:00',1,0,1),(24690,'26933','Sebastopol','SEBASTOPOL',NULL,'','Australia','',0,0,13,'2016-10-17 11:55:44','1900-01-01 00:00:00',1,0,1),(24691,'18906','Sebastopol','SEBASTOPOL',NULL,'','United States','',0,0,231,'2016-10-17 11:55:44','1900-01-01 00:00:00',1,0,1),(24692,'14327','Seberang Jaya','SEBERANG JAYA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:55:45','1900-01-01 00:00:00',1,0,1),(24693,'24439','Sebersdorf','SEBERSDORF',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:45','1900-01-01 00:00:00',1,0,1),(24694,'13566','Sebha','SEBHA',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:55:45','1900-01-01 00:00:00',1,0,1),(24695,'19609','Sebring','SEBRING',NULL,'','United States','',0,0,231,'2016-10-17 11:55:45','1900-01-01 00:00:00',1,0,1),(24696,'28414','Secaucus','SECAUCUS',NULL,'','United States','',0,0,231,'2016-10-17 11:55:46','1900-01-01 00:00:00',1,0,1),(24697,'25536','Sechelt','SECHELT',NULL,'','Canada','',0,0,39,'2016-10-17 11:55:46','1900-01-01 00:00:00',1,0,1),(24698,'478','Seckbach','SECKBACH',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:46','1900-01-01 00:00:00',1,0,1),(24699,'5008','Seclin','SECLIN',NULL,'','France','',0,0,76,'2016-10-17 11:55:46','1900-01-01 00:00:00',1,0,1),(24700,'34814','Second Valley','SECOND VALLEY',NULL,'','Australia','',0,0,13,'2016-10-17 11:55:47','1900-01-01 00:00:00',1,0,1),(24701,'32603','Secunda','SECUNDA',NULL,'','South Africa','',0,0,195,'2016-10-17 11:55:47','1900-01-01 00:00:00',1,0,1),(24702,'10595','Secunderabad','SECUNDERABAD',NULL,'','India','',0,0,101,'2016-10-17 11:55:47','1900-01-01 00:00:00',1,0,1),(24703,'33536','Sedalia','SEDALIA',NULL,'','United States','',0,0,231,'2016-10-17 11:55:47','1900-01-01 00:00:00',1,0,1),(24704,'4854','Sedan','SEDAN',NULL,'','France','',0,0,76,'2016-10-17 11:55:48','1900-01-01 00:00:00',1,0,1),(24705,'8865','Sedbergh','SEDBERGH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:48','1900-01-01 00:00:00',1,0,1),(24706,'41089','Sedberhg','SEDBERHG',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:48','1900-01-01 00:00:00',1,0,1),(24707,'34007','Sedgefield','SEDGEFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:55:49','1900-01-01 00:00:00',1,0,1),(24708,'8866','Sedgefield','SEDGEFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:55:49','1900-01-01 00:00:00',1,0,1),(24709,'11061','Sedom','SEDOM',NULL,'','Israel','',0,0,106,'2016-10-17 11:55:49','1900-01-01 00:00:00',1,0,1),(24710,'18202','Sedona','SEDONA',NULL,'','United States','',0,0,231,'2016-10-17 11:55:50','1900-01-01 00:00:00',1,0,1),(24711,'31617','Sedro Woolley','SEDRO WOOLLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:55:51','1900-01-01 00:00:00',1,0,1),(24712,'23359','Sedrun','SEDRUN',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:51','1900-01-01 00:00:00',1,0,1),(24713,'15287','Seeb','SEEB',NULL,'','Oman','',0,0,165,'2016-10-17 11:55:51','1900-01-01 00:00:00',1,0,1),(24714,'23360','Seebach','SEEBACH',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:55:51','1900-01-01 00:00:00',1,0,1),(24715,'25354','Seebe','SEEBE',NULL,'','Canada','',0,0,39,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24716,'27089','Seeboden','SEEBODEN',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24717,'38250','Seebruck','SEEBRUCK',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24718,'42190','Seeduwa','SEEDUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24719,'24399','Seeham','SEEHAM',NULL,'','Austria','',0,0,14,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24720,'14415','Seeheim','SEEHEIM',NULL,'','Namibia','',0,0,151,'2016-10-17 11:55:52','1900-01-01 00:00:00',1,0,1),(24721,'21525','Seekonk','SEEKONK',NULL,'','United States','',0,0,231,'2016-10-17 11:55:53','1900-01-01 00:00:00',1,0,1),(24722,'28018','Seeley Lake','SEELEY LAKE',NULL,'','United States','',0,0,231,'2016-10-17 11:55:53','1900-01-01 00:00:00',1,0,1),(24723,'13595','Seeluwa','SEELUWA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:55:53','1900-01-01 00:00:00',1,0,1),(24724,'27282','Seesen','SEESEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:54','1900-01-01 00:00:00',1,0,1),(24725,'6721','Seez','SEEZ',NULL,'','France','',0,0,76,'2016-10-17 11:55:54','1900-01-01 00:00:00',1,0,1),(24726,'17191','Seferihisar','SEFERIHISAR',NULL,'','Turkey','',0,0,222,'2016-10-17 11:55:54','1900-01-01 00:00:00',1,0,1),(24727,'19610','Seffner','SEFFNER',NULL,'','United States','',0,0,231,'2016-10-17 11:55:54','1900-01-01 00:00:00',1,0,1),(24728,'38465','Segalaherang','SEGALAHERANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24729,'16560','Sege','SEGE',NULL,'','Solomon Islands','',0,0,193,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24730,'11444','Segonzano','SEGONZANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24731,'38922','Segorbe','SEGORBE',NULL,'','Spain','',0,0,199,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24732,'6135','Segos','SEGOS',NULL,'','France','',0,0,76,'2016-10-17 11:55:55','1900-01-01 00:00:00',1,0,1),(24733,'30922','Segovia','SEGOVIA',NULL,'','United States','',0,0,231,'2016-10-17 11:55:56','1900-01-01 00:00:00',1,0,1),(24734,'2816','Segovia','SEGOVIA',NULL,'','Spain','',0,0,199,'2016-10-17 11:55:56','1900-01-01 00:00:00',1,0,1),(24735,'35038','Segovia-el Espinar','SEGOVIA-EL ESPINAR',NULL,'','Spain','',0,0,199,'2016-10-17 11:55:56','1900-01-01 00:00:00',1,0,1),(24736,'13027','Segrate','SEGRATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:57','1900-01-01 00:00:00',1,0,1),(24737,'6274','Segré','SEGRÉ',NULL,'','France','',0,0,76,'2016-10-17 11:55:57','1900-01-01 00:00:00',1,0,1),(24738,'2818','Seguero','SEGUERO',NULL,'','Spain','',0,0,199,'2016-10-17 11:55:57','1900-01-01 00:00:00',1,0,1),(24739,'30923','Seguin','SEGUIN',NULL,'','United States','',0,0,231,'2016-10-17 11:55:58','1900-01-01 00:00:00',1,0,1),(24740,'6533','Seguret','SEGURET',NULL,'','France','',0,0,76,'2016-10-17 11:55:58','1900-01-01 00:00:00',1,0,1),(24741,'27283','Sehnde','SEHNDE',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:58','1900-01-01 00:00:00',1,0,1),(24742,'13633','Sehonghong','SEHONGHONG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24743,'15971','Seia','SEIA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24744,'11445','Seiano Di Vico Equen','SEIANO DI VICO EQUEN',NULL,'','Italy','',0,0,107,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24745,'22414','Seiffen','SEIFFEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24746,'5267','Seignosse','SEIGNOSSE',NULL,'','France','',0,0,76,'2016-10-17 11:55:59','1900-01-01 00:00:00',1,0,1),(24747,'4921','Seilh','SEILH',NULL,'','France','',0,0,76,'2016-10-17 11:56:00','1900-01-01 00:00:00',1,0,1),(24748,'37985','Seilhac','SEILHAC',NULL,'','France','',0,0,76,'2016-10-17 11:56:00','1900-01-01 00:00:00',1,0,1),(24749,'5689','Seillac','SEILLAC',NULL,'','France','',0,0,76,'2016-10-17 11:56:00','1900-01-01 00:00:00',1,0,1),(24750,'6534','Seillans','SEILLANS',NULL,'','France','',0,0,76,'2016-10-17 11:56:01','1900-01-01 00:00:00',1,0,1),(24751,'4030','Seinajoki','SEINAJOKI',NULL,'','Finland','',0,0,75,'2016-10-17 11:56:01','1900-01-01 00:00:00',1,0,1),(24752,'24924','Seine Bight Village','SEINE BIGHT VILLAGE',NULL,'','Belize','',0,0,22,'2016-10-17 11:56:01','1900-01-01 00:00:00',1,0,1),(24753,'4556','Seine-et-marne','SEINE-ET-MARNE',NULL,'','France','',0,0,76,'2016-10-17 11:56:01','1900-01-01 00:00:00',1,0,1),(24754,'4557','Seine-maritime','SEINE-MARITIME',NULL,'','France','',0,0,76,'2016-10-17 11:56:02','1900-01-01 00:00:00',1,0,1),(24755,'41999','Seis Am Schlern','SEIS AM SCHLERN',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:02','1900-01-01 00:00:00',1,0,1),(24756,'6136','Seix','SEIX',NULL,'','France','',0,0,76,'2016-10-17 11:56:02','1900-01-01 00:00:00',1,0,1),(24757,'32357','Seiyun','SEIYUN',NULL,'','Yemen','',0,0,240,'2016-10-17 11:56:02','1900-01-01 00:00:00',1,0,1),(24758,'13634','Sekake','SEKAKE',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:56:03','1900-01-01 00:00:00',1,0,1),(24759,'43889','Sekotong Barat','SEKOTONG BARAT',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:03','1900-01-01 00:00:00',1,0,1),(24760,'37993','Selah','SELAH',NULL,'','United States','',0,0,231,'2016-10-17 11:56:03','1900-01-01 00:00:00',1,0,1),(24761,'17765','Selawik','SELAWIK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:04','1900-01-01 00:00:00',1,0,1),(24762,'33047','Selby','SELBY',NULL,'','United States','',0,0,231,'2016-10-17 11:56:04','1900-01-01 00:00:00',1,0,1),(24763,'8867','Selby','SELBY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:04','1900-01-01 00:00:00',1,0,1),(24764,'10040','Selce','SELCE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:56:05','1900-01-01 00:00:00',1,0,1),(24765,'39493','Selci','SELCI',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:05','1900-01-01 00:00:00',1,0,1),(24766,'17320','Selcuk','SELCUK',NULL,'','Turkey','Selcuk',0,0,222,'2016-10-17 11:56:05','1900-01-01 00:00:00',1,0,1),(24767,'17766','Seldovia','SELDOVIA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:05','1900-01-01 00:00:00',1,0,1),(24768,'25263','Selebi-phikwe','SELEBI-PHIKWE',NULL,'','Botswana','',0,0,28,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24769,'43890','Selemadeg','SELEMADEG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24770,'24039','Selembao','SELEMBAO',NULL,'','Congo, DR Of The','',0,0,52,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24771,'6792','Selestat','SELESTAT',NULL,'','France','',0,0,76,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24772,'11003','Selfoss','SELFOSS',NULL,'','Iceland','',0,0,100,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24773,'336','Seligenstadt','SELIGENSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:06','1900-01-01 00:00:00',1,0,1),(24774,'18204','Seligman','SELIGMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:56:07','1900-01-01 00:00:00',1,0,1),(24775,'17240','Selimiye','SELIMIYE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:56:07','1900-01-01 00:00:00',1,0,1),(24776,'30159','Selinsgrove','SELINSGROVE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:07','1900-01-01 00:00:00',1,0,1),(24777,'11446','Selinunte','SELINUNTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:07','1900-01-01 00:00:00',1,0,1),(24778,'29111','Selkirk','SELKIRK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:08','1900-01-01 00:00:00',1,0,1),(24779,'8868','Selkirk','SELKIRK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:08','1900-01-01 00:00:00',1,0,1),(24780,'25627','Selkirk','SELKIRK',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:08','1900-01-01 00:00:00',1,0,1),(24781,'20982','Sellersburg','SELLERSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:56:09','1900-01-01 00:00:00',1,0,1),(24782,'3609','Selles','SELLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:09','1900-01-01 00:00:00',1,0,1),(24783,'5690','Selles-saint-denis','SELLES-SAINT-DENIS',NULL,'','France','',0,0,76,'2016-10-17 11:56:09','1900-01-01 00:00:00',1,0,1),(24784,'40749','Sellia Marina','SELLIA MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:10','1900-01-01 00:00:00',1,0,1),(24785,'34008','Selma','SELMA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:10','1900-01-01 00:00:00',1,0,1),(24786,'33257','Selmer','SELMER',NULL,'','United States','',0,0,231,'2016-10-17 11:56:12','1900-01-01 00:00:00',1,0,1),(24787,'44105','Selonnet','SELONNET',NULL,'','France','',0,0,76,'2016-10-17 11:56:13','1900-01-01 00:00:00',1,0,1),(24788,'44010','Selous Game Reserve','SELOUS GAME RESERVE',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:56:13','1900-01-01 00:00:00',1,0,1),(24789,'12528','Selvino','SELVINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24790,'42852','Semanggol','SEMANGGOL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24791,'10298','Semarang','SEMARANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24792,'44106','Semecourt','SEMECOURT',NULL,'','France','',0,0,76,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24793,'4558','Semécourt','SEMÉCOURT',NULL,'','France','',0,0,76,'2016-10-17 11:56:14','1900-01-01 00:00:00',1,0,1),(24794,'19611','Seminole','SEMINOLE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:15','1900-01-01 00:00:00',1,0,1),(24795,'10195','Seminyak','SEMINYAK',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24796,'809','Semlin','SEMLIN',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24797,'24541','Semmering','SEMMERING',NULL,'','Austria','',0,0,14,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24798,'11447','Semogo','SEMOGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24799,'13624','Semongkong','SEMONGKONG',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:56:16','1900-01-01 00:00:00',1,0,1),(24800,'3787','Sempere','SEMPERE',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24801,'39498','Šempeter Pri Gorici','ŠEMPETER PRI GORICI',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24802,'14328','Semporna','SEMPORNA',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24803,'40157','Semproniano','SEMPRONIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24804,'37398','Semur-en-auxois','SEMUR-EN-AUXOIS',NULL,'','France','',0,0,76,'2016-10-17 11:56:17','1900-01-01 00:00:00',1,0,1),(24805,'12529','Senago','SENAGO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:18','1900-01-01 00:00:00',1,0,1),(24806,'27913','Senatobia','SENATOBIA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:18','1900-01-01 00:00:00',1,0,1),(24807,'10262','Senayan','SENAYAN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:18','1900-01-01 00:00:00',1,0,1),(24808,'41556','Sencelles','SENCELLES',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:18','1900-01-01 00:00:00',1,0,1),(24809,'13338','Sendai','SENDAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:56:19','1900-01-01 00:00:00',1,0,1),(24810,'568','Sendenhorst','SENDENHORST',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:19','1900-01-01 00:00:00',1,0,1),(24811,'38839','Senec','SENEC',NULL,'','Slovakia','',0,0,191,'2016-10-17 11:56:19','1900-01-01 00:00:00',1,0,1),(24812,'30403','Seneca','SENECA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:19','1900-01-01 00:00:00',1,0,1),(24813,'29521','Senecaville','SENECAVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:21','1900-01-01 00:00:00',1,0,1),(24814,'38166','Seneffe','SENEFFE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:56:21','1900-01-01 00:00:00',1,0,1),(24815,'10197','Senen','SENEN',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24816,'42238','Senftenberg','SENFTENBERG',NULL,'','Austria','',0,0,14,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24817,'42440','Senftenberg','SENFTENBERG',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24818,'41809','Sengkurong','SENGKURONG',NULL,'','Brunei Darussalam','',0,0,33,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24819,'12981','Senigallia','SENIGALLIA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24820,'6198','Senlis','SENLIS',NULL,'','France','',0,0,76,'2016-10-17 11:56:22','1900-01-01 00:00:00',1,0,1),(24821,'40641','Sennariolo','SENNARIOLO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:23','1900-01-01 00:00:00',1,0,1),(24822,'4559','Sennecey Le Grand','SENNECEY LE GRAND',NULL,'','France','',0,0,76,'2016-10-17 11:56:23','1900-01-01 00:00:00',1,0,1),(24823,'5502','Sennecey-les-dijon','SENNECEY-LES-DIJON',NULL,'','France','',0,0,76,'2016-10-17 11:56:23','1900-01-01 00:00:00',1,0,1),(24824,'22892','Senneterre','SENNETERRE',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:23','1900-01-01 00:00:00',1,0,1),(24825,'22893','Senneville','SENNEVILLE',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:24','1900-01-01 00:00:00',1,0,1),(24826,'19922','Senoia','SENOIA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:24','1900-01-01 00:00:00',1,0,1),(24827,'39600','Sens-beaujeu','SENS-BEAUJEU',NULL,'','France','',0,0,76,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24828,'16531','Sentosa Island','SENTOSA ISLAND',NULL,'','Singapore','',0,0,190,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24829,'14346','Sentul','SENTUL',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24830,'35067','Seo De Urgel','SEO DE URGEL',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24831,'13504','Seogwipo','SEOGWIPO',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24832,'35819','Seoul','SEOUL',NULL,'','South Korea','Seoul',0,0,197,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24833,'36435','Sepang','SEPANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24834,'38254','Sepino','SEPINO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:25','1900-01-01 00:00:00',1,0,1),(24835,'43652','Seppeltsfield','SEPPELTSFIELD',NULL,'','Australia','',0,0,13,'2016-10-17 11:56:26','1900-01-01 00:00:00',1,0,1),(24836,'41144','Sept Iles','SEPT ILES',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:26','1900-01-01 00:00:00',1,0,1),(24837,'38122','Septeme','SEPTEME',NULL,'','France','',0,0,76,'2016-10-17 11:56:26','1900-01-01 00:00:00',1,0,1),(24838,'6535','Septemes-les-vallons','SEPTEMES-LES-VALLONS',NULL,'','France','',0,0,76,'2016-10-17 11:56:26','1900-01-01 00:00:00',1,0,1),(24839,'22894','Sept-iles','SEPT-ILES',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:27','1900-01-01 00:00:00',1,0,1),(24840,'5751','Sept-saulx','SEPT-SAULX',NULL,'','France','',0,0,76,'2016-10-17 11:56:27','1900-01-01 00:00:00',1,0,1),(24841,'41930','Sepulveda','SEPULVEDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:27','1900-01-01 00:00:00',1,0,1),(24842,'18908','Sepulveda','SEPULVEDA',NULL,'','United States','',0,0,231,'2016-10-17 11:56:27','1900-01-01 00:00:00',1,0,1),(24843,'31618','Sequim','SEQUIM',NULL,'','United States','',0,0,231,'2016-10-17 11:56:28','1900-01-01 00:00:00',1,0,1),(24844,'18909','Sequoia National Park','SEQUOIA NATIONAL PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:28','1900-01-01 00:00:00',1,0,1),(24845,'10291','Serang','SERANG',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24846,'36436','Serdang','SERDANG',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24847,'5973','Serdinya','SERDINYA',NULL,'','France','',0,0,76,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24848,'9391','Sere Kunda','SERE KUNDA',NULL,'','Gambia','',0,0,81,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24849,'12530','Seregno','SEREGNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24850,'14360','Seremban','SEREMBAN',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24851,'41209','Serengeti National Park','SERENGETI NATIONAL PARK',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:56:29','1900-01-01 00:00:00',1,0,1),(24852,'6722','Serezin-du-rhone','SEREZIN-DU-RHONE',NULL,'','France','',0,0,76,'2016-10-17 11:56:30','1900-01-01 00:00:00',1,0,1),(24853,'24494','Serfaus','SERFAUS',NULL,'','Austria','',0,0,14,'2016-10-17 11:56:30','1900-01-01 00:00:00',1,0,1),(24854,'20284','Sergeant Bluff','SERGEANT BLUFF',NULL,'','United States','',0,0,231,'2016-10-17 11:56:30','1900-01-01 00:00:00',1,0,1),(24855,'25009','Sergipe','SERGIPE',NULL,'','Brazil','',0,0,30,'2016-10-17 11:56:31','1900-01-01 00:00:00',1,0,1),(24856,'35653','Seriate','SERIATE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:31','1900-01-01 00:00:00',1,0,1),(24857,'42480','Serifos','SERIFOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:56:31','1900-01-01 00:00:00',1,0,1),(24858,'6536','Serignan-du-comtat','SERIGNAN-DU-COMTAT',NULL,'','France','',0,0,76,'2016-10-17 11:56:31','1900-01-01 00:00:00',1,0,1),(24859,'44269','Sernhac','SERNHAC',NULL,'','France','',0,0,76,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24860,'15876','Serpa','SERPA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24861,'15837','Serra Da Estrela','SERRA DA ESTRELA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24862,'12531','Serra De\' Conti','SERRA DE\' CONTI',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24863,'4560','Serra Di Ferro','SERRA DI FERRO',NULL,'','France','',0,0,76,'2016-10-17 11:56:32','1900-01-01 00:00:00',1,0,1),(24864,'43055','Serra-di-ferro','SERRA-DI-FERRO',NULL,'','France','',0,0,76,'2016-10-17 11:56:33','1900-01-01 00:00:00',1,0,1),(24865,'1855','Serrahn','SERRAHN',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:33','1900-01-01 00:00:00',1,0,1),(24866,'38970','Serralunga Dalba','SERRALUNGA DALBA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:33','1900-01-01 00:00:00',1,0,1),(24867,'12532','Serrano','SERRANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:33','1900-01-01 00:00:00',1,0,1),(24868,'11448','Serrara','SERRARA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:34','1900-01-01 00:00:00',1,0,1),(24869,'38241','Serravalle','SERRAVALLE',NULL,'','San Marino','',0,0,184,'2016-10-17 11:56:34','1900-01-01 00:00:00',1,0,1),(24870,'12533','Serravalle Pistoiese','SERRAVALLE PISTOIESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:34','1900-01-01 00:00:00',1,0,1),(24871,'6812','Serre Chevalier','SERRE CHEVALIER',NULL,'','France','',0,0,76,'2016-10-17 11:56:34','1900-01-01 00:00:00',1,0,1),(24872,'12535','Serre Di Rapolano','SERRE DI RAPOLANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:35','1900-01-01 00:00:00',1,0,1),(24873,'41280','Serre-chevalier','SERRE-CHEVALIER',NULL,'','France','',0,0,76,'2016-10-17 11:56:35','1900-01-01 00:00:00',1,0,1),(24874,'9593','Serres','SERRES',NULL,'','Greece','',0,0,86,'2016-10-17 11:56:35','1900-01-01 00:00:00',1,0,1),(24875,'40707','Serres-castet','SERRES-CASTET',NULL,'','France','',0,0,76,'2016-10-17 11:56:35','1900-01-01 00:00:00',1,0,1),(24876,'42359','Serriera','SERRIERA',NULL,'','France','',0,0,76,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24877,'5873','Serris','SERRIS',NULL,'','France','',0,0,76,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24878,'40542','Serrungarina','SERRUNGARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24879,'13567','Sert','SERT',NULL,'','Libyan Arab Jamahiriya','',0,0,123,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24880,'10319','Serui','SERUI',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:36','1900-01-01 00:00:00',1,0,1),(24881,'37486','Servoz','SERVOZ',NULL,'','France','',0,0,76,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24882,'10263','Seseh','SESEH',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24883,'13625','Seshute\'s','SESHUTE\'S',NULL,'','Lesotho','',0,0,121,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24884,'16062','Sesimbra','SESIMBRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24885,'14405','Sesriem','SESRIEM',NULL,'','Namibia','',0,0,151,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24886,'38210','Sessa','SESSA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24887,'12536','Sessa Aurunca','SESSA AURUNCA',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:37','1900-01-01 00:00:00',1,0,1),(24888,'42665','Sestao','SESTAO',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:38','1900-01-01 00:00:00',1,0,1),(24889,'38625','Sesto','SESTO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:38','1900-01-01 00:00:00',1,0,1),(24890,'11086','Sestri Levante','SESTRI LEVANTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24891,'12539','Sestriere','SESTRIERE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24892,'41689','Sestrilevante','SESTRILEVANTE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24893,'16446','Sestroretsk','SESTRORETSK',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24894,'10061','Sesvete','SESVETE',NULL,'','Croatia','',0,0,55,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24895,'2819','Setcases','SETCASES',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:39','1900-01-01 00:00:00',1,0,1),(24896,'5974','Sete','SETE',NULL,'','France','',0,0,76,'2016-10-17 11:56:40','1900-01-01 00:00:00',1,0,1),(24897,'37579','Setenil De Las Bodegas','SETENIL DE LAS BODEGAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:40','1900-01-01 00:00:00',1,0,1),(24898,'12540','Settecamini','SETTECAMINI',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:40','1900-01-01 00:00:00',1,0,1),(24899,'12541','Settignano','SETTIGNANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:40','1900-01-01 00:00:00',1,0,1),(24900,'12542','Settimo Torinese','SETTIMO TORINESE',NULL,'','Italy','',0,0,107,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24901,'43790','Setting Point','SETTING POINT',NULL,'','British Virgin Islands','',0,0,32,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24902,'8869','Settle','SETTLE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24903,'13191','Settsu','SETTSU',NULL,'','Japan','',0,0,110,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24904,'16063','Setubal','SETUBAL',NULL,'','Portugal','',0,0,175,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24905,'3610','Seva','SEVA',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:41','1900-01-01 00:00:00',1,0,1),(24906,'39880','Sevan','SEVAN',NULL,'','Armenia','',0,0,11,'2016-10-17 11:56:42','1900-01-01 00:00:00',1,0,1),(24907,'17520','Sevastopol','SEVASTOPOL',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:56:42','1900-01-01 00:00:00',1,0,1),(24908,'34010','Seven Devils','SEVEN DEVILS',NULL,'','United States','',0,0,231,'2016-10-17 11:56:42','1900-01-01 00:00:00',1,0,1),(24909,'34312','Seven Hills','SEVEN HILLS',NULL,'','Australia','',0,0,13,'2016-10-17 11:56:42','1900-01-01 00:00:00',1,0,1),(24910,'15164','Seven Mile Point','SEVEN MILE POINT',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:56:43','1900-01-01 00:00:00',1,0,1),(24911,'8870','Sevenoaks','SEVENOAKS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:43','1900-01-01 00:00:00',1,0,1),(24912,'14578','Sevenum','SEVENUM',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:56:43','1900-01-01 00:00:00',1,0,1),(24913,'21787','Severn','SEVERN',NULL,'','United States','',0,0,231,'2016-10-17 11:56:44','1900-01-01 00:00:00',1,0,1),(24914,'21788','Severna Park','SEVERNA PARK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:44','1900-01-01 00:00:00',1,0,1),(24915,'17500','Severodoneck','SEVERODONECK',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:56:45','1900-01-01 00:00:00',1,0,1),(24916,'41190','Sevid','SEVID',NULL,'','Croatia','',0,0,55,'2016-10-17 11:56:45','1900-01-01 00:00:00',1,0,1),(24917,'35054','Sevilia-sanlucar La','SEVILIA-SANLUCAR LA',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:45','1900-01-01 00:00:00',1,0,1),(24918,'3291','Seville','SEVILLE',NULL,'','Spain','Seville',0,0,199,'2016-10-17 11:56:46','1900-01-01 00:00:00',1,0,1),(24919,'34995','Seville-benacazon','SEVILLE-BENACAZON',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:46','1900-01-01 00:00:00',1,0,1),(24920,'34999','Seville-bormujos','SEVILLE-BORMUJOS',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:46','1900-01-01 00:00:00',1,0,1),(24921,'35025','Seville-constantina','SEVILLE-CONSTANTINA',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:46','1900-01-01 00:00:00',1,0,1),(24922,'35035','Seville-dos Hermanas','SEVILLE-DOS HERMANAS',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:47','1900-01-01 00:00:00',1,0,1),(24923,'35089','Seville-valencina De','SEVILLE-VALENCINA DE',NULL,'','Spain','',0,0,199,'2016-10-17 11:56:47','1900-01-01 00:00:00',1,0,1),(24924,'35935','Sevlievo','SEVLIEVO',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:56:47','1900-01-01 00:00:00',1,0,1),(24925,'4806','Sevran','SEVRAN',NULL,'','France','',0,0,76,'2016-10-17 11:56:47','1900-01-01 00:00:00',1,0,1),(24926,'6723','Sevrier','SEVRIER',NULL,'','France','',0,0,76,'2016-10-17 11:56:48','1900-01-01 00:00:00',1,0,1),(24927,'33259','Sewanee','SEWANEE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:48','1900-01-01 00:00:00',1,0,1),(24928,'28165','Seward','SEWARD',NULL,'','United States','',0,0,231,'2016-10-17 11:56:49','1900-01-01 00:00:00',1,0,1),(24929,'38726','Sewen','SEWEN',NULL,'','France','',0,0,76,'2016-10-17 11:56:49','1900-01-01 00:00:00',1,0,1),(24930,'30160','Sewickley','SEWICKLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24931,'43891','Sewon','SEWON',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24932,'37781','Sexau','SEXAU',NULL,'','Germany','',0,0,83,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24933,'16921','Seychelles','SEYCHELLES',NULL,'','Seychelles','',0,0,188,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24934,'10994','Seydisfjordur','SEYDISFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:56:50','1900-01-01 00:00:00',1,0,1),(24935,'20983','Seymour','SEYMOUR',NULL,'','United States','',0,0,231,'2016-10-17 11:56:51','1900-01-01 00:00:00',1,0,1),(24936,'26934','Seymour','SEYMOUR',NULL,'','Australia','',0,0,13,'2016-10-17 11:56:51','1900-01-01 00:00:00',1,0,1),(24937,'6537','Seyne','SEYNE',NULL,'','France','',0,0,76,'2016-10-17 11:56:52','1900-01-01 00:00:00',1,0,1),(24938,'6724','Seynod','SEYNOD',NULL,'','France','',0,0,76,'2016-10-17 11:56:52','1900-01-01 00:00:00',1,0,1),(24939,'4960','Seyssins','SEYSSINS',NULL,'','France','',0,0,76,'2016-10-17 11:56:52','1900-01-01 00:00:00',1,0,1),(24940,'6725','Seythenex','SEYTHENEX',NULL,'','France','',0,0,76,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24941,'16651','Sezana','SEZANA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24942,'42750','Sezena','SEZENA',NULL,'','Slovenia','',0,0,192,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24943,'38187','Sezimovo Usti','SEZIMOVO USTI',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24944,'17179','Sfax','SFAX',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24945,'39773','Shaar Hagolan','SHAAR HAGOLAN',NULL,'','Israel','',0,0,106,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24946,'35790','Shaba National Park','SHABA NATIONAL PARK',NULL,'','Kenya','',0,0,113,'2016-10-17 11:56:53','1900-01-01 00:00:00',1,0,1),(24947,'29750','Shady Cove','SHADY COVE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:54','1900-01-01 00:00:00',1,0,1),(24948,'30926','Shafter','SHAFTER',NULL,'','United States','',0,0,231,'2016-10-17 11:56:54','1900-01-01 00:00:00',1,0,1),(24949,'8871','Shaftesbury','SHAFTESBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:54','1900-01-01 00:00:00',1,0,1),(24950,'31388','Shaftsbury','SHAFTSBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:56:55','1900-01-01 00:00:00',1,0,1),(24951,'17768','Shageluk','SHAGELUK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:55','1900-01-01 00:00:00',1,0,1),(24952,'14349','Shah Alam','SHAH ALAM',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24953,'10596','Shahdara','SHAHDARA',NULL,'','India','',0,0,101,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24954,'42580','Shahpura','SHAHPURA',NULL,'','India','',0,0,101,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24955,'37123','Shakaland','SHAKALAND',NULL,'','South Africa','',0,0,195,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24956,'25264','Shakawe','SHAKAWE',NULL,'','Botswana','',0,0,28,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24957,'39068','Shakhty','SHAKHTY',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24958,'3873','Shakiso','SHAKISO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24959,'27515','Shakopee','SHAKOPEE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:56','1900-01-01 00:00:00',1,0,1),(24960,'17769','Shaktoolik','SHAKTOOLIK',NULL,'','United States','',0,0,231,'2016-10-17 11:56:57','1900-01-01 00:00:00',1,0,1),(24961,'7297','Shaldon','SHALDON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:56:57','1900-01-01 00:00:00',1,0,1),(24962,'19612','Shalimar','SHALIMAR',NULL,'','United States','',0,0,231,'2016-10-17 11:56:58','1900-01-01 00:00:00',1,0,1),(24963,'34011','Shallotte','SHALLOTTE',NULL,'','United States','',0,0,231,'2016-10-17 11:56:58','1900-01-01 00:00:00',1,0,1),(24964,'9941','Sham Shui Po','SHAM SHUI PO',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:56:58','1900-01-01 00:00:00',1,0,1),(24965,'25628','Shamattawa','SHAMATTAWA',NULL,'','Canada','',0,0,39,'2016-10-17 11:56:59','1900-01-01 00:00:00',1,0,1),(24966,'39452','Shamirpet','SHAMIRPET',NULL,'','India','',0,0,101,'2016-10-17 11:56:59','1900-01-01 00:00:00',1,0,1),(24967,'30161','Shamokin','SHAMOKIN',NULL,'','United States','',0,0,231,'2016-10-17 11:56:59','1900-01-01 00:00:00',1,0,1),(24968,'30927','Shamrock','SHAMROCK',NULL,'','United States','',0,0,231,'2016-10-17 11:57:00','1900-01-01 00:00:00',1,0,1),(24969,'42538','Shamwari','SHAMWARI',NULL,'','South Africa','',0,0,195,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24970,'10814','Shanagarry','SHANAGARRY',NULL,'','Ireland','',0,0,105,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24971,'29114','Shandaken','SHANDAKEN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24972,'23909','Shanghai','SHANGHAI',NULL,'','China','Shanghai',0,0,46,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24973,'43562','Shangjin','SHANGJIN',NULL,'','Albania','',0,0,2,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24974,'34924','Shangrila','SHANGRILA',NULL,'','China','',0,0,46,'2016-10-17 11:57:01','1900-01-01 00:00:00',1,0,1),(24975,'23713','Shangyu','SHANGYU',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24976,'23789','Shangzhi','SHANGZHI',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24977,'23633','Shangzhou','SHANGZHOU',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24978,'23809','Shanhaiguan','SHANHAIGUAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24979,'8872','Shanklin','SHANKLIN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24980,'40934','Shannon, Co.clare','SHANNON, CO.CLARE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24981,'41509','Shannonbridge','SHANNONBRIDGE',NULL,'','Ireland','',0,0,105,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24982,'34904','Shanshan','SHANSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24983,'23920','Shantou','SHANTOU',NULL,'','China','',0,0,46,'2016-10-17 11:57:02','1900-01-01 00:00:00',1,0,1),(24984,'34637','Shanty Bay','SHANTY BAY',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24985,'42633','Shanxi','SHANXI',NULL,'','China','',0,0,46,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24986,'23974','Shaoguan','SHAOGUAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24987,'23818','Shaoshan','SHAOSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24988,'23714','Shaoxing','SHAOXING',NULL,'','China','',0,0,46,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24989,'8873','Shap','SHAP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24990,'8874','Shapwick','SHAPWICK',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:03','1900-01-01 00:00:00',1,0,1),(24991,'8875','Shardlow','SHARDLOW',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24992,'37812','Shari','SHARI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24993,'25910','Sharjah','SHARJAH',NULL,'','United Arab Emirates','Sharjah',0,0,228,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24994,'37744','Shark Bay','SHARK BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24995,'2412','Sharm El Sheikh','SHARM EL SHEIKH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:57:04','1900-01-01 00:00:00',1,0,1),(24996,'34012','Sharonbrook','SHARONBROOK',NULL,'','United States','',0,0,231,'2016-10-17 11:57:06','1900-01-01 00:00:00',1,0,1),(24997,'32604','Sharpeville','SHARPEVILLE',NULL,'','South Africa','',0,0,195,'2016-10-17 11:57:07','1900-01-01 00:00:00',1,0,1),(24998,'34013','Sharpsburg','SHARPSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:57:07','1900-01-01 00:00:00',1,0,1),(24999,'30164','Shartlesville','SHARTLESVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:08','1900-01-01 00:00:00',1,0,1),(25000,'16500','Sharurah','SHARURAH',NULL,'','Saudi Arabia','',0,0,186,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25001,'23831','Shashi','SHASHI',NULL,'','China','',0,0,46,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25002,'35322','Shatin','SHATIN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25003,'7298','Shatterling','SHATTERLING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25004,'32960','Shattuck','SHATTUCK',NULL,'','United States','',0,0,231,'2016-10-17 11:57:09','1900-01-01 00:00:00',1,0,1),(25005,'9942','Shau Kei Wan','SHAU KEI WAN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25006,'22964','Shaunavon','SHAUNAVON',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25007,'35420','Shavei Zion','SHAVEI ZION',NULL,'','Israel','',0,0,106,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25008,'31880','Shawano','SHAWANO',NULL,'','United States','',0,0,231,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25009,'22895','Shawinigan','SHAWINIGAN',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:10','1900-01-01 00:00:00',1,0,1),(25010,'21132','Shawnee','SHAWNEE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:11','1900-01-01 00:00:00',1,0,1),(25011,'16379','Shchelkovo','SHCHELKOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:57:13','1900-01-01 00:00:00',1,0,1),(25012,'16380','Shcherbinka','SHCHERBINKA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:57:13','1900-01-01 00:00:00',1,0,1),(25013,'31881','Sheboygan','SHEBOYGAN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:13','1900-01-01 00:00:00',1,0,1),(25014,'8876','Shedfield','SHEDFIELD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25015,'34418','Shediac','SHEDIAC',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25016,'8877','Sheering','SHEERING',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25017,'8878','Sheerness','SHEERNESS',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25018,'11064','Shefayim','SHEFAYIM',NULL,'','Israel','',0,0,106,'2016-10-17 11:57:15','1900-01-01 00:00:00',1,0,1),(25019,'21527','Sheffield','SHEFFIELD',NULL,'','United States','',0,0,231,'2016-10-17 11:57:16','1900-01-01 00:00:00',1,0,1),(25020,'37147','Sheffield','SHEFFIELD',NULL,'','UNITED KINGDOM','',0,0,469,'2016-10-17 11:57:16','1900-01-01 00:00:00',1,0,1),(25021,'38881','Shefford','SHEFFORD',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:17','1900-01-01 00:00:00',1,0,1),(25022,'40834','Shekavati','SHEKAVATI',NULL,'','India','',0,0,101,'2016-10-17 11:57:17','1900-01-01 00:00:00',1,0,1),(25023,'23975','Shekou','SHEKOU',NULL,'','China','',0,0,46,'2016-10-17 11:57:17','1900-01-01 00:00:00',1,0,1),(25024,'27771','Shelbina','SHELBINA',NULL,'','United States','',0,0,231,'2016-10-17 11:57:17','1900-01-01 00:00:00',1,0,1),(25025,'31390','Shelburne','SHELBURNE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:18','1900-01-01 00:00:00',1,0,1),(25026,'29526','Shelby','SHELBY',NULL,'','United States','',0,0,231,'2016-10-17 11:57:19','1900-01-01 00:00:00',1,0,1),(25027,'33730','Shelbyville','SHELBYVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:21','1900-01-01 00:00:00',1,0,1),(25028,'20285','Sheldon','SHELDON',NULL,'','United States','',0,0,231,'2016-10-17 11:57:23','1900-01-01 00:00:00',1,0,1),(25029,'16381','Shelepikha','SHELEPIKHA',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:57:24','1900-01-01 00:00:00',1,0,1),(25030,'18910','Shell Beach','SHELL BEACH',NULL,'','United States','',0,0,231,'2016-10-17 11:57:24','1900-01-01 00:00:00',1,0,1),(25031,'18911','Shelter Island','SHELTER ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:57:26','1900-01-01 00:00:00',1,0,1),(25032,'31619','Shelton','SHELTON',NULL,'','United States','',0,0,231,'2016-10-17 11:57:27','1900-01-01 00:00:00',1,0,1),(25033,'20287','Shenandoah','SHENANDOAH',NULL,'','United States','',0,0,231,'2016-10-17 11:57:28','1900-01-01 00:00:00',1,0,1),(25034,'15247','Shenandoah','SHENANDOAH',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:57:28','1900-01-01 00:00:00',1,0,1),(25035,'23910','Shenxiang','SHENXIANG',NULL,'','China','',0,0,46,'2016-10-17 11:57:30','1900-01-01 00:00:00',1,0,1),(25036,'23636','Shenyang','SHENYANG',NULL,'','China','',0,0,46,'2016-10-17 11:57:30','1900-01-01 00:00:00',1,0,1),(25037,'23976','Shenzhen','SHENZHEN',NULL,'','China','Shenzhen',0,0,46,'2016-10-17 11:57:30','1900-01-01 00:00:00',1,0,1),(25038,'25355','Shepard','SHEPARD',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:30','1900-01-01 00:00:00',1,0,1),(25039,'32044','Shepherdstown','SHEPHERDSTOWN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:31','1900-01-01 00:00:00',1,0,1),(25040,'26935','Shepparton','SHEPPARTON',NULL,'','Australia','',0,0,13,'2016-10-17 11:57:31','1900-01-01 00:00:00',1,0,1),(25041,'8880','Shepperton','SHEPPERTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:32','1900-01-01 00:00:00',1,0,1),(25042,'39820','Shepshed','SHEPSHED',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:32','1900-01-01 00:00:00',1,0,1),(25043,'40305','Shepton Beauchamp','SHEPTON BEAUCHAMP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:32','1900-01-01 00:00:00',1,0,1),(25044,'21528','Sherborn','SHERBORN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:33','1900-01-01 00:00:00',1,0,1),(25045,'8882','Sherborne','SHERBORNE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:33','1900-01-01 00:00:00',1,0,1),(25046,'26553','Sherbrook','SHERBROOK',NULL,'','Australia','',0,0,13,'2016-10-17 11:57:33','1900-01-01 00:00:00',1,0,1),(25047,'22896','Sherbrooke','SHERBROOKE',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:33','1900-01-01 00:00:00',1,0,1),(25048,'28020','Sheridan','SHERIDAN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:34','1900-01-01 00:00:00',1,0,1),(25049,'8883','Sheringham','SHERINGHAM',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:35','1900-01-01 00:00:00',1,0,1),(25050,'30930','Sherman','SHERMAN',NULL,'','United States','',0,0,231,'2016-10-17 11:57:35','1900-01-01 00:00:00',1,0,1),(25051,'29118','Sherrill','SHERRILL',NULL,'','United States','',0,0,231,'2016-10-17 11:57:37','1900-01-01 00:00:00',1,0,1),(25052,'36462','S-hertogenbosch','S-HERTOGENBOSCH',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:57:38','1900-01-01 00:00:00',1,0,1),(25053,'28081','Sherwood','SHERWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:57:38','1900-01-01 00:00:00',1,0,1),(25054,'25356','Sherwood Park','SHERWOOD PARK',NULL,'','Canada','',0,0,39,'2016-10-17 11:57:41','1900-01-01 00:00:00',1,0,1),(25055,'23638','Sheshan','SHESHAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:41','1900-01-01 00:00:00',1,0,1),(25056,'9343','Shetland','SHETLAND',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:41','1900-01-01 00:00:00',1,0,1),(25057,'9943','Sheung Wan','SHEUNG WAN',NULL,'','Hong Kong','',0,0,98,'2016-10-17 11:57:42','1900-01-01 00:00:00',1,0,1),(25058,'37111','Shibam','SHIBAM',NULL,'','Yemen','',0,0,240,'2016-10-17 11:57:42','1900-01-01 00:00:00',1,0,1),(25059,'42883','Shibata','SHIBATA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:42','1900-01-01 00:00:00',1,0,1),(25060,'8884','Shifnal','SHIFNAL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:42','1900-01-01 00:00:00',1,0,1),(25061,'43988','Shigar','SHIGAR',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25062,'34901','Shigatse','SHIGATSE',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25063,'17446','Shihlin','SHIHLIN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25064,'23810','Shijiazhuang','SHIJIAZHUANG',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25065,'23895','Shijingshan','SHIJINGSHAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25066,'35757','Shikabe','SHIKABE',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25067,'37614','Shikotsu-toya National Park Area','SHIKOTSU-TOYA NATIONAL PARK AREA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25068,'23639','Shilibao','SHILIBAO',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25069,'42385','Shilin - Stone Forest','SHILIN - STONE FOREST',NULL,'','China','',0,0,46,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25070,'3874','Shillavo','SHILLAVO',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25071,'8885','Shillingford','SHILLINGFORD',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:43','1900-01-01 00:00:00',1,0,1),(25072,'30167','Shillington','SHILLINGTON',NULL,'','United States','',0,0,231,'2016-10-17 11:57:44','1900-01-01 00:00:00',1,0,1),(25073,'10654','Shillong','SHILLONG',NULL,'','India','Shillong',42,0,101,'2016-10-17 11:57:44','1900-01-01 00:00:00',1,0,1),(25074,'20751','Shiloh','SHILOH',NULL,'','United States','',0,0,231,'2016-10-17 11:57:44','1900-01-01 00:00:00',1,0,1),(25075,'23640','Shilong','SHILONG',NULL,'','China','',0,0,46,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25076,'43925','Shimada','SHIMADA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25077,'13339','Shimajiri','SHIMAJIRI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25078,'13192','Shimamoto','SHIMAMOTO',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25079,'13340','Shimizu','SHIMIZU',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25080,'13341','Shimoda','SHIMODA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25081,'44223','Shimoga','SHIMOGA',NULL,'','India','',0,0,101,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25082,'13193','Shimogyo','SHIMOGYO',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:45','1900-01-01 00:00:00',1,0,1),(25083,'13194','Shimojishima','SHIMOJISHIMA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25084,'43939','Shimoni','SHIMONI',NULL,'','Kenya','',0,0,113,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25085,'35760','Shimonoseki','SHIMONOSEKI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25086,'42873','Shimukappu','SHIMUKAPPU',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25087,'17416','Shindian','SHINDIAN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25088,'38326','Shinonsen','SHINONSEN',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25089,'42874','Shintoku','SHINTOKU',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25090,'43926','Shintomi','SHINTOMI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25091,'17470','Shinyanga','SHINYANGA',NULL,'','Tanzania','',0,0,214,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25092,'17417','Shioulin','SHIOULIN',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25093,'8886','Shipley','SHIPLEY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:46','1900-01-01 00:00:00',1,0,1),(25094,'30168','Shippensburg','SHIPPENSBURG',NULL,'','United States','',0,0,231,'2016-10-17 11:57:47','1900-01-01 00:00:00',1,0,1),(25095,'15165','Ships Cove','SHIPS COVE',NULL,'','New Zealand','',0,0,157,'2016-10-17 11:57:47','1900-01-01 00:00:00',1,0,1),(25096,'20985','Shipshewana','SHIPSHEWANA',NULL,'','United States','',0,0,231,'2016-10-17 11:57:47','1900-01-01 00:00:00',1,0,1),(25097,'40744','Shipston On Stour','SHIPSTON ON STOUR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:48','1900-01-01 00:00:00',1,0,1),(25098,'8887','Shipton','SHIPTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:48','1900-01-01 00:00:00',1,0,1),(25099,'35436','Shiraz','SHIRAZ',NULL,'','Iran','',0,0,103,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25100,'10597','Shirdi','SHIRDI',NULL,'','India','Shirdi',5,0,101,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25101,'3875','Shire','SHIRE',NULL,'','Ethiopia','',0,0,70,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25102,'8888','Shiremoor','SHIREMOOR',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25103,'29119','Shirley','SHIRLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:57:49','1900-01-01 00:00:00',1,0,1),(25104,'41088','Shirley -Solihull','SHIRLEY -SOLIHULL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:50','1900-01-01 00:00:00',1,0,1),(25105,'13342','Shiroko','SHIROKO',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:50','1900-01-01 00:00:00',1,0,1),(25106,'23779','Shishi','SHISHI',NULL,'','China','',0,0,46,'2016-10-17 11:57:50','1900-01-01 00:00:00',1,0,1),(25107,'17771','Shishmaref','SHISHMAREF',NULL,'','United States','',0,0,231,'2016-10-17 11:57:50','1900-01-01 00:00:00',1,0,1),(25108,'42579','Shivpatinagar','SHIVPATINAGAR',NULL,'','India','',0,0,101,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25109,'37666','Shivpuri','SHIVPURI',NULL,'','India','Shivpuri',15,0,101,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25110,'43830','Shiyan','SHIYAN',NULL,'','China','',0,0,46,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25111,'37233','Shizukishi','SHIZUKISHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25112,'35761','Shizukuishi','SHIZUKUISHI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25113,'13411','Shizuoka','SHIZUOKA',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25114,'43563','Shkodra','SHKODRA',NULL,'','Albania','',0,0,2,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25115,'34313','Shoal Bay','SHOAL BAY',NULL,'','Australia','',0,0,13,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25116,'13343','Shonai','SHONAI',NULL,'','Japan','',0,0,110,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25117,'22415','Shopsdorf','SHOPSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:57:51','1900-01-01 00:00:00',1,0,1),(25118,'8889','Shoreditch','SHOREDITCH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:52','1900-01-01 00:00:00',1,0,1),(25119,'31391','Shoreham','SHOREHAM',NULL,'','United States','',0,0,231,'2016-10-17 11:57:52','1900-01-01 00:00:00',1,0,1),(25120,'8890','Shoreham-by-sea','SHOREHAM-BY-SEA',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:52','1900-01-01 00:00:00',1,0,1),(25121,'31620','Shoreline','SHORELINE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:53','1900-01-01 00:00:00',1,0,1),(25122,'11077','Shoresh','SHORESH',NULL,'','Israel','',0,0,106,'2016-10-17 11:57:53','1900-01-01 00:00:00',1,0,1),(25123,'27516','Shoreview','SHOREVIEW',NULL,'','United States','',0,0,231,'2016-10-17 11:57:53','1900-01-01 00:00:00',1,0,1),(25124,'20752','Shorewood','SHOREWOOD',NULL,'','United States','',0,0,231,'2016-10-17 11:57:54','1900-01-01 00:00:00',1,0,1),(25125,'28415','Short Hills','SHORT HILLS',NULL,'','United States','',0,0,231,'2016-10-17 11:57:54','1900-01-01 00:00:00',1,0,1),(25126,'17952','Shorter','SHORTER',NULL,'','United States','',0,0,231,'2016-10-17 11:57:55','1900-01-01 00:00:00',1,0,1),(25127,'20401','Shoshone','SHOSHONE',NULL,'','United States','',0,0,231,'2016-10-17 11:57:56','1900-01-01 00:00:00',1,0,1),(25128,'17418','Shoufeng','SHOUFENG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:57:56','1900-01-01 00:00:00',1,0,1),(25129,'43380','Shoumen','SHOUMEN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:57:56','1900-01-01 00:00:00',1,0,1),(25130,'18205','Show Low','SHOW LOW',NULL,'','United States','',0,0,231,'2016-10-17 11:57:57','1900-01-01 00:00:00',1,0,1),(25131,'21259','Shreveport','SHREVEPORT',NULL,'','United States','',0,0,231,'2016-10-17 11:57:58','1900-01-01 00:00:00',1,0,1),(25132,'30169','Shrewsbury','SHREWSBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:57:58','1900-01-01 00:00:00',1,0,1),(25133,'7300','Shrewsbury','SHREWSBURY',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:59','1900-01-01 00:00:00',1,0,1),(25134,'40113','Shrewton','SHREWTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:57:59','1900-01-01 00:00:00',1,0,1),(25135,'10697','Shrirampur','SHRIRAMPUR',NULL,'','India','',0,0,101,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25136,'7301','Shropshire','SHROPSHIRE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25137,'43831','Shuangfu','SHUANGFU',NULL,'','China','',0,0,46,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25138,'2451','Shubra Al Khaymah','SHUBRA AL KHAYMAH',NULL,'','Egypt','',0,0,65,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25139,'24815','Shumen','SHUMEN',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25140,'43927','Shunan','SHUNAN',NULL,'','Japan','',0,0,110,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25141,'23641','Shunde','SHUNDE',NULL,'','China','',0,0,46,'2016-10-17 11:58:00','1900-01-01 00:00:00',1,0,1),(25142,'17772','Shungnak','SHUNGNAK',NULL,'','United States','',0,0,231,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25143,'23896','Shunyi','SHUNYI',NULL,'','China','',0,0,46,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25144,'8891','Shurdington','SHURDINGTON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25145,'8892','Shustoke','SHUSTOKE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25146,'26321','Shute Harbour','SHUTE HARBOUR',NULL,'','Australia','',0,0,13,'2016-10-17 11:58:01','1900-01-01 00:00:00',1,0,1),(25147,'16447','Shuvalovo','SHUVALOVO',NULL,'','Russian Federation','',0,0,181,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25148,'13344','Shuzenji','SHUZENJI',NULL,'','Japan','',0,0,110,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25149,'40835','Siana','SIANA',NULL,'','India','',0,0,101,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25150,'38125','Siargao','SIARGAO',NULL,'','Philippines','',0,0,173,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25151,'21530','Siasconset','SIASCONSET',NULL,'','United States','',0,0,231,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25152,'44244','Siaton','SIATON',NULL,'','Philippines','',0,0,173,'2016-10-17 11:58:02','1900-01-01 00:00:00',1,0,1),(25153,'41443','Siauliai','SIAULIAI',NULL,'','Lithuania','',0,0,125,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25154,'38939','Siavonga','SIAVONGA',NULL,'','Zambia','',0,0,242,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25155,'12543','Sibari','SIBARI',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25156,'9975','Sibenik','SIBENIK',NULL,'','Croatia','',0,0,55,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25157,'15328','Sibi','SIBI',NULL,'','Pakistan','',0,0,166,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25158,'20289','Sibley','SIBLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:03','1900-01-01 00:00:00',1,0,1),(25159,'10598','Sibpur','SIBPUR',NULL,'','India','',0,0,101,'2016-10-17 11:58:04','1900-01-01 00:00:00',1,0,1),(25160,'37710','Sibson','SIBSON',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:04','1900-01-01 00:00:00',1,0,1),(25161,'14385','Sibu','SIBU',NULL,'','Malaysia','',0,0,132,'2016-10-17 11:58:04','1900-01-01 00:00:00',1,0,1),(25162,'25537','Sicamous','SICAMOUS',NULL,'','Canada','',0,0,39,'2016-10-17 11:58:04','1900-01-01 00:00:00',1,0,1),(25163,'12544','Siculiana','SICULIANA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:05','1900-01-01 00:00:00',1,0,1),(25164,'9594','Sidari','SIDARI',NULL,'','Greece','',0,0,86,'2016-10-17 11:58:05','1900-01-01 00:00:00',1,0,1),(25165,'8893','Sidcup','SIDCUP',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:05','1900-01-01 00:00:00',1,0,1),(25166,'37925','Siderno','SIDERNO',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:05','1900-01-01 00:00:00',1,0,1),(25167,'17167','Sidi Bou Said','SIDI BOU SAID',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25168,'13708','Sidi Brahim','SIDI BRAHIM',NULL,'','Morocco','',0,0,148,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25169,'43567','Sidi Fredj','SIDI FREDJ',NULL,'','Algeria','',0,0,3,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25170,'1742','Sidi-bou-said','SIDI-BOU-SAID',NULL,'','Tunisia','',0,0,220,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25171,'8894','Sidmouth','SIDMOUTH',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:06','1900-01-01 00:00:00',1,0,1),(25172,'29529','Sidney','SIDNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:07','1900-01-01 00:00:00',1,0,1),(25173,'25538','Sidney','SIDNEY',NULL,'','Canada','',0,0,39,'2016-10-17 11:58:08','1900-01-01 00:00:00',1,0,1),(25174,'27284','Sieber','SIEBER',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25175,'15674','Siedlce','SIEDLCE',NULL,'','Poland','',0,0,174,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25176,'569','Siegburg','SIEGBURG',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25177,'570','Siegen','SIEGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25178,'22416','Siegerland','SIEGERLAND',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:09','1900-01-01 00:00:00',1,0,1),(25179,'337','Siegsdorf','SIEGSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:10','1900-01-01 00:00:00',1,0,1),(25180,'13452','Siem Reap','SIEM REAP',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:58:10','1900-01-01 00:00:00',1,0,1),(25181,'2013','Siemensstadt','SIEMENSSTADT',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:10','1900-01-01 00:00:00',1,0,1),(25182,'43628','Siemianowice Slaskie','SIEMIANOWICE SLASKIE',NULL,'','Poland','',0,0,174,'2016-10-17 11:58:10','1900-01-01 00:00:00',1,0,1),(25183,'35510','Siena-colle Di Val D','SIENA-COLLE DI VAL D',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:11','1900-01-01 00:00:00',1,0,1),(25184,'35585','Siena-monteriggioni','SIENA-MONTERIGGIONI',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:11','1900-01-01 00:00:00',1,0,1),(25185,'35691','Siena-monticiano','SIENA-MONTICIANO',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:11','1900-01-01 00:00:00',1,0,1),(25186,'741','Sierksdorf','SIERKSDORF',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:11','1900-01-01 00:00:00',1,0,1),(25187,'40128','Sierning','SIERNING',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:12','1900-01-01 00:00:00',1,0,1),(25188,'18914','Sierra City','SIERRA CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:12','1900-01-01 00:00:00',1,0,1),(25189,'35163','Sierra Di Ferro','SIERRA DI FERRO',NULL,'','France','',0,0,76,'2016-10-17 11:58:13','1900-01-01 00:00:00',1,0,1),(25190,'2824','Sierras De Aralar Y Urbasa','SIERRAS DE ARALAR Y URBASA',NULL,'','Spain','',0,0,199,'2016-10-17 11:58:14','1900-01-01 00:00:00',1,0,1),(25191,'23362','Sierre','SIERRE',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:14','1900-01-01 00:00:00',1,0,1),(25192,'19613','Siesta Key','SIESTA KEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:14','1900-01-01 00:00:00',1,0,1),(25193,'44052','Siewierz','SIEWIERZ',NULL,'','Poland','',0,0,174,'2016-10-17 11:58:15','1900-01-01 00:00:00',1,0,1),(25194,'24400','Siezenheim','SIEZENHEIM',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:15','1900-01-01 00:00:00',1,0,1),(25195,'40291','Sigean','SIGEAN',NULL,'','France','',0,0,76,'2016-10-17 11:58:15','1900-01-01 00:00:00',1,0,1),(25196,'16231','Sighisoara','SIGHISOARA',NULL,'','Romania','',0,0,179,'2016-10-17 11:58:15','1900-01-01 00:00:00',1,0,1),(25197,'8895','Sighthill','SIGHTHILL',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:16','1900-01-01 00:00:00',1,0,1),(25198,'13613','Sigiriya','SIGIRIYA',NULL,'','Sri Lanka','',0,0,200,'2016-10-17 11:58:16','1900-01-01 00:00:00',1,0,1),(25199,'10995','Siglufjordur','SIGLUFJORDUR',NULL,'','Iceland','',0,0,100,'2016-10-17 11:58:16','1900-01-01 00:00:00',1,0,1),(25200,'18915','Signal Hill','SIGNAL HILL',NULL,'','United States','',0,0,231,'2016-10-17 11:58:16','1900-01-01 00:00:00',1,0,1),(25201,'37944','Signes','SIGNES',NULL,'','France','',0,0,76,'2016-10-17 11:58:17','1900-01-01 00:00:00',1,0,1),(25202,'20290','Sigourney','SIGOURNEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25203,'40290','Sigoyer','SIGOYER',NULL,'','France','',0,0,76,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25204,'23363','Sigriswil','SIGRISWIL',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25205,'16657','Sigtuna','SIGTUNA',NULL,'','Sweden','',0,0,209,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25206,'3421','Siguenza','SIGUENZA',NULL,'','Spain','',0,0,199,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25207,'13671','Sigulda','SIGULDA',NULL,'','Latvia','',0,0,119,'2016-10-17 11:58:18','1900-01-01 00:00:00',1,0,1),(25208,'13453','Sihanoukville','SIHANOUKVILLE',NULL,'','Cambodia','',0,0,37,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25209,'35821','Siheung','SIHEUNG',NULL,'','South Korea','',0,0,197,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25210,'13523','Sihung-dong','SIHUNG-DONG',NULL,'','Korea, Republic Of','',0,0,0,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25211,'4004','Siilinjarvi','SIILINJARVI',NULL,'','Finland','',0,0,75,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25212,'17360','Siirt','SIIRT',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25213,'23911','Sijing','SIJING',NULL,'','China','',0,0,46,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25214,'17098','Sikao','SIKAO',NULL,'','Thailand','',0,0,215,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25215,'27773','Sikeston','SIKESTON',NULL,'','United States','',0,0,231,'2016-10-17 11:58:19','1900-01-01 00:00:00',1,0,1),(25216,'9728','Sikinos','SIKINOS',NULL,'','Greece','',0,0,86,'2016-10-17 11:58:20','1900-01-01 00:00:00',1,0,1),(25217,'40788','Silandro','SILANDRO',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:20','1900-01-01 00:00:00',1,0,1),(25218,'13991','Silao','SILAO',NULL,'','Mexico','',0,0,141,'2016-10-17 11:58:20','1900-01-01 00:00:00',1,0,1),(25219,'10599','Silchar','SILCHAR',NULL,'','India','Silchar',10,0,101,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25220,'41070','Sile','SILE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25221,'12921','Silea','SILEA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25222,'34016','Siler City','SILER CITY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25223,'39507','Silherovice','SILHEROVICE',NULL,'','Czech Republic','',0,0,58,'2016-10-17 11:58:21','1900-01-01 00:00:00',1,0,1),(25224,'16922','Silhouette Island','SILHOUETTE ISLAND',NULL,'','Seychelles','',0,0,188,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25225,'18916','Silicon Valley','SILICON VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25226,'17300','Silifke','SILIFKE',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25227,'37168','Siliguri','SILIGURI',NULL,'','India','Siliguri',12,0,101,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25228,'24810','Silistra','SILISTRA',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25229,'17312','Silivri','SILIVRI',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25230,'2159','Silkeborg','SILKEBORG',NULL,'','Denmark','',0,0,59,'2016-10-17 11:58:22','1900-01-01 00:00:00',1,0,1),(25231,'2487','Silleda','SILLEDA',NULL,'','Spain','',0,0,199,'2016-10-17 11:58:23','1900-01-01 00:00:00',1,0,1),(25232,'38888','Sillian','SILLIAN',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:23','1900-01-01 00:00:00',1,0,1),(25233,'4562','Silly En Gouffern','SILLY EN GOUFFERN',NULL,'','France','',0,0,76,'2016-10-17 11:58:23','1900-01-01 00:00:00',1,0,1),(25234,'18078','Siloam Springs','SILOAM SPRINGS',NULL,'','United States','',0,0,231,'2016-10-17 11:58:24','1900-01-01 00:00:00',1,0,1),(25235,'17023','Silom - Sathom','SILOM - SATHOM',NULL,'','Thailand','',0,0,215,'2016-10-17 11:58:24','1900-01-01 00:00:00',1,0,1),(25237,'23084','Sils-maria','SILS-MARIA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:24','1900-01-01 00:00:00',1,0,1),(25238,'33538','Silt','SILT',NULL,'','United States','',0,0,231,'2016-10-17 11:58:25','1900-01-01 00:00:00',1,0,1),(25239,'37591','Siltakyla','SILTAKYLA',NULL,'','Finland','',0,0,75,'2016-10-17 11:58:25','1900-01-01 00:00:00',1,0,1),(25240,'23364','Silvaplana','SILVAPLANA',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:25','1900-01-01 00:00:00',1,0,1),(25241,'10629','Silvassa','SILVASSA',NULL,'','India','Silvassa',47,0,101,'2016-10-17 11:58:25','1900-01-01 00:00:00',1,0,1),(25242,'33539','Silvercreek','SILVERCREEK',NULL,'','United States','',0,0,231,'2016-10-17 11:58:30','1900-01-01 00:00:00',1,0,1),(25243,'31621','Silverdale','SILVERDALE',NULL,'','United States','',0,0,231,'2016-10-17 11:58:30','1900-01-01 00:00:00',1,0,1),(25244,'33541','Silverton','SILVERTON',NULL,'','United States','',0,0,231,'2016-10-17 11:58:31','1900-01-01 00:00:00',1,0,1),(25245,'15947','Silves','SILVES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:58:32','1900-01-01 00:00:00',1,0,1),(25246,'12548','Silvi Marina','SILVI MARINA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25247,'39038','Silz','SILZ',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25248,'23948','Simao','SIMAO',NULL,'','China','',0,0,46,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25249,'34638','Simcoe','SIMCOE',NULL,'','Canada','',0,0,39,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25250,'42336','Simeri Crichi','SIMERI CRICHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:33','1900-01-01 00:00:00',1,0,1),(25251,'11450','Simeri-crichi','SIMERI-CRICHI',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:34','1900-01-01 00:00:00',1,0,1),(25252,'17517','Simferopol','SIMFEROPOL',NULL,'','Ukraine','',0,0,227,'2016-10-17 11:58:34','1900-01-01 00:00:00',1,0,1),(25253,'18917','Simi Valley','SIMI VALLEY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:34','1900-01-01 00:00:00',1,0,1),(25254,'6538','Simiane-collongue','SIMIANE-COLLONGUE',NULL,'','France','',0,0,76,'2016-10-17 11:58:35','1900-01-01 00:00:00',1,0,1),(25255,'15061','Simikot','SIMIKOT',NULL,'','Nepal','Simikot',0,0,153,'2016-10-17 11:58:35','1900-01-01 00:00:00',1,0,1),(25256,'23749','Siming','SIMING',NULL,'','China','',0,0,46,'2016-10-17 11:58:35','1900-01-01 00:00:00',1,0,1),(25257,'10641','Simla','SIMLA',NULL,'','India','',0,0,101,'2016-10-17 11:58:35','1900-01-01 00:00:00',1,0,1),(25258,'38105','Simmerath','SIMMERATH',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25259,'24539','Simmering','SIMMERING',NULL,'','Austria','',0,0,14,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25260,'8896','Simonburn','SIMONBURN',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25261,'32497','Simon\'s Town','SIMON\'S TOWN',NULL,'','South Africa','',0,0,195,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25262,'7302','Simonstone','SIMONSTONE',NULL,'','United Kingdom','',0,0,229,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25263,'40378','Simontornya','SIMONTORNYA',NULL,'','Hungary','',0,0,99,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25264,'25893','Simpson Bay','SIMPSON BAY',NULL,'','Netherlands Antilles','',0,0,155,'2016-10-17 11:58:36','1900-01-01 00:00:00',1,0,1),(25265,'30404','Simpsonville','SIMPSONVILLE',NULL,'','United States','',0,0,231,'2016-10-17 11:58:37','1900-01-01 00:00:00',1,0,1),(25266,'15062','Simra','SIMRA',NULL,'','Nepal','',0,0,153,'2016-10-17 11:58:37','1900-01-01 00:00:00',1,0,1),(25267,'16875','Simrishamn','SIMRISHAMN',NULL,'','Sweden','',0,0,209,'2016-10-17 11:58:37','1900-01-01 00:00:00',1,0,1),(25268,'19155','Simsbury','SIMSBURY',NULL,'','United States','',0,0,231,'2016-10-17 11:58:37','1900-01-01 00:00:00',1,0,1),(25269,'16232','Sinaia','SINAIA',NULL,'','Romania','',0,0,179,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25270,'12549','Sinalunga','SINALUNGA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25271,'9596','Sinarades','SINARADES',NULL,'','Greece','',0,0,86,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25272,'2250','Sindal','SINDAL',NULL,'','Denmark','',0,0,59,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25273,'22645','Sindelfingen','SINDELFINGEN',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25274,'24786','Sinemoretz','SINEMORETZ',NULL,'','Bulgaria','',0,0,34,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25275,'16064','Sines','SINES',NULL,'','Portugal','',0,0,175,'2016-10-17 11:58:38','1900-01-01 00:00:00',1,0,1),(25276,'3932','Sinetta','SINETTA',NULL,'','Finland','',0,0,75,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25277,'2932','Sineu','SINEU',NULL,'','Spain','',0,0,199,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25278,'16532','Singapore','SINGAPORE',NULL,'','Singapore','Singapore',33,0,190,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25279,'10264','Singaraja','SINGARAJA',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25280,'19615','Singer Island','SINGER ISLAND',NULL,'','United States','',0,0,231,'2016-10-17 11:58:39','1900-01-01 00:00:00',1,0,1),(25281,'10200','Singkep','SINGKEP',NULL,'','Indonesia','',0,0,102,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25282,'34314','Singleton','SINGLETON',NULL,'','Australia','',0,0,13,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25283,'37242','Siniscola','SINISCOLA',NULL,'','Italy','',0,0,107,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25284,'38456','Sinjhuang','SINJHUANG',NULL,'','Taiwan','',0,0,212,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25285,'44313','Sinop','SINOP',NULL,'','Turkey','',0,0,222,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25286,'37715','Sins','SINS',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25287,'14956','Sinsen','SINSEN',NULL,'','Norway','',0,0,164,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25288,'22647','Sinsheim','SINSHEIM',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:40','1900-01-01 00:00:00',1,0,1),(25289,'14660','Sint Maarten','SINT MAARTEN',NULL,'','Netherlands','',0,0,154,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25290,'41097','Sint Niklaas','SINT NIKLAAS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25291,'24646','Sint-agatha-berchem','SINT-AGATHA-BERCHEM',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25292,'24647','Sint-gillis','SINT-GILLIS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25293,'24648','Sint-jans-molenbeek','SINT-JANS-MOLENBEEK',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25294,'24614','Sint-katelijne-waver','SINT-KATELIJNE-WAVER',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25295,'24649','Sint-lambrechts-woluwe','SINT-LAMBRECHTS-WOLUWE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25296,'24720','Sint-laureins','SINT-LAUREINS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25297,'38066','Sint-martens-latem','SINT-MARTENS-LATEM',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25298,'24746','Sint-niklaas','SINT-NIKLAAS',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:41','1900-01-01 00:00:00',1,0,1),(25299,'30932','Sinton','SINTON',NULL,'','United States','',0,0,231,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25300,'24650','Sint-pieters-woluwe','SINT-PIETERS-WOLUWE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25301,'16012','Sintra','SINTRA',NULL,'','Portugal','',0,0,175,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25302,'24651','Sint-stevens-woluwe','SINT-STEVENS-WOLUWE',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25303,'24688','Sint-truiden','SINT-TRUIDEN',NULL,'','Belgium','',0,0,21,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25304,'661','Sinzig','SINZIG',NULL,'','Germany','',0,0,83,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25305,'10106','Siofok','SIOFOK',NULL,'','Hungary','',0,0,99,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25306,'23365','Sion','SION',NULL,'','Switzerland','',0,0,210,'2016-10-17 11:58:42','1900-01-01 00:00:00',1,0,1),(25307,'20291','Sioux Center','SIOUX CENTER',NULL,'','United States','',0,0,231,'2016-10-17 11:58:43','1900-01-01 00:00:00',1,0,1),(25308,'34639','Sioux Lookout','SIOUX LOOKOUT',NULL,'','Canada','',0,0,39,'2016-10-17 11:58:45','1900-01-01 00:00:00',1,0,1);
/*!40000 ALTER TABLE `tb_master_geo_city` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_master_geo_country`
--

DROP TABLE IF EXISTS `tb_master_geo_country`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_master_geo_country` (
  `contsysId` int NOT NULL AUTO_INCREMENT,
  `contId` int NOT NULL,
  `title` varchar(256) NOT NULL,
  `code` varchar(100) NOT NULL,
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`contsysId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_master_geo_country`
--

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

--
-- Table structure for table `tb_mp_stdmarkup_accom`
--

DROP TABLE IF EXISTS `tb_mp_stdmarkup_accom`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_mp_stdmarkup_accom` (
  `AgencySysId` bigint NOT NULL,
  `MasterAgencySysId` int NOT NULL DEFAULT '0',
  `MPType` smallint NOT NULL,
  `ItemSourceType` smallint NOT NULL DEFAULT '0',
  `AirType` smallint NOT NULL DEFAULT '0',
  `AccomType` smallint NOT NULL DEFAULT '0',
  `IsForCancellation` tinyint NOT NULL DEFAULT '0',
  `CustGrSysId` bigint NOT NULL,
  `Currency` smallint NOT NULL,
  `MarkUpType` smallint NOT NULL DEFAULT '0',
  `IsSameForAll` tinyint NOT NULL DEFAULT '0',
  `StdMarkUpPer` decimal(18,2) NOT NULL DEFAULT '0.00',
  `MarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `TaxPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscAtMarkupPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscAtMarkupVal` decimal(18,0) NOT NULL DEFAULT '0',
  `CommssionType` smallint NOT NULL DEFAULT '0',
  `CommssionVal` decimal(18,2) NOT NULL DEFAULT '0.00',
  `DiscountPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscountVal` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscountMsg` varchar(50) DEFAULT NULL,
  `Details` varchar(500) DEFAULT NULL,
  `ValidTill` datetime(3) DEFAULT NULL,
  `IsServiceChrgIncludeInTax` tinyint NOT NULL DEFAULT '0',
  `ApproveDate` datetime(3) NOT NULL,
  `CreateDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `UpdateDate` datetime(3) DEFAULT NULL,
  `IsApproved` tinyint NOT NULL,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`AgencySysId`,`MPType`,`ItemSourceType`,`AccomType`,`IsForCancellation`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_mp_stdmarkup_accom`
--

LOCK TABLES `tb_mp_stdmarkup_accom` WRITE;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_accom` DISABLE KEYS */;
INSERT INTO `tb_mp_stdmarkup_accom` VALUES (12577,12577,2,0,0,1,0,0,1,0,0,0.00,0.00,0,0,0,0,0.00,0,0,'0','0','2022-08-26 00:00:00.000',0,'2022-08-26 00:00:00.000','2022-03-10 13:35:32',NULL,1,0,1),(12577,12577,2,0,0,2,0,0,1,0,0,0.00,0.00,0,0,0,0,0.00,0,0,'0','0','2022-08-26 00:00:00.000',0,'2022-08-26 00:00:00.000','2022-03-10 13:35:32',NULL,1,0,1),(19895,12577,2,1,0,1,0,0,1,0,0,0.00,0.00,0,0,0,0,0.00,0,0,NULL,NULL,'2022-09-09 16:20:11.000',0,'2022-09-09 16:20:11.000','2022-09-09 16:20:11','2022-09-09 16:20:11.000',1,0,1),(19895,12577,2,1,0,2,0,0,1,0,0,0.00,0.00,0,0,0,0,0.00,0,0,NULL,NULL,'2022-09-09 16:20:11.000',0,'2022-09-09 16:20:11.000','2022-09-09 16:20:11','2022-09-09 16:20:11.000',1,0,1);
/*!40000 ALTER TABLE `tb_mp_stdmarkup_accom` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_mp_stdmarkup_air`
--

DROP TABLE IF EXISTS `tb_mp_stdmarkup_air`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_mp_stdmarkup_air` (
  `AgencySysId` bigint NOT NULL,
  `MasterAgencySysId` int NOT NULL DEFAULT '0',
  `MPType` smallint NOT NULL,
  `ItemSourceType` varchar(55) NOT NULL,
  `AirType` smallint NOT NULL DEFAULT '0',
  `AccomType` int DEFAULT NULL,
  `IsForCancellation` tinyint NOT NULL DEFAULT '0',
  `CustGrSysId` bigint NOT NULL,
  `Currency` smallint NOT NULL,
  `MarkUpType` smallint NOT NULL DEFAULT '0',
  `IsSameForAll` tinyint NOT NULL DEFAULT '0',
  `StdMarkUpPer` decimal(18,2) NOT NULL DEFAULT '0.00',
  `MarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `TaxPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscAtMarkupPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscAtMarkupVal` decimal(18,0) NOT NULL DEFAULT '0',
  `CommssionType` smallint NOT NULL DEFAULT '0',
  `CommssionVal` decimal(18,2) NOT NULL DEFAULT '0.00',
  `DiscountPer` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscountVal` decimal(18,0) NOT NULL DEFAULT '0',
  `DiscountMsg` varchar(50) NOT NULL,
  `Details` varchar(500) NOT NULL,
  `ValidTill` datetime(3) NOT NULL,
  `IsServiceChrgIncludeInTax` tinyint NOT NULL DEFAULT '0',
  `ApproveDate` datetime(3) NOT NULL,
  `CreateDate` datetime(3) DEFAULT NULL,
  `UpdateDate` datetime(3) DEFAULT NULL,
  `IsApproved` tinyint NOT NULL,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`AgencySysId`,`MPType`,`ItemSourceType`,`AirType`,`IsForCancellation`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_mp_stdmarkup_air`
--

LOCK TABLES `tb_mp_stdmarkup_air` WRITE;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_air` DISABLE KEYS */;
INSERT INTO `tb_mp_stdmarkup_air` VALUES (12531,10672,2,'1',1,NULL,0,0,1,1,0,250.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-05-09 13:37:01.000',0,'2022-05-09 13:37:01.000','2022-05-09 13:37:01.000','2022-05-09 13:37:01.000',1,0,1),(12531,10672,2,'1',2,NULL,0,0,1,1,0,600.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-05-09 13:37:01.000',0,'2022-05-09 13:37:01.000','2022-05-09 13:37:01.000','2022-05-09 13:37:01.000',1,0,1),(12577,12577,1,'0',1,NULL,0,0,1,1,0,0.00,0.00,0,0,0,2,2.00,0,0,'0','0','2022-08-26 00:00:00.000',18,'2022-08-26 00:00:00.000',NULL,NULL,1,0,1),(12577,12577,1,'0',2,NULL,0,0,1,1,0,0.00,0.00,0,0,0,2,2.00,0,0,'0','0','2022-08-26 00:00:00.000',18,'2022-08-26 00:00:00.000',NULL,NULL,1,0,1),(19895,12577,2,'1',1,NULL,0,0,1,1,0,100.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-09-09 16:20:11.000',0,'2022-09-09 16:20:11.000','2022-09-09 16:20:11.000','2022-09-09 16:20:11.000',1,0,1),(19895,12577,2,'1',2,NULL,0,0,1,1,0,100.00,0.00,0,0,0,2,0.00,0,0,'0','0','2022-09-09 16:20:11.000',0,'2022-09-09 16:20:11.000','2022-09-09 16:20:11.000','2022-09-09 16:20:11.000',1,0,1);
/*!40000 ALTER TABLE `tb_mp_stdmarkup_air` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_mp_stdmarkup_bus`
--

DROP TABLE IF EXISTS `tb_mp_stdmarkup_bus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_mp_stdmarkup_bus` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL DEFAULT '0',
  `MarkUp` float NOT NULL,
  `percentGST` int NOT NULL,
  `CreateDate` datetime(3) DEFAULT NULL,
  `UpdateDate` datetime(3) DEFAULT NULL,
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_mp_stdmarkup_bus`
--

LOCK TABLES `tb_mp_stdmarkup_bus` WRITE;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_bus` DISABLE KEYS */;
INSERT INTO `tb_mp_stdmarkup_bus` VALUES (1,12577,0,18,'2022-11-18 11:22:26.000','2023-04-14 13:50:05.000',0,1);
/*!40000 ALTER TABLE `tb_mp_stdmarkup_bus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_mp_stdmarkup_car`
--

DROP TABLE IF EXISTS `tb_mp_stdmarkup_car`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_mp_stdmarkup_car` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int DEFAULT NULL,
  `MarkUp` float NOT NULL,
  `percentGST` int NOT NULL,
  `CreateDate` datetime(3) DEFAULT CURRENT_TIMESTAMP(3),
  `UpdateDate` datetime(3) DEFAULT CURRENT_TIMESTAMP(3),
  `IsMarkForDel` tinyint NOT NULL,
  `IsActive` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_mp_stdmarkup_car`
--

LOCK TABLES `tb_mp_stdmarkup_car` WRITE;
/*!40000 ALTER TABLE `tb_mp_stdmarkup_car` DISABLE KEYS */;
INSERT INTO `tb_mp_stdmarkup_car` VALUES (1,12577,0,18,'2022-11-22 10:52:37.000','2023-04-14 13:50:05.000',0,1);
/*!40000 ALTER TABLE `tb_mp_stdmarkup_car` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_shared_proposal`
--

DROP TABLE IF EXISTS `tb_shared_proposal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_shared_proposal` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `MasterAgencySysId` int NOT NULL,
  `FlightNumber` varchar(100) NOT NULL,
  `AirlineName` varchar(100) DEFAULT NULL,
  `TravelDate` datetime DEFAULT NULL,
  `SearchTraceId` varchar(250) NOT NULL,
  `NetFare` float NOT NULL DEFAULT '0',
  `Commission` float NOT NULL DEFAULT '0',
  `NetPrice` float NOT NULL DEFAULT '0',
  `FinalPrice` float NOT NULL DEFAULT '0',
  `ExtraMarkup` float NOT NULL DEFAULT '0',
  `ExtraMarkupOnGST` float NOT NULL DEFAULT '0',
  `UserSysId` int NOT NULL,
  `CustEmail` varchar(100) NOT NULL,
  `CustName` varchar(100) NOT NULL,
  `CustMobile` varchar(100) DEFAULT NULL,
  `flightData` longtext,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` datetime NOT NULL,
  `IsMarkForDel` tinyint NOT NULL DEFAULT '0',
  `status` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_shared_proposal`
--

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

--
-- Table structure for table `tb_tbb2c_contactus_address`
--

DROP TABLE IF EXISTS `tb_tbb2c_contactus_address`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_tbb2c_contactus_address` (
  `DesSysId` bigint NOT NULL AUTO_INCREMENT,
  `address` varchar(255) DEFAULT NULL,
  `IsPublish` char(3) DEFAULT NULL,
  `IsMarkForDel` char(3) DEFAULT NULL,
  PRIMARY KEY (`DesSysId`),
  UNIQUE KEY `DesSysId` (`DesSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_tbb2c_contactus_address`
--

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

--
-- Table structure for table `tb_tbb2c_destinations`
--

DROP TABLE IF EXISTS `tb_tbb2c_destinations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_tbb2c_destinations` (
  `DesSysId` bigint NOT NULL AUTO_INCREMENT,
  `ContinentId` int DEFAULT NULL,
  `sightseeingIds` varchar(256) DEFAULT NULL,
  `description` text,
  `otherDescription` text,
  `regionDescription` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `similarDestinations` varchar(256) DEFAULT NULL,
  `FAQ` text,
  `whyUseUs` text,
  `topTravelBlog` text,
  `popularPackages` varchar(256) DEFAULT NULL,
  `seotitle` varchar(256) DEFAULT NULL,
  `destinationImage` varchar(256) DEFAULT NULL,
  `DesId` int DEFAULT NULL,
  `IsFeatured` int DEFAULT NULL,
  `DisplayOnFooter` tinyint(1) DEFAULT NULL,
  `DisplayIndex` smallint DEFAULT NULL,
  `Title` varchar(450) DEFAULT NULL,
  `region_id` bigint DEFAULT NULL,
  `stateId` int DEFAULT NULL,
  `Activities` varchar(200) DEFAULT NULL,
  `Tours` int DEFAULT NULL,
  `Hotels` int DEFAULT NULL,
  `DetailText` text,
  `Image` varchar(765) DEFAULT NULL,
  `Bannerimg` varchar(765) DEFAULT NULL,
  `Countries` text,
  `CountryIds` varchar(765) DEFAULT NULL,
  `DestDescription` text,
  `UpdateDate` datetime DEFAULT NULL,
  `CreateDate` datetime DEFAULT NULL,
  `CreatedBy` bigint DEFAULT NULL,
  `UpdatedBy` bigint DEFAULT NULL,
  `IsPublish` char(3) DEFAULT NULL,
  `IsActive` char(3) DEFAULT NULL,
  `IsMarkForDel` char(3) DEFAULT NULL,
  `packageListTitle` varchar(500) DEFAULT NULL,
  `packageListKeyword` varchar(500) DEFAULT NULL,
  `packageListDescription` varchar(500) DEFAULT NULL,
  `destinationTitle` varchar(500) DEFAULT NULL,
  `destinationKeyword` varchar(500) DEFAULT NULL,
  `destinationDescription` varchar(500) DEFAULT NULL,
  `package_list_header` varchar(2000) DEFAULT NULL,
  `package_list_footer` varchar(2000) DEFAULT NULL,
  `destination_header` varchar(2000) DEFAULT NULL,
  `destination_footer` varchar(2000) DEFAULT NULL,
  `DisplayOnHeader` tinyint(1) NOT NULL DEFAULT '0',
  `exploreHomeDestination` int DEFAULT '0',
  `Keyword` varchar(250) DEFAULT NULL,
  `Metatag` varchar(250) DEFAULT NULL,
  `seoHcontent` text,
  `seoFcontent` text,
  `heading1` text,
  `heading2` text,
  `destIcon` varchar(256) DEFAULT NULL,
  `displayOnActivity` int NOT NULL DEFAULT '1',
  PRIMARY KEY (`DesSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_tbb2c_destinations`
--

LOCK TABLES `tb_tbb2c_destinations` WRITE;
/*!40000 ALTER TABLE `tb_tbb2c_destinations` DISABLE KEYS */;
INSERT INTO `tb_tbb2c_destinations` VALUES (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,37069,NULL,NULL,NULL,'Mawlynnong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36513,NULL,NULL,NULL,'Dawki',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,27116,NULL,NULL,NULL,'Tezpur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34557,NULL,NULL,NULL,'Tawang',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,25073,NULL,NULL,NULL,'Shillong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11240,NULL,NULL,NULL,'Guwahati',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7934,NULL,NULL,NULL,'Dirang',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34563,NULL,NULL,NULL,'Cherrapunji',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34561,NULL,NULL,NULL,'Bomdila',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34462,NULL,NULL,NULL,'Bhalukpong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:37:47','2022-05-24 12:37:47',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,'Shimla',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:38:46','2022-05-24 12:38:46',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16593,NULL,NULL,NULL,'Manali',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:38:46','2022-05-24 12:38:46',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5765,NULL,NULL,NULL,'Chandigarh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 12:38:46','2022-05-24 12:38:46',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30548,NULL,NULL,NULL,'Zurich',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28574,NULL,NULL,NULL,'Venice',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(16,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32754,NULL,NULL,NULL,'Rome',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(17,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21478,NULL,NULL,NULL,'Pisa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(18,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20822,NULL,NULL,NULL,'Paris',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(19,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32390,NULL,NULL,NULL,'Padova',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16022,NULL,NULL,NULL,'Lucerne',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(21,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35251,NULL,NULL,NULL,'London',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15836,NULL,NULL,NULL,'London',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12756,NULL,NULL,NULL,'Interlaken',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12747,NULL,NULL,NULL,'Innsbruck',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(25,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10276,NULL,NULL,NULL,'Geneva',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(26,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9544,NULL,NULL,NULL,'Florence',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(27,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8778,NULL,NULL,NULL,'Engelberg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1121,NULL,1,NULL,'Annemasse',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,979,NULL,1,NULL,'Amsterdam',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Netherlands','154',NULL,'2022-05-24 12:48:12','2022-05-24 12:48:12',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,29356,NULL,NULL,NULL,'Waterford',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,23057,NULL,NULL,NULL,'Riyadh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(32,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34642,NULL,NULL,NULL,'Lugano',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(33,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15524,NULL,NULL,NULL,'Limerick',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(34,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14671,NULL,NULL,NULL,'Kylemore',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14255,NULL,NULL,NULL,'Knock/mayo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14014,NULL,NULL,NULL,'Killarney',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13067,NULL,NULL,NULL,'Jeddah',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Saudi Arabia','186',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(38,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8222,NULL,NULL,NULL,'Dublin',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8219,0,NULL,NULL,'Dubai',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'United Arab Emirates','228',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6392,NULL,NULL,NULL,'Claremorris',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1869,NULL,1,NULL,'Avoca',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Ireland','105',NULL,'2022-05-24 15:02:25','2022-05-24 15:02:25',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36491,NULL,NULL,NULL,'Mawsynram',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28058,NULL,NULL,NULL,'Udaipur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34510,NULL,NULL,NULL,'Patan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20897,NULL,NULL,NULL,'Patan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nepal','153',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18869,NULL,NULL,NULL,'Nagarkot',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nepal','153',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18697,NULL,NULL,NULL,'Munnar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13741,NULL,NULL,NULL,'Kaziranga National Park',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13672,NULL,NULL,NULL,'Kathmandu',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nepal','153',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13184,NULL,NULL,NULL,'Jodhpur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12995,NULL,NULL,NULL,'Jaipur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6561,NULL,NULL,NULL,'Cochin',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6194,NULL,NULL,NULL,'Chitwan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nepal','153',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(54,NULL,NULL,'',NULL,'<p>asd asdasda asd</p>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,670,1,0,NULL,'Alleppey',9,NULL,NULL,2,NULL,NULL,'54_1662715064.jpg',NULL,'India','101',NULL,'2022-05-24 17:12:23','2022-05-24 17:12:23',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(55,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36819,NULL,NULL,NULL,'Doodhpathri',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36425,NULL,NULL,NULL,'York',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30533,NULL,NULL,NULL,'Zug',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(58,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34021,NULL,NULL,NULL,'Warwick',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(59,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28729,NULL,NULL,NULL,'Vienna',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(60,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28668,NULL,NULL,NULL,'Vevey',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(61,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28449,NULL,NULL,NULL,'Varanasi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(62,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35524,NULL,NULL,NULL,'Turtuk',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(63,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34288,NULL,NULL,NULL,'Trivandrum',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(64,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,27156,NULL,NULL,NULL,'Thekkady',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(65,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26286,NULL,NULL,NULL,'Stuttgart',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(66,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,26114,NULL,NULL,NULL,'Stirling',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(67,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,25897,1,NULL,NULL,'Srinagar',11,NULL,NULL,1,NULL,NULL,'67_1662714952.jpg',NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(68,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,25651,NULL,NULL,NULL,'Sonmarg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(69,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,25504,NULL,NULL,NULL,'Snowdonia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(70,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,25278,NULL,NULL,NULL,'Singapore',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Singapore','190',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(71,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35295,NULL,NULL,NULL,'Sham Valley',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(72,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,24828,NULL,NULL,NULL,'Sentosa Island',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Singapore','190',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(73,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35528,NULL,NULL,NULL,'Salzburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(74,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,24055,NULL,NULL,NULL,'Salzburg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(75,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,24007,NULL,NULL,NULL,'Salisbury',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(76,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,22026,NULL,NULL,NULL,'Prague',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Czech Republic','58',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(77,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,32511,0,NULL,NULL,'Port Blair',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(78,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21687,NULL,NULL,NULL,'Pokhara',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Nepal','153',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(79,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21625,NULL,NULL,NULL,'Plymouth',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(80,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21061,NULL,NULL,NULL,'Pembroke',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(81,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21043,NULL,NULL,NULL,'Pelling',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(82,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35281,NULL,NULL,NULL,'Pangong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(83,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20687,NULL,NULL,NULL,'Pamukkale',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(84,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20566,NULL,NULL,NULL,'Pahalgam',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(85,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20496,NULL,NULL,NULL,'Oxford',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(86,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,19786,NULL,NULL,NULL,'Nuremberg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(87,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35282,NULL,NULL,NULL,'Nubra',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(88,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34643,NULL,NULL,NULL,'Neuchatel',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(89,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34567,NULL,NULL,NULL,'Neil Island',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(90,NULL,NULL,'',NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,18892,1,NULL,NULL,'Nainital',11,NULL,NULL,1,NULL,NULL,'90_1662715253.jpg',NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,'','','','',NULL,NULL,NULL,1),(91,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18776,NULL,NULL,NULL,'Mussoorie',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(92,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,18308,NULL,NULL,NULL,'Montreux',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(93,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,17686,NULL,NULL,NULL,'Milan',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(94,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31885,NULL,NULL,NULL,'Male',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16508,NULL,NULL,NULL,'Male',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maldives','133',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(96,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,16505,NULL,NULL,NULL,'Maldives',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maldives','133',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(97,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15593,NULL,NULL,NULL,'Linz',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(98,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15539,NULL,NULL,NULL,'Lina',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(99,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,15229,NULL,NULL,NULL,'Leh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31555,NULL,NULL,NULL,'Lake District',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34296,NULL,NULL,NULL,'Ladakh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34559,NULL,NULL,NULL,'Lachung',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(103,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31490,NULL,NULL,NULL,'La Spezia-ortonovo',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(104,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,31489,NULL,NULL,NULL,'La Spezia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Italy','107',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14455,NULL,NULL,NULL,'Kovalam',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(106,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14368,NULL,NULL,NULL,'Konya',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(107,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35393,NULL,NULL,NULL,'Khardongla',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(108,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12905,NULL,NULL,NULL,'Istanbul',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,12775,NULL,NULL,NULL,'Inverness',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(110,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35399,NULL,NULL,NULL,'Hunder',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(111,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11658,NULL,NULL,NULL,'Havelock Island',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11197,NULL,NULL,NULL,'Gulmarg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(113,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10570,NULL,NULL,NULL,'Gmunden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(114,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10494,NULL,NULL,NULL,'Glasgow',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(115,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10106,NULL,NULL,NULL,'Gangtok',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,9764,NULL,NULL,NULL,'Frankfurt',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Germany','83',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,8520,NULL,NULL,NULL,'Edinburgh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7701,NULL,NULL,NULL,'Delhi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7556,NULL,NULL,NULL,'Darjeeling',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6917,NULL,NULL,NULL,'Corbett',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35394,NULL,NULL,NULL,'Chumathang',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(122,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34297,NULL,NULL,NULL,'Chitrakoot',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(123,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,6042,NULL,NULL,NULL,'Chester',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(124,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5145,NULL,NULL,NULL,'Cardiff',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,5094,NULL,NULL,NULL,'Cappadocia',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4662,NULL,NULL,NULL,'Caernarfon',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(127,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4527,NULL,NULL,NULL,'Bursa',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,4304,NULL,NULL,NULL,'Brussels',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Belgium','21',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,3517,NULL,NULL,NULL,'Bodhgaya',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(130,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2766,NULL,NULL,NULL,'Belfast',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2532,NULL,NULL,NULL,'Bath',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'UNITED KINGDOM','469',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(132,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1991,NULL,NULL,NULL,'Baden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Switzerland','210',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(133,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1990,NULL,1,NULL,'Baden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'France','76',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1989,NULL,1,NULL,'Baden',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Austria','14',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(135,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1151,NULL,1,NULL,'Antalya',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Turkey','222',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(136,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,650,0,0,NULL,'Allahabad',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(137,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,28264,NULL,NULL,NULL,'Uttarkashi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-06-02 12:20:38','2022-06-02 12:20:38',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(138,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34295,NULL,NULL,NULL,'Rudraprayag',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-06-02 12:20:39','2022-06-02 12:20:39',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(139,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,23018,NULL,NULL,NULL,'Rishikesh',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-06-02 12:20:39','2022-06-02 12:20:39',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(140,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13758,NULL,NULL,NULL,'Kedarnath',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-06-02 12:20:39','2022-06-02 12:20:39',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(141,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,11530,NULL,NULL,NULL,'Haridwar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-06-02 12:20:39','2022-06-02 12:20:39',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34396,NULL,NULL,NULL,'Guptakashi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-06-02 12:20:39','2022-06-02 12:20:39',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,34474,NULL,NULL,NULL,'Barkot',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-06-02 12:20:39','2022-06-02 12:20:39',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(144,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2001,NULL,NULL,NULL,'Badrinath',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-06-02 12:20:39','2022-06-02 12:20:39',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(145,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,20925,NULL,NULL,NULL,'Pattaya',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thailand','215',NULL,'2022-07-18 13:54:26','2022-07-18 13:54:26',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(146,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13683,NULL,NULL,NULL,'Katra',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-07-18 13:54:26','2022-07-18 13:54:26',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2266,NULL,NULL,NULL,'Bangkok',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thailand','215',NULL,'2022-07-18 13:54:26','2022-07-18 13:54:26',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(148,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,974,NULL,0,NULL,'Amritsar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-07-18 13:54:26','2022-07-18 13:54:26',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(149,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,35570,NULL,NULL,NULL,'Ayodhya',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(150,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,37030,NULL,NULL,NULL,'Andaman Island',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(151,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,36022,NULL,NULL,NULL,'Tadoba',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(152,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,22593,NULL,NULL,NULL,'Ranthambore',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(153,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,22558,NULL,NULL,NULL,'Ranakpur',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(154,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,22270,NULL,NULL,NULL,'Pushkar',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(155,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21319,NULL,NULL,NULL,'Phuket',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Thailand','215',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(156,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,21077,NULL,NULL,NULL,'Pench',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(157,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14637,NULL,NULL,NULL,'Kutch',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14578,NULL,NULL,NULL,'Kumarakom',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,14275,NULL,NULL,NULL,'Kochi',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,13508,NULL,NULL,NULL,'Kanha',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(161,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7824,NULL,NULL,NULL,'Dharamshala',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(162,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,7478,NULL,NULL,NULL,'Dalhousie',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(163,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,367,NULL,NULL,NULL,'Ajmer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,266,NULL,NULL,NULL,'Agra',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'India','101',NULL,'2022-08-30 17:26:01','2022-08-30 17:26:01',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1),(165,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2099,NULL,NULL,NULL,'Baku',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Azerbaijan','15',NULL,'2022-09-09 18:01:21','2022-09-09 18:01:21',NULL,NULL,'1','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1);
/*!40000 ALTER TABLE `tb_tbb2c_destinations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_tbb2c_newsletter`
--

DROP TABLE IF EXISTS `tb_tbb2c_newsletter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_tbb2c_newsletter` (
  `news_letter_id` int NOT NULL AUTO_INCREMENT,
  `news_letter_email` varchar(255) NOT NULL,
  `created_date` datetime NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`news_letter_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_tbb2c_newsletter`
--

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

--
-- Table structure for table `tb_tbb2c_packages_master`
--

DROP TABLE IF EXISTS `tb_tbb2c_packages_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_tbb2c_packages_master` (
  `PkgSysId` bigint NOT NULL AUTO_INCREMENT,
  `GTXPkgId` bigint NOT NULL,
  `GTXPkgSourceId` smallint NOT NULL,
  `AgencySysId` bigint NOT NULL,
  `IsFeatured` int NOT NULL,
  `lastMinuteDeal` int NOT NULL DEFAULT '0',
  `DisplayIndex` smallint NOT NULL,
  `PackageCategory` text,
  `ShortJsonInfo` text,
  `ItemType` tinyint DEFAULT '0',
  `PackageType` tinyint DEFAULT '0',
  `PackageSubType` tinyint DEFAULT '0',
  `LongJsonInfo` longtext NOT NULL,
  `Destinations` varchar(2000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `PackageSearchString` varchar(2000) NOT NULL,
  `HotDeal` varchar(255) DEFAULT NULL,
  `DestinationsId` varchar(200) NOT NULL,
  `MinPrice` decimal(18,0) NOT NULL,
  `MaxPrice` decimal(18,0) NOT NULL,
  `Nights` smallint NOT NULL,
  `Image` varchar(255) DEFAULT NULL,
  `MainImage` varchar(255) DEFAULT NULL,
  `hotelWebImage` varchar(2000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `MinPax` smallint NOT NULL,
  `PackTypeMask` varchar(50) NOT NULL,
  `PackRangeType` smallint NOT NULL,
  `PkgValidFrom` datetime NOT NULL,
  `PkgValidUntil` datetime NOT NULL,
  `BookingValidUntil` datetime NOT NULL,
  `StarRating` tinyint NOT NULL,
  `Countries` mediumtext NOT NULL,
  `CountryIds` varchar(255) NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `CreateDate` datetime NOT NULL,
  `CreatedBy` bigint NOT NULL,
  `UpdatedBy` bigint NOT NULL,
  `IsPublish` enum('1','0') NOT NULL DEFAULT '0',
  `IsActive` enum('1','0') NOT NULL DEFAULT '0',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `Keyword` text,
  `Description` text,
  `Metatag` text,
  `broucher` varchar(256) DEFAULT NULL,
  `packageNameUrl` varchar(500) DEFAULT NULL,
  `visaFAQ` text,
  `festivals` varchar(500) DEFAULT NULL,
  `packageItinerary` text,
  `oldPrice` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`PkgSysId`),
  FULLTEXT KEY `PackageSearchString` (`PackageSearchString`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_tbb2c_packages_master`
--

LOCK TABLES `tb_tbb2c_packages_master` WRITE;
/*!40000 ALTER TABLE `tb_tbb2c_packages_master` DISABLE KEYS */;
INSERT INTO `tb_tbb2c_packages_master` VALUES (1,35331,1,12577,0,0,0,'Honeymoon,Family,Hill Station,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":35331,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/kerala_galore_1650704766.jpg\",\"BookingValidUntill\":\"2023-03-24\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Munnar literally means the land of 3 rivers, colloquially mun means three and aar means rivers. It is a small hilly town, with the 3 rivers converging. The town is famous for both flora and fauna and this town has shades of colonial influence. After enjoying Munnar drive down to the plains and get to see the exotic backwaters of Alleppey\\/ Kumarakom.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Cochin\",\"DestinationPlacesSysId\":6561,\"SourcePlaces\":\"Cochin\",\"SourcePlaceSysId\":6561,\"AgencyName\":\"Connect India\",\"Name\":\"Kerala Galore\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6699\",\"SupplierName\":\"Skyway International Travels\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"B\\/fast & Dinner,Cab\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2023-03-24\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":365612,\"Name\":\"Abad Copper Castle\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.084856\",\"Long\":\"77.059456\",\"Address\":\"Kannan Devan Hills Munnar Kerala  Kannan Devan Hills\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"&quot;The resort is situated atop the Kannan Devan Hills, in Munnar at 1,600 m above sea level. It is on Pothumedu Road, just 2.5 kms from the main town- Munnar, 115 kms from Cochin International Airport and 125 kms from the Aluva railway station. This is the ideal destination for the guest&#039;s relaxing undisturbed holiday.The resort provides comfort and privacy along with nonintrusive service and guests are assured tranquility without any distractions so that they can talk and think in peace. This stunning holiday resort offers convenient and cosy guest rooms. All the rooms are equipped with modern amenities to provide comfort stay for the guests. For those looking for entertainment the hotel offers a games room. There is a multi-cuisine restaurant at the resort serving various kinds of tasty dishes.&quot;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/f8\\/db\\/f8dba49948fbbaf1205640ad237c76199a819974.jpg\",\"AccoAminitiesMask\":\"1110001000001110110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365611,\"Name\":\"Misty Mountain Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.078262\",\"Long\":\"77.062802\",\"Address\":\"Randam Mile\\/Second Mile Junction Pallivasal Munnar 685565  Randam Mile\\/Second Mile Junction\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Property Location When you stay at Misty Mountain Resort in Munnar, you&#039;ll be in the mountains and convenient to Mount Carmel Church and Carmal Church.  This hotel is within close proximity of St. Thomas Marthoma and Rose Garden.Rooms Make yourself at home in one of the 48 guestrooms featuring minibars. Wireless Internet access (surcharge) keeps you connected, and cable programming is available for your entertainment. Private bathrooms with bathtubs or showers feature slippers and hair dryers. Conveniences include phones, as well as complimentary newspapers and coffee\\/tea makers.Amenities Pamper yourself with a visit to the spa, which offers massages, body treatments, and facials. This hotel also features complimentary wireless Internet access, a television in a common area, and tour\\/ticket assistance.Dining Satisfy your appetite at the hotel&#039;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of 24-hour room service.Business, Other Amenities Featured amenities include a business center, complimentary newspapers in the lobby, and multilingual staff. Event facilities at this hotel consist of a conference center and a meeting room. Free self parking is available onsite.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1000000000000000110\",\"AccoAminities\":[{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":419260,\"Name\":\"The Munnar Queen\",\"Star\":\"3.50\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"Near CSI Church, Chithirapuram South, Munnar 685565, Idukki, Kerala\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at The Munnar Queen in Chithirapuram, you&#039;ll be close to Dreamland Children Park and Attukad Waterfall.  This hotel is within the vicinity of Mount Carmel Church and Carmal Church.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 48 guestrooms featuring refrigerators and minibars. Rooms have private balconies. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take advantage of recreation opportunities such as an outdoor pool or take in the view from a rooftop terrace and a garden. Additional amenities at this hotel include complimentary wireless Internet access, supervised childcare\\/activities, and tour\\/ticket assistance. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Grab a bite at one of the hotel&#039;s 2 restaurants, or stay in and take advantage of room service (during limited hours).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a business center, express check-in, and complimentary newspapers in the lobby. Event facilities at this hotel consist of conference space and a meeting room. Guests may use a shuttle from the airport to the hotel for a surcharge, and free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/a3\\/49\\/a349ec73208f2a9dcb1e22e20d8daf62757ad8d2.jpg\",\"AccoAminitiesMask\":\"1010000000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365320,\"Name\":\"KTDC Tea County\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0865077452426\",\"Long\":\"77.0651546858444\",\"Address\":\"KTDC Hill Resort, Munnar, Kerala, Munnar, India, 685612\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5eLyz2QskXxNF67nZTfvXcFz01QV9ib62xmULM8bI\\/0IG2F8ItlANAU1oS3KL3vqYg=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365620,\"Name\":\"Camelot Resort, Munnar\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.059525\",\"Long\":\"77.00758\",\"Address\":\"Letchmi Estate Munnar P.O. Idukki District Kerala State\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Property Location When you stay at Camelot Resort in Munnar, you&#039;ll be in the mountains and within the vicinity of Attukad Waterfall and Tata Tea Museum.  This hotel is within the vicinity of Carmal Church and Mount Carmel Church.Rooms Make yourself at home in one of the 12 guestrooms. Digital television is provided for your entertainment. Conveniences include phones and desks.Amenities Take in the views from a garden and make use of amenities such as tour\\/ticket assistance.Dining Enjoy a satisfying meal at a restaurant serving guests of Camelot Resort.Business, Other Amenities Event facilities at this hotel consist of conference space and a meeting room. Free self parking is available onsite.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/85\\/75\\/8575c763e148206b47ecd9b9b35caf66cb033bc8.jpg\",\"AccoAminitiesMask\":\"1010000000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":141531,\"Name\":\"Ambady Estate\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.041593\",\"Long\":\"77.039206\",\"Address\":\"3rd Mile, Pallivasal. P.O Chithirapuram\"},\"Images\":{\"Image\":[{\"ImagId\":3115421,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_1_t.jpg\"},{\"ImagId\":3115422,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_2_t.jpg\"},{\"ImagId\":3115423,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_3_t.jpg\"},{\"ImagId\":3115424,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_4_t.jpg\"},{\"ImagId\":3115425,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_5_t.jpg\"},{\"ImagId\":3115426,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_6_t.jpg\"},{\"ImagId\":3115427,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_7_t.jpg\"},{\"ImagId\":3115428,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_8_t.jpg\"},{\"ImagId\":3115429,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_10_t.jpg\"},{\"ImagId\":3115430,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/2fd949f3_t.jpg\"},{\"ImagId\":3115431,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/29cab570_t.jpg\"},{\"ImagId\":3115432,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/fa3e347c_t.jpg\"},{\"ImagId\":3115433,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/6ec8c29f_t.jpg\"},{\"ImagId\":3115434,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/07de67a7_t.jpg\"},{\"ImagId\":3115435,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_11_t.jpg\"},{\"ImagId\":3115436,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/01c028eb_t.jpg\"},{\"ImagId\":3115437,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/f66d0a3c_t.jpg\"},{\"ImagId\":3115438,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/a398f299_t.jpg\"},{\"ImagId\":3115439,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/bee6be1e_t.jpg\"},{\"ImagId\":3115440,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5403c43e_t.jpg\"},{\"ImagId\":3115441,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/e2234d14_t.jpg\"},{\"ImagId\":3115442,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/06585667_t.jpg\"},{\"ImagId\":3115443,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_13_t.jpg\"},{\"ImagId\":3115444,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/a7ab141b_t.jpg\"},{\"ImagId\":3115445,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_14_t.jpg\"},{\"ImagId\":3115446,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/65f53baa_t.jpg\"}]},\"CityId\":18697,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Munnar, Ambady Estate is in a rural location and close to Dreamland Children Park and Attukad Waterfall.  This hotel is within the vicinity of Carmal Church and Mount Carmel Church.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 8 guestrooms featuring refrigerators and minibars (stocked with some free items). Rooms have private patios. LED televisions with cable programming provide entertainment, while complimentary wireless Internet access keeps you connected. Bathrooms have shower\\/tub combinations and complimentary toiletries.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;You can experience a safari, and enjoy an outdoor tennis court. Additional features at this hotel include complimentary wireless Internet access, concierge services, and complimentary babysitting\\/childcare. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&amp;apos;s room service (during limited hours).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and luggage storage. Guests may use a roundtrip airport shuttle for a surcharge, and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_1_t.jpg\",\"AccoAminitiesMask\":\"111001010000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":419268,\"Name\":\"Mountain Club Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.045144\",\"Long\":\"77.179197\",\"Address\":\"Chinnakanal Suryanelli Road, Chinnakanal, Munnar 685618, Kerala\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Located in Munnar, Mountain Club - Munnar is in the mountains, minutes from Mount Carmel Church, and close to Carmal Church.  This 4-star hotel is within close proximity of Kundala Dam Lake and St. Thomas Marthoma.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Treat yourself to a stay in one of the 47 individually furnished guestrooms, featuring fireplaces. Rooms have private balconies. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Conveniences include phones, as well as desks and complimentary newspapers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Pamper yourself with onsite massages and body treatments. If you&#039;re looking for recreational opportunities, you&#039;ll find a health club, an outdoor pool, and a sauna. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and an arcade\\/game room. Getting to nearby attractions is a breeze with the area shuttle (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Satisfy your appetite at the hotel&#039;s restaurant, where you can take in a pool view. Snacks are also available at a coffee shop\\/cafe. Mingle with other guests at a complimentary reception, held daily. A complimentary buffet breakfast is served daily from 7:30 AM to 10 AM.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a business center, express check-in, and express check-out. Planning an event in Munnar? This hotel has 3000 square feet (279 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/09\\/6c\\/096c43ef711ad0c34ca4c28e206da14ca622ea90.jpg\",\"AccoAminitiesMask\":\"1010000100001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365323,\"Name\":\"Club Mahindra Mount Serene\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.039884\",\"Long\":\"77.16018\",\"Address\":\"Chinnakanal Village,Suryanelli(Via) Iddukki (District Munnar),Kerala,Kerala,India, 685618\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Cloud View -Munnar is situated in Chinnakanal ( Munnar), a destination famous for its breathtaking natural beautiful rolling hills with carpeted in emerald-green tea plantations.Cloud View Munnar offer you best of nature and luxury,making it the best with best in class.  51 guest rooms having modern amenties and facilities for a comfortable visit.\",\"MainImg\":\"https:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICg7A8cpsaijimfNQMaEw56GeGxvIyJ2ivLkSZ46Cb0VhI6Vd+WQRPwSvrYou6Nx9VW8Xt5Arvjl5nANd2C0EkJDXKfLQRGIapU=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":13656,\"Title\":\"Kfdc Horticulture Garden\",\"Description\":\"Scenic botanical garden with greenhouses full of rare flowers, succulents &amp;amp; other specimens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kfdc_Horticulture_Garden__18697_1579525808.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1591,\"Title\":\"Shooting Point (Photo point)\",\"Description\":\"Also known as Photo point, Shooting Point is a ideal scenic beauty created by silver oak trees and green tea plantations, situated at a distance of 3 kms from Munnar on the way to Mattupetty. Photo point is an suitable spot for amateur as well as professional photographers. Surrounded by gardens, tea plantations and streams, Photo point is such a mesmerizing spot. Tea, coffee, spices, cardamom and pepper and homemade chocolates can buy near the Photo point.. The idea behind visiting  is specifically to indulge in typical tourist activity, but more to click and stock up all the photographs .\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Shooting_Point_(Photo_point)_18697_1521639368.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":8096,\"Title\":\"Kalaripayattu Show\",\"Description\":\"Kalaripayattu is the traditional martial art practiced in Kerala. Famed as the mother of all martial arts, this ancient art-form is believed to have been adapted into various martial art forms like karate, kung-fu and judo.\\r\\nThe one hour evening performance show of Kalaripayattu in Munnar, includes showcasing of body control, flexibility and various form of exercises. Performed by skilled and trained artists, this show showcases their fighting skills with bare hands andmetallic weapons like swords, spears, shield and others.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kalaripayattu_Show_18697_1547119452.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":504688,\"Name\":\"Aqua Holidays\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"House Boat\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":419472,\"Name\":\"Marvel Cruises\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.500334\",\"Long\":\"76.33935\",\"Address\":\"St Francis Xavier Church Rd, Kathrikadavu, Kaloor, Koch, Cochin, Finishing point, ALLEPPEY, KERALA, India, Pin-688013, 688013\"},\"Images\":[],\"CityId\":670,\"Brief\":\"Guests can sail through in some quiet corner of Alleppey with their stay at Marvel Cruises. Designed in wood, this beautiful houseboat in Alleppey provides wide range of comforts such as wireless connectivity, newspaper, luggage storage space and room service is offered but for limited hours only. Guests can enjoy sitting comfortably in the seating area along with scenic surroundings.null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/3\\/nxd\\/mau\\/pyf\\/dbq\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"House Boat\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":13656,\"Title\":\"Kfdc Horticulture Garden\",\"Description\":\"Scenic botanical garden with greenhouses full of rare flowers, succulents &amp;amp; other specimens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kfdc_Horticulture_Garden__18697_1579525808.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1591,\"Title\":\"Shooting Point (Photo point)\",\"Description\":\"Also known as Photo point, Shooting Point is a ideal scenic beauty created by silver oak trees and green tea plantations, situated at a distance of 3 kms from Munnar on the way to Mattupetty. Photo point is an suitable spot for amateur as well as professional photographers. Surrounded by gardens, tea plantations and streams, Photo point is such a mesmerizing spot. Tea, coffee, spices, cardamom and pepper and homemade chocolates can buy near the Photo point.. The idea behind visiting  is specifically to indulge in typical tourist activity, but more to click and stock up all the photographs .\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Shooting_Point_(Photo_point)_18697_1521639368.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":8096,\"Title\":\"Kalaripayattu Show\",\"Description\":\"Kalaripayattu is the traditional martial art practiced in Kerala. Famed as the mother of all martial arts, this ancient art-form is believed to have been adapted into various martial art forms like karate, kung-fu and judo.\\r\\nThe one hour evening performance show of Kalaripayattu in Munnar, includes showcasing of body control, flexibility and various form of exercises. Performed by skilled and trained artists, this show showcases their fighting skills with bare hands andmetallic weapons like swords, spears, shield and others.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kalaripayattu_Show_18697_1547119452.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"253380\",\"Title\":\"COCHIN\\/MUNNAR (140 Kms\\/ 5 HRS)\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Pick up from Cochin Airport\\/ Ernakulum Railway Station and drive to Munnar - which is a quaint hill station perched on the slopes of Western Ghats. It is both charming and old-fashioned, with colonial-style buildings existing with modern structures. Stop at Cheeyapara waterfalls en route.&amp;nbsp; Munnar is indeed a photographer&amp;#39;s delight. Overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":365612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":365611,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":419260,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365320,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":365620,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":141531,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":419268,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"},{\"IsIncluded\":false,\"Id\":365323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":318,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253383\",\"Title\":\"MUNNAR LOCAL SIGHT SEEING\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, proceed on a full-day tour of Munnar attractions. The Horticultural Garden, Photo point, Mattupetty Dam, and Kundala Dam are all located on the route to Top Station. Kundala Dam is known for the Arch type of architecture. Echo point on the lower slopes of the region is a picturesque spot where you would find your voice echoing and thus derives the name Echo Point. All the above places are well worth a visit. With tourists having a flair for culture - they can spend their time in the evening at the Punarjani, a Traditional village (Optional activity), where they get to see a piece of Kerala culture in the form of Kathakali Dance and Kalari pattu - a form of ancient martial arts, a visual treat to the eyes. Overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":365612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":365611,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":419260,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365320,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":365620,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"},{\"IsIncluded\":false,\"Id\":141531,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":419268,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"},{\"IsIncluded\":false,\"Id\":365323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":13656,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1591,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":925,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8096,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253386\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253389\",\"Title\":\"MUNNAR \\/ ALLEPPY  (170 kms \\/ 4 hrs)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, from the mountains to the plains drive down the countryside and get a glimpse of the picturesque countryside. Set out on an enchanting backwater cruise in a traditional Kerala houseboat. While cruising in the houseboat enjoy the scenes of the countryside - skim past bowed down paddy fields, duck farms, and indigenous dykes to see paddy cultivation in fields, situated below the sea level! And tree-lined and coconut palms swaying majestically on the banks are a real treat to the eyes. Overnight stay at houseboat in&amp;nbsp; Alleppey with all meals.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":504688,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"House Boat\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":419472,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"House Boat\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":419472,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"House Boat\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253392\",\"Title\":\"ALLEPPY \\/ COHCIN(70 kms \\/ 2 hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out from the houseboat and return to Cochin. Places prior to reaching the airport\\/train station will include a visit to Fort Kochi and Mattancherry to taste a piece of the ancient civilization of the 15 and 16th centuries. Thereafter, get dropped to board a train\\/flight for onward destination, feeling contended of a holiday you enjoyed in Kerala with a lasting impression of a lifetime. The tour ends here.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2535,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2803,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"35331\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":11333,\"priceDoubleOcc\":\"14000.00\",\"priceSingleOcc\":39000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":40000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":40000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":40000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":41000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":14667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"35332\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"18000.00\",\"priceSingleOcc\":36000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":22667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":37000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":22667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":37000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":22667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":37000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":24000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":39000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":25333,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":41000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"35333\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":17333,\"priceDoubleOcc\":\"20000.00\",\"priceSingleOcc\":54000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":18000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":55000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":18000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":55000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":18000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":55000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":19333,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":57000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":21333,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":60000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"35331\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":11333,\"priceDoubleOcc\":\"14000.00\",\"priceSingleOcc\":39000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":40000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":40000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":40000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":41000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":14667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":44000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"35332\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"18000.00\",\"priceSingleOcc\":36000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":22667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":37000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":22667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":37000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":22667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":37000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":24000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":39000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":25333,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":41000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"9000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"35333\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":17333,\"priceDoubleOcc\":\"20000.00\",\"priceSingleOcc\":54000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":18000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":55000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":18000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":55000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":18000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":55000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":19333,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":57000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-24\",\"Currency\":1,\"priceTripleOcc\":21333,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":60000,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;1. GST&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;2. Lunch\\/Dinner wherever not specified.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;3. Expenses personal in nature like tips, laundry, telephones etc.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;4. Flight\\/Train and Bus Tickets (Unless specified in the quote)&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;5. Entrance to all attractions, activities, boating, camera charges etc.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;6. Any expenses arising out of any force majeure circumstances like political situations etc.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;7. Any service not specified in the inclusions.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;1. Nights stay in the Hotel \\/Resort (as per category chosen), with breakfast Taxes or as per the meal plan mentioned.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2. All accommodation in base category rooms, unless specified otherwise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3. Transportation by A\\/C Car \\/ Coach, driver allowance, fuel, parking charges as per the itinerary&amp;nbsp; only.&amp;nbsp; A\\/C will not be operational in Hill station.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;4. Drivers allowance, parking, toll charges and inter- state permit and all applicable Taxes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"253380\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[253380],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253383\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[253383],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253386\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[253386],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253389\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[253389],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253392\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[253392],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Munnar,Alleppey','Munnar,Kerala,Indian Subcontinent,South India,India,Alleppey,Cochin',NULL,'18697,670',14000,26000,3,NULL,NULL,NULL,2,'',0,'2022-05-24 00:00:00','2023-03-24 00:00:00','2023-03-24 00:00:00',3,'India','101','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kerala-galore',NULL,NULL,NULL,0),(2,33387,1,12577,0,0,0,'Adventure,Family,Heritage,Culture,Shopping and Nightlife,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":33387,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2023-04-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Riyadh\",\"DestinationPlacesSysId\":23057,\"SourcePlaces\":\"Jeddah\",\"SourcePlaceSysId\":13067,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Jeddah & Riyadh Combo\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6729\",\"SupplierName\":\"IN HOUSE\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Airport Transfers,Activity,Sightseeing\",\"PackageType\":\"Adventure,Family,Heritage,Culture,Shopping and Nightlife,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2023-04-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13067,\"Title\":\"Jeddah\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":106278,\"Name\":\"Radisson Blu Plaza Jeddah\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.556\",\"Long\":\"39.1689\",\"Address\":\"King Abdullah Road Jeddah 21332 Western Province Saudi Arabia\"},\"Images\":{\"Image\":[{\"ImagId\":2327565,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_22_t.jpg\"},{\"ImagId\":2327566,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_23_t.jpg\"},{\"ImagId\":2327567,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_25_t.jpg\"},{\"ImagId\":2327568,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_28_t.jpg\"},{\"ImagId\":2327569,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_51_t.jpg\"},{\"ImagId\":2327570,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_82_t.jpg\"},{\"ImagId\":2327571,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_135_t.jpg\"},{\"ImagId\":2327572,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_138_t.jpg\"},{\"ImagId\":2327573,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_151_t.jpg\"},{\"ImagId\":2327574,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_157_t.jpg\"},{\"ImagId\":2327575,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_159_t.jpg\"},{\"ImagId\":2327576,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_184_t.jpg\"},{\"ImagId\":2327577,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_141_t.jpg\"},{\"ImagId\":2327578,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_130_t.jpg\"},{\"ImagId\":2327579,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_174_t.jpg\"},{\"ImagId\":2327580,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_150_t.jpg\"},{\"ImagId\":2327581,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_133_t.jpg\"},{\"ImagId\":2327582,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_140_t.jpg\"},{\"ImagId\":2327583,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_179_t.jpg\"},{\"ImagId\":2327584,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_183_t.jpg\"},{\"ImagId\":2327585,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_158_t.jpg\"},{\"ImagId\":2327586,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_154_t.jpg\"},{\"ImagId\":2327587,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_168_t.jpg\"},{\"ImagId\":2327588,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_188_t.jpg\"},{\"ImagId\":2327589,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_195_t.jpg\"},{\"ImagId\":2327590,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_196_t.jpg\"},{\"ImagId\":2327591,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_200_t.jpg\"},{\"ImagId\":2327592,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_202_t.jpg\"},{\"ImagId\":2327593,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_205_t.jpg\"},{\"ImagId\":2327594,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_201_t.jpg\"},{\"ImagId\":2327595,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/ee29c6b9_t.jpg\"},{\"ImagId\":2327596,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/3f326e21_t.jpg\"},{\"ImagId\":2327597,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/fe3d04bb_t.jpg\"},{\"ImagId\":2327598,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/537fe208_t.jpg\"},{\"ImagId\":2327599,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/3891f5a7_t.jpg\"},{\"ImagId\":2327600,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/6157d34c_t.jpg\"},{\"ImagId\":2327601,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/16a49c65_t.jpg\"},{\"ImagId\":2327602,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/269e3dfd_t.jpg\"},{\"ImagId\":2327603,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/56dd5a3f_t.jpg\"},{\"ImagId\":2327604,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/49b3f0ab_t.jpg\"},{\"ImagId\":2327605,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/d15d3c18_t.jpg\"},{\"ImagId\":2327606,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/67648ea7_t.jpg\"},{\"ImagId\":2327607,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/6f856e04_t.jpg\"},{\"ImagId\":2327608,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/a1f43cf6_t.jpg\"},{\"ImagId\":2327609,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/37ee403d_t.jpg\"},{\"ImagId\":2327610,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/48ac1d65_t.jpg\"},{\"ImagId\":2327611,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/f95170d6_t.jpg\"},{\"ImagId\":2327612,\"Type\":\"Thumbnail\",\"Order\":48,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/3ad18491_t.jpg\"},{\"ImagId\":2327613,\"Type\":\"Thumbnail\",\"Order\":49,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/41ea81d5_t.jpg\"},{\"ImagId\":2327614,\"Type\":\"Thumbnail\",\"Order\":50,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/a723d97b_t.jpg\"},{\"ImagId\":2327615,\"Type\":\"Thumbnail\",\"Order\":51,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/308db4dc_t.jpg\"},{\"ImagId\":2327616,\"Type\":\"Thumbnail\",\"Order\":52,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/d28540c6_t.jpg\"},{\"ImagId\":2327617,\"Type\":\"Thumbnail\",\"Order\":53,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/df51dd0f_t.jpg\"},{\"ImagId\":2327618,\"Type\":\"Thumbnail\",\"Order\":54,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/537e8003_t.jpg\"},{\"ImagId\":2327619,\"Type\":\"Thumbnail\",\"Order\":55,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/01408d41_t.jpg\"},{\"ImagId\":2327620,\"Type\":\"Thumbnail\",\"Order\":56,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/059ce3ab_t.jpg\"},{\"ImagId\":2327621,\"Type\":\"Thumbnail\",\"Order\":57,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/0c296021_t.jpg\"},{\"ImagId\":2327622,\"Type\":\"Thumbnail\",\"Order\":58,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/61cce70f_t.jpg\"},{\"ImagId\":2327623,\"Type\":\"Thumbnail\",\"Order\":59,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/ad988cd8_t.jpg\"},{\"ImagId\":2327624,\"Type\":\"Thumbnail\",\"Order\":60,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/b75d590b_t.jpg\"},{\"ImagId\":2327625,\"Type\":\"Thumbnail\",\"Order\":61,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/fa8cb3ef_t.jpg\"},{\"ImagId\":2327626,\"Type\":\"Thumbnail\",\"Order\":62,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/a3f041a7_t.jpg\"},{\"ImagId\":2327627,\"Type\":\"Thumbnail\",\"Order\":63,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/35ee2018_t.jpg\"},{\"ImagId\":2327628,\"Type\":\"Thumbnail\",\"Order\":64,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/55fcf7b1_t.jpg\"},{\"ImagId\":2327629,\"Type\":\"Thumbnail\",\"Order\":65,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/d0774bf9_t.jpg\"},{\"ImagId\":2327630,\"Type\":\"Thumbnail\",\"Order\":66,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/de417ad5_t.jpg\"},{\"ImagId\":2327631,\"Type\":\"Thumbnail\",\"Order\":67,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/dfe71d35_t.jpg\"},{\"ImagId\":2327632,\"Type\":\"Thumbnail\",\"Order\":68,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/f2806a27_t.jpg\"},{\"ImagId\":2327633,\"Type\":\"Thumbnail\",\"Order\":69,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/8bd0edea_t.jpg\"}]},\"CityId\":13067,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at Radisson Blu Plaza Hotel, Jeddah in Jeddah, you&amp;apos;ll be in a shopping district and minutes from Al Salaam Mall, and close to Andalus Mall.  This 4-star hotel is within close proximity of King Abdulaziz University and Gate to Makkah.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 112 air-conditioned rooms featuring fireplaces and LED televisions. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment. Conveniences include safes and desks, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Take advantage of recreation opportunities including a health club and an indoor pool. Additional amenities at this hotel include complimentary wireless Internet access and concierge services.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in a coffee shop\\/caf&eacute;. Or stay in and take advantage of the hotel&amp;apos;s 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a business center, and complimentary newspapers in the lobby. A roundtrip airport shuttle is available for a surcharge.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/12000000\\/11680000\\/11673000\\/11672905\\/11672905_22_t.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Classic Room \",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":24768,\"Title\":\"4x4 Desert Safari with Dinner\",\"Description\":\"&lt;p&gt;We will board our 4x4, and drive you to impressive golden sand dunes. followed and of course some dune bashing with our expert Bedouin drivers. After these activities, we will have a relaxing time between the dunes where we serve a nice meal, water, juices, and coffee &amp; tea.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13067,\"CityName\":\"Jeddah\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13067\\/sightseeing\\/4539_1647007968.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":24767,\"Title\":\"Jeddah Half Day City Tour\",\"Description\":\"&lt;p&gt;Enjoy a wonderful walk-in Al-Balad, the old part of the city. This walking tour of the old town will take you along all the less known must-see local spots: Old Market hidden gems, Old Jeddah hidden galleries, local&lt;\\/p&gt;&lt;p&gt;Jeddah food only for locals... While visiting Al-Balad, visitors will be taken to see Beit Nassif, one of the prominent renovated structures in the old city, which dates back to the mid-1800s. The five-story building provides a rare opportunity for visitors to experience the blend of traditional architecture with modernity.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13067,\"CityName\":\"Jeddah\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13067\\/sightseeing\\/4539_1647008449.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":24781,\"Title\":\"Half Day Ad-Diriyah Tour\",\"Description\":\"&lt;p&gt;\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t&lt;\\/p&gt;&lt;div class=&quot;page&quot; title=&quot;Page 8&quot;&gt;\\r\\n\\t\\t\\t&lt;div class=&quot;layoutArea&quot;&gt;\\r\\n\\t\\t\\t\\t&lt;div class=&quot;column&quot;&gt;\\r\\n\\t\\t\\t\\t\\t&lt;p&gt;&lt;span style=&quot;font-size: 7.000000pt font-family: &#039;Arial&#039;&quot;&gt;We drive for 30 minutes to Ad-Diriyah, located on the western bank of the Wadi Hanifah, a dry riverbed where water flows only after big rains. Ad-Diriyah used to be the capital of\\r\\nthe Najd (the central plateau of the Arabian Peninsula) from the 15th century until the beginning of the 18th century. It is the birthplace of the first Saudi Kingdom and its\\r\\nimportance in the history of the Arabian Peninsula was highlighted when it was listed as UNESCO World Heritage Site, in 2010, as the most brilliant example of Najdi\\r\\narchitecture. The history of Ad-Diriyah goes back thousands of years as it was on an ancient trade and pilgrimage route, acting as a meeting point for those travelling to or from\\r\\nAsia, Africa and Europe. Our visit to the site allows us to admire its incredible architecture before returning to downtown Riyadh. As we drive towards the city , we have the\\r\\nopportunity to admire the rapid development of this cosmopolitan capital, planned by the Saudi government to become the biggest metropole in the Middle East in the next 10\\r\\nyears.&nbsp;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t\\t\\t\\t&lt;\\/div&gt;\\r\\n\\t\\t\\t&lt;\\/div&gt;\\r\\n\\t\\t&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":23057,\"CityName\":\"Riyadh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23057\\/sightseeing\\/4539_1647077857.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":24780,\"Title\":\"Half Day Riyadh City Tour\",\"Description\":\"&lt;p&gt;\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t&lt;\\/p&gt;&lt;div class=&quot;page&quot; title=&quot;Page 8&quot;&gt;\\r\\n\\t\\t\\t&lt;div class=&quot;layoutArea&quot;&gt;\\r\\n\\t\\t\\t\\t&lt;div class=&quot;column&quot;&gt;\\r\\n\\t\\t\\t\\t\\t&lt;p&gt;&lt;span style=&quot;font-family: Arial&quot;&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;We start our tour of mystic Riyadh by visiting the National Museum. The primary custodian of Saudi national heritage and culture, it is a place of learning and discovery that hosts\\r\\na unique collection of artefacts and covers the whole history of the Arabian Peninsula right up to modern times. After that, we head to the nearby Murrabba Palace that was the\\r\\nroyal residence where King Abdulaziz hosted his court. The palace was named after its square 40 by 40-&lt;\\/span&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;meter shape and is now one of the city&rsquo;s main museums. &lt;\\/span&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;Adjacent to the\\r\\n&lt;\\/span&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;palace, a modern building hosts a collection of King Abdulaziz&rsquo;s personal items which we will tour briefly. These places illu&lt;\\/span&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;strate the heart of the birth of the Saudi nation.&nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t\\t\\t\\t&lt;\\/div&gt;\\r\\n\\t\\t\\t&lt;\\/div&gt;\\r\\n\\t\\t&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":23057,\"CityName\":\"Riyadh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23057\\/sightseeing\\/4539_1647077652.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}},{\"CityId\":23057,\"Title\":\"Riyadh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":169663,\"Name\":\"Golden Tulip Andalusia\",\"Star\":\".00\",\"Rating\":\"3.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.680133291189\",\"Long\":\"46.691131174833\",\"Address\":\"P.O.BOX 57749 OLAYA-RIYADH 11584 Riyadh SAUDI ARABIA Saudi Arabia\"},\"Images\":{\"Image\":[{\"ImagId\":3747850,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/8\\/441\\/91\\/1105734cdmsgalileovfm_img_pho_000_nc__36987_Guest_Room___A.jpg\"},{\"ImagId\":3747851,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/8\\/441\\/111\\/1105734cdmsgalileovfm_img_pho_000_nc__36990_Lobby___A.jpg\"},{\"ImagId\":3747852,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/8\\/441\\/101\\/1105734cdmsgalileovfm_img_pho_000_nc__36991_Lobby___A.jpg\"},{\"ImagId\":3747853,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/8\\/441\\/121\\/1105734cdmsgalileovfm_img_pho_000_nc__36992_Restaurant___A.jpg\"},{\"ImagId\":3747854,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/8\\/441\\/131\\/1105734cdmsgalileovfm_img_pho_000_nc__36998_Lobby___A.jpg\"}]},\"CityId\":23057,\"Brief\":\"The hotel is located on the main street, Olaya, next to King Fahad and Gulf highways and within walking distance of the main shopping and financial district. It&rsquo;s only 35 km\\/15 minutes away from King Khalid International Airport and 2 km from the exhibition centre and the diplomatic quarter.\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/1\\/0\\/8\\/441\\/91\\/1105734cdmsgalileovfm_img_pho_000_nc__36987_Guest_Room___A.jpg\",\"AccoAminitiesMask\":\"100000000000000000\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Classic Room \",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":24768,\"Title\":\"4x4 Desert Safari with Dinner\",\"Description\":\"&lt;p&gt;We will board our 4x4, and drive you to impressive golden sand dunes. followed and of course some dune bashing with our expert Bedouin drivers. After these activities, we will have a relaxing time between the dunes where we serve a nice meal, water, juices, and coffee &amp; tea.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13067,\"CityName\":\"Jeddah\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13067\\/sightseeing\\/4539_1647007968.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":24767,\"Title\":\"Jeddah Half Day City Tour\",\"Description\":\"&lt;p&gt;Enjoy a wonderful walk-in Al-Balad, the old part of the city. This walking tour of the old town will take you along all the less known must-see local spots: Old Market hidden gems, Old Jeddah hidden galleries, local&lt;\\/p&gt;&lt;p&gt;Jeddah food only for locals... While visiting Al-Balad, visitors will be taken to see Beit Nassif, one of the prominent renovated structures in the old city, which dates back to the mid-1800s. The five-story building provides a rare opportunity for visitors to experience the blend of traditional architecture with modernity.&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13067,\"CityName\":\"Jeddah\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13067\\/sightseeing\\/4539_1647008449.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":24781,\"Title\":\"Half Day Ad-Diriyah Tour\",\"Description\":\"&lt;p&gt;\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t&lt;\\/p&gt;&lt;div class=&quot;page&quot; title=&quot;Page 8&quot;&gt;\\r\\n\\t\\t\\t&lt;div class=&quot;layoutArea&quot;&gt;\\r\\n\\t\\t\\t\\t&lt;div class=&quot;column&quot;&gt;\\r\\n\\t\\t\\t\\t\\t&lt;p&gt;&lt;span style=&quot;font-size: 7.000000pt font-family: &#039;Arial&#039;&quot;&gt;We drive for 30 minutes to Ad-Diriyah, located on the western bank of the Wadi Hanifah, a dry riverbed where water flows only after big rains. Ad-Diriyah used to be the capital of\\r\\nthe Najd (the central plateau of the Arabian Peninsula) from the 15th century until the beginning of the 18th century. It is the birthplace of the first Saudi Kingdom and its\\r\\nimportance in the history of the Arabian Peninsula was highlighted when it was listed as UNESCO World Heritage Site, in 2010, as the most brilliant example of Najdi\\r\\narchitecture. The history of Ad-Diriyah goes back thousands of years as it was on an ancient trade and pilgrimage route, acting as a meeting point for those travelling to or from\\r\\nAsia, Africa and Europe. Our visit to the site allows us to admire its incredible architecture before returning to downtown Riyadh. As we drive towards the city , we have the\\r\\nopportunity to admire the rapid development of this cosmopolitan capital, planned by the Saudi government to become the biggest metropole in the Middle East in the next 10\\r\\nyears.&nbsp;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t\\t\\t\\t&lt;\\/div&gt;\\r\\n\\t\\t\\t&lt;\\/div&gt;\\r\\n\\t\\t&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":23057,\"CityName\":\"Riyadh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23057\\/sightseeing\\/4539_1647077857.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":24780,\"Title\":\"Half Day Riyadh City Tour\",\"Description\":\"&lt;p&gt;\\r\\n\\t\\t\\r\\n\\t\\r\\n\\t\\r\\n\\t\\t&lt;\\/p&gt;&lt;div class=&quot;page&quot; title=&quot;Page 8&quot;&gt;\\r\\n\\t\\t\\t&lt;div class=&quot;layoutArea&quot;&gt;\\r\\n\\t\\t\\t\\t&lt;div class=&quot;column&quot;&gt;\\r\\n\\t\\t\\t\\t\\t&lt;p&gt;&lt;span style=&quot;font-family: Arial&quot;&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;We start our tour of mystic Riyadh by visiting the National Museum. The primary custodian of Saudi national heritage and culture, it is a place of learning and discovery that hosts\\r\\na unique collection of artefacts and covers the whole history of the Arabian Peninsula right up to modern times. After that, we head to the nearby Murrabba Palace that was the\\r\\nroyal residence where King Abdulaziz hosted his court. The palace was named after its square 40 by 40-&lt;\\/span&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;meter shape and is now one of the city&rsquo;s main museums. &lt;\\/span&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;Adjacent to the\\r\\n&lt;\\/span&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;palace, a modern building hosts a collection of King Abdulaziz&rsquo;s personal items which we will tour briefly. These places illu&lt;\\/span&gt;&lt;span style=&quot;font-size: 7pt&quot;&gt;strate the heart of the birth of the Saudi nation.&nbsp;&lt;\\/span&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t\\t\\t\\t&lt;\\/div&gt;\\r\\n\\t\\t\\t&lt;\\/div&gt;\\r\\n\\t\\t&lt;\\/div&gt;\",\"CurrencyType\":0,\"CityId\":23057,\"CityName\":\"Riyadh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23057\\/sightseeing\\/4539_1647077652.jpg\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"238563\",\"Title\":\"Arrival in Jeddah\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Marhaba, Welcome to Arabia! On your arrival at the airport in Jeddah, you will be transferred to your hotel on a private basis by one of our representatives. After reaching the hotel, take your time to freshen up and relax as the rest of the day is free at leisure to explore the beautiful city on your own. Later in the evening, you can opt for one of our optional activities to explore Jeddah!&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional Tours:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;&lt;strong&gt;Full-Day Taif Tour with Lunch (8 Hrs):&lt;\\/strong&gt;&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We will start our journey towards the downtown of the city of Taif to take a stroll in its traditional market &amp;ldquo;Barhat Al Qazzaz Souq&amp;rdquo;, visit the stone-built house that is now transformed into a cafe?, followed by a stop to see &amp;ldquo;Al-Kaki Palace&amp;rdquo; from there we head back to mountains of Taif located over the Al Hada Mountains above Mecca and on the Eastern slopes of the Al-Sarawat mountains. We drive heading to have a traditional meal stop at one of the good local restaurants. The city of Taif has cool and green. In summer, Saudi people, as well as GCC citizens, travel to TAIF for its Green nature and its weather, its beautiful scenery and the town&amp;rsquo;s relaxed atmosphere. Our tour will lead us to an enjoyable drive to the majestic panoramic view of al Hada mountain. We will pass by a Rose Farm and perfume factory. The old stone paths, cars that passing through the road from Al Hada, seeing the Cable Car. From there we move back on our way to the city of JEDDAH.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;&lt;strong&gt;Stargazing in the Desert (5 Hrs):&lt;\\/strong&gt;&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;About an hour drive from the city of Jeddah, we would arrive at Khur Al-Shadaiq beach area, there we will get the perfect spot to take a dip in the Red Sea, followed by a vessel trip to see the nearby island, after which we serve a light meal and wait for the stars to shine while we have a brief about the upcoming tourists&amp;rsquo; attractions in the area like the under-going megaproject The Red Sea before we move back to Jeddah.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at the mentioned hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13067,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":106278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"238564\",\"Title\":\"Jeddah Half Day City Tour + Desert Safari \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, we will start our tour by visiting Old Jeddah. Our guide will tell you amazing stories about Jeddah and its surroundings. We will enjoy a wonderful walk-in Al-Balad, the old part of the city. This walking tour of the old town will take you along all the less known must-see local spots: Old Market hidden gems, Old Jeddah hidden galleries, local Jeddah food only for locals... While visiting Al-Balad, visitors will be taken to see Beit Nassif, one of the prominent renovated structures in the old city, which dates back to the mid-1800s. The five-story building provides a rare opportunity for visitors to experience the blend of traditional architecture with modernity. We will see also the Baghdadi house. We will also visit the Old gold market in Gabel street and the Ukash Mosque. We will end our tour driving towards the Jeddah Corniche which is the 30 km coastal resort area of the city of Jeddah. We will pass by the Al Rahmah Mosque. Located along the Red Sea, the Corniche features a coastal road, recreation areas, pavilions and large-scale civic sculptures as well as King Fahd&amp;#39;s Fountain, the highest fountain in the world. Later, we continue for our Arabian Desert Adventure!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;4x4 Desert Safari with Dinner:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We will explore the Saudi desert that surrounds the city of Jeddah. We will board our 4x4, and drive you to impressive sand dunes near Jeddah. followed and of course some dune bashing with our expert Bedouin drivers. After these activities, we will have a relaxing time between the dunes where we serve a nice meal, water, juices, and coffee &amp;amp; tea. We will then return back to the Jeddah hotel after an hour approximately.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13067,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":106278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24768,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":24767,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"238565\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13067,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"238566\",\"Title\":\"Half day Riyadh city tour + Half day Ad-Diriyah tour\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, check out of the hotel and transfer to the airport for your flights to Riyadh. Arrival transfer to the hotel to relax and freshen up. In the afternoon after lunch, we proceed to Discover the live city of RIYADH. We start our tour of mystic Riyadh by visiting the National Museum. The primary custodian of Saudi national heritage and culture, it is a place of learning and discovery that hosts a unique collection of artefacts and covers the whole history of the Arabian Peninsula right up to modern times. After that, we head to the nearby Murrabba Palace which was the royal residence where King Abdulaziz hosted his court. The palace was named after it&amp;#39;s square 40 by 40-meter shape and is now one of the city&amp;rsquo;s main museums. Adjacent to the palace, a modern building hosts a collection of King Abdulaziz&amp;rsquo;s personal items which we will tour briefly. These places illustrate the heart of the birth of the Saudi nation. Later, we proceed to Ad-Diriyah.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Ad-Diriyah,&lt;\\/strong&gt; located on the western bank of the Wadi Hanifah, is a dry riverbed where water flows only after big rains. Ad-Diriyah used to be the capital of the Najd (the central plateau of the Arabian Peninsula) from the 15th century until the beginning of the 18th century. It is the birthplace of the first Saudi Kingdom and its importance in the history of the Arabian Peninsula was highlighted when it was listed as UNESCO World Heritage Site, in 2010, as the most brilliant example of Najdi architecture. The history of Ad-Diriyah goes back thousands of years as it was on an ancient trade and pilgrimage route, acting as a meeting point for those travelling to or from Asia, Africa and Europe. Our visit to the site allows us to admire its incredible architecture before returning to downtown Riyadh. As we drive towards the city, we have the opportunity to admire the rapid development of this cosmopolitan capital, planned by the Saudi government to become the biggest metropole in the Middle East in the next 10 years.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After the tour, we head to a local Arabic restaurant for an authentic Arabic meal experience.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proceed to the hotel for an overnight stay in Riyadh.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23057,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":169663,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":24781,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":24780,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"238567\",\"Title\":\"Day Free in Riyadh\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today after breakfast, you can explore the beautiful city of Riyadh on your own and shop around in the local Riyadh markets for souvenirs. Or, you can opt for some more amazing adventures in Riyadh by Atlas Holidays!&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;Optional Tours:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;em&gt;Edge of the World with Dinner (7 Hrs):&lt;\\/em&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;An exciting drive to the amazing &amp;ldquo;Edge of the World&amp;rdquo;, located on the 1000 kilometre-long Tuwaiq escarpment where the viewpoints from the top of the 300-meter-high cliffs are particularly dramatic. On our way to the most famous natural wonder of Riyadh Province, we visit a restored traditional village, Sadous, whose architecture is typical of the Najd (central Arabia) before we start the off-road drive towards Edge of the World. En route, we stop by the Bats Cave and once at Edge of the World we can hike along the majestic cliffs and enjoy the breathtaking viewpoints. Whilst enjoying traditional coffee, tea and a light meal there is an explanation about Saudi culture while we watch the picturesque sunset.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;&lt;strong&gt;Morning Safari (4hrs):&lt;\\/strong&gt;&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We head southwest for approximately one hour into some of the most beautiful dunes of the Riyadh province, where we have the opportunity to enjoy fun activities like sand-boarding and dune bashing in a pristine and secluded sand dune sea. Depending on the season we will visit a nearby Bedouin campsite to enjoy traditional coffee and tea and see their herd of camels. On top of the dunes, we serve a light meal, drinks, coffee &amp;amp; tea after which we will return back to the city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23057,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":169663,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Classic Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"238568\",\"Title\":\"Riyadh: Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Breakfast. This morning you will be able to enjoy the pool or other activities. Depending on your time of flight transfer to JEDDAH airport for departure.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flight back home with Amazing Arabian Adventure and memories!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23057,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"33387\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"65780.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":65780,\"priceDoubleOcc\":\"65780.00\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"39836.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65780.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":65780,\"priceDoubleOcc\":\"65780.00\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"39836.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65780.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":65780,\"priceDoubleOcc\":\"65780.00\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"39836.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65780.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":65780,\"priceDoubleOcc\":\"65780.00\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"39836.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65780.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":65780,\"priceDoubleOcc\":\"65780.00\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"39836.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65780.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":65780,\"priceDoubleOcc\":\"65780.00\",\"priceSingleOcc\":93380,\"priceExtraBed\":\"39836.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"65780.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":60088,\"priceDoubleOcc\":\"60087.50\",\"priceSingleOcc\":80787.5,\"priceExtraBed\":\"40250.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":60088,\"priceDoubleOcc\":\"60087.50\",\"priceSingleOcc\":80787.5,\"priceExtraBed\":\"40250.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":60088,\"priceDoubleOcc\":\"60087.50\",\"priceSingleOcc\":80787.5,\"priceExtraBed\":\"40250.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":60088,\"priceDoubleOcc\":\"60087.50\",\"priceSingleOcc\":80787.5,\"priceExtraBed\":\"40250.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":60088,\"priceDoubleOcc\":\"60087.50\",\"priceSingleOcc\":80787.5,\"priceExtraBed\":\"40250.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":60088,\"priceDoubleOcc\":\"60087.50\",\"priceSingleOcc\":80787.5,\"priceExtraBed\":\"40250.00\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60087.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":66125,\"priceDoubleOcc\":\"66125.00\",\"priceSingleOcc\":93725,\"priceExtraBed\":\"39847.50\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":66125,\"priceDoubleOcc\":\"66125.00\",\"priceSingleOcc\":93725,\"priceExtraBed\":\"39847.50\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":66125,\"priceDoubleOcc\":\"66125.00\",\"priceSingleOcc\":93725,\"priceExtraBed\":\"39847.50\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":66125,\"priceDoubleOcc\":\"66125.00\",\"priceSingleOcc\":93725,\"priceExtraBed\":\"39847.50\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":66125,\"priceDoubleOcc\":\"66125.00\",\"priceSingleOcc\":93725,\"priceExtraBed\":\"39847.50\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":66125,\"priceDoubleOcc\":\"66125.00\",\"priceSingleOcc\":93725,\"priceExtraBed\":\"39847.50\",\"priceWithoutBed\":\"34500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"66125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"33387\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"62920.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":89320,\"priceExtraBed\":\"38104.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":89320,\"priceExtraBed\":\"38104.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":89320,\"priceExtraBed\":\"38104.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":89320,\"priceExtraBed\":\"38104.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":89320,\"priceExtraBed\":\"38104.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":62920,\"priceDoubleOcc\":\"62920.00\",\"priceSingleOcc\":89320,\"priceExtraBed\":\"38104.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"62920.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":57475,\"priceDoubleOcc\":\"57475.00\",\"priceSingleOcc\":77275,\"priceExtraBed\":\"38500.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57475.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":57475,\"priceDoubleOcc\":\"57475.00\",\"priceSingleOcc\":77275,\"priceExtraBed\":\"38500.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57475.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":57475,\"priceDoubleOcc\":\"57475.00\",\"priceSingleOcc\":77275,\"priceExtraBed\":\"38500.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57475.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":57475,\"priceDoubleOcc\":\"57475.00\",\"priceSingleOcc\":77275,\"priceExtraBed\":\"38500.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57475.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":57475,\"priceDoubleOcc\":\"57475.00\",\"priceSingleOcc\":77275,\"priceExtraBed\":\"38500.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57475.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":57475,\"priceDoubleOcc\":\"57475.00\",\"priceSingleOcc\":77275,\"priceExtraBed\":\"38500.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57475.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":63250,\"priceDoubleOcc\":\"63250.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"38115.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":63250,\"priceDoubleOcc\":\"63250.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"38115.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":63250,\"priceDoubleOcc\":\"63250.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"38115.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":63250,\"priceDoubleOcc\":\"63250.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"38115.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":63250,\"priceDoubleOcc\":\"63250.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"38115.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2023-04-30\",\"Currency\":1,\"priceTripleOcc\":63250,\"priceDoubleOcc\":\"63250.00\",\"priceSingleOcc\":89650,\"priceExtraBed\":\"38115.00\",\"priceWithoutBed\":\"33000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any visa cost unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;2 Nights&amp;nbsp;Accommodation in the above mentioned hotel or similar in Jeddah.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 Nights&amp;nbsp;Accommodation in the above mentioned hotel or similar in Riyadh.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Buffet breakfast at the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Personalized meet &amp;amp; assist upon arrival at the Airport&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Round trip transfers from the airport to the hotel and vice versa by a deluxe air-conditioned vehicle.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Half-day Jeddah area tour in English.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4x4 Desert Safari with dinner in Jeddah.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Internal flight ticket from Jeddah - Riyadh.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Half-day Riyadh area tour in English.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Half-day Ad-Diriyah tour with dinner.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on a private basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local Taxes.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"238563\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[238563],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"238564\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[238564],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"238565\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[238565],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"238566\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[238566],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"238567\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[238567],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"238568\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[238568],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Jeddah,Riyadh','Jeddah,Middle East,Saudi Arabia,Riyadh',NULL,'13067,23057',57475,66125,4,NULL,NULL,NULL,2,'',0,'2022-05-24 00:00:00','2023-04-30 00:00:00','2023-04-30 00:00:00',3,'Saudi Arabia','186','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'jeddah-riyadh-combo',NULL,NULL,NULL,0),(3,24963,1,12577,1,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24963,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/No_04_Hills_and_River_of_North_East_92.jpg\",\"BookingValidUntill\":\"2022-06-30\",\"AdvBookingDays\":14,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 04 Hills and River of North East\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4408\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Car On Disposal\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2022-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":8434,\"Title\":\"DAINTHLEN FALLS\",\"Description\":\"Just before reaching Sohra, a road to the right, leads one to the falls which is 5 kms away. Among the many falls that Cherrapunjee boasts of, Dain Thlen Falls is also one of the famous falls. Many tourists flock the falls especially as it has an interesting legend associated with it. \\r\\n \\r\\nThe waterfall derives its name from a Thlen (Khasi word for Python).  As \\r\\nper the legend, people decided to rid themselves of evil, captured the Thlen and killed it at the wide flat rock over-looking the waterfall. Adjacent to the very spot where the Thlen was slaughtered lies the Dain-thlen Waterfalls. Natural rock carvings of the episode draw visitors to see the image of the Thlen, the symbol of greed, corruption and evil.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/47_1550480095.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9191,\"Title\":\"Seven Sisters Falls\",\"Description\":\"Seven Sisters Falls. The seven sisters fall is a kind of waterfall which symbolizes the seven states in northeast namely Assam, Arunachal Pradesh, Manipur, Nagaland, Tripura, Mizoram and Meghalaya. The fall is separated with seven parts over the cliff of the hills.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.7398263,\"Long\":25.2375093,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094788.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":243,\"Title\":\"Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nsture.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3748\\/thumb\\/Brahmaputra_301.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}},{\"CityId\":11240,\"Title\":\"Guwahati\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":92930,\"Name\":\"Rialto\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.18339\",\"Long\":\"91.74548425\",\"Address\":\"GNB Road, Panbazar, Near Panbazar Flyover \"},\"Images\":{\"Image\":[{\"ImagId\":2042855,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189685.jpg?s=312x\"},{\"ImagId\":2042856,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/aff.bstatic.com\\/images\\/hotel\\/max300\\/430\\/43086123.jpg\"},{\"ImagId\":2042857,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix3.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189671.jpg?s=312x\"},{\"ImagId\":2042858,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189673.jpg?s=312x\"},{\"ImagId\":2042859,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix2.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189674.jpg?s=312x\"}]},\"CityId\":11240,\"Brief\":\"Located in Fancy Bazaar, Hotel Rialto is a perfect starting point from which to explore Guwahati. Both business travelers and tourists can enjoy the hotel&#039;s facilities and services. Service-minded staff will welcome and guide you at the Hotel Rialto. Guestrooms are fitted with all the amenities you need for a good night&#039;s sleep. In some of the rooms, guests can find air conditioning, wake-up service, telephone, fan, television. The hotel offers various recreational opportunities. Friendly staff, great facilities and close proximity to all that Guwahati has to offer are three great reasons you should stay at Hotel Rialto.\",\"MainImg\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/548\\/548689\\/548689_15060118250028189685.jpg?s=312x\",\"AccoAminitiesMask\":\"101000001000100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467891,\"Name\":\"D Courtyard\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"RG Baruah Rd, Rajdhani Nursery, Opp, Ganeshguri, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817951,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_01617278795.jpg\"},{\"ImagId\":4817952,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_11617278795.jpg\"},{\"ImagId\":4817953,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_21617278795.jpg\"},{\"ImagId\":4817954,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_31617278795.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Hotel &amp;#39;D&amp;#39; Courtyard is reckoned among the luxury budget hotels in Guwahati. Most significantly the hotel aims to provide luxurious standard within budget without compromising with your comforts. We enrich the stay of our visitors with our holistic approach of delivering excellent services. Our personalized and customized services suit every guest unique needs. A part from the significant hotels in guwahati, we stand high considering the amenities and services we offer. Our professional and experienced staff aims to satisfy an individual&acirc;&euro;&trade;s specific needs with full efficiency. Quality, elegance and comfort are what make it one of the best luxury budget hotels in Guwahati, Assam. The hotel with its host of facilities and services is designed to meet every need of leisure \\/ travel \\/ banquet \\/ conferencing services with best hospitality industry standards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The 34 well appointed guest keys and suites are elegantly designed and the delectable dinning option, technologically advanced conferencing features exquisite recreation facilities as well as warm and attentive services are just some of the things that make Hotel &amp;#39;D&amp;#39; Courtyard, Guwahati a preferred destination of pure bliss.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_c68865f572bfcd7ac30b170f1de0f9281582891299.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":414204,\"Name\":\"Mayflower Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.185057\",\"Long\":\"91.74441\",\"Address\":\"MLN Road, Panbazar, Panbazar, GUWAHATI, ASSAM, India, Pin-781001, 781001\"},\"Images\":[],\"CityId\":11240,\"Brief\":\"Hotel Mayflower is located 1 km from Guwahati Railway Station and 7 km from Guwahati Zoo. This property in Guwahati provides guests with free breakfast and internet access.  This accommodation has 21 well-maintained guestrooms equipped with amenities like television, mirror, wake-up calls and wardrobe. The rooms also have separate sitting area and attached bathroom. null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/2\\/nxd\\/maq\\/oyf\\/fbs\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Irish\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467889,\"Name\":\"Shoolin Grand\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"G.S. Road Opp Indian Oil Petrol Pump, Rukmini Gaon, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817961,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467889\\/4650_01617279603.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Located in Rukmini Gaon of Guwahati City, we are ideally located within the conveniences of city life yet distant enough from it&acirc;&euro;&trade;s over buzz. Something we all love from time to time. Hotel Shoolin Grand is equipped with premium infrastructure and services that guarantee a pleasurable stay. If you are looking for a uber luxurious experience, we have 45 premium category rooms, including three suites, and a multi-speciality spa with a unisex beauty salon. Food lovers can delight in the vast range of dishes in our multicuisine restaurant and experiment with tastes and flavors. While ensuring our guests the most comfortable stay, we also provide facilities of baby care room and kids play zone. We are also open for conferences and private events with our well set-up conference and banquet halls. So the next time you plan a visit to Guwahati or a carefree staycation, choose leisure, comfort, and impeccable facilities&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467889\\/4650_9c4b5dba1c71af56b3d93db827f671a41582890981.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Excutive room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467887,\"Name\":\"Kiranshree Grand\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"New Airport Road Mirzapur, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817962,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_01617279793.jpg\"},{\"ImagId\":4817963,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_11617279793.jpg\"},{\"ImagId\":4817964,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_21617279793.jpg\"},{\"ImagId\":4817965,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_31617279793.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;The historic city of Guwahati is the gateway to India&acirc;&euro;&trade;s Northeast and Kiranshree Grand stands with pride at the gateway of Guwahati city. Just a few steps away from the Lokapriya Gopinath Bordoloi International Airport, this Hotel cum Resort is also ideal for anyone making a stopover on a trip to any other part of the northeastern region. The location of the hotel helps you travel to any part of Assam or the rest of the Northeast without getting stuck in the city traffic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The elegantly designed hotel cum resort boasts of 122 luxurious rooms and suites with state of the art facilities and 24x7 services and is spread over 6 acres of land. The moment you step inside the property, the wide pathway that leads to the main lobby of the hotel will awe you with its grandeur. On one side of the pathway is the high boundary wall covered in green vines while on the other side is the vast parking zone. As the pathway comes to an end you will see the beautiful palm court ahead and the main lobby on your right. The ardour to strike a fine balance between nature and modern lifestyle is visible all throughout the campus and the lobby is no different. While our reception desk carries out the formalities of check-in, maybe you can find some time to admire the architecture and decorations of the enormously spacious lobby that transcends space and dimension through the glass walls on three sides.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can choose from Club Rooms, Grand Suites and Presidential Suites to meet your accomodational requirements during business trips, holidays etc. Or confine yourself in any of the Honeymoon Suites, to enjoy some intimate, romantic moments with your special one. Every floor of the residential blocks has a spacious lounge to relax.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_b5720a0bf7d7ce57d46dbd074ff16f6e1582890297.jpg\",\"AccoAminitiesMask\":\"1100010000001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Club room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":8434,\"Title\":\"DAINTHLEN FALLS\",\"Description\":\"Just before reaching Sohra, a road to the right, leads one to the falls which is 5 kms away. Among the many falls that Cherrapunjee boasts of, Dain Thlen Falls is also one of the famous falls. Many tourists flock the falls especially as it has an interesting legend associated with it. \\r\\n \\r\\nThe waterfall derives its name from a Thlen (Khasi word for Python).  As \\r\\nper the legend, people decided to rid themselves of evil, captured the Thlen and killed it at the wide flat rock over-looking the waterfall. Adjacent to the very spot where the Thlen was slaughtered lies the Dain-thlen Waterfalls. Natural rock carvings of the episode draw visitors to see the image of the Thlen, the symbol of greed, corruption and evil.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/47_1550480095.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19004,\"Title\":\"Mawsmai Cave\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;At a distance of 4 km from Cherrapunji Bus Stand, Mawsmai Cave is a beautiful limestone cave located at Cherrapunji in the North East Indian state of Meghalaya. It is one of the most popular historical Caves in Meghalaya and among the best places to experience Cherrapunji Tourism.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;Revered as one of the most popular and notable landmarks in Cherrapunji, the striking natural cave is flocked by visitors in great numbers. Mawsmai Caves are formed out of limestone and enjoy the distinction of being the only caves in Meghalaya that are lit enough so that the tourists can enjoy its natural formations. Though the caves are quite long, only a distance of 150 meters is open for tourists while the remaining section is closed. This magnificent natural wonder is the handiwork of years of natural erosion and underground water.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave has a spacious opening but it soon squeezed into a narrow path. The interior is spacious as far as the cave goes, and some of the halls inside look like an amphitheater. However, there are places in the cave where visitors need to bend and squeeze themselves out. While getting inside the cave, one can see constant dripping of water from the roof of the cave and the innumerable forms of stalactites and stalagmites. Further, visitor can also observe how the roof and the floor of the cave are joined together to form the iconic pillars.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The cave is home to various flora and fauna and makes a good home for bats and insects. It is one of the best places for history buffs and experience seekers but not recommended for old age people and kids.&lt;\\/span&gt;&lt;br style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;&lt;span style=&quot;color: rgb(0, 0, 0) font-family: roboto, sans-serif font-size: 13px background-color: rgb(249, 249, 249)&quot;&gt;The best time to visit the cave is post monsoons as it is filled with water during monsoon.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/4650_1617362504.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9191,\"Title\":\"Seven Sisters Falls\",\"Description\":\"Seven Sisters Falls. The seven sisters fall is a kind of waterfall which symbolizes the seven states in northeast namely Assam, Arunachal Pradesh, Manipur, Nagaland, Tripura, Mizoram and Meghalaya. The fall is separated with seven parts over the cliff of the hills.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.7398263,\"Long\":25.2375093,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094788.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":243,\"Title\":\"Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nsture.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3748\\/thumb\\/Brahmaputra_301.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1902,\"Title\":\"Ward&#039;s Lake\",\"Description\":\"This beautiful lake is also known as &amp;quot;the Pollock&amp;rsquo;s Lake or Nan Polok.&amp;quot; Beautiful botanical gardens surround the lake and all around you will be able to view a wide spectrum of orchids in full bloom.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3943\\/thumb\\/Wards Lake_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"178778\",\"Title\":\"Guwahati &acirc;&euro;&ldquo; Shillong (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Awesome Assam. Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &amp;#39;Scotland of the East&amp;quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178783\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM | 1.5 Hrs Per Way)\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit &amp;nbsp;Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Evening return to Shillong. Visit Elephanta Falls and Shillong Peak for some breathtaking views. Overnight stay in Shillong.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8434,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9191,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178788\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM | 2 Hrs Per Way)\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness. &amp;nbsp;It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River. Evening we will return back to Shillong. Overnight in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1101,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19106,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14754,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178793\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178798\",\"Title\":\"Shillong - Guwahati (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast today visit Don Bosco Centre for Indigenous Cultures, Ward&amp;#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Proceed to Guwahati. Arrive and check in at hotel. Visit Srimanta Sankardev Kalakshetra a place where Assamese history and culture is presented, You may also visit the Assam Film Museum to know the History of Assamese Cinema. Visit GTAC Tea Lounge to enjoy a cup of finest Assam Tea and also carry some Tea back home. Here you will find the finest quality of Organic, CTC, Orthodox, Green Tea, White Tea, Purple Tea etc. Evening you may take a River Cruise (Direct Payment) on the mighty River Brahmaputra. You may also visit the local market. Assam is famous for Assam Silk particularly Golden Muga Silk, Assam Tea, Bamboo and Cane Products. Overnight stay in Guwahati.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":92930,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":467891,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":414204,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Irish\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467889,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Excutive room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":243,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1660,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1902,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"178803\",\"Title\":\"Guwahati\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast check out from hotel. As time permits we may take a tour of the Kamakhya Temple and other Temples in Guwahati namely Purva Tirupati Shri Balaji Temple, Sukreswar Temple, Navagraha Temple, Umananda Temple at the Peacock Island which is the smallest inhabited River Island in the World, Assam State Museum, Dighali Pukhuri (Lake), State Zoo cum Botanical Garden, Planetarium and the Assam State Emporiums. With everlasting memories transfer to Guwahati airport\\/railway station for onward journey.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":81,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":82,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14872,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":821,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1217,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1395,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1697,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1834,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24963\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8373.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6724,\"priceDoubleOcc\":\"8373.30\",\"priceSingleOcc\":20238.3,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8373.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7194,\"priceDoubleOcc\":\"9079.55\",\"priceSingleOcc\":20944.55,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9079.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7465,\"priceDoubleOcc\":\"9485.22\",\"priceSingleOcc\":21350.22,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9485.22\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6724,\"priceDoubleOcc\":\"8373.30\",\"priceSingleOcc\":20238.3,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8373.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7901,\"priceDoubleOcc\":\"10139.49\",\"priceSingleOcc\":22004.489999999998,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10139.49\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9689,\"priceDoubleOcc\":\"12822.11\",\"priceSingleOcc\":24687.11,\"priceExtraBed\":\"3423.90\",\"priceWithoutBed\":\"2519.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12822.11\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24964\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8797.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6968,\"priceDoubleOcc\":\"8797.05\",\"priceSingleOcc\":21001.05,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8797.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7438,\"priceDoubleOcc\":\"9502.17\",\"priceSingleOcc\":21706.17,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9502.17\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8605,\"priceDoubleOcc\":\"11252.54\",\"priceSingleOcc\":23456.54,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11252.54\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6968,\"priceDoubleOcc\":\"8797.05\",\"priceSingleOcc\":21001.05,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8797.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8145,\"priceDoubleOcc\":\"10562.11\",\"priceSingleOcc\":22766.11,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10562.11\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9987,\"priceDoubleOcc\":\"13324.96\",\"priceSingleOcc\":25528.96,\"priceExtraBed\":\"3310.90\",\"priceWithoutBed\":\"2632.90\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13324.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24965\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11785.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8931,\"priceDoubleOcc\":\"11785.90\",\"priceSingleOcc\":27040.9,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11785.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9402,\"priceDoubleOcc\":\"12493.28\",\"priceSingleOcc\":27748.28,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12493.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9673,\"priceDoubleOcc\":\"12898.95\",\"priceSingleOcc\":28153.95,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12898.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8933,\"priceDoubleOcc\":\"11789.29\",\"priceSingleOcc\":27044.29,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11789.29\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10110,\"priceDoubleOcc\":\"13555.48\",\"priceSingleOcc\":28810.48,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13555.48\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11900,\"priceDoubleOcc\":\"16239.23\",\"priceSingleOcc\":31494.23,\"priceExtraBed\":\"3220.50\",\"priceWithoutBed\":\"565.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16239.23\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24966\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14284.33\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11443,\"priceDoubleOcc\":\"14284.33\",\"priceSingleOcc\":32025.33,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14284.33\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11939,\"priceDoubleOcc\":\"15027.87\",\"priceSingleOcc\":32768.87,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15027.87\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13283,\"priceDoubleOcc\":\"17043.79\",\"priceSingleOcc\":34784.79,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17043.79\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11443,\"priceDoubleOcc\":\"14284.33\",\"priceSingleOcc\":32025.33,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14284.33\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12683,\"priceDoubleOcc\":\"16144.31\",\"priceSingleOcc\":33885.31,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16144.31\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14284,\"priceDoubleOcc\":\"18545.56\",\"priceSingleOcc\":36286.56,\"priceExtraBed\":\"5760.74\",\"priceWithoutBed\":\"2316.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18545.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24967\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18707.15\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15055,\"priceDoubleOcc\":\"18707.15\",\"priceSingleOcc\":40742.15,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18707.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15550,\"priceDoubleOcc\":\"19448.43\",\"priceSingleOcc\":41483.43,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19448.43\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15765,\"priceDoubleOcc\":\"19771.61\",\"priceSingleOcc\":41806.61,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19771.61\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15052,\"priceDoubleOcc\":\"18702.63\",\"priceSingleOcc\":40737.630000000005,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18702.63\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16292,\"priceDoubleOcc\":\"20562.61\",\"priceSingleOcc\":42597.61,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20562.61\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":17893,\"priceDoubleOcc\":\"22963.86\",\"priceSingleOcc\":44998.86,\"priceExtraBed\":\"7751.80\",\"priceWithoutBed\":\"1751.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22963.86\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24963\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7854.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6307,\"priceDoubleOcc\":\"7854.60\",\"priceSingleOcc\":18984.6,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7854.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6749,\"priceDoubleOcc\":\"8517.10\",\"priceSingleOcc\":19647.1,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8517.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7002,\"priceDoubleOcc\":\"8897.64\",\"priceSingleOcc\":20027.64,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8897.64\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6307,\"priceDoubleOcc\":\"7854.60\",\"priceSingleOcc\":18984.6,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7854.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7412,\"priceDoubleOcc\":\"9511.38\",\"priceSingleOcc\":20641.379999999997,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9511.38\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9089,\"priceDoubleOcc\":\"12027.82\",\"priceSingleOcc\":23157.82,\"priceExtraBed\":\"3211.80\",\"priceWithoutBed\":\"2363.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12027.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24964\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8252.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6537,\"priceDoubleOcc\":\"8252.10\",\"priceSingleOcc\":19700.1,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8252.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6978,\"priceDoubleOcc\":\"8913.54\",\"priceSingleOcc\":20361.54,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8913.54\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8072,\"priceDoubleOcc\":\"10555.48\",\"priceSingleOcc\":22003.48,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10555.48\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6537,\"priceDoubleOcc\":\"8252.10\",\"priceSingleOcc\":19700.1,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8252.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7640,\"priceDoubleOcc\":\"9907.82\",\"priceSingleOcc\":21355.82,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9907.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9368,\"priceDoubleOcc\":\"12499.52\",\"priceSingleOcc\":23947.52,\"priceExtraBed\":\"3105.80\",\"priceWithoutBed\":\"2469.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12499.52\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24965\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11055.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8378,\"priceDoubleOcc\":\"11055.80\",\"priceSingleOcc\":25365.8,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11055.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8820,\"priceDoubleOcc\":\"11719.36\",\"priceSingleOcc\":26029.36,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11719.36\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9074,\"priceDoubleOcc\":\"12099.90\",\"priceSingleOcc\":26409.9,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12099.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8380,\"priceDoubleOcc\":\"11058.98\",\"priceSingleOcc\":25368.98,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11058.98\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9484,\"priceDoubleOcc\":\"12715.76\",\"priceSingleOcc\":27025.760000000002,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12715.76\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11163,\"priceDoubleOcc\":\"15233.26\",\"priceSingleOcc\":29543.260000000002,\"priceExtraBed\":\"3021.00\",\"priceWithoutBed\":\"530.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15233.26\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24966\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13399.46\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10734,\"priceDoubleOcc\":\"13399.46\",\"priceSingleOcc\":30041.46,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13399.46\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11199,\"priceDoubleOcc\":\"14096.94\",\"priceSingleOcc\":30738.940000000002,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14096.94\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12460,\"priceDoubleOcc\":\"15987.98\",\"priceSingleOcc\":32629.98,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15987.98\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10734,\"priceDoubleOcc\":\"13399.46\",\"priceSingleOcc\":30041.46,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13399.46\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11897,\"priceDoubleOcc\":\"15144.22\",\"priceSingleOcc\":31786.22,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15144.22\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13399,\"priceDoubleOcc\":\"17396.72\",\"priceSingleOcc\":34038.72,\"priceExtraBed\":\"5403.88\",\"priceWithoutBed\":\"2173.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17396.72\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24967\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17548.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14123,\"priceDoubleOcc\":\"17548.30\",\"priceSingleOcc\":38218.3,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17548.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14586,\"priceDoubleOcc\":\"18243.66\",\"priceSingleOcc\":38913.66,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18243.66\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14788,\"priceDoubleOcc\":\"18546.82\",\"priceSingleOcc\":39216.82,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18546.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14120,\"priceDoubleOcc\":\"17544.06\",\"priceSingleOcc\":38214.06,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17544.06\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":15283,\"priceDoubleOcc\":\"19288.82\",\"priceSingleOcc\":39958.82,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19288.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-07-27\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":16785,\"priceDoubleOcc\":\"21541.32\",\"priceSingleOcc\":42211.32,\"priceExtraBed\":\"7271.60\",\"priceWithoutBed\":\"1643.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21541.32\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Kaziranga National Park -&amp;nbsp;01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Arunachal Pradesh - Inner Line Permit.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"178778\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[178778],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178783\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[178783],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178788\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[178788],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178793\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178793],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178798\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[178798],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"178803\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[178803],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Shillong,Guwahati','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Guwahati,Assam,Cherrapunji,Dawki',NULL,'25073,11240',7855,22964,4,NULL,NULL,NULL,1,'',0,'2022-05-24 00:00:00','2022-06-30 00:00:00','2022-06-30 00:00:00',3,'India','101','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'no-04-hills-and-river-of-north-east',NULL,NULL,NULL,0),(4,24664,1,12577,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":24664,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/Package_no_01_Shillong_Beauty_94.jpg\",\"BookingValidUntill\":\"2022-06-30\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#984806&quot;&gt;Please Note&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All our tours can be fully customized to meet your requirement. You can change the number of days at any destination, add or delete any sightseeing in the itinerary as per your interest, change the hotel and\\/or the room category, change the transport used for the tour, choose a meal plan suitable to you.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 01 Shillong Beauty\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4408\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Car On Disposal\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2022-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19257,\"Title\":\"Mawlynnong - Cleanest Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2017637,\"Long\":91.9160305,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":20083,\"Title\":\"DOUBLE DECKER LIVING ROOT BRIDGE\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9181,\"Title\":\"Ward\'s Lake\",\"Description\":\"Nestled at the center of the city, Ward&acirc;&euro;&trade;s Lake is a must-visit spot in Shillong. The refreshing lake encircled with lush gardens and verdant trees is the best place to spend the evening watching the dancing evening show. Take a break and head for a boat ride and enjoy the natural beauty of Ward&acirc;&euro;&trade;s Lake.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8863422,\"Long\":25.5754998,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4408,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"176627\",\"Title\":\"Guwahati &acirc;&euro;&ldquo; Shillong (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Awesome Assam. Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &amp;#39;Scotland of the East&amp;quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176632\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM  1.5 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit&amp;nbsp; Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Evening return to Shillong. Visit Elephanta Falls and Shillong Peak for some breathtaking views. Overnight stay in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9189,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176637\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM  2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness.&amp;nbsp; It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River Evening return to Shillong. Overnight in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19106,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19257,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20083,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176642\",\"Title\":\"Shillong - Guwahati (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast today visit Don Bosco Centre for Indigenous Cultures, Ward&amp;#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Proceed to Guwahati and with everlasting memories transfer to airport\\/railway station for onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9181,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24664\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6854.58\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5218,\"priceDoubleOcc\":\"6854.58\",\"priceSingleOcc\":17024.58,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6854.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5620,\"priceDoubleOcc\":\"7458.00\",\"priceSingleOcc\":17628,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7458.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5846,\"priceDoubleOcc\":\"7797.00\",\"priceSingleOcc\":17967,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7797.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5218,\"priceDoubleOcc\":\"6854.58\",\"priceSingleOcc\":17024.58,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6854.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6223,\"priceDoubleOcc\":\"8362.00\",\"priceSingleOcc\":18532,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8362.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7729,\"priceDoubleOcc\":\"10622.00\",\"priceSingleOcc\":20792,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10622.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24665\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6854.58\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5218,\"priceDoubleOcc\":\"6854.58\",\"priceSingleOcc\":17024.58,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6854.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5620,\"priceDoubleOcc\":\"7458.00\",\"priceSingleOcc\":17628,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7458.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5846,\"priceDoubleOcc\":\"7797.00\",\"priceSingleOcc\":17967,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7797.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5218,\"priceDoubleOcc\":\"6854.58\",\"priceSingleOcc\":17024.58,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6854.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6223,\"priceDoubleOcc\":\"8362.00\",\"priceSingleOcc\":18532,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8362.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7729,\"priceDoubleOcc\":\"10622.00\",\"priceSingleOcc\":20792,\"priceExtraBed\":\"1943.60\",\"priceWithoutBed\":\"1943.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10622.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24666\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9362.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6934,\"priceDoubleOcc\":\"9362.05\",\"priceSingleOcc\":21792.05,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9362.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7336,\"priceDoubleOcc\":\"9964.34\",\"priceSingleOcc\":22394.34,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9964.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7562,\"priceDoubleOcc\":\"10303.34\",\"priceSingleOcc\":22733.34,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10303.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6934,\"priceDoubleOcc\":\"9362.05\",\"priceSingleOcc\":21792.05,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9362.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7939,\"priceDoubleOcc\":\"10868.34\",\"priceSingleOcc\":23298.34,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10868.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9445,\"priceDoubleOcc\":\"13128.34\",\"priceSingleOcc\":25558.34,\"priceExtraBed\":\"2079.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13128.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24667\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11175.70\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9066,\"priceDoubleOcc\":\"11175.70\",\"priceSingleOcc\":25300.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11175.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9487,\"priceDoubleOcc\":\"11808.50\",\"priceSingleOcc\":25933.5,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11808.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9668,\"priceDoubleOcc\":\"12079.70\",\"priceSingleOcc\":26204.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12079.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9066,\"priceDoubleOcc\":\"11175.70\",\"priceSingleOcc\":25300.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11175.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10120,\"priceDoubleOcc\":\"12757.70\",\"priceSingleOcc\":26882.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12757.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11476,\"priceDoubleOcc\":\"14791.70\",\"priceSingleOcc\":28916.7,\"priceExtraBed\":\"4845.44\",\"priceWithoutBed\":\"1740.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14791.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24668\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15311.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12223,\"priceDoubleOcc\":\"15311.50\",\"priceSingleOcc\":33391.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15311.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12645,\"priceDoubleOcc\":\"15944.30\",\"priceSingleOcc\":34024.3,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15944.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12826,\"priceDoubleOcc\":\"16215.50\",\"priceSingleOcc\":34295.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16215.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12223,\"priceDoubleOcc\":\"15311.50\",\"priceSingleOcc\":33391.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15311.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13278,\"priceDoubleOcc\":\"16893.50\",\"priceSingleOcc\":34973.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16893.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":14634,\"priceDoubleOcc\":\"18927.50\",\"priceSingleOcc\":37007.5,\"priceExtraBed\":\"6045.50\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18927.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24664\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6429.96\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":4894,\"priceDoubleOcc\":\"6429.96\",\"priceSingleOcc\":15969.96,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6429.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5272,\"priceDoubleOcc\":\"6996.00\",\"priceSingleOcc\":16536,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6996.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5484,\"priceDoubleOcc\":\"7314.00\",\"priceSingleOcc\":16854,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7314.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":4894,\"priceDoubleOcc\":\"6429.96\",\"priceSingleOcc\":15969.96,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6429.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5837,\"priceDoubleOcc\":\"7844.00\",\"priceSingleOcc\":17384,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7844.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7250,\"priceDoubleOcc\":\"9964.00\",\"priceSingleOcc\":19504,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9964.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24665\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6429.96\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":4894,\"priceDoubleOcc\":\"6429.96\",\"priceSingleOcc\":15969.96,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6429.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5272,\"priceDoubleOcc\":\"6996.00\",\"priceSingleOcc\":16536,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6996.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5484,\"priceDoubleOcc\":\"7314.00\",\"priceSingleOcc\":16854,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7314.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":4894,\"priceDoubleOcc\":\"6429.96\",\"priceSingleOcc\":15969.96,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"6429.96\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":5837,\"priceDoubleOcc\":\"7844.00\",\"priceSingleOcc\":17384,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"7844.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7250,\"priceDoubleOcc\":\"9964.00\",\"priceSingleOcc\":19504,\"priceExtraBed\":\"1823.20\",\"priceWithoutBed\":\"1823.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9964.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24666\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8782.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6505,\"priceDoubleOcc\":\"8782.10\",\"priceSingleOcc\":20442.1,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8782.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6882,\"priceDoubleOcc\":\"9347.08\",\"priceSingleOcc\":21007.08,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9347.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7094,\"priceDoubleOcc\":\"9665.08\",\"priceSingleOcc\":21325.08,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9665.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":6505,\"priceDoubleOcc\":\"8782.10\",\"priceSingleOcc\":20442.1,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8782.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":7447,\"priceDoubleOcc\":\"10195.08\",\"priceSingleOcc\":21855.08,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10195.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8860,\"priceDoubleOcc\":\"12315.08\",\"priceSingleOcc\":23975.08,\"priceExtraBed\":\"1950.40\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12315.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24667\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10483.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8504,\"priceDoubleOcc\":\"10483.40\",\"priceSingleOcc\":23733.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8900,\"priceDoubleOcc\":\"11077.00\",\"priceSingleOcc\":24327,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11077.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9069,\"priceDoubleOcc\":\"11331.40\",\"priceSingleOcc\":24581.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11331.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":8504,\"priceDoubleOcc\":\"10483.40\",\"priceSingleOcc\":23733.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10483.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":9493,\"priceDoubleOcc\":\"11967.40\",\"priceSingleOcc\":25217.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11967.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":10765,\"priceDoubleOcc\":\"13875.40\",\"priceSingleOcc\":27125.4,\"priceExtraBed\":\"4545.28\",\"priceWithoutBed\":\"1632.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13875.40\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24668\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14363.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11466,\"priceDoubleOcc\":\"14363.00\",\"priceSingleOcc\":31323,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14363.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11861,\"priceDoubleOcc\":\"14956.60\",\"priceSingleOcc\":31916.6,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14956.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12031,\"priceDoubleOcc\":\"15211.00\",\"priceSingleOcc\":32171,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15211.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":11466,\"priceDoubleOcc\":\"14363.00\",\"priceSingleOcc\":31323,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14363.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":12455,\"priceDoubleOcc\":\"15847.00\",\"priceSingleOcc\":32807,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15847.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-06-23\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":13727,\"priceDoubleOcc\":\"17755.00\",\"priceSingleOcc\":34715,\"priceExtraBed\":\"5671.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17755.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Kaziranga National Park -&amp;nbsp;01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If travelling to Arunachal Pradesh - Inner Line Permit.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Value Added Services&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary 500 ml of packaged drinking water per person per day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary finest Tea of Assam to take back home sweet memories of North East India (500 grams per family 250 grams per person)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary cup of refreshing Assam Tea (Chai or Saa as called in Assam) at Laheke Chai Cafe en route Kaziranga.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Prebooking of VIP Darshan at Kamakhya Temple (Subject to Minimum 48 Hrs prior information)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Prebooking of River Cruise at Guwahati (Subject to Minimum 48 Hrs prior information)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dedicated Tour Coordinator 24 x 7 throughout the Tour.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"176627\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[176627],\"Remark\":[\"&lt;p&gt;Car on Disposal Basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176632\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[176632],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176637\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[176637],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176642\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[176642],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Shillong','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Cherrapunji,Dawki,Mawlynnong',NULL,'25073',6430,18928,3,NULL,NULL,NULL,1,'',0,'2022-05-24 00:00:00','2022-06-30 00:00:00','2022-06-30 00:00:00',3,'India','101','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'no-01-shillong-beauty',NULL,NULL,NULL,0),(5,24690,1,12577,0,0,0,'Wildlife,Family,Hill Station',NULL,1,1,0,'{\"package\":{\"TPId\":24690,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/No_11_North_East_Triangle_68.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 11 North East Triangle\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4409\",\"SupplierName\":\"Assam Holidays 1\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Activity,Sightseeing,Car On Disposal\",\"PackageType\":\"Wildlife,Family,Hill Station\",\"Validity\":{\"From\":\"2022-07-18\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13741,\"Title\":\"Kaziranga National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":467876,\"Name\":\"Florican Lodge\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"AT Rd, Kohora, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;KAZIRANGA FLORICAN is located by the National Highway 37 (ASEAN Highway 1) at Kohora in the heart of Kaziranga National Park, Assam. Here attention to details create a soothing blend of warm, effortless service and harmonious spaces!&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467876\\/4650_04f7f6f92c0f4905a6e18c38b39f35af1582888914.jpg\",\"AccoAminitiesMask\":\"1100010000000001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467875,\"Name\":\"Wild Grass Lodge\",\"Star\":\"2.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kaziranga National Park, Resort Borgos, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;The Wild Grass Lodge is a jungle lodge located outside of kaziranga national park, 200 kms from guwahati, assam. It is built in an attractive rural style kind of architecture, with grounds having more than 40 species of trees over 200 species of shrubs, creepers and climbers. You will feel here perfect harmony of nature.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467875\\/4650_805691cb2c59fa1e24e9eece632b9c641582886856.jpg\",\"AccoAminitiesMask\":\"1100010000001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467874,\"Name\":\"Dhanshree Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kaziranga National Park, Bogorijuri, Kohora, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;Dhanshree Resort offers a variety of spacious rooms and which were recently redesigned with comfortable and modern wooden furniture. Comfort, style, and value are hallmarks of dhanshree Resort accommodations. Wooden furniture including sofa, center table with wardrobe provides an elegant atmosphere.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467874\\/4650_1f5805cc60d7fd7285b44d20c7148eec1582886712.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Cottage\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467873,\"Name\":\"IORA The Retreat\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Bogorijuri, Kohora, Kaziranga National Park, Resort Borgos, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;Iora Resort spread in 20 acre with 4 star amenities and 42 rooms is a good option to stay in Kaziranga National Park.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467873\\/4650_985019eeee56c6be38bef58c156570841582886398.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467872,\"Name\":\"Resort Borgos\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kaziranga National Park, No.2 Sildubi, Kohora, Assam\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"&lt;p&gt;Resort Borgos offers impeccable service and all the essential amenities to invigorate travelers. Guests of the hotel can enjoy on-site features like 24-hour room service, Wi-Fi in public areas, car park, room service, airport transfer.&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467872\\/4650_c58de72a0c8d9967eb5b686d3e369db31582885013.jpg\",\"AccoAminitiesMask\":\"1110000000001000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Deluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14951,\"Title\":\"Orchid Park\",\"Description\":\"Orchid Park houses not only an orchid house with over 600 species from Northeast India (April is the best month for blooms), but also bamboo and medicinal herb gardens, a cactus house, and a handicrafts museum. It&amp;#039;s 350m south off NH715 (old NH37), 1.2km east of Kohora&amp;#039;s central crossroads.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/Orchid_Park_13741_1583322791.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":19257,\"Title\":\"Mawlynnong - Cleanest Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2017637,\"Long\":91.9160305,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null}]}},{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard  Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14951,\"Title\":\"Orchid Park\",\"Description\":\"Orchid Park houses not only an orchid house with over 600 species from Northeast India (April is the best month for blooms), but also bamboo and medicinal herb gardens, a cactus house, and a handicrafts museum. It&amp;#039;s 350m south off NH715 (old NH37), 1.2km east of Kohora&amp;#039;s central crossroads.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/Orchid_Park_13741_1583322791.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":19257,\"Title\":\"Mawlynnong - Cleanest Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2017637,\"Long\":91.9160305,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null}]}},{\"CityId\":11240,\"Title\":\"Guwahati\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":467892,\"Name\":\"Hotel Rialto\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"GNB Rd, Pan Bazaar, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817947,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_01617278634.jpg\"},{\"ImagId\":4817948,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_11617278635.jpg\"},{\"ImagId\":4817949,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_21617278635.jpg\"},{\"ImagId\":4817950,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_01617278658.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Hotel Rialto is a value for money accommodation offering a comfortable stay to its patrons. Guests can enjoy the delicacies at the in-house pure vegetarian restaurant. Arranged over five floors, guests have an option to choose from its 34 well-kept rooms that are equipped amenities in the rooms include toiletries, makeup mirror, mini-fridge, drinking water, flat-screen TV, telephone, comfortable bed, side table, sofa bed, work desk, separate seating area, and attached bathroom with the facility of hot\\/cold running water. This hotel in Guwahati features car parking, front desk, travel counter, and conference hall on its premises. Guests are offered laundry, room service, housekeeping, and doctor on call during their stay.Hotel Rialto is at a distance of Guwahati Railway Station, which is 1 km away, 1 km from Assam State Transport Corporation, 6 km from the Assam State Zoo Cum Botanical Garden and 22 km from Lokpriya Gopinath Bordoloi International Airport. Nearby points of interest to drop by are Kamakhya Temple (7 km), Silsako Lake (11 km) , and Umananda Temple (1 km).&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467892\\/4650_b9c878b62fbdb948b7715129b6e02faf1582891612.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467891,\"Name\":\"D Courtyard\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"RG Baruah Rd, Rajdhani Nursery, Opp, Ganeshguri, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817951,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_01617278795.jpg\"},{\"ImagId\":4817952,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_11617278795.jpg\"},{\"ImagId\":4817953,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_21617278795.jpg\"},{\"ImagId\":4817954,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_31617278795.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Hotel &amp;#39;D&amp;#39; Courtyard is reckoned among the luxury budget hotels in Guwahati. Most significantly the hotel aims to provide luxurious standard within budget without compromising with your comforts. We enrich the stay of our visitors with our holistic approach of delivering excellent services. Our personalized and customized services suit every guest unique needs. A part from the significant hotels in guwahati, we stand high considering the amenities and services we offer. Our professional and experienced staff aims to satisfy an individual&acirc;&euro;&trade;s specific needs with full efficiency. Quality, elegance and comfort are what make it one of the best luxury budget hotels in Guwahati, Assam. The hotel with its host of facilities and services is designed to meet every need of leisure \\/ travel \\/ banquet \\/ conferencing services with best hospitality industry standards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The 34 well appointed guest keys and suites are elegantly designed and the delectable dinning option, technologically advanced conferencing features exquisite recreation facilities as well as warm and attentive services are just some of the things that make Hotel &amp;#39;D&amp;#39; Courtyard, Guwahati a preferred destination of pure bliss.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467891\\/4650_c68865f572bfcd7ac30b170f1de0f9281582891299.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467890,\"Name\":\"Mayflower Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"MLN Road, Pan Bazaar, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817955,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_01617279253.jpg\"},{\"ImagId\":4817956,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_11617279253.jpg\"},{\"ImagId\":4817957,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_21617279253.jpg\"},{\"ImagId\":4817958,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_31617279253.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;We at Mayflower Hotel are bundled up with all comforts of modern day hospitality industry. Being a luxurious hotel, we understand the meaning of hospitality and treat you in a way that you feel at home. To your surprise, our room rates are amazing. You can also choose our premium range of rooms or suites at a much competitive price.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Booking in advance would help us in giving you a warm reception. If you have any query, send us a mail on &acirc;&euro;&oelig;reservation@mayflowerhotel.in.net&acirc;&euro;\\u009d&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We also take this opportunity to thank our regular guests, for whom this website aims to provide all kind of information and latest updates. We welcome your suggestions to help us serve you better.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;So Come &amp; Enjoy with your Family &amp; Friends!&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;br \\/&gt;\\r\\n&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467890\\/4650_23d03b3e2d2bea930271959af28a36121582891147.jpg\",\"AccoAminitiesMask\":\"1000010000001001001\",\"AccoAminities\":[{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Irish\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467889,\"Name\":\"Shoolin Grand\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"G.S. Road Opp Indian Oil Petrol Pump, Rukmini Gaon, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817961,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467889\\/4650_01617279603.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;Located in Rukmini Gaon of Guwahati City, we are ideally located within the conveniences of city life yet distant enough from it&acirc;&euro;&trade;s over buzz. Something we all love from time to time. Hotel Shoolin Grand is equipped with premium infrastructure and services that guarantee a pleasurable stay. If you are looking for a uber luxurious experience, we have 45 premium category rooms, including three suites, and a multi-speciality spa with a unisex beauty salon. Food lovers can delight in the vast range of dishes in our multicuisine restaurant and experiment with tastes and flavors. While ensuring our guests the most comfortable stay, we also provide facilities of baby care room and kids play zone. We are also open for conferences and private events with our well set-up conference and banquet halls. So the next time you plan a visit to Guwahati or a carefree staycation, choose leisure, comfort, and impeccable facilities&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467889\\/4650_9c4b5dba1c71af56b3d93db827f671a41582890981.jpg\",\"AccoAminitiesMask\":\"1100010000001001101\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Executive Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467887,\"Name\":\"Kiranshree Grand\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"New Airport Road Mirzapur, Guwahati, Assam\"},\"Images\":{\"Image\":[{\"ImagId\":4817962,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_01617279793.jpg\"},{\"ImagId\":4817963,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_11617279793.jpg\"},{\"ImagId\":4817964,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_21617279793.jpg\"},{\"ImagId\":4817965,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_31617279793.jpg\"}]},\"CityId\":11240,\"Brief\":\"&lt;p&gt;The historic city of Guwahati is the gateway to India&acirc;&euro;&trade;s Northeast and Kiranshree Grand stands with pride at the gateway of Guwahati city. Just a few steps away from the Lokapriya Gopinath Bordoloi International Airport, this Hotel cum Resort is also ideal for anyone making a stopover on a trip to any other part of the northeastern region. The location of the hotel helps you travel to any part of Assam or the rest of the Northeast without getting stuck in the city traffic.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The elegantly designed hotel cum resort boasts of 122 luxurious rooms and suites with state of the art facilities and 24x7 services and is spread over 6 acres of land. The moment you step inside the property, the wide pathway that leads to the main lobby of the hotel will awe you with its grandeur. On one side of the pathway is the high boundary wall covered in green vines while on the other side is the vast parking zone. As the pathway comes to an end you will see the beautiful palm court ahead and the main lobby on your right. The ardour to strike a fine balance between nature and modern lifestyle is visible all throughout the campus and the lobby is no different. While our reception desk carries out the formalities of check-in, maybe you can find some time to admire the architecture and decorations of the enormously spacious lobby that transcends space and dimension through the glass walls on three sides.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can choose from Club Rooms, Grand Suites and Presidential Suites to meet your accomodational requirements during business trips, holidays etc. Or confine yourself in any of the Honeymoon Suites, to enjoy some intimate, romantic moments with your special one. Every floor of the residential blocks has a spacious lounge to relax.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467887\\/4650_b5720a0bf7d7ce57d46dbd074ff16f6e1582890297.jpg\",\"AccoAminitiesMask\":\"1100010000001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Club room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14951,\"Title\":\"Orchid Park\",\"Description\":\"Orchid Park houses not only an orchid house with over 600 species from Northeast India (April is the best month for blooms), but also bamboo and medicinal herb gardens, a cactus house, and a handicrafts museum. It&amp;#039;s 350m south off NH715 (old NH37), 1.2km east of Kohora&amp;#039;s central crossroads.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/Orchid_Park_13741_1583322791.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":8421,\"Title\":\"Jeep Safari (Kaziranga)\",\"Description\":\"Jeep Safari. One can enjoy the main attractions of Kaziranga by Jeep, which is usually accompanied by a guide or escort. Jeep Safari is a wonderful ride through which one can explore tigers, one horned rhinoceros, wild buffaloes, elephants, herd of deer, Pythons, and many other mammals &amp;amp; birds as well.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549866138.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14754,\"Title\":\"Living-Root bridge\",\"Description\":\"A living root bridge is a type of simple suspension bridge formed of living plant roots by tree shaping.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/34563\\/sightseeing\\/15826_220px-10_Shnongpdei_1.JPG                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":19257,\"Title\":\"Mawlynnong - Cleanest Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2017637,\"Long\":91.9160305,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15493,\"Title\":\"River Cruise on Brahmaputra\",\"Description\":\"Brahmaputra river adds to the beauty of the city as it flows down. It attracts many tourists and local public towards itself and offers the enchanting beauty of the nature.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/River_Cruise_on_Brahmaputra_11240_1584181616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1660,\"Title\":\"Srimanta Sankardev Kalakshetra\",\"Description\":\"Srimanta Sankaradev Kalakshetra commonly Kalakshetra is a cultural institution.  It includes a cultural museum, library and various facilities for preserving, demonstrating and performing cultural items, besides a children&amp;#039;s park. In addition to being Northeast India&amp;#039;s largest cultural congregation, the Kalakshetra is also a major tourist spot in Guwahati.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1308178,\"Long\":91.8207123,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1221\\/thumb\\/Srimanta Sankaradeva Kalakshetra_433.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":81,\"Title\":\"Assam State Museum\",\"Description\":\"The exhibits of the Museum are displayed under different sections, viz., Epigraphy, Sculptures, Miscellaneous, Natural History, art andCrafts, Anthropology &amp;amp; Folk Art &amp;amp; Arms section. The sculptures from the Assam region fall into four principal categories - stone, wood, metal and terracotta. The collections which are on display here, are very rare.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1820281,\"Long\":91.7506874,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3750\\/thumb\\/Assam State Museum_736.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":82,\"Title\":\"Assam State Zoo Cum Botanical Garden\",\"Description\":\"The Assam State Zoo cum Botanical Garden is the largest of its kind in the North East region and it is spread across 432 acre. The zoo is located within the Hengrabari Reserved Forest at Guwahati, India.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1633829,\"Long\":91.7819476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3751\\/thumb\\/Assam State Zoo Cum Botanical Garden_768.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14872,\"Title\":\"Dighalipukhuri\",\"Description\":\"Dighalipukhuri is a rectangular man-made pond in Guwahati, about half a mile long. Dighalipukhuri is occupied altogether area of garden and pond between 17-18 bigha lands.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11240\\/sightseeing\\/Dighalipukhuri_11240_1582631320.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":821,\"Title\":\"Kamakhya Temple\",\"Description\":\"The Kamakhya Temple also Kamrup-Kamakhya. It is the main temple in a complex of individual temples dedicated to the ten Mahavidyas: Kali, Tara, Sodashi, Bhuvaneshwari, Bhairavi, Chhinnamasta, Dhumavati, Bagalamukhi, Matangi and Kamalatmika. The temple consists of four chambers: garbhagriha and three mandapas locally called calanta, pancharatna and natamandira aligned from east to west.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1094\\/thumb\\/Kamakhya Temple_324.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1217,\"Title\":\"Navagraha Temple\",\"Description\":\"The Navagraha Temple is found on the top of Chitrasal Hill .  Enshrined in this temple are nine Shivalingams, representing the nine Celestial bodies, each covered with a colored garment symbolic of each of the celestial bodies, with a Shivaligam in the centre symbolising the Sun.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1895625,\"Long\":91.7593253,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3749\\/thumb\\/Navagraha Temple_583.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1395,\"Title\":\"Purva Tirupati Sri Balaji Temple &amp; Cultural Complex\",\"Description\":\"An embodiment of divinity set in marble, it actually is very serene inside the temple. One can easy sit meditating or offer prayers at the temple without any fear of being pushed out quickly. It is actually the replica of the Tirupati Balaji Temple.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1149412,\"Long\":91.7252655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6555\\/thumb\\/Purva Tirupati Sri Balaji Temple &amp; Cultural Complex_457.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1697,\"Title\":\"Sukreswar Temple\",\"Description\":\"The Sukreswar  Temple is an important Shiva temple in the state of Assam and was constructed in 1744.  Leading down from the temple compound is a long flight of steps to the river. Sitting on the steps of Sukreswar ghat one can enjoy the scenery of sun setting on the river, boats moving across the river, people performing puja in honour of their relatives who have left this world, children and older people bathing, far removed from the din and noise of the city\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.2006043,\"Long\":92.9375739,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3752\\/thumb\\/Sukreswar Temple_507.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1834,\"Title\":\"Umananda Temple\",\"Description\":\"Umananda Devaloi is a Shiva temple located at the Peacock Island in the middle of river Brahmaputra. It is known as smallest inhabited riverine island in the world.Siva is said to have resided here in the form of Bhayananda.  It is believed that, worship here on the Amavasya day when it falls on Monday brings the highest bliss.\",\"CurrencyType\":0,\"CityId\":11240,\"CityName\":\"Guwahati\",\"Lat\":26.1964922,\"Long\":91.7449079,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6556\\/thumb\\/Umananda Temple_737.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"176774\",\"Title\":\"Guwahati - Kaziranga National Park (230 KM  4.5 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Guwahati. Meet and be assisted by our representative at the airport\\/Railway Station. Transfer to Kaziranga National Park, the home of the One Horn Indian Rhinoceros. Check in at your hotel\\/Lodge\\/resort. Evening you may visit Orchid Park and the nearby Tea Plantations. Overnight stay at Kaziranga National Park.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467876,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":467875,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467874,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467873,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467872,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14951,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176779\",\"Title\":\"Kaziranga National Park\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Early morning explore Kaziranga National Park on back of elephant. Apart from world&amp;#39;s endangered One Horn Indian Rhinoceros, the Park sustains half the world&amp;#39;s population of genetically pure Wild Water Buffaloes, over 1000 Wild elephants and perhaps the densest population of Royal Bengal Tiger anywhere. Kaziranga National Park is also a bird watcher&amp;#39;s paradise and home to some 500 species of Birds. The Crested Serpent Eagle, Palla&amp;#39;s Fishing Eagle, Greyheaded Fishing Eagle, Swamp Partridge, Bar-headed goose, whistling Teal, Bengal Florican, Storks, Herons and Pelicans are some of the species found here. We will return to the resort for breakfast. Afternoon we proceed for a jeep safari. Evening come back to the hotel. Overnight stay at Kaziranga National Park.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467876,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":467875,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467874,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Cottage\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467873,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Luxury Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467872,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8382,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8421,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176784\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176789\",\"Title\":\"Kaziranga National Park&acirc;&euro;&ldquo; Shillong (280 Km | 6 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast drive to Shillong, also called &amp;#39;Scotland of the East&amp;quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176794\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM  1.5 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to Cherrapunji, this is the wettest place in the world. Visit&amp;nbsp; Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Evening return to Shillong. Visit Elephanta Falls and Shillong Peak for some breathtaking views. Overnight stay in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9189,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176799\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM  2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness.&amp;nbsp; It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River Evening return to Shillong. Overnight in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14754,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15310,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19257,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176804\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176809\",\"Title\":\"Shillong - Guwahati (100 KM  3 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast today visit Don Bosco Centre for Indigenous Cultures, Ward&amp;#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Proceed to Guwahati. Arrive and check in at hotel. Visit Srimanta Sankardev Kalakshetra a place where Assamese history and culture is presented, You may also visit the Assam Film Museum to know the History of Assamese Cinema. Visit GTAC Tea Lounge to enjoy a cup of finest Assam Tea and also carry some Tea back home. Here you will find the finest quality of Organic, CTC, Orthodox, Green Tea, White Tea, Purple Tea etc. Evening you may take a River Cruise (Direct Payment) on the mighty River Brahmaputra. You may also visit the local market. Assam is famous for Assam Silk particularly Golden Muga Silk, Assam Tea, Bamboo and Cane Products. Overnight stay in Guwahati.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467892,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":467891,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467890,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Irish\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467889,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Executive Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15493,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1660,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"176814\",\"Title\":\"Guwahati Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast check out from hotel. As time permits we may take a tour of the Kamakhya Temple and other Temples in Guwahati namely Purva Tirupati Shri Balaji Temple, Sukreswar Temple, Navagraha Temple, Umananda Temple at the Peacock Island which is the smallest inhabited River Island in the World, Assam State Museum, Dighali Pukhuri (Lake), State Zoo cum Botanical Garden, Planetarium and the Assam State Emporiums.&amp;nbsp;With everlasting memories transfer to Guwahati airport\\/railway station for onward journey.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11240,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":81,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":82,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14872,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":821,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1217,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1395,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1697,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1834,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24690\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15198.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12755,\"priceDoubleOcc\":15198.5,\"priceSingleOcc\":36103.5,\"priceExtraBed\":7869.32,\"priceWithoutBed\":6765.31,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15198.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6765.3099999999995,\"CEB\":7869.32,\"COSTDO\":15198.5,\"COSTSO\":36103.5,\"ACEB\":7869.32,\"COSTTO\":7869.32},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13245,\"priceDoubleOcc\":15933,\"priceSingleOcc\":36838,\"priceExtraBed\":7869.32,\"priceWithoutBed\":6765.31,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15933,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6765.3099999999995,\"CEB\":7869.32,\"COSTDO\":15933,\"COSTSO\":36838,\"ACEB\":7869.32,\"COSTTO\":7869.32},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13867,\"priceDoubleOcc\":16865.25,\"priceSingleOcc\":37770.25,\"priceExtraBed\":7869.32,\"priceWithoutBed\":6765.31,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16865.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6765.3099999999995,\"CEB\":7869.32,\"COSTDO\":16865.25,\"COSTSO\":37770.25,\"ACEB\":7869.32,\"COSTTO\":7869.32},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12767,\"priceDoubleOcc\":15216.58,\"priceSingleOcc\":36121.58,\"priceExtraBed\":7869.32,\"priceWithoutBed\":6765.31,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15216.58,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6765.3099999999995,\"CEB\":7869.32,\"COSTDO\":15216.58,\"COSTSO\":36121.58,\"ACEB\":7869.32,\"COSTTO\":7869.32},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13904,\"priceDoubleOcc\":16921.75,\"priceSingleOcc\":37826.75,\"priceExtraBed\":7869.32,\"priceWithoutBed\":6765.31,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16921.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6765.3099999999995,\"CEB\":7869.32,\"COSTDO\":16921.75,\"COSTSO\":37826.75,\"ACEB\":7869.32,\"COSTTO\":7869.32},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17162,\"priceDoubleOcc\":21809,\"priceSingleOcc\":42714,\"priceExtraBed\":7869.32,\"priceWithoutBed\":6765.31,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21809,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6765.3099999999995,\"CEB\":7869.32,\"COSTDO\":21809,\"COSTSO\":42714,\"ACEB\":7869.32,\"COSTTO\":7869.32}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24691\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14102.40\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":11732,\"priceDoubleOcc\":14102.4,\"priceSingleOcc\":14102.4,\"priceExtraBed\":6991.31,\"priceWithoutBed\":6087.31,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14102.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6087.3099999999995,\"CEB\":6991.3099999999995,\"COSTDO\":14102.4,\"COSTSO\":14102.4,\"ACEB\":6991.3099999999995,\"COSTTO\":6991.3099999999995},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13364,\"priceDoubleOcc\":16549.98,\"priceSingleOcc\":16549.98,\"priceExtraBed\":6991.31,\"priceWithoutBed\":6087.31,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16549.98,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6087.3099999999995,\"CEB\":6991.3099999999995,\"COSTDO\":16549.98,\"COSTSO\":16549.98,\"ACEB\":6991.3099999999995,\"COSTTO\":6991.3099999999995},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13364,\"priceDoubleOcc\":16549.98,\"priceSingleOcc\":16549.98,\"priceExtraBed\":6991.31,\"priceWithoutBed\":6087.31,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16549.98,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6087.3099999999995,\"CEB\":6991.3099999999995,\"COSTDO\":16549.98,\"COSTSO\":16549.98,\"ACEB\":6991.3099999999995,\"COSTTO\":6991.3099999999995},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":13364,\"priceDoubleOcc\":16549.98,\"priceSingleOcc\":16549.98,\"priceExtraBed\":6991.31,\"priceWithoutBed\":6087.31,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16549.98,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6087.3099999999995,\"CEB\":6991.3099999999995,\"COSTDO\":16549.98,\"COSTSO\":16549.98,\"ACEB\":6991.3099999999995,\"COSTTO\":6991.3099999999995},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":14501,\"priceDoubleOcc\":18255.15,\"priceSingleOcc\":18255.15,\"priceExtraBed\":6991.31,\"priceWithoutBed\":6087.31,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18255.15,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6087.3099999999995,\"CEB\":6991.3099999999995,\"COSTDO\":18255.15,\"COSTSO\":18255.15,\"ACEB\":6991.3099999999995,\"COSTTO\":6991.3099999999995},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":17759,\"priceDoubleOcc\":23142.4,\"priceSingleOcc\":45742.4,\"priceExtraBed\":6991.31,\"priceWithoutBed\":6087.31,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23142.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6087.3099999999995,\"CEB\":6991.3099999999995,\"COSTDO\":23142.4,\"COSTSO\":45742.4,\"ACEB\":6991.3099999999995,\"COSTTO\":6991.3099999999995},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13334,\"priceDoubleOcc\":16498,\"priceSingleOcc\":37968,\"priceExtraBed\":7006,\"priceWithoutBed\":6102,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16498,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6102,\"CEB\":7006,\"COSTDO\":16498,\"COSTSO\":37968,\"ACEB\":7006,\"COSTTO\":7006},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13824,\"priceDoubleOcc\":17232.5,\"priceSingleOcc\":38702.5,\"priceExtraBed\":7006,\"priceWithoutBed\":6102,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17232.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6102,\"CEB\":7006,\"COSTDO\":17232.5,\"COSTSO\":38702.5,\"ACEB\":7006,\"COSTTO\":7006},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":14464,\"priceDoubleOcc\":18193,\"priceSingleOcc\":39663,\"priceExtraBed\":7006,\"priceWithoutBed\":6102,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18193,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6102,\"CEB\":7006,\"COSTDO\":18193,\"COSTSO\":39663,\"ACEB\":7006,\"COSTTO\":7006},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13369,\"priceDoubleOcc\":16549.98,\"priceSingleOcc\":38019.979999999996,\"priceExtraBed\":7006,\"priceWithoutBed\":6102,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16549.98,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6102,\"CEB\":7006,\"COSTDO\":16549.98,\"COSTSO\":38019.979999999996,\"ACEB\":7006,\"COSTTO\":7006},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":14505,\"priceDoubleOcc\":18255.15,\"priceSingleOcc\":39725.15,\"priceExtraBed\":7006,\"priceWithoutBed\":6102,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18255.15,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6102,\"CEB\":7006,\"COSTDO\":18255.15,\"COSTSO\":39725.15,\"ACEB\":7006,\"COSTTO\":7006},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17764,\"priceDoubleOcc\":23142.4,\"priceSingleOcc\":44612.4,\"priceExtraBed\":7006,\"priceWithoutBed\":6102,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23142.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6102,\"CEB\":7006,\"COSTDO\":23142.4,\"COSTSO\":44612.4,\"ACEB\":7006,\"COSTTO\":7006}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24692\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20463.17\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16202,\"priceDoubleOcc\":20463.17,\"priceSingleOcc\":20463.17,\"priceExtraBed\":7678.35,\"priceWithoutBed\":3384.35,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20463.17,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3384.35,\"CEB\":7678.35,\"COSTDO\":20463.17,\"COSTSO\":20463.17,\"ACEB\":7678.35,\"COSTTO\":7678.35},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16202,\"priceDoubleOcc\":20463.17,\"priceSingleOcc\":20463.17,\"priceExtraBed\":7678.35,\"priceWithoutBed\":3384.35,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20463.17,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3384.35,\"CEB\":7678.35,\"COSTDO\":20463.17,\"COSTSO\":20463.17,\"ACEB\":7678.35,\"COSTTO\":7678.35},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16202,\"priceDoubleOcc\":20463.17,\"priceSingleOcc\":20463.17,\"priceExtraBed\":7678.35,\"priceWithoutBed\":3384.35,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20463.17,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3384.35,\"CEB\":7678.35,\"COSTDO\":20463.17,\"COSTSO\":20463.17,\"ACEB\":7678.35,\"COSTTO\":7678.35},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":16202,\"priceDoubleOcc\":20463.17,\"priceSingleOcc\":20463.17,\"priceExtraBed\":7678.35,\"priceWithoutBed\":3384.35,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20463.17,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3384.35,\"CEB\":7678.35,\"COSTDO\":20463.17,\"COSTSO\":20463.17,\"ACEB\":7678.35,\"COSTTO\":7678.35},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":17752,\"priceDoubleOcc\":22788.71,\"priceSingleOcc\":22788.71,\"priceExtraBed\":7678.35,\"priceWithoutBed\":3384.35,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22788.71,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3384.35,\"CEB\":7678.35,\"COSTDO\":22788.71,\"COSTSO\":22788.71,\"ACEB\":7678.35,\"COSTTO\":7678.35},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":21010,\"priceDoubleOcc\":27675.96,\"priceSingleOcc\":54795.96,\"priceExtraBed\":7678.35,\"priceWithoutBed\":3384.35,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27675.96,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3384.35,\"CEB\":7678.35,\"COSTDO\":27675.96,\"COSTSO\":54795.96,\"ACEB\":7678.35,\"COSTTO\":7678.35},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16197,\"priceDoubleOcc\":20453,\"priceSingleOcc\":46443,\"priceExtraBed\":7684,\"priceWithoutBed\":3390,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20453,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3390,\"CEB\":7684,\"COSTDO\":20453,\"COSTSO\":46443,\"ACEB\":7684,\"COSTTO\":7684},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16819,\"priceDoubleOcc\":21386.38,\"priceSingleOcc\":47376.380000000005,\"priceExtraBed\":7684,\"priceWithoutBed\":3390,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21386.38,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3390,\"CEB\":7684,\"COSTDO\":21386.38,\"COSTSO\":47376.38,\"ACEB\":7684,\"COSTTO\":7684},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17407,\"priceDoubleOcc\":22267.78,\"priceSingleOcc\":48257.78,\"priceExtraBed\":7684,\"priceWithoutBed\":3390,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22267.78,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3390,\"CEB\":7684,\"COSTDO\":22267.78,\"COSTSO\":48257.78,\"ACEB\":7684,\"COSTTO\":7684},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16203,\"priceDoubleOcc\":20463.17,\"priceSingleOcc\":46453.17,\"priceExtraBed\":7684,\"priceWithoutBed\":3390,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20463.17,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3390,\"CEB\":7684,\"COSTDO\":20463.17,\"COSTSO\":46453.17,\"ACEB\":7684,\"COSTTO\":7684},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17754,\"priceDoubleOcc\":22788.71,\"priceSingleOcc\":48778.71,\"priceExtraBed\":7684,\"priceWithoutBed\":3390,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22788.71,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3390,\"CEB\":7684,\"COSTDO\":22788.71,\"COSTSO\":48778.71,\"ACEB\":7684,\"COSTTO\":7684},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21013,\"priceDoubleOcc\":27677.09,\"priceSingleOcc\":53667.09,\"priceExtraBed\":7684,\"priceWithoutBed\":3390,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27677.09,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3390,\"CEB\":7684,\"COSTDO\":27677.09,\"COSTSO\":53667.09,\"ACEB\":7684,\"COSTTO\":7684}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24693\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25255.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20823,\"priceDoubleOcc\":25255.5,\"priceSingleOcc\":25255.5,\"priceExtraBed\":11958.79,\"priceWithoutBed\":8514.55,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25255.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8514.55,\"CEB\":11958.79,\"COSTDO\":25255.5,\"COSTSO\":25255.5,\"ACEB\":11958.79,\"COSTTO\":11958.79},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20823,\"priceDoubleOcc\":25255.5,\"priceSingleOcc\":25255.5,\"priceExtraBed\":11958.79,\"priceWithoutBed\":8514.55,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25255.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8514.55,\"CEB\":11958.79,\"COSTDO\":25255.5,\"COSTSO\":25255.5,\"ACEB\":11958.79,\"COSTTO\":11958.79},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20823,\"priceDoubleOcc\":25255.5,\"priceSingleOcc\":25255.5,\"priceExtraBed\":11958.79,\"priceWithoutBed\":8514.55,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25255.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8514.55,\"CEB\":11958.79,\"COSTDO\":25255.5,\"COSTSO\":25255.5,\"ACEB\":11958.79,\"COSTTO\":11958.79},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":20823,\"priceDoubleOcc\":25255.5,\"priceSingleOcc\":25255.5,\"priceExtraBed\":11958.79,\"priceWithoutBed\":8514.55,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25255.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8514.55,\"CEB\":11958.79,\"COSTDO\":25255.5,\"COSTSO\":25255.5,\"ACEB\":11958.79,\"COSTTO\":11958.79},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":22462,\"priceDoubleOcc\":27713.25,\"priceSingleOcc\":27713.25,\"priceExtraBed\":11958.79,\"priceWithoutBed\":8514.55,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27713.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8514.55,\"CEB\":11958.79,\"COSTDO\":27713.25,\"COSTSO\":27713.25,\"ACEB\":11958.79,\"COSTTO\":11958.79},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25456,\"priceDoubleOcc\":32205,\"priceSingleOcc\":64410,\"priceExtraBed\":11958.79,\"priceWithoutBed\":8514.55,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32205,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8514.55,\"CEB\":11958.79,\"COSTDO\":32205,\"COSTSO\":64410,\"ACEB\":11958.79,\"COSTTO\":11958.79},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20830,\"priceDoubleOcc\":25255.5,\"priceSingleOcc\":55765.5,\"priceExtraBed\":11978,\"priceWithoutBed\":8588,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25255.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8588,\"CEB\":11978,\"COSTDO\":25255.5,\"COSTSO\":55765.5,\"ACEB\":11978,\"COSTTO\":11978},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21485,\"priceDoubleOcc\":26238.6,\"priceSingleOcc\":56748.6,\"priceExtraBed\":11978,\"priceWithoutBed\":8588,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26238.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8588,\"CEB\":11978,\"COSTDO\":26238.6,\"COSTSO\":56748.6,\"ACEB\":11978,\"COSTTO\":11978},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21990,\"priceDoubleOcc\":26995.7,\"priceSingleOcc\":57505.7,\"priceExtraBed\":11978,\"priceWithoutBed\":8588,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26995.7,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8588,\"CEB\":11978,\"COSTDO\":26995.7,\"COSTSO\":57505.7,\"ACEB\":11978,\"COSTTO\":11978},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20830,\"priceDoubleOcc\":25255.5,\"priceSingleOcc\":55765.5,\"priceExtraBed\":11978,\"priceWithoutBed\":8588,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25255.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8588,\"CEB\":11978,\"COSTDO\":25255.5,\"COSTSO\":55765.5,\"ACEB\":11978,\"COSTTO\":11978},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22468,\"priceDoubleOcc\":27713.25,\"priceSingleOcc\":58223.25,\"priceExtraBed\":11978,\"priceWithoutBed\":8588,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27713.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8588,\"CEB\":11978,\"COSTDO\":27713.25,\"COSTSO\":58223.25,\"ACEB\":11978,\"COSTTO\":11978},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25463,\"priceDoubleOcc\":32205,\"priceSingleOcc\":62715,\"priceExtraBed\":11978,\"priceWithoutBed\":8588,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32205,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8588,\"CEB\":11978,\"COSTDO\":32205,\"COSTSO\":62715,\"ACEB\":11978,\"COSTTO\":11978}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24694\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"31142.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25856,\"priceDoubleOcc\":31142.8,\"priceSingleOcc\":31142.8,\"priceExtraBed\":15283.25,\"priceWithoutBed\":9282.95,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31142.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9282.95,\"CEB\":15283.25,\"COSTDO\":31142.8,\"COSTSO\":31142.8,\"ACEB\":15283.25,\"COSTTO\":15283.25},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25856,\"priceDoubleOcc\":31142.8,\"priceSingleOcc\":31142.8,\"priceExtraBed\":15283.25,\"priceWithoutBed\":9282.95,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31142.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9282.95,\"CEB\":15283.25,\"COSTDO\":31142.8,\"COSTSO\":31142.8,\"ACEB\":15283.25,\"COSTTO\":15283.25},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25856,\"priceDoubleOcc\":31142.8,\"priceSingleOcc\":31142.8,\"priceExtraBed\":15283.25,\"priceWithoutBed\":9282.95,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31142.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9282.95,\"CEB\":15283.25,\"COSTDO\":31142.8,\"COSTSO\":31142.8,\"ACEB\":15283.25,\"COSTTO\":15283.25},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":25856,\"priceDoubleOcc\":31142.8,\"priceSingleOcc\":31142.8,\"priceExtraBed\":15283.25,\"priceWithoutBed\":9282.95,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31142.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9282.95,\"CEB\":15283.25,\"COSTDO\":31142.8,\"COSTSO\":31142.8,\"ACEB\":15283.25,\"COSTTO\":15283.25},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":27495,\"priceDoubleOcc\":33600.55,\"priceSingleOcc\":33600.55,\"priceExtraBed\":15283.25,\"priceWithoutBed\":9282.95,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33600.55,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9282.95,\"CEB\":15283.25,\"COSTDO\":33600.55,\"COSTSO\":33600.55,\"ACEB\":15283.25,\"COSTTO\":15283.25},{\"From\":\"2021-03-23\",\"To\":\"2021-04-30\",\"Currency\":1,\"priceTripleOcc\":30489,\"priceDoubleOcc\":38092.3,\"priceSingleOcc\":75382.3,\"priceExtraBed\":15283.25,\"priceWithoutBed\":9282.95,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38092.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9282.95,\"CEB\":15283.25,\"COSTDO\":38092.3,\"COSTSO\":75382.3,\"ACEB\":15283.25,\"COSTTO\":15283.25},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25847,\"priceDoubleOcc\":31142.8,\"priceSingleOcc\":67302.8,\"priceExtraBed\":15255,\"priceWithoutBed\":9266,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31142.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9266,\"CEB\":15255,\"COSTDO\":31142.8,\"COSTSO\":67302.8,\"ACEB\":15255,\"COSTTO\":15255},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":26502,\"priceDoubleOcc\":32125.9,\"priceSingleOcc\":68285.9,\"priceExtraBed\":15255,\"priceWithoutBed\":9266,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32125.9,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9266,\"CEB\":15255,\"COSTDO\":32125.9,\"COSTSO\":68285.9,\"ACEB\":15255,\"COSTTO\":15255},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":27007,\"priceDoubleOcc\":32883,\"priceSingleOcc\":69043,\"priceExtraBed\":15255,\"priceWithoutBed\":9266,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32883,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9266,\"CEB\":15255,\"COSTDO\":32883,\"COSTSO\":69043,\"ACEB\":15255,\"COSTTO\":15255},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25847,\"priceDoubleOcc\":31142.8,\"priceSingleOcc\":67302.8,\"priceExtraBed\":15255,\"priceWithoutBed\":9266,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31142.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9266,\"CEB\":15255,\"COSTDO\":31142.8,\"COSTSO\":67302.8,\"ACEB\":15255,\"COSTTO\":15255},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":27485,\"priceDoubleOcc\":33600.55,\"priceSingleOcc\":69760.55,\"priceExtraBed\":15255,\"priceWithoutBed\":9266,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33600.55,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9266,\"CEB\":15255,\"COSTDO\":33600.55,\"COSTSO\":69760.55,\"ACEB\":15255,\"COSTTO\":15255},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":30480,\"priceDoubleOcc\":38092.3,\"priceSingleOcc\":74252.3,\"priceExtraBed\":15255,\"priceWithoutBed\":9266,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":13,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38092.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9266,\"CEB\":15255,\"COSTDO\":38092.3,\"COSTSO\":74252.3,\"ACEB\":15255,\"COSTTO\":15255}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24690\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14257.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11965,\"priceDoubleOcc\":14257,\"priceSingleOcc\":33867,\"priceExtraBed\":7381.84,\"priceWithoutBed\":6346.22,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14257,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6346.22,\"CEB\":7381.84,\"COSTDO\":14257,\"COSTSO\":33867,\"ACEB\":7381.84,\"COSTTO\":7381.84},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12425,\"priceDoubleOcc\":14946,\"priceSingleOcc\":34556,\"priceExtraBed\":7381.84,\"priceWithoutBed\":6346.22,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14946,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6346.22,\"CEB\":7381.84,\"COSTDO\":14946,\"COSTSO\":34556,\"ACEB\":7381.84,\"COSTTO\":7381.84},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13008,\"priceDoubleOcc\":15820.5,\"priceSingleOcc\":35430.5,\"priceExtraBed\":7381.84,\"priceWithoutBed\":6346.22,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15820.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6346.22,\"CEB\":7381.84,\"COSTDO\":15820.5,\"COSTSO\":35430.5,\"ACEB\":7381.84,\"COSTTO\":7381.84},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11977,\"priceDoubleOcc\":14273.96,\"priceSingleOcc\":33883.96,\"priceExtraBed\":7381.84,\"priceWithoutBed\":6346.22,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14273.96,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6346.22,\"CEB\":7381.84,\"COSTDO\":14273.96,\"COSTSO\":33883.96,\"ACEB\":7381.84,\"COSTTO\":7381.84},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13043,\"priceDoubleOcc\":15873.5,\"priceSingleOcc\":35483.5,\"priceExtraBed\":7381.84,\"priceWithoutBed\":6346.22,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15873.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6346.22,\"CEB\":7381.84,\"COSTDO\":15873.5,\"COSTSO\":35483.5,\"ACEB\":7381.84,\"COSTTO\":7381.84},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16099,\"priceDoubleOcc\":20458,\"priceSingleOcc\":40068,\"priceExtraBed\":7381.84,\"priceWithoutBed\":6346.22,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20458,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6346.22,\"CEB\":7381.84,\"COSTDO\":20458,\"COSTSO\":40068,\"ACEB\":7381.84,\"COSTTO\":7381.84}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24691\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15476.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12508,\"priceDoubleOcc\":15476,\"priceSingleOcc\":35616,\"priceExtraBed\":6572,\"priceWithoutBed\":5724,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15476,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5724,\"CEB\":6572,\"COSTDO\":15476,\"COSTSO\":35616,\"ACEB\":6572,\"COSTTO\":6572},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12967,\"priceDoubleOcc\":16165,\"priceSingleOcc\":36305,\"priceExtraBed\":6572,\"priceWithoutBed\":5724,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16165,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5724,\"CEB\":6572,\"COSTDO\":16165,\"COSTSO\":36305,\"ACEB\":6572,\"COSTTO\":6572},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13568,\"priceDoubleOcc\":17066,\"priceSingleOcc\":37206,\"priceExtraBed\":6572,\"priceWithoutBed\":5724,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17066,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5724,\"CEB\":6572,\"COSTDO\":17066,\"COSTSO\":37206,\"ACEB\":6572,\"COSTTO\":6572},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12541,\"priceDoubleOcc\":15524.76,\"priceSingleOcc\":35664.76,\"priceExtraBed\":6572,\"priceWithoutBed\":5724,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15524.76,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5724,\"CEB\":6572,\"COSTDO\":15524.76,\"COSTSO\":35664.76,\"ACEB\":6572,\"COSTTO\":6572},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13607,\"priceDoubleOcc\":17124.3,\"priceSingleOcc\":37264.3,\"priceExtraBed\":6572,\"priceWithoutBed\":5724,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17124.3,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5724,\"CEB\":6572,\"COSTDO\":17124.3,\"COSTSO\":37264.3,\"ACEB\":6572,\"COSTTO\":6572},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16663,\"priceDoubleOcc\":21708.8,\"priceSingleOcc\":41848.8,\"priceExtraBed\":6572,\"priceWithoutBed\":5724,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21708.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5724,\"CEB\":6572,\"COSTDO\":21708.8,\"COSTSO\":41848.8,\"ACEB\":6572,\"COSTTO\":6572}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24692\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19186.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":15193,\"priceDoubleOcc\":19186,\"priceSingleOcc\":43566,\"priceExtraBed\":7208,\"priceWithoutBed\":3180,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19186,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3180,\"CEB\":7208,\"COSTDO\":19186,\"COSTSO\":43566,\"ACEB\":7208,\"COSTTO\":7208},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":15777,\"priceDoubleOcc\":20061.56,\"priceSingleOcc\":44441.56,\"priceExtraBed\":7208,\"priceWithoutBed\":3180,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20061.56,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3180,\"CEB\":7208,\"COSTDO\":20061.56,\"COSTSO\":44441.56,\"ACEB\":7208,\"COSTTO\":7208},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16328,\"priceDoubleOcc\":20888.36,\"priceSingleOcc\":45268.36,\"priceExtraBed\":7208,\"priceWithoutBed\":3180,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20888.36,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3180,\"CEB\":7208,\"COSTDO\":20888.36,\"COSTSO\":45268.36,\"ACEB\":7208,\"COSTTO\":7208},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":15200,\"priceDoubleOcc\":19195.54,\"priceSingleOcc\":43575.54,\"priceExtraBed\":7208,\"priceWithoutBed\":3180,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19195.54,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3180,\"CEB\":7208,\"COSTDO\":19195.54,\"COSTSO\":43575.54,\"ACEB\":7208,\"COSTTO\":7208},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16654,\"priceDoubleOcc\":21377.02,\"priceSingleOcc\":45757.020000000004,\"priceExtraBed\":7208,\"priceWithoutBed\":3180,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21377.02,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3180,\"CEB\":7208,\"COSTDO\":21377.02,\"COSTSO\":45757.02,\"ACEB\":7208,\"COSTTO\":7208},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":19711,\"priceDoubleOcc\":25962.58,\"priceSingleOcc\":50342.58,\"priceExtraBed\":7208,\"priceWithoutBed\":3180,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25962.58,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3180,\"CEB\":7208,\"COSTDO\":25962.58,\"COSTSO\":50342.58,\"ACEB\":7208,\"COSTTO\":7208}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24693\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23691.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":19539,\"priceDoubleOcc\":23691,\"priceSingleOcc\":52311,\"priceExtraBed\":11236,\"priceWithoutBed\":8056,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23691,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8056,\"CEB\":11236,\"COSTDO\":23691,\"COSTSO\":52311,\"ACEB\":11236,\"COSTTO\":11236},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20154,\"priceDoubleOcc\":24613.2,\"priceSingleOcc\":53233.2,\"priceExtraBed\":11236,\"priceWithoutBed\":8056,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24613.2,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8056,\"CEB\":11236,\"COSTDO\":24613.2,\"COSTSO\":53233.2,\"ACEB\":11236,\"COSTTO\":11236},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20628,\"priceDoubleOcc\":25323.4,\"priceSingleOcc\":53943.4,\"priceExtraBed\":11236,\"priceWithoutBed\":8056,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25323.4,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8056,\"CEB\":11236,\"COSTDO\":25323.4,\"COSTSO\":53943.4,\"ACEB\":11236,\"COSTTO\":11236},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":19539,\"priceDoubleOcc\":23691,\"priceSingleOcc\":52311,\"priceExtraBed\":11236,\"priceWithoutBed\":8056,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23691,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8056,\"CEB\":11236,\"COSTDO\":23691,\"COSTSO\":52311,\"ACEB\":11236,\"COSTTO\":11236},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21076,\"priceDoubleOcc\":25996.5,\"priceSingleOcc\":54616.5,\"priceExtraBed\":11236,\"priceWithoutBed\":8056,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25996.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8056,\"CEB\":11236,\"COSTDO\":25996.5,\"COSTSO\":54616.5,\"ACEB\":11236,\"COSTTO\":11236},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23885,\"priceDoubleOcc\":30210,\"priceSingleOcc\":58830,\"priceExtraBed\":11236,\"priceWithoutBed\":8056,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30210,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8056,\"CEB\":11236,\"COSTDO\":30210,\"COSTSO\":58830,\"ACEB\":11236,\"COSTTO\":11236}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24694\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29213.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24246,\"priceDoubleOcc\":29213.6,\"priceSingleOcc\":63133.6,\"priceExtraBed\":14310,\"priceWithoutBed\":8692,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29213.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8692,\"CEB\":14310,\"COSTDO\":29213.6,\"COSTSO\":63133.6,\"ACEB\":14310,\"COSTTO\":14310},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24861,\"priceDoubleOcc\":30135.8,\"priceSingleOcc\":64055.8,\"priceExtraBed\":14310,\"priceWithoutBed\":8692,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30135.8,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8692,\"CEB\":14310,\"COSTDO\":30135.8,\"COSTSO\":64055.8,\"ACEB\":14310,\"COSTTO\":14310},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25334,\"priceDoubleOcc\":30846,\"priceSingleOcc\":64766,\"priceExtraBed\":14310,\"priceWithoutBed\":8692,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30846,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8692,\"CEB\":14310,\"COSTDO\":30846,\"COSTSO\":64766,\"ACEB\":14310,\"COSTTO\":14310},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24246,\"priceDoubleOcc\":29213.6,\"priceSingleOcc\":63133.6,\"priceExtraBed\":14310,\"priceWithoutBed\":8692,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29213.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8692,\"CEB\":14310,\"COSTDO\":29213.6,\"COSTSO\":63133.6,\"ACEB\":14310,\"COSTTO\":14310},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25783,\"priceDoubleOcc\":31519.1,\"priceSingleOcc\":65439.1,\"priceExtraBed\":14310,\"priceWithoutBed\":8692,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31519.1,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8692,\"CEB\":14310,\"COSTDO\":31519.1,\"COSTSO\":65439.1,\"ACEB\":14310,\"COSTTO\":14310},{\"From\":\"2021-08-21\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":28592,\"priceDoubleOcc\":35732.6,\"priceSingleOcc\":69652.6,\"priceExtraBed\":14310,\"priceWithoutBed\":8692,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":6,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35732.6,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8692,\"CEB\":14310,\"COSTDO\":35732.6,\"COSTSO\":69652.6,\"ACEB\":14310,\"COSTTO\":14310}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc. 01 Elephant safari (Subject to Availability) &amp;amp; 01 Jeep safari.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:#f39c12&quot;&gt;&lt;strong&gt;Value Added Services&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary 500 ml of packaged drinking water per person per day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary finest Tea of Assam to take back home sweet memories of North East India (500 grams per family | 250 grams per person)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary cup of refreshing Assam Tea (Chai or Saa as called in Assam) at Laheke Chai Cafe en route Kaziranga.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Prebooking of VIP Darshan at Kamakhya Temple (Subject to Minimum 48 Hrs prior information)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Prebooking of River Cruise at Guwahati (Subject to Minimum 48 Hrs prior information)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dedicated Tour Coordinator 24 x 7 throughout the Tour.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":30,\"ExtraValue\":\"2000\",\"IsPercentage\":false,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"7857\",\"Value\":\"0\"},{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"7862\",\"Value\":\"25\"},{\"DaysBefore\":7,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 7 Days\",\"TPRulesSysId\":\"7867\",\"Value\":\"50\"},{\"DaysBefore\":3,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 3 Days\",\"TPRulesSysId\":\"7872\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"176774\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[176774],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"176779\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[176779],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"176784\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[176784],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176789\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[176789],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"176794\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[176794],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"176799\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[176799],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"176804\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[176804],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"176809\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[176809],\"Remark\":[\"&lt;p&gt;Car on disposal basis&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"176814\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[176814],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Kaziranga National Park,Shillong,Guwahati','Kaziranga National Park,Assam,Indian Subcontinent,Northeast India,India,Shillong,Meghalaya,Guwahati,Cherrapunji,Dawki,Mawlynnong',NULL,'13741,25073,11240',14102,38092,6,NULL,NULL,NULL,1,'',0,'2022-07-18 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2022-07-18 13:45:13','2022-07-18 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'no-11-north-east-triangle',NULL,NULL,NULL,0),(6,24788,1,12577,1,0,0,'Adventure,Family,Hill Station,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":24788,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/No_08_Mesmerizing_Meghalaya_76.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#984806&quot;&gt;Please Note&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All tours can be fully customized to meet your requirement. You can change the number of days at any destination, add or delete any sightseeing in the itinerary as per your interest, change the hotel and\\/or the room category, change the transport used for the tour, choose a meal plan suitable to you.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":1,\"AgencyId\":4650,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4650,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"Assam Holidays\",\"Name\":\"No 08 Mesmerizing Meghalaya\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4409\",\"SupplierName\":\"Assam Holidays 1\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Sightseeing,Car On Disposal\",\"PackageType\":\"Adventure,Family,Hill Station,Romantic\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":479599,\"Name\":\"Hotel Boulevard\",\"Star\":\"2.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775518\",\"Long\":\"91.8814496\",\"Address\":\"Thana Road, above Dominos Pizza, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":{\"Image\":[{\"ImagId\":4817966,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_01617280162.jpg\"},{\"ImagId\":4817967,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_11617280162.jpg\"},{\"ImagId\":4817968,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_21617280162.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Nestled at the foot hills of evergreen pine forests. The Boulevard Hotel is a budget property it offers facilities like front desk, parking, housekeeping, laundry, wi-fi, doctor on call service and many more. All rooms are well maintained and clean with in-room amenities like restful beds, television, tea\\/coffee maker, running hot and cold water, bathroom with essential toiletries and many more are been offered at this property. The multi cuisine restaurant provides mouth watering food. Nearest means of transportation from this property is Meghalaya Transport Corporation, Guwahati Railway Station and Osmani International Airport. Some of the famous tourist destination near the property are The Lady Hydari Park(1.6 m), Crinoline Swimming Pool(1.8 km), Police Bazar(1.1 km), Ward&amp;#39;s Lake(850 m), Don Bosco Centre for Indigenous Cultures(2.7 km) and many more. The Boulevard Hotel is an ideal pick for spending a peaceful vacation, away from the city din.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479599\\/4650_d03cd53d1dd685722883aa8d548a130b1617280162.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469383,\"Name\":\"Orchid Annex\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4817969,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_01617280282.jpg\"},{\"ImagId\":4817970,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_11617280282.jpg\"},{\"ImagId\":4817971,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_21617280282.jpg\"},{\"ImagId\":4817972,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_31617280282.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;At Hotel Orchid Annex, every effort is made to make guests feel comfortable. To do so, the hotel provides the best in services and amenities. For the comfort and convenience of guests, the hotel offers free Wi-Fi in all rooms, 24-hour security, daily housekeeping, postal service, taxi service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel accommodations have been carefully appointed to the highest degree of comfort and convenience. In some of the rooms, guests can find television LCD\\/plasma screen, free welcome drink, mirror, sofa, towels. Besides, the hotel&amp;#39;s host of recreational offerings ensures you have plenty to do during your stay. With an ideal location and facilities to match, Hotel Orchid Annex hits the spot in many ways.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469383\\/4650_f1207bc819b4b5f143bb24ca1543bdbc1584179276.jpg\",\"AccoAminitiesMask\":\"1100000000001000001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":469034,\"Name\":\"Heiga\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Upper Lachumiere Dhankheti Shillong, Jowai Roads, NH6, Shillong, Meghalaya\"},\"Images\":{\"Image\":[{\"ImagId\":4817973,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_01617280678.jpg\"},{\"ImagId\":4817974,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_11617280678.jpg\"},{\"ImagId\":4817975,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_21617280678.jpg\"},{\"ImagId\":4817976,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_31617280678.jpg\"}]},\"CityId\":25073,\"Brief\":\"&lt;p&gt;Hotel Heiga is a great choice for travellers looking for a 3 star hotel in Shillong. It is located in Lachumiere. This Hotel stands out as one of the highly recommended hotel in Shillong and is recommended by 95% of our guests. Hotel is rated 4.4 out of 5, which is considered as Very good. Some of the popular transit points from the hotel are Shillong Airport (17.8 kms) and Shillong Airport (17.8 kms). The Hotel is in proximity to some popular tourist attractions and other places of interest in Shillong. Some of the tourist attractions include and Jawaharlal Nehru Stadium (1.8 kms).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;From all the 3 Star hotels in Shillong, Hotel Heiga is very much popular among the tourists. A smooth check-in\\/check-out process, flexible policies and friendly management garner great customer satisfaction for this property. The Hotel has standard Check-In time as 02:00 PM and Check-Out time as 12:00 PM&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_469034\\/4650_900f7739e5f7998ccda59e1140ff03661584178991.jpg\",\"AccoAminitiesMask\":\"1100000000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":481250,\"Name\":\"The Heritage Club\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5593559\",\"Long\":\"91.8919287\",\"Address\":\"Castle Road, Clive Colony, Malki, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"&lt;p&gt;The Heritage Club - Tripura Castle offers top of the class accommodations in Shillong. Located on a hilltop surrounded with pine forests, it boasts of the best view any hotel in the city can offer.&Acirc;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_481250\\/4650_a0450963aabe48a6e36352913919dedb1618216398.jpg\",\"AccoAminitiesMask\":\"1100000010001001000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14868,\"Title\":\"Krang Suri Falls\",\"Description\":\"Krang Suri waterfall is known for being located within the mountains, which can also be seen from afar. To reach the waterfall the tourists must walk alongside the border of the mountains, which is a very narrow yet slippery path.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Krang_Suri_Falls_25073_1582626874.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9193,\"Title\":\"Laitlum Canyons\",\"Description\":\"Laitlum Canyons are perfectly perched in the Khasi Hills and is the most off-beat and explored places for a traveler looking for a unique experience. With a short hike to the edge of the hills, experience peace, adventure and beauty all at once. Visit the hilltop and admire the alluring views of the whole valley. Taking into account its surreal beauty and tranquillity, it is one of the must-visit places near Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094825.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9181,\"Title\":\"Ward\'s Lake\",\"Description\":\"Nestled at the center of the city, Ward&acirc;&euro;&trade;s Lake is a must-visit spot in Shillong. The refreshing lake encircled with lush gardens and verdant trees is the best place to spend the evening watching the dancing evening show. Take a break and head for a boat ride and enjoy the natural beauty of Ward&acirc;&euro;&trade;s Lake.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8863422,\"Long\":25.5754998,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":20576,\"Title\":\"M\\u00c4\\u0081wsynr\\u00c4\\u0081m\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.2975363,\"Long\":91.58263559999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":20577,\"Title\":\"Mawphlang Sacred Grove\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.4452356,\"Long\":91.7488968,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":19257,\"Title\":\"Mawlynnong - Cleanest Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2017637,\"Long\":91.9160305,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15494,\"Title\":\"Indo Bangladesh Border\",\"Description\":\"The Bangladesh&amp;ndash;India border, known locally as the International Border (IB), is an international ... The children were setting fishing nets near the border. ... Assam. Mankachar Land Customs Stations(India) and Rowmari post ... state of Tripura, the second largest city of Northeast India that borders Bangladesh in the east.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Indo_Bangladesh_Border_36513_1584183964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7071,\"Title\":\"Double Decker Living Root Bridge\",\"Description\":\"A &amp;#039;root bridge&amp;#039;, it is located in Tryna village. Made of the Indian Rubber Tree this is one of the biggest attractions of Cherrapunji. A unique attraction and quite an innovative mix of nature and engineering. The Umshiang River flows beneath the bridge.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2258523,\"Long\":91.6759035,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Double_Decker_Living_Root_Brid_34563_1532428304.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null}]}},{\"CityId\":34563,\"Title\":\"Cherrapunji\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":467886,\"Name\":\"Sohra Plaza\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Situated in the wettest place on the planet (though not currently), this homestay offers you a comfortable and homely stay. Since there is almost no construction around this place, you get unobstructed views of the landscape of Khasi Hills.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467886\\/4650_6773560e9a6877706160c30298f3233d1582890001.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":479704,\"Name\":\"Smoky Falls Mae Fi Resort\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2403781\",\"Long\":\"91.676958\",\"Address\":\"Tyrna Enroute to Nongriat, via Sohra Cherrapunjee Cherrapunji, Tyrna, Meghalaya 793108, India\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Smoky Falls Mae Fi Resort is located at Tyrna Village, 7 km from Cherrapunjee enroute to the Double decker living root bridge and Rainbow Falls, Nongriat. You can stay at our resort and park your car here and get down to Nongriat. The trek from here is about an hour. The resort has a view point, where you can see many waterfalls falling down from Sohra \\/ Cherrapunjee mountain range.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_479704\\/4650_6657b8ec009c75e090169b3e236037d81617359955.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467882,\"Name\":\"San Naela Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Land mark - Near NIT , SOHRA , Pynshadkhurai - Shella Road Saitsohpen, Cherrapunji&acirc;&euro;\\u017d, Meghalaya\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;Resort San-Nael-La organize any enjoyable and memorable event you require. A truly remarkable destination where We try to keep your stay as special as you are. With experienced team in hospitality industry, we are second to none and can offer better service within your budget. It is very popular for its restaurant.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467882\\/4650_bd829c9e9e583c10af878ebf50c561ec1582889677.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":467880,\"Name\":\"Pala Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Kutmadan, Sohra, Cherrapunji, Shillong, Meghalaya\"},\"Images\":[],\"CityId\":34563,\"Brief\":\"&lt;p&gt;&Acirc;&nbsp;At Pala Resort, we pride ourselves in outstanding services. Our Staffs would make sure that our esteemed guests feel relaxed and at home, we are happy to provide and offer:&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_467880\\/4650_34a8b9a4ed689bd8198ad424f24ec46b1582889526.jpg\",\"AccoAminitiesMask\":\"1100010000001001001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Cottage\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14868,\"Title\":\"Krang Suri Falls\",\"Description\":\"Krang Suri waterfall is known for being located within the mountains, which can also be seen from afar. To reach the waterfall the tourists must walk alongside the border of the mountains, which is a very narrow yet slippery path.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Krang_Suri_Falls_25073_1582626874.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9193,\"Title\":\"Laitlum Canyons\",\"Description\":\"Laitlum Canyons are perfectly perched in the Khasi Hills and is the most off-beat and explored places for a traveler looking for a unique experience. With a short hike to the edge of the hills, experience peace, adventure and beauty all at once. Visit the hilltop and admire the alluring views of the whole valley. Taking into account its surreal beauty and tranquillity, it is one of the must-visit places near Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094825.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9181,\"Title\":\"Ward\'s Lake\",\"Description\":\"Nestled at the center of the city, Ward&acirc;&euro;&trade;s Lake is a must-visit spot in Shillong. The refreshing lake encircled with lush gardens and verdant trees is the best place to spend the evening watching the dancing evening show. Take a break and head for a boat ride and enjoy the natural beauty of Ward&acirc;&euro;&trade;s Lake.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8863422,\"Long\":25.5754998,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":20576,\"Title\":\"M\\u00c4\\u0081wsynr\\u00c4\\u0081m\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.2975363,\"Long\":91.58263559999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":20577,\"Title\":\"Mawphlang Sacred Grove\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.4452356,\"Long\":91.7488968,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":19257,\"Title\":\"Mawlynnong - Cleanest Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2017637,\"Long\":91.9160305,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15494,\"Title\":\"Indo Bangladesh Border\",\"Description\":\"The Bangladesh&amp;ndash;India border, known locally as the International Border (IB), is an international ... The children were setting fishing nets near the border. ... Assam. Mankachar Land Customs Stations(India) and Rowmari post ... state of Tripura, the second largest city of Northeast India that borders Bangladesh in the east.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Indo_Bangladesh_Border_36513_1584183964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15310,\"Title\":\"Umngot River\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface.\",\"CurrencyType\":0,\"CityId\":36513,\"CityName\":\"Dawki\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/36513\\/sightseeing\\/Umngot_River_36513_1584013197.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":9189,\"Title\":\"Dainthlen Falls\",\"Description\":\"Dainthlen Falls is one of the most popular spots in Meghalaya, located around 5km from the city. The natural rock carvings near the soft gushing waterfalls narrate the story of a python which was killed at the top of the waterfalls. It is one of the most beautiful waterfalls in the region a must-visit spot.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":91.6834503,\"Long\":25.2934487,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/48_1556094759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7071,\"Title\":\"Double Decker Living Root Bridge\",\"Description\":\"A &amp;#039;root bridge&amp;#039;, it is located in Tryna village. Made of the Indian Rubber Tree this is one of the biggest attractions of Cherrapunji. A unique attraction and quite an innovative mix of nature and engineering. The Umshiang River flows beneath the bridge.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2258523,\"Long\":91.6759035,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Double_Decker_Living_Root_Brid_34563_1532428304.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7073,\"Title\":\"Nohkalikai Waterfalls\",\"Description\":\"Nohkalikai Falls is the tallest plunge waterfall in India. Its height is 340 metres. The waterfall is located in the Indian state of Meghalaya, near Cherrapunji, one of the wettest places on Earth. Nohkalikai Falls are fed by the rainwater collected on the summit of a comparatively small plateau and decrease in power during the dry season, from December to February. Below the falls is a plunge pool with unusual green-colored water.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.2445707,\"Long\":91.7240877,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohkalikai_Waterfalls_34563_1617800980.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":14867,\"Title\":\"Thangkharang Park\",\"Description\":\"Natural area popular for its picturesque setting &amp;amp; views, with a fountain, greenhouse &amp;amp; garden.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Thangkharang_Park_34563_1582625936.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":7076,\"Title\":\"The Eco Park\",\"Description\":\"The Shillong Agri-Hoticulture has given this park many beautiful orchids which are housed in the Eco park&amp;#039;s green house. The Eco park&amp;#039;s biggest USP is the view point from where one can enjoy views of the massive, plain yet exotic Sylhet Plains of Bangladesh.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":25.247566,\"Long\":91.7356387,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/The_Eco_Park__34563_1532431348.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null},{\"RefSSId\":15495,\"Title\":\"Nohsngithiang Falls\",\"Description\":\"Nohsngithiang Falls (also known as the Seven Sisters Waterfalls or Mawsmai Falls) is a seven-segmented waterfall located 1 kilometre south of Mawsmai village in East Khasi Hills district in the Indian state of Meghalaya. The water falls from a height of 315 metres and has an average width of 70 metres. making it one of the tallest waterfalls in India.\",\"CurrencyType\":0,\"CityId\":34563,\"CityName\":\"Cherrapunji\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34563\\/sightseeing\\/Nohsngithiang_Falls_34563_1617802860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4409,\"SupplierName\":\"Assam Holidays 1\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"177397\",\"Title\":\"Guwahati &acirc;&euro;&ldquo; Shillong (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Awesome Assam. Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &amp;#39;Scotland of the East&amp;quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market. Overnight stay in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177402\",\"Title\":\"Shillong - Laitlum Canyons -Krang Suri Falls - Shillong (90 KM | 2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast we proceed to Laitlum Canyons for some breathtaking views. We then visit Krang Suri Falls. It is one of the best waterfalls in Meghalaya. You can also swim in a naturally formed pool here. You can also go behind the waterfall and see the water falling in front of you. After Lunch return back to Shillong. Visit Don Bosco Centre for Indigenous Cultures, Ward&amp;#39;s Lake where you can enjoy boating, Cathedral Catholic Church and Lady Hydari Park. Overnight in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14868,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9193,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9181,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177407\",\"Title\":\"Shillong &acirc;&euro;&ldquo; Mawsynram &acirc;&euro;&ldquo; Mawphlang Sacred Forest &acirc;&euro;&ldquo; Shillong ( 60 KM | 1.5 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast visit Mawsynram which as per the new geological reports receives the highest rainfall in the world. The area is known for its many caves. Later visit Mawphlang Sacred Grove. It is one of the biggest Sacred Groves in Meghalaya.It is a well preserved forest by local community. Nothing can be taken out from the forest as this is being protected by the local deities. Visit Khasi model village. Evening return to Shillong. Visit Elephanta Falls and Shillong Peak for some breathtaking views. Overnight stay in Shillong&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479599,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":469383,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":469034,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":481250,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20576,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20577,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177412\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177417\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Cherrapunjee (90 KM  2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast visit Mawlynnong Village the cleanest village in India. This cute and colorful little village is known for its cleanliness.&amp;nbsp; It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the Living Root Bridge and another strange natural phenomenon of a boulder balancing on another rock. Visit Dawki, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the Umgnot River. Transfer to Cherrapunjee. Overnight in Cherrapunjee.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479704,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467882,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19257,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15494,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15310,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177422\",\"Title\":\"Cherrapunjee Local Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Get up early today to enjoy the mesmerizing mornings of Cherrapunjee. After breakfast visit Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park. Evening free. Overnight stay in Cherrapunjee.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional&lt;\\/strong&gt; - We proceed for a full day trekking to the Double Decker Living Root Bridge at Nongriat Village. We have to trek down 3200 steps approximately each way to the Double Decker Living Root Bridge. We can further trek down to the Rainbow Falls which take about 60 to 90 minutes from the Double Decker Living Root Bridge.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":467886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":479704,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":467882,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":467880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Cottage\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":9189,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7071,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14867,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7076,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15495,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"177427\",\"Title\":\"Cherrapunji  - Guwahati Departure (160 KM | 4.5 HRS)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast today Proceed to Guwahati and with everlasting memories transfer to airport\\/railway station for onward journey.&lt;\\/p&gt;\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34563,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24788\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11448.03\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8777,\"priceDoubleOcc\":\"11448.03\",\"priceSingleOcc\":27833.03,\"priceExtraBed\":\"3435.20\",\"priceWithoutBed\":\"2305.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11448.03\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9372,\"priceDoubleOcc\":\"12340.73\",\"priceSingleOcc\":28725.73,\"priceExtraBed\":\"3435.20\",\"priceWithoutBed\":\"2305.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12340.73\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9706,\"priceDoubleOcc\":\"12841.32\",\"priceSingleOcc\":29226.32,\"priceExtraBed\":\"3435.20\",\"priceWithoutBed\":\"2305.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12841.32\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8781,\"priceDoubleOcc\":\"11453.68\",\"priceSingleOcc\":27838.68,\"priceExtraBed\":\"3435.20\",\"priceWithoutBed\":\"2305.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11453.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":10257,\"priceDoubleOcc\":\"13667.35\",\"priceSingleOcc\":30052.35,\"priceExtraBed\":\"3435.20\",\"priceWithoutBed\":\"2305.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13667.35\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12479,\"priceDoubleOcc\":\"17000.85\",\"priceSingleOcc\":33385.85,\"priceExtraBed\":\"3435.20\",\"priceWithoutBed\":\"2305.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17000.85\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24789\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10690.93\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8348,\"priceDoubleOcc\":\"10690.93\",\"priceSingleOcc\":25945.93,\"priceExtraBed\":\"3661.20\",\"priceWithoutBed\":\"1966.20\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10690.93\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8957,\"priceDoubleOcc\":\"11605.10\",\"priceSingleOcc\":26860.1,\"priceExtraBed\":\"3661.20\",\"priceWithoutBed\":\"1966.20\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11605.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9272,\"priceDoubleOcc\":\"12077.44\",\"priceSingleOcc\":27332.440000000002,\"priceExtraBed\":\"3661.20\",\"priceWithoutBed\":\"1966.20\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12077.44\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8348,\"priceDoubleOcc\":\"10690.93\",\"priceSingleOcc\":25945.93,\"priceExtraBed\":\"3661.20\",\"priceWithoutBed\":\"1966.20\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10690.93\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9823,\"priceDoubleOcc\":\"12904.60\",\"priceSingleOcc\":28159.6,\"priceExtraBed\":\"3661.20\",\"priceWithoutBed\":\"1966.20\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12904.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12046,\"priceDoubleOcc\":\"16238.10\",\"priceSingleOcc\":31493.1,\"priceExtraBed\":\"3661.20\",\"priceWithoutBed\":\"1966.20\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16238.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24790\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14781.53\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11271,\"priceDoubleOcc\":\"14781.53\",\"priceSingleOcc\":33991.53,\"priceExtraBed\":\"4248.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14781.53\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11863,\"priceDoubleOcc\":\"15670.84\",\"priceSingleOcc\":34880.84,\"priceExtraBed\":\"4248.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15670.84\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12196,\"priceDoubleOcc\":\"16170.30\",\"priceSingleOcc\":35380.3,\"priceExtraBed\":\"4248.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16170.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11271,\"priceDoubleOcc\":\"14781.53\",\"priceSingleOcc\":33991.53,\"priceExtraBed\":\"4248.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14781.53\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12746,\"priceDoubleOcc\":\"16994.07\",\"priceSingleOcc\":36204.07,\"priceExtraBed\":\"4248.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16994.07\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":14968,\"priceDoubleOcc\":\"20327.57\",\"priceSingleOcc\":39537.57,\"priceExtraBed\":\"4248.80\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20327.57\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24791\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17933.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":14667,\"priceDoubleOcc\":\"17933.10\",\"priceSingleOcc\":39968.1,\"priceExtraBed\":\"8136.00\",\"priceWithoutBed\":\"1762.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17933.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":15312,\"priceDoubleOcc\":\"18899.25\",\"priceSingleOcc\":40934.25,\"priceExtraBed\":\"8136.00\",\"priceWithoutBed\":\"1762.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18899.25\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":15562,\"priceDoubleOcc\":\"19274.41\",\"priceSingleOcc\":41309.41,\"priceExtraBed\":\"8136.00\",\"priceWithoutBed\":\"1762.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19274.41\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":14672,\"priceDoubleOcc\":\"17939.88\",\"priceSingleOcc\":39974.880000000005,\"priceExtraBed\":\"8136.00\",\"priceWithoutBed\":\"1762.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17939.88\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16223,\"priceDoubleOcc\":\"20266.55\",\"priceSingleOcc\":42301.55,\"priceExtraBed\":\"8136.00\",\"priceWithoutBed\":\"1762.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20266.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":18219,\"priceDoubleOcc\":\"23261.05\",\"priceSingleOcc\":45296.05,\"priceExtraBed\":\"8136.00\",\"priceWithoutBed\":\"1762.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23261.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24792\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22068.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17828,\"priceDoubleOcc\":\"22068.90\",\"priceSingleOcc\":48058.9,\"priceExtraBed\":\"9345.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22068.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":18466,\"priceDoubleOcc\":\"23026.01\",\"priceSingleOcc\":49016.009999999995,\"priceExtraBed\":\"9345.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23026.01\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":18711,\"priceDoubleOcc\":\"23393.26\",\"priceSingleOcc\":49383.259999999995,\"priceExtraBed\":\"9345.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23393.26\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17832,\"priceDoubleOcc\":\"22075.68\",\"priceSingleOcc\":48065.68,\"priceExtraBed\":\"9345.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22075.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":19383,\"priceDoubleOcc\":\"24402.35\",\"priceSingleOcc\":50392.35,\"priceExtraBed\":\"9345.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24402.35\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21380,\"priceDoubleOcc\":\"27396.85\",\"priceSingleOcc\":53386.85,\"priceExtraBed\":\"9345.10\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"13.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27396.85\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"24788\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10738.86\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8233,\"priceDoubleOcc\":\"10738.86\",\"priceSingleOcc\":26108.86,\"priceExtraBed\":\"3222.40\",\"priceWithoutBed\":\"2162.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10738.86\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8792,\"priceDoubleOcc\":\"11576.26\",\"priceSingleOcc\":26946.260000000002,\"priceExtraBed\":\"3222.40\",\"priceWithoutBed\":\"2162.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11576.26\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9105,\"priceDoubleOcc\":\"12045.84\",\"priceSingleOcc\":27415.84,\"priceExtraBed\":\"3222.40\",\"priceWithoutBed\":\"2162.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12045.84\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8237,\"priceDoubleOcc\":\"10744.16\",\"priceSingleOcc\":26114.16,\"priceExtraBed\":\"3222.40\",\"priceWithoutBed\":\"2162.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10744.16\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9621,\"priceDoubleOcc\":\"12820.70\",\"priceSingleOcc\":28190.7,\"priceExtraBed\":\"3222.40\",\"priceWithoutBed\":\"2162.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12820.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11706,\"priceDoubleOcc\":\"15947.70\",\"priceSingleOcc\":31317.7,\"priceExtraBed\":\"3222.40\",\"priceWithoutBed\":\"2162.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15947.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"24789\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10028.66\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":7831,\"priceDoubleOcc\":\"10028.66\",\"priceSingleOcc\":24338.66,\"priceExtraBed\":\"3434.40\",\"priceWithoutBed\":\"1844.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10028.66\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8402,\"priceDoubleOcc\":\"10886.20\",\"priceSingleOcc\":25196.2,\"priceExtraBed\":\"3434.40\",\"priceWithoutBed\":\"1844.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10886.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8698,\"priceDoubleOcc\":\"11329.28\",\"priceSingleOcc\":25639.28,\"priceExtraBed\":\"3434.40\",\"priceWithoutBed\":\"1844.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11329.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":7831,\"priceDoubleOcc\":\"10028.66\",\"priceSingleOcc\":24338.66,\"priceExtraBed\":\"3434.40\",\"priceWithoutBed\":\"1844.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10028.66\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9215,\"priceDoubleOcc\":\"12105.20\",\"priceSingleOcc\":26415.2,\"priceExtraBed\":\"3434.40\",\"priceWithoutBed\":\"1844.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12105.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11300,\"priceDoubleOcc\":\"15232.20\",\"priceSingleOcc\":29542.2,\"priceExtraBed\":\"3434.40\",\"priceWithoutBed\":\"1844.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15232.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"24790\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13865.86\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":10572,\"priceDoubleOcc\":\"13865.86\",\"priceSingleOcc\":31885.86,\"priceExtraBed\":\"3985.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13865.86\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11129,\"priceDoubleOcc\":\"14700.08\",\"priceSingleOcc\":32720.08,\"priceExtraBed\":\"3985.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14700.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11441,\"priceDoubleOcc\":\"15168.60\",\"priceSingleOcc\":33188.6,\"priceExtraBed\":\"3985.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15168.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":10572,\"priceDoubleOcc\":\"13865.86\",\"priceSingleOcc\":31885.86,\"priceExtraBed\":\"3985.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13865.86\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11956,\"priceDoubleOcc\":\"15941.34\",\"priceSingleOcc\":33961.34,\"priceExtraBed\":\"3985.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15941.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":14041,\"priceDoubleOcc\":\"19068.34\",\"priceSingleOcc\":37088.34,\"priceExtraBed\":\"3985.60\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19068.34\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"24791\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16822.20\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13759,\"priceDoubleOcc\":\"16822.20\",\"priceSingleOcc\":37492.2,\"priceExtraBed\":\"7632.00\",\"priceWithoutBed\":\"1653.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16822.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":14363,\"priceDoubleOcc\":\"17728.50\",\"priceSingleOcc\":38398.5,\"priceExtraBed\":\"7632.00\",\"priceWithoutBed\":\"1653.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17728.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":14598,\"priceDoubleOcc\":\"18080.42\",\"priceSingleOcc\":38750.42,\"priceExtraBed\":\"7632.00\",\"priceWithoutBed\":\"1653.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18080.42\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13763,\"priceDoubleOcc\":\"16828.56\",\"priceSingleOcc\":37498.56,\"priceExtraBed\":\"7632.00\",\"priceWithoutBed\":\"1653.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16828.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":15218,\"priceDoubleOcc\":\"19011.10\",\"priceSingleOcc\":39681.1,\"priceExtraBed\":\"7632.00\",\"priceWithoutBed\":\"1653.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19011.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17091,\"priceDoubleOcc\":\"21820.10\",\"priceSingleOcc\":42490.1,\"priceExtraBed\":\"7632.00\",\"priceWithoutBed\":\"1653.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21820.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"24792\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20701.80\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16723,\"priceDoubleOcc\":\"20701.80\",\"priceSingleOcc\":45081.8,\"priceExtraBed\":\"8766.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20701.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17322,\"priceDoubleOcc\":\"21599.62\",\"priceSingleOcc\":45979.619999999995,\"priceExtraBed\":\"8766.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21599.62\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17551,\"priceDoubleOcc\":\"21944.12\",\"priceSingleOcc\":46324.119999999995,\"priceExtraBed\":\"8766.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21944.12\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":16728,\"priceDoubleOcc\":\"20708.16\",\"priceSingleOcc\":45088.16,\"priceExtraBed\":\"8766.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20708.16\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":18183,\"priceDoubleOcc\":\"22890.70\",\"priceSingleOcc\":47270.7,\"priceExtraBed\":\"8766.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22890.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20055,\"priceDoubleOcc\":\"25699.70\",\"priceSingleOcc\":50079.7,\"priceExtraBed\":\"8766.20\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"6.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25699.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;Room Heater Charges. Personal Expenses such as Laundry, telephone, tips, gratuity, Mineral\\/soft\\/hard drinks. Additional sightseeing or extra usage of vehicle, other than mentioned in the itinerary. Camera fees, Guide \\/ tour escort charges &amp;amp; Entrance Fees. Any cost arising due to natural calamities like, landslides, road&amp;nbsp;blockage, political disturbances, etc (to be borne by the client, which is directly payable on the spot). Any increase in taxes or fuel price, leading to increase in cost on surface transportation &amp;amp; land arrangements, which may come into effect prior to departure. GST.&amp;nbsp;Insurance. Anything which is not include in the inclusion.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Rooms on twin\\/triple sharing basis. Daily Breakfast. Exclusive a\\/c private vehicle at disposal for transfers &amp;amp; sightseeing as per itinerary. Service of an experienced driver for 12 Hours per day up to maximum 08:00 PM. Parking, Toll taxes, Drivers Allowance etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;color:#984806&quot;&gt;Value Added Services&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary 500 ml of packaged drinking water per person per day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Complimentary finest Tea of Assam to take back home sweet memories of North East India (500 grams per family | 250 grams per person)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dedicated Tour Coordinator 24 x 7 throughout the Tour.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"177397\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[177397],\"Remark\":[\"&lt;p&gt;Car on disposal basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177402\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[177402],\"Remark\":[\"&lt;p&gt;Car on disposal basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177407\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[177407],\"Remark\":[\"&lt;p&gt;Car on disposal basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177412\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177412],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177417\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[177417],\"Remark\":[\"&lt;p&gt;Car on disposal basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177422\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[177422],\"Remark\":[\"&lt;p&gt;Car on disposal basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"177427\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[177427],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Shillong,Cherrapunji','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India,Cherrapunji,Mawsynram,Dawki,Mawlynnong',NULL,'25073,34563',10029,27397,5,NULL,NULL,NULL,1,'',0,'2022-05-24 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'no-08-mesmerizing-meghalaya',NULL,NULL,NULL,0),(7,32916,1,12577,0,0,0,'Honeymoon,Beach,Family,Culture,Shopping and Nightlife,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":32916,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/discover_dubai_2022_1646201537.jpg\",\"BookingValidUntill\":\"2022-06-17\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Dubai is a city and emirate in the United Arab Emirates known for luxury shopping, ultramodern architecture, and a lively nightlife scene. Burj Khalifa, an 830m-tall tower, dominates the skyscraper-filled skyline. At its foot lies Dubai Fountain, with jets and lights choreographed to music. On artificial islands just offshore is Atlantis, The Palm, a resort with water and marine-animal parks.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Ahmedabad\",\"DestinationPlacesSysId\":296,\"SourcePlaces\":\"Ahmedabad\",\"SourcePlaceSysId\":296,\"AgencyName\":\"\",\"Name\":\"DISCOVER DUBAI 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,B\\/fast & Dinner,Airport Transfers,Sightseeing,Visa\",\"PackageType\":\"Honeymoon,Beach,Family,Culture,Shopping and Nightlife,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2022-06-17\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":494067,\"Name\":\"Jacob\'s Garden Hotel - Al Rolla Road - Dubai - United Arab Emirates\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2568872\",\"Long\":\"55.29010899999999\",\"Address\":\"316 Al Rolla Rd - Al Raffa - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3628,\"Title\":\"Abu Dhabi City tour\",\"Description\":\"See the sights of Abu Dhabi on a coach tour from Dubai. With a knowledgeable guide, visit the capital city of the United Arab Emirates and visit its impressive monuments. You&amp;rsquo;ll learn about Abu Dhabi&amp;rsquo;s culture, history and attractions.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.4919711,\"Long\":54.3586401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/assets\\/images\\/Sightseeing\\/15190_abu-dhabi-citz-tour-slide.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":21555,\"Title\":\"Grand Mosque Abu Dhabi\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px text-align: left&quot;&gt;Sheikh Zayed Grand Mosque in Abu Dhabi. True to its name, the main prayer hall of this Mosque accommodates thousands of people at a time. Besides this, the structure features one of the largest domes in the world and its outer surface is ornamented with imported white marbles. Other notable attractions of the Mosque include the hand-knitted carpet, the Swarovski crystals-studded glass panels, and the massive chandelier (the world&acirc;&euro;&trade;s third largest).&Acirc;&nbsp;&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/4913_1635405725.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":5928,\"Title\":\"Burj Al Arab\",\"Description\":\"The Burj Al Arab(Tower of the Arabs) is a luxury hotel located in Dubai, United Arab Emirates.It is the third tallest hotel in the world (although 39 of its total height is made up of non-occupiable space.Burj Al Arab stands on an artificial island 280 m (920 ft) from Jumeirah Beach and is connected to the mainland by a private curving bridge. The shape of the structure is designed to resemble the sail of a ship. It has a helipad near the roof at a height of 210 m (689 ft) above ground.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/8219\\/sightseeing\\/15422_20120813060112!Burj_Al_Arab,_Dubai,_by_Joi_Ito_Dec2007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3723,\"Title\":\"Half Day City tour\",\"Description\":\"AFTER BREAKFAST ENJOY YOUR HALF DAY DUBAI CITY TOUR\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/35_1519134605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":16243,\"Title\":\"Oneway Monorail\",\"Description\":\"&lt;p&gt;During the Dubai City tour, We take a oneway Monorail Ride towards Atlantis the Palm, so as to cover the Palm Island from a height&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/4913_1633756680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2896,\"Title\":\"The Dubai Fountain\",\"Description\":\"It is the world&amp;#039;s largest choreographed fountain system set on the 30-acre manmade Burj Khalifa Lake.The Fountain  illuminated by 6,600 lights and 25 colored projectors, it is 902 ft long and shoots water up to 152.4 m.The Fountain visible from every point on the lake promenade and from many neighboring structures.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/The_Dubai_Fountain_8219_1519032704.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":16244,\"Title\":\"The Dubai Mall\",\"Description\":\"&lt;span style=&quot;color: rgb(77, 81, 86) font-family: arial, sans-serif font-weight: 400&quot;&gt;The Dubai Mall is a shopping mall in Dubai. It is the second largest mall by total land area, and the 26th-largest shopping mall in the world by gross leasable area, tying with West Edmonton Mall and Fashion Island &acirc;&euro;&rdquo;both of which are older than it. It has a total retail floor area of 502,000 square metres&lt;\\/span&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23527,\"Title\":\"Gold Souk - Gold Souq - Dubai - United Arab Emirates\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.2686016,\"Long\":55.2974063,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":23528,\"Title\":\"Meena Bazar Burdubai - 43c St - Dubai - United Arab Emirates\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.2602587,\"Long\":55.29052569999999,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":16248,\"Title\":\"Yatch Ride\",\"Description\":\"&lt;p&gt;A one hour Yatch Ride in the Dubai Marina&Acirc;&nbsp;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/4913_1635404947.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"234908\",\"Title\":\"Arrival &ndash; Dubai\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at Dubai Airport, clear immigration and proceed towards the PCR test counter for a covid test, ones the sample is taken, collect your baggage and head to the arrival gate. Meet and greet by our representative and transfer to your hotel, check-in and relax. You will be advised not to leave the room until you receive a Negative covid report (Generally it takes between 6 to 24 hours). Dinner at Indian restaurant\\/Hotel. Overnight stay at the Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Dinner&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494067,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"234909\",\"Title\":\"Abu Dhabi City Tour + Grand Mosque\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Wake up to an early breakfast and proceed to discover the wonders of Abu Dhabi, Capital of United Arab Emirates, known as the Arabian Jewel. Start with a visit to the Sheikh Zayed Grand Mosque, one of the largest mosques in the world. Continue to the city through the well laid out roads, surrounding lush greenery, beautiful parks and Rows of date palm trees until you reach Abu Dhabi&amp;#39;s oldest building, Al Husn Palace built in 18th century. Also visit the Heritage Village and journey to the past to explore the life before oil was discovered.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We will then stop by Ferrari world for some good Photos, the largest indoor theme park in the world is also home to the world&amp;rsquo;s fastest roller coaster, the Formula Rossa.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterwards, proceed to Dubai. Dinner at Indian restaurant and Overnight stay at the Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast, Lunch, Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494067,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3628,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":21555,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"234910\",\"Title\":\"Desert Safari\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, half day free for leisure or shopping on your own. In the afternoon, depart for Desert Safari. Enjoy the adventurous ride of your 4 x 4 vehicle for the Dune Bashing, later have a memorable evening of food, dance and entertainment on a thrilling Dubai desert safari. Embark on an electrifying ride over the desert sand dunes and spend an evening in a traditional Bedouin camp. You have an option to enjoy quad bike and dune buggy ride in Dubai desert. Enjoy a host of desert activities like camel rides, henna tattoos and live belly dance performances. Round up the evening with a sumptuous BBQ dinner.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at the Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast and Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494067,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"234911\",\"Title\":\"Dubai City tour + Burj Khalifa\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;njoy breakfast at the Hotel, later proceed to City tour of Dubai. Discover the new and old Dubai. Our route takes you to some of Dubai&amp;rsquo;s beautiful landmarks. The most magnificent Jumeirah Mosque built in 1979 was and designed in the style of Fatima Mosque in Egypt. Stop on Jumeirah Public Beach, passing by Jumeirah Beach Hotel, and stop for photo at Burj Al Arab the most luxurious and tallest standing hotel in sea. We continue our journey and pass by Sheikh Mohamed&amp;rsquo;s palace, Further, take a break at Dubai Marina to witness the skylines of new Dubai. A visit to Palm Jumeirah will serve you a thrilling experience while you enjoy the one-way mono rail at Palm area, for a panoramic view of Palm Island and Atlantis the palm Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, in afternoon proceed to visit Dubai Mall &amp;ndash; is the second largest mall by total land area, and the 26th largest shopping mall in the world. It includes Over 1,200 Retail Shops, around 200 Outlets for Food &amp;amp; Beverages. The mall has a 250-room luxury hotel, 120 restaurants and a parking facility that houses 14,000 cars! Get ready for The Burj Khalifa &amp;ndash; the tallest free-standing structure, the world highest outdoor observation deck, the world highest number of stories and Elevator with longest travel distance in the world. At Height on Level of 124, experience Breath-taking 360-Degree Views of the Dubai on the Observation Deck and immerse yourself in the region&amp;rsquo;s Young, yet rich, history. Light refreshment is made available for you at the Observation deck area.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, enjoy Dinner at Indian restaurant. Overnight, stay at the Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast, Dinner&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494067,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5928,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3723,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":16243,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2896,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":16244,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"234912\",\"Title\":\"Dubai Shopping Tour + Luxury Yacht ride\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, a shopping tour of Dubai awaits.&amp;nbsp; Catch up with some shopping at Meena Bazaar or the Gold Souq in Deira Dubai. Both the markets are famous for Gold Jewellery purchase for your loved ones! It also offers various opportunities to buy electronics, cosmetics, Dates, Dry fruits, spices, Mobile phones, perfumes and varieties of costumes from all of Asia. Dubai is known for its architectural wonders, stunning cars and luxurious experiences. look around the same during your shopping tour.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later on, transfer to the Port and board your Luxury Yacht for the ride of joy! The stunning views of the skylines of New Dubai is an experience of lifetime! Some of the monument buildings and brand-new architecture makes it more attractive. Transfer back to the city for Dinner at Indian restaurant and Overnight at the Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast, Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494067,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":23527,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":23528,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":16248,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"234913\",\"Title\":\"Day Free at Leisure\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Wake up to a lazy breakfast this morning. Get your RT PCR test done in the morning so that you might receive the result next day before your departure. (Usually takes 24-36 hours). Today enjoy the various amenities available at your hotel. Dubai is known for its architectural wonders, stunning cars and luxurious experiences. Bringing you an adventurous yet thrilling experience to have a journey of a lifetime. Then get transferred to Indian restaurant for dinner.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast, Dinner&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494067,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"234914\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Wake up to a lazy breakfast this morning. Relax and enjoy hotel amenities. Later it&amp;rsquo;s time for transfer to Dubai Airport to catch your flight back home with life long memories.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Great Memories linger while the tour ends.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"32916\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"63000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":63000,\"priceDoubleOcc\":\"63000.00\",\"priceSingleOcc\":94500,\"priceExtraBed\":\"56700.00\",\"priceWithoutBed\":\"50400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"63000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"32916\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"60000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":60000,\"priceDoubleOcc\":\"60000.00\",\"priceSingleOcc\":90000,\"priceExtraBed\":\"54000.00\",\"priceWithoutBed\":\"48000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"60000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Compulsory Covid19 RT-PCR Test within last 48 hours to the Departure from India and Arrival to India from Dubai&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;TCS @ 5% with Pan card \\/ @10% without Pan card will be applicable extra (Effective from 01st October&amp;rsquo;20)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST @5% (As per the prevailing rate)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Overseas Mediclaim Policy&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All sightseeing by AC Vehicle&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Dubai Airport Transfers&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Services of Experienced Tour Manager &amp;ndash; Shall directly join from Dubai. (If the group size is of 30 passengers or more)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;20% Luxury Tax charged by Dubai Hotels&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;VAT Charges by Dubai Govt. WEF. 1st January 2018&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tourism Dirham charged by Dubai Govt.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Tourist Visa&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Air ticket Ex. AMD&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Dubai :&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Half-Day Orientation tour of Dubai&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;Jumeirah Mosque&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Jumeirah Beach&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Al Arab (Photo stop)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;King&amp;rsquo;s Palace&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Marina&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;One way Monorail to Atlantis the Palm&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa at top ticket (124th Floor-Non Prime slot) with caf&amp;eacute; treats&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai Mall&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Musical Fountain&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari with Dune Bashing, Live Entertainment, Soft drinks &amp;amp; Dinner&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Hour Luxury Yacht Ride&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Gold Souk and Meena Bazaar&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Abu Dhabi:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Abu Dhabi city tour&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;ol&gt;\\r\\n\\t&lt;li&gt;Palace Hotel (Photo Stop)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Heritage Village&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Grand Mosque from Inside (Except Friday) &amp;ndash; If Operative&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Date Market (If time permits)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ferrari World (Photo Stop)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ol&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Dubai Visa Information:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Minimum passport validity Of 06 months&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Photograph with white background required (35 x 45 mm, White background, 80% Face)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For passengers travelling to Dubai below 25 years of age will have to provide the passport copy of one parent whose visa will have to be applied with an additional charge of INR 7500 as per Dubai Govt. rule.&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of visa rejection, visa fees of INR 7500\\/- will be non-refundable over and above the regular cancellation charges.&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Breakfasts at the Hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Dinner at Desert Camp&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05 Dinners at Indian restaurant&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Flights:&lt;\\/strong&gt; (Approx. Ticket Cost INR 25,000)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flight availability from Ahmedabad:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Fly Dubai&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Spice Jet&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indigo&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air Arabia&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Emirates&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kuwait airlines&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Hotel Accommodation on Twin Sharing Basis :&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Nights stay in Hotel Jacob&amp;rsquo;s Garden (4*) or similar&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":90,\"ExtraValue\":\"25000\",\"IsPercentage\":false,\"Title\":\"Before 90 Days\",\"TPRulesSysId\":\"9640\",\"Value\":\"0\"},{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9641\",\"Value\":\"75\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9642\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"234908\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[234908],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"234909\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[234909],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"234910\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[234910],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"234911\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[234911],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"234912\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[234912],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"234913\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[234913],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"234914\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[234914],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"296\":{\"CityName\":\"Ahmedabad\",\"FromDate\":{\"20220510\":{\"FromDate\":\"2022-05-10\",\"FromDateDMY\":\"10\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220517\":{\"FromDate\":\"2022-05-17\",\"FromDateDMY\":\"17\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220524\":{\"FromDate\":\"2022-05-24\",\"FromDateDMY\":\"24\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220527\":{\"FromDate\":\"2022-05-27\",\"FromDateDMY\":\"27\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220617\":{\"FromDate\":\"2022-06-17\",\"FromDateDMY\":\"17\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Dubai','Dubai,Middle East,United Arab Emirates',NULL,'8219',60000,63000,6,NULL,NULL,NULL,1,'',0,'2022-05-24 00:00:00','2022-06-17 00:00:00','2022-06-17 00:00:00',3,'United Arab Emirates','228','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'discover-dubai-2022',NULL,NULL,NULL,0),(8,35357,1,12577,0,0,0,'Honeymoon,Family,Hill Station,Romantic',NULL,1,1,0,'{\"package\":{\"TPId\":35357,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/essence_of_kerala_1650711340.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Munnar literally means the land of 3 rivers, colloquially mun means three and aar means rivers. It is a small hilly town, with the 3 rivers converging. The town is famous for both flora and fauna and is town has shades of colonial influence. Thekkady is a semi-hill station with a salubrious climate and is the spice bowl of the region. Mararikulam is a quiet beach resort to be enjoyed, especially the sunset where the sun seems to meet the sea. Finally, after enjoying Munnar and Thekkady drive down to the plains and get to see the exotic backwaters of Alleppey \\/ Kumarakom.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Cochin\",\"DestinationPlacesSysId\":6561,\"SourcePlaces\":\"Cochin\",\"SourcePlaceSysId\":6561,\"AgencyName\":\"Connect India\",\"Name\":\"Essence Of Kerala\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6699\",\"SupplierName\":\"Skyway International Travels\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Cab\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":365611,\"Name\":\"Misty Mountain Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.078262\",\"Long\":\"77.062802\",\"Address\":\"Randam Mile\\/Second Mile Junction Pallivasal Munnar 685565  Randam Mile\\/Second Mile Junction\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Property Location When you stay at Misty Mountain Resort in Munnar, you&#039;ll be in the mountains and convenient to Mount Carmel Church and Carmal Church.  This hotel is within close proximity of St. Thomas Marthoma and Rose Garden.Rooms Make yourself at home in one of the 48 guestrooms featuring minibars. Wireless Internet access (surcharge) keeps you connected, and cable programming is available for your entertainment. Private bathrooms with bathtubs or showers feature slippers and hair dryers. Conveniences include phones, as well as complimentary newspapers and coffee\\/tea makers.Amenities Pamper yourself with a visit to the spa, which offers massages, body treatments, and facials. This hotel also features complimentary wireless Internet access, a television in a common area, and tour\\/ticket assistance.Dining Satisfy your appetite at the hotel&#039;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of 24-hour room service.Business, Other Amenities Featured amenities include a business center, complimentary newspapers in the lobby, and multilingual staff. Event facilities at this hotel consist of a conference center and a meeting room. Free self parking is available onsite.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1000000000000000110\",\"AccoAminities\":[{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Delux Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365610,\"Name\":\"Deshadan Mountain Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"POTHAMEDU\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"The resort is located on a hilltop and is 6.5 kilometres from the town of Munnar. The nearest airport is Cochin Airport and it can be found 130 kilometres from the hotel. 120 kilometres from the establishment guests will find the Aluva railway station. The resort is comprised of several cottages, each housing two twin guestrooms. Each guestroom features a balcony from which visitors can admire the peaceful surroundings. Guests will not feel as secluded with their in-room direct dial STD and local telephones. Entertainment is provided through a TV with cable channels. All units are en-suite and have hot and cold running water.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/38\\/4e\\/384ea71bf5c229e038e946e69c985711fa8d6d49.jpg\",\"AccoAminitiesMask\":\"1110001000001100110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"Delux Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365320,\"Name\":\"KTDC Tea County\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0865077452426\",\"Long\":\"77.0651546858444\",\"Address\":\"KTDC Hill Resort, Munnar, Kerala, Munnar, India, 685612\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=FbrGPTrju5eLyz2QskXxNF67nZTfvXcFz01QV9ib62xmULM8bI\\/0IG2F8ItlANAU1oS3KL3vqYg=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365620,\"Name\":\"Camelot Resort, Munnar\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.059525\",\"Long\":\"77.00758\",\"Address\":\"Letchmi Estate Munnar P.O. Idukki District Kerala State\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Property Location When you stay at Camelot Resort in Munnar, you&#039;ll be in the mountains and within the vicinity of Attukad Waterfall and Tata Tea Museum.  This hotel is within the vicinity of Carmal Church and Mount Carmel Church.Rooms Make yourself at home in one of the 12 guestrooms. Digital television is provided for your entertainment. Conveniences include phones and desks.Amenities Take in the views from a garden and make use of amenities such as tour\\/ticket assistance.Dining Enjoy a satisfying meal at a restaurant serving guests of Camelot Resort.Business, Other Amenities Event facilities at this hotel consist of conference space and a meeting room. Free self parking is available onsite.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/85\\/75\\/8575c763e148206b47ecd9b9b35caf66cb033bc8.jpg\",\"AccoAminitiesMask\":\"1010000000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":141531,\"Name\":\"Ambady Estate\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.041593\",\"Long\":\"77.039206\",\"Address\":\"3rd Mile, Pallivasal. P.O Chithirapuram\"},\"Images\":{\"Image\":[{\"ImagId\":3115421,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_1_t.jpg\"},{\"ImagId\":3115422,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_2_t.jpg\"},{\"ImagId\":3115423,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_3_t.jpg\"},{\"ImagId\":3115424,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_4_t.jpg\"},{\"ImagId\":3115425,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_5_t.jpg\"},{\"ImagId\":3115426,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_6_t.jpg\"},{\"ImagId\":3115427,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_7_t.jpg\"},{\"ImagId\":3115428,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_8_t.jpg\"},{\"ImagId\":3115429,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_10_t.jpg\"},{\"ImagId\":3115430,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/2fd949f3_t.jpg\"},{\"ImagId\":3115431,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/29cab570_t.jpg\"},{\"ImagId\":3115432,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/fa3e347c_t.jpg\"},{\"ImagId\":3115433,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/6ec8c29f_t.jpg\"},{\"ImagId\":3115434,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/07de67a7_t.jpg\"},{\"ImagId\":3115435,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_11_t.jpg\"},{\"ImagId\":3115436,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/01c028eb_t.jpg\"},{\"ImagId\":3115437,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/f66d0a3c_t.jpg\"},{\"ImagId\":3115438,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/a398f299_t.jpg\"},{\"ImagId\":3115439,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/bee6be1e_t.jpg\"},{\"ImagId\":3115440,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5403c43e_t.jpg\"},{\"ImagId\":3115441,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/e2234d14_t.jpg\"},{\"ImagId\":3115442,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/06585667_t.jpg\"},{\"ImagId\":3115443,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_13_t.jpg\"},{\"ImagId\":3115444,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/a7ab141b_t.jpg\"},{\"ImagId\":3115445,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_14_t.jpg\"},{\"ImagId\":3115446,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/65f53baa_t.jpg\"}]},\"CityId\":18697,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Munnar, Ambady Estate is in a rural location and close to Dreamland Children Park and Attukad Waterfall.  This hotel is within the vicinity of Carmal Church and Mount Carmel Church.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 8 guestrooms featuring refrigerators and minibars (stocked with some free items). Rooms have private patios. LED televisions with cable programming provide entertainment, while complimentary wireless Internet access keeps you connected. Bathrooms have shower\\/tub combinations and complimentary toiletries.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;You can experience a safari, and enjoy an outdoor tennis court. Additional features at this hotel include complimentary wireless Internet access, concierge services, and complimentary babysitting\\/childcare. Guests can catch a ride to nearby destinations on the area shuttle (surcharge).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&amp;apos;s room service (during limited hours).&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and luggage storage. Guests may use a roundtrip airport shuttle for a surcharge, and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/6000000\\/5240000\\/5239500\\/5239432\\/5239432_1_t.jpg\",\"AccoAminitiesMask\":\"111001010000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":141560,\"Name\":\"Mountain Club - Munnar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"Chinnakanal \"},\"Images\":{\"Image\":[{\"ImagId\":3116025,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_32_t.jpg\"},{\"ImagId\":3116026,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_46_t.jpg\"},{\"ImagId\":3116027,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_49_t.jpg\"},{\"ImagId\":3116028,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_52_t.jpg\"},{\"ImagId\":3116029,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_47_t.jpg\"},{\"ImagId\":3116030,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_51_t.jpg\"},{\"ImagId\":3116031,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_45_t.jpg\"},{\"ImagId\":3116032,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_50_t.jpg\"},{\"ImagId\":3116033,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_44_t.jpg\"},{\"ImagId\":3116034,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_48_t.jpg\"},{\"ImagId\":3116035,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_53_t.jpg\"},{\"ImagId\":3116036,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_54_t.jpg\"},{\"ImagId\":3116037,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_58_t.jpg\"},{\"ImagId\":3116038,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_57_t.jpg\"},{\"ImagId\":3116039,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_56_t.jpg\"},{\"ImagId\":3116040,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_68_t.jpg\"},{\"ImagId\":3116041,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_60_t.jpg\"},{\"ImagId\":3116042,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_61_t.jpg\"},{\"ImagId\":3116043,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_63_t.jpg\"},{\"ImagId\":3116044,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_65_t.jpg\"},{\"ImagId\":3116045,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_66_t.jpg\"},{\"ImagId\":3116046,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_69_t.jpg\"}]},\"CityId\":18697,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Munnar, Mountain Club - Munnar is in the mountains, minutes from Mount Carmel Church, and close to Carmal Church.  This 4-star hotel is within close proximity of St. Thomas Marthoma and Rose Garden.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Treat yourself to a stay in one of the 47 individually furnished guestrooms, featuring fireplaces. Rooms have private balconies. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Conveniences include phones, as well as desks and complimentary newspapers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with a visit to the spa, which offers massages and body treatments. If you&amp;apos;re looking for recreational opportunities, you&amp;apos;ll find a health club, an outdoor pool, and a sauna. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and an arcade\\/game room.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the hotel&amp;apos;s restaurant, where you can take in a pool view. Snacks are also available at a coffee shop\\/caf&eacute;. Mingle with other guests at a complimentary reception, held daily. A complimentary buffet breakfast is served daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a business center, and express check-in. Planning an event in Munnar? This hotel has 3000 square feet (279 square meters) of space consisting of a conference center and meeting rooms. Free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3740000\\/3737500\\/3737421\\/3737421_32_t.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365323,\"Name\":\"Club Mahindra Mount Serene\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.039884\",\"Long\":\"77.16018\",\"Address\":\"Chinnakanal Village,Suryanelli(Via) Iddukki (District Munnar),Kerala,Kerala,India, 685618\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Cloud View -Munnar is situated in Chinnakanal ( Munnar), a destination famous for its breathtaking natural beautiful rolling hills with carpeted in emerald-green tea plantations.Cloud View Munnar offer you best of nature and luxury,making it the best with best in class.  51 guest rooms having modern amenties and facilities for a comfortable visit.\",\"MainImg\":\"https:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICg7A8cpsaijimfNQMaEw56GeGxvIyJ2ivLkSZ46Cb0VhI6Vd+WQRPwSvrYou6Nx9VW8Xt5Arvjl5nANd2C0EkJDXKfLQRGIapU=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":13656,\"Title\":\"Kfdc Horticulture Garden\",\"Description\":\"Scenic botanical garden with greenhouses full of rare flowers, succulents &amp;amp; other specimens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kfdc_Horticulture_Garden__18697_1579525808.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1591,\"Title\":\"Shooting Point (Photo point)\",\"Description\":\"Also known as Photo point, Shooting Point is a ideal scenic beauty created by silver oak trees and green tea plantations, situated at a distance of 3 kms from Munnar on the way to Mattupetty. Photo point is an suitable spot for amateur as well as professional photographers. Surrounded by gardens, tea plantations and streams, Photo point is such a mesmerizing spot. Tea, coffee, spices, cardamom and pepper and homemade chocolates can buy near the Photo point.. The idea behind visiting  is specifically to indulge in typical tourist activity, but more to click and stock up all the photographs .\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Shooting_Point_(Photo_point)_18697_1521639368.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":8096,\"Title\":\"Kalaripayattu Show\",\"Description\":\"Kalaripayattu is the traditional martial art practiced in Kerala. Famed as the mother of all martial arts, this ancient art-form is believed to have been adapted into various martial art forms like karate, kung-fu and judo.\\r\\nThe one hour evening performance show of Kalaripayattu in Munnar, includes showcasing of body control, flexibility and various form of exercises. Performed by skilled and trained artists, this show showcases their fighting skills with bare hands andmetallic weapons like swords, spears, shield and others.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kalaripayattu_Show_18697_1547119452.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1378,\"Title\":\"Power House Waterfalls (Chinnakanal)\",\"Description\":\"Power House waterfall is also called as Chinnakanal waterfall, is surrounded by green mountain ranges, located 18 km away from Munnar on the way to Periyar Wildlife Sanctuary of Thekkady. The origin of this beautiful waterfall is from the River Devikulam. The unique green nature around the waterfall attracts tourist from all over the world. For a relaxing experience, tourist can also enjoy a swim at the base of these  breathtaking falls.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0353531,\"Long\":77.146008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Power_House_Waterfalls_(Chinna_18697_1521694162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1071,\"Title\":\"Marari Beach\",\"Description\":\"&amp;quot;Marari Beach is a perfect location to visit with family and friends. This is located in the Alappuzha District of Kerala. This beach in Kerala have a lot of coconut palm trees and golden sands. The beach is quite beautiful and The serenity and tranquility of this beach take beach lovers backwards in time. The slow pace of local life makes vacationing near the Marari beach a great experience.&amp;quot;\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.655838,\"Long\":76.375021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/Marari_Beach_670_1534850657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":504681,\"Name\":\"Wood N Spice\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":504682,\"Name\":\"Carmelia Haven Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.733725699999999\",\"Long\":\"77.1491085\",\"Address\":\"Vandanmedu, Idukki, Periyar, Kerala 685551, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365627,\"Name\":\"Shalimar Spice Garden\",\"Star\":\"3.50\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.6185214573282\",\"Long\":\"77.157325744629\",\"Address\":\"Murikkady Kumily 685 535 Dist. Idukki Kerala\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"Property Location With a stay at Shalimar Spice Garden in Thekkady (Periyar Tiger Reserve), you&#039;ll be minutes from Periyar Boat Landing and close to Periyar Wildlife Sanctuary.  This hotel is within close proximity of Kadathanadan Kalari Centre and Mudra Cultural Centre.Rooms Make yourself at home in one of the 20 guestrooms. Complimentary wireless Internet access is available to keep you connected. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include phones, as well as coffee\\/tea makers and complimentary bottled water.Amenities Enjoy recreation amenities such as an outdoor pool or take in the view from a garden. This hotel also features complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can catch a ride to nearby destinations on the area shuttle (surcharge).Dining Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&#039;s room service (during limited hours). Quench your thirst with your favorite drink at a bar\\/lounge.Business, Other Amenities Featured amenities include complimentary newspapers in the lobby, a 24-hour front desk, and multilingual staff. For a surcharge, guests may use a roundtrip airport shuttle (available on request) and a train station pick-up service.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/e4\\/3b\\/e43b3029c4520afaea07da315b7ab2fdd7775eee.jpg\",\"AccoAminitiesMask\":\"1110001000001110100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":419351,\"Name\":\"Cardamom County\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.604211\",\"Long\":\"77.171184\",\"Address\":\"Thekkady, Kerala\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Cardamom County in Thekkady (Periyar National Park), you&#039;ll be minutes from Mudra Cultural Centre and Kadathanadan Kalari Centre.  This 4-star resort is within close proximity of Periyar Wildlife Sanctuary and Periyar Boat Landing.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 42 guestrooms featuring minibars. Rooms have private balconies. Cable television is provided for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Don&#039;t miss out on recreational opportunities including a health club and an outdoor pool. Additional amenities at this resort include complimentary wireless Internet access, complimentary babysitting\\/childcare, and an arcade\\/game room.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at a restaurant or in a coffee shop\\/cafe. Or stay in and take advantage of the resort&#039;s 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include complimentary wired Internet access, a business center, and express check-in. Event facilities at this resort consist of a conference center and a meeting room. A shuttle from the airport to the hotel is provided for a surcharge (available 24 hours), and free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/07\\/8a\\/078a681aa6f0b222b4d5ea5ae17cc9c3a12a10d1.jpg\",\"AccoAminitiesMask\":\"1010000000001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365624,\"Name\":\"Green Woods Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.607782\",\"Long\":\"77.166126\",\"Address\":\"Khajuraho-Bamhita Road Kumily Thekkady  Khajuraho-Bamhita Road\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"Property Location With a stay at Greenwoods Resort in Thekkady (Periyar Tiger Reserve), you&#039;ll be minutes from Mudra Cultural Centre and Kadathanadan Kalari Centre.  This hotel is within close proximity of Periyar Wildlife Sanctuary and Periyar Boat Landing.Rooms Make yourself at home in one of the 36 guestrooms featuring minibars. Conveniences include desks and separate sitting areas, and housekeeping is provided daily.Amenities Be sure to enjoy recreational amenities including an outdoor pool and a fitness center. Additional features include complimentary wireless Internet access, gift shops\\/newsstands, and tour\\/ticket assistance.Dining Satisfy your appetite at the hotel&#039;s restaurant, where you can take in a garden view and dine alfresco (weather permitting). Snacks are also available at a coffee shop\\/caf&Atilde;&copy;.Business, Other Amenities Featured amenities include a business center, complimentary newspapers in the lobby, and laundry facilities. Free valet parking is available onsite.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/3c\\/78\\/3c7843f83f7667ac4fe49df79562054c563a56fa.jpg\",\"AccoAminitiesMask\":\"1010000100001101010\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":504684,\"Name\":\"Abad Green Forest\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.6059793\",\"Long\":\"77.16861109999999\",\"Address\":\"Thekkady Jn, opposite RC Church, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365628,\"Name\":\"Spice Village\",\"Star\":\"3.50\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.604017\",\"Long\":\"77.170242\",\"Address\":\"Kumily Thekkady\\/Periyar\\/Kumily Kerala\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"Property Location With a stay at Spice Village in Thekkady (Periyar Tiger Reserve), you&#039;ll be minutes from Mudra Cultural Centre and Kadathanadan Kalari Centre.  This hotel is within close proximity of Periyar Wildlife Sanctuary and Periyar Boat Landing.Rooms Make yourself at home in one of the 52 guestrooms featuring minibars. Complimentary wired and wireless Internet access is available. Conveniences include safes and separate sitting areas, and you can also request cribs\\/infant beds (complimentary).Amenities Take time to pamper yourself with a visit to the full-service spa. You&#039;re sure to appreciate the recreational amenities, including an outdoor pool, a spa tub, and an indoor tennis court. Additional features include complimentary wireless Internet access, concierge services, and supervised childcare\\/activities.Dining Satisfy your appetite at the hotel&#039;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of room service (during limited hours). Quench your thirst with your favorite drink at a bar\\/lounge.Business, Other Amenities Featured amenities include express check-in, express check-out, and complimentary newspapers in the lobby. Free valet parking is available onsite.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/1b\\/55\\/1b55a12eee0faee48e3c79d4177eb4697a1bc114.jpg\",\"AccoAminitiesMask\":\"1010101000001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":504685,\"Name\":\"TUSKER TRAIL THEKKADY\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.617809399999999\",\"Long\":\"77.15842479999999\",\"Address\":\"Munnar Road, Chelimada, Amaravathi, Kumily, Tamil Nadu 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":504687,\"Name\":\"The Elephant Court\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.603478100000002\",\"Long\":\"77.171933\",\"Address\":\"Thamarakandam Rd, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":13656,\"Title\":\"Kfdc Horticulture Garden\",\"Description\":\"Scenic botanical garden with greenhouses full of rare flowers, succulents &amp;amp; other specimens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kfdc_Horticulture_Garden__18697_1579525808.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1591,\"Title\":\"Shooting Point (Photo point)\",\"Description\":\"Also known as Photo point, Shooting Point is a ideal scenic beauty created by silver oak trees and green tea plantations, situated at a distance of 3 kms from Munnar on the way to Mattupetty. Photo point is an suitable spot for amateur as well as professional photographers. Surrounded by gardens, tea plantations and streams, Photo point is such a mesmerizing spot. Tea, coffee, spices, cardamom and pepper and homemade chocolates can buy near the Photo point.. The idea behind visiting  is specifically to indulge in typical tourist activity, but more to click and stock up all the photographs .\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Shooting_Point_(Photo_point)_18697_1521639368.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":8096,\"Title\":\"Kalaripayattu Show\",\"Description\":\"Kalaripayattu is the traditional martial art practiced in Kerala. Famed as the mother of all martial arts, this ancient art-form is believed to have been adapted into various martial art forms like karate, kung-fu and judo.\\r\\nThe one hour evening performance show of Kalaripayattu in Munnar, includes showcasing of body control, flexibility and various form of exercises. Performed by skilled and trained artists, this show showcases their fighting skills with bare hands andmetallic weapons like swords, spears, shield and others.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kalaripayattu_Show_18697_1547119452.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1378,\"Title\":\"Power House Waterfalls (Chinnakanal)\",\"Description\":\"Power House waterfall is also called as Chinnakanal waterfall, is surrounded by green mountain ranges, located 18 km away from Munnar on the way to Periyar Wildlife Sanctuary of Thekkady. The origin of this beautiful waterfall is from the River Devikulam. The unique green nature around the waterfall attracts tourist from all over the world. For a relaxing experience, tourist can also enjoy a swim at the base of these  breathtaking falls.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0353531,\"Long\":77.146008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Power_House_Waterfalls_(Chinna_18697_1521694162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1071,\"Title\":\"Marari Beach\",\"Description\":\"&amp;quot;Marari Beach is a perfect location to visit with family and friends. This is located in the Alappuzha District of Kerala. This beach in Kerala have a lot of coconut palm trees and golden sands. The beach is quite beautiful and The serenity and tranquility of this beach take beach lovers backwards in time. The slow pace of local life makes vacationing near the Marari beach a great experience.&amp;quot;\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.655838,\"Long\":76.375021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/Marari_Beach_670_1534850657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":505099,\"Name\":\"Aqua Houseboat Cruise\",\"Star\":\".00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.5099486\",\"Long\":\"76.3535208\",\"Address\":\"near Lake Garden Resorts, Punnamada, Avalookunnu P.O, Starting Point, Alappuzha, Kerala 688006, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":419472,\"Name\":\"Marvel Cruises\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.500334\",\"Long\":\"76.33935\",\"Address\":\"St Francis Xavier Church Rd, Kathrikadavu, Kaloor, Koch, Cochin, Finishing point, ALLEPPEY, KERALA, India, Pin-688013, 688013\"},\"Images\":[],\"CityId\":670,\"Brief\":\"Guests can sail through in some quiet corner of Alleppey with their stay at Marvel Cruises. Designed in wood, this beautiful houseboat in Alleppey provides wide range of comforts such as wireless connectivity, newspaper, luggage storage space and room service is offered but for limited hours only. Guests can enjoy sitting comfortably in the seating area along with scenic surroundings.null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/3\\/nxd\\/mau\\/pyf\\/dbq\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":13656,\"Title\":\"Kfdc Horticulture Garden\",\"Description\":\"Scenic botanical garden with greenhouses full of rare flowers, succulents &amp;amp; other specimens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kfdc_Horticulture_Garden__18697_1579525808.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1591,\"Title\":\"Shooting Point (Photo point)\",\"Description\":\"Also known as Photo point, Shooting Point is a ideal scenic beauty created by silver oak trees and green tea plantations, situated at a distance of 3 kms from Munnar on the way to Mattupetty. Photo point is an suitable spot for amateur as well as professional photographers. Surrounded by gardens, tea plantations and streams, Photo point is such a mesmerizing spot. Tea, coffee, spices, cardamom and pepper and homemade chocolates can buy near the Photo point.. The idea behind visiting  is specifically to indulge in typical tourist activity, but more to click and stock up all the photographs .\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Shooting_Point_(Photo_point)_18697_1521639368.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":8096,\"Title\":\"Kalaripayattu Show\",\"Description\":\"Kalaripayattu is the traditional martial art practiced in Kerala. Famed as the mother of all martial arts, this ancient art-form is believed to have been adapted into various martial art forms like karate, kung-fu and judo.\\r\\nThe one hour evening performance show of Kalaripayattu in Munnar, includes showcasing of body control, flexibility and various form of exercises. Performed by skilled and trained artists, this show showcases their fighting skills with bare hands andmetallic weapons like swords, spears, shield and others.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kalaripayattu_Show_18697_1547119452.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1378,\"Title\":\"Power House Waterfalls (Chinnakanal)\",\"Description\":\"Power House waterfall is also called as Chinnakanal waterfall, is surrounded by green mountain ranges, located 18 km away from Munnar on the way to Periyar Wildlife Sanctuary of Thekkady. The origin of this beautiful waterfall is from the River Devikulam. The unique green nature around the waterfall attracts tourist from all over the world. For a relaxing experience, tourist can also enjoy a swim at the base of these  breathtaking falls.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0353531,\"Long\":77.146008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Power_House_Waterfalls_(Chinna_18697_1521694162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1071,\"Title\":\"Marari Beach\",\"Description\":\"&amp;quot;Marari Beach is a perfect location to visit with family and friends. This is located in the Alappuzha District of Kerala. This beach in Kerala have a lot of coconut palm trees and golden sands. The beach is quite beautiful and The serenity and tranquility of this beach take beach lovers backwards in time. The slow pace of local life makes vacationing near the Marari beach a great experience.&amp;quot;\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.655838,\"Long\":76.375021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/Marari_Beach_670_1534850657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}},{\"CityId\":16755,\"Title\":\"Mararikulam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":505102,\"Name\":\"Marari Green Villas\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.5943223\",\"Long\":\"76.30563409999999\",\"Address\":\"Aanamukku Rd, Mararikulam, Kerala 688523, India\"},\"Images\":[],\"CityId\":16755,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":505103,\"Name\":\"Flamigo Boutique Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":16755,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":505104,\"Name\":\"Amritara A Beach Symphony\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.601443399999999\",\"Long\":\"76.2991828\",\"Address\":\"West of Mararikkulam Beach Junction, Mararikulam, Kerala 688549, India\"},\"Images\":[],\"CityId\":16755,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":130436,\"Name\":\"Marari Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.5957661812277\",\"Long\":\"76.30145907473\",\"Address\":\"Mararikulam North Alleppey 688549\"},\"Images\":{\"Image\":[{\"ImagId\":2855193,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/c3569f2a_t.jpg\"},{\"ImagId\":2855194,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/d73508db_t.jpg\"},{\"ImagId\":2855195,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/d87494f2_t.jpg\"},{\"ImagId\":2855196,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/b8182b07_t.jpg\"},{\"ImagId\":2855197,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/d2e48df2_t.jpg\"},{\"ImagId\":2855198,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/44ee3ac6_t.jpg\"},{\"ImagId\":2855199,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/1710391d_t.jpg\"},{\"ImagId\":2855200,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/64f3f1de_t.jpg\"},{\"ImagId\":2855201,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/e6080aeb_t.jpg\"},{\"ImagId\":2855202,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/565103ac_t.jpg\"},{\"ImagId\":2855203,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/1fe9abe3_t.jpg\"},{\"ImagId\":2855204,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/fd0341ba_t.jpg\"},{\"ImagId\":2855205,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/8b03117e_t.jpg\"},{\"ImagId\":2855206,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/36f1f58a_t.jpg\"},{\"ImagId\":2855207,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/bacbe49f_t.jpg\"},{\"ImagId\":2855208,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/4dda11a9_t.jpg\"},{\"ImagId\":2855209,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/c44d3ed4_t.jpg\"},{\"ImagId\":2855210,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/9144bc94_t.jpg\"},{\"ImagId\":2855211,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/e0b1c5f5_t.jpg\"},{\"ImagId\":2855212,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/35adb1d1_t.jpg\"},{\"ImagId\":2855213,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/99628515_t.jpg\"},{\"ImagId\":2855214,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/b474e18c_t.jpg\"},{\"ImagId\":2855215,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/fa2ec1f6_t.jpg\"},{\"ImagId\":2855216,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/53fe310d_t.jpg\"},{\"ImagId\":2855217,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/cea3a103_t.jpg\"},{\"ImagId\":2855218,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/40cac3fe_t.jpg\"},{\"ImagId\":2855219,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/4395366_30_t.jpg\"},{\"ImagId\":2855220,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/4395366_39_t.jpg\"},{\"ImagId\":2855221,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/4395366_40_t.jpg\"},{\"ImagId\":2855222,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/4395366_49_t.jpg\"},{\"ImagId\":2855223,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/4395366_45_t.jpg\"},{\"ImagId\":2855224,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/249206a6_t.jpg\"},{\"ImagId\":2855225,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/692c8fa1_t.jpg\"},{\"ImagId\":2855226,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/4395366_28_t.jpg\"},{\"ImagId\":2855227,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/4395366_8_t.jpg\"}]},\"CityId\":16755,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Mararikulam, Marari Beach is by the sea and within the region of Alappuzha Beach and Vembanad Lake.  This resort is within the region of Kumarakom Boat Jetty and Kumarakom Bird Sanctuary.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 62 air-conditioned rooms featuring refrigerators and minibars. Complimentary wireless Internet access is available to keep you connected. Bathrooms have showers and complimentary toiletries. Conveniences include safes and desks, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax at the full-service spa, where you can enjoy massages. You can soak up the sun at the private beach or enjoy other recreational amenities including an outdoor pool and an indoor tennis court. Additional amenities at this resort include complimentary wireless Internet access, concierge services, and a television in a common area.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of Marari Beach. Relax with a refreshing drink from a poolside bar or one of the 2 bars\\/lounges.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary newspapers in the lobby, dry cleaning\\/laundry services, and luggage storage. Free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4400000\\/4395400\\/4395366\\/c3569f2a_t.jpg\",\"AccoAminitiesMask\":\"111100000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":505106,\"Name\":\"Abad Turtle Beach\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.589524099999998\",\"Long\":\"76.3048493\",\"Address\":\"Varankavala, Pollathai Church Korthussery Rd, Mararikulam, Kerala 688567, India\"},\"Images\":[],\"CityId\":16755,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":13656,\"Title\":\"Kfdc Horticulture Garden\",\"Description\":\"Scenic botanical garden with greenhouses full of rare flowers, succulents &amp;amp; other specimens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kfdc_Horticulture_Garden__18697_1579525808.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1591,\"Title\":\"Shooting Point (Photo point)\",\"Description\":\"Also known as Photo point, Shooting Point is a ideal scenic beauty created by silver oak trees and green tea plantations, situated at a distance of 3 kms from Munnar on the way to Mattupetty. Photo point is an suitable spot for amateur as well as professional photographers. Surrounded by gardens, tea plantations and streams, Photo point is such a mesmerizing spot. Tea, coffee, spices, cardamom and pepper and homemade chocolates can buy near the Photo point.. The idea behind visiting  is specifically to indulge in typical tourist activity, but more to click and stock up all the photographs .\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Shooting_Point_(Photo_point)_18697_1521639368.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":8096,\"Title\":\"Kalaripayattu Show\",\"Description\":\"Kalaripayattu is the traditional martial art practiced in Kerala. Famed as the mother of all martial arts, this ancient art-form is believed to have been adapted into various martial art forms like karate, kung-fu and judo.\\r\\nThe one hour evening performance show of Kalaripayattu in Munnar, includes showcasing of body control, flexibility and various form of exercises. Performed by skilled and trained artists, this show showcases their fighting skills with bare hands andmetallic weapons like swords, spears, shield and others.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kalaripayattu_Show_18697_1547119452.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1378,\"Title\":\"Power House Waterfalls (Chinnakanal)\",\"Description\":\"Power House waterfall is also called as Chinnakanal waterfall, is surrounded by green mountain ranges, located 18 km away from Munnar on the way to Periyar Wildlife Sanctuary of Thekkady. The origin of this beautiful waterfall is from the River Devikulam. The unique green nature around the waterfall attracts tourist from all over the world. For a relaxing experience, tourist can also enjoy a swim at the base of these  breathtaking falls.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0353531,\"Long\":77.146008,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Power_House_Waterfalls_(Chinna_18697_1521694162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1071,\"Title\":\"Marari Beach\",\"Description\":\"&amp;quot;Marari Beach is a perfect location to visit with family and friends. This is located in the Alappuzha District of Kerala. This beach in Kerala have a lot of coconut palm trees and golden sands. The beach is quite beautiful and The serenity and tranquility of this beach take beach lovers backwards in time. The slow pace of local life makes vacationing near the Marari beach a great experience.&amp;quot;\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.655838,\"Long\":76.375021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/Marari_Beach_670_1534850657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"253568\",\"Title\":\"COCHIN\\/MUNNAR (140 Kms\\/ 5 HRS)\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Pick up from Cochin Airport\\/ Ernakulum Railway Station and drive to Munnar - is a quaint hill station perched on the slopes of Western Ghats . It is both charming and old fashioned, with colonial style buildings existing with modern structures. Stop at Cheeyapara water falls&amp;nbsp; en-route.&amp;nbsp; Munnar&amp;nbsp; is indeed a photographers delight. Overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":365611,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Delux Room\"},{\"IsIncluded\":false,\"Id\":365610,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Delux Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365320,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365620,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":141531,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":141560,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":318,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253571\",\"Title\":\"MUNNAR LOCAL SIGHT SEEING\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, proceed on a full day tour of Munnar attractions. The Horticultural Garden, Photo point, Mattupetty Dam and Kundala Dam are all located on the route to Top Station. Kundala Dam is known for the Arch type architecture. Echo point on the lower slopes of the region is a picturesque spot where you would find your voice echoing and thus derives the name Echo Point. All the above places are well worth a visit. With tourist having a flair for culture - they can spend their time in the evening at the Punarjani, Traditional village (Optional activity), where they get to see a piece of Kerala culture in the form of Kathakali Dance and Kalari pattu - a form of ancient martial arts, a visual treat to the eyes. Overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":365611,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Delux Room\"},{\"IsIncluded\":false,\"Id\":365610,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Delux Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":365320,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365620,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":141531,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":141560,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":13656,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1591,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2803,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":925,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8096,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253574\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253577\",\"Title\":\"MUNNAR\\/THEKKADY\\/(90 Kms\\/3 Hrs)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning breakfast, check out and drive to Thekkady - The very sound of the word Thekkady conjures up images of elephants, unending chains of hills and spice scented plantations. En-route to Thekkady visit to Powerhouse Waterfalls-cascades down a steep rock 200m above sea level. On arrival check into the resort\\/hotel. Lunch and relax. Later on visit to The Periyar Wildlife Sanctuary - situated on the banks of the Periyar Lake - an artificial lake, at Thekkady. Return to resort\\/hotel, dinner and overnight&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":504681,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":504682,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365627,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":419351,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365624,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":504684,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":365628,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":504685,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":504687,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1378,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1352,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1351,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253580\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253583\",\"Title\":\"THEKKADY \\/ ALLEPPY\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, from the mountains to the plains drive down the country side and get a glimpse of the picturesque country side. Set out on an enchanting backwater cruise in traditional Kerala houseboat. While cruising in the house boat enjoy the scenes of the country side - skim past bowed down paddy fields, duck farms and indigenous dykes to see paddy cultivation in fields, situated below the sea level ! And tree lined and coconut palms swaying majestically on the banks are a real treat to the eyes. Overnight stay at houseboat with all meals&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":505099,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":419472,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":419472,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253586\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253589\",\"Title\":\"ALLEPPY \\/ MARARIKULAM(40 kms\\/1 hr)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, day free to relax in&amp;nbsp; Mararikulam &amp;nbsp;beach. The sea is generally calm and one can spend time simply by gazing the sea and observe the traditional fisherman in their traditional boats, going to sea or an occasional ship passing by. Overnight stay at hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16755,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":505102,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":505103,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":505104,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":130436,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":505106,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1071,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"253592\",\"Title\":\"MARARIKULAM \\/ COCHIN : (60 kms\\/ 1 hr)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and return to Cochin. Places prior to reaching the airport \\/ train station will include visit to Fort Kochi and Mattancheryy to taste apiece of ancient civilization the 15 and 16th century. Thereafter, get dropped to board a train \\/ flight for onward destination, feeling contended of a holiday you enjoyed in Kerala with lasting impression of life time. The tour ends here.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16755,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2535,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2803,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"35357\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16667,\"priceDoubleOcc\":\"20000.00\",\"priceSingleOcc\":58000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17333,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17333,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17333,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19333,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":62000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22667,\"priceDoubleOcc\":\"29000.00\",\"priceSingleOcc\":67000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"35358\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":74000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23667,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":75000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23667,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":75000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23667,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":75000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25667,\"priceDoubleOcc\":\"31000.00\",\"priceSingleOcc\":78000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":29000,\"priceDoubleOcc\":\"36000.00\",\"priceSingleOcc\":83000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"35359\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28000,\"priceDoubleOcc\":\"32000.00\",\"priceSingleOcc\":84000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28667,\"priceDoubleOcc\":\"33000.00\",\"priceSingleOcc\":85000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28667,\"priceDoubleOcc\":\"33000.00\",\"priceSingleOcc\":85000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28667,\"priceDoubleOcc\":\"33000.00\",\"priceSingleOcc\":85000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":30667,\"priceDoubleOcc\":\"36000.00\",\"priceSingleOcc\":88000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"40000.00\",\"priceSingleOcc\":92000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"35357\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16667,\"priceDoubleOcc\":\"20000.00\",\"priceSingleOcc\":58000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17333,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17333,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17333,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":59000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19333,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":62000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22667,\"priceDoubleOcc\":\"29000.00\",\"priceSingleOcc\":67000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"35358\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":74000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23667,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":75000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23667,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":75000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23667,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":75000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25667,\"priceDoubleOcc\":\"31000.00\",\"priceSingleOcc\":78000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":29000,\"priceDoubleOcc\":\"36000.00\",\"priceSingleOcc\":83000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"35359\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28000,\"priceDoubleOcc\":\"32000.00\",\"priceSingleOcc\":84000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28667,\"priceDoubleOcc\":\"33000.00\",\"priceSingleOcc\":85000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28667,\"priceDoubleOcc\":\"33000.00\",\"priceSingleOcc\":85000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28667,\"priceDoubleOcc\":\"33000.00\",\"priceSingleOcc\":85000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":30667,\"priceDoubleOcc\":\"36000.00\",\"priceSingleOcc\":88000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"40000.00\",\"priceSingleOcc\":92000,\"priceExtraBed\":\"20000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;1. GST&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;2. Lunch\\/Dinner wherever not specified.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;3. Expenses personal in nature like tips, laundry, telephones etc.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;4. Flight\\/Train and Bus Tickets (Unless specified in the quote)&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;5. Entrance to all attractions, activities, boating, camera charges etc.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;6. Any expenses arising out of any force majeure circumstances like political situations etc.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;7. Any service not specified in the inclusions.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;1. Nights stay in the Hotel \\/Resort (as per category chosen), with breakfast Taxes or as per the meal plan mentioned.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2. All accommodation in base category rooms, unless specified otherwise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3. Transportation by A\\/C Car \\/ Coach, driver allowance, fuel, parking charges as per the itinerary&amp;nbsp; only.&amp;nbsp; A\\/C will not be operational in Hill station.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;4. Drivers allowance, parking, toll charges and inter- state permit and all applicable Taxes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"253568\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[253568],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253571\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[253571],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253574\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[253574],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253577\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[253577],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253580\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[253580],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253583\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[253583],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253586\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[253586],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253589\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[253589],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"253592\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[253592],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Munnar,Thekkady,Alleppey,Mararikulam','Munnar,Kerala,Indian Subcontinent,South India,India,Thekkady,Alleppey,Mararikulam,Cochin',NULL,'18697,27156,670,16755',20000,40000,5,NULL,NULL,NULL,2,'',0,'2022-05-24 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-05-24 17:09:24','2022-05-24 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'essence-of-kerala',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (9,34654,1,12577,0,0,0,'Honeymoon,Family,Hill Station,Weekend',NULL,1,1,0,'{\"package\":{\"TPId\":34654,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/tea_garden_hill_station_retreat_1649503912.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Munnar literally means the land of 3 Rivers, colloquially Mun means Three and Aar means rivers. It is a small hilly town, with the 3 rivers converging. The town is famous for both flora and fauna and is town has shades of colonial influence.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Cochin\",\"DestinationPlacesSysId\":6561,\"SourcePlaces\":\"Cochin\",\"SourcePlaceSysId\":6561,\"AgencyName\":\"Connect India\",\"Name\":\"Tea Garden and Hill Station Retreat\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"6699\",\"SupplierName\":\"Skyway International Travels\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Cab,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Weekend\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":503161,\"Name\":\"Trivers Resort Munnar\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0314864\",\"Long\":\"77.04823859999999\",\"Address\":\"Chithirapuram Powerhouse Road, Munnar, Kerala 685565, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365612,\"Name\":\"Abad Copper Castle\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.084856\",\"Long\":\"77.059456\",\"Address\":\"Kannan Devan Hills Munnar Kerala  Kannan Devan Hills\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"&quot;The resort is situated atop the Kannan Devan Hills, in Munnar at 1,600 m above sea level. It is on Pothumedu Road, just 2.5 kms from the main town- Munnar, 115 kms from Cochin International Airport and 125 kms from the Aluva railway station. This is the ideal destination for the guest&#039;s relaxing undisturbed holiday.The resort provides comfort and privacy along with nonintrusive service and guests are assured tranquility without any distractions so that they can talk and think in peace. This stunning holiday resort offers convenient and cosy guest rooms. All the rooms are equipped with modern amenities to provide comfort stay for the guests. For those looking for entertainment the hotel offers a games room. There is a multi-cuisine restaurant at the resort serving various kinds of tasty dishes.&quot;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/f8\\/db\\/f8dba49948fbbaf1205640ad237c76199a819974.jpg\",\"AccoAminitiesMask\":\"1110001000001110110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365611,\"Name\":\"Misty Mountain Resort\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.078262\",\"Long\":\"77.062802\",\"Address\":\"Randam Mile\\/Second Mile Junction Pallivasal Munnar 685565  Randam Mile\\/Second Mile Junction\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Property Location When you stay at Misty Mountain Resort in Munnar, you&#039;ll be in the mountains and convenient to Mount Carmel Church and Carmal Church.  This hotel is within close proximity of St. Thomas Marthoma and Rose Garden.Rooms Make yourself at home in one of the 48 guestrooms featuring minibars. Wireless Internet access (surcharge) keeps you connected, and cable programming is available for your entertainment. Private bathrooms with bathtubs or showers feature slippers and hair dryers. Conveniences include phones, as well as complimentary newspapers and coffee\\/tea makers.Amenities Pamper yourself with a visit to the spa, which offers massages, body treatments, and facials. This hotel also features complimentary wireless Internet access, a television in a common area, and tour\\/ticket assistance.Dining Satisfy your appetite at the hotel&#039;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of 24-hour room service.Business, Other Amenities Featured amenities include a business center, complimentary newspapers in the lobby, and multilingual staff. Event facilities at this hotel consist of a conference center and a meeting room. Free self parking is available onsite.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1000000000000000110\",\"AccoAminities\":[{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":419265,\"Name\":\"Chandys Windy Woods Resort\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"Pallivasal 2nd Mile, Meencut P.O, 685565 Munnar, Kerala\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Stop at Chandys Windy Woods Resort to discover the wonders of Munnar. The hotel has everything you need for a comfortable stay. 24-hour front desk, luggage storage, car park, room service, airport transfer are just some of the facilities on offer. All rooms are designed and decorated to make guests feel right at home, and some rooms come with air conditioning, wake-up service, desk, mini bar, balcony\\/terrace. To enhance guests&#039; stay, the hotel offers recreational facilities such as outdoor pool, spa. No matter what your reasons are for visiting Munnar, Chandys Windy Woods Resort will make you feel instantly at home.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/44\\/0a\\/440a3e459d72570955a77111dccb750b65561c2e.jpg\",\"AccoAminitiesMask\":\"1010000000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":141596,\"Name\":\"Tea County, KTDC Hill Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.083678\",\"Long\":\"77.061543\",\"Address\":\"Munnar 685612 Kerala\"},\"Images\":{\"Image\":[{\"ImagId\":3116717,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_6_t.jpg\"},{\"ImagId\":3116718,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_7_t.jpg\"},{\"ImagId\":3116719,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_8_t.jpg\"},{\"ImagId\":3116720,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_9_t.jpg\"},{\"ImagId\":3116721,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_10_t.jpg\"},{\"ImagId\":3116722,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_11_t.jpg\"},{\"ImagId\":3116723,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_12_t.jpg\"},{\"ImagId\":3116724,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_13_t.jpg\"},{\"ImagId\":3116725,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_14_t.jpg\"},{\"ImagId\":3116726,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_15_t.jpg\"},{\"ImagId\":3116727,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_16_t.jpg\"},{\"ImagId\":3116728,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_17_t.jpg\"},{\"ImagId\":3116729,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_20_t.jpg\"},{\"ImagId\":3116730,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_21_t.jpg\"},{\"ImagId\":3116731,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_22_t.jpg\"},{\"ImagId\":3116732,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_24_t.jpg\"},{\"ImagId\":3116733,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_26_t.jpg\"},{\"ImagId\":3116734,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_27_t.jpg\"},{\"ImagId\":3116735,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_23_t.jpg\"},{\"ImagId\":3116736,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_25_t.jpg\"},{\"ImagId\":3116737,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_19_t.jpg\"},{\"ImagId\":3116738,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/24ab1d5e_t.jpg\"},{\"ImagId\":3116739,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/18cdb642_t.jpg\"},{\"ImagId\":3116740,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/e1288c7e_t.jpg\"}]},\"CityId\":18697,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;With a stay at KTDC Tea County Munnar in Munnar, you&amp;apos;ll be minutes from Mount Carmel Church and Carmal Church.  This 4-star hotel is within close proximity of St. Thomas Marthoma and Tata Tea Museum.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 67 guestrooms featuring minibars. Conveniences include phones and coffee\\/tea makers, and you can also request rollaway\\/extra beds.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with onsite massages or enjoy recreation amenities such as a health club. Additional features at this hotel include complimentary wireless Internet access, an arcade\\/game room, and tour\\/ticket assistance.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of KTDC Tea County Munnar. Quench your thirst with your favorite drink at a bar\\/lounge.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;A roundtrip airport shuttle is provided for a surcharge (available on request), and free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4710000\\/4703300\\/4703205\\/4703205_6_t.jpg\",\"AccoAminitiesMask\":\"111010000000000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365620,\"Name\":\"Camelot Resort, Munnar\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.059525\",\"Long\":\"77.00758\",\"Address\":\"Letchmi Estate Munnar P.O. Idukki District Kerala State\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Property Location When you stay at Camelot Resort in Munnar, you&#039;ll be in the mountains and within the vicinity of Attukad Waterfall and Tata Tea Museum.  This hotel is within the vicinity of Carmal Church and Mount Carmel Church.Rooms Make yourself at home in one of the 12 guestrooms. Digital television is provided for your entertainment. Conveniences include phones and desks.Amenities Take in the views from a garden and make use of amenities such as tour\\/ticket assistance.Dining Enjoy a satisfying meal at a restaurant serving guests of Camelot Resort.Business, Other Amenities Event facilities at this hotel consist of conference space and a meeting room. Free self parking is available onsite.\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/85\\/75\\/8575c763e148206b47ecd9b9b35caf66cb033bc8.jpg\",\"AccoAminitiesMask\":\"1010000000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":503163,\"Name\":\"Trivers Resort Munnar\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.0314864\",\"Long\":\"77.04823859999999\",\"Address\":\"Chithirapuram Powerhouse Road, Munnar, Kerala 685565, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":503160,\"Name\":\"Trivers Resort Munnar\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0314864\",\"Long\":\"77.04823859999999\",\"Address\":\"Chithirapuram Powerhouse Road, Munnar, Kerala 685565, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365323,\"Name\":\"Club Mahindra Mount Serene\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.039884\",\"Long\":\"77.16018\",\"Address\":\"Chinnakanal Village,Suryanelli(Via) Iddukki (District Munnar),Kerala,Kerala,India, 685618\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Cloud View -Munnar is situated in Chinnakanal ( Munnar), a destination famous for its breathtaking natural beautiful rolling hills with carpeted in emerald-green tea plantations.Cloud View Munnar offer you best of nature and luxury,making it the best with best in class.  51 guest rooms having modern amenties and facilities for a comfortable visit.\",\"MainImg\":\"https:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=9eMP+0FIICg7A8cpsaijimfNQMaEw56GeGxvIyJ2ivLkSZ46Cb0VhI6Vd+WQRPwSvrYou6Nx9VW8Xt5Arvjl5nANd2C0EkJDXKfLQRGIapU=\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":419268,\"Name\":\"Mountain Club Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.045144\",\"Long\":\"77.179197\",\"Address\":\"Chinnakanal Suryanelli Road, Chinnakanal, Munnar 685618, Kerala\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Located in Munnar, Mountain Club - Munnar is in the mountains, minutes from Mount Carmel Church, and close to Carmal Church.  This 4-star hotel is within close proximity of Kundala Dam Lake and St. Thomas Marthoma.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Treat yourself to a stay in one of the 47 individually furnished guestrooms, featuring fireplaces. Rooms have private balconies. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Conveniences include phones, as well as desks and complimentary newspapers.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Pamper yourself with onsite massages and body treatments. If you&#039;re looking for recreational opportunities, you&#039;ll find a health club, an outdoor pool, and a sauna. Additional amenities at this Victorian hotel include complimentary wireless Internet access, concierge services, and an arcade\\/game room. Getting to nearby attractions is a breeze with the area shuttle (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Satisfy your appetite at the hotel&#039;s restaurant, where you can take in a pool view. Snacks are also available at a coffee shop\\/cafe. Mingle with other guests at a complimentary reception, held daily. A complimentary buffet breakfast is served daily from 7:30 AM to 10 AM.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a business center, express check-in, and express check-out. Planning an event in Munnar? This hotel has 3000 square feet (279 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/09\\/6c\\/096c43ef711ad0c34ca4c28e206da14ca622ea90.jpg\",\"AccoAminitiesMask\":\"1010000100001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":365619,\"Name\":\"Fragrant Nature Munnar\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"Baison Valley Road Pothemmedu Munnar 685612  Baison Valley Road\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"Property Location Located in Munnar, Fragrant Nature Munnar is close to Attukad Waterfall and Kundala Dam Lake.  This hotel is within close proximity of St. Thomas Marthoma and Rose Garden.Rooms Make yourself at home in one of the 43 air-conditioned rooms featuring fireplaces and flat-screen televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Conveniences include safes and desks, and housekeeping is provided daily.Amenities Be sure to enjoy recreational amenities including a health club and bicycles to rent. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Getting to nearby attractions is a breeze with the area shuttle (surcharge).Dining Enjoy a meal at a restaurant or in a coffee shop\\/caf&Atilde;&copy;. Or stay in and take advantage of the hotel&#039;&#039;s room service (during limited hours). Quench your thirst with your favorite drink at a bar\\/lounge.Business, Other Amenities Featured amenities include a business center, dry cleaning\\/laundry services, and a 24-hour front desk. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free valet parking is available onsite.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1110001100001100100\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":16,\"Title\":\"Smoking\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":419270,\"Name\":\"The Panoramic Getaway\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.029390716806\",\"Long\":\"77.037687965676\",\"Address\":\"Munnar Bypass, Anachal-Munnar Road, Chithirapuram, Munnar 685565, Idukki, Kerala\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at The Panoramic Getaway in Munnar, you&#039;ll be close to Dreamland Children Park and Attukad Waterfall.  This 5-star hotel is within the vicinity of Mount Carmel Church and Carmal Church.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 55 air-conditioned rooms featuring minibars and flat-screen televisions. Rooms have private balconies or patios. Complimentary wired and wireless Internet access keeps you connected, and cable programming provides entertainment. Private bathrooms with bathtubs or showers feature rainfall showerheads and complimentary toiletries.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take time to pamper yourself with a visit to the full-service spa. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and a picnic area.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at one of the hotel&#039;s dining establishments, which include 2 restaurants and a coffee shop\\/cafe. From your room, you can also access room service (during limited hours).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A shuttle from the airport to the hotel is provided for a surcharge (available 24 hours), and free valet parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/2e\\/4f\\/2e4f435c553b387d10d5a2660fb7fba5090abd7b.jpg\",\"AccoAminitiesMask\":\"1000000100001101000\",\"AccoAminities\":[{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":13656,\"Title\":\"Kfdc Horticulture Garden\",\"Description\":\"Scenic botanical garden with greenhouses full of rare flowers, succulents &amp;amp; other specimens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kfdc_Horticulture_Garden__18697_1579525808.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null},{\"RefSSId\":1591,\"Title\":\"Shooting Point (Photo point)\",\"Description\":\"Also known as Photo point, Shooting Point is a ideal scenic beauty created by silver oak trees and green tea plantations, situated at a distance of 3 kms from Munnar on the way to Mattupetty. Photo point is an suitable spot for amateur as well as professional photographers. Surrounded by gardens, tea plantations and streams, Photo point is such a mesmerizing spot. Tea, coffee, spices, cardamom and pepper and homemade chocolates can buy near the Photo point.. The idea behind visiting  is specifically to indulge in typical tourist activity, but more to click and stock up all the photographs .\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Shooting_Point_(Photo_point)_18697_1521639368.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":6699,\"SupplierName\":\"Skyway International Travels\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"248550\",\"Title\":\"COCHIN\\/MUNNAR (140 Kms\\/ 5 HRS)\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Pick up from Cochin Airport\\/ Ernakulam Railway Station. Drive to Munnar. Munnar is a quaint hill station perched on the slopes of Western Ghats. It is both charming and old-fashioned, with colonial-style buildings existing with modern structures. Stop at Cheeyapara waterfalls en route to Munnar. Munnar is indeed a photographer&amp;rsquo;s delight. Overnight stay at Hotel in Munnar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":503161,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365611,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":419265,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":141596,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365620,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":503163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":503160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":419268,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365619,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":419270,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":318,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"248553\",\"Title\":\"MUNNAR LOCAL SIGHT SEEING\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, proceed on a full-day tour of Munnar attractions. The Horticultural Garden, Photo point, Mattupetty Dam, and Kundala Dam are all located on the route to Top Station. Kundala Dam is known for the Arch type architecture. Echo point on the lower slopes of the region is a picturesque spot where you would find your voice echoing and thus derives the name Echo Point. All the above places are well worth a visit. With tourist having a flair for culture - they can spend their time in the evening at the Punarjani Traditional village (Optional activity), where they get to see a piece of Kerala culture in the form of Kathakali Dance and Kalari pattu - a form of ancient martial arts, a visual treat to the eyes. Overnight stay at Hotel in Munnar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":419265,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":141596,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365620,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":503161,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365612,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365611,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":419265,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":141596,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365620,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":503163,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4},{\"Item\":[{\"IsIncluded\":true,\"Id\":503160,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365323,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":419268,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":365619,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"},{\"IsIncluded\":false,\"Id\":419270,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":13656,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":925,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1591,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"248556\",\"Title\":\"MUNNAR\\/COCHIN\\/(140 Kms\\/5 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, return to Kochi to board a train\\/flight for your onward destination, feeling content with a holiday you enjoyed in Kerala with a lasting impression of a lifetime. The tour ends here.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4},{\"Type\":\"Premium\",\"Id\":5}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"34654\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":6667,\"priceDoubleOcc\":\"8000.00\",\"priceSingleOcc\":26000,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7000,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7000,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7000,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7333,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":27000,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"34655\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":8667,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":32000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":35000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"34656\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10667,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":35000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11333,\"priceDoubleOcc\":\"13000.00\",\"priceSingleOcc\":36000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11333,\"priceDoubleOcc\":\"13000.00\",\"priceSingleOcc\":36000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11333,\"priceDoubleOcc\":\"13000.00\",\"priceSingleOcc\":36000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":38000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14667,\"priceDoubleOcc\":\"18000.00\",\"priceSingleOcc\":41000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"34654\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":6667,\"priceDoubleOcc\":\"8000.00\",\"priceSingleOcc\":26000,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7000,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7000,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7000,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"8500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7333,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":27000,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"9000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"4000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"34655\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":8667,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"10000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":32000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":35000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":5,\"Type\":\"Premium\",\"TPSysId\":\"34656\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10667,\"priceDoubleOcc\":\"12000.00\",\"priceSingleOcc\":35000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11333,\"priceDoubleOcc\":\"13000.00\",\"priceSingleOcc\":36000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11333,\"priceDoubleOcc\":\"13000.00\",\"priceSingleOcc\":36000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11333,\"priceDoubleOcc\":\"13000.00\",\"priceSingleOcc\":36000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12667,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":38000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14667,\"priceDoubleOcc\":\"18000.00\",\"priceSingleOcc\":41000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\".00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;1. GST&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2. Lunch\\/Dinner wherever not specified.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3. Expenses personal in nature like tips, laundry, telephones etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;4. Flight\\/Train and Bus Tickets (Unless specified in the quote)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;5. Entrance to all attractions, activities, boating, camera charges etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;6. Any expenses arising out of any force majeure circumstances like political situations etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;7. Any service not specified in the inclusions.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;1. Nights stay in the Hotel \\/Resort (as per category chosen), with breakfast, dinner + Taxes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2. All accommodation in base category rooms, unless specified otherwise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3. Transportation by A\\/C Car \\/ Coach, driver allowance, fuel, and parking charges as per the itinerary only.&amp;nbsp; AC will not be used in Hill station.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;4. Drivers allowance, parking, toll charges, inter-state permit, and all applicable taxes.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"248550\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[248550],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"248553\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[248553],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"248556\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[248556],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Munnar','Munnar,Kerala,Indian Subcontinent,South India,India',NULL,'18697',8000,18000,2,NULL,NULL,NULL,1,'',0,'2022-05-24 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-05-24 17:09:28','2022-05-24 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'tea-garden-and-hill-station-retreat',NULL,NULL,NULL,0),(10,33886,1,12577,0,0,0,'Honeymoon,Adventure,Family,Religious,Heritage',NULL,1,1,0,'{\"package\":{\"TPId\":33886,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The land of vibrant colours, rich heritage, scenic locations, majestic lakes, beautiful palaces and everything else in between, Rajasthan with its royal essence welcomes you with all its heart.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A small yet enchanting town Pushkar has the right mix of mysticism and serenity that prevails in the air. It has gained its name for many recreational activities like boating on the lake as the sun gently splashes its golden lights on the shores, thrilling camel safaris in sand dunes to witness the shimmering glory of the desert, camping and hikes, cable-car rides, shopping for local handicrafts and so much more. Breathe in the charm of Jaipur, a place known as the Pink city of India for it holds a symbol of hospitality. From the magnificent forts and palaces coloured in blush pink to beautiful vibrant open-aired bazaars, Jaipur has everything for you.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":6135,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":6135,\"DestinationPlaces\":\"Jaipur\",\"DestinationPlacesSysId\":12995,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"Connect India\",\"Name\":\"Jaipur and Pushkar Tour \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"8141\",\"SupplierName\":\"K K Holidays N Vaccations\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Train Station Transfers,Intercity Transfers\",\"PackageType\":\"Honeymoon,Adventure,Family,Religious,Heritage\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":22270,\"Title\":\"Pushkar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":22270,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":8141,\"SupplierName\":\"K K Holidays N Vaccations\",\"priceaditionals\":null,\"RoomTypeName\":\" Deluxe double Room \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"242841\",\"Title\":\"Arrive Jaipur \",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Today Arrive Jaipur . On arrival check in at hotel . Evening visit Albert Hall &amp;amp; Birla Temple .&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"242842\",\"Title\":\"Jaipur sightseeing \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast in the morning you will be taken for Amber Fort, the majestic fort located at the top of Aravali Hills. Take a short ride on elephant&amp;rsquo;s back to reach at the fort, an overwhelming experience.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Come back to the city &amp;amp; visit the City Palace, a perfection of Rajput &amp;amp; Mughal architecture, Palace of Winds popular as Hawa Mahal, a five storied building built in 1799 to enable the royal ladies to view the outside life &amp;amp; world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later opt for Jantar Mantar, an astronomical observatory. Return to the hotel and stay overnight.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"},{\"IsIncluded\":false,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"242843\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"242844\",\"Title\":\"Jaipur to Pushkar by road \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Drive to Pushkar . On arrival check in at hotel . Evening rest at hotel .&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22270,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"242845\",\"Title\":\"Pushkar sightseeing \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today visit Brahma Temple &amp;amp; Pushkar lake&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22270,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe double Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"242846\",\"Title\":\"Pushkar to Jaipur drop \",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;Today drive back to Jaipir where you will be on time transfered to airport for onward journey&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22270,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"33886\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":10267,\"priceDoubleOcc\":\"12100.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6600.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12100.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11000,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":24200,\"priceExtraBed\":\"6600.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11733,\"priceDoubleOcc\":\"14300.00\",\"priceSingleOcc\":25300,\"priceExtraBed\":\"6600.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14300.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12467,\"priceDoubleOcc\":\"15400.00\",\"priceSingleOcc\":26400,\"priceExtraBed\":\"6600.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13200,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":27500,\"priceExtraBed\":\"6600.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13933,\"priceDoubleOcc\":\"17600.00\",\"priceSingleOcc\":28600,\"priceExtraBed\":\"6600.00\",\"priceWithoutBed\":\"4950.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"33886\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9800,\"priceDoubleOcc\":\"11550.00\",\"priceSingleOcc\":22050,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11550.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":10500,\"priceDoubleOcc\":\"12600.00\",\"priceSingleOcc\":23100,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11200,\"priceDoubleOcc\":\"13650.00\",\"priceSingleOcc\":24150,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13650.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":11900,\"priceDoubleOcc\":\"14700.00\",\"priceSingleOcc\":25200,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":12600,\"priceDoubleOcc\":\"15750.00\",\"priceSingleOcc\":26250,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-22\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":13300,\"priceDoubleOcc\":\"16800.00\",\"priceSingleOcc\":27300,\"priceExtraBed\":\"6300.00\",\"priceWithoutBed\":\"4725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"Exclusions\",\"Inclusion\":\"Inclusions\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"242841\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[242841],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"242842\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[242842],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"242843\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[242843],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"242844\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[242844],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"242845\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[242845],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"242846\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[242846],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Jaipur,Pushkar','Jaipur,Rajasthan,Indian Subcontinent,North India,India,Pushkar',NULL,'12995,22270',11550,17600,4,NULL,NULL,NULL,1,'',0,'2022-05-24 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-05-24 17:09:30','2022-05-24 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'jaipur-and-pushkar-tour',NULL,NULL,NULL,0),(11,31043,1,12577,1,0,0,'Honeymoon,Family',NULL,1,1,0,'{\"package\":{\"TPId\":31043,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/royal_rajasthan_tour_1643264132.jpg\",\"BookingValidUntill\":\"2022-09-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;05 Nights \\/ 06 Days tour of Jaipur, Jodhpurand Udaipur&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":9935,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":9935,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"India Now Journeys\",\"Name\":\"Royal Rajasthan Tour\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"7681\",\"SupplierName\":\"Rajasthan Tours\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2022-09-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492846,\"Name\":\"Park Prime\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9090993\",\"Long\":\"75.8027106\",\"Address\":\"C-59, Prithviraj Rd, Panch Batti, C Scheme, Ashok Nagar, Jaipur, Rajasthan 302001, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"&lt;p&gt;Park Prime features an outdoor pool and a restaurant located on its rooftop, offering panoramic views of Jaipur City. Boasting 3 dining options, it offers rooms with 24-hour room service.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests can go for an Ayurvedic massage or exercise in the hotel&rsquo;s fitness centre. Other facilities at Jaipur&rsquo;s Park Prime include a business centre and a tour desk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Oasis offers a daily buffet spread of local and international dishes, while the rooftop Terrace Grill offers an assortment of grilled delicacies, including vegetarian options. Alternatively, Henry&rsquo;s pub provides a relaxing ambience for drinks, accompanied with light meals.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Located a 5-minute drive from Gem Palace and Chameliwala Market, Park Prime Jaipur is 2 km from Jaipur Railway Station and about 12 km from Jaipur International Airport.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492846\\/9935_5698e177a39cd97614fff53cdf38637d1650622009.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":492665,\"Name\":\"Park Regis\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9440536\",\"Long\":\"75.8389463\",\"Address\":\"Park Regis, near Jal Mahal, Kagdiwara, Brahampuri, Jaipur, Rajasthan 302002, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"&lt;p&gt;Park Regis Jaipur is the new entrant in the popular and vibrant The Pink City of India- Jaipur. The Hotel started operations in November 1994 and was re-branded to Park Regis Jaipur in 2015, ideally located close to all popular monuments like Amer Fort, Hawa Mahal, Jal Mahal, City Palace, Jantar Mantar etc. Even the industrial town of Kukas is just a 10 minutes drive from the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Hotel has 72 elegantly appointed rooms and suites which are well equipped with all modern amenities. It has two Restaurants, 24 hours In Room Dining, Swimming Pool, Gym, Wi-Fi, Business Center, Shopping Arcade etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Hotel has two Indoor Banquet Halls with capacity between 25-225 persons. Alongside, the Hotel also has Garden Party Lawns adjoining the Swimming Pool which can accommodate up to 400 persons for a formal or informal gathering.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492665\\/9935_855a0180010a101ebdd158629762afe81650623768.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":492755,\"Name\":\"Trident Hotel Jaipur\",\"Star\":\"5.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9573444\",\"Long\":\"75.8428861\",\"Address\":\"Amer Rd, Jal Mahal, Amer, Jaipur, Rajasthan 302002, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"&lt;p&gt;Luxurious 5-star accommodation and service awaits at Trident Jaipur, which boasts breathtaking views of peaceful Mansagar Lake and the Aravalli Range. It houses a large outdoor pool with loungers, pool bar and fitness facilities. Free WiFi is available in the rooms of the property.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Spacious rooms open out to private balconies overlooking the lake or the hotel&rsquo;s landscaped grounds. In-room comforts include a flat-screen TV, a bathtub and separate shower.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Trident Jaipur is 1.6 km from majestic Nahargarh Fort and 4 km from Jal Mahal and lively Bapu Bazaar. It has free parking and is 21 km from Jaipur Airport. The Jaipur Railway Station is 10 km.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492755\\/9935_9ee83b0e21bfa99c1c262a847617236b1650622506.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":148,\"Title\":\"Bapu Bazar\",\"Description\":\"Bapu Bazar located near Choti Chopud attracts allot of Foreigners and tourists for the traditional dressing and rajasthani artifacts which are easily available in the market, and helps tourists to grab allot of things.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9164974,\"Long\":75.8223862,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3158\\/thumb\\/Bapu Bazar_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":216,\"Title\":\"Birla Mandir\",\"Description\":\"The Lakshmi-Narayan Temple, or the Birla Mandir, as it is more popularly known as, is located at the base of Moti Dungari. Built on an elevated platform, this comparatively modern temple is built entirely of white marble and dominates the skyline of south Jaipur. The temple was commissioned and built by renowned Indian industrialists, the Birlas, in 1988. The temple is dedicated to Lord Vishnu, also called Narayan, and his companion, Lakshmi, the Goddess of wealth and good fortune. The temple is a work of art and has a marvellous display of exquisite carvings and sculptures covering many mythological themes. The eye is drawn to the images of Laxmi and Narayan, carved as they are, from one piece of marble. The top of the temple has three domes, each representing the three religions followed in India. This is designed to pay homage to secular India. The temple looks spectacular at night when it is lit up. Other than the main temple, the complex has a museum that exhibits the earlier belongings of the Birla family.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.0173274,\"Long\":76.5025742,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/160\\/thumb\\/Birla Temple_255.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":533,\"Title\":\"Galtaji Temple\",\"Description\":\"The site consists of a series of temples built into a narrow crevice in the ring of hills that surrounds Jaipur. A natural spring emerges high on the hill and flows downward, filling a series of sacred kunds in which pilgrims bathe.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":27.0238036,\"Long\":74.2179326,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Galtaji_Temple_12995_1519731030.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1253,\"Title\":\"Observatory\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. In fact, he himself designed the stone and masonry instruments of the observatory.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Observatory_12995_1519710372.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":399,\"Title\":\"Dargah Sharif\",\"Description\":\"The dargah of Moinuddin Chisti, is an international waqf, an Islamic mortmain. Akbar and his queen used to come here by foot on pilgrimage from Agra every year in observance of a vow.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Dargah_Sharif_12995_1519644958.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":737,\"Title\":\"Jal Mahal\",\"Description\":\"Jal Mahal (signifying &amp;quot;Water Palace&amp;quot;) is a royal residence situated amidst the Man Sagar Lake in Jaipur city, the capital of the condition of Rajasthan, India. The royal residence and the lake around it were revamped and amplified in the eighteenth century by Maharaja Jai Singh II of Amber.&amp;quot;The Jal Mahal castle has an eye-popping makeover. Conventional vessel creators from Vrindavan have made the Rajput style wooden water crafts. A tender sprinkling of paddles on the reasonable lake waters takes you to Jal Mahal. You move past finished foyers and chambers on the principal floor to climb as far as possible up to the fragrant Chameli Bagh. Over the lake, you can see the slopes, spotted with sanctuaries and old fortresses, and on the other side, clamoring Jaipur.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9534498,\"Long\":75.8461475,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jal_Mahal_12995_1519718831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":361,\"Title\":\"Clock Tower Markets\",\"Description\":\"The area surrounding the Clock Tower bustles with locals presenting all sorts of products and services, making it the busiest and largest marketplace of Jodhpur. One can find each and every bit of material at a very cheap rate.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2389469,\"Long\":73.0243094,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1079\\/thumb\\/Clock Tower Markets_753.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":754,\"Title\":\"Jaswant Thada\",\"Description\":\"It is a cenotaph or an empty commemorative tomb built in the honour of Maharaja Jaswant Singh. This cenotaph was constructed in the year 1899 and is decorated with precious white marbles. Jaswant Thada is embedded with beautiful outlook and picturesque view of the mighty majestic Mehrangarh Fort.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2978358,\"Long\":73.0184466,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/39\\/thumb\\/Jaswant Thada_130.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":225,\"Title\":\"Boat Ride\",\"Description\":\"The 3 splendid lakes add to the beauty of udaipur and offer tourists to enjoy a great boat ride and have fun .\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.585445,\"Long\":73.712479,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5097\\/thumb\\/Boat Ride_151.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":145,\"Title\":\"Bansi Ghat\",\"Description\":\"It is a flat surfaced area made up of marble so as to provide the visitors to take a look and enjoy the beauty of the lake.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3842\\/thumb\\/Bansi Ghat_325.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":478,\"Title\":\"Eklingi Mandir\",\"Description\":\"Eklingji is believed to be the ruling deity of Mewar Princely State and the Ruler Maharana rules as his Dewan.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.7408825,\"Long\":73.7227774,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3743\\/thumb\\/Eklingi Mandir_17.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":720,\"Title\":\"Jagdish Temple\",\"Description\":\"Jagdish Temple is a large Hindu temple in the middle of Udaipur in Rajasthan. A big tourist attraction, the temple was originally called the temple of Jagannath Rai but is now called Jagdish-ji. It is a major monument in Udaipur. The Jagdish Temple is raised on a tall terrace and was completed in 1651. It attaches a double-storey Mandapa (hall) to a double-storey saandhara (with a covered ambulatory) sanctum. The mandapa has another storey tucked within its pyramidal samavarna (bellroof) while the hollow clustered spire over the sanctum contains two more, nonfunctional stories.Lanes taking off from many of the sheharpanah (city wall) converge on the Jagdish Temple. It was built by Maharana Jagat Singh in 1651. It is an example of M&Auml;\\u0081ru-Gurjara Architecture.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.5796607,\"Long\":73.6839754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Jagdish_Temple_28058_1550649832.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null}]}},{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492864,\"Name\":\"Ratan Vilas \",\"Star\":\"3.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2617087\",\"Long\":\"72.9839398\",\"Address\":\"Roop Rajat Sarovar, Pal Rd, opposite Preksha hospital, Raj Enclave Colony, Amrit Nagar, Jodhpur, Rajasthan 342008, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"&lt;p&gt;Built in 1920, this architectural marvel, Ratan Vilas offers an outdoor swimming pool and a restaurant that serves Indian and continental specialities. It is within 2 km from the Jodhpur Railway Station and Sadar Government Museum. Free WiFi access is available in the public areas and in the guest&amp;#39;s rooms of the property.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Each modern, elegant and air-conditioned room here will provide you with a satellite TV, seating area and a minibar. Featuring a shower, private bathroom also comes with a hairdryer and free toiletries. 24-hour room service is available for private dining.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At Ratan Vilas you will find a 24-hour front desk, a garden and a terrace. Other facilities offered at the property include a ticket service, a tour desk and luggage storage. Special facilities for differently-abled guests are provided. The property offers free parking.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Popular attractions like the Meherangarh Fort and the Jaswant Thada are within 3.4 km away while the Local Bus Station and the Jodhpur Airport are within 4 km away.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492864\\/9935_5afe5310a443cb430bc4c63b597b56e21650692446.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":492863,\"Name\":\"Ranbanka Palace\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2842478\",\"Long\":\"73.0379156\",\"Address\":\"Circuit House Rd, Ajit Colony, Jodhpur, Rajasthan 342001, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"&lt;p&gt;Offering a spa and wellness centre, a swimming pool and a restaurant, Ranbanka Palace, a heritage hotel is located in Jodhpur. This heritage property captures the colonial influence of its time along with the modern offerings. Free WiFi access is available throughout the property.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The air-conditioned rooms here will provide you with a flat-screen cable TV, seating area and a minibar. There is also an electric kettle. Featuring a hairdryer, private bathrooms also come with free toiletries.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The property is located 3 km from Jodhpur Airport and 2 km from Jodhpur Railway Station. Jodhpur Bus Stand is 1 km away. Local attractions include the Umaid Bhavan Palace which is 2 km away and the Mehrangarh Fort which is 5 km away.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492863\\/9935_def70283489ab4561317d2f542c78b6d1650625323.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":492865,\"Name\":\"Indana Palace Jodhpur\",\"Star\":\"4.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2694157\",\"Long\":\"73.068523\",\"Address\":\"Opp. Military Officer Quarters, Benayakiya Road, Shikargarh, Pabupura, Jodhpur, Rajasthan 342015, India\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"&lt;p&gt;Featuring architecture and interiors modeled on the palaces, Indana Palace, Jodhpur offers a fitness centre, swimming pool, massage parlour and spa and wellness centre. Free Wi-Fi is available throughout the property.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Indana Palace, Jodhpur is 3 km from Umaid Bhawan Palace Museum, 6 from Clock Tower and 10 km from Mehrangarh Fort. It is 3 km from Jodhpur Airport and 8 km from Jodhpur Bus Station and Jodhpur Railway Station.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492865\\/9935_dbfa2b941d4df3deb04759629a864b171650624972.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":148,\"Title\":\"Bapu Bazar\",\"Description\":\"Bapu Bazar located near Choti Chopud attracts allot of Foreigners and tourists for the traditional dressing and rajasthani artifacts which are easily available in the market, and helps tourists to grab allot of things.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9164974,\"Long\":75.8223862,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3158\\/thumb\\/Bapu Bazar_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":216,\"Title\":\"Birla Mandir\",\"Description\":\"The Lakshmi-Narayan Temple, or the Birla Mandir, as it is more popularly known as, is located at the base of Moti Dungari. Built on an elevated platform, this comparatively modern temple is built entirely of white marble and dominates the skyline of south Jaipur. The temple was commissioned and built by renowned Indian industrialists, the Birlas, in 1988. The temple is dedicated to Lord Vishnu, also called Narayan, and his companion, Lakshmi, the Goddess of wealth and good fortune. The temple is a work of art and has a marvellous display of exquisite carvings and sculptures covering many mythological themes. The eye is drawn to the images of Laxmi and Narayan, carved as they are, from one piece of marble. The top of the temple has three domes, each representing the three religions followed in India. This is designed to pay homage to secular India. The temple looks spectacular at night when it is lit up. Other than the main temple, the complex has a museum that exhibits the earlier belongings of the Birla family.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.0173274,\"Long\":76.5025742,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/160\\/thumb\\/Birla Temple_255.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":533,\"Title\":\"Galtaji Temple\",\"Description\":\"The site consists of a series of temples built into a narrow crevice in the ring of hills that surrounds Jaipur. A natural spring emerges high on the hill and flows downward, filling a series of sacred kunds in which pilgrims bathe.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":27.0238036,\"Long\":74.2179326,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Galtaji_Temple_12995_1519731030.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1253,\"Title\":\"Observatory\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. In fact, he himself designed the stone and masonry instruments of the observatory.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Observatory_12995_1519710372.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":399,\"Title\":\"Dargah Sharif\",\"Description\":\"The dargah of Moinuddin Chisti, is an international waqf, an Islamic mortmain. Akbar and his queen used to come here by foot on pilgrimage from Agra every year in observance of a vow.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Dargah_Sharif_12995_1519644958.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":737,\"Title\":\"Jal Mahal\",\"Description\":\"Jal Mahal (signifying &amp;quot;Water Palace&amp;quot;) is a royal residence situated amidst the Man Sagar Lake in Jaipur city, the capital of the condition of Rajasthan, India. The royal residence and the lake around it were revamped and amplified in the eighteenth century by Maharaja Jai Singh II of Amber.&amp;quot;The Jal Mahal castle has an eye-popping makeover. Conventional vessel creators from Vrindavan have made the Rajput style wooden water crafts. A tender sprinkling of paddles on the reasonable lake waters takes you to Jal Mahal. You move past finished foyers and chambers on the principal floor to climb as far as possible up to the fragrant Chameli Bagh. Over the lake, you can see the slopes, spotted with sanctuaries and old fortresses, and on the other side, clamoring Jaipur.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9534498,\"Long\":75.8461475,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jal_Mahal_12995_1519718831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":361,\"Title\":\"Clock Tower Markets\",\"Description\":\"The area surrounding the Clock Tower bustles with locals presenting all sorts of products and services, making it the busiest and largest marketplace of Jodhpur. One can find each and every bit of material at a very cheap rate.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2389469,\"Long\":73.0243094,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1079\\/thumb\\/Clock Tower Markets_753.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":754,\"Title\":\"Jaswant Thada\",\"Description\":\"It is a cenotaph or an empty commemorative tomb built in the honour of Maharaja Jaswant Singh. This cenotaph was constructed in the year 1899 and is decorated with precious white marbles. Jaswant Thada is embedded with beautiful outlook and picturesque view of the mighty majestic Mehrangarh Fort.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2978358,\"Long\":73.0184466,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/39\\/thumb\\/Jaswant Thada_130.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":225,\"Title\":\"Boat Ride\",\"Description\":\"The 3 splendid lakes add to the beauty of udaipur and offer tourists to enjoy a great boat ride and have fun .\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.585445,\"Long\":73.712479,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5097\\/thumb\\/Boat Ride_151.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":145,\"Title\":\"Bansi Ghat\",\"Description\":\"It is a flat surfaced area made up of marble so as to provide the visitors to take a look and enjoy the beauty of the lake.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3842\\/thumb\\/Bansi Ghat_325.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":478,\"Title\":\"Eklingi Mandir\",\"Description\":\"Eklingji is believed to be the ruling deity of Mewar Princely State and the Ruler Maharana rules as his Dewan.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.7408825,\"Long\":73.7227774,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3743\\/thumb\\/Eklingi Mandir_17.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":720,\"Title\":\"Jagdish Temple\",\"Description\":\"Jagdish Temple is a large Hindu temple in the middle of Udaipur in Rajasthan. A big tourist attraction, the temple was originally called the temple of Jagannath Rai but is now called Jagdish-ji. It is a major monument in Udaipur. The Jagdish Temple is raised on a tall terrace and was completed in 1651. It attaches a double-storey Mandapa (hall) to a double-storey saandhara (with a covered ambulatory) sanctum. The mandapa has another storey tucked within its pyramidal samavarna (bellroof) while the hollow clustered spire over the sanctum contains two more, nonfunctional stories.Lanes taking off from many of the sheharpanah (city wall) converge on the Jagdish Temple. It was built by Maharana Jagat Singh in 1651. It is an example of M&Auml;\\u0081ru-Gurjara Architecture.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.5796607,\"Long\":73.6839754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Jagdish_Temple_28058_1550649832.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null}]}},{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":496606,\"Name\":\"Jagat Niwas Palace Hotel\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.578269\",\"Long\":\"73.68254\",\"Address\":\"23, 25, Lal Ghat Road, behind Jagdish Temple, Old City, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"&lt;p&gt;agat&nbsp;niwas&nbsp;palace&nbsp;Jagat&nbsp;Niwas&nbsp;Palace&nbsp;is an early 17th century &amp;#39;Haveli&amp;#39; (mansion), with its charm and aesthetics intact, situated in the heart of the most romantic city of Rajasthan. Nestled in the fertile valley on the breezy, eastern banks of the famous Lake Pichola,&nbsp;Jagat&nbsp;Niwas&nbsp;Palace&nbsp;is a heritage boutique hotel and is highly acclaimed&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_496606\\/9935_2c2226320ffc7b56b51907d7c63f076f1650616463.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":492676,\"Name\":\"Regenta Central Mewargarh\",\"Star\":\"4.00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5894957\",\"Long\":\"73.6953961\",\"Address\":\"8,Hazareshwar Colony, Court Chowk, Madhuban, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"&lt;p&gt;Regenta Central&nbsp;Mewargarh boast contemporary design architecture supported with professionally appointed accommodation of 50 spacious rooms over viewing the&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492676\\/9935_a9c70194388ca00998ab09cdbb27083e1650618542.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":492868,\"Name\":\"The Lalit Laxmi Vilas Palace\",\"Star\":\"5.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5937874\",\"Long\":\"73.6827512\",\"Address\":\"Fateh Sagar Rd, Near Zinc, Fateh Sagar Lake, Udaipur, Rajasthan 313004, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"&lt;p&gt;The&nbsp;LaLiT&nbsp;Laxmi&nbsp;Vilas&nbsp;Palace&nbsp;Udaipur is the best 5 star luxury hotel in Udaipur. It is among the top hotels in Udaipur and is the only modern&nbsp;palace&nbsp;hotel which overlooks the Fateh Sagar Lake. It has 55 rooms and suites, with on-site dining, spa, and much more.Book Online to get the amazing offers along with the wide range of luxury facilities &amp; comforts in Udaipur.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492868\\/9935_eaa173ecb0ecc6ee9a9e5220a12948251650705638.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":148,\"Title\":\"Bapu Bazar\",\"Description\":\"Bapu Bazar located near Choti Chopud attracts allot of Foreigners and tourists for the traditional dressing and rajasthani artifacts which are easily available in the market, and helps tourists to grab allot of things.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9164974,\"Long\":75.8223862,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3158\\/thumb\\/Bapu Bazar_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":216,\"Title\":\"Birla Mandir\",\"Description\":\"The Lakshmi-Narayan Temple, or the Birla Mandir, as it is more popularly known as, is located at the base of Moti Dungari. Built on an elevated platform, this comparatively modern temple is built entirely of white marble and dominates the skyline of south Jaipur. The temple was commissioned and built by renowned Indian industrialists, the Birlas, in 1988. The temple is dedicated to Lord Vishnu, also called Narayan, and his companion, Lakshmi, the Goddess of wealth and good fortune. The temple is a work of art and has a marvellous display of exquisite carvings and sculptures covering many mythological themes. The eye is drawn to the images of Laxmi and Narayan, carved as they are, from one piece of marble. The top of the temple has three domes, each representing the three religions followed in India. This is designed to pay homage to secular India. The temple looks spectacular at night when it is lit up. Other than the main temple, the complex has a museum that exhibits the earlier belongings of the Birla family.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.0173274,\"Long\":76.5025742,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/160\\/thumb\\/Birla Temple_255.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":533,\"Title\":\"Galtaji Temple\",\"Description\":\"The site consists of a series of temples built into a narrow crevice in the ring of hills that surrounds Jaipur. A natural spring emerges high on the hill and flows downward, filling a series of sacred kunds in which pilgrims bathe.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":27.0238036,\"Long\":74.2179326,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Galtaji_Temple_12995_1519731030.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1253,\"Title\":\"Observatory\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. In fact, he himself designed the stone and masonry instruments of the observatory.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Observatory_12995_1519710372.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":47,\"Title\":\"Amber Fort\",\"Description\":\"Amber Fort is also known as Amber fort. Amer Fort is one of the tourist attractions of Rajasthan as well as one of the famous Historical Place of India. Today in this article i will tell you a brief history of Amer Fort , what to see in Amer fort and places to see around Amer Fort. Amer Fort Is located in small town Amer of Rajasthan which is just 11kilometers away from Jaipur.Every year Too many tourists came in Amer fort to see  awesome architecture of Amer fort and beauty of Jaipur. Amer Fort is Built in 16th century by Raja Man singh. Actually before 16th century Amer was known as Dhundar and ruled by Kachhwahas. Before 16th century Amer was the capital of Rajasthan. In 16th century capital of Rajasthan is moved from Amer to Jaipur and Raja Man singh has built a fort which became famous as Amer Fort. Later on Raja Jai Singh has renovated this Amer Fort.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Amber_Fort_12995_1519624207.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":399,\"Title\":\"Dargah Sharif\",\"Description\":\"The dargah of Moinuddin Chisti, is an international waqf, an Islamic mortmain. Akbar and his queen used to come here by foot on pilgrimage from Agra every year in observance of a vow.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Dargah_Sharif_12995_1519644958.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":737,\"Title\":\"Jal Mahal\",\"Description\":\"Jal Mahal (signifying &amp;quot;Water Palace&amp;quot;) is a royal residence situated amidst the Man Sagar Lake in Jaipur city, the capital of the condition of Rajasthan, India. The royal residence and the lake around it were revamped and amplified in the eighteenth century by Maharaja Jai Singh II of Amber.&amp;quot;The Jal Mahal castle has an eye-popping makeover. Conventional vessel creators from Vrindavan have made the Rajput style wooden water crafts. A tender sprinkling of paddles on the reasonable lake waters takes you to Jal Mahal. You move past finished foyers and chambers on the principal floor to climb as far as possible up to the fragrant Chameli Bagh. Over the lake, you can see the slopes, spotted with sanctuaries and old fortresses, and on the other side, clamoring Jaipur.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9534498,\"Long\":75.8461475,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jal_Mahal_12995_1519718831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":361,\"Title\":\"Clock Tower Markets\",\"Description\":\"The area surrounding the Clock Tower bustles with locals presenting all sorts of products and services, making it the busiest and largest marketplace of Jodhpur. One can find each and every bit of material at a very cheap rate.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2389469,\"Long\":73.0243094,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1079\\/thumb\\/Clock Tower Markets_753.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":754,\"Title\":\"Jaswant Thada\",\"Description\":\"It is a cenotaph or an empty commemorative tomb built in the honour of Maharaja Jaswant Singh. This cenotaph was constructed in the year 1899 and is decorated with precious white marbles. Jaswant Thada is embedded with beautiful outlook and picturesque view of the mighty majestic Mehrangarh Fort.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2978358,\"Long\":73.0184466,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/39\\/thumb\\/Jaswant Thada_130.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":225,\"Title\":\"Boat Ride\",\"Description\":\"The 3 splendid lakes add to the beauty of udaipur and offer tourists to enjoy a great boat ride and have fun .\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.585445,\"Long\":73.712479,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5097\\/thumb\\/Boat Ride_151.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":1832,\"Title\":\"Umaid Bhawan Palace\",\"Description\":\"It is one of the largest private residences in the world.  In addition to being of utmost historical value, this attraction offers amazing encounters ranging from heritage walks to unforgettable dining experiences.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2784254,\"Long\":73.0369438,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/38\\/thumb\\/Umaid Bhawan Palace_527.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":145,\"Title\":\"Bansi Ghat\",\"Description\":\"It is a flat surfaced area made up of marble so as to provide the visitors to take a look and enjoy the beauty of the lake.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3842\\/thumb\\/Bansi Ghat_325.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":478,\"Title\":\"Eklingi Mandir\",\"Description\":\"Eklingji is believed to be the ruling deity of Mewar Princely State and the Ruler Maharana rules as his Dewan.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.7408825,\"Long\":73.7227774,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3743\\/thumb\\/Eklingi Mandir_17.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null},{\"RefSSId\":720,\"Title\":\"Jagdish Temple\",\"Description\":\"Jagdish Temple is a large Hindu temple in the middle of Udaipur in Rajasthan. A big tourist attraction, the temple was originally called the temple of Jagannath Rai but is now called Jagdish-ji. It is a major monument in Udaipur. The Jagdish Temple is raised on a tall terrace and was completed in 1651. It attaches a double-storey Mandapa (hall) to a double-storey saandhara (with a covered ambulatory) sanctum. The mandapa has another storey tucked within its pyramidal samavarna (bellroof) while the hollow clustered spire over the sanctum contains two more, nonfunctional stories.Lanes taking off from many of the sheharpanah (city wall) converge on the Jagdish Temple. It was built by Maharana Jagat Singh in 1651. It is an example of M&Auml;\\u0081ru-Gurjara Architecture.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.5796607,\"Long\":73.6839754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Jagdish_Temple_28058_1550649832.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7681,\"SupplierName\":\"Rajasthan Tours\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"220805\",\"Title\":\"Arrive in Jaipur by Flight or Train\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival by Flight \\/ Train in Jaipur. Meet &amp;amp; greet by our professional representative and transfer to the repective Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon, visit the Hawa Mahal, Observatory, Galtaji Temple and&amp;nbsp; Bapu Bazaar . Eveing, visit the famous Birla Temple.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":492665,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":492755,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":216,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":533,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1253,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220808\",\"Title\":\"In Jaipur- Full day sightseeing tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&amp;nbsp;After breakfast at the hotel, proceed for the sightseeing of Jaipur city&amp;nbsp; visiting Amber Fort, which was the ancient capital of the State. Further,&amp;nbsp; visit the Hall of Victory or the Sheesh Mahal glittering with mirrors. Ascend the Fort on Elephant back (On Own) . In the afternoon,&amp;nbsp; visit the famous City Palace and shopping in Old Pink City Bazaars.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Jaipur is the capital of India&amp;rsquo;s Rajasthan state. It evokes the royal family that once ruled the region and that, in 1727, founded what is now called the Old City, or &amp;ldquo;Pink City&amp;rdquo; for its trademark building color. At the center of its stately street grid (notable in India) stands the opulent, colonnaded City Palace complex. With gardens, courtyards and museums, part of it is still a royal residence.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Evening, visit the BirlaTemple and local Vibrant Pink City Bazaars and shopping. Overnight at Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492846,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":492665,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":492755,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":47,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":399,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":737,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220811\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220814\",\"Title\":\"Drive from Jaipur to Jodhpur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning, breakfast at the hotel. Check out and drive straight to Jodhpur (4-5 hour drive).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Arrive in Jodhpur and check in at hotel. Afternoon, visit the famous Mehrangarh Fort and Jaswant thada.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Mehrangarh Fort covers an area of 1,200 acres in Jodhpur, Rajasthan. The complex is located on a hilltop around 122 metres above the surrounding plain, and was constructed circa 1459 by Rajput ruler Rao Jodha.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Jaswant Thada is a cenotaph located in Jodhpur, in the Indian state of Rajasthan. It was built by Maharaja Sardar Singh of Jodhpur State in 1899 in memory of his father, Maharaja Jaswant Singh II, and serves as the cremation ground for the royal Rajput family of Marwar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening, enjoy the visit to the Old Jodhpur city and shopping. Overnight at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492864,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":492863,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":492865,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":361,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":754,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1113,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220817\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220820\",\"Title\":\"Morning visit the Umaid Bhawan Museum, later on, drive to Udaipur\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning, breakfast at hotel and check out. PVisit the amous UmaidnBhawan Palace Museum and later on, dive to Udaipur.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;En route, visit the famous Ranakpur Jain Temples.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Late Afternoon, arrive in Udaipur city and check in at hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening, enjoy the Boat ruise at LakePichola overlooking the City Palace&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":496606,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":492676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":492868,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":225,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1832,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220823\",\"Title\":\"In Udaipur - Full day sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning, breakfast at the hotel. Later on, proceed to visit the famous City Palace.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;City Palace, Udaipur&amp;nbsp;is a palace complex situated in the city of&amp;nbsp;Udaipur&amp;nbsp;in the Indian state of&amp;nbsp;Rajasthan. It was built over a period of nearly 400 years, with contributions from several rulers of the&amp;nbsp;Mewar&amp;nbsp;dynasty. Its construction began in 1553, started by&amp;nbsp;Maharana&amp;nbsp;Udai Singh II&amp;nbsp;of the&amp;nbsp;Sisodia&amp;nbsp;Rajput&amp;nbsp;family as he shifted his capital from the erstwhile&amp;nbsp;Chittor&amp;nbsp;to the newfound city of Udaipur.[1]&amp;nbsp;The palace is located on the east bank of&amp;nbsp;Lake Pichola&amp;nbsp;and has several palaces built within its complex.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later on, visit the Saheliyon ki Bari Gardens and Jagdish Temple.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon, visit the famous Eklingi and Nagda temples.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening, visit the local markets and Ghats and enjoy the flora &amp;amp; fauna of the Old city. or agian enjoy the Boat Ride.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":496606,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":492676,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":492868,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":145,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":225,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":359,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":478,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":720,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220826\",\"Title\":\"Departure transfer to Airport or Railway station \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning, breakfast at the hotel. Morning time at leisure or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Check out and transfer to Airport or Railway statiion to connect Flight\\/Train to onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31043\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13750.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12257,\"priceDoubleOcc\":\"13750.50\",\"priceSingleOcc\":31466.5,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"2575.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13750.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12532,\"priceDoubleOcc\":\"14162.50\",\"priceSingleOcc\":31878.5,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"2575.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14162.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":13287,\"priceDoubleOcc\":\"15295.50\",\"priceSingleOcc\":33011.5,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"2575.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15295.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":14317,\"priceDoubleOcc\":\"16840.50\",\"priceSingleOcc\":34556.5,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"2575.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16840.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":15347,\"priceDoubleOcc\":\"18385.50\",\"priceSingleOcc\":36101.5,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"2575.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18385.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":17064,\"priceDoubleOcc\":\"20960.50\",\"priceSingleOcc\":38676.5,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"2575.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20960.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":10386,\"priceDoubleOcc\":\"11639.00\",\"priceSingleOcc\":26677,\"priceExtraBed\":\"6592.00\",\"priceWithoutBed\":\"2163.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11639.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":10661,\"priceDoubleOcc\":\"12051.00\",\"priceSingleOcc\":27089,\"priceExtraBed\":\"6592.00\",\"priceWithoutBed\":\"2163.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12051.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":11279,\"priceDoubleOcc\":\"12978.00\",\"priceSingleOcc\":28016,\"priceExtraBed\":\"6592.00\",\"priceWithoutBed\":\"2163.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12978.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12171,\"priceDoubleOcc\":\"14317.00\",\"priceSingleOcc\":29355,\"priceExtraBed\":\"6592.00\",\"priceWithoutBed\":\"2163.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14317.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":13064,\"priceDoubleOcc\":\"15656.00\",\"priceSingleOcc\":30694,\"priceExtraBed\":\"6592.00\",\"priceWithoutBed\":\"2163.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15656.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":14506,\"priceDoubleOcc\":\"17819.00\",\"priceSingleOcc\":32857,\"priceExtraBed\":\"6592.00\",\"priceWithoutBed\":\"2163.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17819.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"31044\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18025.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":15793,\"priceDoubleOcc\":\"18025.00\",\"priceSingleOcc\":38934,\"priceExtraBed\":\"9270.00\",\"priceWithoutBed\":\"3914.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18025.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":16068,\"priceDoubleOcc\":\"18437.00\",\"priceSingleOcc\":39346,\"priceExtraBed\":\"9270.00\",\"priceWithoutBed\":\"3914.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18437.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":16411,\"priceDoubleOcc\":\"18952.00\",\"priceSingleOcc\":39861,\"priceExtraBed\":\"9270.00\",\"priceWithoutBed\":\"3914.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":17029,\"priceDoubleOcc\":\"19879.00\",\"priceSingleOcc\":40788,\"priceExtraBed\":\"9270.00\",\"priceWithoutBed\":\"3914.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19879.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":17922,\"priceDoubleOcc\":\"21218.00\",\"priceSingleOcc\":42127,\"priceExtraBed\":\"9270.00\",\"priceWithoutBed\":\"3914.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21218.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":19913,\"priceDoubleOcc\":\"24205.00\",\"priceSingleOcc\":45114,\"priceExtraBed\":\"9270.00\",\"priceWithoutBed\":\"3914.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24205.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":13442,\"priceDoubleOcc\":\"15347.00\",\"priceSingleOcc\":33063,\"priceExtraBed\":\"7879.50\",\"priceWithoutBed\":\"3399.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15347.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":13648,\"priceDoubleOcc\":\"15656.00\",\"priceSingleOcc\":33372,\"priceExtraBed\":\"7879.50\",\"priceWithoutBed\":\"3399.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15656.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":13922,\"priceDoubleOcc\":\"16068.00\",\"priceSingleOcc\":33784,\"priceExtraBed\":\"7879.50\",\"priceWithoutBed\":\"3399.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16068.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":14472,\"priceDoubleOcc\":\"16892.00\",\"priceSingleOcc\":34608,\"priceExtraBed\":\"7879.50\",\"priceWithoutBed\":\"3399.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16892.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":15227,\"priceDoubleOcc\":\"18025.00\",\"priceSingleOcc\":35741,\"priceExtraBed\":\"7879.50\",\"priceWithoutBed\":\"3399.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18025.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":16944,\"priceDoubleOcc\":\"20600.00\",\"priceSingleOcc\":38316,\"priceExtraBed\":\"7879.50\",\"priceWithoutBed\":\"3399.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"31045\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27449912.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":18304405,\"priceDoubleOcc\":\"27449912.00\",\"priceSingleOcc\":27477619,\"priceExtraBed\":\"11845.00\",\"priceWithoutBed\":\"6180.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27449912.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":23278,\"priceDoubleOcc\":\"28222.00\",\"priceSingleOcc\":55929,\"priceExtraBed\":\"11845.00\",\"priceWithoutBed\":\"6180.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28222.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":23690,\"priceDoubleOcc\":\"28840.00\",\"priceSingleOcc\":56547,\"priceExtraBed\":\"11845.00\",\"priceWithoutBed\":\"6180.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24205,\"priceDoubleOcc\":\"29612.50\",\"priceSingleOcc\":57319.5,\"priceExtraBed\":\"11845.00\",\"priceWithoutBed\":\"6180.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29612.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24926,\"priceDoubleOcc\":\"30694.00\",\"priceSingleOcc\":58401,\"priceExtraBed\":\"11845.00\",\"priceWithoutBed\":\"6180.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30694.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":26265,\"priceDoubleOcc\":\"32702.50\",\"priceSingleOcc\":60409.5,\"priceExtraBed\":\"11845.00\",\"priceWithoutBed\":\"6180.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32702.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":19467,\"priceDoubleOcc\":\"23278.00\",\"priceSingleOcc\":46762,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"5253.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23278.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":19948,\"priceDoubleOcc\":\"23999.00\",\"priceSingleOcc\":47483,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"5253.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23999.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20291,\"priceDoubleOcc\":\"24514.00\",\"priceSingleOcc\":47998,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"5253.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24514.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20703,\"priceDoubleOcc\":\"25132.00\",\"priceSingleOcc\":48616,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"5253.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25132.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21321,\"priceDoubleOcc\":\"26059.00\",\"priceSingleOcc\":49543,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"5253.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26059.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":22488,\"priceDoubleOcc\":\"27810.00\",\"priceSingleOcc\":51294,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"5253.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27810.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31043\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14685.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":13090,\"priceDoubleOcc\":\"14685.00\",\"priceSingleOcc\":33605,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14685.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":13383,\"priceDoubleOcc\":\"15125.00\",\"priceSingleOcc\":34045,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15125.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":14190,\"priceDoubleOcc\":\"16335.00\",\"priceSingleOcc\":35255,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16335.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":15290,\"priceDoubleOcc\":\"17985.00\",\"priceSingleOcc\":36905,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17985.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":16390,\"priceDoubleOcc\":\"19635.00\",\"priceSingleOcc\":38555,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19635.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":18223,\"priceDoubleOcc\":\"22385.00\",\"priceSingleOcc\":41305,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"2750.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22385.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":11092,\"priceDoubleOcc\":\"12430.00\",\"priceSingleOcc\":28490,\"priceExtraBed\":\"7040.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12430.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":11385,\"priceDoubleOcc\":\"12870.00\",\"priceSingleOcc\":28930,\"priceExtraBed\":\"7040.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12870.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12045,\"priceDoubleOcc\":\"13860.00\",\"priceSingleOcc\":29920,\"priceExtraBed\":\"7040.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12998,\"priceDoubleOcc\":\"15290.00\",\"priceSingleOcc\":31350,\"priceExtraBed\":\"7040.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15290.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":13952,\"priceDoubleOcc\":\"16720.00\",\"priceSingleOcc\":32780,\"priceExtraBed\":\"7040.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":15492,\"priceDoubleOcc\":\"19030.00\",\"priceSingleOcc\":35090,\"priceExtraBed\":\"7040.00\",\"priceWithoutBed\":\"12430.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19030.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"31044\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":16867,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"4180.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":17160,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":42020,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"4180.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":17527,\"priceDoubleOcc\":\"20240.00\",\"priceSingleOcc\":42570,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"4180.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":18187,\"priceDoubleOcc\":\"21230.00\",\"priceSingleOcc\":43560,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"4180.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21230.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":19140,\"priceDoubleOcc\":\"22660.00\",\"priceSingleOcc\":44990,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"4180.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"25850.00\",\"priceSingleOcc\":48180,\"priceExtraBed\":\"9900.00\",\"priceWithoutBed\":\"4180.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25850.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":14355,\"priceDoubleOcc\":\"16390.00\",\"priceSingleOcc\":35310,\"priceExtraBed\":\"8415.00\",\"priceWithoutBed\":\"16390.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16390.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":14575,\"priceDoubleOcc\":\"16720.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"8415.00\",\"priceWithoutBed\":\"16390.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":14868,\"priceDoubleOcc\":\"17160.00\",\"priceSingleOcc\":36080,\"priceExtraBed\":\"8415.00\",\"priceWithoutBed\":\"16390.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"17160.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":15455,\"priceDoubleOcc\":\"18040.00\",\"priceSingleOcc\":36960,\"priceExtraBed\":\"8415.00\",\"priceWithoutBed\":\"16390.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18040.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":16262,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":38170,\"priceExtraBed\":\"8415.00\",\"priceWithoutBed\":\"16390.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"8415.00\",\"priceWithoutBed\":\"16390.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"31045\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29315.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24310,\"priceDoubleOcc\":\"29315.00\",\"priceSingleOcc\":58905,\"priceExtraBed\":\"12650.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29315.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24860,\"priceDoubleOcc\":\"30140.00\",\"priceSingleOcc\":59730,\"priceExtraBed\":\"12650.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30140.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25300,\"priceDoubleOcc\":\"30800.00\",\"priceSingleOcc\":60390,\"priceExtraBed\":\"12650.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25850,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":61215,\"priceExtraBed\":\"12650.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31625.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":26620,\"priceDoubleOcc\":\"32780.00\",\"priceSingleOcc\":62370,\"priceExtraBed\":\"12650.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32780.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-06\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":28050,\"priceDoubleOcc\":\"34925.00\",\"priceSingleOcc\":64515,\"priceExtraBed\":\"12650.00\",\"priceWithoutBed\":\"6600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20790,\"priceDoubleOcc\":\"24860.00\",\"priceSingleOcc\":49940,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"24860.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24860.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21303,\"priceDoubleOcc\":\"25630.00\",\"priceSingleOcc\":50710,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"24860.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25630.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21670,\"priceDoubleOcc\":\"26180.00\",\"priceSingleOcc\":51260,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"24860.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26180.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":22110,\"priceDoubleOcc\":\"26840.00\",\"priceSingleOcc\":51920,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"24860.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":22770,\"priceDoubleOcc\":\"27830.00\",\"priceSingleOcc\":52910,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"24860.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":24017,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":54780,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"24860.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29700.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan ( Room + Breakfast )&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"220805\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[220805],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220808\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[220808],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220811\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[220811],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220814\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[220814],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220817\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[220817],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220820\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[220820],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220823\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[220823],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220826\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[220826],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Jaipur,Jodhpur,Udaipur','Jaipur,Rajasthan,Indian Subcontinent,North India,India,Jodhpur,Udaipur',NULL,'12995,13184,28058',11639,27449912,5,NULL,NULL,NULL,2,'',0,'2022-05-24 00:00:00','2022-09-15 00:00:00','2022-09-15 00:00:00',3,'India','101','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'royal-rajasthan-tour',NULL,NULL,NULL,0),(12,30954,1,12577,0,0,0,'Honeymoon,Family',NULL,1,1,0,'{\"package\":{\"TPId\":30954,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/kathmu__nagarkot_extravaganza_1643263846.jpg\",\"BookingValidUntill\":\"2022-09-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;04 Nights \\/ 5 Days trip to Kathmandu and Nagarkot&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":9935,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":9935,\"DestinationPlaces\":\"Kathmandu\",\"DestinationPlacesSysId\":13672,\"SourcePlaces\":\"Kathmandu\",\"SourcePlaceSysId\":13672,\"AgencyName\":\"India Now Journeys\",\"Name\":\"Kathmandu & Nagarkot Extravaganza\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7684\",\"SupplierName\":\"Journey DMC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,B\\/fast & Dinner,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2022-09-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13672,\"Title\":\"Kathmandu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491561,\"Name\":\"Hotel Tibet \",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.64894189999999\",\"Long\":\"84.10139989999999\",\"Address\":\"J4X2+HHC, Ngawal 33500, Nepal\"},\"Images\":[],\"CityId\":13672,\"Brief\":\"&lt;p&gt;Pamper yourself with a visit to the spa, which offers massages, body treatments, and facials. Additional amenities at this hotel include complimentary wireless Internet access and concierge services.Grab a bite at Himalayan Restaurant, a restaurant which features a bar\\/lounge and a garden view. You can also stay in and take advantage of the 24-hour room service.Featured amenities include a business center, express check-in, and complimentary newspapers in the lobby. Event facilities at this hotel consist of a conference center and a meeting room. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free self parking is available onsite.Make yourself at home in one of the 55 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Conveniences include phones, as well as desks and coffee\\/tea makers.A stay at Hotel Tibet places you in the heart of Kathmandu, within a 5-minute drive of Garden of Dreams and Durbar Marg. This spa hotel is 2.7 mi (4.3 km) from Kathmandu Durbar Square and 3.2 mi (5.1 km) from Pashupatinath Temple.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491561\\/9935_5cae88c7306a1ba90c6ad238cbafc5b21650627186.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":498803,\"Name\":\"Hotel Shambala\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.7416417\",\"Long\":\"85.338437\",\"Address\":\"Bansbari Rd, Kathmandu 44600, Nepal\"},\"Images\":[],\"CityId\":13672,\"Brief\":\"&lt;p&gt;Hotel Shambala is a boutique hotel located in Kathmandu. One of the holiest Buddhist sites of Kathmandu, Bodnath is 5 km from the property.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offering an outdoor swimming pool, spa and wellness centre and a sauna, Air-conditioned rooms here will provide you with a flat-screen satellite TV, seating area and a minibar. Featuring a shower, private bathrooms also come with a bath and a hairdryer.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests can enjoy a variety of Indian, Chinese, Continental and Thai specialities at Erma Restaurant while refreshing beverages are serves at the roof-top lounge, the Cafe Cloud 9.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At Hotel you will find a garden and a terrace. Other facilities offered include luggage storage and business centre. The property offers free parking.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel is 6 km from Narayanhiti Palace Museum and 4 km from Pashupatinath. The Balaju Bus Station is 3 km away while the Tribhuvan International Airport is 6 km away.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_498803\\/9935_8fd520e97266990aa9dc5c1e500aa70f1650604553.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491887,\"Name\":\"Hotel Yak & Yeti\",\"Star\":\"5.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.7116556\",\"Long\":\"85.3200951\",\"Address\":\"Durbar Marg, Kathmandu 44600, Nepal\"},\"Images\":[],\"CityId\":13672,\"Brief\":\"&lt;p&gt;The 5-star Hotel Yak &amp; Yeti is housed in a heritage palace in central Kathmandu, surrounded by antique fountains and landscaped gardens. It also has a casino, an outdoor pool, and 2 tennis courts. Parking is free.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Decorated in beautiful colour palettes, the elegant air-conditioned rooms are equipped with a cable TV and minibar. Some rooms have a personal safe and bathrobes. Certain bathrooms come with a bathtub.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Located in Durbar Marg, Hotel Yak &amp; Yeti is a 10-minute walk to the Thamel and a 15-minute drive from the city centre and Tribhuvan International Airport.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491887\\/9935_3766babf5c38dcbb0f11e35b0e17bb051650626299.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2339,\"Title\":\"Boudhanath Stupa\",\"Description\":\"Boudhanath Stupa is the largest stupa in Nepal situated in the north side of  Pashupatinath Temple. \\r\\nIts the holiest Tibetan Buddhist temple outside Tibet signifying rich in Buddhist symbolism.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.721378,\"Long\":85.3619399,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/18_1503318072.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2342,\"Title\":\"Kathmandu Durbar Square\",\"Description\":\"The Kathmandu Durbar Square  is also known as Hanuman Dhoka.The outer complexof Durbar Square is renowned for many interesting temples as Kumari Ghar  Kasthamandap  Shiv-Parbati Temple Jagannath Temple Big Bell etc while the inner complex comprises the old palace area Hanuman-dhoka and its courtyards as Nasal Choke Mul Choke Sundari Choke Basantapur Durbar and other. Besides the magnificent temples and shrines.Kathmandu Durbar Square never fails to impress first time visitors with its intricate wood carvings and rich history.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.704283,\"Long\":85.307355,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Kathmandu_Durbar_Square_13672_1518071623.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2335,\"Title\":\"Pashupatinath Temple\",\"Description\":\"Pashupatinath is the largest temple complex in Nepal stretches on both sides of the Bagmati River which is considered holy by Hindus.This Temple is dedicated to Lord Shiva which is the fourth most important religious sites in Asia for devotees of Shiva.The  temple has a gilded roof four sides covered in silver and wood carvings of the finest quality. Pashupatinath is also one of the very few living cultural heritage sites in the world.It is the centre of energy with active participation of people all times of the day every day. The big Maha Shivaratri festival in spring attracts hundreds of thousands of devotees from within Nepal and from India.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7104641,\"Long\":85.3486888,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Pashupatinath_Temple_13672_1518068971.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2359,\"Title\":\"Batsala Temple\",\"Description\":\"The stone temple of Batsala Devi has many intricate carvings. It is most famous for its bronze bell, known to local residents as &#039;the bell of barking dogs&#039; as when it is rung, all dogs in the vicinity begin barking and howling ! The colossal bell was hung by King Ranjit Malla in A. D. 1737 and was used to sound the daily curfew. It is nowadays rung every morning when the goddess Taleju is worshipped.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.6720102,\"Long\":85.428459,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3126\\/sightseeing\\/18_1503394493.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":22602,\"Title\":\"Bhaktapur\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.6710221,\"Long\":85.4298197,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/9935_1643283174.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":3354,\"Title\":\"Swayambhunath\",\"Description\":\"Swayambhunath is the most ancient of all the holy shrines located at the hilltop in Kathmandu valley.Its glittering golden spire are visible for many miles and from all sides of the valley.This sacred pilgrimage site is also home to hundreds of monkeys considered holy to Tibetan Buddhists and Hindus. Swayambhunath is a fascinating jumble of Buddhist and Hindu iconography.The 2015 earthquake failed to tumble Kathmandus best loved temple though a couple of outlying buildings crumbled in the earthquake.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7147791,\"Long\":85.2903796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Swayambhunath_13672_1518075035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2334,\"Title\":\"Sunrise in Nagarkot\",\"Description\":\"It is one of the most scenic spots in the region, renowned for its sunrise views of the Himalayas. You can see Mount Everest with its snow-topped peaks, and there is an observation tower at the very top of the village&acirc;&euro;&trade;s hills. \",\"CurrencyType\":0,\"CityId\":18869,\"CityName\":\"Nagarkot\",\"Lat\":27.7110143,\"Long\":85.5035247,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18869\\/sightseeing\\/18_1503317604.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2337,\"Title\":\"Sunset in Nagarkot \",\"Description\":\"Enjoy the dramatic sunset views of the Himalayan panorama. On a clear day, you will even see snow-capped peaks like Annapurna range, Manaslu range, Ganesh Himal range, Langtang range, Jugal range, Rolwaling range, Numbur range, and Mt. Everest. Nagarkot has become one of the most visited locations to unwind, both by locals and foreigners.\",\"CurrencyType\":0,\"CityId\":18869,\"CityName\":\"Nagarkot\",\"Lat\":27.7182947,\"Long\":85.5180056,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18869\\/sightseeing\\/18_1503317809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2360,\"Title\":\"Nyatapola Temple\",\"Description\":\"This five-storey pagoda was built by King Bhupatindra Malla in A. D. 1702. It stands on five terraces on each of which squat a pair of figures- two famous wrestlers, two elephants, two lions, two griffins and Baghini and Singhini the tiger and the lion goddesses. Each pair of figures is considered ten times stronger than the ones immediately below, while the lowest pair, the two strong men Jaya Malla and Phatta Malla, were reputedly ten times stronger than any other men. This is one of the tallest pagoda temples in Kathmandu Valley and is famous for its massive structure and subtle workmanship.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.6713377,\"Long\":85.4293415,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3126\\/sightseeing\\/18_1503394905.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null}]}},{\"CityId\":18869,\"Title\":\"Nagarkot\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491554,\"Name\":\"Nepal Country Villa\",\"Star\":\"3.00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.2281933\",\"Long\":\"83.8786109\",\"Address\":\"6VHH+7CH, Chapakot 33700, Nepal\"},\"Images\":[],\"CityId\":18869,\"Brief\":\"&lt;p&gt;Offering a restaurant that serves Indian and International delights, Hotel Country Villa is situated 2,195 m above sea level, spread in 2.51 acres of land. Free WiFi access is available in the public areas of the property.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Each room here will provide you with a satellite TV and a seating area. Featuring a shower, private bathroom also comes with free toiletries.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At Hotel Country Villa you will find a 24-hour front desk, a garden and a terrace. Other facilities offered at the property include a shared lounge, a ticket service and a tour desk. The property offers free parking.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Changu Narayan Temple is 14 km and the Bhaktapur Durbar Square is 20 km. The Kamal Binayak Bhaktapur Bus Station is 20 km and the Tribhuvan Airport is 30 km away.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491554\\/9935_97578a095b6fe53f4eff7bb490c5a0301650691769.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":498805,\"Name\":\"Hotel Country Villa\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.7263508\",\"Long\":\"85.5252773\",\"Address\":\"Naldum Road, 44812, Nepal\"},\"Images\":[],\"CityId\":18869,\"Brief\":\"&lt;p&gt;Hotel Country Villa was established in 1996 with 8 rooms, one restaurant and a bar. It indeed had a very humble beginning; yet it marked the genesis of a proud and ambitious establishment. In order to spread its wings, 8 more rooms were added in 1999. 14 deluxe rooms were added in 2003, in conjunction with one conference room with a capacity of 90 people.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It is only 28 km from the international airport. The hotel area is vastly spacious; it is spread in 2.51 acre land. It is situated at 7,200 feet from the sea level. Here, you float with the clouds and can give audience to the drama unfolding the spectacle of the sunrise and the sunset from very close.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Country Villa has about 51 well equipped and furnished rooms with all the modern amenities. The rooms are adhered to the ethos of simplicity and functionality. There are seven choices of hotel room from which guests can book according to their preferences and needs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The rooms are well equipped with the modern day amenities like air-conditioning, smoke detector, coffee maker, complimentary bathroom supplies, toiletries, an en-suite bathroom, towel, wireless internet, satellite channels, a LED flat screen television, a desk, a bedside lamp and telephone for hotel service.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_498805\\/9935_c5a53f04a443972f90b9055a1af603111650604278.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491897,\"Name\":\"Club Himalaya Nagarkot Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.7169584\",\"Long\":\"85.52050679999999\",\"Address\":\"Club Himalaya Nagarkot Resort, Nagarkot Road, 44812, Nepal\"},\"Images\":[],\"CityId\":18869,\"Brief\":\"&lt;p&gt;Sitting 2,195 m above sea level on Windy Hill, Club Himalaya Nagarkot offers 360 degree views of the Himalayas. Away from the busy city, it features a shopping arcade. There are 2 on-site restaurants and a bar, an indoor swimming pool and a spa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Featuring high ceilings and a private balcony, all the air-conditioned rooms are equipped with a cable TV and personal safe. Beautiful mountain views can be enjoyed from all rooms.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Club Himalaya, Nagarkot is a 30-minute drive from Bhaktapur, a 45-minute drive from Tribhuvan International Airport and an hour&amp;#39;s drive from Kathmandu. Taking a helicopter, it is just a 7-minutes&amp;#39; ride from Tribuhavan International Airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests can read a book in the library. For a day out, the hotel also provides a city shuttle service, car rentals and a tour desk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Restaurant Kantipur serves a selection of Nepali, Continental, Chinese and Indian cuisines. Drinks can be enjoyed at Bar Indrawati.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491897\\/9935_e58e356629eb5a369aba6f222918d7ea1650865133.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2339,\"Title\":\"Boudhanath Stupa\",\"Description\":\"Boudhanath Stupa is the largest stupa in Nepal situated in the north side of  Pashupatinath Temple. \\r\\nIts the holiest Tibetan Buddhist temple outside Tibet signifying rich in Buddhist symbolism.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.721378,\"Long\":85.3619399,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/18_1503318072.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2342,\"Title\":\"Kathmandu Durbar Square\",\"Description\":\"The Kathmandu Durbar Square  is also known as Hanuman Dhoka.The outer complexof Durbar Square is renowned for many interesting temples as Kumari Ghar  Kasthamandap  Shiv-Parbati Temple Jagannath Temple Big Bell etc while the inner complex comprises the old palace area Hanuman-dhoka and its courtyards as Nasal Choke Mul Choke Sundari Choke Basantapur Durbar and other. Besides the magnificent temples and shrines.Kathmandu Durbar Square never fails to impress first time visitors with its intricate wood carvings and rich history.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.704283,\"Long\":85.307355,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Kathmandu_Durbar_Square_13672_1518071623.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2335,\"Title\":\"Pashupatinath Temple\",\"Description\":\"Pashupatinath is the largest temple complex in Nepal stretches on both sides of the Bagmati River which is considered holy by Hindus.This Temple is dedicated to Lord Shiva which is the fourth most important religious sites in Asia for devotees of Shiva.The  temple has a gilded roof four sides covered in silver and wood carvings of the finest quality. Pashupatinath is also one of the very few living cultural heritage sites in the world.It is the centre of energy with active participation of people all times of the day every day. The big Maha Shivaratri festival in spring attracts hundreds of thousands of devotees from within Nepal and from India.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7104641,\"Long\":85.3486888,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Pashupatinath_Temple_13672_1518068971.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2359,\"Title\":\"Batsala Temple\",\"Description\":\"The stone temple of Batsala Devi has many intricate carvings. It is most famous for its bronze bell, known to local residents as &#039;the bell of barking dogs&#039; as when it is rung, all dogs in the vicinity begin barking and howling ! The colossal bell was hung by King Ranjit Malla in A. D. 1737 and was used to sound the daily curfew. It is nowadays rung every morning when the goddess Taleju is worshipped.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.6720102,\"Long\":85.428459,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3126\\/sightseeing\\/18_1503394493.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":22602,\"Title\":\"Bhaktapur\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.6710221,\"Long\":85.4298197,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/9935_1643283174.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":3354,\"Title\":\"Swayambhunath\",\"Description\":\"Swayambhunath is the most ancient of all the holy shrines located at the hilltop in Kathmandu valley.Its glittering golden spire are visible for many miles and from all sides of the valley.This sacred pilgrimage site is also home to hundreds of monkeys considered holy to Tibetan Buddhists and Hindus. Swayambhunath is a fascinating jumble of Buddhist and Hindu iconography.The 2015 earthquake failed to tumble Kathmandus best loved temple though a couple of outlying buildings crumbled in the earthquake.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7147791,\"Long\":85.2903796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Swayambhunath_13672_1518075035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2334,\"Title\":\"Sunrise in Nagarkot\",\"Description\":\"It is one of the most scenic spots in the region, renowned for its sunrise views of the Himalayas. You can see Mount Everest with its snow-topped peaks, and there is an observation tower at the very top of the village&acirc;&euro;&trade;s hills. \",\"CurrencyType\":0,\"CityId\":18869,\"CityName\":\"Nagarkot\",\"Lat\":27.7110143,\"Long\":85.5035247,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18869\\/sightseeing\\/18_1503317604.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2337,\"Title\":\"Sunset in Nagarkot \",\"Description\":\"Enjoy the dramatic sunset views of the Himalayan panorama. On a clear day, you will even see snow-capped peaks like Annapurna range, Manaslu range, Ganesh Himal range, Langtang range, Jugal range, Rolwaling range, Numbur range, and Mt. Everest. Nagarkot has become one of the most visited locations to unwind, both by locals and foreigners.\",\"CurrencyType\":0,\"CityId\":18869,\"CityName\":\"Nagarkot\",\"Lat\":27.7182947,\"Long\":85.5180056,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18869\\/sightseeing\\/18_1503317809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2360,\"Title\":\"Nyatapola Temple\",\"Description\":\"This five-storey pagoda was built by King Bhupatindra Malla in A. D. 1702. It stands on five terraces on each of which squat a pair of figures- two famous wrestlers, two elephants, two lions, two griffins and Baghini and Singhini the tiger and the lion goddesses. Each pair of figures is considered ten times stronger than the ones immediately below, while the lowest pair, the two strong men Jaya Malla and Phatta Malla, were reputedly ten times stronger than any other men. This is one of the tallest pagoda temples in Kathmandu Valley and is famous for its massive structure and subtle workmanship.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.6713377,\"Long\":85.4293415,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/3126\\/sightseeing\\/18_1503394905.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"220122\",\"Title\":\"Arrive in Kathmandu\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arriving at Tribhuvan International Airport, you will be met and assisted by our airport representative. After the immigration formalities, you will be transferred to the hotel as booked.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491561,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":498803,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220125\",\"Title\":\"In Kathmandu-Sightseeing tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&amp;nbsp;After breakfast,&amp;nbsp;you will be taken for a sightseeing to experience the true Hindu culture of Nepal. You will also come across a famous deity known as Pashupatinath, the Lord of animals,.&amp;nbsp; This is the place where holy sadhus are seen walking around and that gives a sense of spiritual contentment regarding renunciation of the materialistic world. Life is like a bird in a cage longing for vast air. It&amp;nbsp;is the famous and sacred&amp;nbsp;Hindu temple&amp;nbsp;dedicated to&amp;nbsp;Shiva, the God of destruction and is located on the banks of the&amp;nbsp;Bagmati River, 5 kilometers north-east of&amp;nbsp;Kathmandu Valley&amp;nbsp;in the eastern city of Kathmandu&amp;nbsp;the&amp;nbsp;capital&amp;nbsp;of&amp;nbsp;Nepal. This temple is considered one of the sacred temples of&amp;nbsp;Hindu&amp;nbsp;faith .The temple serves as the seat of the national deity, Lord Pashupatinath. This temple complex is on&amp;nbsp;UNESCO World Heritage Site&amp;rsquo;s list since 1979.&amp;nbsp;This &amp;quot;extensive Hindu temple precinct&amp;quot; is a &amp;quot;sprawling collection of temples, ashrams, images and inscriptions raised over the centuries along the banks of the sacred river&amp;quot;.We then continue our sightseeing to the holiest shrine, Boudhanath, an astronomical in size. This is the place where all devout Buddhists come for a pilgrimage&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491561,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":498803,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2339,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2342,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2335,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220128\",\"Title\":\"In Kathmandu- Sightseeing tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&amp;nbsp;After your good morning breakfast, you will be taken for sightseeing to Patan,known as&amp;nbsp;Lalitpur, the city of fine arts and beauty. It is separated from Kathmandu by the Bagmati River and is the second largest town in the valley. Lalitpur is fragmented from other cities due to its substantive architectural ancient masterpieces. Patan&amp;#39;s central Durbar Square is absolutely packed with temples: It&amp;rsquo;s an architectural center point with a far greater concentration of temples per sq. meter than in Kathamandu or Bhaktapur. Within the city also lies the Tibetan refugee center, home to most of the valley&amp;#39;s Tibetan population.&amp;nbsp; Technically speaking, Tibetan refugees are some of the wealthiest people in the valley because of the carpet industry they operate.&amp;nbsp; For those looking to bring home a fine Tibetan carpet, this is appropriate place to shop. You will then go to Swayambhunath the golden spire of the 5th-century stupa is adorned with a colorful fluttering of prayer flags; it crowns a hill overlooking the Kathmandu Valley and offers fantastic views over the city of Kathmandu. It is one of the most recognizable symbols of Nepal and the painted eyes of Buddha watch all who ascends 365 stone steps as like the stairway to heaven. Local people believe that a person who has committed sins will not able to make it to the top.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491561,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":498803,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2359,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22602,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3354,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220131\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220134\",\"Title\":\"Transfer from Kathmandu to Nagarkot\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out and&amp;nbsp;Drive to Nagarkot situated 35 kilometers east of Kathmandu which takes around one and half hour. Nagarkot lies on an altitude of 2,175 meters. The panoramic view of the major peaks including Mt. Everest can be seen from here. This place is also famous for viewing sunrise and sunset. Spend overnight at the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On the way to Nagarkot you will be taken to the city of Bhaktapurfor sightseeingwhich is known as &amp;ldquo;City of Devotees&amp;rdquo;. Perhaps the least changed of all the cities in the Kathmandu Valley, with a distinct medieval feel, you will have a different feeling once you reach there.&amp;nbsp; Pottery and weaving are still traditional industries here. Architectural wonders abound, including the Palace of Fifty Five Windows, Golden Gate and the magnificent five-storied pagoda-style Nyatapola Temple.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18869,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":498805,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491897,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2334,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2337,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2360,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220137\",\"Title\":\"Check out and  transfer to Kathmandu Airport.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, check out and drive straight to the airport which takes approximately 1.5 hour to board the flight for onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18869,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30954\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11227.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":9476,\"priceDoubleOcc\":\"11227.00\",\"priceSingleOcc\":17304,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11227.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":9682,\"priceDoubleOcc\":\"11536.00\",\"priceSingleOcc\":17613,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11536.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":9957,\"priceDoubleOcc\":\"11948.00\",\"priceSingleOcc\":18025,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11948.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":10231,\"priceDoubleOcc\":\"12360.00\",\"priceSingleOcc\":18437,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12360.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12017,\"priceDoubleOcc\":\"15038.00\",\"priceSingleOcc\":21115,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15038.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12106,\"priceDoubleOcc\":\"15171.90\",\"priceSingleOcc\":21248.9,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15171.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":9476,\"priceDoubleOcc\":\"11227.00\",\"priceSingleOcc\":17304,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11227.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":9682,\"priceDoubleOcc\":\"11536.00\",\"priceSingleOcc\":17613,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11536.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":9957,\"priceDoubleOcc\":\"11948.00\",\"priceSingleOcc\":18025,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11948.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":10231,\"priceDoubleOcc\":\"12360.00\",\"priceSingleOcc\":18437,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12360.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12017,\"priceDoubleOcc\":\"15038.00\",\"priceSingleOcc\":21115,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15038.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12106,\"priceDoubleOcc\":\"15171.90\",\"priceSingleOcc\":21248.9,\"priceExtraBed\":\"5150.00\",\"priceWithoutBed\":\"2884.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15171.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30955\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14420.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":11845,\"priceDoubleOcc\":\"14420.00\",\"priceSingleOcc\":22660,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14420.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12120,\"priceDoubleOcc\":\"14832.00\",\"priceSingleOcc\":23072,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14832.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12394,\"priceDoubleOcc\":\"15244.00\",\"priceSingleOcc\":23484,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15244.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12738,\"priceDoubleOcc\":\"15759.00\",\"priceSingleOcc\":23999,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15759.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":14248,\"priceDoubleOcc\":\"18025.00\",\"priceSingleOcc\":26265,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18025.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":14523,\"priceDoubleOcc\":\"18437.00\",\"priceSingleOcc\":26677,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18437.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":11845,\"priceDoubleOcc\":\"14420.00\",\"priceSingleOcc\":22660,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14420.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12120,\"priceDoubleOcc\":\"14832.00\",\"priceSingleOcc\":23072,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"14832.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12394,\"priceDoubleOcc\":\"15244.00\",\"priceSingleOcc\":23484,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15244.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12738,\"priceDoubleOcc\":\"15759.00\",\"priceSingleOcc\":23999,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15759.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":14248,\"priceDoubleOcc\":\"18025.00\",\"priceSingleOcc\":26265,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18025.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":14523,\"priceDoubleOcc\":\"18437.00\",\"priceSingleOcc\":26677,\"priceExtraBed\":\"5665.00\",\"priceWithoutBed\":\"3605.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18437.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"30956\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18540.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":15278,\"priceDoubleOcc\":\"18540.00\",\"priceSingleOcc\":30858.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":15553,\"priceDoubleOcc\":\"18952.00\",\"priceSingleOcc\":31270.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":15828,\"priceDoubleOcc\":\"19364.00\",\"priceSingleOcc\":31682.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19364.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":16171,\"priceDoubleOcc\":\"19879.00\",\"priceSingleOcc\":32197.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19879.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":17750,\"priceDoubleOcc\":\"22248.00\",\"priceSingleOcc\":34566.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22248.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":18025,\"priceDoubleOcc\":\"22660.00\",\"priceSingleOcc\":34978.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":15278,\"priceDoubleOcc\":\"18540.00\",\"priceSingleOcc\":30858.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18540.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":15553,\"priceDoubleOcc\":\"18952.00\",\"priceSingleOcc\":31270.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":15828,\"priceDoubleOcc\":\"19364.00\",\"priceSingleOcc\":31682.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19364.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":16171,\"priceDoubleOcc\":\"19879.00\",\"priceSingleOcc\":32197.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19879.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":17750,\"priceDoubleOcc\":\"22248.00\",\"priceSingleOcc\":34566.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22248.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":18025,\"priceDoubleOcc\":\"22660.00\",\"priceSingleOcc\":34978.8,\"priceExtraBed\":\"7725.00\",\"priceWithoutBed\":\"4429.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22660.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30954\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11990.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":10120,\"priceDoubleOcc\":\"11990.00\",\"priceSingleOcc\":18480,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11990.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":10340,\"priceDoubleOcc\":\"12320.00\",\"priceSingleOcc\":18810,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":10633,\"priceDoubleOcc\":\"12760.00\",\"priceSingleOcc\":19250,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":10927,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":19690,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12833,\"priceDoubleOcc\":\"16060.00\",\"priceSingleOcc\":22550,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16060.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12929,\"priceDoubleOcc\":\"16203.00\",\"priceSingleOcc\":22693,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16203.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":10120,\"priceDoubleOcc\":\"11990.00\",\"priceSingleOcc\":18480,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"11990.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":10340,\"priceDoubleOcc\":\"12320.00\",\"priceSingleOcc\":18810,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":10633,\"priceDoubleOcc\":\"12760.00\",\"priceSingleOcc\":19250,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"12760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":10927,\"priceDoubleOcc\":\"13200.00\",\"priceSingleOcc\":19690,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"13200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12833,\"priceDoubleOcc\":\"16060.00\",\"priceSingleOcc\":22550,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16060.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12929,\"priceDoubleOcc\":\"16203.00\",\"priceSingleOcc\":22693,\"priceExtraBed\":\"5500.00\",\"priceWithoutBed\":\"3080.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16203.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30955\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12650,\"priceDoubleOcc\":\"15400.00\",\"priceSingleOcc\":24200,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":12943,\"priceDoubleOcc\":\"15840.00\",\"priceSingleOcc\":24640,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":13237,\"priceDoubleOcc\":\"16280.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":13603,\"priceDoubleOcc\":\"16830.00\",\"priceSingleOcc\":25630,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":15217,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":28050,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":15510,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":28490,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"3850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12650,\"priceDoubleOcc\":\"15400.00\",\"priceSingleOcc\":24200,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"15400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":12943,\"priceDoubleOcc\":\"15840.00\",\"priceSingleOcc\":24640,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"15400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"15840.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":13237,\"priceDoubleOcc\":\"16280.00\",\"priceSingleOcc\":25080,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"15400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":13603,\"priceDoubleOcc\":\"16830.00\",\"priceSingleOcc\":25630,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"15400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":15217,\"priceDoubleOcc\":\"19250.00\",\"priceSingleOcc\":28050,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"15400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19250.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":15510,\"priceDoubleOcc\":\"19690.00\",\"priceSingleOcc\":28490,\"priceExtraBed\":\"6050.00\",\"priceWithoutBed\":\"15400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19690.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"30956\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":16317,\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":32956,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"4730.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":16610,\"priceDoubleOcc\":\"20240.00\",\"priceSingleOcc\":33396,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"4730.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"20680.00\",\"priceSingleOcc\":33836,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"4730.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20680.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":17270,\"priceDoubleOcc\":\"21230.00\",\"priceSingleOcc\":34386,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"4730.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21230.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":18957,\"priceDoubleOcc\":\"23760.00\",\"priceSingleOcc\":36916,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"4730.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-04\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":19250,\"priceDoubleOcc\":\"24200.00\",\"priceSingleOcc\":37356,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"4730.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":16317,\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":32956,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"19800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":16610,\"priceDoubleOcc\":\"20240.00\",\"priceSingleOcc\":33396,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":16903,\"priceDoubleOcc\":\"20680.00\",\"priceSingleOcc\":33836,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20680.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":17270,\"priceDoubleOcc\":\"21230.00\",\"priceSingleOcc\":34386,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21230.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":18957,\"priceDoubleOcc\":\"23760.00\",\"priceSingleOcc\":36916,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23760.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":19250,\"priceDoubleOcc\":\"24200.00\",\"priceSingleOcc\":37356,\"priceExtraBed\":\"8250.00\",\"priceWithoutBed\":\"19800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"220122\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[220122],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220125\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[220125],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220128\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[220128],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220131\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[220131],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220134\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[220134],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220137\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[220137],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Kathmandu,Nagarkot','Kathmandu,Indian Subcontinent,Nepal,Nagarkot,Patan',NULL,'13672,18869',11227,24200,4,NULL,NULL,NULL,2,'',0,'2022-05-24 00:00:00','2022-09-15 00:00:00','2022-09-15 00:00:00',3,'Nepal','153','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kathmandu-nagarkot-extravaganza',NULL,NULL,NULL,0),(13,30894,1,12577,0,0,0,'Adventure,Family',NULL,1,1,0,'{\"package\":{\"TPId\":30894,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/grnepal_with_wildlife_1643103739.jpg\",\"BookingValidUntill\":\"2022-09-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;05 Nights\\/ 06 Days tour of Kathmandu and Chitwan National Park&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":9935,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":9935,\"DestinationPlaces\":\"Kathmandu\",\"DestinationPlacesSysId\":13672,\"SourcePlaces\":\"Kathmandu\",\"SourcePlaceSysId\":13672,\"AgencyName\":\"India Now Journeys\",\"Name\":\"Grand Nepal with Wildlife\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"7684\",\"SupplierName\":\"Journey DMC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Adventure,Family\",\"Validity\":{\"From\":\"2022-05-24\",\"To\":\"2022-09-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13672,\"Title\":\"Kathmandu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491561,\"Name\":\"Hotel Tibet \",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.64894189999999\",\"Long\":\"84.10139989999999\",\"Address\":\"J4X2+HHC, Ngawal 33500, Nepal\"},\"Images\":[],\"CityId\":13672,\"Brief\":\"&lt;p&gt;Pamper yourself with a visit to the spa, which offers massages, body treatments, and facials. Additional amenities at this hotel include complimentary wireless Internet access and concierge services.Grab a bite at Himalayan Restaurant, a restaurant which features a bar\\/lounge and a garden view. You can also stay in and take advantage of the 24-hour room service.Featured amenities include a business center, express check-in, and complimentary newspapers in the lobby. Event facilities at this hotel consist of a conference center and a meeting room. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free self parking is available onsite.Make yourself at home in one of the 55 guestrooms. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Conveniences include phones, as well as desks and coffee\\/tea makers.A stay at Hotel Tibet places you in the heart of Kathmandu, within a 5-minute drive of Garden of Dreams and Durbar Marg. This spa hotel is 2.7 mi (4.3 km) from Kathmandu Durbar Square and 3.2 mi (5.1 km) from Pashupatinath Temple.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491561\\/9935_5cae88c7306a1ba90c6ad238cbafc5b21650627186.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":498803,\"Name\":\"Hotel Shambala\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.7416417\",\"Long\":\"85.338437\",\"Address\":\"Bansbari Rd, Kathmandu 44600, Nepal\"},\"Images\":[],\"CityId\":13672,\"Brief\":\"&lt;p&gt;Hotel Shambala is a boutique hotel located in Kathmandu. One of the holiest Buddhist sites of Kathmandu, Bodnath is 5 km from the property.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Offering an outdoor swimming pool, spa and wellness centre and a sauna, Air-conditioned rooms here will provide you with a flat-screen satellite TV, seating area and a minibar. Featuring a shower, private bathrooms also come with a bath and a hairdryer.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guests can enjoy a variety of Indian, Chinese, Continental and Thai specialities at Erma Restaurant while refreshing beverages are serves at the roof-top lounge, the Cafe Cloud 9.&nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At Hotel you will find a garden and a terrace. Other facilities offered include luggage storage and business centre. The property offers free parking.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The hotel is 6 km from Narayanhiti Palace Museum and 4 km from Pashupatinath. The Balaju Bus Station is 3 km away while the Tribhuvan International Airport is 6 km away.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&nbsp;&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_498803\\/9935_8fd520e97266990aa9dc5c1e500aa70f1650604553.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":491887,\"Name\":\"Hotel Yak & Yeti\",\"Star\":\"5.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.7116556\",\"Long\":\"85.3200951\",\"Address\":\"Durbar Marg, Kathmandu 44600, Nepal\"},\"Images\":[],\"CityId\":13672,\"Brief\":\"&lt;p&gt;The 5-star Hotel Yak &amp; Yeti is housed in a heritage palace in central Kathmandu, surrounded by antique fountains and landscaped gardens. It also has a casino, an outdoor pool, and 2 tennis courts. Parking is free.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Decorated in beautiful colour palettes, the elegant air-conditioned rooms are equipped with a cable TV and minibar. Some rooms have a personal safe and bathrobes. Certain bathrooms come with a bathtub.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Located in Durbar Marg, Hotel Yak &amp; Yeti is a 10-minute walk to the Thamel and a 15-minute drive from the city centre and Tribhuvan International Airport.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491887\\/9935_3766babf5c38dcbb0f11e35b0e17bb051650626299.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2339,\"Title\":\"Boudhanath Stupa\",\"Description\":\"Boudhanath Stupa is the largest stupa in Nepal situated in the north side of  Pashupatinath Temple. \\r\\nIts the holiest Tibetan Buddhist temple outside Tibet signifying rich in Buddhist symbolism.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.721378,\"Long\":85.3619399,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/18_1503318072.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2342,\"Title\":\"Kathmandu Durbar Square\",\"Description\":\"The Kathmandu Durbar Square  is also known as Hanuman Dhoka.The outer complexof Durbar Square is renowned for many interesting temples as Kumari Ghar  Kasthamandap  Shiv-Parbati Temple Jagannath Temple Big Bell etc while the inner complex comprises the old palace area Hanuman-dhoka and its courtyards as Nasal Choke Mul Choke Sundari Choke Basantapur Durbar and other. Besides the magnificent temples and shrines.Kathmandu Durbar Square never fails to impress first time visitors with its intricate wood carvings and rich history.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.704283,\"Long\":85.307355,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Kathmandu_Durbar_Square_13672_1518071623.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2335,\"Title\":\"Pashupatinath Temple\",\"Description\":\"Pashupatinath is the largest temple complex in Nepal stretches on both sides of the Bagmati River which is considered holy by Hindus.This Temple is dedicated to Lord Shiva which is the fourth most important religious sites in Asia for devotees of Shiva.The  temple has a gilded roof four sides covered in silver and wood carvings of the finest quality. Pashupatinath is also one of the very few living cultural heritage sites in the world.It is the centre of energy with active participation of people all times of the day every day. The big Maha Shivaratri festival in spring attracts hundreds of thousands of devotees from within Nepal and from India.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7104641,\"Long\":85.3486888,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Pashupatinath_Temple_13672_1518068971.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":3354,\"Title\":\"Swayambhunath\",\"Description\":\"Swayambhunath is the most ancient of all the holy shrines located at the hilltop in Kathmandu valley.Its glittering golden spire are visible for many miles and from all sides of the valley.This sacred pilgrimage site is also home to hundreds of monkeys considered holy to Tibetan Buddhists and Hindus. Swayambhunath is a fascinating jumble of Buddhist and Hindu iconography.The 2015 earthquake failed to tumble Kathmandus best loved temple though a couple of outlying buildings crumbled in the earthquake.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7147791,\"Long\":85.2903796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Swayambhunath_13672_1518075035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":8331,\"Title\":\"Chitwan National Park\",\"Description\":\"Chitwan National Park is a preserved area in the Terai Lowlands of south-central Nepal, known for its biodiversity. Its dense forests and grassy plains are home to rare mammals like one-horned rhinos and Bengal tigers. The park shelters numerous bird species, including the giant hornbill. Dugout canoes traverse the northern Rapti River, home to crocodiles. Inside the park is Balmiki Ashram, a Hindu pilgrimage site.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/Chitwan_National_Park_6194_1548659024.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2344,\"Title\":\"Elephant Safari\",\"Description\":\"You have a chance to spot a one-horned rhinoceros, Royal Bengal tigers, majestic elephants, crocodiles, rhesus monkeys, grey langur, deer, leopards, python, brilliantly colored birds and much more varieties of mammals, birds, reptiles and water animals.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":-8.391231,\"Long\":115.283967,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503319480.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2349,\"Title\":\"Jungle Walk \",\"Description\":\"Jungle walk is one the adventurous and entertaining activity of Sauraha. One can walk through dense forest around the natural habitat of the wild animals during the jungle walk.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":23.8196342,\"Long\":86.4684159,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503320551.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null}]}},{\"CityId\":6194,\"Title\":\"Chitwan\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491700,\"Name\":\"Chitwan Adventure Resort\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.5857403\",\"Long\":\"84.4921919\",\"Address\":\"Forest Road 00977, Ratnanagar 00977, Nepal\"},\"Images\":[],\"CityId\":6194,\"Brief\":\"&lt;p&gt;At Chitwan Adventure Resort, enjoy a satisfying meal at the restaurant. Wrap up your day with a drink at the bar\\/lounge. A complimentary buffet breakfast is included.Featured amenities include a computer station, complimentary newspapers in the lobby, and multilingual staff.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Take in the views from a terrace and a garden and make use of amenities such as complimentary wireless Internet access. This hotel also features tour\\/ticket assistance and a picnic area. Within a 5-minute drive of Chitwan National Park. This hotel is 25.9 mi (41.7 km) from CG Temple and 3.9 mi (6.3 km) from Tharu Cultural Museum.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491700\\/9935_cce111253cda42177bffa3ce24d51ddf1650613786.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":491701,\"Name\":\"Jungle Villa Resort\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.55942599999999\",\"Long\":\"84.338049\",\"Address\":\"Patihani 2, Chitwan, Nepal, Patihani Chitwan 44200, Nepal\"},\"Images\":[],\"CityId\":6194,\"Brief\":\"&lt;p&gt;Jungle Villa Resort has a restaurant, outdoor swimming pool, a bar and garden in Khargauli. Boasting family rooms, this property also provides guests with a sun terrace. There is a children&amp;#39;s playground and guests can make use of free WiFi and free private parking.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All rooms at the resort come with air conditioning, a seating area, a flat-screen TV with cable channels, a safety deposit box and a private bathroom with a shower, slippers and a hairdryer. At Jungle Villa Resort the rooms come with bed linen and towels.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Continental and buffet breakfast options are available each morning at the accommodation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Staff at Jungle Villa Resort are always available to provide advice at the reception.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Chitwan is 32 km from the resort, while Sauraha is 15 km from the property.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491701\\/9935_4a696fd4c980bf00d97cb025a7b246c21650612856.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"HB\"},{\"RefHotelId\":491702,\"Name\":\"Patihani Resort\",\"Star\":\"5.00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.5653867\",\"Long\":\"84.3482672\",\"Address\":\"Patihani, Bharatpur 12486, Nepal\"},\"Images\":[],\"CityId\":6194,\"Brief\":\"&lt;p&gt;The resort located nearby the Rapti River in Bharatpur Metropolis-22 is of five-star rating. The Resort has seven highly-equipped villas. The villas have been built in a way the Heads of the States can be accommodated while hosting the South Asian Association for Regional Cooperation (SAARC) Summit. &ldquo;The well-facilitated villas are fully modern and safe&rdquo;,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Resort has 52 rooms, four big halls and well-appointed bar. A separate building has been arranged for casino. Likewise, park and swimming pools have been managed for party. The Resort is stretched over five bighas and 10 kattha land. The Resort is located nearby the main office of the Chitwan National Park.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491702\\/9935_aa60deca0bbb3d7687926569c373c1061650707637.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"HB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2339,\"Title\":\"Boudhanath Stupa\",\"Description\":\"Boudhanath Stupa is the largest stupa in Nepal situated in the north side of  Pashupatinath Temple. \\r\\nIts the holiest Tibetan Buddhist temple outside Tibet signifying rich in Buddhist symbolism.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.721378,\"Long\":85.3619399,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/18_1503318072.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2342,\"Title\":\"Kathmandu Durbar Square\",\"Description\":\"The Kathmandu Durbar Square  is also known as Hanuman Dhoka.The outer complexof Durbar Square is renowned for many interesting temples as Kumari Ghar  Kasthamandap  Shiv-Parbati Temple Jagannath Temple Big Bell etc while the inner complex comprises the old palace area Hanuman-dhoka and its courtyards as Nasal Choke Mul Choke Sundari Choke Basantapur Durbar and other. Besides the magnificent temples and shrines.Kathmandu Durbar Square never fails to impress first time visitors with its intricate wood carvings and rich history.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.704283,\"Long\":85.307355,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Kathmandu_Durbar_Square_13672_1518071623.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2335,\"Title\":\"Pashupatinath Temple\",\"Description\":\"Pashupatinath is the largest temple complex in Nepal stretches on both sides of the Bagmati River which is considered holy by Hindus.This Temple is dedicated to Lord Shiva which is the fourth most important religious sites in Asia for devotees of Shiva.The  temple has a gilded roof four sides covered in silver and wood carvings of the finest quality. Pashupatinath is also one of the very few living cultural heritage sites in the world.It is the centre of energy with active participation of people all times of the day every day. The big Maha Shivaratri festival in spring attracts hundreds of thousands of devotees from within Nepal and from India.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7104641,\"Long\":85.3486888,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Pashupatinath_Temple_13672_1518068971.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":3354,\"Title\":\"Swayambhunath\",\"Description\":\"Swayambhunath is the most ancient of all the holy shrines located at the hilltop in Kathmandu valley.Its glittering golden spire are visible for many miles and from all sides of the valley.This sacred pilgrimage site is also home to hundreds of monkeys considered holy to Tibetan Buddhists and Hindus. Swayambhunath is a fascinating jumble of Buddhist and Hindu iconography.The 2015 earthquake failed to tumble Kathmandus best loved temple though a couple of outlying buildings crumbled in the earthquake.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7147791,\"Long\":85.2903796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Swayambhunath_13672_1518075035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":8331,\"Title\":\"Chitwan National Park\",\"Description\":\"Chitwan National Park is a preserved area in the Terai Lowlands of south-central Nepal, known for its biodiversity. Its dense forests and grassy plains are home to rare mammals like one-horned rhinos and Bengal tigers. The park shelters numerous bird species, including the giant hornbill. Dugout canoes traverse the northern Rapti River, home to crocodiles. Inside the park is Balmiki Ashram, a Hindu pilgrimage site.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/Chitwan_National_Park_6194_1548659024.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2344,\"Title\":\"Elephant Safari\",\"Description\":\"You have a chance to spot a one-horned rhinoceros, Royal Bengal tigers, majestic elephants, crocodiles, rhesus monkeys, grey langur, deer, leopards, python, brilliantly colored birds and much more varieties of mammals, birds, reptiles and water animals.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":-8.391231,\"Long\":115.283967,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503319480.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null},{\"RefSSId\":2349,\"Title\":\"Jungle Walk \",\"Description\":\"Jungle walk is one the adventurous and entertaining activity of Sauraha. One can walk through dense forest around the natural habitat of the wild animals during the jungle walk.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":23.8196342,\"Long\":86.4684159,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503320551.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":7684,\"SupplierName\":\"Journey DMC\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"219599\",\"Title\":\"Arrive in Kathmandu\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&amp;nbsp;Upon arriving at Tribhuvan International Airport, you will be met and assisted by our airport representative. After the immigration formalities, you will be transferred to the hotel as booked.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Kathmandu is the capital of Nepal. It is the political as well as cultural heart of the Kingdom also known as the living history. The urban sprawl that makes up modern Kathmandu is in fact: three cities: Patan, Kathmandu and Bhaktapur&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491561,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":498803,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219602\",\"Title\":\"In Kathmandu-Sightseeing tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After breakfast, Visit Pashupatinath temple in the morning ..&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pashupatinath Temple: The magnificent Pashupatinath temple with its astonishing architectural beauty is situated on the bank of the sacred Bagmati River. Dedicated to the Hindu God of Destruction, Lord Shiva, this temple is regarded as the most scared of all Lord Shiva temples. Listed as a UNESCO World Heritage Site, the temple comprises of a richly ornamented pagoda that houses the sacred linga or phallic symbol of Lord Shiva..&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afterwards,VisitBoudhanathStupa,andPatan durbar square.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Patan also known as Lalitpur is the city of artisans and a paradise of fine arts. It is home to Kathmandu Valley&amp;rsquo;s finest craftsmen who have preserved such ancient techniques and lost wax process used to produce exquisite sculptures. Best known for its cultural heritage, the city retains much of its old charm with its narrow streets, brick houses and multitude of well-preserved Hindu temples, Buddhist monasteries (vihars) and monuments. In the heart of Patan, amidst the hustle and bustle of the marketplace is the Patan Durbar Square, a UNESCO World Heritage Site. Exquisite works of religious art and architecture, ancient palaces, pagoda temples, Hindu and Buddhist shrines adorn this place. Located in the square is the Patan Museum, formerly a Malla palace, which houses bronze statues and religious objects, some dating back to the 11th century.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In afternoon visit the biggest Stupa in the world BoudhanathStupa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;BoudhanathStupa is one of the most imposing landmarks of Kathmandu and is a center of Tibetan Buddhism. The stupa is built on a massive three level mandala style platform and is 36 meters (118 feet) in height. The base of the stupa is adorned with 108 small images of the DhyaniAmitabha Buddha and inset with prayer wheels. Thousands of pilgrims circle the stupa in a clockwise direction each day spinning the prayer wheels. It is said that each spin of a prayer wheel is the equivalent of reciting the mantra. The stupa&amp;rsquo;s massive mandala makes it one of the largest spherical stupas in Nepal. The ancient stupa is one of the largest in the world. It is a UNESCO World Heritage Site.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491561,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":498803,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2339,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2342,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2335,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3354,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219605\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219608\",\"Title\":\"Check out and depart to Chitwan Park\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;&amp;nbsp;After breakast, check ouot.&amp;nbsp;Drive to Chitwan is 175 Km from Kathmandu and takes approximately 05 hours..&amp;nbsp; Less than 60 miles south of the Great Himalayan Range in Nepal&amp;#39;s sub-tropical Terai lowlands (600 ft), Chitwan is one of Asia&amp;#39;s premier wildlife reserves.&amp;nbsp; It is 360 square miles of tall grasslands and forests are home to a wide variety of mammals and birds, including several endangered species.&amp;nbsp; The park is very famous for Bengal Tiger, rare Gharial and Marsh Mugger crocodile and a large population of Asian rhinoceros.&amp;nbsp; Spend overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491700,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491701,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491702,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"HB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219611\",\"Title\":\"In Chitwan\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;&amp;nbsp;Jungle observation at Chitwan National park. The highlight being the Safari in the jungles. Other activities are Canoeing, Dugout canoe, Nature Walk and Bird Watching.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Morning and Afternoon, visit to the Jungle safari.. Overnight&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491700,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":491701,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491702,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"FB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8331,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2344,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2349,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219614\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219617\",\"Title\":\"Check out and drive to Kathmandu\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, check out and&amp;nbsp;Drive back to Kathmandu retracing the same path &amp;amp; transfer to hotel. The rest of the day is leisure. One can indulge in shopping or visit casino to try the luck.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491561,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":498803,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":491887,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"219620\",\"Title\":\"Check out and transfer to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast at leisure. Later on, check out and transfer to Airport to connect flight to onward destination.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30894\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22402.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":18986,\"priceDoubleOcc\":\"22402.50\",\"priceSingleOcc\":32692.2,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":19261,\"priceDoubleOcc\":\"22814.50\",\"priceSingleOcc\":33104.2,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22814.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":19501,\"priceDoubleOcc\":\"23175.00\",\"priceSingleOcc\":33464.7,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23175.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":19707,\"priceDoubleOcc\":\"23484.00\",\"priceSingleOcc\":33773.7,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23484.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":19996,\"priceDoubleOcc\":\"23916.60\",\"priceSingleOcc\":34206.3,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23916.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20284,\"priceDoubleOcc\":\"24349.20\",\"priceSingleOcc\":34638.9,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24349.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":18986,\"priceDoubleOcc\":\"22402.50\",\"priceSingleOcc\":32692.2,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22402.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":19261,\"priceDoubleOcc\":\"22814.50\",\"priceSingleOcc\":33104.2,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"22814.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":19501,\"priceDoubleOcc\":\"23175.00\",\"priceSingleOcc\":33464.7,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23175.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":19707,\"priceDoubleOcc\":\"23484.00\",\"priceSingleOcc\":33773.7,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23484.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":19996,\"priceDoubleOcc\":\"23916.60\",\"priceSingleOcc\":34206.3,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23916.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20284,\"priceDoubleOcc\":\"24349.20\",\"priceSingleOcc\":34638.9,\"priceExtraBed\":\"10094.00\",\"priceWithoutBed\":\"6386.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24349.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30895\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23072.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":19913,\"priceDoubleOcc\":\"23072.00\",\"priceSingleOcc\":34196,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23072.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20188,\"priceDoubleOcc\":\"23484.00\",\"priceSingleOcc\":34608,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23484.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20531,\"priceDoubleOcc\":\"23999.00\",\"priceSingleOcc\":35123,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23999.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21012,\"priceDoubleOcc\":\"24720.00\",\"priceSingleOcc\":35844,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21561,\"priceDoubleOcc\":\"25544.00\",\"priceSingleOcc\":36668,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25544.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22214,\"priceDoubleOcc\":\"26522.50\",\"priceSingleOcc\":37646.5,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26522.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":19913,\"priceDoubleOcc\":\"23072.00\",\"priceSingleOcc\":34196,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23072.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20188,\"priceDoubleOcc\":\"23484.00\",\"priceSingleOcc\":34608,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23484.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20531,\"priceDoubleOcc\":\"23999.00\",\"priceSingleOcc\":35123,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23999.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21012,\"priceDoubleOcc\":\"24720.00\",\"priceSingleOcc\":35844,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21561,\"priceDoubleOcc\":\"25544.00\",\"priceSingleOcc\":36668,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25544.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":22214,\"priceDoubleOcc\":\"26522.50\",\"priceSingleOcc\":37646.5,\"priceExtraBed\":\"11021.00\",\"priceWithoutBed\":\"7622.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26522.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"30896\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25338.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21905,\"priceDoubleOcc\":\"25338.00\",\"priceSingleOcc\":38316,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"9064.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25338.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22317,\"priceDoubleOcc\":\"25956.00\",\"priceSingleOcc\":38934,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"9064.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25956.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":23072,\"priceDoubleOcc\":\"27089.00\",\"priceSingleOcc\":40067,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"9064.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27089.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":23484,\"priceDoubleOcc\":\"27707.00\",\"priceSingleOcc\":40685,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"9064.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27707.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24033,\"priceDoubleOcc\":\"28531.00\",\"priceSingleOcc\":41509,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"9064.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28531.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24514,\"priceDoubleOcc\":\"29252.00\",\"priceSingleOcc\":42230,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"9064.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29252.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21905,\"priceDoubleOcc\":\"25338.00\",\"priceSingleOcc\":38316,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"8240.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25338.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":22385,\"priceDoubleOcc\":\"26059.00\",\"priceSingleOcc\":39037,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"8240.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26059.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":23072,\"priceDoubleOcc\":\"27089.00\",\"priceSingleOcc\":40067,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"8240.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27089.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":23484,\"priceDoubleOcc\":\"27707.00\",\"priceSingleOcc\":40685,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"8240.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27707.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":24033,\"priceDoubleOcc\":\"28531.00\",\"priceSingleOcc\":41509,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"8240.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28531.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":24514,\"priceDoubleOcc\":\"29252.00\",\"priceSingleOcc\":42230,\"priceExtraBed\":\"13081.00\",\"priceWithoutBed\":\"8240.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"3.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29252.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"30894\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23925.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20277,\"priceDoubleOcc\":\"23925.00\",\"priceSingleOcc\":34914,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20570,\"priceDoubleOcc\":\"24365.00\",\"priceSingleOcc\":35354,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24365.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20827,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":35739,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21047,\"priceDoubleOcc\":\"25080.00\",\"priceSingleOcc\":36069,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21355,\"priceDoubleOcc\":\"25542.00\",\"priceSingleOcc\":36531,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25542.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21663,\"priceDoubleOcc\":\"26004.00\",\"priceSingleOcc\":36993,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26004.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20277,\"priceDoubleOcc\":\"23925.00\",\"priceSingleOcc\":34914,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23925.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20570,\"priceDoubleOcc\":\"24365.00\",\"priceSingleOcc\":35354,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24365.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":20827,\"priceDoubleOcc\":\"24750.00\",\"priceSingleOcc\":35739,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24750.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21047,\"priceDoubleOcc\":\"25080.00\",\"priceSingleOcc\":36069,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21355,\"priceDoubleOcc\":\"25542.00\",\"priceSingleOcc\":36531,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25542.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21663,\"priceDoubleOcc\":\"26004.00\",\"priceSingleOcc\":36993,\"priceExtraBed\":\"10780.00\",\"priceWithoutBed\":\"6820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26004.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"30895\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24640.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"24640.00\",\"priceSingleOcc\":36520,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"8140.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21560,\"priceDoubleOcc\":\"25080.00\",\"priceSingleOcc\":36960,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"8140.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":21927,\"priceDoubleOcc\":\"25630.00\",\"priceSingleOcc\":37510,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"8140.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25630.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22440,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":38280,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"8140.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":23027,\"priceDoubleOcc\":\"27280.00\",\"priceSingleOcc\":39160,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"8140.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":23723,\"priceDoubleOcc\":\"28325.00\",\"priceSingleOcc\":40205,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"8140.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28325.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21267,\"priceDoubleOcc\":\"24640.00\",\"priceSingleOcc\":36520,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"24640.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24640.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21560,\"priceDoubleOcc\":\"25080.00\",\"priceSingleOcc\":36960,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"24640.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25080.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":21927,\"priceDoubleOcc\":\"25630.00\",\"priceSingleOcc\":37510,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"24640.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25630.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":22440,\"priceDoubleOcc\":\"26400.00\",\"priceSingleOcc\":38280,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"24640.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"26400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":23027,\"priceDoubleOcc\":\"27280.00\",\"priceSingleOcc\":39160,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"24640.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27280.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":23723,\"priceDoubleOcc\":\"28325.00\",\"priceSingleOcc\":40205,\"priceExtraBed\":\"11770.00\",\"priceWithoutBed\":\"24640.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28325.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"30896\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27060.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":23393,\"priceDoubleOcc\":\"27060.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"9680.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27060.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":23833,\"priceDoubleOcc\":\"27720.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"9680.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24640,\"priceDoubleOcc\":\"28930.00\",\"priceSingleOcc\":42790,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"9680.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28930.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25080,\"priceDoubleOcc\":\"29590.00\",\"priceSingleOcc\":43450,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"9680.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29590.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25667,\"priceDoubleOcc\":\"30470.00\",\"priceSingleOcc\":44330,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"9680.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30470.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-03\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":26180,\"priceDoubleOcc\":\"31240.00\",\"priceSingleOcc\":45100,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"9680.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":23393,\"priceDoubleOcc\":\"27060.00\",\"priceSingleOcc\":40920,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"27060.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27060.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":23907,\"priceDoubleOcc\":\"27830.00\",\"priceSingleOcc\":41690,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"27060.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"27830.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":24640,\"priceDoubleOcc\":\"28930.00\",\"priceSingleOcc\":42790,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"27060.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28930.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":25080,\"priceDoubleOcc\":\"29590.00\",\"priceSingleOcc\":43450,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"27060.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29590.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":25667,\"priceDoubleOcc\":\"30470.00\",\"priceSingleOcc\":44330,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"27060.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"30470.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-09-15\",\"Currency\":1,\"priceTripleOcc\":26180,\"priceDoubleOcc\":\"31240.00\",\"priceSingleOcc\":45100,\"priceExtraBed\":\"13970.00\",\"priceWithoutBed\":\"27060.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31240.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"219599\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[219599],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219602\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[219602],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219605\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[219605],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219608\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[219608],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219611\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[219611],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219614\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[219614],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219617\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[219617],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"219620\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[219620],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Kathmandu,Chitwan','Kathmandu,Indian Subcontinent,Nepal,Chitwan,Patan',NULL,'13672,6194',22403,31240,5,NULL,NULL,NULL,2,'',0,'2022-05-24 00:00:00','2022-09-15 00:00:00','2022-09-15 00:00:00',3,'Nepal','153','2022-05-24 00:00:00','2022-05-24 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'grand-nepal-with-wildlife',NULL,NULL,NULL,0),(14,36291,1,12577,1,0,0,'Honeymoon,Family,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":36291,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/singapore_delights_1653398212.jpg\",\"BookingValidUntill\":\"2022-06-29\",\"AdvBookingDays\":15,\"DETAILS\":\"&lt;p&gt;Singapore is one of the most beautiful island nations that a tourist can visit. Tourists from all corners of the world visit this city which is also a country and they experience its culture and see the magnificent landmarks and beauty that this country beholds for its visitors and tourists. Anyone can visit this country and experience it on their special&amp;nbsp;Singapore itinerary for 5 days.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Singapore\",\"DestinationPlacesSysId\":25278,\"SourcePlaces\":\"Singapore\",\"SourcePlaceSysId\":25278,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Singapore Delights\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6729\",\"SupplierName\":\"IN HOUSE\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Guided Tours,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-06-29\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25278,\"Title\":\"Singapore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":508915,\"Name\":\"V Hotel Lavender\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_508915\\/4539_7bfce44190026ce7fcd59796c4f5e9cb1653399498.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":508914,\"Name\":\"Village Hotel Bugis\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25278,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_508914\\/4539_61c69ce5b8a3aa8cdeea0c9e374966171653399453.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2022,\"Title\":\"Night Safari\",\"Description\":\"The Night Safari is the world&amp;#039;s first nocturnal zoo and is one of the most popular tourist attractions in Singapore.Hop on to a tram and embark on a journey through the world&amp;rsquo;s first wildlife night park that takes you from the Himalayan foothills to wild equatorial Africa.  One can see over 1,000 animals in eight geographical areas.  The Night Safari currently houses over 2,500 animals representing over 130 species, of which 38 are threatened species.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Night_Safari_25278_1515656114.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":1967,\"Title\":\"City Tour Singapore\",\"Description\":\"Singapore is one of South East Asia&amp;#039;s most energetic and beautiful urban areas and is a door to whatever remains of Asia. Singapore City has been intended to help you find all that you have to know not your visit to Singapore, including lodgings, things to do, eating out, shopping and the sky is the limit from there. Whether you are in Singapore on business, delight, a culinary voyage through Asian sustenance or just rapidly going through you will discover something to take your extravagant. Venture through Singapore&amp;#039;s Ethnic Quarters, shop on Orchard Road, visit the Singapore Zoo, attempt nearby food at a Hawker Center and top everything off with a Singapore Sling at the famous Raffles Hotel. This city is has something for everyone so you plan for atleast 5 days city tour\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.291447,\"Long\":103.857878,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/414_1517916504.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":12004,\"Title\":\"Madame Tussauds\",\"Description\":\"Madame Tussauds Singapore is a Wax museum and tourist attraction at the Imbiah Lookout of Sentosa Island in Singapore. It officially opened on 25 October 2014 as the seventh Asian branch of the Madame Tussauds chain of wax attractions worldwide.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/Madame_Tussauds_25278_1573893439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":3676,\"Title\":\"SENTOSA\",\"Description\":\"Sentosa is an island resort off Singapore&amp;rsquo;s southern coast, connected to the city by road, cable car, pedestrian boardwalk and monorail. By Sentosa Station, Tiger Sky Tower has panoramic views that can stretch as far as Indonesia. On the south coast, Palawan Beach is lined with food stalls and bars, and has a suspension bridge to a small offshore island. Palm-lined, crescent-shaped Tanjong Beach is more tranquil.\",\"CurrencyType\":0,\"CityId\":25278,\"CityName\":\"Singapore\",\"Lat\":1.2494041,\"Long\":103.8303209,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25278\\/sightseeing\\/SENTOSA_25278_1530615178.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"260056\",\"Title\":\"Singapore: Arrival and Night Safari\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to Singapore; the garden city&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Once you reach the Singapore Airport, our representative will heartily greet you and transfer you to the pre-reserved hotel in shared transportation. Upon arrival, you will sign into the hotel and spend the day at leisure. In the evening, you will visit one of the kind zoo &amp;ldquo;Night Safari&amp;rdquo;. It is the first nocturnal zoo globally with around 2500 animals from 130 species. It has played an essential role in the conservation of endangered animals. The nocturnal zoo also hosts a number of cultural shows and traditional tribal dance performances, where you can get a glimpse of Singapore&amp;rsquo;s rich traditions. You can witness the animal&amp;rsquo;s natural behaviour in the nighttime. After the tour, you will return to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":508915,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":508914,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2022,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260058\",\"Title\":\"Singapore: Half-day City Tour with Gardens By the Bay\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Joyful half-day trip to the City&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have breakfast and go for the Singapore Half-day City Tour. This tour will take you to the most famous monuments in the city like Art Museum, Financial District, Central Business District, Civilian War Memorial, and Civic District. Next, see Suntec City, Marina Bay, and the icon of Singapore - the Merlion Statue. At the end of the half-day city tour indulge in shopping at Plaza Singapura.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, we will depart for a half-day sightseeing tour of &lt;strong&gt;Gardens By the Bay!&lt;\\/strong&gt;&amp;nbsp;Admire the&amp;nbsp;Gardens&amp;rsquo; architectural marvels that reimagine nature with artistic finesse. There&amp;rsquo;s always something blooming in the&amp;nbsp;Gardens. Visit plants from around the world. Admire Beautiful Plants. Discover flora and fauna. Make memories here today!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Depart for the hotel for an overnight stay after a wonderful day exploring Singapore!&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":508915,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":508914,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1967,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260060\",\"Title\":\"Singapore: Sentosa Day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;you will explore Sentosa Island which is known for beaches, restaurants, parks, and casinos. You will go on an exciting cable car ride, and explore famous places like Madame Tussauds, and IOS Live. Also, you will have the opportunity to visit the 4D Marvel Show and enjoy Panoramic Views of Sentosa on the New SkyHelix in Sentosa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After a wonderful day, return to the hotel for an overnight stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":508915,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":508914,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":12004,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3676,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260062\",\"Title\":\"Singapore: Leisure Day\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Spend the fourth day of the tour at leisure&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Start the day with a wholesome breakfast at the hotel and then plan the day ahead as per your convenience. Since the day is at leisure, you can either stay at the hotel and relax or choose to go out. You can explore popular malls in Singapore such as The Shoppes, Orchard Central, VivoCity, and Paragon. Return to the hotel for an overnight stay, after shopping.&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAlso, you can opt for an unforgettable fun day at the Universal Studio &lt;strong&gt;(extra cost)&lt;\\/strong&gt;.&lt;br \\/&gt;\\r\\nThe park has been divided into various themes such as New York, Hollywood, Ancient Egypt, Sci-Fi City, Far Far Away, The Lost World, and Madagascar. After exploring the park, you will head to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":508915,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":508914,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260064\",\"Title\":\"Singapore: Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Say goodbye to Singapore City!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have breakfast, pack your luggage, and check-out from the hotel. Get transferred to the airport to board the flight to your home. You will leave Singapore with plenty of fun memories to share with your loved one.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25278,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36291\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34720.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":33973,\"priceDoubleOcc\":\"34720.00\",\"priceSingleOcc\":54880,\"priceExtraBed\":\"32480.00\",\"priceWithoutBed\":\"21280.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34720.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"36292\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"40320.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":61600,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":42448,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":42448,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":42448,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":42448,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":42448,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":39573,\"priceDoubleOcc\":\"40320.00\",\"priceSingleOcc\":42448,\"priceExtraBed\":\"38080.00\",\"priceWithoutBed\":\"22400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"12.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40320.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36291\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33170.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":32457,\"priceDoubleOcc\":\"33170.00\",\"priceSingleOcc\":52430,\"priceExtraBed\":\"31030.00\",\"priceWithoutBed\":\"20330.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33170.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"36292\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"38520.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-08\",\"To\":\"2022-06-08\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":58850,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":40553,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":40553,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":40553,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":40553,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":40553,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-29\",\"To\":\"2022-06-29\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38520.00\",\"priceSingleOcc\":40553,\"priceExtraBed\":\"36380.00\",\"priceWithoutBed\":\"21400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"7.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38520.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Singapore Visa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS (Refundable).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;** &lt;strong&gt;Optional&lt;\\/strong&gt; ** on SIC Basis:\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Universal Studios Singapore.&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Singapore Zoo.&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Jurong Bird Park.&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test) unless mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 nights accommodation on a twin sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily breakfast at the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tours on SIC Basis:\\r\\n\\t&lt;ul&gt;\\r\\n\\t\\t&lt;li&gt;Night Safari (Admission + Animal Show + Tram Ride)&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;City Orientation Tour (Drive through our Financial District &amp;amp; business district + Drive through Suntec City + Visit the icon of Singapore, the Merlion at Merlion Park)&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Sentosa Combo 3 (CC, IOS Live + Madame Tussauds + 04 D Marvel Show, Skyhelix)&lt;\\/li&gt;\\r\\n\\t\\t&lt;li&gt;Gardens By The Bay - 2 Conservatories.&lt;\\/li&gt;\\r\\n\\t&lt;\\/ul&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":15,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 15 Days\",\"TPRulesSysId\":\"9892\",\"Value\":\"75\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9894\",\"Value\":\"50\"},{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":false,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9896\",\"Value\":\"0\"}],\"BuspickupLocation\":[],\"TransferData\":{\"260056\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[260056],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260058\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[260058],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260060\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[260060],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260062\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[260062],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260064\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[260064],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"18676\":{\"CityName\":\"Mumbai\",\"FromDate\":{\"20220601\":{\"FromDate\":\"2022-06-01\",\"FromDateDMY\":\"01\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220608\":{\"FromDate\":\"2022-06-08\",\"FromDateDMY\":\"08\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220615\":{\"FromDate\":\"2022-06-15\",\"FromDateDMY\":\"15\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220622\":{\"FromDate\":\"2022-06-22\",\"FromDateDMY\":\"22\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220629\":{\"FromDate\":\"2022-06-29\",\"FromDateDMY\":\"29\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"296\":{\"CityName\":\"Ahmedabad\",\"FromDate\":{\"20220601\":{\"FromDate\":\"2022-06-01\",\"FromDateDMY\":\"01\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220608\":{\"FromDate\":\"2022-06-08\",\"FromDateDMY\":\"08\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220615\":{\"FromDate\":\"2022-06-15\",\"FromDateDMY\":\"15\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220622\":{\"FromDate\":\"2022-06-22\",\"FromDateDMY\":\"22\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220629\":{\"FromDate\":\"2022-06-29\",\"FromDateDMY\":\"29\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"2262\":{\"CityName\":\"Bengaluru\",\"FromDate\":{\"20220601\":{\"FromDate\":\"2022-06-01\",\"FromDateDMY\":\"01\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220608\":{\"FromDate\":\"2022-06-08\",\"FromDateDMY\":\"08\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220615\":{\"FromDate\":\"2022-06-15\",\"FromDateDMY\":\"15\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220622\":{\"FromDate\":\"2022-06-22\",\"FromDateDMY\":\"22\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220629\":{\"FromDate\":\"2022-06-29\",\"FromDateDMY\":\"29\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}},\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20220601\":{\"FromDate\":\"2022-06-01\",\"FromDateDMY\":\"01\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220608\":{\"FromDate\":\"2022-06-08\",\"FromDateDMY\":\"08\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220615\":{\"FromDate\":\"2022-06-15\",\"FromDateDMY\":\"15\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220622\":{\"FromDate\":\"2022-06-22\",\"FromDateDMY\":\"22\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220629\":{\"FromDate\":\"2022-06-29\",\"FromDateDMY\":\"29\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Singapore','Singapore,South East Asia,Orient,Sentosa Island',NULL,'25278',33170,40320,4,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-06-29 00:00:00','2022-06-29 00:00:00',3,'Singapore','190','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'singapore-delights',NULL,NULL,NULL,0),(15,34542,1,12577,0,0,0,'Honeymoon,Family,Heritage,Culture,Shopping and Nightlife,Leisure,Group Tours,By Volvo',NULL,1,1,0,'{\"package\":{\"TPId\":34542,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/discover_turkey_1649326729.jpg\",\"BookingValidUntill\":\"2022-06-15\",\"AdvBookingDays\":21,\"DETAILS\":\"\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Istanbul\",\"DestinationPlacesSysId\":12905,\"SourcePlaces\":\"Istanbul\",\"SourcePlaceSysId\":12905,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Discover Turkey\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"6729\",\"SupplierName\":\"IN HOUSE\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing,Guided Tours,Visa,Travel Insurance\",\"PackageType\":\"Honeymoon,Family,Heritage,Culture,Shopping and Nightlife,Leisure,Group Tours,By Volvo\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-06-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12905,\"Title\":\"Istanbul\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":502883,\"Name\":\"The Central Palace Taksim\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"41.0395506\",\"Long\":\"28.98493819999999\",\"Address\":\"Kocatepe, Lamartin Cd. No:18, 34437 Beyo?lu\\/?stanbul, Turkey\"},\"Images\":[],\"CityId\":12905,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_502883\\/4539_4972a860cf601b0e23939fe772dc47361649337317.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard  Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25725,\"Title\":\"Tomb of Sheikh-E-Debali\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4527,\"CityName\":\"Bursa\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17319,\"Title\":\"Ertugrul Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25731,\"Title\":\"Osman Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25732,\"Title\":\"Uludag Mountain tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17298,\"Title\":\"Travertines (Cotton Castle)\",\"Description\":\"Pamukkale&#039;s terraces are made of travertine, a sedimentary rock deposited by mineral water from the hot springs. ... When the water, supersaturated with calcium carbonate, reaches the surface, carbon dioxide de-gasses from it, and calcium carbonate is deposited.\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17306,\"Title\":\"Mevlana Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14368,\"CityName\":\"Konya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17683,\"Title\":\"Cave Dwellings\",\"Description\":\"One hundred square miles with more than 200 underground villages and tunnel towns complete with hidden passages, secret rooms and ancient temples and a remarkably storied history of each new civilisation building on the work of the last, make Cappadocia one of the world&amp;#039;s most striking and largest cave-dwelling regions of the world.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Cave_Dwellings__5094_1602143397.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17682,\"Title\":\"Rock Formations\",\"Description\":\"The rock formations that have made Cappadocia one of the most popular destinations in Turkey emerged due to a geological process that began millions of years ago. Ancient volcanic eruptions blanketed the region in thick ash, which later solidified into a soft rock called &amp;#039;tuff&amp;#039;.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Rock_Formations_5094_1602143212.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}},{\"CityId\":4527,\"Title\":\"Bursa\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":502886,\"Name\":\"Gold Majesty Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"40.2066361\",\"Long\":\"28.991844\",\"Address\":\"Konak, Lefko?e Cd. No:44, 16110 Nil&uuml;fer\\/Bursa, Turkey\"},\"Images\":[],\"CityId\":4527,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_502886\\/4539_79c790fcd1407d4f09aee4633d9702a01649338055.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard  Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25725,\"Title\":\"Tomb of Sheikh-E-Debali\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4527,\"CityName\":\"Bursa\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17319,\"Title\":\"Ertugrul Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25731,\"Title\":\"Osman Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25732,\"Title\":\"Uludag Mountain tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17298,\"Title\":\"Travertines (Cotton Castle)\",\"Description\":\"Pamukkale&#039;s terraces are made of travertine, a sedimentary rock deposited by mineral water from the hot springs. ... When the water, supersaturated with calcium carbonate, reaches the surface, carbon dioxide de-gasses from it, and calcium carbonate is deposited.\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17306,\"Title\":\"Mevlana Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14368,\"CityName\":\"Konya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17683,\"Title\":\"Cave Dwellings\",\"Description\":\"One hundred square miles with more than 200 underground villages and tunnel towns complete with hidden passages, secret rooms and ancient temples and a remarkably storied history of each new civilisation building on the work of the last, make Cappadocia one of the world&amp;#039;s most striking and largest cave-dwelling regions of the world.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Cave_Dwellings__5094_1602143397.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17682,\"Title\":\"Rock Formations\",\"Description\":\"The rock formations that have made Cappadocia one of the most popular destinations in Turkey emerged due to a geological process that began millions of years ago. Ancient volcanic eruptions blanketed the region in thick ash, which later solidified into a soft rock called &amp;#039;tuff&amp;#039;.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Rock_Formations_5094_1602143212.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}},{\"CityId\":20687,\"Title\":\"Pamukkale\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":502805,\"Name\":\"Tripolis Hotel\",\"Star\":\"4.00\",\"Rating\":\"3.80\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"37.9193709\",\"Long\":\"29.1093632\",\"Address\":\"Adnan Kahveci Blv. No:96, 20190 Pamukkale\\/Denizli, Turkey\"},\"Images\":[],\"CityId\":20687,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_502805\\/4539_bf9ea712528689e3a63a125e1a62c6241649339349.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25725,\"Title\":\"Tomb of Sheikh-E-Debali\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4527,\"CityName\":\"Bursa\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17319,\"Title\":\"Ertugrul Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25731,\"Title\":\"Osman Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25732,\"Title\":\"Uludag Mountain tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17298,\"Title\":\"Travertines (Cotton Castle)\",\"Description\":\"Pamukkale&#039;s terraces are made of travertine, a sedimentary rock deposited by mineral water from the hot springs. ... When the water, supersaturated with calcium carbonate, reaches the surface, carbon dioxide de-gasses from it, and calcium carbonate is deposited.\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17306,\"Title\":\"Mevlana Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14368,\"CityName\":\"Konya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17683,\"Title\":\"Cave Dwellings\",\"Description\":\"One hundred square miles with more than 200 underground villages and tunnel towns complete with hidden passages, secret rooms and ancient temples and a remarkably storied history of each new civilisation building on the work of the last, make Cappadocia one of the world&amp;#039;s most striking and largest cave-dwelling regions of the world.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Cave_Dwellings__5094_1602143397.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17682,\"Title\":\"Rock Formations\",\"Description\":\"The rock formations that have made Cappadocia one of the most popular destinations in Turkey emerged due to a geological process that began millions of years ago. Ancient volcanic eruptions blanketed the region in thick ash, which later solidified into a soft rock called &amp;#039;tuff&amp;#039;.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Rock_Formations_5094_1602143212.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}},{\"CityId\":1151,\"Title\":\"Antalya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":478974,\"Name\":\"Afflon Loft City Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"36.88633129999999\",\"Long\":\"30.6969059\",\"Address\":\"Deniz, T&Atilde;&frac14;rk Telekom Sitesi, 121. Sk. No:6, 07050 Muratpa&Aring;&Yuml;a\\/Antalya, Turkey\"},\"Images\":[],\"CityId\":1151,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_478974\\/4539_b6c13044db30068d1d8b28db3597ac541649338172.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25725,\"Title\":\"Tomb of Sheikh-E-Debali\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4527,\"CityName\":\"Bursa\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17319,\"Title\":\"Ertugrul Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25731,\"Title\":\"Osman Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25732,\"Title\":\"Uludag Mountain tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17298,\"Title\":\"Travertines (Cotton Castle)\",\"Description\":\"Pamukkale&#039;s terraces are made of travertine, a sedimentary rock deposited by mineral water from the hot springs. ... When the water, supersaturated with calcium carbonate, reaches the surface, carbon dioxide de-gasses from it, and calcium carbonate is deposited.\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17306,\"Title\":\"Mevlana Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14368,\"CityName\":\"Konya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17683,\"Title\":\"Cave Dwellings\",\"Description\":\"One hundred square miles with more than 200 underground villages and tunnel towns complete with hidden passages, secret rooms and ancient temples and a remarkably storied history of each new civilisation building on the work of the last, make Cappadocia one of the world&amp;#039;s most striking and largest cave-dwelling regions of the world.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Cave_Dwellings__5094_1602143397.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17682,\"Title\":\"Rock Formations\",\"Description\":\"The rock formations that have made Cappadocia one of the most popular destinations in Turkey emerged due to a geological process that began millions of years ago. Ancient volcanic eruptions blanketed the region in thick ash, which later solidified into a soft rock called &amp;#039;tuff&amp;#039;.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Rock_Formations_5094_1602143212.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}},{\"CityId\":14368,\"Title\":\"Konya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":502839,\"Name\":\"Bair Diamond Hotel & Convention Center\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"37.88972820000001\",\"Long\":\"32.4967027\",\"Address\":\"Musalla Ba?lar?, Mahallesi, Ahmet Hilmi Nal&ccedil;ac? Cd. No:100 D:No:100, 42060 Sel&ccedil;uklu\\/Konya, Turkey\"},\"Images\":[],\"CityId\":14368,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_502839\\/4539_56e6f00d3ea667fbe9fe4a176a3adbc91649334513.jpg\",\"AccoAminitiesMask\":\"111111110010111010110\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":18,\"Title\":\"Other\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25725,\"Title\":\"Tomb of Sheikh-E-Debali\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4527,\"CityName\":\"Bursa\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17319,\"Title\":\"Ertugrul Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25731,\"Title\":\"Osman Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25732,\"Title\":\"Uludag Mountain tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17298,\"Title\":\"Travertines (Cotton Castle)\",\"Description\":\"Pamukkale&#039;s terraces are made of travertine, a sedimentary rock deposited by mineral water from the hot springs. ... When the water, supersaturated with calcium carbonate, reaches the surface, carbon dioxide de-gasses from it, and calcium carbonate is deposited.\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17306,\"Title\":\"Mevlana Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14368,\"CityName\":\"Konya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17683,\"Title\":\"Cave Dwellings\",\"Description\":\"One hundred square miles with more than 200 underground villages and tunnel towns complete with hidden passages, secret rooms and ancient temples and a remarkably storied history of each new civilisation building on the work of the last, make Cappadocia one of the world&amp;#039;s most striking and largest cave-dwelling regions of the world.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Cave_Dwellings__5094_1602143397.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17682,\"Title\":\"Rock Formations\",\"Description\":\"The rock formations that have made Cappadocia one of the most popular destinations in Turkey emerged due to a geological process that began millions of years ago. Ancient volcanic eruptions blanketed the region in thick ash, which later solidified into a soft rock called &amp;#039;tuff&amp;#039;.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Rock_Formations_5094_1602143212.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}},{\"CityId\":5094,\"Title\":\"Cappadocia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":502841,\"Name\":\"MDC CAVE HOTEL CAPPADOCIA\",\"Star\":\"4.00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"38.6265924\",\"Long\":\"34.90471119999999\",\"Address\":\"Karahandere Mahallesi, 2. Sk. Karagandere Sk. No:20, 50400 &Uuml;rg&uuml;p\\/Nev?ehir, Turkey\"},\"Images\":[],\"CityId\":5094,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_502841\\/4539_474b4427dda879ca2a0f32f2dcba73b21649339291.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":10304,\"Title\":\"Bosphorus Cruise\",\"Description\":\"The Full Bosphorus Tour offers a great Bosphorus experience and will take several hours in total. For a mere 25 TL this cruise will take you from Emin&Atilde;&para;n&Atilde;&frac14; all the way to the Black Sea, and back. Each way takes about 90 minutes since the ferry makes 5 short stops to let people on and off.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2072_1563524186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11096,\"Title\":\"BLUE MOSQUE\",\"Description\":\"The Sultan Ahmed Mosque is a historic mosque located in Istanbul, Turkey. It remains a functioning mosque, while also attracting large numbers of tourist visitors. It was constructed between 1609 and 1616 during the rule of Ahmed I. Its K&Atilde;&frac14;lliye contains Ahmed&#039;s tomb, a madrasah and a hospice.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568267671.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":11095,\"Title\":\"HAGIA SOPHIYA\",\"Description\":\"Hagia Sophia is the former Greek Orthodox Christian patriarchal cathedral, later an Ottoman imperial mosque and now a museum in Istanbul, Turkey. Built in AD 537 at the beginning of the Middle Ages, it was famous in particular for its massive dome.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/2627_1568268892.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":8962,\"Title\":\"Hippodrome\",\"Description\":\"Hippodrome of Constantinople, is located in Sultanahmet  area, It was a public arena mainly for chariot races. The word hippodrome comes from the Greek hippos (horse) and dromos (way). The Hippodrome of Constantinople was also home to gladiatorial games, official ceremonies, celebrations, protests, torture to the convicts and so on. Hippodrome functioned all in Roman (203-330 CE), Byzantine (330-1453 CE), and Ottoman (1453-1922) periods. Hippodrome was one of the significant structures built by Severus. However, the first Hippodrome was a small one.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/1827_1554711220.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17287,\"Title\":\"Topkapi Palace Museum\",\"Description\":\"The Topkap&Auml;&plusmn; Palace, or the Seraglio, is a large museum in the east of the Fatih district of Istanbul in Turkey. In the 15th and 16th centuries, it served as the main residence and administrative headquarters of the Ottoman sultans.\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1600251600.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25725,\"Title\":\"Tomb of Sheikh-E-Debali\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":4527,\"CityName\":\"Bursa\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17319,\"Title\":\"Ertugrul Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25731,\"Title\":\"Osman Ghazi Tomb\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":25732,\"Title\":\"Uludag Mountain tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17317,\"Title\":\"Bursa Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Enjoy a full-day&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;trip&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;&Acirc;&nbsp;to&Acirc;&nbsp;&lt;\\/span&gt;&lt;b style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;Bursa&lt;\\/b&gt;&lt;span style=&quot;color: rgb(34, 34, 34) font-family: arial, sans-serif font-size: 16px text-align: left&quot;&gt;, an Ottoman capital city filled with fascinating relics of the past. Enjoy its many green spaces, visit the ancient Ye&Aring;&Yuml;il Mosque and Ye&Aring;&Yuml;il Tombs, snack on roasted chestnuts and Turkish sweets, and wander the silk market.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12905,\"CityName\":\"Istanbul\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12905\\/sightseeing\\/4539_1615291594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":18887,\"Title\":\"Pamukkale Day Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17298,\"Title\":\"Travertines (Cotton Castle)\",\"Description\":\"Pamukkale&#039;s terraces are made of travertine, a sedimentary rock deposited by mineral water from the hot springs. ... When the water, supersaturated with calcium carbonate, reaches the surface, carbon dioxide de-gasses from it, and calcium carbonate is deposited.\",\"CurrencyType\":0,\"CityId\":20687,\"CityName\":\"Pamukkale\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17301,\"Title\":\"Antalya Old City Hadrian Gate\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17303,\"Title\":\"Duden Waterfalls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1151,\"CityName\":\"Antalya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17306,\"Title\":\"Mevlana Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14368,\"CityName\":\"Konya\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17683,\"Title\":\"Cave Dwellings\",\"Description\":\"One hundred square miles with more than 200 underground villages and tunnel towns complete with hidden passages, secret rooms and ancient temples and a remarkably storied history of each new civilisation building on the work of the last, make Cappadocia one of the world&amp;#039;s most striking and largest cave-dwelling regions of the world.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Cave_Dwellings__5094_1602143397.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":13988,\"Title\":\"pigeon valley\",\"Description\":\"Pigeon valley is one of the longest valleys that reflects distinctive formation challenging the time. It is located between the Goreme and Uchisar districts in Cappadocia and grabs the people who visited here by creating a mystic ambiance.\\r\\n\\r\\nIt invites the people to a magical world thanks to not only its wonderful sight, but also providing to be organized many various nature sports with its huge and plain land. It is perfect area for walking, trekking and hiking.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/3422_1581506335.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":17682,\"Title\":\"Rock Formations\",\"Description\":\"The rock formations that have made Cappadocia one of the most popular destinations in Turkey emerged due to a geological process that began millions of years ago. Ancient volcanic eruptions blanketed the region in thick ash, which later solidified into a soft rock called &amp;#039;tuff&amp;#039;.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/Rock_Formations_5094_1602143212.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null},{\"RefSSId\":4947,\"Title\":\"Goreme Open Air Museum\",\"Description\":\"One of the Turkey&acirc;&euro;&trade;s UNESCO World Heritage Sites, the Goreme Open Air Museum a must visit place while in Cappadocia. From Byzantine monastic settlement to a pilgrimage site from 17th century, this majestic structure is a cluster of churches, chapels and monasteries. The highlights of this museum are the finest rock-cut cave churches with magnificent frescoes narrating the scenes from the Bible. The amazing location makes it in the very centre of the region with easy access from all directions. A must see site when in the city of Cappadocia.\",\"CurrencyType\":0,\"CityId\":5094,\"CityName\":\"Cappadocia\",\"Lat\":38.6563054,\"Long\":34.836524,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/5094\\/sightseeing\\/48_1525754824.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":6729,\"SupplierName\":\"IN HOUSE\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"247780\",\"Title\":\"Mumbai - Istanbul\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Today afternoon, arrive at Istanbul airport at 13:00 hours. Meet our representative, who will be waiting to WELCOME YOU with a PLA card at &amp;ldquo;Front of Gloria Jean&amp;rsquo;s Coffee Shop&amp;rdquo;.&amp;nbsp; The representative will escort you to the vehicle. The group transfer will be from Istanbul Airport to your respective hotel, it will take approx. 1 hour. 30 mins. Later, check-in at the hotel and enjoy the rest of your day in the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Evening at 19:30, meet our guide at the hotel lobby for departure to Harbor on sharing transfers to Dinner on a cruise along with soft drinks. Proceed back to the hotel, in the late evening through our shared transfer.&amp;nbsp; Overnight in Istanbul.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlight&amp;rsquo;s of the day:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Sailing on Bosphorus, Panoramic Tour of Asia and Europe Continent, Belly Dancer Show, Turkish Folk Dances, DJ Music Performance.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":502883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":10304,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247781\",\"Title\":\"Istanbul\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Today morning after breakfast, at 09:00 proceed to Istanbul Old City Tour. Pick up will be from Hotel for sightseeing. Lunch &amp;amp; Dinner will be at Local restaurant. Overnight in Istanbul.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlight&amp;rsquo;s of the day:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit to famous Hagia Sophia-I Kebir Mosque, followed by Topkapi Palace, Hippodrome, Blue Mosque, Aya Irini Mosque, and Grand Bazaar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":11096,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":11095,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8962,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17287,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247782\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247783\",\"Title\":\"Istanbul &ndash; Bursa \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Today Morning after breakfast, at 09:00, check out from the hotel. Proceed for your onward journey to Bursa. En-route visit Sogut for sightseeing (approx. 270 kms \\/03 hours .30mins). &amp;nbsp;Further from Sogut to Bursa (approx (130 kms \\/2 hours). Lunch &amp;amp; Dinner will be at a local restaurant. Overnight in Bursa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlight&amp;rsquo;s of the day:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the Tomb of Ertugrul Ghazi, who was the Leader and Hero of Turks with changed Turkish Civilization History.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later proceed to the Tomb of Sheikh-E-Debali who was The Mentor of Ertugrul Gazi and was considered the spiritual founder of the Ottoman Empire.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4527,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":502886,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard  Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":25725,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17319,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247784\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4527,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247785\",\"Title\":\"Bursa &ndash; Pamukkale\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Today morning after breakfast, at 09:00 proceed for Bursa tour. Later proceed to Pamukkale (approx dis. 430kms \\/5 hours).&amp;nbsp; Check in at hotel in Pamukkale. Lunch &amp;amp; Dinner at Local restaurant. Overnight in Pamukkale.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights of the day :&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit to Tophane District which has a clock tower, city Panoramic view, Osman Ghazi &amp;amp; Orhan Ghazi Tomb, Cable car to Uludag Mountain.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20687,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":502805,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":25731,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":25732,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17317,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247786\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20687,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247787\",\"Title\":\"Pamukkale &ndash; Antalya\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Today morning after breakfast, at 09:00 check out from the hotel and proceed for Pamukkale Tour. Later check-in at the hotel in Antalya (approx. dis. 225kms \\/3 hours). &amp;nbsp;Lunch &amp;amp; Dinner at a local restaurant. Overnight in Antalya.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights of the day:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pamukkale is Known as Pamuk (Cotton) and Kale (Castle), where hot springs on 35 C Degrees and Marvelous white travertines on the slope of Mountain.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478974,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":18887,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17298,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247788\",\"Title\":\"Antalya\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Today morning after breakfast, at 09:00 proceed to the Old City &amp;amp; waterfall tour. Lunch &amp;amp; Dinner at a local restaurant. Overnight in Antalya.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights of the day:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Antalya&amp;#39;s old town is called Kaleici, where ancient fluted Minaret, Hadrian Gate and Grooved Minaret. Karpuzkaldiran Waterfall is Linking up from Taurusian Mountain Via Duden waterfall to the Mediterranean Sea. Duden Waterfall Is 7 Km away from the Mediterranean Sea, Marvelous Green Nature Drive.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":478974,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17301,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17303,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247789\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1151,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247790\",\"Title\":\"Antalya &ndash; Konya \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;Today morning after breakfast, at 09:00 check out from the hotel. Proceed for your onwards journey to Konya (approx. dis. 310 km \\/3 hours.30 mins). Lunch &amp;amp; Dinner at a local restaurant. Overnight in Konya.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights of the day&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Mevlana Tomb &amp;amp; Museum, which was the Name of Mevlana Celaleddin Rumi founded Mevlevi Spiritual Dance for Love and Praise to Allah. His Followers and students used to call him Dervish.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14368,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":502839,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17306,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247791\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14368,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247792\",\"Title\":\"Konya &ndash; Cappadocia\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;Today morning after breakfast, at 09:00 check out from the hotel. Proceed for your onward journey to Cappadocia (approx. dis 230kms \\/3 hours). Lunch &amp;amp; Dinner at Local restaurant. Overnight in Cappadocia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights of the day :&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Sultanhani Caravanserai for Photo Stop, Uchisar Castle Panorama, Pigeon Valley.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":502841,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":17683,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13988,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17682,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247793\",\"Title\":\"Cappadocia\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;Today morning after breakfast, at 09:00. Meet our guide at the hotel lobby for Cappadocia sightseeing. Lunch &amp;amp; Dinner will be at a local restaurant. Overnight in Cappadocia.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Highlights of the day:&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Goreme Valley Panorama, Uchisar Castle Panorama, Pigeon Valley, Avanos Town, Red River, Pottery Workshop, Stone &amp;amp; Jewellery Workshop.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":502841,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4947,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13988,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247794\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5094,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247795\",\"Title\":\"Cappadocia &ndash; Istanbul\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Today morning at 10:00 hours, check out from the hotel. Meet our representative in the lobby for group transfers to Kayseri Airport (approx. dis. 1 hours \\/30 Mins ) for your onwards flight journey to Istanbul airport&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Arrive at Istanbul airport at 13:00. Meet our representative at Front of Gloria Jeans Coffee Shop. The representative will escort you to the vehicle, group transfers will be from Istanbul Airport to your particular hotel, and it will take approx 1 Hr. 30 Mins. Later check-in &amp;amp; leisure Time in the hotel. Lunch \\/ Dinner on own.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":502883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247796\",\"Title\":\"Istanbul\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;Today morning after breakfast, full day for leisure. Explore Istanbul city on your own. If required any assistance or optional tour, Please contact us. Lunch\\/Dinner will be on own.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":502883,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"247797\",\"Title\":\"Istanbul &ndash; Mumbai\",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"&lt;p&gt;Today morning after breakfast, check out from hotel at 12:00 hours. Meet our representative at Lobby, who will assist you for return departure group transfer to Istanbul airport (approx. dis 1hour \\/30mins). Where your memorable tour of Highlights of Turkey comes to an end.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12905,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"34542\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"154500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":150500,\"priceDoubleOcc\":\"154500.00\",\"priceSingleOcc\":200500,\"priceExtraBed\":\"130000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"154500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":150500,\"priceDoubleOcc\":\"154500.00\",\"priceSingleOcc\":200500,\"priceExtraBed\":\"130000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"154500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":150500,\"priceDoubleOcc\":\"154500.00\",\"priceSingleOcc\":200500,\"priceExtraBed\":\"130000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"154500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":150500,\"priceDoubleOcc\":\"154500.00\",\"priceSingleOcc\":200500,\"priceExtraBed\":\"130000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"154500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":150500,\"priceDoubleOcc\":\"154500.00\",\"priceSingleOcc\":200500,\"priceExtraBed\":\"130000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"154500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":150500,\"priceDoubleOcc\":\"154500.00\",\"priceSingleOcc\":200500,\"priceExtraBed\":\"130000.00\",\"priceWithoutBed\":\"97000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"154500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":100500,\"priceDoubleOcc\":\"104500.00\",\"priceSingleOcc\":150500,\"priceExtraBed\":\"80000.00\",\"priceWithoutBed\":\"54000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"104500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":100500,\"priceDoubleOcc\":\"104500.00\",\"priceSingleOcc\":150500,\"priceExtraBed\":\"80000.00\",\"priceWithoutBed\":\"54000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"104500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":100500,\"priceDoubleOcc\":\"104500.00\",\"priceSingleOcc\":150500,\"priceExtraBed\":\"80000.00\",\"priceWithoutBed\":\"54000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"104500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":100500,\"priceDoubleOcc\":\"104500.00\",\"priceSingleOcc\":150500,\"priceExtraBed\":\"80000.00\",\"priceWithoutBed\":\"54000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"104500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":100500,\"priceDoubleOcc\":\"104500.00\",\"priceSingleOcc\":150500,\"priceExtraBed\":\"80000.00\",\"priceWithoutBed\":\"54000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"104500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":100500,\"priceDoubleOcc\":\"104500.00\",\"priceSingleOcc\":150500,\"priceExtraBed\":\"80000.00\",\"priceWithoutBed\":\"54000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"2000.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"104500.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"34542\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"153000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":149000,\"priceDoubleOcc\":\"153000.00\",\"priceSingleOcc\":197500,\"priceExtraBed\":\"128500.00\",\"priceWithoutBed\":\"95500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"153000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":149000,\"priceDoubleOcc\":\"153000.00\",\"priceSingleOcc\":197500,\"priceExtraBed\":\"128500.00\",\"priceWithoutBed\":\"95500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"153000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":149000,\"priceDoubleOcc\":\"153000.00\",\"priceSingleOcc\":197500,\"priceExtraBed\":\"128500.00\",\"priceWithoutBed\":\"95500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"153000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":149000,\"priceDoubleOcc\":\"153000.00\",\"priceSingleOcc\":197500,\"priceExtraBed\":\"128500.00\",\"priceWithoutBed\":\"95500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"153000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":149000,\"priceDoubleOcc\":\"153000.00\",\"priceSingleOcc\":197500,\"priceExtraBed\":\"128500.00\",\"priceWithoutBed\":\"95500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"153000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":149000,\"priceDoubleOcc\":\"153000.00\",\"priceSingleOcc\":197500,\"priceExtraBed\":\"128500.00\",\"priceWithoutBed\":\"95500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"153000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":99000,\"priceDoubleOcc\":\"103000.00\",\"priceSingleOcc\":147500,\"priceExtraBed\":\"78500.00\",\"priceWithoutBed\":\"52500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":99000,\"priceDoubleOcc\":\"103000.00\",\"priceSingleOcc\":147500,\"priceExtraBed\":\"78500.00\",\"priceWithoutBed\":\"52500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":99000,\"priceDoubleOcc\":\"103000.00\",\"priceSingleOcc\":147500,\"priceExtraBed\":\"78500.00\",\"priceWithoutBed\":\"52500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":99000,\"priceDoubleOcc\":\"103000.00\",\"priceSingleOcc\":147500,\"priceExtraBed\":\"78500.00\",\"priceWithoutBed\":\"52500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":99000,\"priceDoubleOcc\":\"103000.00\",\"priceSingleOcc\":147500,\"priceExtraBed\":\"78500.00\",\"priceWithoutBed\":\"52500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":99000,\"priceDoubleOcc\":\"103000.00\",\"priceSingleOcc\":147500,\"priceExtraBed\":\"78500.00\",\"priceWithoutBed\":\"52500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":\"500.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"103000.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;TCS of INR 4,500\\/- per person (refundable).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hot-Air Balloon ride in Cappadocia.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Domestic &amp;amp; International Flights&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Turkey Visa&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 nights accommodation in Central Palace Hotel Istanbul 4* or similar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 night accommodation in Gold Majesty Hotel Bursa 4* or similar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 night accommodation in Tripolis Hotel Denizli 4* or similar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 nights accommodation in Afflon Hotel Loft City Antalya 4* or similar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1-night accommodation in Bayir Diamond Hotel Konya 5* or similar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;2 nights accommodation in MDC Cave Hotel Cappadocia (Nevsehir) or similar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All sightseeing, tours and transfers as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Transportations Are In Air Conditioned, Non-Smoking Luxury Coach.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Professional English Speaking Local Guide.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tours Have Covered Entrance Fees Mentioned In The Itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Accommodation Category And Type Detailed In The Itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Restaurants Names And Meal Plan Detailed In The Itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Water On The Coach.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"247780\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[247780],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247781\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[247781],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247782\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[247782],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"247783\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[247783],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247784\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[247784],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"247785\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[247785],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247786\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[247786],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"247787\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[247787],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247788\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[247788],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247789\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[247789],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"247790\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[247790],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247791\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[247791],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"247792\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[247792],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247793\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[247793],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247794\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[247794],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"247795\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[247795],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247796\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[247796],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"247797\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[247797],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Istanbul,Bursa,Pamukkale,Antalya,Konya,Cappadocia','Istanbul,Central Asia,Turkey,Eurasia,Bursa,Pamukkale,Antalya,Konya,Cappadocia',NULL,'12905,4527,20687,1151,14368,5094',103000,154500,11,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-06-15 00:00:00','2022-06-15 00:00:00',3,'Turkey','222','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'discover-turkey',NULL,NULL,NULL,0),(16,32287,1,12577,1,0,0,'Adventure,Family,Shopping and Nightlife,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":32287,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/magical_dubai_with_lapita_1644242426.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Dubai is a city and emirate in the United Arab Emirates known for luxury shopping, ultramodern architecture, and a lively nightlife scene. Burj Khalifa, an 830m-tall tower, dominates the skyscraper-filled skyline. At its foot lies Dubai Fountain, with jets and lights choreographed to music.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":25,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Magical Dubai With Lapita\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4360\",\"SupplierName\":\"Turning Point Tourism LLC\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Sightseeing,Visa\",\"PackageType\":\"Adventure,Family,Shopping and Nightlife,Leisure\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":443487,\"Name\":\"Citymax Hotel Bur Dubai\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2507560572169\",\"Long\":\"55.2918666601181\",\"Address\":\"Al Kuwait Street, Bur Dubai, \"},\"Images\":[],\"CityId\":8219,\"Brief\":\"Citymax Hotel Bur Dubai is just twenty minutes from Dubai International airport.Heritage sites, the Dubai Creek and diving village are literally a stone&acirc;&euro;&trade;s throw away. The financial and World Trade Centre are as easily accessible.\\n\\n* Check in time is 2 PM and check out time updated to 12 PM\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/17\\/e84492841912918ea1af346b0ffd8a94-50029.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":443437,\"Name\":\"Grand Excelsior Hotel - Bur Dubai\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2505716869558\",\"Long\":\"55.2922716736794\",\"Address\":\"Kuwait Street, Bur Dubai, \"},\"Images\":[],\"CityId\":8219,\"Brief\":\"Welcome to Grand Excelsior Hotel &acirc;&euro;&ldquo; Bur Dubai. The hotel is located in the heart of Bur Dubai\\\\\\\\\\\\&#039;&#039;s commercial district, it creates a striking landmark, which is dynamic in style and incorporates a Dhow shaped interior. \\n\\nIt stands tall and proud as the symbol of timeless Arabian hospitality. \\n\\nBur Dubai\\\\\\\\\\\\&#039;&#039;s premier hotel provides the highest level of service, ultimate in comfort and style, with exquisite cuisine, relaxing leisure facilities and extensive banquet &amp; conference services. \\n\\nAs the name suggests, the Dhow is traditional in roots, value and hospitality yet, non traditional and unconventional in a lot of other ideas and ideals. \\n\\nDubai\\\\\\\\\\\\&#039;&#039;s first Premium Property in Bur Dubai, is steeped in Arabic traditions and well equipped with the world\\\\\\\\\\\\&#039;&#039;s finest cuisine, specialty restaurants, Bar Lounge, and an authentic living experience in the most calm, peaceful, and posh residential vicinities of Dubai. \\n\\nMinutes away from the World Trade Center and the Business District of Dubai, Dhow Palace Hotel is definitely the most thoughtful way to enjoy one\\\\\\\\\\\\&#039;&#039;s stay in Dubai. \\n\\nAs history shows the only way to cross the Gulf Sea was on a Dhow and this hasn\\\\\\\\\\\\&#039;&#039;t changed even today. Experience the same journey to sail through Dubai\\\\\\\\\\\\&#039;&#039;s cityscape.Provides the highest level of service, ultimate in comfort...\",\"MainImg\":\"https:\\/\\/assets.cosmos-data.com\\/1\\/ec5d4c5c82d20fa58affdf739949905a-241213.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":4991,\"Name\":\"Crowne Plaza Dubai Deira\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.270588781271\",\"Long\":\"55.32701164484\",\"Address\":\"Salahuddin Road Deira\"},\"Images\":{\"Image\":[{\"ImagId\":120418,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/561\\/DXBCP_4548882132_A.jpg\"},{\"ImagId\":120419,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/38\\/345\\/210\\/DXBCP-Healthclub1_A.jpg\"},{\"ImagId\":120420,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/450\\/DXBCP_3945638114_4385375777_A.jpg\"},{\"ImagId\":120421,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/470\\/DXBCP_4195982979_9557550154_A.jpg\"},{\"ImagId\":120422,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/522\\/DXBCP_4195978149_4043011137_A.jpg\"},{\"ImagId\":120423,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/530\\/DXBCP_4195981628_4950648941_A.jpg\"},{\"ImagId\":120424,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/538\\/DXBCP_4195978326_1773587554_A.jpg\"},{\"ImagId\":120425,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/2\\/0\\/71\\/166\\/586\\/DXBCP_3945637409_3238073945_A.jpg\"},{\"ImagId\":120426,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/110\\/DXBCP_4195979365_A.jpg\"},{\"ImagId\":120427,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/86\\/DXBCP_4193806532_A.jpg\"},{\"ImagId\":120428,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/154\\/DXBCP_4193807052_A.jpg\"},{\"ImagId\":120429,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/82\\/DXBCP_3945624757_A.jpg\"},{\"ImagId\":120430,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/146\\/DXBCP_4195979032_A.jpg\"},{\"ImagId\":120431,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/102\\/DXBCP_4184955312_A.jpg\"},{\"ImagId\":120432,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/553\\/DXBCP_4548884843_A.jpg\"},{\"ImagId\":120433,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/130\\/DXBCP_4195978399_A.jpg\"},{\"ImagId\":120434,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/56\\/DXBCP_4250459766_A.jpg\"},{\"ImagId\":120435,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/545\\/DXBCP_4548883362_A.jpg\"},{\"ImagId\":120436,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/64\\/DXBCP_4192985028_A.jpg\"},{\"ImagId\":120437,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/68\\/DXBCP_4195993354_A.jpg\"},{\"ImagId\":120438,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/72\\/DXBCP_3945639721_A.jpg\"},{\"ImagId\":120439,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/76\\/DXBCP_4195987244_A.jpg\"},{\"ImagId\":120440,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/80\\/DXBCP_4195991986_A.jpg\"},{\"ImagId\":120441,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/84\\/DXBCP_4184955793_A.jpg\"},{\"ImagId\":120442,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/90\\/DXBCP_4192985008_A.jpg\"},{\"ImagId\":120443,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/94\\/DXBCP_4184919158_A.jpg\"},{\"ImagId\":120444,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/98\\/DXBCP_3938557066_A.jpg\"},{\"ImagId\":120445,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/102\\/DXBCP_4250462940_A.jpg\"},{\"ImagId\":120446,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/110\\/DXBCP_4192987045_A.jpg\"},{\"ImagId\":120447,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/114\\/DXBCP_3948294274_A.jpg\"},{\"ImagId\":120448,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/118\\/DXBCP_4195993200_A.jpg\"},{\"ImagId\":120449,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/536\\/DXBCP_4548886944_A.jpg\"},{\"ImagId\":120450,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/124\\/DXBCP_4182943198_A.jpg\"},{\"ImagId\":120451,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/118\\/DXBCP_4193812594_A.jpg\"},{\"ImagId\":120452,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/130\\/DXBCP_3945626926_A.jpg\"},{\"ImagId\":120453,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/134\\/DXBCP_35890207_A.jpg\"},{\"ImagId\":120454,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/138\\/DXBCP_4195992491_A.jpg\"},{\"ImagId\":120455,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/142\\/DXBCP_4192985348_A.jpg\"},{\"ImagId\":120456,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/158\\/DXBCP_4195979126_A.jpg\"},{\"ImagId\":120457,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/122\\/DXBCP_4195980377_A.jpg\"},{\"ImagId\":120458,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/142\\/DXBCP_4195980282_A.jpg\"},{\"ImagId\":120459,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/158\\/DXBCP_4182943453_A.jpg\"},{\"ImagId\":120460,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/601\\/DXBCP_4548884395_A.jpg\"},{\"ImagId\":120461,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/641\\/DXBCP_4548884070_A.jpg\"},{\"ImagId\":120462,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/586\\/DXBCP_4548880064_A.jpg\"},{\"ImagId\":120463,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/176\\/DXBCP_4195985018_A.jpg\"},{\"ImagId\":120464,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/114\\/DXBCP_4195989713_A.jpg\"},{\"ImagId\":120465,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/190\\/DXBCP_4182942894_A.jpg\"},{\"ImagId\":120466,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/134\\/DXBCP_4193812067_A.jpg\"},{\"ImagId\":120467,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/94\\/DXBCP_4195979415_A.jpg\"},{\"ImagId\":120468,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/212\\/DXBCP_3938819964_A.jpg\"},{\"ImagId\":120469,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/216\\/DXBCP_4193810372_A.jpg\"},{\"ImagId\":120470,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/220\\/DXBCP_4182946511_A.jpg\"},{\"ImagId\":120471,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/226\\/DXBCP_4192984880_A.jpg\"},{\"ImagId\":120472,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/232\\/DXBCP_3945624868_A.jpg\"},{\"ImagId\":120473,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/236\\/DXBCP_4195991056_A.jpg\"},{\"ImagId\":120474,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/242\\/DXBCP_4195992395_A.jpg\"},{\"ImagId\":120475,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/622\\/DXBCP_4548883059_A.jpg\"},{\"ImagId\":120476,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/250\\/DXBCP_4193806682_A.jpg\"},{\"ImagId\":120477,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/256\\/DXBCP_4192985069_A.jpg\"},{\"ImagId\":120478,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/126\\/DXBCP_4192984841_A.jpg\"},{\"ImagId\":120479,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/266\\/DXBCP_4195993278_A.jpg\"},{\"ImagId\":120480,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/138\\/DXBCP_4193812382_A.jpg\"},{\"ImagId\":120481,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/272\\/DXBCP_3936036885_A.jpg\"},{\"ImagId\":120482,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/106\\/DXBCP_4184955511_A.jpg\"},{\"ImagId\":120483,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/278\\/DXBCP_4193810648_A.jpg\"},{\"ImagId\":120484,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/282\\/DXBCP_4192985049_A.jpg\"},{\"ImagId\":120485,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/288\\/DXBCP_4195988809_A.jpg\"},{\"ImagId\":120486,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/296\\/DXBCP_4192985655_A.jpg\"},{\"ImagId\":120487,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/304\\/DXBCP_4192984964_A.jpg\"},{\"ImagId\":120488,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/320\\/DXBCP_3945624789_A.jpg\"},{\"ImagId\":120489,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/78\\/DXBCP_4192984862_A.jpg\"},{\"ImagId\":120490,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/339\\/DXBCP_4195978258_A.jpg\"},{\"ImagId\":120491,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/577\\/DXBCP_4548887828_A.jpg\"},{\"ImagId\":120492,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/348\\/DXBCP_4195978060_A.jpg\"},{\"ImagId\":120493,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/353\\/DXBCP_4182945619_A.jpg\"},{\"ImagId\":120494,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/98\\/DXBCP_4184954950_A.jpg\"},{\"ImagId\":120495,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/362\\/DXBCP_4184918853_A.jpg\"},{\"ImagId\":120496,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/580\\/370\\/DXBCP_4192987063_A.jpg\"},{\"ImagId\":120497,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/569\\/DXBCP_4548887481_A.jpg\"},{\"ImagId\":120498,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/150\\/DXBCP_4195979957_A.jpg\"},{\"ImagId\":120499,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/582\\/953\\/DXBCP_4550783304_A.jpg\"},{\"ImagId\":120500,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/73\\/545\\/90\\/DXBCP_4193813002_A.jpg\"},{\"ImagId\":120501,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/582\\/972\\/DXBCP_4550783332_A.jpg\"},{\"ImagId\":120502,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/825\\/DXBCP_4193809964_A.jpg\"},{\"ImagId\":120503,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/689\\/DXBCP_3938998858_A.jpg\"},{\"ImagId\":120504,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/801\\/DXBCP_4182944269_A.jpg\"},{\"ImagId\":120505,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/794\\/DXBCP_3941338727_A.jpg\"},{\"ImagId\":120506,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/839\\/DXBCP_4193809355_A.jpg\"},{\"ImagId\":120507,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/895\\/DXBCP_4182944338_A.jpg\"},{\"ImagId\":120508,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/787\\/DXBCP_1621782997_A.jpg\"},{\"ImagId\":120509,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/871\\/DXBCP_1621370028_A.jpg\"},{\"ImagId\":120510,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/832\\/DXBCP_4250456670_A.jpg\"},{\"ImagId\":120511,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/709\\/DXBCP_3936161953_A.jpg\"},{\"ImagId\":120512,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/695\\/DXBCP_4193809023_A.jpg\"},{\"ImagId\":120513,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/773\\/DXBCP_1653680580_A.jpg\"},{\"ImagId\":120514,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/877\\/DXBCP_4182944674_A.jpg\"},{\"ImagId\":120515,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/745\\/DXBCP_4193809533_A.jpg\"},{\"ImagId\":120516,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/887\\/DXBCP_4182944972_A.jpg\"},{\"ImagId\":120517,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/853\\/DXBCP_4193808780_A.jpg\"},{\"ImagId\":120518,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/766\\/DXBCP_3936210178_A.jpg\"},{\"ImagId\":120519,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/717\\/DXBCP_3932300726_A.jpg\"},{\"ImagId\":120520,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/681\\/DXBCP_4182944445_A.jpg\"},{\"ImagId\":120521,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/703\\/DXBCP_3936095958_A.jpg\"},{\"ImagId\":120522,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/779\\/DXBCP_3938963111_A.jpg\"},{\"ImagId\":120523,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/752\\/DXBCP_3945628475_A.jpg\"},{\"ImagId\":120524,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/655\\/DXBCP_4193807879_A.jpg\"},{\"ImagId\":120525,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/859\\/DXBCP_4193807436_A.jpg\"},{\"ImagId\":120526,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/661\\/DXBCP_1621787437_A.jpg\"},{\"ImagId\":120527,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/731\\/DXBCP_3945628506_A.jpg\"},{\"ImagId\":120528,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/817\\/DXBCP_3903466757_A.jpg\"},{\"ImagId\":120529,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/759\\/DXBCP_3945628573_A.jpg\"},{\"ImagId\":120530,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/865\\/DXBCP_3945628441_A.jpg\"},{\"ImagId\":120531,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/668\\/DXBCP_4193810195_A.jpg\"},{\"ImagId\":120532,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/809\\/DXBCP_4182945069_A.jpg\"},{\"ImagId\":120533,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/675\\/DXBCP_3936019145_A.jpg\"},{\"ImagId\":120534,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/845\\/DXBCP_4182943574_A.jpg\"},{\"ImagId\":120535,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/307\\/723\\/DXBCP_4182944830_A.jpg\"}]},\"CityId\":8219,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;A stay at Crowne Plaza Dubai Deira places you in the heart of Dubai, walking distance from Reef Mall and Hamarain Centre.  This 5-star hotel is within close proximity of Al Ghurair Centre and Fish Roundabout.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 300 air-conditioned rooms featuring iPod docking stations and plasma televisions. Your room comes with a pillowtop bed. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment. Private bathrooms with shower\\/tub combinations feature deep soaking bathtubs and rainfall showerheads.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Don&amp;apos;t miss out on the many recreational opportunities, including a health club, an outdoor pool, and a sauna. This hotel also features complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). Guests can get to nearby shops on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Grab a bite to eat at one of the hotel&amp;apos;s 3 restaurants and 2 coffee shops\\/caf&eacute;s, or stay in and take advantage of 24-hour room service. Relax with a refreshing drink from a poolside bar or one of the 2 bars\\/lounges.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include complimentary high-speed (wired) Internet access, a 24-hour business center, and express check-in. Planning an event in Dubai? This hotel has 15042 square feet (1397 square meters) of space consisting of a conference center and meeting rooms. A roundtrip airport shuttle is provided for a surcharge (available on request), and free valet parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"http:\\/\\/www.cfmedia.vfmleonardo.com\\/imageRepo\\/3\\/0\\/75\\/548\\/561\\/DXBCP_4548882132_A.jpg\",\"AccoAminitiesMask\":\"110110100000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":405879,\"Name\":\"Lapita, Dubai Parks & Resorts Autograph Collection\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.916344\",\"Long\":\"55.006238\",\"Address\":\"Dubai Parks &amp; Resorts, Sheikh Zayed Road s\\/n 334221 DUBAI  AE, 334221\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"This Polynesian themed resort offers you a soothing and mesmerising stay at one of the most luxurious hotels in Dubai with unparalleled access to Dubai&#039;s famous theme parks and water park. Lapita&acirc;&bdquo;&cent; is without a doubt the best way to maximise both your time together and your time for fun!\\n\\nLapita&acirc;&bdquo;&cent; is dedicated to the spirit of the Polynesian islands - the architecture and landscaping, as well as the use of textures, details and lighting, all contribute to the splendour and serenity you can experience here.\\n\\nExpansive pathways sprinkled with colourful flowers adorn the entrance to Lapita&acirc;&bdquo;&cent;. The Dubai Parks and Resorts experience continues at the hotel where the comfort and d&Atilde;&copy;cor will ensure an unforgettable stay.\\n\\nThe warm ambient lighting and modernised Polynesian motifs take you on an exciting culinary journey at their signature dining restaurants.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/53\\/539281\\/539281a_hb_ba_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":5928,\"Title\":\"Burj Al Arab\",\"Description\":\"The Burj Al Arab(Tower of the Arabs) is a luxury hotel located in Dubai, United Arab Emirates.It is the third tallest hotel in the world (although 39 of its total height is made up of non-occupiable space.Burj Al Arab stands on an artificial island 280 m (920 ft) from Jumeirah Beach and is connected to the mainland by a private curving bridge. The shape of the structure is designed to resemble the sail of a ship. It has a helipad near the roof at a height of 210 m (689 ft) above ground.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/8219\\/sightseeing\\/15422_20120813060112!Burj_Al_Arab,_Dubai,_by_Joi_Ito_Dec2007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3122,\"Title\":\"Palm Jumeirah Island\",\"Description\":\"Palm Jumeirah is the world&amp;rsquo;s largest man-made island and is comprised of a two kilometre long trunk (stem), a crown made up of 17 fronds (leafs) and a surrounding crescent (curve). The  tree-shaped Palm Jumeirah was built entirely from sand and rocks only. The island itself is five kilometers by five kilometers.\\r\\nDubai is known for its world&amp;#039;s first: Palm Jumeirah is first artificial island, which looks like a stylised palm tree from SPACE, was originally billed as the Eighth Wonder of the World. Palm Jumeirah is one of the three artificial Palm Islands and its creation is started in 2001. As of November 2011, only Palm Jumeirah has been completed. The island is known for glitzy hotels, shopping malls, posh apartment towers and upmarket global restaurants.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1124,\"Long\":55.139,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Palm_Jumeirah_8219_1517479431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":2669,\"Title\":\"Sheikh Zayed Mosque\",\"Description\":\"Sheikh Zayed Grand Mosque is located in Abu Dhabi. It is the largest mosque in the country.Sheikh Zayed Grand Mosque is the key place of worship for Friday gathering and Eid prayers. During Eid it may be visited by more than 41,000 people.The building complex measures approximately 960 ft by 1,380 ft, covering an area of more than 30 acres, excluding exterior landscaping and vehicle parking.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.4868776,\"Long\":54.3852405,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Sheikh_Zayed_Mosque_8219_1519044602.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":2320,\"Title\":\"Sheikh&#039;s Palace\",\"Description\":\"The luxury palace of Sheikh Mohammad Bin Rashid Al Maktoum (the Vice President and Prime Minister of UAE) also refers as Sheikh Mohammad&amp;rsquo;s Palace and the Emir of Dubai. View of the palace is breath-taking and enjoyable. There are luxury cars of the Emir parked inside the palace and the colorful peacocks on the palace grounds will keep your eyes open for a glimpse.\\r\\nIn 1965 Sheik Rashid&amp;#039;s Zabeel Palace was totally encompassed by sand where it remained solitary in the desert. It was Sheik Rashid&amp;#039;s Palace until he has passed in 1990. Presently advanced structures encompass and dominate this memorable building. Its name has been given to Sheik Mohammed&amp;#039;s new Zabeel Palace and the old Zabeel Palace lies nearly forgotten.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.196865,\"Long\":55.274349,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Sheikh&#039;s_Palace_8219_1517483067.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null},{\"RefSSId\":3224,\"Title\":\"Bollywood Theme Park\",\"Description\":\"Enjoy the unforgettable experience of your favourite Bollywood blockbusters coming to life at Dubai&amp;rsquo;s one-of-a-kind Bollywood Park! Step into a fantastic cinematic world and explore the 5 zones: Bollywood Boulevard Mumbai Chowk Rustic Ravine Royal Plaza and Bollywood Film Studios.\\r\\n\\r\\nEnjoy cinematic simulation rides blockbuster attractions flamboyant live shows extraordinary entertainment fine dining street food and shop at numerous boutiques in a theme park dedicated to all things Bollywood!\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":24.920851,\"Long\":55.0093677,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/bollywood_theme_park_8219_1519026127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4360,\"SupplierName\":\"Turning Point Tourism LLC\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"229791\",\"Title\":\"Arrival at Dubai \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Land in the sparkling city of Dubai and get set for an unmatched dining experience while cruising through the waters of Dubai.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Welcome to the dazzling Emirati city. Oue representative will receive you at the Dubai International airport to escort you to the hotel. After a smooth check-in process, settle down in your comfortable room and de-stress yourself.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening, the Dhow Cruise makes the first day of your&amp;nbsp;Dubai holiday package&amp;nbsp;exciting. Sail across the Dubai creek, listening to soothing Bollywood and traditional Arabic music, witnessing the glittering skyline of Dubai. The first evening of your 5 day&amp;nbsp;Dubai trip&amp;nbsp;will be marked by an unlimited international buffet dinner on board and then you will be transferred to your hotel for a cosy overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":443487,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":443437,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":4991,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229794\",\"Title\":\"Dubai: Half-day Dubai City Tour with Burj Khalifa 124th Floor Visit\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;The second day of your&amp;nbsp;holiday package to Dubai&amp;nbsp;promises to pamper the traveller in you.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Fill yourself with a delicious breakfast, and prepare yourself for discovering the wonders of Dubai on a half-day city tour with our 6 day Dubai packages.&amp;nbsp;Visit the Dubai Museum, the Jumeirah Mosque, the glitzy Burj Al Arab Hotel - the world&amp;rsquo;s only seven-star hotel and the Atlantis Hotel, perched atop the crescent-shaped Palm Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Encounter colourful dioramas and enlightening historic exhibits on a visit to Dubai Museum. Post digging into the history of Emirates and their traditional culture, choose to laze around or take a dip in the warm waters of Jumeirah Beach. Behold stunning bird&amp;#39;s-eye views from atop the Burj Khalifa -- the tallest building in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Set foot in Dubai&amp;rsquo;s top tourist attractions, and gaze at the glimmering skyline of Dubai from Burj Khalifa observation deck on the 124th floor!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional&lt;\\/strong&gt;:&amp;nbsp;Request for premium slots of Burj Khalifa while customizing your Dubai tour package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tip:&amp;nbsp;Indians can get to Armani, Saffron, or Indego by Vineet for some yummy desi delicacies.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":443487,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":443437,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":4991,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5928,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3122,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2669,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2320,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229797\",\"Title\":\"Dubai: Thrilling Desert Safari with Barbecue Dinner\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;This day of your&amp;nbsp;Dubai holiday&amp;nbsp;brings to you a ride on velvety Arabian sands &amp;amp; some cultural entertainment&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Have a wholesome breakfast at your hotel and spend the first half of the day leisurely. In the evening, get ready for Desert Safari. Indulge in a number of activities that are a highlight of your&amp;nbsp;Dubai 5 day package,&amp;nbsp;like dune bashing, camel riding, sandboarding, and jeep racing.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Satiate your hunger with a number of mouth-watering Arabian delicacies &amp;amp; enjoy cultural performances like belly dance, Tanura show, and a fire show by trained artists. Enjoy off-roading on the sand dunes. Later, get to your hotel and end the third fun-filled day of your Dubai 4 nights, 5 days package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional:&lt;\\/strong&gt;&amp;nbsp;Engage in various exciting activities during your Dubai Desert Safari like camel riding, quad biking, and more (charges extra)&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":443487,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":443437,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":4991,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229800\",\"Title\":\"Dubai Mall Visit\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Today, An exhilarating day awaits you!&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can opt to explore the world&amp;rsquo;s largest suspended aquariums housing!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Optional: &lt;\\/strong&gt;After a mouth-watering breakfast, you will hop off to Dubai Aquarium located inside the Dubai Mall. The 10-million litre Dubai Aquarium tank, located on the Ground Level of The Dubai Mall, is one of the largest suspended aquariums in the world. There are numerous ways you can experience the main Aquarium tank, which measures 51 metres in length, 20 metres in width and 11 metres in height. Find yourself wandering off, untamed, and fall in love with this place. the rest of the day will be at leisure. Go all out, shopping in the mall or check out the nearby places on your own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Request for Dubai Aquarium &amp;amp; Underwater Zoo while customizing your Dubai tour package.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":443487,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":443437,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":4991,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229803\",\"Title\":\"Adventure day at Dubai Parks &amp; Resorts\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Have a delish breakfast, and pack your bags to move to the adventure-loaded Lapita, Dubai Parks and Resorts, Autograph Collection in Dubai. After a smooth check-in process, settle down in your room. Marvel at the utterly grand and overwhelmingly regal setting of this beautiful hotel and enjoy exploring the property.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Spend the day at &lt;em&gt;Bollywood Theme Parks Dubai &lt;strong&gt;OR&lt;\\/strong&gt; MotionGate Dubai &lt;strong&gt;OR&lt;\\/strong&gt; Legoland Dubai&lt;\\/em&gt; for a thrilling family day full of adventure!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":405879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":405879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":405879,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3224,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"229806\",\"Title\":\"Day 6: Dubai - Goodbye!\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Enjoy your breakfast at the hotel. After breakfast, check out of the hotel and&amp;nbsp;proceed to the airport for your flight back home with fond memories!&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"32287\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"41759.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":41602,\"priceDoubleOcc\":\"41759.95\",\"priceSingleOcc\":80556.35,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41759.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":42295,\"priceDoubleOcc\":\"42799.55\",\"priceSingleOcc\":81595.95000000001,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42799.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":43097,\"priceDoubleOcc\":\"44002.45\",\"priceSingleOcc\":82798.85,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44002.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":42579,\"priceDoubleOcc\":\"43226.20\",\"priceSingleOcc\":82022.6,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43226.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":43154,\"priceDoubleOcc\":\"44088.70\",\"priceSingleOcc\":82885.1,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44088.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":44247,\"priceDoubleOcc\":\"45727.45\",\"priceSingleOcc\":84523.85,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45727.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35219,\"priceDoubleOcc\":\"35118.70\",\"priceSingleOcc\":70237.4,\"priceExtraBed\":\"23805.00\",\"priceWithoutBed\":\"23805.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35118.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35909,\"priceDoubleOcc\":\"36153.70\",\"priceSingleOcc\":71272.4,\"priceExtraBed\":\"23805.00\",\"priceWithoutBed\":\"23805.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36153.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36714,\"priceDoubleOcc\":\"37361.20\",\"priceSingleOcc\":72479.9,\"priceExtraBed\":\"23805.00\",\"priceWithoutBed\":\"23805.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37361.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36197,\"priceDoubleOcc\":\"36584.95\",\"priceSingleOcc\":71703.65,\"priceExtraBed\":\"23805.00\",\"priceWithoutBed\":\"23805.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36584.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36772,\"priceDoubleOcc\":\"37447.45\",\"priceSingleOcc\":72566.15,\"priceExtraBed\":\"23805.00\",\"priceWithoutBed\":\"23805.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37447.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":37864,\"priceDoubleOcc\":\"39086.20\",\"priceSingleOcc\":74204.9,\"priceExtraBed\":\"23805.00\",\"priceWithoutBed\":\"23805.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39086.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":36254,\"priceDoubleOcc\":\"36412.45\",\"priceSingleOcc\":72824.9,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36412.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":36944,\"priceDoubleOcc\":\"37447.45\",\"priceSingleOcc\":73859.9,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37447.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":37749,\"priceDoubleOcc\":\"38654.95\",\"priceSingleOcc\":75067.4,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38654.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":37232,\"priceDoubleOcc\":\"37878.70\",\"priceSingleOcc\":74291.15,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37878.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":37807,\"priceDoubleOcc\":\"38741.20\",\"priceSingleOcc\":75153.65,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38741.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":38899,\"priceDoubleOcc\":\"40379.95\",\"priceSingleOcc\":76792.4,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40379.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":34190,\"priceDoubleOcc\":\"33315.50\",\"priceSingleOcc\":66631,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33315.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":34880,\"priceDoubleOcc\":\"34350.50\",\"priceSingleOcc\":67666,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34350.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":35700,\"priceDoubleOcc\":\"35581.00\",\"priceSingleOcc\":68896.5,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35581.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":35163,\"priceDoubleOcc\":\"34776.00\",\"priceSingleOcc\":68091.5,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34776.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":35737,\"priceDoubleOcc\":\"35636.20\",\"priceSingleOcc\":68951.7,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35636.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":36829,\"priceDoubleOcc\":\"37274.95\",\"priceSingleOcc\":70590.45,\"priceExtraBed\":\"25357.50\",\"priceWithoutBed\":\"25357.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37274.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"32288\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"43139.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":42752,\"priceDoubleOcc\":\"43139.95\",\"priceSingleOcc\":86279.9,\"priceExtraBed\":\"36052.50\",\"priceWithoutBed\":\"27082.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43139.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":43442,\"priceDoubleOcc\":\"44174.95\",\"priceSingleOcc\":87314.9,\"priceExtraBed\":\"36052.50\",\"priceWithoutBed\":\"27082.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44174.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":44247,\"priceDoubleOcc\":\"45382.45\",\"priceSingleOcc\":88522.4,\"priceExtraBed\":\"36052.50\",\"priceWithoutBed\":\"27082.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45382.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":43729,\"priceDoubleOcc\":\"44606.20\",\"priceSingleOcc\":87746.15,\"priceExtraBed\":\"36052.50\",\"priceWithoutBed\":\"27082.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44606.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":44304,\"priceDoubleOcc\":\"45468.70\",\"priceSingleOcc\":88608.65,\"priceExtraBed\":\"36052.50\",\"priceWithoutBed\":\"27082.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45468.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":45397,\"priceDoubleOcc\":\"47107.45\",\"priceSingleOcc\":90247.4,\"priceExtraBed\":\"36052.50\",\"priceWithoutBed\":\"27082.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"47107.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"32289\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"46589.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":45972,\"priceDoubleOcc\":\"46589.95\",\"priceSingleOcc\":93179.9,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46589.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":46662,\"priceDoubleOcc\":\"47624.95\",\"priceSingleOcc\":94214.9,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"47624.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":47467,\"priceDoubleOcc\":\"48832.45\",\"priceSingleOcc\":95422.4,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48832.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":46949,\"priceDoubleOcc\":\"48056.20\",\"priceSingleOcc\":94646.15,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48056.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":47524,\"priceDoubleOcc\":\"48918.70\",\"priceSingleOcc\":95508.65,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48918.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":48617,\"priceDoubleOcc\":\"50557.45\",\"priceSingleOcc\":97147.4,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"50557.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":45397,\"priceDoubleOcc\":\"46503.70\",\"priceSingleOcc\":93007.4,\"priceExtraBed\":\"37260.00\",\"priceWithoutBed\":\"22080.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46503.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":46125,\"priceDoubleOcc\":\"47596.20\",\"priceSingleOcc\":94099.9,\"priceExtraBed\":\"37260.00\",\"priceWithoutBed\":\"22080.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"47596.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":46892,\"priceDoubleOcc\":\"48746.20\",\"priceSingleOcc\":95249.9,\"priceExtraBed\":\"37260.00\",\"priceWithoutBed\":\"22080.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48746.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":46374,\"priceDoubleOcc\":\"47969.95\",\"priceSingleOcc\":94473.65,\"priceExtraBed\":\"37260.00\",\"priceWithoutBed\":\"22080.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"47969.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":46949,\"priceDoubleOcc\":\"48832.45\",\"priceSingleOcc\":95336.15,\"priceExtraBed\":\"37260.00\",\"priceWithoutBed\":\"22080.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48832.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":48042,\"priceDoubleOcc\":\"50471.20\",\"priceSingleOcc\":96974.9,\"priceExtraBed\":\"37260.00\",\"priceWithoutBed\":\"22080.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"50471.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":42177,\"priceDoubleOcc\":\"40897.45\",\"priceSingleOcc\":81794.9,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40897.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":42867,\"priceDoubleOcc\":\"41932.45\",\"priceSingleOcc\":82829.9,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41932.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":43672,\"priceDoubleOcc\":\"43139.95\",\"priceSingleOcc\":84037.4,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43139.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":43154,\"priceDoubleOcc\":\"42363.70\",\"priceSingleOcc\":83261.15,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42363.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":43729,\"priceDoubleOcc\":\"43226.20\",\"priceSingleOcc\":84123.65,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43226.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":44822,\"priceDoubleOcc\":\"44864.95\",\"priceSingleOcc\":85762.4,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44864.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":40107,\"priceDoubleOcc\":\"37792.45\",\"priceSingleOcc\":75584.9,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37792.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":40797,\"priceDoubleOcc\":\"38827.45\",\"priceSingleOcc\":76619.9,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38827.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17835,\"priceDoubleOcc\":\"4384.95\",\"priceSingleOcc\":42177.399999999994,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4384.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":41084,\"priceDoubleOcc\":\"39258.70\",\"priceSingleOcc\":77051.15,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39258.70\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":41659,\"priceDoubleOcc\":\"40121.20\",\"priceSingleOcc\":77913.65,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40121.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":42752,\"priceDoubleOcc\":\"41759.95\",\"priceSingleOcc\":79552.4,\"priceExtraBed\":\"38812.50\",\"priceWithoutBed\":\"23632.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"15.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41759.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"32287\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37109.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":37298,\"priceDoubleOcc\":\"37109.60\",\"priceSingleOcc\":74219.2,\"priceExtraBed\":\"22440.00\",\"priceWithoutBed\":\"22440.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37109.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":37978,\"priceDoubleOcc\":\"38129.30\",\"priceSingleOcc\":75238.9,\"priceExtraBed\":\"22440.00\",\"priceWithoutBed\":\"22440.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38129.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":38748,\"priceDoubleOcc\":\"39284.30\",\"priceSingleOcc\":76393.9,\"priceExtraBed\":\"22440.00\",\"priceWithoutBed\":\"22440.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39284.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":38253,\"priceDoubleOcc\":\"38541.80\",\"priceSingleOcc\":75651.4,\"priceExtraBed\":\"22440.00\",\"priceWithoutBed\":\"22440.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38541.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":38803,\"priceDoubleOcc\":\"39366.80\",\"priceSingleOcc\":76476.4,\"priceExtraBed\":\"22440.00\",\"priceWithoutBed\":\"22440.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39366.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":39847,\"priceDoubleOcc\":\"40933.20\",\"priceSingleOcc\":78042.79999999999,\"priceExtraBed\":\"22440.00\",\"priceWithoutBed\":\"22440.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40933.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":33688,\"priceDoubleOcc\":\"33591.80\",\"priceSingleOcc\":67183.6,\"priceExtraBed\":\"22770.00\",\"priceWithoutBed\":\"22770.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33591.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":34348,\"priceDoubleOcc\":\"34581.80\",\"priceSingleOcc\":68173.6,\"priceExtraBed\":\"22770.00\",\"priceWithoutBed\":\"22770.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34581.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35118,\"priceDoubleOcc\":\"35736.80\",\"priceSingleOcc\":69328.6,\"priceExtraBed\":\"22770.00\",\"priceWithoutBed\":\"22770.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35736.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":34623,\"priceDoubleOcc\":\"34994.30\",\"priceSingleOcc\":68586.1,\"priceExtraBed\":\"22770.00\",\"priceWithoutBed\":\"22770.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34994.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35173,\"priceDoubleOcc\":\"35819.30\",\"priceSingleOcc\":69411.1,\"priceExtraBed\":\"22770.00\",\"priceWithoutBed\":\"22770.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35819.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36218,\"priceDoubleOcc\":\"37386.80\",\"priceSingleOcc\":70978.6,\"priceExtraBed\":\"22770.00\",\"priceWithoutBed\":\"22770.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37386.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":34678,\"priceDoubleOcc\":\"34829.30\",\"priceSingleOcc\":69658.6,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34829.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":35338,\"priceDoubleOcc\":\"35819.30\",\"priceSingleOcc\":70648.6,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35819.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":36108,\"priceDoubleOcc\":\"36974.30\",\"priceSingleOcc\":71803.6,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36974.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":35613,\"priceDoubleOcc\":\"36231.80\",\"priceSingleOcc\":71061.1,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36231.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":36163,\"priceDoubleOcc\":\"37056.80\",\"priceSingleOcc\":71886.1,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37056.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":37208,\"priceDoubleOcc\":\"38624.30\",\"priceSingleOcc\":73453.6,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38624.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":32703,\"priceDoubleOcc\":\"31867.00\",\"priceSingleOcc\":63734,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"31867.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":33363,\"priceDoubleOcc\":\"32857.00\",\"priceSingleOcc\":64724,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"32857.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":34148,\"priceDoubleOcc\":\"34034.00\",\"priceSingleOcc\":65901,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34034.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":33634,\"priceDoubleOcc\":\"33264.00\",\"priceSingleOcc\":65131,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33264.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":34183,\"priceDoubleOcc\":\"34086.80\",\"priceSingleOcc\":65953.8,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34086.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":35228,\"priceDoubleOcc\":\"35654.30\",\"priceSingleOcc\":67521.3,\"priceExtraBed\":\"24255.00\",\"priceWithoutBed\":\"24255.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35654.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"32288\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"38459.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":38418,\"priceDoubleOcc\":\"38459.30\",\"priceSingleOcc\":76918.6,\"priceExtraBed\":\"32670.00\",\"priceWithoutBed\":\"24090.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38459.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":39078,\"priceDoubleOcc\":\"39449.30\",\"priceSingleOcc\":77908.6,\"priceExtraBed\":\"32670.00\",\"priceWithoutBed\":\"24090.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39449.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":39848,\"priceDoubleOcc\":\"40604.30\",\"priceSingleOcc\":79063.6,\"priceExtraBed\":\"32670.00\",\"priceWithoutBed\":\"24090.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40604.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":39353,\"priceDoubleOcc\":\"39861.80\",\"priceSingleOcc\":78321.1,\"priceExtraBed\":\"32670.00\",\"priceWithoutBed\":\"24090.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39861.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":39910,\"priceDoubleOcc\":\"40697.80\",\"priceSingleOcc\":79157.1,\"priceExtraBed\":\"32670.00\",\"priceWithoutBed\":\"24090.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40697.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":40948,\"priceDoubleOcc\":\"42254.30\",\"priceSingleOcc\":80713.6,\"priceExtraBed\":\"32670.00\",\"priceWithoutBed\":\"24090.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42254.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"32289\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"41759.30\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":41498,\"priceDoubleOcc\":\"41759.30\",\"priceSingleOcc\":83518.6,\"priceExtraBed\":\"35310.00\",\"priceWithoutBed\":\"20790.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41759.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":42158,\"priceDoubleOcc\":\"42749.30\",\"priceSingleOcc\":84508.6,\"priceExtraBed\":\"35310.00\",\"priceWithoutBed\":\"20790.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42749.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":42928,\"priceDoubleOcc\":\"43904.30\",\"priceSingleOcc\":85663.6,\"priceExtraBed\":\"35310.00\",\"priceWithoutBed\":\"20790.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43904.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":42433,\"priceDoubleOcc\":\"43161.80\",\"priceSingleOcc\":84921.1,\"priceExtraBed\":\"35310.00\",\"priceWithoutBed\":\"20790.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43161.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":42983,\"priceDoubleOcc\":\"43986.80\",\"priceSingleOcc\":85746.1,\"priceExtraBed\":\"35310.00\",\"priceWithoutBed\":\"20790.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43986.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-07\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":44028,\"priceDoubleOcc\":\"45554.30\",\"priceSingleOcc\":87313.6,\"priceExtraBed\":\"35310.00\",\"priceWithoutBed\":\"20790.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45554.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":43423,\"priceDoubleOcc\":\"44481.80\",\"priceSingleOcc\":88963.6,\"priceExtraBed\":\"35640.00\",\"priceWithoutBed\":\"21120.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44481.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":44120,\"priceDoubleOcc\":\"45526.80\",\"priceSingleOcc\":90008.6,\"priceExtraBed\":\"35640.00\",\"priceWithoutBed\":\"21120.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45526.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":44853,\"priceDoubleOcc\":\"46626.80\",\"priceSingleOcc\":91108.6,\"priceExtraBed\":\"35640.00\",\"priceWithoutBed\":\"21120.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46626.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":44358,\"priceDoubleOcc\":\"45884.30\",\"priceSingleOcc\":90366.1,\"priceExtraBed\":\"35640.00\",\"priceWithoutBed\":\"21120.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"45884.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":44908,\"priceDoubleOcc\":\"46709.30\",\"priceSingleOcc\":91191.1,\"priceExtraBed\":\"35640.00\",\"priceWithoutBed\":\"21120.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46709.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":45953,\"priceDoubleOcc\":\"48276.80\",\"priceSingleOcc\":92758.6,\"priceExtraBed\":\"35640.00\",\"priceWithoutBed\":\"21120.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"48276.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":40343,\"priceDoubleOcc\":\"39119.30\",\"priceSingleOcc\":78238.6,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39119.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":41003,\"priceDoubleOcc\":\"40109.30\",\"priceSingleOcc\":79228.6,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40109.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":41773,\"priceDoubleOcc\":\"41264.30\",\"priceSingleOcc\":80383.6,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41264.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":41278,\"priceDoubleOcc\":\"40521.80\",\"priceSingleOcc\":79641.1,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"40521.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":41828,\"priceDoubleOcc\":\"41346.80\",\"priceSingleOcc\":80466.1,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"41346.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":42873,\"priceDoubleOcc\":\"42914.30\",\"priceSingleOcc\":82033.6,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"42914.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":38363,\"priceDoubleOcc\":\"36149.30\",\"priceSingleOcc\":72298.6,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36149.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":39023,\"priceDoubleOcc\":\"37139.30\",\"priceSingleOcc\":73288.6,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37139.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":17060,\"priceDoubleOcc\":\"4194.30\",\"priceSingleOcc\":40343.600000000006,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"4194.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":39298,\"priceDoubleOcc\":\"37551.80\",\"priceSingleOcc\":73701.1,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37551.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":39848,\"priceDoubleOcc\":\"38376.80\",\"priceSingleOcc\":74526.1,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"38376.80\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":40893,\"priceDoubleOcc\":\"39944.30\",\"priceSingleOcc\":76093.6,\"priceExtraBed\":\"37125.00\",\"priceWithoutBed\":\"22605.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"39944.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any international or domestic airfare.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any RT-PCR Test Charges (Covid-19 test).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;4 nights accommodation on a twin sharing basis with breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;1 Night accommodation at Lapita, Dubai Parks and Resorts with breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;30 Days Dubai Visa with Covid Insurance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dhow Cruise Creek with Dinner SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dubai City Tour SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Burj Khalifa 124th floor observation deck entry (Non-prime time).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Desert Safari with BBQ Dinner SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Dubai.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;One time access to 1 park of your choice (Bollywood Theme Park OR Legoland Dubai OR MotionGate Dubai).&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All applicable entry tickets included and transfers on SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Applicable GST.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"229791\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[229791],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229794\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[229794],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229797\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[229797],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229800\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[229800],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229803\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[229803],\"Remark\":[\"&lt;p&gt;Interhotel Transfer on private basis.&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"229806\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[229806],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Dubai','Dubai,Middle East,United Arab Emirates','','8219',4194,50557,5,NULL,NULL,'[{\"day\":1,\"images\":\"\"},{\"day\":2,\"images\":\"\"},{\"day\":3,\"images\":\"\"},{\"day\":4,\"images\":\"\"},{\"day\":5,\"images\":\"\"},{\"day\":6,\"images\":\"\"}]',2,'',0,'2022-05-25 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'United Arab Emirates','228','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0','','','',NULL,'magical-dubai-with-lapita',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (17,28891,1,12577,0,0,0,'Honeymoon,Adventure,Beach,Family,Romantic,Shopping and Nightlife,By Cab,Group Tours,Activites Tour,Luxury Tours,Educational Tours,Day Tour,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28891,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/greurope_18_days_-_london_to_rome_1632914027.jpg\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Rome is the capital city of Italy. It is also the capital of the Lazio region, the center of the Metropolitan City of Rome, and a special comune named Comune di Roma Capitale.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Rome\",\"DestinationPlacesSysId\":32754,\"SourcePlaces\":\"London\",\"SourcePlaceSysId\":15836,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Grand Europe: 18 Days - London to Rome.\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4287\",\"SupplierName\":\"European Voyages\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Inner Line Permit,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Romantic,Shopping and Nightlife,By Cab,Group Tours,Activites Tour,Luxury Tours,Educational Tours,Day Tour,Road Trip\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15836,\"Title\":\"London\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":15836,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":15836,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486562,\"Name\":\"Quality Clean\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"51.5504375\",\"Long\":\"-0.2961545\",\"Address\":\"9 Union Rd, Wembley HA0 4AU, UK\"},\"Images\":[],\"CityId\":15836,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":979,\"Title\":\"Amsterdam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":979,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":979,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486565,\"Name\":\"Luvernes\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"52.3916301\",\"Long\":\"4.8026418\",\"Address\":\"Luvernes, Amsterdam, Netherlands\"},\"Images\":[],\"CityId\":979,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":20822,\"Title\":\"Paris\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":20822,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":20822,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486566,\"Name\":\"Hotel Appart City Le Mans\",\"Star\":\".00\",\"Rating\":\"3.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"47.99510679999999\",\"Long\":\"0.1942279\",\"Address\":\"34 Pl. du 8 Mai 1945, 72100 Le Mans, France\"},\"Images\":[],\"CityId\":20822,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":1121,\"Title\":\"Annemasse\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":1121,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":1121,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":8778,\"Title\":\"Engelberg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8778,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8778,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486567,\"Name\":\"Hotel Cathrin Engelberg\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"47.2869057\",\"Long\":\"8.614536200000002\",\"Address\":\"Forchstrasse 63, 8704 Herrliberg, Switzerland\"},\"Images\":[],\"CityId\":8778,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":30548,\"Title\":\"Zurich\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":30548,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":30548,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486568,\"Name\":\"Novotel Zurich City-West\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"47.3891116\",\"Long\":\"8.516802799999999\",\"Address\":\"Schiffbaustrasse 13, 8005 Z&Atilde;&frac14;rich, Switzerland\"},\"Images\":[],\"CityId\":30548,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":12747,\"Title\":\"Innsbruck\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":12747,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":12747,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486569,\"Name\":\"Hotel Winneburg\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"50.1592791\",\"Long\":\"7.144191500000001\",\"Address\":\"Endertstra&Atilde;&Yuml;e 141, 56812 Cochem, Germany\"},\"Images\":[],\"CityId\":12747,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":32390,\"Title\":\"Padova\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":32390,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":32390,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486570,\"Name\":\"Italy\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"45.3491191\",\"Long\":\"11.7873047\",\"Address\":\"Via Martiri d&#039;Ungheria, 24, 35031 Abano Terme PD, Italy\"},\"Images\":[],\"CityId\":32390,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":9544,\"Title\":\"Florence\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":9544,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":9544,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486571,\"Name\":\"Hotel First\",\"Star\":\".00\",\"Rating\":\"3.40\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"43.8527418\",\"Long\":\"11.1656132\",\"Address\":\"Via Dino Ciolli, 5, 50041 Calenzano FI, Italy\"},\"Images\":[],\"CityId\":9544,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":32754,\"Title\":\"Rome\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":32754,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":32754,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":486572,\"Name\":\"G-Rough\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"41.8976044\",\"Long\":\"12.4722063\",\"Address\":\"Piazza di Pasquino, 69 \\/ 70, 00186 Roma RM, Italy\"},\"Images\":[],\"CityId\":32754,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4385,\"Title\":\"Amsterdam City Tours\",\"Description\":\"Amsterdam is the capital and the largest city of the Netherlands. It is famous for its unusual life rhythm manifested in the air of cannabis, coffee shops, the Red Light District and many other elements that keep drawing in people from the whole world all year round. Some of the tourist attractions of this extraordinary city are Centrall station, Anne Frank House, Magna Plaza, Dam square area, Royal palace, Madame Tussaud&amp;#039;s Scenerama, etc.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3856134,\"Long\":4.8431668,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185849.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4386,\"Title\":\"Amsterdam Nightlife\",\"Description\":\"Nightlife in Amsterdam offers many venues, dance festivals and club nights. DJs keep the crowd going with everything from techno, dub step and trance to hip-hop, funk and deep house. Amsterdam has one of the most glorious and sizzling nightlife scene in the world. The post sunset hours in Amsterdam dazzle with nightclubs, cafes and discotheques. Exploring areas like Dam Square, Leidseplein, Rembrandtplein and Jordan will lead you to the hippest pubs and clubs in the capital city of kingdom of Netherland.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.370784,\"Long\":4.8931337,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Amsterdam_Nightlife_979_1521120853.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20405,\"Title\":\"Atomium Structure for a photo stop\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7611,\"Title\":\"Cheese and Clog factory\",\"Description\":\"De Simonehoeve is a farm where Gouda cheese is being produced. They will reveal all details about cheese making. Thereafter they show the process of making clogs (or wooden shoes). You may want to taste all the 9 different kinds of cheeses (with a bit of mustard) accompanied by a locally produced berry fruit wine. Interesting for young and old. Open all days of the week.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Cheese_and_Clog_factory_979_1545026953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8687,\"Title\":\"Dam Square\",\"Description\":\"Dam Square or Dam is a town square in Amsterdam, the capital of the Netherlands. Its notable buildings and frequent events make it one of the most well-known and important locations in the city and the country.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Dam_Square_979_1553062723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20406,\"Title\":\"Grand Palace and the legendary Mannekin Pis statue.  Drive past St. Michaels Church\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7605,\"Title\":\"Keukenhof Garden\",\"Description\":\"Keukenhof also known as the Garden of Europe, is one of the world&amp;#039;s largest flower gardens, situated in Lisse, South Holland, Netherlands.  Keukenhof Park, approximately 7 million flower bulbs are planted annually in the park, which covers an area of 32 hectares (79 acres).\\r\\nKeukenhof is located in South Holland, south of Haarlem and southwest of Amsterdam. It is accessible by bus from the train stations of Haarlem, Leiden and Schiphol. It is located in an area called the &amp;quot;Dune and Bulb Region&amp;quot; (Duin- en Bollenstreek).\\r\\nKeukenhof is open annually from mid-March to mid-May. The best time to view the tulips is around mid-April, depending on the weather.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Keukenhof_Garden_979_1545022678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15630,\"Title\":\"Kukenhof or Madurodam\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/4539_1591615830.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":2226,\"Title\":\"Disneyland Paris\",\"Description\":\"Disneyland Paris, originally Euro Disney Resort, is an entertainment resort in Marne-la-Vall&Atilde;&copy;e, a new town located 32 km (20 mi) east of the centre of Paris, and is the most visited theme park in all of Europe. It is owned and operated by The Walt Disney Company and is the only resort outside of the United States to be. The resort covers 4,800 acres (19 km2)[3] and encompasses two theme parks, many resort hotels, a shopping, dining, and entertainment complex, and a golf course, in addition to several additional recreational and entertainment venues. Disneyland Park is the original theme park of the complex, opening with the resort on 12 April 1992. A second theme park, Walt Disney Studios Park, opened in 2002. The resort is the second Disney park to open outside of the United States following the opening of the Tokyo Disney Resort in 1983.\\r\\nUntil June 2017, Disney only held a majority stake in the resort, when they bought the remaining shares. In 2017 The Walt Disney Company offered an informal takeover of Euro Disney S.C.A., buying 9% of the company from Kingdom Holding and an open offer of 2 Euro per share for the remaining stock. This brought The Walt Disney Company&#039;s total ownership to 85.7%. The Walt Disney company will also invest an additional 1.5 Billion Euro to strengthen the company.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/7_1501513716.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3155,\"Title\":\"Disneyland Park\",\"Description\":\"Disneyland Park is the fourth most visited theme park in the world.The whole park follows basically the same setup, but of course there are many regional differences. Only a single Mickey is present in the entire park, so that children really get the sense that the character exists and is unique. When you enter the park, the castle seems distant, even though it&amp;#039;s only a few hundred feet away. This is caused by the facades of the building along Main Street, which widen out as you move down the street. The opposite is true as well, and when you go down the avenue in the other direction to leave the park, the exit seems closer. If you take a picture of the castle guards using a flash, one turns pink and the other blue.The castle at Disneyland Paris is the only one of all the Disney parks to house a dragon in its vaults. This dragon, which moves and lets out the occasional roar, is the largest animation character in the park, measuring over 75 feet long and weighing over 5,500 pounds\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8722344,\"Long\":2.7758079,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Disneyland_Park__20822_1517562336.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9756,\"Title\":\"Alexander Bridge\",\"Description\":\"The Pont Alexandre III is a deck arch bridge that spans the Seine in Paris. It connects the Champs-&Atilde;&permil;lys&Atilde;&copy;es quarter with those of the Invalides and Eiffel Tower. The bridge is widely regarded as the most ornate, extravagant bridge in the city. It is classified as a French Monument historique since 1975.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238181.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14456,\"Title\":\"Alexander Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4536,\"Title\":\"Arc de Triomphe de l\'\\u00c3\\u2030toile\",\"Description\":\"A unique viewpoint. From the top of the panoramic terrace, your eyes sweep over the whole of Paris.\\r\\nThe revisited Antiquity. Architect Jean-Fran&Atilde;&sect;ois Chalgrin was inspired by the Roman Arch of Titus in a single arch, but went beyond it by exceptional dimensions (about 50 m high, 45 m long and 22 m wide) and abandoning columns. A key place of major national events. Wanted by Napoleon in 1806, the Arc de Triomphe was inaugurated in 1836 by French king, Louis-Philippe, who dedicated it to the armies of the Revolution and the Empire. The Unknown Soldier was buried at the base of the arch in 1921. The flame of remembrance is rekindled every day at 18:30.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8737917,\"Long\":2.2950275,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905040.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15638,\"Title\":\"Champs Elysees\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4531,\"Title\":\"Champs Elysees Paris Night Illumination\",\"Description\":\"The Avenue des Champs-&Atilde;&permil;lys&Atilde;&copy;es is an avenue in the 8th arrondissement of Paris, 1.9 kilometres long and 70 metres  wide, running between the Place de la Concorde and the Place Charles de Gaulle, where the Arc de Triomphe is located. It is known for its theatres, caf&Atilde;&copy;s, and luxury shops, for the annual Bastille Day military parade, and as the finish of the Tour de France cycle race.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8716907,\"Long\":2.2996331,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/48_1522842449.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4537,\"Title\":\"Concorde Square\",\"Description\":\"The place was designed by Ange-Jacques Gabriel in 1755 as a moat-skirted octagon between the Champs-Elys&Atilde;&copy;es to the west and the Tuileries Garden to the east. Decorated with statues and fountains, the area was named the Place Louis XV to honor the king at that time. The square showcased an equestrian statue of the king, which had been commissioned in 1748 by the city of Paris, sculpted mostly by Edm&Atilde;&copy; Bouchardon, and completed by Jean-Baptiste Pigalle after the death of Bouchardon.\\r\\n\\r\\nAt the north end, two magnificent identical stone buildings were constructed. Separated by the rue Royale, these structures remain among the best examples of Louis Quinze style architecture. Initially, the eastern building served as the French Naval Ministry. Shortly after its construction, the western building became the opulent home of the Duc d&#039;Aumont. It was later purchased by the Comte de Crillon, whose family resided there until 1907. The famous luxury H&Atilde;&acute;tel de Crillon, which currently occupies the building, took its name from its previous owners.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8656331,\"Long\":2.3212357,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/21_1522905881.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14457,\"Title\":\"Concorde Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4382,\"Title\":\"French crepe\",\"Description\":\"Crepe, also known as the Galette de Sarrasin is one of the extremely famous french dish. There are two types of crepes namely, savory crepes, also called as galettes are made of buckwheat flour and sweet crepes, made from wheat flour. One will find crepes on every corner as the perfect snack. Some offers creative crepe fillings such as potato, smoked herring and heriing roe.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8916339,\"Long\":2.3742211,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/French_crepe_20822_1521119465.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15634,\"Title\":\"Grand Place and the legendary Mannekin Pis statue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20409,\"Title\":\"Flower Clock\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20410,\"Title\":\"Jet d\\u00e2\\u20ac\\u2122Eau\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":17983,\"Title\":\"les invalides\",\"Description\":\"Les Invalides, in full H&amp;ocirc;tel National des Invalides, formerly H&amp;ocirc;tel Royal des Invalides, an extensive complex of 17th-century structures and courtyards in Paris designed for the care and housing of disabled veterans and as a place of worship. Parts of Les Invalides were later converted into museums and into tombs for Napoleon I and others. Situated on the Left Bank of the Seine, the complex faces a gently sloping esplanade, about 1,470 feet (450 metres) in length and 810 feet (250 metres) in breadth, that ends at the Quai d&amp;rsquo;Orsay and the Alexandre III Bridge.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/les_invalides_th_20822_1606139719.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3132,\"Title\":\"Louvre Museum\",\"Description\":\"The Louvre Museum is one of the finest art galleries in the world. The museum have  thousands of classic and modern masterpieces, also the icing on the cake of French culture and a evidence to European art history.It is the most visited art gallery in the world. The Louvre Museum holds many of Western Civilization&amp;#039;s most famous masterpieces, including the Mona Lisa by Leonardo da Vince.The Museum has 30,000 artworks in 60,000 sq.m. exhibition space in three sections: the Denon, Richelieu, and Sully wings.Each wing has more than 70 rooms displaying paintings and objects of art, plus there are enormous halls filled with sculptures.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8606111,\"Long\":2.337644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Louvre_Museum_20822_1517549990.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20407,\"Title\":\"La Vall\\u00c3\\u00a9e Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8686,\"Title\":\"Mus&eacute;e du Parfum\",\"Description\":\"The Mus&amp;eacute;e du Parfum, also known as the Fragonard Mus&amp;eacute;e du Parfum, is a French private museum of perfume located at 9 rue Scribe, in the 9th arrondissement of Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Mus&Atilde;&copy;e_du_Parfum_20822_1553604712.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3147,\"Title\":\"Musee d&#039;Orsay\",\"Description\":\"Musee d&amp;#039;Orsay is the world&amp;#039;s most visited Museum.It houses the largest collection of painting, sculpture, and decorative objects produced between 1848-1914 &amp;amp; showcasing many of the most remarkable works of the early modern era.It give visitors a detailed and breathtaking look at the birth of modern painting, sculpture, design, and even photography, the Orsay&amp;#039;s permanent collection spans from neoclassicism and romanticism to impressionism, expressionism, and art design.Musee d&amp;#039;Orsay also have masterpieces by artists including Ingres, Delacroix, Monet, Degas, Manet, Gaugin, Toulouse-Lautrec, and Van Gogh.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8599614,\"Long\":2.3265614,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Musee_d&#039;Orsay_20822_1517561860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3141,\"Title\":\"Notre Dame Cathedral\",\"Description\":\"The Notre Dame Cathedral is the most visited site in Paris.It is a Gothic architecture masterpiece &amp;amp; also the focus of Catholic Paris for 700 years.The work on the cathedral started on 1163 by Maurice de Sully, who was the bishop of Paris at the time. It took 182 years to complete this building in the summer of 1345. The name Notre Dame means &amp;quot;Our Lady&amp;quot; in French, and is frequently used in the names of Catholic church buildings in Francophone countries.In the Cathedral there are vast displays of artwork, furniture and many valuable items that mirror the Nio-Gothic design. Tourists are welcomed into the cathedral to view and enjoy these pieces for a small entrance fee. They are also able to attend Mass, which is held three times a day and a popular attraction for Christian visitors.\\r\\nIn the surroundings of Cathedral there are a number of stunning Parisian Hotels  which are fortunate enough to enjoy magnificent views of the cathedral in it&amp;#039;s entirety.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8529682,\"Long\":2.3499021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/38_1517564272.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14458,\"Title\":\"Opera House\",\"Description\":\"&lt;p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(85, 87, 91) font-size: 16px text-align: left font-family: Times&quot;&gt;Take an incredible walking tour of the Palais Garnier, Paris&#039; premier opera house, to see one of the largest opera houses in Europe. The Opera Garnier, as it is often called, inspired the setting for the famous musical, &#039;Phantom of the Opera.&#039; During the tour, your expert guide will show you the Grand Foyer, the sumptuous main staircase (Grand Escalier), the Member&#039;s Rotunda and the auditorium itself. Enjoy the opulent Neo-Baroque d&Atilde;&copy;cor of this beautiful building, designed by French architect Charles Garnier in the late 19th century.&lt;\\/span&gt;&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581410975.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":9758,\"Title\":\"Opera house\",\"Description\":\"The Palais Garnier  is a 1,979-seat opera house, which was built from 1861 to 1875 for the Paris Opera. It was called the Salle des Capucines, because of its location on the Boulevard des Capucines in the 9th arrondissement of Paris, but soon became known as the Palais Garnier, in recognition of its opulence and its architect, Charles Garnier. The theatre is also often referred to as the Op&Atilde;&copy;ra Garnier and historically was known as the Op&Atilde;&copy;ra de Paris or simply the Op&Atilde;&copy;ra, as it was the primary home of the Paris Opera and its associated Paris Opera Ballet until 1989, when the Op&Atilde;&copy;ra Bastille opened at the Place de la Bastille. The Paris Opera now uses the Palais Garnier mainly for ballet.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/2466_1560238581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20408,\"Title\":\"Orientation tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4380,\"Title\":\"Paris by Night\",\"Description\":\"Paris is called the City of Light, is a bustling city in itself, seems to come to life once the sun goes down. With endless possibilities to enjoy the nightlife, this is an all-hours town. Discover Paris, city of lights, and its most beautiful monuments shining at nightfall. As soon as the sun sets, even the Eiffel Tower starts twinkling, with its sparkling LED lights, at the top of each hour. Paris&amp;rsquo;s best nighttime venues are to be found throughout, packed with clubs, bars and cafes to enjoy nocturnal atmosphere of the city.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":47.9965551,\"Long\":0.1931942,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/Paris_by_Night_20822_1521120460.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4381,\"Title\":\"Seine cruise\",\"Description\":\"Cruising through Paris on the Seine River is undoubtedly one of the most atmospheric and romantic ways to soak in the city&amp;rsquo;s striking beauty, historic architecture, and famous monuments. Here are your options when it comes to cruising the Seine. Seine cruise is a very popular way to see Paris which allow you to take in many of the highlights of the city as you float along the famous Seine River, the main artery of the City of Light, Paris.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.597768,\"Long\":2.386897,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185210.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15635,\"Title\":\"St. Michaels Church\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591616417.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20411,\"Title\":\"UN Building\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14454,\"Title\":\"Flower Clock\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1121\\/sightseeing\\/4539_1591685431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14453,\"Title\":\"Orientation Tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15636,\"Title\":\"Orientayion tour of Geneva\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1121,\"CityName\":\"Annemasse\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14439,\"Title\":\"Campanile\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14440,\"Title\":\"Murano Glass Showroom\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591685758.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15637,\"Title\":\"St. Marks square with the Basilica\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32390\\/sightseeing\\/4539_1591615564.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15632,\"Title\":\"The St. Marks Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32390,\"CityName\":\"Padova\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"206050\",\"Title\":\"Home Destination &acirc;&euro;&ldquo; London.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;13:30 HRS: &lt;\\/strong&gt;Arrive in London and transfer to your hotel.&lt;strong&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;15:00 HRS: &lt;\\/strong&gt;Check into your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;17:00 HRS:&lt;\\/strong&gt; Free time to Explore on your own at Oxford Street.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:30 HRS:&lt;\\/strong&gt; Dinner at on own&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in London &amp;ndash; Hotel Quality Wembly or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1270,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206051\",\"Title\":\"London.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 HRS: &lt;\\/strong&gt;After breakfast, enjoy a guided city tour of London.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:30 HRS:&lt;\\/strong&gt; Lunch at on own&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:30 HRS:&lt;\\/strong&gt; Visit Madame Tussauds War&amp;nbsp;Museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;17:30 HRS:&lt;\\/strong&gt; Visit London Eye.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:30 HRS:&lt;\\/strong&gt; Dinner at on own&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in London &amp;ndash; Hotel Quality Wembly or Similar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":987,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":700,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206052\",\"Title\":\"London.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 HRS: &lt;\\/strong&gt;After breakfast, visit the Tower of London.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:30 HRS:&lt;\\/strong&gt; Lunch at on own&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:30 HRS:&lt;\\/strong&gt; Visit British Museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:30 HRS:&lt;\\/strong&gt; Dinner on their own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in London &amp;ndash; Hotel Quality Wembly or Similar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1802,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":247,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206053\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206054\",\"Title\":\"London - Amsterdam.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 HRS: &lt;\\/strong&gt;After breakfast, check out and depart to Airport to board your flight to Amsterdam.&lt;strong&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:00 HRS: &lt;\\/strong&gt;Check into your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;17:30 HRS:&lt;\\/strong&gt; Board your glass-topped boat for an exciting Amsterdam canal cruise&lt;strong&gt;.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;20:00 HRS:&lt;\\/strong&gt; Depart to your Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Amsterdam Area. NH Luvreenhost or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":979,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486565,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4385,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4386,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20405,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7611,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4369,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206055\",\"Title\":\"Amsterdam Area - Zaanse Schans &acirc;&euro;&ldquo; Kukenhof or Madurodam - Amsterdam Area.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 HRS: &lt;\\/strong&gt;After breakfast, Visit Zaanse Schans Cheese &amp;amp; Clog Factory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:00 HRS: &lt;\\/strong&gt;Lunch at on Own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;15:00 HRS: &lt;\\/strong&gt;Visit Keukenhof Tulip Gardens&amp;ndash; the largest spring garden in the world.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Bulbs of colorful tulips bloom only till May 16th. Be enchanted by the indoor floral displays.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;OR after 16th May Visit Madurodam - where you can see most of Holland in miniature, replicated in minute detail on a 1:25 scale.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;21:00 HRS:&lt;\\/strong&gt; Depart to your Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Amsterdam Area. NH Luvreenhost or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":979,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486565,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8687,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20406,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7605,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15630,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7611,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7606,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206056\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":979,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206057\",\"Title\":\"Amsterdam Area - Brussels &acirc;&euro;&ldquo; Paris.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;strong&gt;08:00 HRS: &lt;\\/strong&gt;After breakfast, Check out &amp;amp; depart to Brussels.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:30 HRS:&lt;\\/strong&gt; Visit Atomium Structure for a photo stop. Walking Tour of Brussels.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the world-renowned Grand Place and the legendary Mannekin Pis statue. Drive past St. Michaels Church&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:00 HRS: &lt;\\/strong&gt;Lunch on its own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:00 HRS:&lt;\\/strong&gt; Depart for Paris.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;18:00 HRS:&lt;\\/strong&gt; Enjoy a romantic Seine cruise as we sail past some of the historical monuments on the river Seine.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on their own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Paris &amp;ndash; Hotel Appart City or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486566,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206058\",\"Title\":\"Paris.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;10:00 HRS: &lt;\\/strong&gt;After breakfast, City tour of Paris, which includes the Alexander Bridge, Arc de Triomphe,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Concorde Square, Opera House, and much more.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:00 HRS: &lt;\\/strong&gt;Lunch on its own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:00 HRS: &lt;\\/strong&gt;Visit Eiffel Tower &amp;ndash; Level 3, from where you will have a splendid view of this beautiful city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;16:00 HRS: &lt;\\/strong&gt;Visit Champs Elysees. The Avenue des Champs-Elys&amp;eacute;es is probably the most famous avenue in the world. This impressive street stretches from the Place the la Concorde to the Place Charles de Gaulle, the site of the Arc de Triomphe.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:30 HRS: &lt;\\/strong&gt;Dinner on their own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;20:30 HRS: &lt;\\/strong&gt;Paris by Night Tour. Admire Paris&amp;#39;s spectacular nighttime scenery and enjoy sightings of monuments including the Illumination of the Eiffel Tower.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;22:00 HRS: Optional:&lt;\\/strong&gt; Lido Show. Tonight, you have a chance to experience the glamour of the famous Lido Show &amp;ndash; an unforgettable, music and dance extravaganza.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;23:00 HRS:&lt;\\/strong&gt; Enjoy the Lido Show.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;01:00 HRS:&lt;\\/strong&gt; Depart to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Paris &amp;ndash; Hotel Appart City or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486566,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3129,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14455,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206059\",\"Title\":\"Paris &acirc;&euro;&ldquo; Disney (Optional)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;strong&gt;10:00 HRS: &lt;\\/strong&gt;After breakfast, free time for shopping at La Vall&amp;eacute;e Village.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Just&amp;nbsp; 5 minutes from Disneyland Paris,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;La Vall&amp;eacute;e Village brings together 110 fashion and luxury boutiques offering the trendiest products from their previous collections at prices reduced by at least 33%* and often more, all year round,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Including Sundays.OR &lt;strong&gt;Optional&lt;\\/strong&gt; Disney Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;11:00 HRS: &lt;\\/strong&gt;Join us for some fun, adventure, and entertainment on our tour to Disney Park and enjoy the many rides.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;OR you can visit the Disney Studios and be amazed by the stunning stunt shows, watch a film being made and see real-life sets where famous movies were created.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;18:00 HRS:&lt;\\/strong&gt; Return to Paris from Disney.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on their own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Paris &amp;ndash; Hotel Appart City or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486566,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2226,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3155,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9756,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14456,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4536,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15638,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4531,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15631,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14457,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3129,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20686,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4382,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15634,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20409,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20410,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":17983,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3132,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20407,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8686,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3147,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3141,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14458,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9758,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20408,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4380,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14455,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4381,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15635,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20411,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4379,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206060\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206061\",\"Title\":\"Paris &acirc;&euro;&ldquo; Geneva &acirc;&euro;&ldquo; Annemasse.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;&lt;strong&gt;08:00 HRS: &lt;\\/strong&gt;After breakfast, Check out &amp;amp; depart to Geneva.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:00 HRS: &lt;\\/strong&gt;Lunch on Own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;15:00 HRS: &lt;\\/strong&gt;Orientation tour of Geneva. View Flower Clock, UN Building, Jet d&amp;rsquo;Eau &amp;amp; many more sights.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on their own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Annemasse &amp;ndash; Hotel Apart City or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1121,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14454,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14453,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15636,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206062\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1121,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206063\",\"Title\":\"Annemasse &acirc;&euro;&ldquo; Lucerne &acirc;&euro;&ldquo; Mt.Titlis - Engelberg.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;&lt;strong&gt;08:00 HRS: &lt;\\/strong&gt;After breakfast at your hotel, we take you on one of the most memorable experiences of your Europe tour &amp;ndash; visiting Lucerne &amp;amp; Mt. Titlis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:00 HRS:&lt;\\/strong&gt; Orientation tour of Lucerne. You will visit the Lion Monument and the Kapell Brucke (wooden bridge).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Here you will also have some free time to shop for famous Swiss watches, knives, and chocolates.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;12:30 HRS:&lt;\\/strong&gt; Lunch on its own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:30 HRS:&lt;\\/strong&gt; Arrive Engelberg &amp;amp; adventure awaits you in an ALL NEW cable-car ride up to Mt. Titlis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Witness the worlds first revolving cable car ride, a truly once-in-a Life time experience. Remain spellbound as you&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;ascend the snow-clad mountains. Experience the snow and ice on top of Mt. Titlis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At 3,020 meters a breathtaking panorama unfolds.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Do not forget to visit the new attraction &amp;ldquo;Cliff Walk&amp;rdquo;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;16:45 HRS:&lt;\\/strong&gt; Descend to Engelberg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Engelberg &amp;ndash; Hotel Cathrin or Similar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4383,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7624,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4400,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7625,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206064\",\"Title\":\"Engelberg &acirc;&euro;&ldquo; Mt.Jungfraujoch (Optional) &acirc;&euro;&ldquo; Interlaken &acirc;&euro;&ldquo; Engelberg.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 HRS: &lt;\\/strong&gt;After breakfast, the day is free at leisure in Interlaken to do some Sports Activities&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;OR &lt;strong&gt;Optional:&lt;\\/strong&gt; Mt.Jungfraujoch.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:45 HRS:&lt;\\/strong&gt; Enjoy an adventurous ride to visit Jungfraujoch &amp;ndash; The Top of Europe, for a memorable encounter with snow and ice &amp;ndash; a genuine high-point of your tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be amazed at the scenic splendor that you see from aboard the cogwheel train, which takes you to a height of 3,454 meters to reach Jungfraujoch.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This is a trip to another world &amp;ndash; a wonderful world of eternal ice and snow. Experience the magic of the mountains and visit the Ice Palace on top of the longest glacier in the Alps.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A visit to the Sphinx is also included.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:30 HRS:&lt;\\/strong&gt; Descend to Grindelwald.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;16:30 HRS:&lt;\\/strong&gt; Proceed to visit Interlaken, a charming city nestled between two lakes and surrounded by the splendid Bernese Oberland Mountains.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Treasure these wonderful moments as you drive back to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;18:00 HRS:&lt;\\/strong&gt; Depart for Engelberg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:30 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Engelberg &amp;ndash; Hotel Cathrin or Similar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486567,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20413,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20414,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20418,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20419,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20412,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20415,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20416,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20806,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14452,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14451,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20417,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206065\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":12,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206066\",\"Title\":\"Engelberg &acirc;&euro;&ldquo; Cockoo Clock Factory (Black Forest) - Rhine Falls &acirc;&euro;&ldquo; Zurich.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 HRS: &lt;\\/strong&gt;After breakfast, Check out &amp;amp; proceed to the Black Forest, surrounded by dark fir forests, fairy tale woods, and flowering meadows.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Here is the home of the world-famous cuckoo clock.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Get invited for a free demonstration and buy one for your home &amp;ndash; a prized possession.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;12:00 HRS:&lt;\\/strong&gt; Visit Cuckoo Clock Factory.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:00 HRS: &lt;\\/strong&gt;Lunch on its own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:00 HRS&lt;\\/strong&gt;: Depart to visit Rhine Falls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;15:00 HRS: &lt;\\/strong&gt;Visit Rhine Falls, The largest waterfalls in Europe.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;16:30 HRS:&lt;\\/strong&gt; Depart for Zurich.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Zurich &amp;ndash; IBIS Zurich City West or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30548,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486568,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14449,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20423,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14450,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20421,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20422,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4384,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4383,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20420,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4371,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20424,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206067\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":13,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":30548,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206068\",\"Title\":\"Zurich &acirc;&euro;&ldquo; Innsbruck.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":13,\"Program\":\"&lt;p&gt;&lt;strong&gt;08:30 HRS: &lt;\\/strong&gt;After breakfast, Check out &amp;amp; depart to Innsbruck.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;12:00 HRS: &lt;\\/strong&gt;Orientation tour of Innsbruck, See the Golden Roof and the Maria Theresien Strasse. Stroll on cobblestone pathways and get a feel of old-world European charm.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:30 HRS: &lt;\\/strong&gt;Lunch on own &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:30 HRS: &lt;\\/strong&gt;Proceed to Wattens, where you will visit the world-famous Swarovski Crystal Museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy a mesmerizing experience in the world of crystals.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;An experience that leaves you amazed at the dazzling glitter as you walk through this museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A great opportunity to buy a souvenir for your family.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Seefeld &amp;ndash; Hotel Waldhotel or Similar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12747,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20426,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7629,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14448,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14447,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20425,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206069\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":14,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12747,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206070\",\"Title\":\"Innsbruck &acirc;&euro;&ldquo; Venice &acirc;&euro;&ldquo; Padova.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":14,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 HRS: &lt;\\/strong&gt;After breakfast, Check out &amp;amp; depart to Venice.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:30 HRS: &lt;\\/strong&gt;Lunch on its own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:30 HRS: &lt;\\/strong&gt;Proceed to the pier and board your boat which will take you to the heart of the traditional city of Venice &amp;ndash; The St. Marks Square.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;15:30 HRS: &lt;\\/strong&gt;On arrival, admire The St. Marks square with the Basilica, Doges Palace, Campanile, and Bridge of Sighs. Also, visit the Murano Glass showroom.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;18:00 HRS:&lt;\\/strong&gt; Return back to Mestre.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Padova &amp;ndash; Hotel Alexander Palace or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32390,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486570,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14439,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14440,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15637,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15632,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206071\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":15,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32390,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206072\",\"Title\":\"Padova &acirc;&euro;&ldquo; Pisa &acirc;&euro;&ldquo; Florence\",\"MealPlanInclude\":\"Breakfast\",\"Day\":15,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 HRS: &lt;\\/strong&gt;After breakfast, Check out &amp;amp; depart to Pisa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;12:30 HRS: &lt;\\/strong&gt;Lunch on its own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:30 HRS:&lt;\\/strong&gt; Visit Leaning Tower of Pisa. Visit the Square of Miracles.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Photograph your family with the Leaning Tower in the backdrop. You also have some free time to shop.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:30 HRS:&lt;\\/strong&gt; Depart to Florence.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;16:00 HRS:&lt;\\/strong&gt; City tour of Florence, including the Duomo, the Campanile, the Baptistry with its Gates to Paradise, Piazza Della Signoria &amp;ndash; an open-air museum of sculptures,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The famous Ponte Vecchio bridge across the river Arno Drive to Piazzale Michelangelo, a square on top of a hill with its replica of the impressive statue of David and also get a birds-eye view of the city of Florence.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Florence &amp;ndash; Hotel First or Similar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":9544,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486571,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4337,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15659,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4338,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4332,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15641,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20427,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206073\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":16,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":9544,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206074\",\"Title\":\"Florence - Rome\",\"MealPlanInclude\":\"Breakfast\",\"Day\":16,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 HRS: &lt;\\/strong&gt;After breakfast, Check out &amp;amp; depart to Rome.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:00 HRS: &lt;\\/strong&gt;Lunch on its own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:30 HRS:&lt;\\/strong&gt; Check into your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;16:00 HRS:&lt;\\/strong&gt; Explore the heart of Rome by a walk around Trevi Fountain.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Rome &amp;ndash; G Hotel or Similar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32754,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3248,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20427,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206075\",\"Title\":\"Rome.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":17,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 HRS: &lt;\\/strong&gt;After breakfast,&lt;strong&gt; &lt;\\/strong&gt;City tour of Rome, which includes the Colosseum, a vast amphitheater, known for its gladiator fights.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the Vatican City &amp;amp; Also see the Victor Emmanuel Monument, the Roman Forum, and many more sights of this historic city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;13:00 HRS: &lt;\\/strong&gt;Lunch on its own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;14:30 HRS: &lt;\\/strong&gt;Free time to explore on your own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;19:00 HRS: &lt;\\/strong&gt;Dinner on own.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;20:00 HRS: &lt;\\/strong&gt;Proceed for Rome by Night Tour. There&amp;#39;s nothing quite like Rome at night.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;On this illuminating tour, you&amp;#39;ll be delighted as the sights of The Eternal City that amazed you by day simply astonish you by night.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Enjoy a relaxing panoramic tour of the city, and discover the magic of Rome&amp;rsquo;s most famous monuments lit up under a darkened sky.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Rome &amp;ndash; G Hotel or Similar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32754,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":486572,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8636,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3252,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7728,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6211,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14424,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14432,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3232,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5110,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6213,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3242,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3250,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7727,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3245,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14423,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14431,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6212,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7729,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3248,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14433,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14426,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14434,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"206076\",\"Title\":\"Rome &acirc;&euro;&ldquo; Home Destination.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":18,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 HRS:&lt;\\/strong&gt; After breakfast, Check out &amp;amp; depart to Rome Airport to board your flight back home.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32754,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":[],\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost for Ticket + Visa + Insurance, No Porterage included, Any increase in the rate of exchange leading to an increase in surface transportation and land arrangements, which may come into effect prior to departure. The tour price is subject to increase without notice if this rate changes substantially prior to the departure of your tour. Any expenses of personal nature such as laundry, wines, mineral water, food and drink not in the regular menu provided by us pay TV, mini-bar, telephone calls, etc. Meals other than what is mentioned in your Itinerary. Cost of excursions, city sightseeing, entrance fees, and local guides other than that mentioned in &amp;ldquo;Tour Cost Includes&amp;rdquo;, Overseas Mediclaim, Tips to Driver: EURO 2 per pax per day (Compulsory)GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;5% TCS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare \\/ Visa if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;17 Nights&amp;rsquo; Accommodation in 3 &amp;amp; 4 Star Hotel with Breakfast.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coach services as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Guided City tour of London.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Oxford Street in London.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Madame Tussauds Wax Museum.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit London Eye.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Tower of London.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit British Museum.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rome by Night Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;City tour of Rome.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;City tour of Florence.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Leaning Tower of Pisa.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Orientation tour of Venice with a visit to Murano Glass factory &amp;amp; Showroom.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Orientation tour of Innsbruck.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Swarovski Crystal Museum &amp;amp; Show Room.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Cuckoo Clock Factory in Drubba.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Rhine Falls, The largest waterfalls in Europe.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Mt.Titlis with Ice Flyer.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lucerne orientation tour, view the Lion Monument &amp;amp; Chapel Bridge.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Orientation tour of Interlaken.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Geneva orientation tour: view Flower Clock, UN Building, Jet d&amp;rsquo;Eau, and more.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Champs-Elysees, the most famous avenue in Paris.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit La Vall&amp;eacute;e Village Shopping Outlet in Paris.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;City tour Of Paris.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Eiffel Tower &amp;ndash; Level 3.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seine River Cruise.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Paris by Night Tour.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Atomium Structure photo stop in Brussels.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Tour of Brussels, view the Grand Place &amp;amp; Mannekin Pis Statue.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Amsterdam Canal Cruise.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Zaanse Schans Cheese &amp;amp; Clog Factory.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Keukenhof Tulip Gardens for tours before 16th May OR Madurodam.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Amsterdam By Night Tour.\\r\\n\\t&lt;p&gt;&lt;strong&gt;OPTIONAL:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;Mt.Jungfraujoch: EURO 190 per pax.&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;Lido with transfers &amp;ndash; 11 pm Show: EURO 120 per pax.&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;Disney Park with return transfers: EURO 120 per pax.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on a twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis or private basis if mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"206050\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[206050],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206051\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[206051],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206052\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[206052],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206053\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[206053],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206054\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[206054],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206055\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[206055],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206056\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[206056],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206057\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[206057],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206058\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[206058],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206059\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[206059],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206060\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[206060],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206061\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[206061],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206062\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[206062],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206063\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[206063],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206064\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[206064],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206065\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[206065],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206066\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[206066],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206067\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[206067],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206068\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[206068],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206069\":{\"14\":{\"Sequence\":[14],\"TPInvnSysId\":[206069],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206070\":{\"14\":{\"Sequence\":[14],\"TPInvnSysId\":[206070],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206071\":{\"15\":{\"Sequence\":[15],\"TPInvnSysId\":[206071],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206072\":{\"15\":{\"Sequence\":[15],\"TPInvnSysId\":[206072],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206073\":{\"16\":{\"Sequence\":[16],\"TPInvnSysId\":[206073],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206074\":{\"16\":{\"Sequence\":[16],\"TPInvnSysId\":[206074],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206075\":{\"17\":{\"Sequence\":[17],\"TPInvnSysId\":[206075],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"206076\":{\"18\":{\"Sequence\":[18],\"TPInvnSysId\":[206076],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','London,Amsterdam,Paris,Annemasse,Engelberg,Zurich,Innsbruck,Padova,Florence,Rome','London,Western Europe,UNITED KINGDOM,Amsterdam,Netherlands,Paris,France,Annemasse,Engelberg,Switzerland,Zurich,Innsbruck,Eastern Europe,Austria,Padova,Italy,Florence,Rome,Brussels,Geneva,Interlaken,Lucerne,Pisa,Venice',NULL,'15836,979,20822,1121,8778,30548,12747,32390,9544,32754',0,0,17,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'UNITED KINGDOM,Netherlands,France,Switzerland,Austria,Italy','469,154,76,210,14,107','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'grand-europe:-18-days-london-to-rome.',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (18,28854,1,12577,0,0,0,'Honeymoon,Adventure,Family,Romantic,Shopping and Nightlife,By Cab,Group Tours,Activites Tour,Luxury Tours,Educational Tours,Day Tour,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28854,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/engl-scotl-irel19_nights_20_days_1632739820.jpg\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The United Kingdom made up of England, Scotland, Wales, and Northern Ireland is an island nation in northwestern Europe. England &amp;ndash; the birthplace of Shakespeare and&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Beatles &amp;ndash; is home to the capital, London, a globally influential centre of finance and culture. England is also the site of Neolithic Stonehenge, Bath&amp;rsquo;s Roman spa, and centuries-old universities at Oxford and Cambridge.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"London\",\"DestinationPlacesSysId\":15836,\"SourcePlaces\":\"York\",\"SourcePlaceSysId\":36425,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"England-Scotland-Ireland19 Nights 20 Days\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4287\",\"SupplierName\":\"European Voyages\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Inner Line Permit,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours,Camping,Trekking\",\"PackageType\":\"Honeymoon,Adventure,Family,Romantic,Shopping and Nightlife,By Cab,Group Tours,Activites Tour,Luxury Tours,Educational Tours,Day Tour,Road Trip\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":36425,\"Title\":\"York\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":36425,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":8520,\"Title\":\"Edinburgh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8520,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":12775,\"Title\":\"Inverness\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":12775,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":10494,\"Title\":\"Glasgow\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":10494,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":2766,\"Title\":\"Belfast\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":2766,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":8222,\"Title\":\"Dublin\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8222,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":15524,\"Title\":\"Limerick\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":15524,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":14014,\"Title\":\"Killarney\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":14014,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":29356,\"Title\":\"Waterford\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":29356,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":5145,\"Title\":\"Cardiff\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":5145,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":21625,\"Title\":\"Plymouth\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":21625,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":15836,\"Title\":\"London\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":15836,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":476,\"Title\":\"Edinburgh Castle\",\"Description\":\"Edinburgh Castle is a historic fortress which dominates the skyline of Edinburgh, the capital city of Scotland, from its position on the Castle Rock. Archaeologists have established human occupation of the rock since at least the Iron Age, although the nature of the early settlement is unclear. There has been a royal castle on the rock since at least the reign of David I in the 12th century, and the site continued at times to be a royal residence until 1633. From the 15th century the castle&amp;#039;s residential role declined, and by the 17th century it was principally used as military barracks with a large garrison.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9488495,\"Long\":-3.1964396,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3316\\/thumb\\/Edinburgh Castle_614.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":676,\"Title\":\"Holyrood Palace\",\"Description\":\"The Palace of Holyroodhouse, commonly referred to as Holyrood Palace, is the official residence of the British monarch in Scotland, Queen Elizabeth II. Located at the bottom of the Royal Mile in Edinburgh, at the opposite end to Edinburgh Castle, Holyrood Palace has served as the principal residence of the Kings and Queens of Scots since the 16th century, and is a setting for state occasions and official entertaining.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9514548,\"Long\":-3.1795257,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3318\\/thumb\\/Holyrood Palace_36.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":679,\"Title\":\"Hop On Hop Off Tours\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6006\\/thumb\\/Hop On Hop Off Tours_35.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1367,\"Title\":\"Pitlochry\",\"Description\":\"Pitlochry is a burgh in the county of Perthshire in Scotland, lying on the River Tummel. It is administered as part of the council area of Perth and Kinross, and has a population of 2,776, according to the 2011 census. It is largely a Victorian town, which developed into a tourist resort after Queen Victoria and Prince Albert visited the area in 1842 and bought a highland estate at Balmoral, and the arrival of the railway in 1863. It remains a popular tourist resort today and is particularly known for its Pitlochry Festival Theatre, salmon ladder and as a centre for hillwalking, surrounded by mountains such as Ben Vrackie and Schiehallion. It is popular as a base for coach holidays. The town has retained many stone Victorian buildings, and the high street has an unusual period cast iron canopy over one side.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.953252,\"Long\":-3.188267,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3321\\/thumb\\/Pitlochry_149.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1496,\"Title\":\"Royal Yacht Britannia\",\"Description\":\"Her Majesty&amp;#039;s Yacht Britannia, also known as the Royal Yacht Britannia, is the former royal yacht of the British monarch, Queen Elizabeth II, in service from 1954 until 1997. She was the 83rd such vessel since King Charles II acceded to the throne in 1660, and is the second royal yacht to bear the name, the first being the racing cutter built for the Prince of Wales in 1893. During her 43-year career, the yacht travelled more than a million nautical miles around the globe. Now retired from royal service, Britannia is permanently berthed at Ocean Terminal, Leith in Edinburgh, Scotland. It is a popular visitor attraction with over 300,000 visits each year.\",\"CurrencyType\":0,\"CityId\":8520,\"CityName\":\"Edinburgh\",\"Lat\":55.9800299,\"Long\":-3.1795308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3319\\/thumb\\/Royal Yacht Britannia_296.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":891,\"Title\":\"Kilchurn Castle\",\"Description\":\"Kilchurn Castle is a ruined structure on a rocky peninsula at the northeastern end of Loch Awe, in Argyll and Bute, Scotland. It was first constructed in the mid-15th century as the base of the Campbells of Glenorchy, who extended both the castle and their territory in the area over the next 150 years. After the Campbells became Earls of Breadalbane and moved to Taymouth Castle, Kilchurn fell out of use and was in ruins by 1770. It is now in the care of Historic Environment Scotland and is open to the public in summer.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":56.403445,\"Long\":-5.050139,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3324\\/thumb\\/Kilchurn Castle_893.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1007,\"Title\":\"Luss\",\"Description\":\"Luss is a village in Argyll &amp;amp; Bute, Scotland, on the west bank of Loch Lomond. The village is within the Loch Lomond and The Trossachs National Park.\",\"CurrencyType\":0,\"CityId\":10494,\"CityName\":\"Glasgow\",\"Lat\":55.864237,\"Long\":-4.251806,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3323\\/thumb\\/Luss_15.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"205730\",\"Title\":\"London Airport - York\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;08:00 AM: Pick up from airport &amp;ndash; Transfer to York. &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;En-route visit, Stratford Upon Avon &amp;amp; Coventry - Shakespeare&amp;#39;s Five House Pass.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight York - Holiday Inn York Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36425,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20521,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20524,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20523,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20522,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205731\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36425,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205732\",\"Title\":\"York - Edinburgh\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;strong&gt;10:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:30 AM: Depart for Edinburgh &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;(Time for lunch)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;04:00 PM: Edinburgh City tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;06:00 PM: Drop back at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Edinburgh - Edinburgh Capital Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8520,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":676,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":679,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1367,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1496,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205733\",\"Title\":\"Edinburgh &acirc;&euro;&ldquo; Stirling Castle &acirc;&euro;&ldquo; Glasgow &acirc;&euro;&ldquo; Edinburgh.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;&lt;strong&gt;10:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:30 AM: Depart for Stirling Castle&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;11:45 AM: Visit Stirling Castle &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;01:30 PM: Depart for Glasgow&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;03:00 PM: Glasgow city tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;06:00 PM: Leave back for Edinburgh&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Edinburgh. &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8520,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":476,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":676,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":679,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1496,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1367,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205734\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8520,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205735\",\"Title\":\"Edinburgh &acirc;&euro;&ldquo; Pitlochry - Inverness\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;10:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:30 AM: Leave for Pitlochry&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;12:00 PM: Blair Athol Distillery Tour &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;02:00 PM: Depart for Inverness&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;04:00 PM: Inverness city tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Inverness - Royal Highland Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12775,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205736\",\"Title\":\"Inverness &acirc;&euro;&ldquo; Isle Of Skye - Inverness\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;strong&gt;10:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:30 AM: Leave for a full day trip to the Isle of Skye &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;12:00 PM: Visit Eilean Donan Castle (tickets will be provided by us)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;01:00 PM: Broadford&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;(Time for Lunch)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;02:30 PM: Continue to Loch Slapin, Elgol, Eilean Ban, etc.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;06:30 PM: Return to Inverness&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Inverness. &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12775,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205737\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12775,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205738\",\"Title\":\"Inverness &acirc;&euro;&ldquo; Loch Ness &acirc;&euro;&ldquo; Ben Nevis &acirc;&euro;&ldquo; Glencoe &acirc;&euro;&ldquo; Glasgow\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:00 AM: Inspiration &amp;ndash; The Clansman Cruise &amp;ndash; 1 hr &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;12:00 PM: Ben Nevis Gondola ride &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;02:00 PM: Leave and travel through Glencoe to Glasgow&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Glasgow - Alexander Thomson Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10494,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":891,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1007,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205739\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10494,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205740\",\"Title\":\"Glasgow &acirc;&euro;&ldquo; Cairyarn &acirc;&euro;&ldquo; Ferry &acirc;&euro;&ldquo; Belfast city tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;strong&gt;08:30 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;09:00 AM: Leave for Cairyarn&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;11:30 AM: Board ferry for Belfast&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;03:00 PM: Arrive Belfast&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;04:00 PM: Belfast city tour &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Belfast - Ibis Belfast City Centre or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2766,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205741\",\"Title\":\"Belfast &acirc;&euro;&ldquo; Giants Causeway &acirc;&euro;&ldquo; Titanic Belfast\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;10:00 AM: Depart for Giants Causeway&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;11:30 AM: Arrive Giants Causeway &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;02:00 PM: Drive back to Belfast&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;04:00 PM: Visit Titanic Belfast &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Belfast.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2766,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205742\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2766,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205743\",\"Title\":\"Belfast &acirc;&euro;&ldquo; Dublin &acirc;&euro;&ldquo; City Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Dublin city tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Dublin - The Belvedere Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8222,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205744\",\"Title\":\"Dublin &acirc;&euro;&ldquo; Avoca &acirc;&euro;&ldquo; Glendalough &acirc;&euro;&ldquo; Wicklow &acirc;&euro;&ldquo; Dublin.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Avoca &amp;ndash; (Mill tour -)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Glendalough - (Monastic City)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Wicklow National Park&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Dublin.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8222,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205745\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8222,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205746\",\"Title\":\"Dublin &acirc;&euro;&ldquo; Galway &acirc;&euro;&ldquo; Cliffs of Moher &acirc;&euro;&ldquo; Limerick.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;&lt;strong&gt;08:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Galway&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Cliffs of Moher - (tickets will be provided by us)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Limerick - The George Boutique Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15524,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205747\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":12,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15524,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205748\",\"Title\":\"Limerick - Killarney\",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Killarney National Park&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Killarney - Muckross Park Hotel &amp;amp; Cloisters Spa or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14014,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205749\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":13,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14014,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205761\",\"Title\":\"Killarney &acirc;&euro;&ldquo; Waterford &acirc;&euro;&ldquo; House of Waterford Crystal\",\"MealPlanInclude\":\"Breakfast\",\"Day\":13,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Waterford - Fitzwilton Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29356,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205762\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":14,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":29356,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205763\",\"Title\":\"Waterford &acirc;&euro;&ldquo; Rosslare &acirc;&euro;&ldquo; Ferry &acirc;&euro;&ldquo; Cardiff city tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":14,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;04:00 PM: Cardiff city tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Cardiff - Park Inn by Radisson Cardiff North Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5145,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20532,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20531,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205764\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":15,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5145,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205765\",\"Title\":\"Cardiff &acirc;&euro;&ldquo; Plymouth orientation tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":15,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Plymouth city tour&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight Plymouth - Jurys Inn Plymouth Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21625,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205766\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":16,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21625,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205767\",\"Title\":\"Plymouth &acirc;&euro;&ldquo; Stonehenge - London\",\"MealPlanInclude\":\"Breakfast\",\"Day\":16,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Breakfast at the Hotel&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Stonehenge.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight London - Comfort Inn Kings Cross Hotel or Similar.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1685,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205768\",\"Title\":\"London.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":17,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: London City Tour.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;02:30 PM: Free time at Oxford Street.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight London&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":986,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205769\",\"Title\":\"London.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":18,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:30 AM: Visit Madame Tussauds Was Museum.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;02:30 PM: Visit London Eye.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight London&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1010,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":987,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205770\",\"Title\":\"London. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":19,\"Program\":\"&lt;p&gt;&lt;strong&gt;10:00 AM: Visit British Museum.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;02:30 PM: Visit Tower of London.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":247,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1803,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"205771\",\"Title\":\"London &acirc;&euro;&ldquo; Home Destination.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":20,\"Program\":\"&lt;p&gt;&lt;strong&gt;09:00 AM: Check out and depart to Heathrow Airport to board your flight back home&amp;hellip;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28854\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"347041.44\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":401772,\"priceDoubleOcc\":\"347041.44\",\"priceSingleOcc\":867318.04,\"priceExtraBed\":\"468210.86\",\"priceWithoutBed\":\"357797.24\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"347041.44\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":421951,\"priceDoubleOcc\":\"377310.00\",\"priceSingleOcc\":897586.6,\"priceExtraBed\":\"468210.86\",\"priceWithoutBed\":\"357797.24\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"377310.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":409070,\"priceDoubleOcc\":\"357987.62\",\"priceSingleOcc\":878264.22,\"priceExtraBed\":\"468210.86\",\"priceWithoutBed\":\"357797.24\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"357987.62\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":445049,\"priceDoubleOcc\":\"411957.03\",\"priceSingleOcc\":932233.63,\"priceExtraBed\":\"468210.86\",\"priceWithoutBed\":\"357797.24\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"411957.03\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":517262,\"priceDoubleOcc\":\"520276.60\",\"priceSingleOcc\":1040553.2,\"priceExtraBed\":\"468210.86\",\"priceWithoutBed\":\"357797.24\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"520276.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":517262,\"priceDoubleOcc\":\"520276.60\",\"priceSingleOcc\":1040553.2,\"priceExtraBed\":\"468210.86\",\"priceWithoutBed\":\"357797.24\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"520276.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28854\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"331266.83\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":383510,\"priceDoubleOcc\":\"331266.83\",\"priceSingleOcc\":827894.5,\"priceExtraBed\":\"446928.55\",\"priceWithoutBed\":\"341533.73\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"331266.83\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":402772,\"priceDoubleOcc\":\"360159.54\",\"priceSingleOcc\":856787.21,\"priceExtraBed\":\"446928.55\",\"priceWithoutBed\":\"341533.73\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"360159.54\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":390476,\"priceDoubleOcc\":\"341715.45\",\"priceSingleOcc\":838343.12,\"priceExtraBed\":\"446928.55\",\"priceWithoutBed\":\"341533.73\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"341715.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":424820,\"priceDoubleOcc\":\"393231.71\",\"priceSingleOcc\":889859.38,\"priceExtraBed\":\"446928.55\",\"priceWithoutBed\":\"341533.73\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"393231.71\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":493751,\"priceDoubleOcc\":\"496627.67\",\"priceSingleOcc\":993255.34,\"priceExtraBed\":\"446928.55\",\"priceWithoutBed\":\"341533.73\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"496627.67\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-28\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":493751,\"priceDoubleOcc\":\"496627.67\",\"priceSingleOcc\":993255.34,\"priceExtraBed\":\"446928.55\",\"priceWithoutBed\":\"341533.73\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"496627.67\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span id=&quot;cke_bm_1953S&quot; style=&quot;display:none&quot;&gt;&amp;nbsp;&lt;\\/span&gt;3 Euro tip per person per day.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;No Porterage included.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any increase in the rate of exchange leading to an increase in surface transportation and land arrangements, which may come into effect prior to departure. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;The tour price is subject to increase without notice if this rate changes substantially prior to the departure of your tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any expenses of personal nature such as laundry, wines, mineral water, food and drink not in the regular menu provided by us pay TV, mini-bar, telephone calls, etc.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All Meals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of excursions, city sightseeing, entrance fees and local guides other than that mentioned in &amp;ldquo;Tour Cost Includes&amp;rdquo;.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Airfare &amp;amp; airport tax.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visa Fees.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Travel insurance.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passengers joining this tour must travel to\\/from the hub city at their own expense.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Due to major international events and trade fairs throughout Europe such as air-show, world athletic meet, ice skating championships, motor shows, Tour de France, etc. the hotels may be blocked out more than 2 years in advance.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In view of this, you may have to stay in hotels further away from the cities\\/ different city and the itinerary may have to be altered \\/amended.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We also reserve the right to substitute a hotel of a similar class if it is deemed advisable or necessary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For the convenience of our passengers, we will sometimes amend\\/alter the itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;However, all the services will remain the same?&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare \\/ Visa if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;span id=&quot;cke_bm_1953E&quot; style=&quot;display:none&quot;&gt;&amp;nbsp;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;&lt;span id=&quot;cke_bm_951S&quot; style=&quot;display:none&quot;&gt;&amp;nbsp;&lt;\\/span&gt;19 Nights&amp;rsquo; accommodation in 3 Star Hotel with continental breakfast&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mini Van as per itinerary&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All sightseeing as per Itinerary.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Stratford Upon Avon &amp;amp; Coventry Orientation tour. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Shakespeare&amp;#39;s Five House Pass. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation Edinburgh City tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Stirling Castle &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation Glasgow city tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Blair Athol Distillery Tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation Inverness city tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Full day trip to the Isle of Skye &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Eilean Donan &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Loch Slapin, Elgol, Eilean Ban &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Enjoy The Clansman Cruise &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ben Nevis Gondola ride &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Glencoe &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Ferry from Cairyarn to Belfast &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation Belfast city tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Giants Causeway &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Titanic Belfast &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Avoca Mill tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Glendalough Monastic City &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Wicklow National Park &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Galway &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Cliffs of Moher &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Killarney National Park &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation Cardiff city tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation Plymouth city tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Stonehenge &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation London City Tour &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Madame Tussauds Wax Museum &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit London Eye &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit British Museum &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Tower of London &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Free time at Oxford Street&amp;nbsp;&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on a twin sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis or private basis if mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;span id=&quot;cke_bm_951E&quot; style=&quot;display:none&quot;&gt;&amp;nbsp;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"205730\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[205730],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205731\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205731],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205732\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[205732],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205733\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[205733],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205734\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205734],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205735\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[205735],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205736\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[205736],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205737\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205737],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205738\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[205738],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205739\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[205739],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205740\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[205740],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205741\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[205741],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205742\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[205742],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205743\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[205743],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205744\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[205744],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205745\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[205745],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205746\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[205746],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205747\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[205747],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205748\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[205748],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205749\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[205749],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205761\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[205761],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205762\":{\"14\":{\"Sequence\":[14],\"TPInvnSysId\":[205762],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205763\":{\"14\":{\"Sequence\":[14],\"TPInvnSysId\":[205763],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205764\":{\"15\":{\"Sequence\":[15],\"TPInvnSysId\":[205764],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205765\":{\"15\":{\"Sequence\":[15],\"TPInvnSysId\":[205765],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205766\":{\"16\":{\"Sequence\":[16],\"TPInvnSysId\":[205766],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205767\":{\"16\":{\"Sequence\":[16],\"TPInvnSysId\":[205767],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205768\":{\"17\":{\"Sequence\":[17],\"TPInvnSysId\":[205768],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205769\":{\"18\":{\"Sequence\":[18],\"TPInvnSysId\":[205769],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205770\":{\"19\":{\"Sequence\":[19],\"TPInvnSysId\":[205770],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"205771\":{\"20\":{\"Sequence\":[20],\"TPInvnSysId\":[205771],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','York,Edinburgh,Inverness,Glasgow,Belfast,Dublin,Limerick,Killarney,Waterford,Cardiff,Plymouth,London','York,Western Europe,UNITED KINGDOM,Edinburgh,Inverness,Glasgow,Belfast,Dublin,Ireland,Limerick,Killarney,Waterford,Cardiff,Plymouth,London',NULL,'36425,8520,12775,10494,2766,8222,15524,14014,29356,5145,21625,15836',331267,520277,19,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'UNITED KINGDOM,Ireland','469,105','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'england-scotland-ireland19-nights-20-days',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (19,28482,1,12577,0,0,0,'Honeymoon,Adventure,Wildlife,Beach,Family,Sports,Festivals and Events,Romantic,Shopping and Nightlife,By Cab,Group Tours,Activites Tour,Day Tour,Ocean Cruises,River Cruises',NULL,1,1,0,'{\"package\":{\"TPId\":28482,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/european_panorama-van__train17_nights-18_days_1631531574.jpg\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Paris, France&amp;#39;s capital, is a major European city and a global center for art,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Fashion, gastronomy, and culture. Its 19th-century cityscape is crisscrossed by wide boulevards and the River Seine.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Beyond such landmarks as the Eiffel Tower and the 12th-century, Gothic Notre-Dame cathedral,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The city is known for its cafe culture and designer boutiques along the Rue du Faubourg Saint-Honor&amp;eacute;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Zurich\",\"DestinationPlacesSysId\":30548,\"SourcePlaces\":\"Paris\",\"SourcePlaceSysId\":20822,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"European Panorama-Van & Train:17 Nights-18 Days\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4287\",\"SupplierName\":\"European Voyages\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Inner Line Permit,Cab,Airport Transfers,Train Station Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours,Bonfire,Camping,Trekking\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Beach,Family,Sports,Festivals and Events,Romantic,Shopping and Nightlife,By Cab,Group Tours,Activites Tour,Day Tour,Ocean Cruises,River Cruises\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20822,\"Title\":\"Paris\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":20822,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":4304,\"Title\":\"Brussels\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":4304,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":979,\"Title\":\"Amsterdam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":979,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":9764,\"Title\":\"Frankfurt\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":9764,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":26286,\"Title\":\"Stuttgart\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":26286,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":12747,\"Title\":\"Innsbruck\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":12747,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":28574,\"Title\":\"Venice\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":28574,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":9544,\"Title\":\"Florence\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":9544,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":32754,\"Title\":\"Rome\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":32754,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":31489,\"Title\":\"La Spezia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":31489,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":17686,\"Title\":\"Milan\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":17686,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":8778,\"Title\":\"Engelberg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8778,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3129,\"Title\":\"Eiffel Tower,Paris\",\"Description\":\"The Eiffel Tower is located in Paris, France. The tower is 324m tall that includes the antennas at the top &amp;amp; the entire monument weights over 10,000 tonnes. It was the tallest structure in France untill 1973.There are 1,665 steps to the top of the Eiffel Tower. It is possibly to climb all the way up, but most people take the elevator.\\r\\nThere are 20,000 light bulbs on the Eiffel Tower. These are lit in the evening to make it sparkle every night.Repainting the tower uses around 60 tonnes of paint. This is done every seven years and takes 15 to 18 months to paint the entire structure.The first floor of the Eiffel Tower was converted to an ice skating rink in 2004.Over 7 million people visit the Eiffel Tower every year.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8583701,\"Long\":2.2944813,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521185649.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7606,\"Title\":\"Madurodam\",\"Description\":\"Madurodam is a miniature park and tourist attraction in the Scheveningen district of The Hague in the Netherlands. It is home to a range of 1:25 scale model replicas of famous Dutch landmarks, historical cities and large developments. The park was opened in 1952 and has since been visited by tens of millions of visitors. The entirety of net proceeds from the park go towards various charities in the Netherlands. In 2012, Madurodam celebrated its 60th anniversary.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/Madurodam_979_1545022928.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4369,\"Title\":\"Canal cruise\",\"Description\":\"Canal Cruise is a great way to get to know one of Europe&amp;rsquo;s most popular tourist destinations. Some of the most famous attractions include the Anne Frank House Museum, the Red-Light District, and the old Heineken factory. One will find the lovely canals, historic bridges and picturesque merchant houses that give the town its charming and iconic character. The Westerkerk church, the Negen Straatjes (&amp;lsquo;Nine Streets&amp;rsquo;) district and the Magere Brug (&amp;lsquo;Skinny Bridge&amp;rsquo;) on the Amstel river will be seen during canal boat cruise. Enjoy this ride and capture mesmerising seens in the camera.\",\"CurrencyType\":0,\"CityId\":979,\"CityName\":\"Amsterdam\",\"Lat\":52.3582334,\"Long\":4.891297,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/979\\/sightseeing\\/881_1521185403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20426,\"Title\":\"Basillica\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7629,\"Title\":\"Golden Roof\",\"Description\":\"The Goldenes Dachl is a landmark structure located in the Old Town section of Innsbruck, Austria. It is considered the city&amp;#039;s most famous symbol. Completed in 1500, the roof was decorated with 2,657 fire-gilded copper tiles for Emperor Maximilian I to mark his wedding to Bianca Maria Sforza.\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/Golden_Roof_12747_1545033542.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14448,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14447,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12747\\/sightseeing\\/4539_1591685707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20425,\"Title\":\"The St Marks Squares\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12747,\"CityName\":\"Innsbruck\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4337,\"Title\":\"Cathedral of Santa Maria del Fiore, Piazza del Duomo, Florence, Metropolitan City of Florence, Italy\",\"Description\":\"The Cattedrale di Santa Maria del Fiore  is the main church of Florence, Italy. Il Duomo di Firenze, as it is ordinarily called, was begun in 1296 in the Gothic style with the design of Arnolfo di Cambio and completed structurally in 1436 with the dome engineered by Filippo Brunelleschi. The exterior of the basilica is faced with polychrome marble panels in various shades of green and pink bordered by white and has an elaborate 19th-century Gothic Revival facade by Emilio De Fabris.The cathedral complex, located in Piazza del Duomo, includes the Baptistery and Giotto&amp;#039;s Campanile. These three buildings are part of the UNESCO World Heritage Sitecovering the historic centre of Florence and are a major attraction to tourists visiting Tuscany. The basilica is one of Italy&amp;#039;s largest churches, and until development of new structural materials in the modern era, the dome was the largest in the world.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.773145,\"Long\":11.2559602,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Cathedral_of_Santa_Maria_del_F_9544_1520929208.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15659,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4338,\"Title\":\"Florence Baptistery\",\"Description\":\"The Florence Baptistery, also known as the Baptistery of Saint John, is a religious building in Florence, Italy, and has the status of a minor basilica. The octagonal baptistery stands in both the Piazza del Duomo and the Piazza San Giovanni, across from Florence Cathedral and the Campanile di Giotto.The Baptistery is one of the oldest buildings in the city, constructed between 1059 and 1128 in the Florentine Romanesque style. Although the Florentine style did not spread across Italy as widely as the Pisan Romanesque or Lombard styles, its influence was decisive for the subsequent development of architecture, as it formed the basis from which Francesco Talenti, Leon Battista Alberti, Filippo Brunelleschi, and other master architects of their time created Renaissance architecture. The Baptistry is renowned for its three sets of artistically important bronze doors with relief sculptures. The south doors were created by Andrea Pisano and the north and east doors by Lorenzo Ghiberti. The east doors were dubbed by Michelangelo the Gates of Paradise.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.7731154,\"Long\":11.2550232,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Florence_Baptistery_9544_1520929041.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4332,\"Title\":\"Leaning Tower of Pisa, Pisa, Province of Pisa, Italy\",\"Description\":\"Leaning Tower of Pisa, Italian Torre Pendente di Pisa, medieval structure in Pisa, Italy, that is famous for the settling of its foundations, which caused it to lean 5.5 degrees from the perpendicular in the late 20th century. Extensive work was subsequently done to straighten the tower, and its lean was ultimately reduced to less than 4.0 degrees.\\r\\nThe bell tower, begun in 1173 as the third and final structure of the city&amp;rsquo;s cathedral complex, was designed to stand 185 feet high and was constructed of white marble.\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":43.722952,\"Long\":10.396597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/Leaning_Tower_of_Pisa,_Pisa,_P_9544_1520925745.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15641,\"Title\":\"Piazza dei Miracoli\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/9544\\/sightseeing\\/4539_1591615154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20427,\"Title\":\"Trevi Fountain.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":9544,\"CityName\":\"Florence\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":8636,\"Title\":\"Altar of the Fatherland\",\"Description\":\"The Vittorio Emanuele II Monument, also known as the Vittoriano, Il Vittoriano, or Altare della Patria, is a monument built in honor of Victor Emmanuel II, the first king of a unified Italy, located in Rome, Italy. It occupies a site between the Piazza Venezia and the Capitoline Hill.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Altar_of_the_Fatherland_32754_1552739442.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3252,\"Title\":\"Basilica of St. John Lateran\",\"Description\":\"The basilica of Saint John Lateran is the oldest church in Europe, was built under pope Melchiade (311-314). It is known as St John Lateran Archbasilica, as is it considered the mother church of the Roman Catholic faithful.\\r\\nDedicated to John the Baptist and John the Evangelist, the Basilica of St. John Lateran is the first among the four major basilicas of Rome.Due to the fact that the pope is also the bishop of Rome, Saint John in Lateran &amp;ndash; being seat of the bishop&amp;rsquo;s residence &amp;ndash; is known as &amp;ldquo;Cathedral of Rome and of the World&amp;rdquo;. \\r\\nThe Basilica&amp;rsquo;s interior is magnificent with colossal statues, mosaics and frescoes from the ceiling to the ground, with impressive columns. The two-story portico on the Basilica&amp;rsquo;s main fa&amp;ccedil;ade is the place where the Pope blesses the congregation. Statue of the Apostles and Jese is on the top part of the fa&amp;ccedil;ade, also dating from the eighteenth century.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8858811,\"Long\":12.505673,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Basilica_of_St._John_Lateran_32754_1517907627.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7728,\"Title\":\"Capitoline Hill\",\"Description\":\"The Capitolium or Capitoline Hill, between the Forum and the Campus Martius, is one of the Seven Hills of Rome. The hill was earlier known as Mons Saturnius, dedicated to the god Saturn.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Capitoline_Hill_32754_1545128819.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15658,\"Title\":\"Capri and Anacapri\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6211,\"Title\":\"Centro Storico &amp; the Spanish Steps\",\"Description\":\"The stairs take their name from Piazza di Spagna, the plaza at their base and one of Rome&amp;#039;s most typical squares. The stairs have been a favorite haunt of tourists, where they can sit and enjoy a gelato in the summer or warm their hands around cones of hot roasted chestnuts in the winter.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9023563,\"Long\":12.4896554,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Centro_Storico_&amp;_the_Spanish_S_32754_1530257503.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14424,\"Title\":\"City Tour of Rome\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3232,\"Title\":\"Colosseum\",\"Description\":\"The Flavian Amphitheatre, better known to the world as the Colosseum was built and finished in 80 AD for want of the Flavian dinasty. This popular tourist attraction is the most universally recognized icon in Rome. The reason why the Flavian emperors constructed it was to satisfy the public enthusiasm for games and spectacles.  \\r\\nThe largest structure surviving from ancient Rome, able to seat 40000 to 60000 people, divided into sectors which were accessible through staircases and galleries. The Colosseum was 186 meters long by 156 meters wide, an oval shape, although it appears to be almost circular. Despite damage by fire, earthquake, and neglect, the Colosseum still creates a powerful impression of its original form. \",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8902102,\"Long\":12.4922309,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Colosseum_32754_1517835925.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14432,\"Title\":\"City Tour of Rome\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685910.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5110,\"Title\":\"Hop-on Hop-off City Tour\",\"Description\":\"&quot;Meeting point - 32, Via Giovanni Amendola 15 minutes before the time confirmed.\\r\\nEnjoy a visit to the edge of the city in an open top bus where you can get on and off whenever you want. 12 stops are planned which cover the most important sites of the city: Via Giovanni Amendola - Santa Maria Maggiore Basilica (16, Via Liberiana) - Colosseum (Via dei Fori Imperiali in front of the metro) - Mouth of Truth\\/Circus Maximus - Piazza Venezia\\/Campidoglio (including Piazza d&#039;Aracoeli) - Piazza Navona - Pantheon (97, Corso Vittorio Emanuele) - Piazza San Pietro (13, Via della Conciliazione) - Castel Sant&#039;Angelo (Traspontina bus stop) - Vatican Museums (92, Via Crescenzio) - Piazza di Spagna\\/Ara Pacis (Piazza Augusto Imperatore) - Trevi Fountain (17, Via del Tritone) - Piazza Barberini (8, Via Barberini).\\r\\nNOTE: Ticket validity - 24 hours. Tour duration - 2 hours. Taped commentary. Assistance on board. Tour may change on public holidays and Sundays.&quot;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9102,\"Long\":12.3959,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/48_1526375003.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6213,\"Title\":\"Palatine Hill\",\"Description\":\"The Palatine Hill shows evidence of Rome&amp;#039;s earliest settlement: rock-cuttings found in front of the Temple of Cybele show human activity as long ago as the ninth century BC. Later, this was the site chosen by the emperors and great aristocratic families for their palaces.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8894036,\"Long\":12.4874662,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/_Palatine_Hill_32754_1530258131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3242,\"Title\":\"Pantheon\",\"Description\":\"The Pantheon is the most preserved and architectural masterpiece of ancient Rome.The meaning of the greek word Pantheon is &acirc;&euro;&oelig;honor all Gods&acirc;&euro;\\u009d. In fact the pantheon was first built as a Roman temple to all gods of pagan Rome. Its turning into a church in 609 AD. \\r\\n\\r\\nThe Present-day Pantheon is actually the 3rd version after the first 2 burned down in fires, built by the emperor Hadrian(A.D 117-138). The original Pantheon built by Marcus Vipsanius Agrippa in 31 BC and the second by Domitian\\r\\nThe most fascinating part of the Pantheon is its magnificent dome, with its famous hole in the top.\\r\\nThe Pantheon is a perfect sphere resting in a cylinder, at 43m wide and 43m high. The oculus, the only source of natural light in the Pantheon, is a round opening in the centre of the dome. It is 27 feet in diameter and open to the sky.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8986108,\"Long\":12.4768729,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Pantheon_32754_1517898670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3250,\"Title\":\"Piazza Navona\",\"Description\":\"The&amp;nbsp;Baroque-style&amp;nbsp;Piazza Navona is&amp;nbsp;one of the most charming and&amp;nbsp;popular squares in the city, defined during the fifteenth century.\\r\\n\\r\\nThe most beautiful parts of Piazza Navona are its three magnificent fountains, designed during the papacy of Gregory XIII: Fontana dei Quattro Fiumi(Fountain of the Four Rivers), Fontana del Moro(Seashell Fountain) and Fontana del Nettuno(Fountain of Neptune). Other eyecatcher building are the Baroque church of Sant&amp;#039;Agnese in Agone and the Palazzo Pamphilj.\\r\\n\\r\\nThe square is surrounded by terrace and restaurants giving Piazza Navona a lively and delightful atmosphere during the day. Visitors can also enjoy performances by street artists like magicians and dancers.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8991396,\"Long\":12.4733111,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Navona_32754_1517904700.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7727,\"Title\":\"Piazza Venezia\",\"Description\":\"Piazza Venezia is the central hub of Rome, Italy, in which several thoroughfares intersect, including the Via dei Fori Imperiali and the Via del Corso. It takes its name from the Palazzo Venezia, built by the Venetian Cardinal, Pietro Barbo alongside the church of Saint Mark, the patron saint of Venice.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Piazza_Venezia_32754_1545128615.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3245,\"Title\":\"Roman Forum\",\"Description\":\"The&amp;nbsp;Roman Forum was the hub&amp;nbsp;of political and social activity&amp;nbsp;of the Roman citizens, including public meetings, law courts, and combats in republican times and was lined with shops and open-air markets. It is one of the most beautiful and interesting places in the city.\\r\\n\\r\\nUnder the empire, it was the site of the most imposing temples and monument.\\r\\nAmong the structures surviving in whole are the temples(Saturn, Venus, Romulus, Vesta, etc.), the Mamertine Prison, the Curia (senate house), the Arch of Titus, the Arch of Septimius Severus, and the&amp;nbsp;Cloaca Maxima.\\r\\n\\r\\nAfter the fall of the Empire, the Roman Forum was forgotten and was buried under the earth. In the 6th century B.C. the area was drained by means of the Cloaca Maxima, one of the first sewer systems in the world.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8924623,\"Long\":12.485325,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Roman_Forum_32754_1517899192.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14431,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6212,\"Title\":\"Santa Maria Maggiore\",\"Description\":\"Rome&amp;#039;s oldest mosaics, as old as the fourth century, decorate the upper walls, and the floor is inlaid with colored stone in the style of the expert 12th-century artisans of the Lake Como region.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.8975986,\"Long\":12.4984084,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Santa_Maria_Maggiore_32754_1530257911.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7729,\"Title\":\"St. Peter&#039;s Basilica\",\"Description\":\"The Papal Basilica of St. Peter in the Vatican, or simply St. Peter&amp;#039;s Basilica, is an Italian Renaissance church in Vatican City, the papal enclave within the city of Rome.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/St._Peter&#039;s_Basilica_32754_1545129258.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14423,\"Title\":\"Rome By Night\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3248,\"Title\":\"Trevi Fountain\",\"Description\":\"The Trevi Fountain or Fontana di Trevi is the largest Baroque fountain in the city and the most stunning in the world. Certainly the most famous and photographed fountain in Rome, legend has it that whoever throws a coin into the pond will return safely to Rome. According to Wikipedia, an estimated 3 000 Euros are thrown into it and are collected every night and given to charity.\\r\\nIt was designed by a poet and philosopher called Nicola Salvi. He set to work in 1732 and died before the fountain was completed and inaugurated in May 1762. The fountain is a true wonder, a jewel of water and stone that is nestled between the palaces. The centre piece in the Trevi Fountain is the Greek sea God Oceanus, accompanied by sea-horses and Tritons (half men and half mermen).The Trevi Fountain is a fantastic work of art that is much more than a mere sculpture.\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":41.9009325,\"Long\":12.483313,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/Trevi_Fountain_32754_1517903957.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14425,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14426,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14433,\"Title\":\"Vatican City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14434,\"Title\":\"Victor Emmanuel Monument\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":32754,\"CityName\":\"Rome\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32754\\/sightseeing\\/4539_1591685857.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3291,\"Title\":\"Duomo di MilanoMilan Duomo\",\"Description\":\"Milans Duomo is the second largest Catholic cathedral and fifth largest Christian church in the world. The Duomo di Milano Milans magnificent Gothic cathedral is 157 meters long and 40000 people can fit comfortably within. The construction of the cathedral was commissioned by bishop Antonio da Saluzzo in 1385. Construction would continue until 1813 and final finishes were applied in 1965.\\r\\nThere are 3400 statues 700 figures and 135 gargoyles that decorate the Milan Duomo. The gold-colored statue of Mary Madonnina that stands on the cathedral&amp;rsquo;s tallest spire is the most famous and until 1959 marked the highest point in the city at 108.5 meters. After exploring the inside climb the stairs or take the lift to the rooftop to fully appreciate the architecture of the most renowned silhouette in the city.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4640976,\"Long\":9.1919265,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Duomo_di_Milano(Milan_Duomo)_17686_1518008386.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3294,\"Title\":\"Galleria Vittorio Emanuele II\",\"Description\":\"The Galleria Vittorio Emanuele II also called as &amp;ldquo;il salotto di Milano&amp;rdquo; Milan&amp;rsquo;s drawing room is an elegant 19th century shopping and dining gallery. This magnificent shopping arcade is one of the most interesting visits located between two of the two main monument of Milan: Duomo and La Scala.\\r\\nIt contains brands such as Prada Gucci and Louis Vuitton as well as other high-end luxurious boutiques. It also houses numerous decorated restaurants including McDonals and Cafe Biffi founded in 1867. \\r\\nThe structure built between 1865 and 1877 is formed by two arcades shaped like a Latin cross covered by a glass and iron dome.The central dome has an incredible mosaic that represents the continents of Asia Africa Europe and America.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4658434,\"Long\":9.1899401,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Galleria_Vittorio_Emanuele_II_17686_1518010179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6229,\"Title\":\"Milan Museum of Science and Technology\",\"Description\":\"The museum illustrates the history of science and technology from the work of early scientists into modern times. In all, more than 15,000 technical and scientific objects represent the history of Italian science, technology, and industry.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4617638,\"Long\":9.1710372,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Milan_Museum_of_Science_and_Te_17686_1530269432.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6231,\"Title\":\"Pinacoteca di Brera\",\"Description\":\"The Pinacoteca di Brera is a world-class museum with an astonishing assortment of fine paintings. Housed in more than 40 rooms, the collection is located upstairs from the Accademia di Belle Arti, a still-operating art school\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4719545,\"Long\":9.1878145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Pinacoteca_di_Brera_17686_1530269940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6228,\"Title\":\"Sant&#039;Ambrogio\",\"Description\":\"The present church is a masterpiece of Romanesque architecture.  There&amp;#039;s a lot to see here, beginning with the large portico, also from the ninth century, and the atrium, whose carved stone capitals and portal rank it high among Europe&amp;#039;s best examples of the Romanesque period.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4623292,\"Long\":9.175612,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Sant&#039;Ambrogio_17686_1530269085.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3292,\"Title\":\"Teatro alla Scala La Scala Opera House\",\"Description\":\"The Teatro alla Scala &amp;ldquo;Theatre at the Stairway&amp;rdquo; in short La Scala is among the worlds most famous and prestigious opera houses. Most of the greatest singers of the past 200 years have graced the Milanese stage. It was inaugurated in 1778 and was originally known as the New Royal-Ducal Theatre alla Scala. The stage of La Scala has provided a home to opera and ballet. It is known as the &amp;lsquo;Temple of Opera&amp;rsquo; \\r\\nThe architecture of building is neoclassical designed by Giuseppe Piermarini remodeled in 1867 modernized in 1921 restored in 1946 after having been bombed in World War II and renovated in 2004.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4674021,\"Long\":9.1895512,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Teatro_alla_Scala_(La_Scala_Op_17686_1518008409.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6230,\"Title\":\"Quadrilatero d&rsquo;Oro\",\"Description\":\"Also known as the Quadrilatero della moda, the Quadrilatero d&amp;rsquo;Oro is not only Milan&amp;rsquo;s most exclusive shopping district but one of the world&amp;rsquo;s most important centers for fashion as well. The &amp;ldquo;Golden Quadrilateral&amp;rdquo; encompasses several city blocks, most of which are ornamented with Neoclassical architecture.\",\"CurrencyType\":0,\"CityId\":17686,\"CityName\":\"Milan\",\"Lat\":45.4684945,\"Long\":9.1953068,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/17686\\/sightseeing\\/Quadrilatero_d&acirc;&euro;&trade;Oro__17686_1530269679.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202950\",\"Title\":\"India &acirc;&euro;&ldquo; Paris\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive Paris.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Illumination tour of Paris.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Paris.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202951\",\"Title\":\"Paris.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Paris City Tour &amp;amp; Eiffel Tower.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Paris&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14455,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15631,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3129,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202952\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202953\",\"Title\":\"Paris &acirc;&euro;&ldquo; Brussels.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Brussels City Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Brussels.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4304,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202954\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":4304,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202955\",\"Title\":\"Brussels - Amsterdam\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Visit Madurodam.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Amsterdam.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":979,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7606,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202956\",\"Title\":\"Amsterdam.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Amsterdam City Tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Canal Cruise.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Amsterdam&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":979,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4369,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202957\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":979,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202958\",\"Title\":\"Amsterdam &acirc;&euro;&ldquo; Cologne &acirc;&euro;&ldquo; Frankfurt.\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;Cologne Orientation tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cruise from Boppard to St. Oar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Frankfurt&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":9764,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202959\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":9764,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202966\",\"Title\":\"Frankfurt &acirc;&euro;&ldquo; Baden Baden &acirc;&euro;&ldquo; Stuttgart.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Day trip to Baden Baden.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Stuttgart.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26286,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202967\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26286,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202968\",\"Title\":\"Stuttgart &acirc;&euro;&ldquo; Witten&acirc;&euro;&trade;s &acirc;&euro;&ldquo; Innsbruck\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Swarovski Crystal Museum &amp;amp; Showroom.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Innsbruck.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12747,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20426,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7629,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14448,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14447,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20425,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202969\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12747,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202970\",\"Title\":\"Innsbruck &acirc;&euro;&ldquo; Venice.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Visit Venice Island by Boat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Venice.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28574,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202971\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28574,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202972\",\"Title\":\"Venice &acirc;&euro;&ldquo; Modena - Florence.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Visit Modena to See Ferrari Museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later afternoon, Guided city tour of Florence.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Florence.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":9544,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4337,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15659,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4338,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4332,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15641,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20427,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202973\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":9544,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202974\",\"Title\":\"Florence &acirc;&euro;&ldquo; Rome.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;Guided city tour of Rome.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Rome.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32754,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8636,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3252,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7728,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6211,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14424,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3232,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14432,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5110,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6213,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3242,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3250,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7727,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3245,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14431,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6212,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7729,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14423,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3248,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14426,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14433,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14434,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202975\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":12,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32754,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202976\",\"Title\":\" Rome - Pisa &acirc;&euro;&ldquo; La Spezia.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"&lt;p&gt;Visit Leaning Tower of Pisa.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later afternoon, Orientation tour of La Spezia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in La Spezia.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31489,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202977\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":13,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31489,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202978\",\"Title\":\"La Spezia &acirc;&euro;&ldquo; Milan.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":13,\"Program\":\"&lt;p&gt;Visit Village Outlet for Shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Milan.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17686,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3291,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3294,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6229,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6231,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6228,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3292,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6230,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202979\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":14,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":17686,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202980\",\"Title\":\"Milan &acirc;&euro;&ldquo; Lugano - Engberg.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":14,\"Program\":\"&lt;p&gt;Visit Swiss Miniature in Lugano.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our Car will leave from Milan to Lugano from Lugano will go to Lucerne &amp;amp; after dropping the guest in Lucerne our Vehicle will go back to Paris.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Engberg.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202981\",\"Title\":\"Engberg. (Swiss Pass)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":15,\"Program\":\"&lt;p&gt;Mount Titles.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Apartment in Gravenor.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202997\",\"Title\":\"Engberg &acirc;&euro;&ldquo; Jungfraujoch &acirc;&euro;&ldquo; Interlaken &acirc;&euro;&ldquo; Engberg. (Swiss Pass)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":16,\"Program\":\"&lt;p&gt;Mount Jungfraujoch.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Interlaken.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Apartment&amp;nbsp;in Gravenor.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20413,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20414,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20418,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20419,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20412,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20415,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20416,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14451,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20806,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20417,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14452,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202998\",\"Title\":\"Engberg &acirc;&euro;&ldquo; Rhine Falls &acirc;&euro;&ldquo; Zurich &acirc;&euro;&ldquo; Engberg. (Swiss Pass)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":17,\"Program\":\"&lt;p&gt;Visit Rhine Falls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Zurich.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in Apartment&amp;nbsp;in Gravenor.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4371,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4384,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4383,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20422,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202999\",\"Title\":\"Engberg &acirc;&euro;&ldquo; Zurich &acirc;&euro;&ldquo; India.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":18,\"Program\":\"&lt;p&gt;Depart to Zurich Airport to board your return flight.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28482\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"323089.71\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":370046,\"priceDoubleOcc\":\"323089.71\",\"priceSingleOcc\":795165.52,\"priceExtraBed\":\"424896.88\",\"priceWithoutBed\":\"328055.92\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"323089.71\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":558507,\"priceDoubleOcc\":\"605781.28\",\"priceSingleOcc\":1077857.09,\"priceExtraBed\":\"424896.88\",\"priceWithoutBed\":\"328055.92\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"605781.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":373357,\"priceDoubleOcc\":\"328055.92\",\"priceSingleOcc\":800131.73,\"priceExtraBed\":\"424896.88\",\"priceWithoutBed\":\"328055.92\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"328055.92\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":405000,\"priceDoubleOcc\":\"375521.35\",\"priceSingleOcc\":847597.1599999999,\"priceExtraBed\":\"424896.88\",\"priceWithoutBed\":\"328055.92\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"375521.35\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":469370,\"priceDoubleOcc\":\"472075.81\",\"priceSingleOcc\":944151.62,\"priceExtraBed\":\"424896.88\",\"priceWithoutBed\":\"328055.92\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"472075.81\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":469370,\"priceDoubleOcc\":\"472075.81\",\"priceSingleOcc\":944151.62,\"priceExtraBed\":\"424896.88\",\"priceWithoutBed\":\"328055.92\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"472075.81\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28482\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"308403.82\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":353226,\"priceDoubleOcc\":\"308403.82\",\"priceSingleOcc\":759021.64,\"priceExtraBed\":\"405583.38\",\"priceWithoutBed\":\"313144.28\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"308403.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":533120,\"priceDoubleOcc\":\"578245.76\",\"priceSingleOcc\":1028863.5800000001,\"priceExtraBed\":\"405583.38\",\"priceWithoutBed\":\"313144.28\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"578245.76\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":356386,\"priceDoubleOcc\":\"313144.28\",\"priceSingleOcc\":763762.1000000001,\"priceExtraBed\":\"405583.38\",\"priceWithoutBed\":\"313144.28\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"313144.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":386591,\"priceDoubleOcc\":\"358452.20\",\"priceSingleOcc\":809070.02,\"priceExtraBed\":\"405583.38\",\"priceWithoutBed\":\"313144.28\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"358452.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":448035,\"priceDoubleOcc\":\"450617.82\",\"priceSingleOcc\":901235.64,\"priceExtraBed\":\"405583.38\",\"priceWithoutBed\":\"313144.28\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"450617.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-13\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":448035,\"priceDoubleOcc\":\"450617.82\",\"priceSingleOcc\":901235.64,\"priceExtraBed\":\"405583.38\",\"priceWithoutBed\":\"313144.28\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"450617.82\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;3 Euro tip per person per day.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of Basic Travel Quota (BTQ) equivalent to USD 10,000.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;No Porterage included.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any increase in the rate of exchange leading to an increase in surface transportation and land arrangements, which may come into effect prior to departure. The tour price is subject to increase without notice if this rate changes substantially prior to the departure of your tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any expenses of personal nature such as laundry, wines, mineral water, food and drink not in the regular menu provided by us pay TV, mini-bar, telephone calls, etc.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All Meals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of excursions, city sightseeing, entrance fees and local guides other than that mentioned in &amp;ldquo;Tour Cost Includes&amp;rdquo;.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Airfare &amp;amp; airport tax.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visa Fees.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Travel insurance.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;NOTE: &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Passengers joining this tour must travel to\\/from the hub city at their own expense.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Due to major international events and trade fairs throughout Europe such as air-show, world athletic meet, ice skating championships, motor shows,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tour de France, etc. the hotels may be blocked out more than 2 years in advance. In view of this, you may have to stay in hotels further away from the cities\\/ different city and the itinerary may have to be altered \\/amended.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We also reserve the right to substitute a hotel of a similar class if it is deemed advisable or necessary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For the convenience of our passengers, we will sometimes amend\\/alter the itinerary. However, all the services will remain the same&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare \\/ Visa if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;17 nights accommodation in 3* Hotel.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Continental breakfast.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mini Van as per itinerary.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Swiss Rail Pass for 4 Days&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Illumination tour of Paris. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Paris City Tour. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Eiffel Tower. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Brussels City Tour. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Madurodam. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Amsterdam Canal Cruise. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Cologne Cathedral. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cruise from Boppard to St. Oar. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Baden Baden. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Swarovski Crystal Museum &amp;amp; Showroom. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Venice Island By Boat. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Ferrari Museum in Modena. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided City Tour of Florence. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided City Tour of Rome. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Leaning Tower of Pisa. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation Tour of La Spezia. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Village Outlet Shopping in Milan. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Swiss Miniature in Lugano.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mt.Titlis. (Swiss Pass)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mt.Jungfraujoch. (Swiss Pass)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Interlaken. (Swiss Pass)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Rhine Falls. (Swiss Pass)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Zurich. (Swiss Pass)&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All sightseeing as per Itinerary.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on a twin sharing basis as per itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Meals as per hotel plan.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis or private basis if mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"202950\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[202950],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202951\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[202951],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202952\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[202952],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202953\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[202953],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202954\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[202954],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202955\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[202955],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202956\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[202956],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202957\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[202957],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202958\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[202958],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202959\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[202959],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202966\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[202966],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202967\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[202967],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202968\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[202968],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202969\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[202969],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202970\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[202970],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202971\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[202971],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202972\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[202972],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202973\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[202973],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202974\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[202974],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202975\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[202975],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202976\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[202976],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202977\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[202977],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202978\":{\"13\":{\"Sequence\":[13],\"TPInvnSysId\":[202978],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202979\":{\"14\":{\"Sequence\":[14],\"TPInvnSysId\":[202979],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202980\":{\"14\":{\"Sequence\":[14],\"TPInvnSysId\":[202980],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202981\":{\"15\":{\"Sequence\":[15],\"TPInvnSysId\":[202981],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202997\":{\"16\":{\"Sequence\":[16],\"TPInvnSysId\":[202997],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202998\":{\"17\":{\"Sequence\":[17],\"TPInvnSysId\":[202998],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202999\":{\"18\":{\"Sequence\":[18],\"TPInvnSysId\":[202999],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Paris,Brussels,Amsterdam,Frankfurt,Stuttgart,Innsbruck,Venice,Florence,Rome,La Spezia,Milan,Engelberg','Paris,Western Europe,France,Brussels,Belgium,Amsterdam,Netherlands,Frankfurt,Germany,Stuttgart,Innsbruck,Eastern Europe,Austria,Venice,Italy,Florence,Rome,La Spezia,Milan,Engelberg,Switzerland,Baden,Pisa,Zurich,La Spezia-ortonovo',NULL,'20822,4304,979,9764,26286,12747,28574,9544,32754,31489,17686,8778',308404,605781,17,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'France,Belgium,Netherlands,Germany,Austria,Italy,Switzerland','76,21,154,83,14,107,210','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'european-panorama-van-train:17-nights-18-days',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (20,28357,1,12577,1,0,0,'Honeymoon,Adventure,Wildlife,Beach,Family,Weekend,Festivals and Events,Romantic,Shopping and Nightlife,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":28357,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/paris-switzerland9_nights-10_days_1631012104.jpg\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;These are Unforgettable Things of PARIS,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Famous landmarks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;When people think of Paris,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;They most likely picture its famous landmarks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Amazing French food.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Shopping opportunities.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The caf&amp;eacute; culture.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Impressive art collections.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Parks and gardens.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Fun day trips.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Lugano\",\"DestinationPlacesSysId\":34642,\"SourcePlaces\":\"Paris\",\"SourcePlaceSysId\":20822,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"PARIS-SWITZERLAND:9 Nights-10 Days\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4287\",\"SupplierName\":\"European Voyages\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Inner Line Permit,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Beach,Family,Weekend,Festivals and Events,Romantic,Shopping and Nightlife,Activites Tour\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20822,\"Title\":\"Paris\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":20822,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7609,\"Title\":\"Jet d&#039;Eau\",\"Description\":\"The Jet d&amp;#039;Eau is a large fountain in Geneva, Switzerland, and is one of the city&amp;#039;s most famous landmarks, being featured on the city&amp;#039;s official tourism web site and on the official logo for Geneva&amp;#039;s hosting of the 2008 UEFA Championships.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Jet_d&#039;Eau_10276_1545025500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7610,\"Title\":\"Lake\",\"Description\":\"Lake Geneva (or Lac L&amp;eacute;man) is a crescent-shaped lake shared between France and Switzerland, and overlooked by the Alps. Geneva, the Swiss city at its southern tip, is a diplomatic hub with luxury shops and a cobbled old town. On the southern, French side, is the spa town and resort of &amp;Eacute;vian-les-Bains. The chic, palm-studded Swiss Riviera stretches along the north shore from Lausanne to Montreux.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Lake__10276_1545025823.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7608,\"Title\":\"United Nations Office\",\"Description\":\"The United Nations Office at Geneva is the second-largest of the four major office sites of the United Nations. It is located in the Palais des Nations building constructed for the League of Nations between 1929 and 1938 at Geneva in Switzerland, and expanded in the early 1950s and late 1960s.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/United_Nations_Office_10276_1545025346.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15663,\"Title\":\"Bernina Express\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34642,\"CityName\":\"Lugano\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34642\\/sightseeing\\/4539_1591614288.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7734,\"Title\":\"Alprose Chocolate Factory Museum\",\"Description\":\"This museum is located in Caslano, Switzerland, which is regarded as home to the all famous Swiss chocolates. Interestingly, the location is actually the Alprose Chocolate Factory, which has been making wonderful chocolates for more than five decades, it is in this vicinity that the museum is housed so that tourists and locals can get to know more about the chocolate making history of Switzerland.\",\"CurrencyType\":0,\"CityId\":34642,\"CityName\":\"Lugano\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34642\\/sightseeing\\/Alprose_Chocolate_Factory_Muse_34642_1545132385.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":10276,\"Title\":\"Geneva\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":10276,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7609,\"Title\":\"Jet d&#039;Eau\",\"Description\":\"The Jet d&amp;#039;Eau is a large fountain in Geneva, Switzerland, and is one of the city&amp;#039;s most famous landmarks, being featured on the city&amp;#039;s official tourism web site and on the official logo for Geneva&amp;#039;s hosting of the 2008 UEFA Championships.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Jet_d&#039;Eau_10276_1545025500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7610,\"Title\":\"Lake\",\"Description\":\"Lake Geneva (or Lac L&amp;eacute;man) is a crescent-shaped lake shared between France and Switzerland, and overlooked by the Alps. Geneva, the Swiss city at its southern tip, is a diplomatic hub with luxury shops and a cobbled old town. On the southern, French side, is the spa town and resort of &amp;Eacute;vian-les-Bains. The chic, palm-studded Swiss Riviera stretches along the north shore from Lausanne to Montreux.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Lake__10276_1545025823.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7608,\"Title\":\"United Nations Office\",\"Description\":\"The United Nations Office at Geneva is the second-largest of the four major office sites of the United Nations. It is located in the Palais des Nations building constructed for the League of Nations between 1929 and 1938 at Geneva in Switzerland, and expanded in the early 1950s and late 1960s.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/United_Nations_Office_10276_1545025346.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15663,\"Title\":\"Bernina Express\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34642,\"CityName\":\"Lugano\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34642\\/sightseeing\\/4539_1591614288.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7734,\"Title\":\"Alprose Chocolate Factory Museum\",\"Description\":\"This museum is located in Caslano, Switzerland, which is regarded as home to the all famous Swiss chocolates. Interestingly, the location is actually the Alprose Chocolate Factory, which has been making wonderful chocolates for more than five decades, it is in this vicinity that the museum is housed so that tourists and locals can get to know more about the chocolate making history of Switzerland.\",\"CurrencyType\":0,\"CityId\":34642,\"CityName\":\"Lugano\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34642\\/sightseeing\\/Alprose_Chocolate_Factory_Muse_34642_1545132385.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":8778,\"Title\":\"Engelberg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8778,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7609,\"Title\":\"Jet d&#039;Eau\",\"Description\":\"The Jet d&amp;#039;Eau is a large fountain in Geneva, Switzerland, and is one of the city&amp;#039;s most famous landmarks, being featured on the city&amp;#039;s official tourism web site and on the official logo for Geneva&amp;#039;s hosting of the 2008 UEFA Championships.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Jet_d&#039;Eau_10276_1545025500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7610,\"Title\":\"Lake\",\"Description\":\"Lake Geneva (or Lac L&amp;eacute;man) is a crescent-shaped lake shared between France and Switzerland, and overlooked by the Alps. Geneva, the Swiss city at its southern tip, is a diplomatic hub with luxury shops and a cobbled old town. On the southern, French side, is the spa town and resort of &amp;Eacute;vian-les-Bains. The chic, palm-studded Swiss Riviera stretches along the north shore from Lausanne to Montreux.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Lake__10276_1545025823.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7608,\"Title\":\"United Nations Office\",\"Description\":\"The United Nations Office at Geneva is the second-largest of the four major office sites of the United Nations. It is located in the Palais des Nations building constructed for the League of Nations between 1929 and 1938 at Geneva in Switzerland, and expanded in the early 1950s and late 1960s.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/United_Nations_Office_10276_1545025346.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15663,\"Title\":\"Bernina Express\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34642,\"CityName\":\"Lugano\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34642\\/sightseeing\\/4539_1591614288.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7734,\"Title\":\"Alprose Chocolate Factory Museum\",\"Description\":\"This museum is located in Caslano, Switzerland, which is regarded as home to the all famous Swiss chocolates. Interestingly, the location is actually the Alprose Chocolate Factory, which has been making wonderful chocolates for more than five decades, it is in this vicinity that the museum is housed so that tourists and locals can get to know more about the chocolate making history of Switzerland.\",\"CurrencyType\":0,\"CityId\":34642,\"CityName\":\"Lugano\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34642\\/sightseeing\\/Alprose_Chocolate_Factory_Muse_34642_1545132385.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":34642,\"Title\":\"Lugano\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":34642,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15631,\"Title\":\"city tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1591615717.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14455,\"Title\":\"Paris City Tour\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(51, 51, 51) font-family: -apple-system, system-ui, &quot;Segoe UI&quot;, Roboto, &quot;Droid Sans&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif&quot;&gt;You will enjoy a city daytime tour or nighttime tour enjoying illuminated Paris while on a bus, stopping at Les Invalides, the famous Champs-Elysees, the shining Louvre Museum, the Paris Opera House, and more of its famous stops and locations. Discover at the same time the history and the evolution of Parisian architecture with the exclusive tablet with augmented reality. Then you&#039;ll go on a cruise along the historic Seine River with an audio guide, as you cruise past the illuminated Notre Dame Cathedral and the sparkling Eiffel Tower, which is your next stop. You will be granted skip-the-line access and enter the Eiffel Tower with priority, so you will gain a breathtaking view of the City of Lights and all its glory. It&#039;s a dazzling spectacle that you won&#039;t soon forget.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/4539_1581411140.png                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20686,\"Title\":\"Euro Disney Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4379,\"Title\":\"Val d&#039;Europe, France\",\"Description\":\"Val d&amp;#039;Europe is a shopping mall where there are over 150 shops catering to the every need of customer including, fashion, sport, new technology, culture, design, fine foods and French wines etc.  Apple Store, Lush, Pandora Store, Swarovski, L&amp;#039;Occitane en Provence, Desigual, La Grand R&amp;eacute;cr&amp;eacute; and many others brands are located inside the mall.   This popular Val D&amp;rsquo;Europe shopping Mall is packed with French high street shops, supermarkets and restaurants. It also provides the valet parking, a steward service to help you load shopping into your car.\",\"CurrencyType\":0,\"CityId\":20822,\"CityName\":\"Paris\",\"Lat\":48.8550983,\"Long\":2.7800922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20822\\/sightseeing\\/881_1521186147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7609,\"Title\":\"Jet d&#039;Eau\",\"Description\":\"The Jet d&amp;#039;Eau is a large fountain in Geneva, Switzerland, and is one of the city&amp;#039;s most famous landmarks, being featured on the city&amp;#039;s official tourism web site and on the official logo for Geneva&amp;#039;s hosting of the 2008 UEFA Championships.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Jet_d&#039;Eau_10276_1545025500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7610,\"Title\":\"Lake\",\"Description\":\"Lake Geneva (or Lac L&amp;eacute;man) is a crescent-shaped lake shared between France and Switzerland, and overlooked by the Alps. Geneva, the Swiss city at its southern tip, is a diplomatic hub with luxury shops and a cobbled old town. On the southern, French side, is the spa town and resort of &amp;Eacute;vian-les-Bains. The chic, palm-studded Swiss Riviera stretches along the north shore from Lausanne to Montreux.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Lake__10276_1545025823.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7608,\"Title\":\"United Nations Office\",\"Description\":\"The United Nations Office at Geneva is the second-largest of the four major office sites of the United Nations. It is located in the Palais des Nations building constructed for the League of Nations between 1929 and 1938 at Geneva in Switzerland, and expanded in the early 1950s and late 1960s.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/United_Nations_Office_10276_1545025346.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20806,\"Title\":\"La Gruyere Village & Castle\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14451,\"Title\":\"Orientation Tour of Lucerne\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20413,\"Title\":\"Bernese Oberland Mountains\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20414,\"Title\":\"Black Forest\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20418,\"Title\":\"Cuckoo Clock Factory.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20419,\"Title\":\"dark fir forests\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20412,\"Title\":\"Descend to Grindelwald.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20415,\"Title\":\"Fairy tales wood\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14452,\"Title\":\"MT.Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;span style=&quot;text-align: start color: rgb(26, 43, 73) font-family: &quot;GT Eesti&quot;, Arial, sans-serif font-size: 16px&quot;&gt;Join a memorable trip to Jungfraujoch and the Top of Europe! The World Heritage Site of the Swiss Alps is home to Europe&acirc;&euro;&trade;s highest train station.&lt;\\/span&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8778\\/sightseeing\\/4539_1581411238.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20416,\"Title\":\"flowering meadows\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20417,\"Title\":\"Rhine Falls\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":8778,\"CityName\":\"Engelberg\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15663,\"Title\":\"Bernina Express\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":34642,\"CityName\":\"Lugano\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34642\\/sightseeing\\/4539_1591614288.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7734,\"Title\":\"Alprose Chocolate Factory Museum\",\"Description\":\"This museum is located in Caslano, Switzerland, which is regarded as home to the all famous Swiss chocolates. Interestingly, the location is actually the Alprose Chocolate Factory, which has been making wonderful chocolates for more than five decades, it is in this vicinity that the museum is housed so that tourists and locals can get to know more about the chocolate making history of Switzerland.\",\"CurrencyType\":0,\"CityId\":34642,\"CityName\":\"Lugano\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34642\\/sightseeing\\/Alprose_Chocolate_Factory_Muse_34642_1545132385.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"202109\",\"Title\":\"India &acirc;&euro;&ldquo; Paris.&Acirc;&nbsp; (France)\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;13:30 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Arrive at &lt;strong&gt;CDG&lt;span style=&quot;color:blue&quot;&gt; &lt;\\/span&gt;&lt;\\/strong&gt;airport meet your local representative and transfer you to your Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;14:30 HRS:&amp;nbsp;&amp;nbsp; &amp;nbsp;Check in to the Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;16:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Day free at leisure.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;20:30 HRS:&amp;nbsp;&amp;nbsp; &amp;nbsp;Depart to visit The Midnight Lido Show (Optional)&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;21:30 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Mid Night Lido Show.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;23:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Lido show get over.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;23:30 HRS: Mid-night returns back to the hotel.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;Overnight in Paris&lt;\\/strong&gt;&lt;strong&gt;&lt;span style=&quot;color:#0000cc&quot;&gt;.&lt;\\/span&gt;&lt;\\/strong&gt;&lt;strong&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202110\",\"Title\":\"Paris City Tour &acirc;&euro;&ldquo; Eiffel Tower &acirc;&euro;&ldquo; Seine River Cruise.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;09:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; After breakfast depart for &lt;strong&gt;City Tour of Paris&lt;\\/strong&gt; which also includes&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;The &lt;strong&gt;Eiffel Tower&lt;\\/strong&gt; &lt;span style=&quot;color:black&quot;&gt;from the 3rd level &amp;amp;&lt;\\/span&gt; &lt;strong&gt;Seine River Cruise&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;Overnight in Paris&lt;span style=&quot;color:#0000cc&quot;&gt;.&lt;\\/span&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15631,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14455,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202111\",\"Title\":\"Euro Disney Park.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;09:00 HRS:&amp;nbsp;&amp;nbsp; After breakfast proceeds for a full-day excursion to &lt;strong&gt;Euro Disney&lt;\\/strong&gt; &lt;strong&gt;Park. &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;19:00 HRS:&amp;nbsp;&amp;nbsp; Depart for Hotel,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight in Paris&lt;span style=&quot;color:#0000cc&quot;&gt;.&lt;\\/span&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20686,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4379,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202112\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20822,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202113\",\"Title\":\"Paris &acirc;&euro;&ldquo; Geneva. (Switzerland)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;08:00 HRS: &amp;nbsp;&amp;nbsp; After breakfast, we will check out &amp;amp; proceed for Geneva.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;14:00 HRS:&amp;nbsp;&amp;nbsp; Arrive in Geneva and check into your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;16:00 HRS:&amp;nbsp;&amp;nbsp; Proceed further for a tour of Geneva.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It Includes &lt;strong&gt;Jet De Eau&lt;\\/strong&gt; famous water fountain on the lake, headquarters like &lt;strong&gt;WHO, ILO, Red Cross, UNICEF &amp;amp; &amp;nbsp;Broken chair. &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;Overnight in Geneva.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10276,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7609,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7610,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7608,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202114\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10276,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202115\",\"Title\":\"Geneva &acirc;&euro;&ldquo; Montreux - La Gruyere &acirc;&euro;&ldquo; Engelberg. \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;09:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; After breakfast, we will proceed to visit Montreux.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;14:00 HRS :&amp;nbsp;&amp;nbsp;&amp;nbsp;Depart to visit La Gruyere Village &amp;amp; Castle.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Arrive Gruyere. A visit to the castle is a journey across eight centuries of architecture, history, and culture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;18:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Board your coach for return back to Lucerne.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;Overnight in Engelberg&lt;span style=&quot;color:#0000cc&quot;&gt;.&lt;\\/span&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20806,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14451,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202116\",\"Title\":\"Engelberg.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;09:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; After breakfast, we will proceed for Mt.Titlis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;09:30 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Arrive at Titlis base &amp;amp; &amp;nbsp;board the World&amp;rsquo;s first revolving Cable Car to reach&lt;strong&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;Mt. Titlis on 10, 000 ft.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;11:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Arrive at &lt;strong&gt;Mt. Titlis on 10, 000 ft. Full-day excursion at Mt. Titlis.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;14:30 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Board your cable car to return back to Engelberg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:30 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Board your coach for Lucerne.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;16:30 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Arrive at Lucerne Visit &lt;strong&gt;Lion Monument&lt;span style=&quot;color:blue&quot;&gt; &lt;\\/span&gt;&lt;\\/strong&gt;and the &lt;strong&gt;Wooden Chapel Bridge.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;18:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Enjoy Shopping in Lucerne.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;Overnight in Engelberg&lt;span style=&quot;color:#0000cc&quot;&gt;.&lt;\\/span&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20413,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20414,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20418,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20419,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20412,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20415,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14452,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20416,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20417,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202117\",\"Title\":\"Engelberg&Acirc;&nbsp; &acirc;&euro;&ldquo; Rhine Falls &acirc;&euro;&ldquo; Zurich - Engelberg.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;09:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; After breakfast, we will proceed for Rhine Falls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;10:30 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Visit &lt;strong&gt;Rhine Falls.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;14:00 HRS:&amp;nbsp;&amp;nbsp;&amp;nbsp; Visit Zurich city.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;&amp;nbsp;Overnight in Engelberg&lt;span style=&quot;color:#0000cc&quot;&gt;.&lt;\\/span&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20417,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202118\",\"Title\":\"Engelberg &acirc;&euro;&ldquo; Jungfrau &acirc;&euro;&ldquo; Trummelbach Fall &acirc;&euro;&ldquo; Engelberg.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;09:00 HRS :&amp;nbsp; &amp;nbsp;&amp;nbsp;After breakfast we will proceed for Jungfrau.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;10:30 HRS :&amp;nbsp;&amp;nbsp;&amp;nbsp; Board your Jungfrau bahn&amp;nbsp; ( train ) to reach to visit &lt;strong&gt;JUNGFRAU.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;12:00 HRS :&lt;strong&gt;&lt;span style=&quot;color:blue&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;\\/span&gt;Arrive at JUNGFRAU&amp;nbsp; Top of the Europe&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;13:30 HRS :&amp;nbsp;&amp;nbsp;&amp;nbsp; Board your return train to Grindelwald Grund.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;17:00 HRS :&amp;nbsp;&amp;nbsp;&amp;nbsp; Depart for Trummelbach Falls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;17:15 HRS :&amp;nbsp;&amp;nbsp; Visit Trummelbach falls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;18:30 HRS :&amp;nbsp;&amp;nbsp; Visit Interlaken.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight in Engelberg&lt;span style=&quot;color:#0000cc&quot;&gt;.&lt;\\/span&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20412,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202119\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8778,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202120\",\"Title\":\"Engelberg &acirc;&euro;&ldquo; Lake of Lugano &acirc;&euro;&ldquo; Swiss Miniature &acirc;&euro;&ldquo; Lugano.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;09:00 HRS:&amp;nbsp;&amp;nbsp; After breakfast depart for Lugano to visit Swiss Miniature Park &amp;amp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Scenic Lake Lugano.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;11:00 HRS:&amp;nbsp;&amp;nbsp; On the way to Lugano we are passing through an 18 Km long tunnel of&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;St.Gothard which is known as Gothard Pass.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;12:00 HRS :&amp;nbsp;&amp;nbsp; Arrive Lugano &amp;amp; Visit Swiss Miniature.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;15:00 HRS :&amp;nbsp;&amp;nbsp; Visit the beautiful Lake of Lugano.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight in Lugano&lt;span style=&quot;color:#0000cc&quot;&gt;.&lt;\\/span&gt; &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34642,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15663,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7734,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"202121\",\"Title\":\"Lugano - Milan - India.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;09:00 HRS:&amp;nbsp; After breakfast check out &amp;amp; depart for Milan Airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Board your return flight to your onward destination.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34642,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28357\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"208906.87\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":241815,\"priceDoubleOcc\":\"208906.87\",\"priceSingleOcc\":520835,\"priceExtraBed\":\"280706.67\",\"priceWithoutBed\":\"215590.36\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"208906.87\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":252572,\"priceDoubleOcc\":\"225042.73\",\"priceSingleOcc\":536970.86,\"priceExtraBed\":\"280706.67\",\"priceWithoutBed\":\"215590.36\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"225042.73\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":248435,\"priceDoubleOcc\":\"218836.63\",\"priceSingleOcc\":530764.76,\"priceExtraBed\":\"280706.67\",\"priceWithoutBed\":\"215590.36\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"218836.63\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":269122,\"priceDoubleOcc\":\"249867.13\",\"priceSingleOcc\":561795.26,\"priceExtraBed\":\"280706.67\",\"priceWithoutBed\":\"215590.36\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"249867.13\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":310496,\"priceDoubleOcc\":\"311928.13\",\"priceSingleOcc\":623856.26,\"priceExtraBed\":\"280706.67\",\"priceWithoutBed\":\"215590.36\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"311928.13\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":310496,\"priceDoubleOcc\":\"311928.13\",\"priceSingleOcc\":623856.26,\"priceExtraBed\":\"280706.67\",\"priceWithoutBed\":\"215590.36\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"311928.13\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28357\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"199411.11\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":230824,\"priceDoubleOcc\":\"199411.11\",\"priceSingleOcc\":497160.69,\"priceExtraBed\":\"267947.27\",\"priceWithoutBed\":\"205790.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"199411.11\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":241092,\"priceDoubleOcc\":\"214813.51\",\"priceSingleOcc\":512563.09,\"priceExtraBed\":\"267947.27\",\"priceWithoutBed\":\"205790.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"214813.51\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":237142,\"priceDoubleOcc\":\"208889.51\",\"priceSingleOcc\":506639.09,\"priceExtraBed\":\"267947.27\",\"priceWithoutBed\":\"205790.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"208889.51\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":256889,\"priceDoubleOcc\":\"238509.54\",\"priceSingleOcc\":536259.12,\"priceExtraBed\":\"267947.27\",\"priceWithoutBed\":\"205790.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"238509.54\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":296383,\"priceDoubleOcc\":\"297749.58\",\"priceSingleOcc\":595499.16,\"priceExtraBed\":\"267947.27\",\"priceWithoutBed\":\"205790.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"297749.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":296383,\"priceDoubleOcc\":\"297749.58\",\"priceSingleOcc\":595499.16,\"priceExtraBed\":\"267947.27\",\"priceWithoutBed\":\"205790.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"297749.58\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;3 Euro tip per person per day.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of Basic Travel Quota (BTQ) equivalent to USD 10,000.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;No Porterage included.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any increase in the rate of exchange leading to an increase in surface transportation and land arrangements, which may come into effect prior to departure. The tour price is subject to increase without notice if this rate changes substantially prior to the departure of your tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any expenses of personal nature such as laundry, wines, mineral water, food and drink not in the regular menu provided by us pay TV, mini-bar, telephone calls, etc.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All Meals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of excursions, city sightseeing, entrance fees and local guides other than that mentioned in &amp;ldquo;Tour Cost Includes&amp;rdquo;.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Airfare &amp;amp; airport tax.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visa Fees.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Travel insurance&lt;\\/strong&gt;&lt;strong&gt;.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;NOTE: &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Passengers joining this tour must travel to\\/from the hub city at their own expense.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Due to major international events and trade fairs throughout Europe such as air-show, world athletic meet, ice skating championships, motor shows,&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tour de France, etc. the hotels may be blocked out more than 2 years in advance. In view of this, you may have to stay in hotels further away from the cities\\/ different city and the itinerary may have to be altered \\/amended.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We also reserve the right to substitute a hotel of a similar class if it is deemed advisable or necessary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For the convenience of our passengers, we will sometimes amend\\/alter the itinerary. However, all the services will remain the same.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;5% TCS.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Airfare \\/ Visa if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;13 Nights accommodation in 3 Star Hotel with continental breakfast.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mini Van as per itinerary.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided city tour of Rome.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Vatican Museum.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided city tour of Florence.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Leaning Tower of Pisa.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided city tour of La Spezia.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation tour of Milan.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Venice Island by boat.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Swarovski Crystal Museum &amp;amp; Showroom.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation tour of Innsbruck.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided city tour of Salzburg.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided city tour of Vienna.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cruise on the Danube River.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Wachau Valley.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Nights accommodation on a twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis or private basis if mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"202109\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[202109],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202110\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[202110],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202111\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[202111],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202112\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[202112],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202113\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[202113],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202114\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[202114],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202115\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[202115],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202116\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[202116],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202117\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[202117],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202118\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[202118],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202119\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[202119],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202120\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[202120],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"202121\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[202121],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Paris,Geneva,Engelberg,Lugano','Paris,Western Europe,France,Geneva,Switzerland,Engelberg,Lugano',NULL,'20822,10276,8778,34642',199411,311928,9,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'France,Switzerland','76,210','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'paris-switzerland:9-nights-10-days',NULL,NULL,NULL,0),(21,28334,1,12577,1,0,0,'Honeymoon,Adventure,Wildlife,Beach,Family,Festivals and Events,Romantic,Shopping and Nightlife,By Cab,Activites Tour,Day Tour,Road Trip',NULL,1,1,0,'{\"package\":{\"TPId\":28334,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/switzerltour_9_nights_-10_days_1630998780.jpg\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Why Switzerland Is the Best Country In the World&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tasty Food. Ah yes, the Swiss cheese and chocolate, Astounding SceneryAll-round Weather,&amp;nbsp;All-round Weather,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Happy Country, Multiple Languages, Film locations.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Diversity and Culture, Renowned Education System.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Zurich\",\"DestinationPlacesSysId\":30548,\"SourcePlaces\":\"Zurich\",\"SourcePlaceSysId\":30548,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Switzerland Tour: 9 Nights -10 days\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4287\",\"SupplierName\":\"European Voyages\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Inner Line Permit,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours,Bonfire,Camping,Trekking\",\"PackageType\":\"Honeymoon,Adventure,Wildlife,Beach,Family,Festivals and Events,Romantic,Shopping and Nightlife,By Cab,Activites Tour,Day Tour,Road Trip\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16022,\"Title\":\"Lucerne\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":16022,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":8902,\"Title\":\"Lake Lucerne Cruise\",\"Description\":\"Relax and take in the beauty of historical and natural treasures of Lucerne with Lake Lucerne Cruise. Lake Lucerne in central Switzerland is the fourth largest in the country with a scenic backdrop and fascinating vistas. Hop on a cruise over the majestic lake and experience a peaceful ride surrounded by mountains and quaint villages. To get the best of Lucerne, this exhilarating cruise adventure is a must do in Switzerland.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":46.9878985,\"Long\":8.4251051,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/48_1554269437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5103,\"Title\":\"Mount Titlis View\",\"Description\":\"Titlis is the only snow paradise to be reached within one and a half hours from Lucerne, Zurich, Basel and Berne. Mount Titlis &acirc;&euro;&ldquo; A visual treat for people staying in metro cities across the world. Breathe in the fresh air and enjoy the stunning views offered by this snow clad mountain round the year! At 10,000 feet, Mount Titlis is Central Switzerland&acirc;&euro;&trade;s loftiest peak attracting ski lovers from across the world.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":46.7720618,\"Long\":8.4290156,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/48_1526289067.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15664,\"Title\":\"Excursion Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12756,\"CityName\":\"Interlaken\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12756\\/sightseeing\\/4539_1591614121.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7623,\"Title\":\"Freddie Mercury Statue\",\"Description\":\"Freddie Mercury (born Farrokh Bulsara 5 September 1946 &amp;ndash; 24 November 1991) was a British singer-songr and record producer, best known as the lead vocalist of the rock band Queen. He is regarded as one of the greatest singers in the history of popular music, and was known for his flamboyant stage persona and four-octave vocal range.\",\"CurrencyType\":0,\"CityId\":18308,\"CityName\":\"Montreux\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18308\\/sightseeing\\/Freddie_Mercury_Statue_18308_1545030580.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7610,\"Title\":\"Lake\",\"Description\":\"Lake Geneva (or Lac L&amp;eacute;man) is a crescent-shaped lake shared between France and Switzerland, and overlooked by the Alps. Geneva, the Swiss city at its southern tip, is a diplomatic hub with luxury shops and a cobbled old town. On the southern, French side, is the spa town and resort of &amp;Eacute;vian-les-Bains. The chic, palm-studded Swiss Riviera stretches along the north shore from Lausanne to Montreux.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Lake__10276_1545025823.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7609,\"Title\":\"Jet d&#039;Eau\",\"Description\":\"The Jet d&amp;#039;Eau is a large fountain in Geneva, Switzerland, and is one of the city&amp;#039;s most famous landmarks, being featured on the city&amp;#039;s official tourism web site and on the official logo for Geneva&amp;#039;s hosting of the 2008 UEFA Championships.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Jet_d&#039;Eau_10276_1545025500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7608,\"Title\":\"United Nations Office\",\"Description\":\"The United Nations Office at Geneva is the second-largest of the four major office sites of the United Nations. It is located in the Palais des Nations building constructed for the League of Nations between 1929 and 1938 at Geneva in Switzerland, and expanded in the early 1950s and late 1960s.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/United_Nations_Office_10276_1545025346.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":28668,\"Title\":\"Vevey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":28668,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":8902,\"Title\":\"Lake Lucerne Cruise\",\"Description\":\"Relax and take in the beauty of historical and natural treasures of Lucerne with Lake Lucerne Cruise. Lake Lucerne in central Switzerland is the fourth largest in the country with a scenic backdrop and fascinating vistas. Hop on a cruise over the majestic lake and experience a peaceful ride surrounded by mountains and quaint villages. To get the best of Lucerne, this exhilarating cruise adventure is a must do in Switzerland.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":46.9878985,\"Long\":8.4251051,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/48_1554269437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7624,\"Title\":\"Lion Monument\",\"Description\":\"The Lion Monument, or the Lion of Lucerne, is a rock relief in Lucerne, Switzerland, designed by Bertel Thorvaldsen and hewn in 1820&amp;ndash;21 by Lukas Ahorn. It commemorates the Swiss Guards who were massacred in 1792 during the French Revolution, when revolutionaries stormed the Tuileries Palace in Paris.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lion_Monument_16022_1545031184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4400,\"Title\":\"Lucerne City Tour\",\"Description\":\"Lucerne lies at the north end of Lake Lucerne where the River Reuss flows and it is one of the most popular tourist attraction, with its well-preserved medieval core, elegant historic buildings, and genial atmosphere. Many visitors come to see leading conductors, soloists, and orchestras perform at the festivals spotlighting blues, piano, and marching bands. Lucerne became important after the opening of the St. Gotthard pass through the Alps in the 13th century. Lucerne is compact and easy to explore, with the old town and all the main sights including Kapellbr&amp;uuml;cke (Chapel Bridge), Spreuerbr&amp;uuml;cke, Museum Sammlung Rosengart (Rosengart Collection), Verkehrshaus der Schweiz (Swiss Transport Museum), Jesuit Church, L&amp;ouml;wendenkmal (Lion Monument), etc.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":47.0501682,\"Long\":8.3093072,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Lucerne_City_Tour_16022_1521464276.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7625,\"Title\":\"Kapellbr&uuml;cke\",\"Description\":\"The Kapellbr&amp;uuml;cke (literally, Chapel Bridge) is a covered wooden footbridge spanning diagonally across the Reuss in the city of Lucerne in central Switzerland. Named after the nearby St. Peter&amp;#039;s Chapel, the bridge is unique because it contains a number of interior paintings dating back to the 17th century, although many of them were destroyed along with a larger part of the centuries-old bridge in a 1993 fire. Subsequently restored, the Kapellbr&amp;uuml;cke is the oldest wooden covered bridge in Europe, as well as the world&amp;#039;s oldest surviving truss bridge. It serves as the city&amp;#039;s symbol and as one of Switzerland&amp;#039;s main tourist attractions.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/Kapellbr&Atilde;&frac14;cke_16022_1545031431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":5103,\"Title\":\"Mount Titlis View\",\"Description\":\"Titlis is the only snow paradise to be reached within one and a half hours from Lucerne, Zurich, Basel and Berne. Mount Titlis &acirc;&euro;&ldquo; A visual treat for people staying in metro cities across the world. Breathe in the fresh air and enjoy the stunning views offered by this snow clad mountain round the year! At 10,000 feet, Mount Titlis is Central Switzerland&acirc;&euro;&trade;s loftiest peak attracting ski lovers from across the world.\",\"CurrencyType\":0,\"CityId\":16022,\"CityName\":\"Lucerne\",\"Lat\":46.7720618,\"Long\":8.4290156,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16022\\/sightseeing\\/48_1526289067.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14449,\"Title\":\"Black Forest\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685598.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20423,\"Title\":\"cobblestone pathways\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":14450,\"Title\":\"Cuckoo Clock Factory\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/4539_1591685535.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4384,\"Title\":\"Zurich City Tours\",\"Description\":\"Zurich orientation tour includes all the main sights of Switzerland&amp;#039;s cultural capital. Zurich is a popular tourist destination as it is rich in heritage and historic value. Its medieval architecture is well-preserved and worth seeing, as well as the city&amp;rsquo;s modern sculptures. Enjoy spectacular views of the Alps on the way to visit the rose gardens, deer park and castle in the village of Rapperswil. Old Town is an especially wonderful historic area to be seen along with the commercial center, Fraumuenster Church from the outside, historical Limmatquai and the university district.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.2636845,\"Long\":8.476043,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Zurich_City_Tours_30548_1521120616.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20421,\"Title\":\"Golden Roof\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20422,\"Title\":\"Maria Theresien Strasse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20420,\"Title\":\"Orientation tour of Innsbruck\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4383,\"Title\":\"Mt. Titlis\",\"Description\":\"Mt. Titlis is a mountain to be reached by a revolving cable car in Central Switzerland. It is a high alpine attraction and viewing point stands at At 3032 m, from where one can enjoy the eternal snow and the beautiful views. This is an ideal trip for kids also who want to play in the snow. The cable car departs from the town of Engelberg, about 45 minutes from Lucerne.\\r\\nThe &amp;#039;Ice Flyer&amp;#039; chairlift allows to &amp;#039;fly&amp;#039; over the glacier and take to the Glacier Park, where one can enjoy the snow using snow tubes and sledges. Other activities includes Titli Cliff walk, hiking trails, etc to perform here\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":46.772048,\"Long\":8.4377704,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Mt._Titlis_30548_1521119291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":4371,\"Title\":\"Rhine Falls\",\"Description\":\"Europe&amp;#039;s biggest waterfall in Switzerland, Rhine waterfalls fascinates visitors with its great water volume. The 150 m wide and 23 m high waterfall is located near the village of Neuhausen in Northern Switzerland. The Adventure Park at Rhine Falls is one of Europe&amp;#039;s most spectacular rope parks. Adventure seekers can glide from tree to tree on 11 different courses with a breathtaking view of Rhine Falls. An adventure path with elevator from Laufen Castle to the outlook platforms and a boat ride to the Rhine Falls basin is also worthwhile.\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":47.6779509,\"Long\":8.6155799,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/30548\\/sightseeing\\/Rhine_Falls_30548_1521183637.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20424,\"Title\":\"Swarovski Crystal Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":30548,\"CityName\":\"Zurich\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15664,\"Title\":\"Excursion Jungfraujoch\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":12756,\"CityName\":\"Interlaken\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12756\\/sightseeing\\/4539_1591614121.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7623,\"Title\":\"Freddie Mercury Statue\",\"Description\":\"Freddie Mercury (born Farrokh Bulsara 5 September 1946 &amp;ndash; 24 November 1991) was a British singer-songr and record producer, best known as the lead vocalist of the rock band Queen. He is regarded as one of the greatest singers in the history of popular music, and was known for his flamboyant stage persona and four-octave vocal range.\",\"CurrencyType\":0,\"CityId\":18308,\"CityName\":\"Montreux\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18308\\/sightseeing\\/Freddie_Mercury_Statue_18308_1545030580.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7610,\"Title\":\"Lake\",\"Description\":\"Lake Geneva (or Lac L&amp;eacute;man) is a crescent-shaped lake shared between France and Switzerland, and overlooked by the Alps. Geneva, the Swiss city at its southern tip, is a diplomatic hub with luxury shops and a cobbled old town. On the southern, French side, is the spa town and resort of &amp;Eacute;vian-les-Bains. The chic, palm-studded Swiss Riviera stretches along the north shore from Lausanne to Montreux.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Lake__10276_1545025823.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7609,\"Title\":\"Jet d&#039;Eau\",\"Description\":\"The Jet d&amp;#039;Eau is a large fountain in Geneva, Switzerland, and is one of the city&amp;#039;s most famous landmarks, being featured on the city&amp;#039;s official tourism web site and on the official logo for Geneva&amp;#039;s hosting of the 2008 UEFA Championships.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/Jet_d&#039;Eau_10276_1545025500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7608,\"Title\":\"United Nations Office\",\"Description\":\"The United Nations Office at Geneva is the second-largest of the four major office sites of the United Nations. It is located in the Palais des Nations building constructed for the League of Nations between 1929 and 1938 at Geneva in Switzerland, and expanded in the early 1950s and late 1960s.\",\"CurrencyType\":0,\"CityId\":10276,\"CityName\":\"Geneva\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10276\\/sightseeing\\/United_Nations_Office_10276_1545025346.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"201980\",\"Title\":\"India - Zurich &acirc;&euro;&ldquo; Lucerne.\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Zurich airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Your driver welcomes you. Highway transfer to Lucerne (50 miles), the most visited city in Switzerland, at the crossroads of Europe.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Time for rest and sightseeing around town.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;4 nights in Lucerne.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201981\",\"Title\":\"Lucerne.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Lucerne city discovery: historic town, wooden bridge, panorama circular painting,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lucerne Lion monument. Swiss Transport Museum or Richard Wagner museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2nd night in Lucerne.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8902,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7624,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4400,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7625,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5103,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201982\",\"Title\":\"Lucerne - Titlis - Lake Lucerne Cruise.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today we head towards the mountains.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We take you on one of the most memorable experiences of your Europe tour &amp;ndash; visiting Mt. Titlis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Adventure awaits you in a sensational cable car ride up to Mt. Titlis. Marvel at the world&amp;rsquo;s first revolving cable-car ride, a truly once-in-a-lifetime experience.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Remain spellbound as you ascend the snow-clad mountains.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Experience the snow and ice on top of Mt. Titlis, also ride, &amp;lsquo;Ice Flyer&amp;rsquo;. At 3,020 meters a breathtaking panorama unfolds.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon, cruise on Lake Vierwaldstattersee (Lake Lucerne). This is the heart of European glaciated landscapes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3rd night in Lucerne.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7625,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8902,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7624,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4400,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5103,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201983\",\"Title\":\"Zug &acirc;&euro;&ldquo; Zurich.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Day tour to Zug and Zurich.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Zug is a charming town, site of one of the earliest settlements in Switzerland, dating back to neolithic times.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Zurich, Switzerland&amp;#39;s largest city, offers its peaceful lake, it&amp;#39;s Fraumunster and Grossmunster cathedral.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Europe&amp;#39;s most powerful banks are here.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Scenic drive back to Lucerne.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;4th night in Lucerne.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14449,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20423,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14450,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4384,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20421,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20422,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20420,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4383,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4371,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20424,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201984\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201985\",\"Title\":\"Jungfraujoch &acirc;&euro;&ldquo; Interlaken &acirc;&euro;&ldquo; Vevey.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;This morning, after a continental breakfast,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Proceed for an adventurous ride to visit Jungfraujoch &amp;ndash; the Top of Europe, for a memorable encounter with snow and ice.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You will be amazed at the scenic splendor that you see from aboard the &amp;lsquo;cogwheel train, which takes you to a height of 3,454 meters to reach Jungfraujoch!&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the Ice Palace on top of the longest glacier in the Alps.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A visit to the Sphinx is also included. Later board your coach for Trummelbach Falls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Trummelbach falls.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later, we visit Interlaken, a charming city nestled between two lakes and surrounded by the splendid Bernese Oberland Mountains.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Treasure these wonderful moments as you drive back to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;5 nights in Vevey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28668,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15664,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201986\",\"Title\":\"Vevey &acirc;&euro;&ldquo; Montreux.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Discover the Swiss Riviera.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Vevey and its delightful Lake stroll.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Vineyard drive to Mont Pelerin (panoramic views).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Montreux lakefront.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Chillon castle.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2nd night in Vevey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28668,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7623,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201987\",\"Title\":\"Murten &acirc;&euro;&ldquo; Neuchatel.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Day tour to Murten and Neuchatel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;These lesser-known towns of Switzerland offer their spectacular setting and sights.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Medieval Murten has a 13th-century castle.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Neuchatel is of a more classical style.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Chaumont cable car and panorama.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All in all, this day is a concentrate of Europe.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3rd night in Vevey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28668,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201988\",\"Title\":\"Geneva.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Day tour to Geneva.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Vineyard road. Lake sidewalk.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Glimpse on the UNO and other world and European international organizations.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;See the old town.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the Maison Tavel, a homage to Geneva&amp;rsquo;s history and everyday life.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;4th night in Vevey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28668,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7610,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7609,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7608,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201989\",\"Title\":\"Swiss Alps.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Today, we enter the core of the highest mountains in Europe,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Swiss Alps, with a trip to the Valais canton.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The historic capital Sion and its twin hills.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Grande Dixence dam.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;Alternatively, Drive as far as Zermatt and see the famous ski resort and its famous Matterhorn peak.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;5th night in Vevey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28668,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201990\",\"Title\":\"Zurich.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;3-hour highway transfer to Zurich,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;With a few stops along the way for last sightseeing and shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The tour ends at Zurich International Airport.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28668,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28334\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"213489.84\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":250185,\"priceDoubleOcc\":\"213489.84\",\"priceSingleOcc\":541362.87,\"priceExtraBed\":\"295123.92\",\"priceWithoutBed\":\"232585.53\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"213489.84\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":260624,\"priceDoubleOcc\":\"229148.30\",\"priceSingleOcc\":557021.3300000001,\"priceExtraBed\":\"295123.92\",\"priceWithoutBed\":\"232585.53\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"229148.30\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":255596,\"priceDoubleOcc\":\"221605.51\",\"priceSingleOcc\":549478.54,\"priceExtraBed\":\"295123.92\",\"priceWithoutBed\":\"232585.53\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"221605.51\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":274628,\"priceDoubleOcc\":\"250153.56\",\"priceSingleOcc\":578026.5900000001,\"priceExtraBed\":\"295123.92\",\"priceWithoutBed\":\"232585.53\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"250153.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":326441,\"priceDoubleOcc\":\"327873.03\",\"priceSingleOcc\":655746.06,\"priceExtraBed\":\"295123.92\",\"priceWithoutBed\":\"232585.53\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"327873.03\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":326441,\"priceDoubleOcc\":\"327873.03\",\"priceSingleOcc\":655746.06,\"priceExtraBed\":\"295123.92\",\"priceWithoutBed\":\"232585.53\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"327873.03\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28334\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"203785.75\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":238813,\"priceDoubleOcc\":\"203785.75\",\"priceSingleOcc\":516755.46,\"priceExtraBed\":\"281709.19\",\"priceWithoutBed\":\"222013.46\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"203785.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":248778,\"priceDoubleOcc\":\"218732.47\",\"priceSingleOcc\":531702.18,\"priceExtraBed\":\"281709.19\",\"priceWithoutBed\":\"222013.46\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"218732.47\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":243978,\"priceDoubleOcc\":\"211532.53\",\"priceSingleOcc\":524502.24,\"priceExtraBed\":\"281709.19\",\"priceWithoutBed\":\"222013.46\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"211532.53\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":262145,\"priceDoubleOcc\":\"238782.95\",\"priceSingleOcc\":551752.66,\"priceExtraBed\":\"281709.19\",\"priceWithoutBed\":\"222013.46\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"238782.95\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":311603,\"priceDoubleOcc\":\"312969.71\",\"priceSingleOcc\":625939.42,\"priceExtraBed\":\"281709.19\",\"priceWithoutBed\":\"222013.46\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"312969.71\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-07\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":311603,\"priceDoubleOcc\":\"312969.71\",\"priceSingleOcc\":625939.42,\"priceExtraBed\":\"281709.19\",\"priceWithoutBed\":\"222013.46\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"312969.71\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;3 Euro tip per person per day.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of Basic Travel Quota (BTQ) equivalent to USD 10,000.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;No Porterage included.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any increase in the rate of exchange leading to an increase in surface transportation and land arrangements, which may come into effect prior to departure. The tour price is subject to increase without notice if this rate changes substantially prior to the departure of your tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any expenses of personal nature such as laundry, wines, mineral water, food and drink not in the regular menu provided by us pay TV, mini-bar, telephone calls, etc.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All Meals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of excursions, city sightseeing, entrance fees and local guides other than that mentioned in &amp;ldquo;Tour Cost Includes&amp;rdquo;.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Airfare &amp;amp; airport tax.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visa Fees.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Travel insurance&lt;\\/strong&gt;&lt;strong&gt;.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;5% TCS.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Airfare \\/ Visa if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;9 nights accommodation in 3 Star Hotel with continental breakfast&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mini Van as per itinerary&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All sightseeing as per Itinerary.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Rhine Falls.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Zurich city tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mt. Titlis with Ice Flyer.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Lucerne City Tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cruise on Lake Lucerne.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Jungfrau-The Top of Europe.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Trummelbach Falls.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Interlaken Tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit to Le &amp;ndash; Gruyere village &amp;amp; Castle.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Montreux Tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Chillon Castle.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Geneva city tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Murten and Neuchatel tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit to Sion &amp;amp; Zermatt.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Hotel Nights accommodation on a twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis or private basis if mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"201980\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[201980],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201981\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[201981],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201982\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[201982],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201983\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[201983],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201984\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[201984],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201985\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[201985],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201986\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[201986],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201987\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[201987],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201988\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[201988],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201989\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[201989],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201990\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[201990],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Lucerne,Vevey','Lucerne,Switzerland,Vevey,Geneva,Interlaken,Montreux,Zug,Zurich,Neuchatel',NULL,'16022,28668',203786,327873,9,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'Switzerland','210','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'switzerland-tour:-9-nights-10-days',NULL,NULL,NULL,0),(22,28182,1,12577,1,0,0,'Honeymoon,Adventure,Beach,Family,Festivals and Events,Romantic,Shopping and Nightlife,Activites Tour,River Cruises',NULL,1,1,0,'{\"package\":{\"TPId\":28182,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/austria_-_czech_republic_tour_9_nights_-_10_days_1630498023.jpg\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Linz is a city in Upper Austria,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Straddling the Danube River midway between Salzburg and Vienna.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Baroque buildings, including Old Town Hall (Altes Rathaus) and the old cathedral or Alter Dom,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Ring Hauptplatz, the old town&amp;rsquo;s main square.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The riverside Lentos Kunstmuseum Linz has a major modern art collection.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Across the river, the striking Ars Electronica Center focuses on society,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Technology, and life in the future.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Prague\",\"DestinationPlacesSysId\":22026,\"SourcePlaces\":\"Vienna\",\"SourcePlaceSysId\":28729,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Austria - Czech Republic Tour: 9 Nights - 10 days\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4287\",\"SupplierName\":\"European Voyages\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Inner Line Permit,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Festivals and Events,Romantic,Shopping and Nightlife,Activites Tour,River Cruises\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28729,\"Title\":\"Vienna\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":28729,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15565,\"Title\":\"Boat Trip to Bratislava (optional)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15552,\"Title\":\"Bratislava Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6158,\"Title\":\"Sch\\u00c3\\u00b6nbrunn Palace\",\"Description\":\"Sch&Atilde;&para;nbrunn Palace was the main summer residence of the Habsburg rulers, located in Hietzing, Vienna. The 1,441-room Baroque palace is one of the most important architectural, cultural, and historical monuments in the country. Since the mid-1950s it has been a major tourist attraction. The history of the palace and its vast gardens spans over 300 years, reflecting the changing tastes, interests, and aspirations of successive Habsburg monarchs.\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/995_1529733860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15562,\"Title\":\"Sightseeing Tour of Vienna\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15549,\"Title\":\"Vienna (Woods Tour \\u00e2\\u20ac\\u201c Optional)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3904,\"Title\":\"Vienna hop on hop off tour\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15550,\"Title\":\"Vienna Ring Tram Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591680455.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15547,\"Title\":\"Vienna Sightseeing Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591681525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15551,\"Title\":\"Vienna Woods Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591680391.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15548,\"Title\":\"Salzburg &ndash; City tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35528,\"CityName\":\"Salzburg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35528\\/sightseeing\\/4539_1591680889.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":15539,\"Title\":\"Lina\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":15539,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15565,\"Title\":\"Boat Trip to Bratislava (optional)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15552,\"Title\":\"Bratislava Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6158,\"Title\":\"Sch\\u00c3\\u00b6nbrunn Palace\",\"Description\":\"Sch&Atilde;&para;nbrunn Palace was the main summer residence of the Habsburg rulers, located in Hietzing, Vienna. The 1,441-room Baroque palace is one of the most important architectural, cultural, and historical monuments in the country. Since the mid-1950s it has been a major tourist attraction. The history of the palace and its vast gardens spans over 300 years, reflecting the changing tastes, interests, and aspirations of successive Habsburg monarchs.\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/995_1529733860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15562,\"Title\":\"Sightseeing Tour of Vienna\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15549,\"Title\":\"Vienna (Woods Tour \\u00e2\\u20ac\\u201c Optional)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3904,\"Title\":\"Vienna hop on hop off tour\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15550,\"Title\":\"Vienna Ring Tram Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591680455.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15547,\"Title\":\"Vienna Sightseeing Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591681525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15551,\"Title\":\"Vienna Woods Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591680391.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15548,\"Title\":\"Salzburg &ndash; City tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35528,\"CityName\":\"Salzburg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35528\\/sightseeing\\/4539_1591680889.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":19786,\"Title\":\"Nuremberg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":19786,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15565,\"Title\":\"Boat Trip to Bratislava (optional)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15552,\"Title\":\"Bratislava Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6158,\"Title\":\"Sch\\u00c3\\u00b6nbrunn Palace\",\"Description\":\"Sch&Atilde;&para;nbrunn Palace was the main summer residence of the Habsburg rulers, located in Hietzing, Vienna. The 1,441-room Baroque palace is one of the most important architectural, cultural, and historical monuments in the country. Since the mid-1950s it has been a major tourist attraction. The history of the palace and its vast gardens spans over 300 years, reflecting the changing tastes, interests, and aspirations of successive Habsburg monarchs.\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/995_1529733860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15562,\"Title\":\"Sightseeing Tour of Vienna\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15549,\"Title\":\"Vienna (Woods Tour \\u00e2\\u20ac\\u201c Optional)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3904,\"Title\":\"Vienna hop on hop off tour\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15550,\"Title\":\"Vienna Ring Tram Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591680455.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15547,\"Title\":\"Vienna Sightseeing Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591681525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15551,\"Title\":\"Vienna Woods Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591680391.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15548,\"Title\":\"Salzburg &ndash; City tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35528,\"CityName\":\"Salzburg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35528\\/sightseeing\\/4539_1591680889.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":22026,\"Title\":\"Prague\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":22026,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":15565,\"Title\":\"Boat Trip to Bratislava (optional)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15552,\"Title\":\"Bratislava Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":6158,\"Title\":\"Sch\\u00c3\\u00b6nbrunn Palace\",\"Description\":\"Sch&Atilde;&para;nbrunn Palace was the main summer residence of the Habsburg rulers, located in Hietzing, Vienna. The 1,441-room Baroque palace is one of the most important architectural, cultural, and historical monuments in the country. Since the mid-1950s it has been a major tourist attraction. The history of the palace and its vast gardens spans over 300 years, reflecting the changing tastes, interests, and aspirations of successive Habsburg monarchs.\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/995_1529733860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15562,\"Title\":\"Sightseeing Tour of Vienna\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15549,\"Title\":\"Vienna (Woods Tour \\u00e2\\u20ac\\u201c Optional)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":3904,\"Title\":\"Vienna hop on hop off tour\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15550,\"Title\":\"Vienna Ring Tram Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591680455.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15547,\"Title\":\"Vienna Sightseeing Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591681525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15551,\"Title\":\"Vienna Woods Tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":28729,\"CityName\":\"Vienna\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28729\\/sightseeing\\/4539_1591680391.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":15548,\"Title\":\"Salzburg &ndash; City tour\",\"Description\":\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":35528,\"CityName\":\"Salzburg\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35528\\/sightseeing\\/4539_1591680889.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"201057\",\"Title\":\"VIENNA.\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Your personal driver guide collects you from Vienna international airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Guided City tour of Vienna.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2 nights in the Vienna area.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28729,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201058\",\"Title\":\"VIENNA.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Hofburg district: Michaelerplatz, Schatzkammer treasures.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Wien ancient city: Stephansdom cathedral.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Schloss Schonbrunn 17th century palace.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2nd night in the Vienna area.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28729,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15565,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15552,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6158,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15562,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15549,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3904,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15550,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15547,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":15551,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201059\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28729,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201060\",\"Title\":\"Vienna - Artstetten &acirc;&euro;&ldquo; Linz.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Artstetten castle and museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Linz historic city walks, Trinity column,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;St. Ignatius cathedral, Martinskirche church.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3 nights in the Linz area.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15539,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201061\",\"Title\":\"Linz - Salzburg &acirc;&euro;&ldquo; Linz.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Guided City tour of Salzburg.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2nd night in Linz area.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15539,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15548,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201062\",\"Title\":\"Linz - Gmunden &acirc;&euro;&ldquo; Linz.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Gmunden Esplanade walks&amp;nbsp;the main square, war memorial.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;View from Gmundnerberg over the whole of the Traunsee basin.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;3rd night in Linz area.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15539,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201063\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15539,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201064\",\"Title\":\"Linz - Regensburg &acirc;&euro;&ldquo; Nuremberg.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Regensburg historic city walk,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;St. Peter cathedral, Notre-Dame chapel, Dioz&amp;ouml;sanmuseum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2 nights in Nuremberg.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19786,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201065\",\"Title\":\"Nuremberg.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Germanisches Nationalmuseum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Frauenkirche church, Fortifications, Albrecht-D&amp;uuml;rer-Haus (D&amp;uuml;rer ancient flat).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2nd night in Nuremberg.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19786,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201066\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":19786,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201067\",\"Title\":\"Nuremberg - Plzen &acirc;&euro;&ldquo; Prague.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Tour in Plzen,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Capital of the Pils beer.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Synagogue and Jewish quarter tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2 nights in Prague.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22026,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201068\",\"Title\":\"Prague.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;Guided City tour of Prague.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;River cruise on the Vltava.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;2 nights in Prague.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22026,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"201069\",\"Title\":\"Prague.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Drop-off at Prague airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This is the end of your &amp;quot;Austria Czech Republic Tour&amp;quot;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22026,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28182\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"165034.11\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":208655,\"priceDoubleOcc\":\"165034.11\",\"priceSingleOcc\":465226.3,\"priceExtraBed\":\"270220.70\",\"priceWithoutBed\":\"178874.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"165034.11\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":222018,\"priceDoubleOcc\":\"185078.75\",\"priceSingleOcc\":485270.94,\"priceExtraBed\":\"270220.70\",\"priceWithoutBed\":\"178874.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"185078.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":220936,\"priceDoubleOcc\":\"183456.09\",\"priceSingleOcc\":483648.28,\"priceExtraBed\":\"270220.70\",\"priceWithoutBed\":\"178874.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"183456.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":246581,\"priceDoubleOcc\":\"221922.68\",\"priceSingleOcc\":522114.87,\"priceExtraBed\":\"270220.70\",\"priceWithoutBed\":\"178874.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"221922.68\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":298760,\"priceDoubleOcc\":\"300192.19\",\"priceSingleOcc\":600384.38,\"priceExtraBed\":\"270220.70\",\"priceWithoutBed\":\"178874.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"300192.19\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":298760,\"priceDoubleOcc\":\"300192.19\",\"priceSingleOcc\":600384.38,\"priceExtraBed\":\"270220.70\",\"priceWithoutBed\":\"178874.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"300192.19\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"28182\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"157532.56\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":199171,\"priceDoubleOcc\":\"157532.56\",\"priceSingleOcc\":444079.65,\"priceExtraBed\":\"257937.94\",\"priceWithoutBed\":\"170743.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"157532.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":211926,\"priceDoubleOcc\":\"176666.08\",\"priceSingleOcc\":463213.17000000004,\"priceExtraBed\":\"257937.94\",\"priceWithoutBed\":\"170743.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"176666.08\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":210894,\"priceDoubleOcc\":\"175117.17\",\"priceSingleOcc\":461664.26,\"priceExtraBed\":\"257937.94\",\"priceWithoutBed\":\"170743.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"175117.17\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":235373,\"priceDoubleOcc\":\"211835.28\",\"priceSingleOcc\":498382.37,\"priceExtraBed\":\"257937.94\",\"priceWithoutBed\":\"170743.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"211835.28\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":285180,\"priceDoubleOcc\":\"286547.09\",\"priceSingleOcc\":573094.18,\"priceExtraBed\":\"257937.94\",\"priceWithoutBed\":\"170743.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"286547.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-09-04\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":285180,\"priceDoubleOcc\":\"286547.09\",\"priceSingleOcc\":573094.18,\"priceExtraBed\":\"257937.94\",\"priceWithoutBed\":\"170743.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"286547.09\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;3 Euro tip per person per day.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of Basic Travel Quota (BTQ) equivalent to USD 10,000.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;No Porterage included.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any increase in the rate of exchange leading to an increase in surface transportation and land arrangements, which may come into effect prior to departure. The tour price is subject to increase without notice if this rate changes substantially prior to the departure of your tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any expenses of personal nature such as laundry, wines, mineral water, food and drink not in the regular menu provided by us pay TV, mini-bar, telephone calls, etc.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All Meals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of excursions, city sightseeing, entrance fees and local guides other than that mentioned in &amp;ldquo;Tour Cost Includes&amp;rdquo;.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Airfare &amp;amp; airport tax.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visa Fees.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Travel insurance.&lt;\\/strong&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;NOTE: &lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Passengers joining this tour must travel to\\/from the hub city at their own expense.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Due to major international events and trade fairs throughout Europe such as air-show, world athletic meet, ice skating championships, motor shows, Tour de France, etc. the hotels may be blocked out more than 2 years in advance. In view of this, you may have to stay in hotels further away from the cities\\/ different city and the itinerary may have to be altered \\/amended.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We also reserve the right to substitute a hotel of a similar class if it is deemed advisable or necessary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For the convenience of our passengers, we will sometimes amend\\/alter the itinerary. However, all the services will remain the same.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;5% TCS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare \\/ Visa if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;9 nights accommodation in 3 Star Hotel with continental breakfast.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Mini Van as per itinerary.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided city tour of Vienna.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Schonbrunn Palace.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visit Artstetten Castle &amp;amp; Museum.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation tour of Linz.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided city tour of Salzburg.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Orientation tour of Gmunden.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Regensburg Guided Walking tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Nuremberg Guided tour&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Plenz Guided tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Guided city tour of Prague.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;River Cruise on the Vltava.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on a twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis or private basis if mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"201057\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[201057],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201058\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[201058],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201059\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[201059],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201060\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[201060],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201061\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[201061],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201062\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[201062],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201063\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[201063],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201064\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[201064],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201065\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[201065],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201066\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[201066],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201067\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[201067],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201068\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[201068],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"201069\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[201069],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Vienna,Lina,Nuremberg,Prague','Vienna,Eastern Europe,Austria,Lina,Nuremberg,Western Europe,Germany,Prague,Czech Republic,Gmunden,Linz,Salzburg',NULL,'28729,15539,19786,22026',157533,300192,9,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'Austria,Germany,Czech Republic','14,83,58','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'austria-czech-republic-tour:-9-nights-10-days',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (23,27654,1,12577,0,0,0,'Honeymoon,Adventure,Beach,Family,Sports,Festivals and Events,Romantic,Shopping and Nightlife,Activites Tour,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":27654,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/palaces__castle_tour_1629358585.jpg\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;London, city,&amp;nbsp;capital of the United Kingdom.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It is among the oldest of the world&amp;#39;s great cities&amp;mdash;its history spanning nearly two millennia&amp;mdash;and one of the most cosmopolitan.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;By far Britain&amp;#39;s largest metropolis,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It is also the country&amp;#39;s economic,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transportation, and cultural centre.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"London\",\"DestinationPlacesSysId\":15836,\"SourcePlaces\":\"London\",\"SourcePlaceSysId\":15836,\"AgencyName\":\"Atlas Tours & Travels Pvt Ltd\",\"Name\":\"Palaces & Castle Tour\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4287\",\"SupplierName\":\"European Voyages\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Sports,Festivals and Events,Romantic,Shopping and Nightlife,Activites Tour,Luxury Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15836,\"Title\":\"London\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":15836,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1478,\"Title\":\"River Thames\",\"Description\":\"The River Thames, known alternatively in parts as the Isis, is a river that flows through southern England including London. At 215 miles, it is the longest river entirely in England and the second longest in the United Kingdom, after the River Severn. It flows through Oxford, Reading, Henley-on-Thames and Windsor. The lower reaches of the river are called the Tideway, derived from its long tidal reach up to Teddington Lock. It rises at Thames Head in Gloucestershire, and flows into the North Sea via the Thames Estuary. The Thames drains the whole of Greater London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2208\\/thumb\\/River Thames_858.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20525,\"Title\":\"the Queen\\u00e2\\u20ac\\u2122s Scottish\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20526,\"Title\":\"the Palace of Holyrood House.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20527,\"Title\":\"York Minster Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20528,\"Title\":\"Scottish legend William \\u00e2\\u20ac\\u02dcBraveheart\\u00e2\\u20ac\\u2122 Wallace.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31555,\"CityName\":\"Lake District\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20529,\"Title\":\"Author Beatrix Potter\\u00e2\\u20ac\\u2122s Hill Top Farm.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20530,\"Title\":\"the ancient city of Chester.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20533,\"Title\":\"BAth City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20534,\"Title\":\"Cardiff Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20535,\"Title\":\"Roman City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20536,\"Title\":\"Salisbury.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20537,\"Title\":\"the mysterious prehistoric monument of Stonehenge.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7874,\"Title\":\"Alton Towers Theme Park\",\"Description\":\"Alton Towers Resort, often shortened to Alton Towers, is a theme park resort located in Staffordshire, England. It is near the village of Alton, in the parishes of Denstone and Farley. The resort, which is operated by Merlin Entertainments Group, incorporates a theme park, water park, spa, mini golf and hotel complex. Originally a private estate, Alton Towers grounds opened to the public in 1860 to raise funds for the estate.In the late 20th century, it was transformed into a theme park and opened a number of new rides from 1986 onwards. In 2017, it was the second most visited theme park in the UK after Legoland Windsor.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":52.9874,\"Long\":1.8865,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Alton_Towers_Theme_Park_15836_1545633376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":147,\"Title\":\"BAPS Shri Swaminarayan Mandir\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5471937,\"Long\":-0.2600335,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5858\\/thumb\\/BAPS Shri Swaminarayan Mandir_421.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7872,\"Title\":\"Bicester Village, Bicester, UK\",\"Description\":\"Bicester Village is an outlet shopping centre on the outskirts of Bicester, a town in Oxfordshire, England. It is owned by Value Retail plc.The centre opened in 1995.\\r\\nMost of its stores are in the luxury goods and designer clothing sector. The centre is the second most visited location in the United Kingdom by Chinese tourists, after Buckingham Palace.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Bicester_Village,_Bicester,_UK_15836_1545632369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":207,\"Title\":\"Big Ben\",\"Description\":\"Big Ben is the nickname for the Great Bell of the clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-gothic style.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2122\\/thumb\\/Big Ben_437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":231,\"Title\":\"Borough Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5055169,\"Long\":-0.0910475,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6005\\/thumb\\/Borough Market_128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":249,\"Title\":\"Buckingham Palace\",\"Description\":\"Buckingham Palace is the London residence and administrative headquarters of the monarch of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today&amp;#039;s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years. It was acquired by King George III in 1761 as a private residence for Queen Charlotte and became known as The Queen&amp;#039;s House.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.501009,\"Long\":-0.1415876,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1521\\/thumb\\/Buckingham Palace_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":303,\"Title\":\"Changing The Guard At Buckingham Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/807\\/thumb\\/Changing The Guard At Buckingham Palace_500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":380,\"Title\":\"Covent Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3227\\/thumb\\/Covent Garden_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":386,\"Title\":\"Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5294\\/thumb\\/Cruise_194.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":417,\"Title\":\"Design Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.502999,\"Long\":-0.071926,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5998\\/thumb\\/Design Museum_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":571,\"Title\":\"Globe Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5960\\/thumb\\/Globe Theatre_827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":636,\"Title\":\"Hampton Court Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.403813,\"Long\":-0.3376701,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5950\\/thumb\\/Hampton Court Palace_506.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":686,\"Title\":\"House Of Parliament\",\"Description\":\"The Palace of Westminster serves as the meeting place of the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Commonly known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.\\r\\nIts name, which derives from the neighbouring Westminster Abbey, may refer to either of two structures: the Old Palace, a medieval building-complex destroyed by fire in 1834, or its replacement, the New Palace that stands today.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2121\\/thumb\\/House Of Parliament_456.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":695,\"Title\":\"Hyde Park\",\"Description\":\"Hyde Park is a Grade I-listed major park in Central London. It is the largest of four Royal Parks that form a chain from the entrance of Kensington Palace through Kensington Gardens and Hyde Park, via Hyde Park Corner and Green Park past the main entrance to Buckingham Palace. The park is divided by the Serpentine and the Long Water lakes. The park was established by Henry VIII in 1536 when he took the land from Westminster Abbey and used it as a hunting ground. It opened to the public in 1637 and quickly became popular, particularly for May Day parades.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4894138,\"Long\":-0.1230915,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1520\\/thumb\\/Hyde Park_809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":967,\"Title\":\"Legoland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5956\\/thumb\\/LEGOLAND&Atilde;&sbquo;&Acirc;&reg;_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":968,\"Title\":\"Leicester Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5948\\/thumb\\/Leicester Square_738.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":985,\"Title\":\"London Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6003\\/thumb\\/London Bridge_251.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":862,\"Title\":\"Kensington Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.506987,\"Long\":-0.179165,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5959\\/thumb\\/Kensington Palace_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":989,\"Title\":\"London Transport Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5122737,\"Long\":-0.1234492,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6000\\/thumb\\/London Transport Museum_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":990,\"Title\":\"London Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5955\\/thumb\\/London Zoo_216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":997,\"Title\":\"Lord\'s Cricket Ground\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282403,\"Long\":-0.1727677,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/806\\/thumb\\/Lord&#039;s Cricket Ground_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1073,\"Title\":\"Marble Arch\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2133\\/thumb\\/Marble Arch_444.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1161,\"Title\":\"Musical Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5876\\/thumb\\/Musical Theatre_205.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1214,\"Title\":\"Natural History Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4950781,\"Long\":-0.1828713,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6001\\/thumb\\/Natural History Museum_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":988,\"Title\":\"London Hop-On Hop-Off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5453\\/thumb\\/London Hop-On Hop-Off_926.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7873,\"Title\":\"Windsor Castle\",\"Description\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is notable for its long association with the English and later British royal family and for its architecture.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4839,\"Long\":0.6044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Windsor_Castle_15836_1545632687.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1873,\"Title\":\"Vibrant - Piccadilly Circus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5195539,\"Long\":-0.0973964,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2135\\/thumb\\/Vibrant Piccadilly_997.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1674,\"Title\":\"St. Paul\'s Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5137342,\"Long\":-0.0987943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3988\\/thumb\\/St. Pauls Cathedral_173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1636,\"Title\":\"Soho Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5996\\/thumb\\/Soho Square_591.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1467,\"Title\":\"Regent\'s Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282712,\"Long\":-0.1498235,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5951\\/thumb\\/Regents Park_123.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1350,\"Title\":\"Penguin Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5357941,\"Long\":-0.1519305,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5954\\/thumb\\/Penguin Beach_558.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1322,\"Title\":\"Parliament Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4975764,\"Long\":-0.1350731,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1613\\/thumb\\/Parliament Square_319.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1359,\"Title\":\"Piccadilly Circus\",\"Description\":\"Piccadilly Circus is a busy square in the heart of London. It is famous for the fountain that was installed here at the end of the nineteenth century and for the neon advertising that turned the square into a miniature version of Times Square. The Circus lies at the intersection of five main roads: Regent Street, Shaftesbury Avenue, Piccadilly Street, Covent Street and Haymarket.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.49264,\"Long\":-0.222373,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1519\\/thumb\\/Piccadilly Circus_179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7870,\"Title\":\"Queen Victoria Summer House- Isle of wight\",\"Description\":\"Today, Osborne House is under the care of English Heritage and is open to the public. The former Naval College&amp;#039;s cricket pavilion was converted into a holiday cottage in 2004.Since 2005, the house has occasionally hosted picnic-style concerts on the lawn outside the main house.English Heritage has a management contract to run Osborne House as an historic tourist attraction. The house&amp;#039;s ownership since 1971 has been held in a private trust[citation needed] connected to Historic Royal Palaces, the agency covering, among others, Hampton Court Palace and the Tower of London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":50.6938,\"Long\":1.3047,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Queen_Victoria_Summer_House-_I_15836_1545631622.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1493,\"Title\":\"Royal Albert Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.500613,\"Long\":-0.1756085,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5958\\/thumb\\/Royal Albert Hall, London_782.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1282,\"Title\":\"Palace Of Westminster\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1319,\"Title\":\"Park Lane\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2134\\/thumb\\/Park Lane_923.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1645,\"Title\":\"Southwark Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5082463,\"Long\":-0.0877234,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6004\\/thumb\\/Southwark Cathedral_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1916,\"Title\":\"Westminster Abbey\",\"Description\":\"Westminster Abbey, formally titled the Collegiate Church of Saint Peter at Westminster, is a large, mainly Gothic abbey church in the City of Westminster, London, England, just to the west of the Palace of Westminster. It is one of the United Kingdom&amp;#039;s most notable religious buildings and the traditional place of coronation and burial site for English and, later, British monarchs. The building itself was a Benedictine monastic church until the monastery was dissolved in 1539. Between 1540 and 1556, the abbey had the status of a cathedral.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4988998,\"Long\":-0.1282744,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1614\\/thumb\\/Westminster Abbey_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1665,\"Title\":\"St Paul Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5134058,\"Long\":-0.1506916,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5949\\/thumb\\/St Paul Cathedral_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1763,\"Title\":\"The Household Cavalry Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5046005,\"Long\":-0.1273738,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5952\\/thumb\\/The Household Cavalry Museum_831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1806,\"Title\":\"Trafalgar Square\",\"Description\":\"Trafalgar Square is a public square in the City of Westminster, Central London, built around the area formerly known as Charing Cross. Its name commemorates the Battle of Trafalgar, a British naval victory in the Napoleonic Wars with France and Spain that took place on 21 October 1805 off the coast of Cape Trafalgar. The site of Trafalgar Square had been a significant landmark since the 13th century and originally contained the King&amp;#039;s Mews. After George IV moved the mews to Buckingham Palace, the area was redeveloped by John Nash, but progress was slow after his death, and the square did not open until 1844.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.508039,\"Long\":-0.128069,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2124\\/thumb\\/Trafalgar Square_190.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1914,\"Title\":\"Wembley Stadium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5567009,\"Long\":-0.2796655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5953\\/thumb\\/Wembley Stadium_204.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":36425,\"Title\":\"York\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":36425,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1478,\"Title\":\"River Thames\",\"Description\":\"The River Thames, known alternatively in parts as the Isis, is a river that flows through southern England including London. At 215 miles, it is the longest river entirely in England and the second longest in the United Kingdom, after the River Severn. It flows through Oxford, Reading, Henley-on-Thames and Windsor. The lower reaches of the river are called the Tideway, derived from its long tidal reach up to Teddington Lock. It rises at Thames Head in Gloucestershire, and flows into the North Sea via the Thames Estuary. The Thames drains the whole of Greater London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2208\\/thumb\\/River Thames_858.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20525,\"Title\":\"the Queen\\u00e2\\u20ac\\u2122s Scottish\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20526,\"Title\":\"the Palace of Holyrood House.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20527,\"Title\":\"York Minster Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20528,\"Title\":\"Scottish legend William \\u00e2\\u20ac\\u02dcBraveheart\\u00e2\\u20ac\\u2122 Wallace.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31555,\"CityName\":\"Lake District\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20529,\"Title\":\"Author Beatrix Potter\\u00e2\\u20ac\\u2122s Hill Top Farm.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20530,\"Title\":\"the ancient city of Chester.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20533,\"Title\":\"BAth City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20534,\"Title\":\"Cardiff Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20535,\"Title\":\"Roman City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20536,\"Title\":\"Salisbury.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20537,\"Title\":\"the mysterious prehistoric monument of Stonehenge.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7874,\"Title\":\"Alton Towers Theme Park\",\"Description\":\"Alton Towers Resort, often shortened to Alton Towers, is a theme park resort located in Staffordshire, England. It is near the village of Alton, in the parishes of Denstone and Farley. The resort, which is operated by Merlin Entertainments Group, incorporates a theme park, water park, spa, mini golf and hotel complex. Originally a private estate, Alton Towers grounds opened to the public in 1860 to raise funds for the estate.In the late 20th century, it was transformed into a theme park and opened a number of new rides from 1986 onwards. In 2017, it was the second most visited theme park in the UK after Legoland Windsor.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":52.9874,\"Long\":1.8865,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Alton_Towers_Theme_Park_15836_1545633376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":147,\"Title\":\"BAPS Shri Swaminarayan Mandir\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5471937,\"Long\":-0.2600335,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5858\\/thumb\\/BAPS Shri Swaminarayan Mandir_421.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7872,\"Title\":\"Bicester Village, Bicester, UK\",\"Description\":\"Bicester Village is an outlet shopping centre on the outskirts of Bicester, a town in Oxfordshire, England. It is owned by Value Retail plc.The centre opened in 1995.\\r\\nMost of its stores are in the luxury goods and designer clothing sector. The centre is the second most visited location in the United Kingdom by Chinese tourists, after Buckingham Palace.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Bicester_Village,_Bicester,_UK_15836_1545632369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":207,\"Title\":\"Big Ben\",\"Description\":\"Big Ben is the nickname for the Great Bell of the clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-gothic style.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2122\\/thumb\\/Big Ben_437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":231,\"Title\":\"Borough Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5055169,\"Long\":-0.0910475,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6005\\/thumb\\/Borough Market_128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":249,\"Title\":\"Buckingham Palace\",\"Description\":\"Buckingham Palace is the London residence and administrative headquarters of the monarch of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today&amp;#039;s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years. It was acquired by King George III in 1761 as a private residence for Queen Charlotte and became known as The Queen&amp;#039;s House.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.501009,\"Long\":-0.1415876,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1521\\/thumb\\/Buckingham Palace_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":303,\"Title\":\"Changing The Guard At Buckingham Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/807\\/thumb\\/Changing The Guard At Buckingham Palace_500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":380,\"Title\":\"Covent Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3227\\/thumb\\/Covent Garden_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":386,\"Title\":\"Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5294\\/thumb\\/Cruise_194.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":417,\"Title\":\"Design Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.502999,\"Long\":-0.071926,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5998\\/thumb\\/Design Museum_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":571,\"Title\":\"Globe Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5960\\/thumb\\/Globe Theatre_827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":636,\"Title\":\"Hampton Court Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.403813,\"Long\":-0.3376701,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5950\\/thumb\\/Hampton Court Palace_506.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":686,\"Title\":\"House Of Parliament\",\"Description\":\"The Palace of Westminster serves as the meeting place of the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Commonly known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.\\r\\nIts name, which derives from the neighbouring Westminster Abbey, may refer to either of two structures: the Old Palace, a medieval building-complex destroyed by fire in 1834, or its replacement, the New Palace that stands today.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2121\\/thumb\\/House Of Parliament_456.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":695,\"Title\":\"Hyde Park\",\"Description\":\"Hyde Park is a Grade I-listed major park in Central London. It is the largest of four Royal Parks that form a chain from the entrance of Kensington Palace through Kensington Gardens and Hyde Park, via Hyde Park Corner and Green Park past the main entrance to Buckingham Palace. The park is divided by the Serpentine and the Long Water lakes. The park was established by Henry VIII in 1536 when he took the land from Westminster Abbey and used it as a hunting ground. It opened to the public in 1637 and quickly became popular, particularly for May Day parades.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4894138,\"Long\":-0.1230915,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1520\\/thumb\\/Hyde Park_809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":967,\"Title\":\"Legoland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5956\\/thumb\\/LEGOLAND&Atilde;&sbquo;&Acirc;&reg;_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":968,\"Title\":\"Leicester Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5948\\/thumb\\/Leicester Square_738.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":985,\"Title\":\"London Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6003\\/thumb\\/London Bridge_251.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":862,\"Title\":\"Kensington Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.506987,\"Long\":-0.179165,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5959\\/thumb\\/Kensington Palace_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":989,\"Title\":\"London Transport Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5122737,\"Long\":-0.1234492,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6000\\/thumb\\/London Transport Museum_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":990,\"Title\":\"London Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5955\\/thumb\\/London Zoo_216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":997,\"Title\":\"Lord\'s Cricket Ground\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282403,\"Long\":-0.1727677,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/806\\/thumb\\/Lord&#039;s Cricket Ground_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1073,\"Title\":\"Marble Arch\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2133\\/thumb\\/Marble Arch_444.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1161,\"Title\":\"Musical Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5876\\/thumb\\/Musical Theatre_205.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1214,\"Title\":\"Natural History Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4950781,\"Long\":-0.1828713,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6001\\/thumb\\/Natural History Museum_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":988,\"Title\":\"London Hop-On Hop-Off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5453\\/thumb\\/London Hop-On Hop-Off_926.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7873,\"Title\":\"Windsor Castle\",\"Description\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is notable for its long association with the English and later British royal family and for its architecture.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4839,\"Long\":0.6044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Windsor_Castle_15836_1545632687.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1873,\"Title\":\"Vibrant - Piccadilly Circus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5195539,\"Long\":-0.0973964,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2135\\/thumb\\/Vibrant Piccadilly_997.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1674,\"Title\":\"St. Paul\'s Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5137342,\"Long\":-0.0987943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3988\\/thumb\\/St. Pauls Cathedral_173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1636,\"Title\":\"Soho Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5996\\/thumb\\/Soho Square_591.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1467,\"Title\":\"Regent\'s Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282712,\"Long\":-0.1498235,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5951\\/thumb\\/Regents Park_123.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1350,\"Title\":\"Penguin Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5357941,\"Long\":-0.1519305,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5954\\/thumb\\/Penguin Beach_558.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1322,\"Title\":\"Parliament Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4975764,\"Long\":-0.1350731,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1613\\/thumb\\/Parliament Square_319.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1359,\"Title\":\"Piccadilly Circus\",\"Description\":\"Piccadilly Circus is a busy square in the heart of London. It is famous for the fountain that was installed here at the end of the nineteenth century and for the neon advertising that turned the square into a miniature version of Times Square. The Circus lies at the intersection of five main roads: Regent Street, Shaftesbury Avenue, Piccadilly Street, Covent Street and Haymarket.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.49264,\"Long\":-0.222373,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1519\\/thumb\\/Piccadilly Circus_179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7870,\"Title\":\"Queen Victoria Summer House- Isle of wight\",\"Description\":\"Today, Osborne House is under the care of English Heritage and is open to the public. The former Naval College&amp;#039;s cricket pavilion was converted into a holiday cottage in 2004.Since 2005, the house has occasionally hosted picnic-style concerts on the lawn outside the main house.English Heritage has a management contract to run Osborne House as an historic tourist attraction. The house&amp;#039;s ownership since 1971 has been held in a private trust[citation needed] connected to Historic Royal Palaces, the agency covering, among others, Hampton Court Palace and the Tower of London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":50.6938,\"Long\":1.3047,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Queen_Victoria_Summer_House-_I_15836_1545631622.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1493,\"Title\":\"Royal Albert Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.500613,\"Long\":-0.1756085,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5958\\/thumb\\/Royal Albert Hall, London_782.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1282,\"Title\":\"Palace Of Westminster\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1319,\"Title\":\"Park Lane\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2134\\/thumb\\/Park Lane_923.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1645,\"Title\":\"Southwark Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5082463,\"Long\":-0.0877234,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6004\\/thumb\\/Southwark Cathedral_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1916,\"Title\":\"Westminster Abbey\",\"Description\":\"Westminster Abbey, formally titled the Collegiate Church of Saint Peter at Westminster, is a large, mainly Gothic abbey church in the City of Westminster, London, England, just to the west of the Palace of Westminster. It is one of the United Kingdom&amp;#039;s most notable religious buildings and the traditional place of coronation and burial site for English and, later, British monarchs. The building itself was a Benedictine monastic church until the monastery was dissolved in 1539. Between 1540 and 1556, the abbey had the status of a cathedral.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4988998,\"Long\":-0.1282744,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1614\\/thumb\\/Westminster Abbey_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1665,\"Title\":\"St Paul Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5134058,\"Long\":-0.1506916,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5949\\/thumb\\/St Paul Cathedral_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1763,\"Title\":\"The Household Cavalry Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5046005,\"Long\":-0.1273738,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5952\\/thumb\\/The Household Cavalry Museum_831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1806,\"Title\":\"Trafalgar Square\",\"Description\":\"Trafalgar Square is a public square in the City of Westminster, Central London, built around the area formerly known as Charing Cross. Its name commemorates the Battle of Trafalgar, a British naval victory in the Napoleonic Wars with France and Spain that took place on 21 October 1805 off the coast of Cape Trafalgar. The site of Trafalgar Square had been a significant landmark since the 13th century and originally contained the King&amp;#039;s Mews. After George IV moved the mews to Buckingham Palace, the area was redeveloped by John Nash, but progress was slow after his death, and the square did not open until 1844.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.508039,\"Long\":-0.128069,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2124\\/thumb\\/Trafalgar Square_190.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1914,\"Title\":\"Wembley Stadium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5567009,\"Long\":-0.2796655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5953\\/thumb\\/Wembley Stadium_204.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":26114,\"Title\":\"Stirling\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":26114,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1478,\"Title\":\"River Thames\",\"Description\":\"The River Thames, known alternatively in parts as the Isis, is a river that flows through southern England including London. At 215 miles, it is the longest river entirely in England and the second longest in the United Kingdom, after the River Severn. It flows through Oxford, Reading, Henley-on-Thames and Windsor. The lower reaches of the river are called the Tideway, derived from its long tidal reach up to Teddington Lock. It rises at Thames Head in Gloucestershire, and flows into the North Sea via the Thames Estuary. The Thames drains the whole of Greater London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2208\\/thumb\\/River Thames_858.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20525,\"Title\":\"the Queen\\u00e2\\u20ac\\u2122s Scottish\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20526,\"Title\":\"the Palace of Holyrood House.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20527,\"Title\":\"York Minster Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20528,\"Title\":\"Scottish legend William \\u00e2\\u20ac\\u02dcBraveheart\\u00e2\\u20ac\\u2122 Wallace.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31555,\"CityName\":\"Lake District\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20529,\"Title\":\"Author Beatrix Potter\\u00e2\\u20ac\\u2122s Hill Top Farm.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20530,\"Title\":\"the ancient city of Chester.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20533,\"Title\":\"BAth City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20534,\"Title\":\"Cardiff Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20535,\"Title\":\"Roman City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20536,\"Title\":\"Salisbury.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20537,\"Title\":\"the mysterious prehistoric monument of Stonehenge.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7874,\"Title\":\"Alton Towers Theme Park\",\"Description\":\"Alton Towers Resort, often shortened to Alton Towers, is a theme park resort located in Staffordshire, England. It is near the village of Alton, in the parishes of Denstone and Farley. The resort, which is operated by Merlin Entertainments Group, incorporates a theme park, water park, spa, mini golf and hotel complex. Originally a private estate, Alton Towers grounds opened to the public in 1860 to raise funds for the estate.In the late 20th century, it was transformed into a theme park and opened a number of new rides from 1986 onwards. In 2017, it was the second most visited theme park in the UK after Legoland Windsor.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":52.9874,\"Long\":1.8865,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Alton_Towers_Theme_Park_15836_1545633376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":147,\"Title\":\"BAPS Shri Swaminarayan Mandir\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5471937,\"Long\":-0.2600335,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5858\\/thumb\\/BAPS Shri Swaminarayan Mandir_421.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7872,\"Title\":\"Bicester Village, Bicester, UK\",\"Description\":\"Bicester Village is an outlet shopping centre on the outskirts of Bicester, a town in Oxfordshire, England. It is owned by Value Retail plc.The centre opened in 1995.\\r\\nMost of its stores are in the luxury goods and designer clothing sector. The centre is the second most visited location in the United Kingdom by Chinese tourists, after Buckingham Palace.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Bicester_Village,_Bicester,_UK_15836_1545632369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":207,\"Title\":\"Big Ben\",\"Description\":\"Big Ben is the nickname for the Great Bell of the clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-gothic style.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2122\\/thumb\\/Big Ben_437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":231,\"Title\":\"Borough Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5055169,\"Long\":-0.0910475,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6005\\/thumb\\/Borough Market_128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":249,\"Title\":\"Buckingham Palace\",\"Description\":\"Buckingham Palace is the London residence and administrative headquarters of the monarch of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today&amp;#039;s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years. It was acquired by King George III in 1761 as a private residence for Queen Charlotte and became known as The Queen&amp;#039;s House.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.501009,\"Long\":-0.1415876,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1521\\/thumb\\/Buckingham Palace_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":303,\"Title\":\"Changing The Guard At Buckingham Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/807\\/thumb\\/Changing The Guard At Buckingham Palace_500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":380,\"Title\":\"Covent Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3227\\/thumb\\/Covent Garden_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":386,\"Title\":\"Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5294\\/thumb\\/Cruise_194.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":417,\"Title\":\"Design Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.502999,\"Long\":-0.071926,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5998\\/thumb\\/Design Museum_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":571,\"Title\":\"Globe Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5960\\/thumb\\/Globe Theatre_827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":636,\"Title\":\"Hampton Court Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.403813,\"Long\":-0.3376701,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5950\\/thumb\\/Hampton Court Palace_506.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":686,\"Title\":\"House Of Parliament\",\"Description\":\"The Palace of Westminster serves as the meeting place of the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Commonly known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.\\r\\nIts name, which derives from the neighbouring Westminster Abbey, may refer to either of two structures: the Old Palace, a medieval building-complex destroyed by fire in 1834, or its replacement, the New Palace that stands today.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2121\\/thumb\\/House Of Parliament_456.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":695,\"Title\":\"Hyde Park\",\"Description\":\"Hyde Park is a Grade I-listed major park in Central London. It is the largest of four Royal Parks that form a chain from the entrance of Kensington Palace through Kensington Gardens and Hyde Park, via Hyde Park Corner and Green Park past the main entrance to Buckingham Palace. The park is divided by the Serpentine and the Long Water lakes. The park was established by Henry VIII in 1536 when he took the land from Westminster Abbey and used it as a hunting ground. It opened to the public in 1637 and quickly became popular, particularly for May Day parades.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4894138,\"Long\":-0.1230915,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1520\\/thumb\\/Hyde Park_809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":967,\"Title\":\"Legoland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5956\\/thumb\\/LEGOLAND&Atilde;&sbquo;&Acirc;&reg;_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":968,\"Title\":\"Leicester Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5948\\/thumb\\/Leicester Square_738.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":985,\"Title\":\"London Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6003\\/thumb\\/London Bridge_251.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":862,\"Title\":\"Kensington Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.506987,\"Long\":-0.179165,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5959\\/thumb\\/Kensington Palace_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":989,\"Title\":\"London Transport Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5122737,\"Long\":-0.1234492,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6000\\/thumb\\/London Transport Museum_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":990,\"Title\":\"London Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5955\\/thumb\\/London Zoo_216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":997,\"Title\":\"Lord\'s Cricket Ground\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282403,\"Long\":-0.1727677,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/806\\/thumb\\/Lord&#039;s Cricket Ground_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1073,\"Title\":\"Marble Arch\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2133\\/thumb\\/Marble Arch_444.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1161,\"Title\":\"Musical Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5876\\/thumb\\/Musical Theatre_205.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1214,\"Title\":\"Natural History Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4950781,\"Long\":-0.1828713,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6001\\/thumb\\/Natural History Museum_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":988,\"Title\":\"London Hop-On Hop-Off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5453\\/thumb\\/London Hop-On Hop-Off_926.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7873,\"Title\":\"Windsor Castle\",\"Description\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is notable for its long association with the English and later British royal family and for its architecture.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4839,\"Long\":0.6044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Windsor_Castle_15836_1545632687.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1873,\"Title\":\"Vibrant - Piccadilly Circus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5195539,\"Long\":-0.0973964,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2135\\/thumb\\/Vibrant Piccadilly_997.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1674,\"Title\":\"St. Paul\'s Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5137342,\"Long\":-0.0987943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3988\\/thumb\\/St. Pauls Cathedral_173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1636,\"Title\":\"Soho Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5996\\/thumb\\/Soho Square_591.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1467,\"Title\":\"Regent\'s Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282712,\"Long\":-0.1498235,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5951\\/thumb\\/Regents Park_123.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1350,\"Title\":\"Penguin Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5357941,\"Long\":-0.1519305,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5954\\/thumb\\/Penguin Beach_558.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1322,\"Title\":\"Parliament Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4975764,\"Long\":-0.1350731,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1613\\/thumb\\/Parliament Square_319.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1359,\"Title\":\"Piccadilly Circus\",\"Description\":\"Piccadilly Circus is a busy square in the heart of London. It is famous for the fountain that was installed here at the end of the nineteenth century and for the neon advertising that turned the square into a miniature version of Times Square. The Circus lies at the intersection of five main roads: Regent Street, Shaftesbury Avenue, Piccadilly Street, Covent Street and Haymarket.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.49264,\"Long\":-0.222373,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1519\\/thumb\\/Piccadilly Circus_179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7870,\"Title\":\"Queen Victoria Summer House- Isle of wight\",\"Description\":\"Today, Osborne House is under the care of English Heritage and is open to the public. The former Naval College&amp;#039;s cricket pavilion was converted into a holiday cottage in 2004.Since 2005, the house has occasionally hosted picnic-style concerts on the lawn outside the main house.English Heritage has a management contract to run Osborne House as an historic tourist attraction. The house&amp;#039;s ownership since 1971 has been held in a private trust[citation needed] connected to Historic Royal Palaces, the agency covering, among others, Hampton Court Palace and the Tower of London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":50.6938,\"Long\":1.3047,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Queen_Victoria_Summer_House-_I_15836_1545631622.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1493,\"Title\":\"Royal Albert Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.500613,\"Long\":-0.1756085,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5958\\/thumb\\/Royal Albert Hall, London_782.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1282,\"Title\":\"Palace Of Westminster\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1319,\"Title\":\"Park Lane\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2134\\/thumb\\/Park Lane_923.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1645,\"Title\":\"Southwark Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5082463,\"Long\":-0.0877234,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6004\\/thumb\\/Southwark Cathedral_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1916,\"Title\":\"Westminster Abbey\",\"Description\":\"Westminster Abbey, formally titled the Collegiate Church of Saint Peter at Westminster, is a large, mainly Gothic abbey church in the City of Westminster, London, England, just to the west of the Palace of Westminster. It is one of the United Kingdom&amp;#039;s most notable religious buildings and the traditional place of coronation and burial site for English and, later, British monarchs. The building itself was a Benedictine monastic church until the monastery was dissolved in 1539. Between 1540 and 1556, the abbey had the status of a cathedral.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4988998,\"Long\":-0.1282744,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1614\\/thumb\\/Westminster Abbey_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1665,\"Title\":\"St Paul Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5134058,\"Long\":-0.1506916,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5949\\/thumb\\/St Paul Cathedral_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1763,\"Title\":\"The Household Cavalry Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5046005,\"Long\":-0.1273738,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5952\\/thumb\\/The Household Cavalry Museum_831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1806,\"Title\":\"Trafalgar Square\",\"Description\":\"Trafalgar Square is a public square in the City of Westminster, Central London, built around the area formerly known as Charing Cross. Its name commemorates the Battle of Trafalgar, a British naval victory in the Napoleonic Wars with France and Spain that took place on 21 October 1805 off the coast of Cape Trafalgar. The site of Trafalgar Square had been a significant landmark since the 13th century and originally contained the King&amp;#039;s Mews. After George IV moved the mews to Buckingham Palace, the area was redeveloped by John Nash, but progress was slow after his death, and the square did not open until 1844.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.508039,\"Long\":-0.128069,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2124\\/thumb\\/Trafalgar Square_190.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1914,\"Title\":\"Wembley Stadium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5567009,\"Long\":-0.2796655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5953\\/thumb\\/Wembley Stadium_204.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":31555,\"Title\":\"Lake District\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":31555,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1478,\"Title\":\"River Thames\",\"Description\":\"The River Thames, known alternatively in parts as the Isis, is a river that flows through southern England including London. At 215 miles, it is the longest river entirely in England and the second longest in the United Kingdom, after the River Severn. It flows through Oxford, Reading, Henley-on-Thames and Windsor. The lower reaches of the river are called the Tideway, derived from its long tidal reach up to Teddington Lock. It rises at Thames Head in Gloucestershire, and flows into the North Sea via the Thames Estuary. The Thames drains the whole of Greater London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2208\\/thumb\\/River Thames_858.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20525,\"Title\":\"the Queen\\u00e2\\u20ac\\u2122s Scottish\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20526,\"Title\":\"the Palace of Holyrood House.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20527,\"Title\":\"York Minster Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20528,\"Title\":\"Scottish legend William \\u00e2\\u20ac\\u02dcBraveheart\\u00e2\\u20ac\\u2122 Wallace.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31555,\"CityName\":\"Lake District\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20529,\"Title\":\"Author Beatrix Potter\\u00e2\\u20ac\\u2122s Hill Top Farm.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20530,\"Title\":\"the ancient city of Chester.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20533,\"Title\":\"BAth City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20534,\"Title\":\"Cardiff Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20535,\"Title\":\"Roman City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20536,\"Title\":\"Salisbury.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20537,\"Title\":\"the mysterious prehistoric monument of Stonehenge.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7874,\"Title\":\"Alton Towers Theme Park\",\"Description\":\"Alton Towers Resort, often shortened to Alton Towers, is a theme park resort located in Staffordshire, England. It is near the village of Alton, in the parishes of Denstone and Farley. The resort, which is operated by Merlin Entertainments Group, incorporates a theme park, water park, spa, mini golf and hotel complex. Originally a private estate, Alton Towers grounds opened to the public in 1860 to raise funds for the estate.In the late 20th century, it was transformed into a theme park and opened a number of new rides from 1986 onwards. In 2017, it was the second most visited theme park in the UK after Legoland Windsor.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":52.9874,\"Long\":1.8865,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Alton_Towers_Theme_Park_15836_1545633376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":147,\"Title\":\"BAPS Shri Swaminarayan Mandir\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5471937,\"Long\":-0.2600335,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5858\\/thumb\\/BAPS Shri Swaminarayan Mandir_421.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7872,\"Title\":\"Bicester Village, Bicester, UK\",\"Description\":\"Bicester Village is an outlet shopping centre on the outskirts of Bicester, a town in Oxfordshire, England. It is owned by Value Retail plc.The centre opened in 1995.\\r\\nMost of its stores are in the luxury goods and designer clothing sector. The centre is the second most visited location in the United Kingdom by Chinese tourists, after Buckingham Palace.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Bicester_Village,_Bicester,_UK_15836_1545632369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":207,\"Title\":\"Big Ben\",\"Description\":\"Big Ben is the nickname for the Great Bell of the clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-gothic style.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2122\\/thumb\\/Big Ben_437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":231,\"Title\":\"Borough Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5055169,\"Long\":-0.0910475,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6005\\/thumb\\/Borough Market_128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":249,\"Title\":\"Buckingham Palace\",\"Description\":\"Buckingham Palace is the London residence and administrative headquarters of the monarch of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today&amp;#039;s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years. It was acquired by King George III in 1761 as a private residence for Queen Charlotte and became known as The Queen&amp;#039;s House.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.501009,\"Long\":-0.1415876,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1521\\/thumb\\/Buckingham Palace_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":303,\"Title\":\"Changing The Guard At Buckingham Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/807\\/thumb\\/Changing The Guard At Buckingham Palace_500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":380,\"Title\":\"Covent Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3227\\/thumb\\/Covent Garden_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":386,\"Title\":\"Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5294\\/thumb\\/Cruise_194.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":417,\"Title\":\"Design Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.502999,\"Long\":-0.071926,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5998\\/thumb\\/Design Museum_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":571,\"Title\":\"Globe Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5960\\/thumb\\/Globe Theatre_827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":636,\"Title\":\"Hampton Court Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.403813,\"Long\":-0.3376701,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5950\\/thumb\\/Hampton Court Palace_506.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":686,\"Title\":\"House Of Parliament\",\"Description\":\"The Palace of Westminster serves as the meeting place of the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Commonly known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.\\r\\nIts name, which derives from the neighbouring Westminster Abbey, may refer to either of two structures: the Old Palace, a medieval building-complex destroyed by fire in 1834, or its replacement, the New Palace that stands today.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2121\\/thumb\\/House Of Parliament_456.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":695,\"Title\":\"Hyde Park\",\"Description\":\"Hyde Park is a Grade I-listed major park in Central London. It is the largest of four Royal Parks that form a chain from the entrance of Kensington Palace through Kensington Gardens and Hyde Park, via Hyde Park Corner and Green Park past the main entrance to Buckingham Palace. The park is divided by the Serpentine and the Long Water lakes. The park was established by Henry VIII in 1536 when he took the land from Westminster Abbey and used it as a hunting ground. It opened to the public in 1637 and quickly became popular, particularly for May Day parades.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4894138,\"Long\":-0.1230915,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1520\\/thumb\\/Hyde Park_809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":967,\"Title\":\"Legoland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5956\\/thumb\\/LEGOLAND&Atilde;&sbquo;&Acirc;&reg;_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":968,\"Title\":\"Leicester Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5948\\/thumb\\/Leicester Square_738.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":985,\"Title\":\"London Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6003\\/thumb\\/London Bridge_251.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":862,\"Title\":\"Kensington Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.506987,\"Long\":-0.179165,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5959\\/thumb\\/Kensington Palace_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":989,\"Title\":\"London Transport Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5122737,\"Long\":-0.1234492,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6000\\/thumb\\/London Transport Museum_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":990,\"Title\":\"London Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5955\\/thumb\\/London Zoo_216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":997,\"Title\":\"Lord\'s Cricket Ground\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282403,\"Long\":-0.1727677,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/806\\/thumb\\/Lord&#039;s Cricket Ground_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1073,\"Title\":\"Marble Arch\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2133\\/thumb\\/Marble Arch_444.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1161,\"Title\":\"Musical Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5876\\/thumb\\/Musical Theatre_205.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1214,\"Title\":\"Natural History Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4950781,\"Long\":-0.1828713,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6001\\/thumb\\/Natural History Museum_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":988,\"Title\":\"London Hop-On Hop-Off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5453\\/thumb\\/London Hop-On Hop-Off_926.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7873,\"Title\":\"Windsor Castle\",\"Description\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is notable for its long association with the English and later British royal family and for its architecture.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4839,\"Long\":0.6044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Windsor_Castle_15836_1545632687.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1873,\"Title\":\"Vibrant - Piccadilly Circus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5195539,\"Long\":-0.0973964,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2135\\/thumb\\/Vibrant Piccadilly_997.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1674,\"Title\":\"St. Paul\'s Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5137342,\"Long\":-0.0987943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3988\\/thumb\\/St. Pauls Cathedral_173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1636,\"Title\":\"Soho Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5996\\/thumb\\/Soho Square_591.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1467,\"Title\":\"Regent\'s Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282712,\"Long\":-0.1498235,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5951\\/thumb\\/Regents Park_123.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1350,\"Title\":\"Penguin Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5357941,\"Long\":-0.1519305,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5954\\/thumb\\/Penguin Beach_558.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1322,\"Title\":\"Parliament Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4975764,\"Long\":-0.1350731,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1613\\/thumb\\/Parliament Square_319.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1359,\"Title\":\"Piccadilly Circus\",\"Description\":\"Piccadilly Circus is a busy square in the heart of London. It is famous for the fountain that was installed here at the end of the nineteenth century and for the neon advertising that turned the square into a miniature version of Times Square. The Circus lies at the intersection of five main roads: Regent Street, Shaftesbury Avenue, Piccadilly Street, Covent Street and Haymarket.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.49264,\"Long\":-0.222373,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1519\\/thumb\\/Piccadilly Circus_179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7870,\"Title\":\"Queen Victoria Summer House- Isle of wight\",\"Description\":\"Today, Osborne House is under the care of English Heritage and is open to the public. The former Naval College&amp;#039;s cricket pavilion was converted into a holiday cottage in 2004.Since 2005, the house has occasionally hosted picnic-style concerts on the lawn outside the main house.English Heritage has a management contract to run Osborne House as an historic tourist attraction. The house&amp;#039;s ownership since 1971 has been held in a private trust[citation needed] connected to Historic Royal Palaces, the agency covering, among others, Hampton Court Palace and the Tower of London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":50.6938,\"Long\":1.3047,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Queen_Victoria_Summer_House-_I_15836_1545631622.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1493,\"Title\":\"Royal Albert Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.500613,\"Long\":-0.1756085,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5958\\/thumb\\/Royal Albert Hall, London_782.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1282,\"Title\":\"Palace Of Westminster\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1319,\"Title\":\"Park Lane\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2134\\/thumb\\/Park Lane_923.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1645,\"Title\":\"Southwark Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5082463,\"Long\":-0.0877234,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6004\\/thumb\\/Southwark Cathedral_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1916,\"Title\":\"Westminster Abbey\",\"Description\":\"Westminster Abbey, formally titled the Collegiate Church of Saint Peter at Westminster, is a large, mainly Gothic abbey church in the City of Westminster, London, England, just to the west of the Palace of Westminster. It is one of the United Kingdom&amp;#039;s most notable religious buildings and the traditional place of coronation and burial site for English and, later, British monarchs. The building itself was a Benedictine monastic church until the monastery was dissolved in 1539. Between 1540 and 1556, the abbey had the status of a cathedral.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4988998,\"Long\":-0.1282744,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1614\\/thumb\\/Westminster Abbey_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1665,\"Title\":\"St Paul Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5134058,\"Long\":-0.1506916,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5949\\/thumb\\/St Paul Cathedral_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1763,\"Title\":\"The Household Cavalry Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5046005,\"Long\":-0.1273738,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5952\\/thumb\\/The Household Cavalry Museum_831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1806,\"Title\":\"Trafalgar Square\",\"Description\":\"Trafalgar Square is a public square in the City of Westminster, Central London, built around the area formerly known as Charing Cross. Its name commemorates the Battle of Trafalgar, a British naval victory in the Napoleonic Wars with France and Spain that took place on 21 October 1805 off the coast of Cape Trafalgar. The site of Trafalgar Square had been a significant landmark since the 13th century and originally contained the King&amp;#039;s Mews. After George IV moved the mews to Buckingham Palace, the area was redeveloped by John Nash, but progress was slow after his death, and the square did not open until 1844.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.508039,\"Long\":-0.128069,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2124\\/thumb\\/Trafalgar Square_190.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1914,\"Title\":\"Wembley Stadium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5567009,\"Long\":-0.2796655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5953\\/thumb\\/Wembley Stadium_204.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":25504,\"Title\":\"Snowdonia\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":25504,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1478,\"Title\":\"River Thames\",\"Description\":\"The River Thames, known alternatively in parts as the Isis, is a river that flows through southern England including London. At 215 miles, it is the longest river entirely in England and the second longest in the United Kingdom, after the River Severn. It flows through Oxford, Reading, Henley-on-Thames and Windsor. The lower reaches of the river are called the Tideway, derived from its long tidal reach up to Teddington Lock. It rises at Thames Head in Gloucestershire, and flows into the North Sea via the Thames Estuary. The Thames drains the whole of Greater London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2208\\/thumb\\/River Thames_858.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20525,\"Title\":\"the Queen\\u00e2\\u20ac\\u2122s Scottish\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20526,\"Title\":\"the Palace of Holyrood House.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20527,\"Title\":\"York Minster Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20528,\"Title\":\"Scottish legend William \\u00e2\\u20ac\\u02dcBraveheart\\u00e2\\u20ac\\u2122 Wallace.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31555,\"CityName\":\"Lake District\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20529,\"Title\":\"Author Beatrix Potter\\u00e2\\u20ac\\u2122s Hill Top Farm.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20530,\"Title\":\"the ancient city of Chester.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20533,\"Title\":\"BAth City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20534,\"Title\":\"Cardiff Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20535,\"Title\":\"Roman City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20536,\"Title\":\"Salisbury.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20537,\"Title\":\"the mysterious prehistoric monument of Stonehenge.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7874,\"Title\":\"Alton Towers Theme Park\",\"Description\":\"Alton Towers Resort, often shortened to Alton Towers, is a theme park resort located in Staffordshire, England. It is near the village of Alton, in the parishes of Denstone and Farley. The resort, which is operated by Merlin Entertainments Group, incorporates a theme park, water park, spa, mini golf and hotel complex. Originally a private estate, Alton Towers grounds opened to the public in 1860 to raise funds for the estate.In the late 20th century, it was transformed into a theme park and opened a number of new rides from 1986 onwards. In 2017, it was the second most visited theme park in the UK after Legoland Windsor.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":52.9874,\"Long\":1.8865,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Alton_Towers_Theme_Park_15836_1545633376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":147,\"Title\":\"BAPS Shri Swaminarayan Mandir\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5471937,\"Long\":-0.2600335,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5858\\/thumb\\/BAPS Shri Swaminarayan Mandir_421.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7872,\"Title\":\"Bicester Village, Bicester, UK\",\"Description\":\"Bicester Village is an outlet shopping centre on the outskirts of Bicester, a town in Oxfordshire, England. It is owned by Value Retail plc.The centre opened in 1995.\\r\\nMost of its stores are in the luxury goods and designer clothing sector. The centre is the second most visited location in the United Kingdom by Chinese tourists, after Buckingham Palace.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Bicester_Village,_Bicester,_UK_15836_1545632369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":207,\"Title\":\"Big Ben\",\"Description\":\"Big Ben is the nickname for the Great Bell of the clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-gothic style.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2122\\/thumb\\/Big Ben_437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":231,\"Title\":\"Borough Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5055169,\"Long\":-0.0910475,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6005\\/thumb\\/Borough Market_128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":249,\"Title\":\"Buckingham Palace\",\"Description\":\"Buckingham Palace is the London residence and administrative headquarters of the monarch of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today&amp;#039;s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years. It was acquired by King George III in 1761 as a private residence for Queen Charlotte and became known as The Queen&amp;#039;s House.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.501009,\"Long\":-0.1415876,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1521\\/thumb\\/Buckingham Palace_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":303,\"Title\":\"Changing The Guard At Buckingham Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/807\\/thumb\\/Changing The Guard At Buckingham Palace_500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":380,\"Title\":\"Covent Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3227\\/thumb\\/Covent Garden_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":386,\"Title\":\"Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5294\\/thumb\\/Cruise_194.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":417,\"Title\":\"Design Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.502999,\"Long\":-0.071926,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5998\\/thumb\\/Design Museum_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":571,\"Title\":\"Globe Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5960\\/thumb\\/Globe Theatre_827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":636,\"Title\":\"Hampton Court Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.403813,\"Long\":-0.3376701,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5950\\/thumb\\/Hampton Court Palace_506.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":686,\"Title\":\"House Of Parliament\",\"Description\":\"The Palace of Westminster serves as the meeting place of the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Commonly known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.\\r\\nIts name, which derives from the neighbouring Westminster Abbey, may refer to either of two structures: the Old Palace, a medieval building-complex destroyed by fire in 1834, or its replacement, the New Palace that stands today.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2121\\/thumb\\/House Of Parliament_456.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":695,\"Title\":\"Hyde Park\",\"Description\":\"Hyde Park is a Grade I-listed major park in Central London. It is the largest of four Royal Parks that form a chain from the entrance of Kensington Palace through Kensington Gardens and Hyde Park, via Hyde Park Corner and Green Park past the main entrance to Buckingham Palace. The park is divided by the Serpentine and the Long Water lakes. The park was established by Henry VIII in 1536 when he took the land from Westminster Abbey and used it as a hunting ground. It opened to the public in 1637 and quickly became popular, particularly for May Day parades.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4894138,\"Long\":-0.1230915,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1520\\/thumb\\/Hyde Park_809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":967,\"Title\":\"Legoland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5956\\/thumb\\/LEGOLAND&Atilde;&sbquo;&Acirc;&reg;_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":968,\"Title\":\"Leicester Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5948\\/thumb\\/Leicester Square_738.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":985,\"Title\":\"London Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6003\\/thumb\\/London Bridge_251.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":862,\"Title\":\"Kensington Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.506987,\"Long\":-0.179165,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5959\\/thumb\\/Kensington Palace_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":989,\"Title\":\"London Transport Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5122737,\"Long\":-0.1234492,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6000\\/thumb\\/London Transport Museum_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":990,\"Title\":\"London Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5955\\/thumb\\/London Zoo_216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":997,\"Title\":\"Lord\'s Cricket Ground\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282403,\"Long\":-0.1727677,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/806\\/thumb\\/Lord&#039;s Cricket Ground_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1073,\"Title\":\"Marble Arch\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2133\\/thumb\\/Marble Arch_444.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1161,\"Title\":\"Musical Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5876\\/thumb\\/Musical Theatre_205.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1214,\"Title\":\"Natural History Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4950781,\"Long\":-0.1828713,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6001\\/thumb\\/Natural History Museum_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":988,\"Title\":\"London Hop-On Hop-Off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5453\\/thumb\\/London Hop-On Hop-Off_926.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7873,\"Title\":\"Windsor Castle\",\"Description\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is notable for its long association with the English and later British royal family and for its architecture.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4839,\"Long\":0.6044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Windsor_Castle_15836_1545632687.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1873,\"Title\":\"Vibrant - Piccadilly Circus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5195539,\"Long\":-0.0973964,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2135\\/thumb\\/Vibrant Piccadilly_997.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1674,\"Title\":\"St. Paul\'s Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5137342,\"Long\":-0.0987943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3988\\/thumb\\/St. Pauls Cathedral_173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1636,\"Title\":\"Soho Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5996\\/thumb\\/Soho Square_591.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1467,\"Title\":\"Regent\'s Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282712,\"Long\":-0.1498235,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5951\\/thumb\\/Regents Park_123.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1350,\"Title\":\"Penguin Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5357941,\"Long\":-0.1519305,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5954\\/thumb\\/Penguin Beach_558.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1322,\"Title\":\"Parliament Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4975764,\"Long\":-0.1350731,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1613\\/thumb\\/Parliament Square_319.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1359,\"Title\":\"Piccadilly Circus\",\"Description\":\"Piccadilly Circus is a busy square in the heart of London. It is famous for the fountain that was installed here at the end of the nineteenth century and for the neon advertising that turned the square into a miniature version of Times Square. The Circus lies at the intersection of five main roads: Regent Street, Shaftesbury Avenue, Piccadilly Street, Covent Street and Haymarket.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.49264,\"Long\":-0.222373,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1519\\/thumb\\/Piccadilly Circus_179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7870,\"Title\":\"Queen Victoria Summer House- Isle of wight\",\"Description\":\"Today, Osborne House is under the care of English Heritage and is open to the public. The former Naval College&amp;#039;s cricket pavilion was converted into a holiday cottage in 2004.Since 2005, the house has occasionally hosted picnic-style concerts on the lawn outside the main house.English Heritage has a management contract to run Osborne House as an historic tourist attraction. The house&amp;#039;s ownership since 1971 has been held in a private trust[citation needed] connected to Historic Royal Palaces, the agency covering, among others, Hampton Court Palace and the Tower of London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":50.6938,\"Long\":1.3047,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Queen_Victoria_Summer_House-_I_15836_1545631622.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1493,\"Title\":\"Royal Albert Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.500613,\"Long\":-0.1756085,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5958\\/thumb\\/Royal Albert Hall, London_782.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1282,\"Title\":\"Palace Of Westminster\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1319,\"Title\":\"Park Lane\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2134\\/thumb\\/Park Lane_923.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1645,\"Title\":\"Southwark Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5082463,\"Long\":-0.0877234,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6004\\/thumb\\/Southwark Cathedral_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1916,\"Title\":\"Westminster Abbey\",\"Description\":\"Westminster Abbey, formally titled the Collegiate Church of Saint Peter at Westminster, is a large, mainly Gothic abbey church in the City of Westminster, London, England, just to the west of the Palace of Westminster. It is one of the United Kingdom&amp;#039;s most notable religious buildings and the traditional place of coronation and burial site for English and, later, British monarchs. The building itself was a Benedictine monastic church until the monastery was dissolved in 1539. Between 1540 and 1556, the abbey had the status of a cathedral.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4988998,\"Long\":-0.1282744,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1614\\/thumb\\/Westminster Abbey_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1665,\"Title\":\"St Paul Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5134058,\"Long\":-0.1506916,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5949\\/thumb\\/St Paul Cathedral_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1763,\"Title\":\"The Household Cavalry Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5046005,\"Long\":-0.1273738,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5952\\/thumb\\/The Household Cavalry Museum_831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1806,\"Title\":\"Trafalgar Square\",\"Description\":\"Trafalgar Square is a public square in the City of Westminster, Central London, built around the area formerly known as Charing Cross. Its name commemorates the Battle of Trafalgar, a British naval victory in the Napoleonic Wars with France and Spain that took place on 21 October 1805 off the coast of Cape Trafalgar. The site of Trafalgar Square had been a significant landmark since the 13th century and originally contained the King&amp;#039;s Mews. After George IV moved the mews to Buckingham Palace, the area was redeveloped by John Nash, but progress was slow after his death, and the square did not open until 1844.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.508039,\"Long\":-0.128069,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2124\\/thumb\\/Trafalgar Square_190.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1914,\"Title\":\"Wembley Stadium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5567009,\"Long\":-0.2796655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5953\\/thumb\\/Wembley Stadium_204.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":5145,\"Title\":\"Cardiff\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":5145,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1478,\"Title\":\"River Thames\",\"Description\":\"The River Thames, known alternatively in parts as the Isis, is a river that flows through southern England including London. At 215 miles, it is the longest river entirely in England and the second longest in the United Kingdom, after the River Severn. It flows through Oxford, Reading, Henley-on-Thames and Windsor. The lower reaches of the river are called the Tideway, derived from its long tidal reach up to Teddington Lock. It rises at Thames Head in Gloucestershire, and flows into the North Sea via the Thames Estuary. The Thames drains the whole of Greater London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2208\\/thumb\\/River Thames_858.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20525,\"Title\":\"the Queen\\u00e2\\u20ac\\u2122s Scottish\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20526,\"Title\":\"the Palace of Holyrood House.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20527,\"Title\":\"York Minster Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20528,\"Title\":\"Scottish legend William \\u00e2\\u20ac\\u02dcBraveheart\\u00e2\\u20ac\\u2122 Wallace.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31555,\"CityName\":\"Lake District\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20529,\"Title\":\"Author Beatrix Potter\\u00e2\\u20ac\\u2122s Hill Top Farm.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20530,\"Title\":\"the ancient city of Chester.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20533,\"Title\":\"BAth City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20534,\"Title\":\"Cardiff Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20535,\"Title\":\"Roman City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20536,\"Title\":\"Salisbury.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20537,\"Title\":\"the mysterious prehistoric monument of Stonehenge.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7874,\"Title\":\"Alton Towers Theme Park\",\"Description\":\"Alton Towers Resort, often shortened to Alton Towers, is a theme park resort located in Staffordshire, England. It is near the village of Alton, in the parishes of Denstone and Farley. The resort, which is operated by Merlin Entertainments Group, incorporates a theme park, water park, spa, mini golf and hotel complex. Originally a private estate, Alton Towers grounds opened to the public in 1860 to raise funds for the estate.In the late 20th century, it was transformed into a theme park and opened a number of new rides from 1986 onwards. In 2017, it was the second most visited theme park in the UK after Legoland Windsor.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":52.9874,\"Long\":1.8865,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Alton_Towers_Theme_Park_15836_1545633376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":147,\"Title\":\"BAPS Shri Swaminarayan Mandir\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5471937,\"Long\":-0.2600335,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5858\\/thumb\\/BAPS Shri Swaminarayan Mandir_421.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7872,\"Title\":\"Bicester Village, Bicester, UK\",\"Description\":\"Bicester Village is an outlet shopping centre on the outskirts of Bicester, a town in Oxfordshire, England. It is owned by Value Retail plc.The centre opened in 1995.\\r\\nMost of its stores are in the luxury goods and designer clothing sector. The centre is the second most visited location in the United Kingdom by Chinese tourists, after Buckingham Palace.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Bicester_Village,_Bicester,_UK_15836_1545632369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":207,\"Title\":\"Big Ben\",\"Description\":\"Big Ben is the nickname for the Great Bell of the clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-gothic style.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2122\\/thumb\\/Big Ben_437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":231,\"Title\":\"Borough Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5055169,\"Long\":-0.0910475,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6005\\/thumb\\/Borough Market_128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":249,\"Title\":\"Buckingham Palace\",\"Description\":\"Buckingham Palace is the London residence and administrative headquarters of the monarch of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today&amp;#039;s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years. It was acquired by King George III in 1761 as a private residence for Queen Charlotte and became known as The Queen&amp;#039;s House.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.501009,\"Long\":-0.1415876,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1521\\/thumb\\/Buckingham Palace_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":303,\"Title\":\"Changing The Guard At Buckingham Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/807\\/thumb\\/Changing The Guard At Buckingham Palace_500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":380,\"Title\":\"Covent Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3227\\/thumb\\/Covent Garden_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":386,\"Title\":\"Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5294\\/thumb\\/Cruise_194.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":417,\"Title\":\"Design Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.502999,\"Long\":-0.071926,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5998\\/thumb\\/Design Museum_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":571,\"Title\":\"Globe Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5960\\/thumb\\/Globe Theatre_827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":636,\"Title\":\"Hampton Court Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.403813,\"Long\":-0.3376701,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5950\\/thumb\\/Hampton Court Palace_506.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":686,\"Title\":\"House Of Parliament\",\"Description\":\"The Palace of Westminster serves as the meeting place of the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Commonly known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.\\r\\nIts name, which derives from the neighbouring Westminster Abbey, may refer to either of two structures: the Old Palace, a medieval building-complex destroyed by fire in 1834, or its replacement, the New Palace that stands today.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2121\\/thumb\\/House Of Parliament_456.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":695,\"Title\":\"Hyde Park\",\"Description\":\"Hyde Park is a Grade I-listed major park in Central London. It is the largest of four Royal Parks that form a chain from the entrance of Kensington Palace through Kensington Gardens and Hyde Park, via Hyde Park Corner and Green Park past the main entrance to Buckingham Palace. The park is divided by the Serpentine and the Long Water lakes. The park was established by Henry VIII in 1536 when he took the land from Westminster Abbey and used it as a hunting ground. It opened to the public in 1637 and quickly became popular, particularly for May Day parades.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4894138,\"Long\":-0.1230915,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1520\\/thumb\\/Hyde Park_809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":967,\"Title\":\"Legoland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5956\\/thumb\\/LEGOLAND&Atilde;&sbquo;&Acirc;&reg;_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":968,\"Title\":\"Leicester Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5948\\/thumb\\/Leicester Square_738.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":985,\"Title\":\"London Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6003\\/thumb\\/London Bridge_251.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":862,\"Title\":\"Kensington Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.506987,\"Long\":-0.179165,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5959\\/thumb\\/Kensington Palace_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":989,\"Title\":\"London Transport Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5122737,\"Long\":-0.1234492,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6000\\/thumb\\/London Transport Museum_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":990,\"Title\":\"London Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5955\\/thumb\\/London Zoo_216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":997,\"Title\":\"Lord\'s Cricket Ground\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282403,\"Long\":-0.1727677,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/806\\/thumb\\/Lord&#039;s Cricket Ground_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1073,\"Title\":\"Marble Arch\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2133\\/thumb\\/Marble Arch_444.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1161,\"Title\":\"Musical Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5876\\/thumb\\/Musical Theatre_205.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1214,\"Title\":\"Natural History Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4950781,\"Long\":-0.1828713,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6001\\/thumb\\/Natural History Museum_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":988,\"Title\":\"London Hop-On Hop-Off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5453\\/thumb\\/London Hop-On Hop-Off_926.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7873,\"Title\":\"Windsor Castle\",\"Description\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is notable for its long association with the English and later British royal family and for its architecture.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4839,\"Long\":0.6044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Windsor_Castle_15836_1545632687.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1873,\"Title\":\"Vibrant - Piccadilly Circus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5195539,\"Long\":-0.0973964,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2135\\/thumb\\/Vibrant Piccadilly_997.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1674,\"Title\":\"St. Paul\'s Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5137342,\"Long\":-0.0987943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3988\\/thumb\\/St. Pauls Cathedral_173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1636,\"Title\":\"Soho Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5996\\/thumb\\/Soho Square_591.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1467,\"Title\":\"Regent\'s Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282712,\"Long\":-0.1498235,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5951\\/thumb\\/Regents Park_123.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1350,\"Title\":\"Penguin Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5357941,\"Long\":-0.1519305,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5954\\/thumb\\/Penguin Beach_558.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1322,\"Title\":\"Parliament Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4975764,\"Long\":-0.1350731,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1613\\/thumb\\/Parliament Square_319.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1359,\"Title\":\"Piccadilly Circus\",\"Description\":\"Piccadilly Circus is a busy square in the heart of London. It is famous for the fountain that was installed here at the end of the nineteenth century and for the neon advertising that turned the square into a miniature version of Times Square. The Circus lies at the intersection of five main roads: Regent Street, Shaftesbury Avenue, Piccadilly Street, Covent Street and Haymarket.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.49264,\"Long\":-0.222373,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1519\\/thumb\\/Piccadilly Circus_179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7870,\"Title\":\"Queen Victoria Summer House- Isle of wight\",\"Description\":\"Today, Osborne House is under the care of English Heritage and is open to the public. The former Naval College&amp;#039;s cricket pavilion was converted into a holiday cottage in 2004.Since 2005, the house has occasionally hosted picnic-style concerts on the lawn outside the main house.English Heritage has a management contract to run Osborne House as an historic tourist attraction. The house&amp;#039;s ownership since 1971 has been held in a private trust[citation needed] connected to Historic Royal Palaces, the agency covering, among others, Hampton Court Palace and the Tower of London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":50.6938,\"Long\":1.3047,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Queen_Victoria_Summer_House-_I_15836_1545631622.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1493,\"Title\":\"Royal Albert Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.500613,\"Long\":-0.1756085,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5958\\/thumb\\/Royal Albert Hall, London_782.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1282,\"Title\":\"Palace Of Westminster\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1319,\"Title\":\"Park Lane\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2134\\/thumb\\/Park Lane_923.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1645,\"Title\":\"Southwark Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5082463,\"Long\":-0.0877234,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6004\\/thumb\\/Southwark Cathedral_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1916,\"Title\":\"Westminster Abbey\",\"Description\":\"Westminster Abbey, formally titled the Collegiate Church of Saint Peter at Westminster, is a large, mainly Gothic abbey church in the City of Westminster, London, England, just to the west of the Palace of Westminster. It is one of the United Kingdom&amp;#039;s most notable religious buildings and the traditional place of coronation and burial site for English and, later, British monarchs. The building itself was a Benedictine monastic church until the monastery was dissolved in 1539. Between 1540 and 1556, the abbey had the status of a cathedral.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4988998,\"Long\":-0.1282744,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1614\\/thumb\\/Westminster Abbey_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1665,\"Title\":\"St Paul Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5134058,\"Long\":-0.1506916,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5949\\/thumb\\/St Paul Cathedral_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1763,\"Title\":\"The Household Cavalry Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5046005,\"Long\":-0.1273738,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5952\\/thumb\\/The Household Cavalry Museum_831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1806,\"Title\":\"Trafalgar Square\",\"Description\":\"Trafalgar Square is a public square in the City of Westminster, Central London, built around the area formerly known as Charing Cross. Its name commemorates the Battle of Trafalgar, a British naval victory in the Napoleonic Wars with France and Spain that took place on 21 October 1805 off the coast of Cape Trafalgar. The site of Trafalgar Square had been a significant landmark since the 13th century and originally contained the King&amp;#039;s Mews. After George IV moved the mews to Buckingham Palace, the area was redeveloped by John Nash, but progress was slow after his death, and the square did not open until 1844.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.508039,\"Long\":-0.128069,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2124\\/thumb\\/Trafalgar Square_190.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1914,\"Title\":\"Wembley Stadium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5567009,\"Long\":-0.2796655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5953\\/thumb\\/Wembley Stadium_204.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":2532,\"Title\":\"Bath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":2532,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1478,\"Title\":\"River Thames\",\"Description\":\"The River Thames, known alternatively in parts as the Isis, is a river that flows through southern England including London. At 215 miles, it is the longest river entirely in England and the second longest in the United Kingdom, after the River Severn. It flows through Oxford, Reading, Henley-on-Thames and Windsor. The lower reaches of the river are called the Tideway, derived from its long tidal reach up to Teddington Lock. It rises at Thames Head in Gloucestershire, and flows into the North Sea via the Thames Estuary. The Thames drains the whole of Greater London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2208\\/thumb\\/River Thames_858.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20525,\"Title\":\"the Queen\\u00e2\\u20ac\\u2122s Scottish\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20526,\"Title\":\"the Palace of Holyrood House.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20527,\"Title\":\"York Minster Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20528,\"Title\":\"Scottish legend William \\u00e2\\u20ac\\u02dcBraveheart\\u00e2\\u20ac\\u2122 Wallace.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31555,\"CityName\":\"Lake District\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20529,\"Title\":\"Author Beatrix Potter\\u00e2\\u20ac\\u2122s Hill Top Farm.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20530,\"Title\":\"the ancient city of Chester.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20533,\"Title\":\"BAth City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20534,\"Title\":\"Cardiff Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20535,\"Title\":\"Roman City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20536,\"Title\":\"Salisbury.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20537,\"Title\":\"the mysterious prehistoric monument of Stonehenge.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7874,\"Title\":\"Alton Towers Theme Park\",\"Description\":\"Alton Towers Resort, often shortened to Alton Towers, is a theme park resort located in Staffordshire, England. It is near the village of Alton, in the parishes of Denstone and Farley. The resort, which is operated by Merlin Entertainments Group, incorporates a theme park, water park, spa, mini golf and hotel complex. Originally a private estate, Alton Towers grounds opened to the public in 1860 to raise funds for the estate.In the late 20th century, it was transformed into a theme park and opened a number of new rides from 1986 onwards. In 2017, it was the second most visited theme park in the UK after Legoland Windsor.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":52.9874,\"Long\":1.8865,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Alton_Towers_Theme_Park_15836_1545633376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":147,\"Title\":\"BAPS Shri Swaminarayan Mandir\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5471937,\"Long\":-0.2600335,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5858\\/thumb\\/BAPS Shri Swaminarayan Mandir_421.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7872,\"Title\":\"Bicester Village, Bicester, UK\",\"Description\":\"Bicester Village is an outlet shopping centre on the outskirts of Bicester, a town in Oxfordshire, England. It is owned by Value Retail plc.The centre opened in 1995.\\r\\nMost of its stores are in the luxury goods and designer clothing sector. The centre is the second most visited location in the United Kingdom by Chinese tourists, after Buckingham Palace.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Bicester_Village,_Bicester,_UK_15836_1545632369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":207,\"Title\":\"Big Ben\",\"Description\":\"Big Ben is the nickname for the Great Bell of the clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-gothic style.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2122\\/thumb\\/Big Ben_437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":231,\"Title\":\"Borough Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5055169,\"Long\":-0.0910475,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6005\\/thumb\\/Borough Market_128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":249,\"Title\":\"Buckingham Palace\",\"Description\":\"Buckingham Palace is the London residence and administrative headquarters of the monarch of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today&amp;#039;s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years. It was acquired by King George III in 1761 as a private residence for Queen Charlotte and became known as The Queen&amp;#039;s House.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.501009,\"Long\":-0.1415876,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1521\\/thumb\\/Buckingham Palace_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":303,\"Title\":\"Changing The Guard At Buckingham Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/807\\/thumb\\/Changing The Guard At Buckingham Palace_500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":380,\"Title\":\"Covent Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3227\\/thumb\\/Covent Garden_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":386,\"Title\":\"Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5294\\/thumb\\/Cruise_194.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":417,\"Title\":\"Design Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.502999,\"Long\":-0.071926,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5998\\/thumb\\/Design Museum_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":571,\"Title\":\"Globe Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5960\\/thumb\\/Globe Theatre_827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":636,\"Title\":\"Hampton Court Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.403813,\"Long\":-0.3376701,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5950\\/thumb\\/Hampton Court Palace_506.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":686,\"Title\":\"House Of Parliament\",\"Description\":\"The Palace of Westminster serves as the meeting place of the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Commonly known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.\\r\\nIts name, which derives from the neighbouring Westminster Abbey, may refer to either of two structures: the Old Palace, a medieval building-complex destroyed by fire in 1834, or its replacement, the New Palace that stands today.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2121\\/thumb\\/House Of Parliament_456.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":695,\"Title\":\"Hyde Park\",\"Description\":\"Hyde Park is a Grade I-listed major park in Central London. It is the largest of four Royal Parks that form a chain from the entrance of Kensington Palace through Kensington Gardens and Hyde Park, via Hyde Park Corner and Green Park past the main entrance to Buckingham Palace. The park is divided by the Serpentine and the Long Water lakes. The park was established by Henry VIII in 1536 when he took the land from Westminster Abbey and used it as a hunting ground. It opened to the public in 1637 and quickly became popular, particularly for May Day parades.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4894138,\"Long\":-0.1230915,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1520\\/thumb\\/Hyde Park_809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":967,\"Title\":\"Legoland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5956\\/thumb\\/LEGOLAND&Atilde;&sbquo;&Acirc;&reg;_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":968,\"Title\":\"Leicester Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5948\\/thumb\\/Leicester Square_738.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":985,\"Title\":\"London Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6003\\/thumb\\/London Bridge_251.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":862,\"Title\":\"Kensington Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.506987,\"Long\":-0.179165,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5959\\/thumb\\/Kensington Palace_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":989,\"Title\":\"London Transport Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5122737,\"Long\":-0.1234492,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6000\\/thumb\\/London Transport Museum_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":990,\"Title\":\"London Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5955\\/thumb\\/London Zoo_216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":997,\"Title\":\"Lord\'s Cricket Ground\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282403,\"Long\":-0.1727677,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/806\\/thumb\\/Lord&#039;s Cricket Ground_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1073,\"Title\":\"Marble Arch\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2133\\/thumb\\/Marble Arch_444.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1161,\"Title\":\"Musical Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5876\\/thumb\\/Musical Theatre_205.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1214,\"Title\":\"Natural History Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4950781,\"Long\":-0.1828713,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6001\\/thumb\\/Natural History Museum_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":988,\"Title\":\"London Hop-On Hop-Off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5453\\/thumb\\/London Hop-On Hop-Off_926.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7873,\"Title\":\"Windsor Castle\",\"Description\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is notable for its long association with the English and later British royal family and for its architecture.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4839,\"Long\":0.6044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Windsor_Castle_15836_1545632687.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1873,\"Title\":\"Vibrant - Piccadilly Circus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5195539,\"Long\":-0.0973964,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2135\\/thumb\\/Vibrant Piccadilly_997.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1674,\"Title\":\"St. Paul\'s Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5137342,\"Long\":-0.0987943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3988\\/thumb\\/St. Pauls Cathedral_173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1636,\"Title\":\"Soho Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5996\\/thumb\\/Soho Square_591.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1467,\"Title\":\"Regent\'s Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282712,\"Long\":-0.1498235,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5951\\/thumb\\/Regents Park_123.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1350,\"Title\":\"Penguin Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5357941,\"Long\":-0.1519305,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5954\\/thumb\\/Penguin Beach_558.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1322,\"Title\":\"Parliament Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4975764,\"Long\":-0.1350731,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1613\\/thumb\\/Parliament Square_319.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1359,\"Title\":\"Piccadilly Circus\",\"Description\":\"Piccadilly Circus is a busy square in the heart of London. It is famous for the fountain that was installed here at the end of the nineteenth century and for the neon advertising that turned the square into a miniature version of Times Square. The Circus lies at the intersection of five main roads: Regent Street, Shaftesbury Avenue, Piccadilly Street, Covent Street and Haymarket.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.49264,\"Long\":-0.222373,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1519\\/thumb\\/Piccadilly Circus_179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7870,\"Title\":\"Queen Victoria Summer House- Isle of wight\",\"Description\":\"Today, Osborne House is under the care of English Heritage and is open to the public. The former Naval College&amp;#039;s cricket pavilion was converted into a holiday cottage in 2004.Since 2005, the house has occasionally hosted picnic-style concerts on the lawn outside the main house.English Heritage has a management contract to run Osborne House as an historic tourist attraction. The house&amp;#039;s ownership since 1971 has been held in a private trust[citation needed] connected to Historic Royal Palaces, the agency covering, among others, Hampton Court Palace and the Tower of London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":50.6938,\"Long\":1.3047,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Queen_Victoria_Summer_House-_I_15836_1545631622.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1493,\"Title\":\"Royal Albert Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.500613,\"Long\":-0.1756085,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5958\\/thumb\\/Royal Albert Hall, London_782.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1282,\"Title\":\"Palace Of Westminster\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1319,\"Title\":\"Park Lane\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2134\\/thumb\\/Park Lane_923.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1645,\"Title\":\"Southwark Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5082463,\"Long\":-0.0877234,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6004\\/thumb\\/Southwark Cathedral_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1916,\"Title\":\"Westminster Abbey\",\"Description\":\"Westminster Abbey, formally titled the Collegiate Church of Saint Peter at Westminster, is a large, mainly Gothic abbey church in the City of Westminster, London, England, just to the west of the Palace of Westminster. It is one of the United Kingdom&amp;#039;s most notable religious buildings and the traditional place of coronation and burial site for English and, later, British monarchs. The building itself was a Benedictine monastic church until the monastery was dissolved in 1539. Between 1540 and 1556, the abbey had the status of a cathedral.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4988998,\"Long\":-0.1282744,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1614\\/thumb\\/Westminster Abbey_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1665,\"Title\":\"St Paul Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5134058,\"Long\":-0.1506916,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5949\\/thumb\\/St Paul Cathedral_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1763,\"Title\":\"The Household Cavalry Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5046005,\"Long\":-0.1273738,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5952\\/thumb\\/The Household Cavalry Museum_831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1806,\"Title\":\"Trafalgar Square\",\"Description\":\"Trafalgar Square is a public square in the City of Westminster, Central London, built around the area formerly known as Charing Cross. Its name commemorates the Battle of Trafalgar, a British naval victory in the Napoleonic Wars with France and Spain that took place on 21 October 1805 off the coast of Cape Trafalgar. The site of Trafalgar Square had been a significant landmark since the 13th century and originally contained the King&amp;#039;s Mews. After George IV moved the mews to Buckingham Palace, the area was redeveloped by John Nash, but progress was slow after his death, and the square did not open until 1844.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.508039,\"Long\":-0.128069,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2124\\/thumb\\/Trafalgar Square_190.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1914,\"Title\":\"Wembley Stadium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5567009,\"Long\":-0.2796655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5953\\/thumb\\/Wembley Stadium_204.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}},{\"CityId\":20496,\"Title\":\"Oxford\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":20496,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1478,\"Title\":\"River Thames\",\"Description\":\"The River Thames, known alternatively in parts as the Isis, is a river that flows through southern England including London. At 215 miles, it is the longest river entirely in England and the second longest in the United Kingdom, after the River Severn. It flows through Oxford, Reading, Henley-on-Thames and Windsor. The lower reaches of the river are called the Tideway, derived from its long tidal reach up to Teddington Lock. It rises at Thames Head in Gloucestershire, and flows into the North Sea via the Thames Estuary. The Thames drains the whole of Greater London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2208\\/thumb\\/River Thames_858.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":987,\"Title\":\"London Eye\",\"Description\":\"The London Eye is a cantilevered observation wheel on the South Bank of the River Thames in London. It is Europe&amp;#039;s tallest cantilevered observation wheel, is the most popular paid tourist attraction in the United Kingdom with over 3.75 million visitors annually, and has made many appearances in popular culture. The structure is 135 metres tall and the wheel has a diameter of 120 metres. When it opened to the public in 2000 it was the world&amp;#039;s tallest Ferris wheel.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/London_Eye_15836_1553664505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20521,\"Title\":\"Anne Hathaway\'s Cottage\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20522,\"Title\":\"Warwick Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20523,\"Title\":\"Viking city\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20524,\"Title\":\"The Shambles,  Britain\\u00e2\\u20ac\\u2122s most picturesque street.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":36425,\"CityName\":\"York\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20525,\"Title\":\"the Queen\\u00e2\\u20ac\\u2122s Scottish\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20526,\"Title\":\"the Palace of Holyrood House.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20527,\"Title\":\"York Minster Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":26114,\"CityName\":\"Stirling\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20528,\"Title\":\"Scottish legend William \\u00e2\\u20ac\\u02dcBraveheart\\u00e2\\u20ac\\u2122 Wallace.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":31555,\"CityName\":\"Lake District\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20529,\"Title\":\"Author Beatrix Potter\\u00e2\\u20ac\\u2122s Hill Top Farm.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20530,\"Title\":\"the ancient city of Chester.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25504,\"CityName\":\"Snowdonia\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20531,\"Title\":\"wonderful Caernarfon castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20532,\"Title\":\"the center of Wales\\u00e2\\u20ac\\u2122 capital city Cardiff\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":5145,\"CityName\":\"Cardiff\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20533,\"Title\":\"BAth City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20534,\"Title\":\"Cardiff Castle.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20535,\"Title\":\"Roman City\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2532,\"CityName\":\"Bath\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20536,\"Title\":\"Salisbury.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":20537,\"Title\":\"the mysterious prehistoric monument of Stonehenge.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20496,\"CityName\":\"Oxford\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1270,\"Title\":\"Oxford Street\",\"Description\":\"Oxford Street is a major road in the City of Westminster in the West End of London, running from Tottenham Court Road to Marble Arch via Oxford Circus. It is Europe&amp;#039;s busiest shopping street, offering 1.5 miles of unrivalled shopping, with more than 90 flagship stores from fashion and beauty to tech and homeware.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2126\\/thumb\\/Oxford Street_721.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7874,\"Title\":\"Alton Towers Theme Park\",\"Description\":\"Alton Towers Resort, often shortened to Alton Towers, is a theme park resort located in Staffordshire, England. It is near the village of Alton, in the parishes of Denstone and Farley. The resort, which is operated by Merlin Entertainments Group, incorporates a theme park, water park, spa, mini golf and hotel complex. Originally a private estate, Alton Towers grounds opened to the public in 1860 to raise funds for the estate.In the late 20th century, it was transformed into a theme park and opened a number of new rides from 1986 onwards. In 2017, it was the second most visited theme park in the UK after Legoland Windsor.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":52.9874,\"Long\":1.8865,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Alton_Towers_Theme_Park_15836_1545633376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":147,\"Title\":\"BAPS Shri Swaminarayan Mandir\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5471937,\"Long\":-0.2600335,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5858\\/thumb\\/BAPS Shri Swaminarayan Mandir_421.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7872,\"Title\":\"Bicester Village, Bicester, UK\",\"Description\":\"Bicester Village is an outlet shopping centre on the outskirts of Bicester, a town in Oxfordshire, England. It is owned by Value Retail plc.The centre opened in 1995.\\r\\nMost of its stores are in the luxury goods and designer clothing sector. The centre is the second most visited location in the United Kingdom by Chinese tourists, after Buckingham Palace.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Bicester_Village,_Bicester,_UK_15836_1545632369.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":207,\"Title\":\"Big Ben\",\"Description\":\"Big Ben is the nickname for the Great Bell of the clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-gothic style.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2122\\/thumb\\/Big Ben_437.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":231,\"Title\":\"Borough Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5055169,\"Long\":-0.0910475,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6005\\/thumb\\/Borough Market_128.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":247,\"Title\":\"British Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5182977,\"Long\":-0.1260044,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5997\\/thumb\\/British Museum_483.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":249,\"Title\":\"Buckingham Palace\",\"Description\":\"Buckingham Palace is the London residence and administrative headquarters of the monarch of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today&amp;#039;s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years. It was acquired by King George III in 1761 as a private residence for Queen Charlotte and became known as The Queen&amp;#039;s House.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.501009,\"Long\":-0.1415876,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1521\\/thumb\\/Buckingham Palace_137.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":303,\"Title\":\"Changing The Guard At Buckingham Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/807\\/thumb\\/Changing The Guard At Buckingham Palace_500.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":380,\"Title\":\"Covent Garden\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3227\\/thumb\\/Covent Garden_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":386,\"Title\":\"Cruise\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5294\\/thumb\\/Cruise_194.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":417,\"Title\":\"Design Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.502999,\"Long\":-0.071926,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5998\\/thumb\\/Design Museum_828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":571,\"Title\":\"Globe Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5960\\/thumb\\/Globe Theatre_827.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":636,\"Title\":\"Hampton Court Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.403813,\"Long\":-0.3376701,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5950\\/thumb\\/Hampton Court Palace_506.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":686,\"Title\":\"House Of Parliament\",\"Description\":\"The Palace of Westminster serves as the meeting place of the House of Commons and the House of Lords, the two houses of the Parliament of the United Kingdom. Commonly known as the Houses of Parliament after its occupants, the Palace lies on the north bank of the River Thames in the City of Westminster, in central London, England.\\r\\nIts name, which derives from the neighbouring Westminster Abbey, may refer to either of two structures: the Old Palace, a medieval building-complex destroyed by fire in 1834, or its replacement, the New Palace that stands today.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2121\\/thumb\\/House Of Parliament_456.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":695,\"Title\":\"Hyde Park\",\"Description\":\"Hyde Park is a Grade I-listed major park in Central London. It is the largest of four Royal Parks that form a chain from the entrance of Kensington Palace through Kensington Gardens and Hyde Park, via Hyde Park Corner and Green Park past the main entrance to Buckingham Palace. The park is divided by the Serpentine and the Long Water lakes. The park was established by Henry VIII in 1536 when he took the land from Westminster Abbey and used it as a hunting ground. It opened to the public in 1637 and quickly became popular, particularly for May Day parades.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4894138,\"Long\":-0.1230915,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1520\\/thumb\\/Hyde Park_809.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":700,\"Title\":\"Imperial War Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4961507,\"Long\":-0.1128693,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5999\\/thumb\\/Imperial War Museum_694.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":967,\"Title\":\"Legoland\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5956\\/thumb\\/LEGOLAND&Atilde;&sbquo;&Acirc;&reg;_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":968,\"Title\":\"Leicester Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5948\\/thumb\\/Leicester Square_738.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":985,\"Title\":\"London Bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6003\\/thumb\\/London Bridge_251.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":862,\"Title\":\"Kensington Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.506987,\"Long\":-0.179165,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5959\\/thumb\\/Kensington Palace_763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":986,\"Title\":\"London City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/795\\/thumb\\/London City Tour_670.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":989,\"Title\":\"London Transport Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5122737,\"Long\":-0.1234492,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6000\\/thumb\\/London Transport Museum_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":990,\"Title\":\"London Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5955\\/thumb\\/London Zoo_216.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":997,\"Title\":\"Lord\'s Cricket Ground\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282403,\"Long\":-0.1727677,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/806\\/thumb\\/Lord&#039;s Cricket Ground_65.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1010,\"Title\":\"Madame Tussauds\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.523401,\"Long\":-0.1564476,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/803\\/thumb\\/Madame Tussaud&Atilde;&cent;&acirc;&sbquo;&not;&acirc;&bdquo;&cent;s Wax Museum_44.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1073,\"Title\":\"Marble Arch\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2133\\/thumb\\/Marble Arch_444.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1161,\"Title\":\"Musical Theatre\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5876\\/thumb\\/Musical Theatre_205.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1214,\"Title\":\"Natural History Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4950781,\"Long\":-0.1828713,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6001\\/thumb\\/Natural History Museum_677.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":988,\"Title\":\"London Hop-On Hop-Off\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4309209,\"Long\":-0.0936496,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5453\\/thumb\\/London Hop-On Hop-Off_926.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7873,\"Title\":\"Windsor Castle\",\"Description\":\"Windsor Castle is a royal residence at Windsor in the English county of Berkshire. It is notable for its long association with the English and later British royal family and for its architecture.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4839,\"Long\":0.6044,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Windsor_Castle_15836_1545632687.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1873,\"Title\":\"Vibrant - Piccadilly Circus\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5195539,\"Long\":-0.0973964,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2135\\/thumb\\/Vibrant Piccadilly_997.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1802,\"Title\":\"Tower Bridge\",\"Description\":\"Tower Bridge is a combined bascule and suspension bridge in London, built between 1886 and 1894. The bridge crosses the River Thames close to the Tower of London and has become an iconic symbol of London. Because of this, Tower Bridge is sometimes confused with London Bridge, situated some 0.5 mi upstream. Tower Bridge is one of five London bridges now owned and maintained by the Bridge House Estates, a charitable trust overseen by the City of London Corporation.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.50272,\"Long\":-0.077949,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2125\\/thumb\\/Tower Bridge_13.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1674,\"Title\":\"St. Paul\'s Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5137342,\"Long\":-0.0987943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3988\\/thumb\\/St. Pauls Cathedral_173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1636,\"Title\":\"Soho Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5996\\/thumb\\/Soho Square_591.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1467,\"Title\":\"Regent\'s Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5282712,\"Long\":-0.1498235,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5951\\/thumb\\/Regents Park_123.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1350,\"Title\":\"Penguin Beach\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5357941,\"Long\":-0.1519305,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5954\\/thumb\\/Penguin Beach_558.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1322,\"Title\":\"Parliament Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4975764,\"Long\":-0.1350731,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1613\\/thumb\\/Parliament Square_319.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1359,\"Title\":\"Piccadilly Circus\",\"Description\":\"Piccadilly Circus is a busy square in the heart of London. It is famous for the fountain that was installed here at the end of the nineteenth century and for the neon advertising that turned the square into a miniature version of Times Square. The Circus lies at the intersection of five main roads: Regent Street, Shaftesbury Avenue, Piccadilly Street, Covent Street and Haymarket.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.49264,\"Long\":-0.222373,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1519\\/thumb\\/Piccadilly Circus_179.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":7870,\"Title\":\"Queen Victoria Summer House- Isle of wight\",\"Description\":\"Today, Osborne House is under the care of English Heritage and is open to the public. The former Naval College&amp;#039;s cricket pavilion was converted into a holiday cottage in 2004.Since 2005, the house has occasionally hosted picnic-style concerts on the lawn outside the main house.English Heritage has a management contract to run Osborne House as an historic tourist attraction. The house&amp;#039;s ownership since 1971 has been held in a private trust[citation needed] connected to Historic Royal Palaces, the agency covering, among others, Hampton Court Palace and the Tower of London.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":50.6938,\"Long\":1.3047,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15836\\/sightseeing\\/Queen_Victoria_Summer_House-_I_15836_1545631622.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1493,\"Title\":\"Royal Albert Hall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.500613,\"Long\":-0.1756085,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5958\\/thumb\\/Royal Albert Hall, London_782.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1282,\"Title\":\"Palace Of Westminster\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4998403,\"Long\":-0.1246627,\"Image\":\"                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1319,\"Title\":\"Park Lane\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2134\\/thumb\\/Park Lane_923.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1645,\"Title\":\"Southwark Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5082463,\"Long\":-0.0877234,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6004\\/thumb\\/Southwark Cathedral_798.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1916,\"Title\":\"Westminster Abbey\",\"Description\":\"Westminster Abbey, formally titled the Collegiate Church of Saint Peter at Westminster, is a large, mainly Gothic abbey church in the City of Westminster, London, England, just to the west of the Palace of Westminster. It is one of the United Kingdom&amp;#039;s most notable religious buildings and the traditional place of coronation and burial site for English and, later, British monarchs. The building itself was a Benedictine monastic church until the monastery was dissolved in 1539. Between 1540 and 1556, the abbey had the status of a cathedral.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.4988998,\"Long\":-0.1282744,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1614\\/thumb\\/Westminster Abbey_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1665,\"Title\":\"St Paul Cathedral\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5134058,\"Long\":-0.1506916,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5949\\/thumb\\/St Paul Cathedral_774.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1685,\"Title\":\"Stonehenge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5073509,\"Long\":-0.1277583,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4881\\/thumb\\/Stonehenge_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1763,\"Title\":\"The Household Cavalry Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5046005,\"Long\":-0.1273738,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5952\\/thumb\\/The Household Cavalry Museum_831.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1803,\"Title\":\"Tower Of London\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5086024,\"Long\":-0.0760129,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/805\\/thumb\\/Tower Of London_563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1806,\"Title\":\"Trafalgar Square\",\"Description\":\"Trafalgar Square is a public square in the City of Westminster, Central London, built around the area formerly known as Charing Cross. Its name commemorates the Battle of Trafalgar, a British naval victory in the Napoleonic Wars with France and Spain that took place on 21 October 1805 off the coast of Cape Trafalgar. The site of Trafalgar Square had been a significant landmark since the 13th century and originally contained the King&amp;#039;s Mews. After George IV moved the mews to Buckingham Palace, the area was redeveloped by John Nash, but progress was slow after his death, and the square did not open until 1844.\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.508039,\"Long\":-0.128069,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2124\\/thumb\\/Trafalgar Square_190.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null},{\"RefSSId\":1914,\"Title\":\"Wembley Stadium\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15836,\"CityName\":\"London\",\"Lat\":51.5567009,\"Long\":-0.2796655,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5953\\/thumb\\/Wembley Stadium_204.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4287,\"SupplierName\":\"European Voyages\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"197854\",\"Title\":\"London.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Arrive at London&amp;rsquo;s Heathrow airport. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Here they will be met by their Tour Leader who will escort you to the private luxury coach &amp;amp; transfer you to your hotel. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Later, travel into central London for a River Thames Cruise and a ride on the London eye.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at Windsor.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1478,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":987,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197855\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197856\",\"Title\":\" London &acirc;&euro;&ldquo; Stratford On Avon &acirc;&euro;&ldquo; Warwick - York.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Today the group will head off early to Shakespeare&amp;rsquo;s Stratford Upon Avon.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;There will be time here for a look around Anne Hathaway&amp;#39;s Cottage, Shakespeare&amp;rsquo;s birthplace and all Stratford&amp;rsquo;s top sight.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;After lunch here we will head to nearby Warwick for a look around the fantastic Warwick Castle. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;After Warwick Castle, the group will head back in their coach up to the delightful city of York.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;After checking into their hotel, the group will head into the center of this ancient Viking city for dinner and a walk down The Shambles, &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Britain&amp;rsquo;s most picturesque street.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at York.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36425,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20521,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20522,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20523,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20524,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197857\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36425,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197858\",\"Title\":\" York &acirc;&euro;&ldquo; Edinburgh &acirc;&euro;&ldquo; Stirling.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Today is an extremely busy day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We will start with a tour of the incredible York Minster Cathedral before heading back into the coach and north to the world-famous city of Edinburgh.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This afternoon and evening we will explore Edinburgh&amp;rsquo;s most famous sights &amp;ndash; Edinburgh Castle and the Queen&amp;rsquo;s Scottish residence the Palace of Holyrood House.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After dinner in Edinburgh, we will head across to the historic city of Stirling to check into our accommodation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at Stirling.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26114,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20525,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20526,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20527,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197859\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":26114,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197860\",\"Title\":\"Stirling &acirc;&euro;&ldquo; Glasgow &acirc;&euro;&ldquo; Lake District.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;We will begin the day in Stirling with a tour of Scotland&amp;rsquo;s most historic and famous castle, &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Stirling Castle. It&amp;rsquo;s here that we will also see the monument to Scottish legend William &amp;lsquo;Braveheart&amp;rsquo; Wallace. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;There&amp;rsquo;s no time to lose here as we head down to the city of Glasgow for a quick city tour before heading further south and back into England to the incredible Lake District.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It&amp;rsquo;s here that we will spend the night.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at&lt;\\/strong&gt; &lt;strong&gt;Lake District.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31555,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20528,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197861\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":31555,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197862\",\"Title\":\" Lake District &acirc;&euro;&ldquo; Chester &acirc;&euro;&ldquo; Snowdonia.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;This morning we will make the most of the beautiful English Lake country where we can visit Author Beatrix Potter&amp;rsquo;s Hill Top Farm. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;There may be time for a quick cup of tea here before we head further south and stop in at the ancient city of Chester. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Parts of this famous city date back to Roman times and here we will take a tour of the wonderful and unusual cathedral. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After Chester, we will head into Wales right through the mountain region of Snowdonia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It&amp;rsquo;s in this area that we will spend the night on the north coast of Wales.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at&lt;\\/strong&gt; &lt;strong&gt;Snowdonia.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25504,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20529,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20530,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197863\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25504,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197864\",\"Title\":\"Snowdonia &acirc;&euro;&ldquo; Caernarfon &acirc;&euro;&ldquo; Pembrokeshire &acirc;&euro;&ldquo; Cardiff.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;This morning we will start the day by exploring the wonderful Caernarfon castle. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;You may even go past mount Snowdon herself! &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;After this, we will head south down the coastal route past mountains, sea, castles, and maybe even a dolphin or 2!&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;We will eventually end up in the center of Wales&amp;rsquo; capital city Cardiff. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Staying in the center will be an easy walk to a nearby restaurant for dinner. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at Cardiff.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5145,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20531,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20532,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197865\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":5145,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197866\",\"Title\":\"Cardiff &acirc;&euro;&ldquo; Bath.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;This morning we will have a quick tour around Cardiff and visit Cardiff Castle.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;From here we will head back into England to England&amp;rsquo;s most beautiful small city Bath. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;In this ancient Roman city, we will take a tour of the fantastically well preserved Roman Baths.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Bath is one of the most romantic cities you will find and here we will spend the night right in the heart.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight&lt;\\/strong&gt; &lt;strong&gt;at Bath.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2532,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20533,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20534,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20535,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197867\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2532,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197868\",\"Title\":\" Bath - Salisbury &acirc;&euro;&ldquo; Oxford.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;This morning we will leave Bath and travel to the city of Salisbury.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Where we will visit the cathedral and take a group tour of this remarkable structure which boasts the country&amp;rsquo;s highest steeple. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;Salisbury Cathedral is also the cathedral on which the recent book and TV drama &amp;lsquo;Pillars of the Earth&amp;rsquo; was based.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;From Salisbury, we will go over to what may well be the highlight of the trip, the mysterious prehistoric monument of Stonehenge.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;span style=&quot;color:black&quot;&gt;&amp;nbsp;After studying these incredible stone pillars, we will continue our journey to Oxford where we will stay the night and have dinner. &lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;If we arrive in time, we will take a tour of Blenheim Palace,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One of England&amp;rsquo;s grandest stately homes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at Oxford.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20496,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":20536,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":20537,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197869\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20496,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197870\",\"Title\":\"Oxford &acirc;&euro;&ldquo; Windsor.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":9,\"Program\":\"&lt;p&gt;This morning we may go a little slower as we take in some of Oxford&amp;rsquo;s magnificent museums and colleges.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After lunch here we will head back towards London and visit Windsor.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our hotel here is directly opposite Europe&amp;rsquo;s largest inhabited palace and home to Queen Elizabeth II herself,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Windsor Castle. We will take a full tour of the castle and head to nearby Eton for a look around the amazing old educational buildings and church there.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the evening we will return to Windsor for our first 2 night&amp;rsquo;s stay in a wonderful hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at Windsor.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1270,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197871\",\"Title\":\"London.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;Today is our London sightseeing day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We will be joined by a professional blue badge guide who will take us all over London today.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We will see St Paul&amp;rsquo;s Cathedral, the Tower of London Museum to see the Koh-i-Noor Diamond, Tower Bridge,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;#39;Changing the Guards&amp;#39; ceremony at Buckingham Palace (subject to operation),&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Piccadilly Circus, Westminster Abbey, Big Ben, River Thames, Prime Minister&amp;#39;s Downing Street, Trafalgar Square, Houses of Parliament, Hyde Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at Windsor.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7874,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":147,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7872,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":207,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":231,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":247,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":249,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":303,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":380,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":386,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":417,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":571,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":636,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":686,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":695,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":700,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":967,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":968,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":985,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":862,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":986,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":987,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":989,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":990,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":997,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1010,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1073,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1161,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1214,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":988,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7873,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1873,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1802,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1674,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1636,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1467,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1350,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1322,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1359,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7870,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1478,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1493,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1282,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1319,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1645,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1916,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1665,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1685,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1763,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1803,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1806,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1914,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"197872\",\"Title\":\"Will Miss You London.\",\"MealPlanInclude\":\"Breakfast\",\"Day\":11,\"Program\":\"&lt;p&gt;Today is a free day.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The coach will collect the group in the morning with their baggage and look after it while the group is dropped in London city center.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Today can be used for shopping or visiting sights that have not been covered such as the British Museum or the Victoria and Albert Museum or even Buckingham Palace itself.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The group will be collected at a suitable time or place to be taken to the airport in time for the return flight home.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15836,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27654\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"176138.59\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":206626,\"priceDoubleOcc\":\"176138.59\",\"priceSingleOcc\":448517.85,\"priceExtraBed\":\"245141.34\",\"priceWithoutBed\":\"180917.18\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"176138.59\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":216502,\"priceDoubleOcc\":\"190952.20\",\"priceSingleOcc\":463331.46,\"priceExtraBed\":\"245141.34\",\"priceWithoutBed\":\"180917.18\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"190952.20\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":213889,\"priceDoubleOcc\":\"187033.76\",\"priceSingleOcc\":459413.02,\"priceExtraBed\":\"245141.34\",\"priceWithoutBed\":\"180917.18\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"187033.76\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":232876,\"priceDoubleOcc\":\"215514.12\",\"priceSingleOcc\":487893.38,\"priceExtraBed\":\"245141.34\",\"priceWithoutBed\":\"180917.18\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"215514.12\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":270786,\"priceDoubleOcc\":\"272379.26\",\"priceSingleOcc\":544758.52,\"priceExtraBed\":\"245141.34\",\"priceWithoutBed\":\"180917.18\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"272379.26\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":270786,\"priceDoubleOcc\":\"272379.26\",\"priceSingleOcc\":544758.52,\"priceExtraBed\":\"245141.34\",\"priceWithoutBed\":\"180917.18\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"272379.26\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"27654\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"168132.29\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":197234,\"priceDoubleOcc\":\"168132.29\",\"priceSingleOcc\":428130.68000000005,\"priceExtraBed\":\"233998.55\",\"priceWithoutBed\":\"172693.67\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"168132.29\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":206661,\"priceDoubleOcc\":\"182272.56\",\"priceSingleOcc\":442270.95,\"priceExtraBed\":\"233998.55\",\"priceWithoutBed\":\"172693.67\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"182272.56\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":204167,\"priceDoubleOcc\":\"178532.22\",\"priceSingleOcc\":438530.61,\"priceExtraBed\":\"233998.55\",\"priceWithoutBed\":\"172693.67\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"178532.22\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":222291,\"priceDoubleOcc\":\"205718.03\",\"priceSingleOcc\":465716.42000000004,\"priceExtraBed\":\"233998.55\",\"priceWithoutBed\":\"172693.67\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"205718.03\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":258478,\"priceDoubleOcc\":\"259998.39\",\"priceSingleOcc\":519996.78,\"priceExtraBed\":\"233998.55\",\"priceWithoutBed\":\"172693.67\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"259998.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-08-19\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":258478,\"priceDoubleOcc\":\"259998.39\",\"priceSingleOcc\":519996.78,\"priceExtraBed\":\"233998.55\",\"priceWithoutBed\":\"172693.67\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"259998.39\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST if not mentioned in the rates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks, and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare is not mentioned in the&amp;nbsp;itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;3 Euro tip per person per day.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of Basic Travel Quota (BTQ) equivalent to USD 10,000.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;No Porterage included.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any increase in the rate of exchange leading to an increase in surface transportation and land arrangements, which may come into effect prior to departure. The tour price is subject to increase without notice if this rate changes substantially prior to the departure of your tour.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Any expenses of personal nature such as laundry, wines, mineral water, food and drink not in the regular menu provided by us pay TV, mini-bar, telephone calls, etc.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;All Meals.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cost of excursions, city sightseeing, entrance fees and local guides other than that mentioned in &amp;ldquo;Tour Cost Includes&amp;rdquo;.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Airfare &amp;amp; airport tax.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Visa Fees.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Travel insurance.&lt;\\/strong&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;&lt;em&gt;Note:&lt;\\/em&gt;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Passengers joining this tour must travel to\\/from the hub city at their own expense.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Due to major international events and trade fairs throughout Europe such as air-show, world athletic meet, ice skating championships, motor shows, Tour de France, etc. the hotels may be blocked out more than 2 years in advance. In view of this, you may have to stay in hotels further away from the cities\\/ different city and the itinerary may have to be altered \\/amended.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;We also reserve the right to substitute a hotel of a similar class if it is deemed advisable or necessary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;For the convenience of our passengers, we will sometimes amend\\/alter the itinerary. However, all the services will remain the same.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n\\t&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis. Note: Air-Conditioner in vehicles&amp;nbsp;may not be operated in Hilly areas.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;span style=&quot;display:none&quot;&gt;&amp;nbsp;&lt;\\/span&gt;&lt;strong&gt;10 nights accommodation in a 3-star hotel.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Daily Breakfast.&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Driver with private transport throughout. &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Entry into the following: &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Shakespeare&amp;rsquo;s birthplace, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Anne Hathaway&amp;#39;s House, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Warwick Castle, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;York Minster Cathedral, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Palace of Holyrood House, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Edinburgh Castle, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Stirling Castle, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Beatrix Potter&amp;rsquo;s Hill Top farm, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Chester Cathedral, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Caernarfon Castle, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Cardiff Castle, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Roman Baths and Pump Room, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Stonehenge, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Blenheim Palace, Park &amp;amp; Gardens, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Windsor Castle, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Salisbury Cathedral, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Tower of London, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;London Eye, &lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Thames River Cruise.&lt;\\/strong&gt;&lt;span style=&quot;color:black&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color:#006600&quot;&gt; &lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;span style=&quot;display:none&quot;&gt;&amp;nbsp;&lt;\\/span&gt;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"197854\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[197854],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197855\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[197855],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197856\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[197856],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197857\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[197857],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197858\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[197858],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197859\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[197859],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197860\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[197860],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197861\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[197861],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197862\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[197862],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197863\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[197863],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197864\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[197864],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197865\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[197865],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197866\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[197866],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197867\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[197867],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197868\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[197868],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197869\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[197869],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197870\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[197870],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197871\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[197871],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"197872\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[197872],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','London,York,Stirling,Lake District,Snowdonia,Cardiff,Bath,Oxford','London,Western Europe,UNITED KINGDOM,York,Stirling,Lake District,Snowdonia,Cardiff,Bath,Oxford,Caernarfon,Chester,Edinburgh,Glasgow,Pembroke,Salisbury,Warwick',NULL,'15836,36425,26114,31555,25504,5145,2532,20496',168132,272379,10,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'UNITED KINGDOM','469','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'palaces-castle-tour',NULL,NULL,NULL,0),(24,32352,1,12577,0,0,0,'Honeymoon,Beach,Family,Romantic,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":32352,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-06-25\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The Maldives, officially the Republic of Maldives, is an archipelagic country in the Indian subcontinent of Asia, situated in the Indian Ocean. It lies southwest of Sri Lanka and India, about 750 kilometers from the Asian continent&amp;#39;s mainland.&amp;nbsp;Maldives is one of the world&amp;#39;s most geographically dispersed&amp;nbsp;sovereign states&amp;nbsp;and the&amp;nbsp;smallest Asian country&amp;nbsp;as well as one of the smallest&amp;nbsp;Muslim countries&amp;nbsp;by land area and, with around 557,751 inhabitants, the 2nd&amp;nbsp;least-populous country in Asia.&amp;nbsp;Mal&amp;eacute;&amp;nbsp;is the capital and the most populated city, traditionally called the &amp;quot;King&amp;#39;s Island&amp;quot; where the ancient&amp;nbsp;royal dynasties&amp;nbsp;ruled for its central location.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Ahmedabad\",\"DestinationPlacesSysId\":296,\"SourcePlaces\":\"Ahmedabad\",\"SourcePlaceSysId\":296,\"AgencyName\":\"\",\"Name\":\"MAGICAL MALDIVES 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Romantic,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-06-25\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":494440,\"Name\":\"Kaani Palm Beach\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"3.9453101\",\"Long\":\"73.4912234\",\"Address\":\"Ziyaaraiy Magu Road, Maafushi 08090, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Sea View Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":494441,\"Name\":\"Arena Beach Hotel\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"3.9452571\",\"Long\":\"73.4917181\",\"Address\":\"Ziyaaraiy Magu Road, Maafushi 08090, Maldives\"},\"Images\":[],\"CityId\":16505,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Sea View Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":22394,\"Title\":\"Sandbanks Tour\",\"Description\":\"&lt;p&gt;Sandbanks are quite elusive and also magical in a sense because they keep shifting their position and also disappear completely at times. Technically speaking, a sandbank is a stretch of land that is partly submerged and partly visible off the surface of the sea. While most common in oceans and seas, sandbanks also appear in rivers.&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;It is a known fact that global warming is bringing the sea level up in various parts of the world. This phenomenon has also affected Maldives in different ways. On the one hand, public islands, which are on the verge of sinking, are being evacuated by the government and their residents relocated to newly reclaimed islands. On the other hand, many ridges and isles are disappearing fully underwater, only to reappear as sandbanks, sandbars and sand strips, shaped by the ebbs and flows of the waters.&lt;\\/p&gt;&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;&lt;p&gt;Recreationally, sandbanks are great getaways from the tourist-heavy private islands or the dense public island villages. Most of these sandbanks are nameless, being known usually by their proximity to the nearest island. Nevertheless, they have a charm that needs no moniker for its validation!&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":16505,\"CityName\":\"Maldives\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16505\\/sightseeing\\/4913_1640350838.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"230337\",\"Title\":\"Arrival-Maldives\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Male International Airport for your luxurious holiday in the Maldives, widely described as the last paradise on earth. Sun, sand, and sea, a thousand massive lagoons with different depths and infinite shades of blue and turquoise, dazzling underwater coral gardens form a perfect natural combination for the ideal tropical holiday destination.&acirc;&euro;&macr;Upon arrival, you are welcomed and transferred to your resort by speedboat. Rest of the day is at leisure. &acirc;&euro;&macr;Overnight stay at the resort&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Dinner&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"},{\"IsIncluded\":false,\"Id\":494441,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230338\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Post breakfast, you are all set to go for an optional activity of enjoying various water sports activities like Water scooter, parasailing, banana boat, Water Surfing or a wide range of Scuba diving options and other water sports available in the Maldives. The islands are fully equipped with everything you&amp;rsquo;ll need and if you&amp;rsquo;ve never dived before, the island provides facilities for experienced divers who can teach you.&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lunch, Dinner, and Overnight stay at the hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast, Lunch, Dinner&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"},{\"IsIncluded\":false,\"Id\":494441,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230339\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, proceed to Sandbank&amp;#39;s tour including Dolphin watching - Shark Bay with lunch by speedboat, Snorkelling gears will be provided to those who have interest in the activity. Return back to the hotel in the afternoon and relax.&acirc;&euro;&macr;Overnight stay at the resort.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast, Lunch, Dinner&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"},{\"IsIncluded\":false,\"Id\":494441,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22394,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230340\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, those who wish to relax can spend time on the beach or sit under the sun or in the cool shade of the palms, admire the surrounding natural beauty, or perhaps simply gaze at the horizon lined with green islands springing out of the blue ocean. Or take an optional tour of an island resort hotel for a full day including usage of a swimming pool and other amenities available at the resort, lunch, and one drink during the day visit. Transfer back to the hotel in the evening for dinner and Overnight stay at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast, Lunch, Dinner&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":494440,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"},{\"IsIncluded\":false,\"Id\":494441,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Deluxe Sea View Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"230341\",\"Title\":\"Maldives - Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, check out and transfer to Male International Airport by speed boat for your journey back home after your splendid holiday in the Maldives. Tour ends enmeshed with happy memories.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Meals: Breakfast&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Post a review to our profile:&lt;\\/strong&gt; &lt;a href=&quot;https:\\/\\/g.page\\/r\\/CfnYM-mVvVveEAo\\/review&quot;&gt;https:\\/\\/g.page\\/r\\/CfnYM-mVvVveEAo\\/review&lt;\\/a&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"32352\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"59999.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89999.7,\"priceExtraBed\":\"53999.40\",\"priceWithoutBed\":\"47999.70\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"32352\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"57142.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85714,\"priceExtraBed\":\"51428.00\",\"priceWithoutBed\":\"45714.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;PCR test must be obtained within a maximum of 72 hours prior to the first port of embarkation and before departing from Maldives (Own Expense)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;TCS @ 5% with Pan card \\/ @10% without Pan card will be applicable extra&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;GST @5% (As per the prevailing rate)&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Travel Insurance if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers by shared Speedboat&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Resort Amenities&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Air Ticket Ex. AMD&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Flight Information:&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flights Operating to this Sector: EX &amp;ndash; AMD&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Go air&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Indigo&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air India&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Spice jet&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Sightseeing:&amp;nbsp;&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;One day Sandbanks tour&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lunch&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Soft Drinks &amp;amp; Water bottles&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Dolphin watching - Shark bay tour&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Snorkeling gears would be provided&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Hotel Information:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 nights stay at Arena Beach Resort (4*) or Kaani Palm Beach Resort (4*)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Room category: Sea View Room&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meal plan:&amp;nbsp;&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Breakfast at the Resort&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;02 Lunches at the Resort&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;01 Lunch at Sandbanks&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04 Dinners at the Resort&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Visa Information:&amp;nbsp;&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Visa On Arrival (Free)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":90,\"ExtraValue\":\"25000\",\"IsPercentage\":false,\"Title\":\"Before 90 Days\",\"TPRulesSysId\":\"9537\",\"Value\":\"0\"},{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9538\",\"Value\":\"75\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9539\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"230337\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[230337],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"230338\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[230338],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"230339\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[230339],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"230340\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[230340],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"230341\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[230341],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"296\":{\"CityName\":\"Ahmedabad\",\"FromDate\":{\"20220425\":{\"FromDate\":\"2022-04-25\",\"FromDateDMY\":\"25\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220501\":{\"FromDate\":\"2022-05-01\",\"FromDateDMY\":\"01\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220509\":{\"FromDate\":\"2022-05-09\",\"FromDateDMY\":\"09\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220517\":{\"FromDate\":\"2022-05-17\",\"FromDateDMY\":\"17\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220525\":{\"FromDate\":\"2022-05-25\",\"FromDateDMY\":\"25\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220605\":{\"FromDate\":\"2022-06-05\",\"FromDateDMY\":\"05\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220615\":{\"FromDate\":\"2022-06-15\",\"FromDateDMY\":\"15\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220625\":{\"FromDate\":\"2022-06-25\",\"FromDateDMY\":\"25\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',57142,59999,4,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-06-25 00:00:00','2022-06-25 00:00:00',3,'Maldives','133','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'magical-maldives-2022',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (25,31575,1,12577,1,0,0,'Family,Religious,Culture,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31575,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_uttar_pradesh_2022_1642596435.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Uttar Pradesh ranks first in domestic tourist arrivals among all states of India with more than 71&amp;nbsp;million, owing to its rich and varied&amp;nbsp;topography, vibrant culture, festivals, monuments, ancient places of worship, and&amp;nbsp;viharas. Religious tourism plays a significant role in Uttar Pradesh tourism as the state has some of the holiest Hindu shrines.&amp;nbsp;Varanasi&amp;nbsp;a major religious hub, is the&amp;nbsp;holiest&amp;nbsp;of the seven sacred cities (Sapta Puri) in&amp;nbsp;Hinduism&amp;nbsp;and&amp;nbsp;Jainism. Domestic tourists most commonly visit for religious purposes while foreign tourists visit ghats along the river Ganges. Owing to the belief as the birthplace of&amp;nbsp;Rama,&amp;nbsp;Ayodhya&amp;nbsp;(Awadh) has been regarded as one of the seven most important pilgrimage sites. Millions gather at&amp;nbsp;Allahabad&amp;nbsp;to take part in the&amp;nbsp;Magh Mela&amp;nbsp;festival on the banks of the Ganges. This festival is organized on a larger scale every 12th year and is called the&amp;nbsp;Kumbh Mela, where over 10&amp;nbsp;million Hindu pilgrims congregate in one of the largest gatherings of people in the world. Vindhyachal&amp;nbsp;is a&amp;nbsp;Hindu&amp;nbsp;pilgrimage&amp;nbsp;site having the temple of&amp;nbsp;Vindhyavasini.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At a distance of 80&amp;nbsp;km from Varanasi,&amp;nbsp;Ghazipur&amp;nbsp;is famous not only for its&amp;nbsp;Ghats&amp;nbsp;on the Ganges but also for the tomb of&amp;nbsp;Lord Cornwallis, the 18th-century Governor of&amp;nbsp;East India Company&amp;nbsp;ruled&amp;nbsp;Bengal Presidency. The tomb is maintained by the&amp;nbsp;Archaeological Survey of India.[273]&amp;nbsp;The state has one National Park and 25 Wildlife Sanctuaries.&amp;nbsp;Okhla Bird Sanctuary&amp;nbsp;known as a haven for over 300 bird species out of which 160 bird species are migratory, travelling from&amp;nbsp;Tibet,&amp;nbsp;Europe&amp;nbsp;&amp;amp;&amp;nbsp;Siberia&amp;nbsp;and&amp;nbsp;Patna Bird Sanctuary&amp;nbsp;sanctuary in Etah district, is a major tourist attraction.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Varanasi\",\"DestinationPlacesSysId\":28449,\"SourcePlaces\":\"Varanasi\",\"SourcePlaceSysId\":28449,\"AgencyName\":\"\",\"Name\":\"Ex. Uttar Pradesh 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Family,Religious,Culture,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":28449,\"Title\":\"Varanasi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":28449,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1855,\"Title\":\"Varanasi City Tour\",\"Description\":\"The beautiful city owes exceptional heritage and this is one holy city which is equally important in Buddhism and Jainism. There are innumerable ancient temples along with several stupas in the pilgrimage spot Varanasi along with a few natural attractions.\\r\\nThe best part of the holiday to Kashi is the holy aarti offered to river Ganga which is carried in a religious manner and is one of the opulent attractions.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6305\\/thumb\\/Varanasi City Tour_725.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":403,\"Title\":\"Dashashwamedh Ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.308177,\"Long\":83.009932,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/136\\/thumb\\/Dashashwamedh Ghat_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":849,\"Title\":\"Kashi Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3301037,\"Long\":83.0274749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1657\\/thumb\\/ Kashi Vishwanath Temple_834.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1887,\"Title\":\"Vishvanath Temple\",\"Description\":\"Kashi Vishvanath Temple is one of the most famous Hindu temples dedicated to Lord Shiva. It is located in Varanasi, Uttar Pradesh, India. The temple stands on the western bank of the holy river Ganga, and is one of the twelve Jyotirlingas, the holiest of Shiva temples. The main deity is known by the name Vishvanatha or Vishveshvara meaning Ruler of The Universe. Varanasi city is also called Kashi, and hence the temple is popularly called Kashi Vishvanath Temple.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3254276,\"Long\":83.0092803,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5632\\/thumb\\/Vishvanath Temple_278.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":191,\"Title\":\"Bharat Mata Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/258\\/thumb\\/Bharat Mata Temple_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1820,\"Title\":\"Tulsi Manas Temple\",\"Description\":\"Tulsi Manas Mandir is one of the most famous temples in the holy city of Varanasi. This temple has great historical and cultural importance in Hinduism since the ancient Hindu epic Ramcharitmanas was originally written at this place by Hindu poet-saint, reformer and philosopher Goswami Tulsidas in the 16th century.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1659\\/thumb\\/Tulsi Manas Temple_332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1530,\"Title\":\"Sankat Mochan Hanuman Temple\",\"Description\":\"Sankat Mochan Hanuman Temple is a Hindu temple in Varanasi, Uttar Pradesh, India and is dedicated to the Hindu God Hanuman. The temple was established by famous Hindu preacher and poet saint Sri Goswami Tulsidas in the early 1500s and is situated on the banks of the Assi river.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1658\\/thumb\\/Sankat Mochan Temple_291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":547,\"Title\":\"Ganga Ghats\",\"Description\":\"Varanasi known as Banaras is a city situated on the banks of the River Ganges in Uttar Pradesh. Ganga Ghats are main attraction of the holy city Varanasi. Ghats of Ganga are perhaps the holiest spots of Varanasi. It has numbers of Ghats more than 100 ghats along side Ganga. The city is considered sacred by Hindus, Buddhists and Jains. Most of the ghats are bathing ghats, while others are used as cremation sites. Many ghats are associated with legends or mythologies while many ghats are privately owned.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1656\\/thumb\\/Ganga Ghats_247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1021,\"Title\":\"Mahabodhi Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6961343,\"Long\":84.9869547,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/132\\/thumb\\/Mahabodhi Temple And Tree_607.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1022,\"Title\":\"Mahabodhi Temple (Chinese Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6961343,\"Long\":84.9869547,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/133\\/thumb\\/Chinese Temple_776.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":228,\"Title\":\"Bodhi Tree (Bodhgaya}\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6959183,\"Long\":84.9911308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6680\\/thumb\\/Bodhi Tree (Bodhgaya}_681.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":3517,\"Title\":\"Bodhgaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":3517,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1855,\"Title\":\"Varanasi City Tour\",\"Description\":\"The beautiful city owes exceptional heritage and this is one holy city which is equally important in Buddhism and Jainism. There are innumerable ancient temples along with several stupas in the pilgrimage spot Varanasi along with a few natural attractions.\\r\\nThe best part of the holiday to Kashi is the holy aarti offered to river Ganga which is carried in a religious manner and is one of the opulent attractions.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6305\\/thumb\\/Varanasi City Tour_725.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":403,\"Title\":\"Dashashwamedh Ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.308177,\"Long\":83.009932,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/136\\/thumb\\/Dashashwamedh Ghat_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":849,\"Title\":\"Kashi Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3301037,\"Long\":83.0274749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1657\\/thumb\\/ Kashi Vishwanath Temple_834.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1887,\"Title\":\"Vishvanath Temple\",\"Description\":\"Kashi Vishvanath Temple is one of the most famous Hindu temples dedicated to Lord Shiva. It is located in Varanasi, Uttar Pradesh, India. The temple stands on the western bank of the holy river Ganga, and is one of the twelve Jyotirlingas, the holiest of Shiva temples. The main deity is known by the name Vishvanatha or Vishveshvara meaning Ruler of The Universe. Varanasi city is also called Kashi, and hence the temple is popularly called Kashi Vishvanath Temple.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3254276,\"Long\":83.0092803,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5632\\/thumb\\/Vishvanath Temple_278.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":191,\"Title\":\"Bharat Mata Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/258\\/thumb\\/Bharat Mata Temple_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1820,\"Title\":\"Tulsi Manas Temple\",\"Description\":\"Tulsi Manas Mandir is one of the most famous temples in the holy city of Varanasi. This temple has great historical and cultural importance in Hinduism since the ancient Hindu epic Ramcharitmanas was originally written at this place by Hindu poet-saint, reformer and philosopher Goswami Tulsidas in the 16th century.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1659\\/thumb\\/Tulsi Manas Temple_332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1530,\"Title\":\"Sankat Mochan Hanuman Temple\",\"Description\":\"Sankat Mochan Hanuman Temple is a Hindu temple in Varanasi, Uttar Pradesh, India and is dedicated to the Hindu God Hanuman. The temple was established by famous Hindu preacher and poet saint Sri Goswami Tulsidas in the early 1500s and is situated on the banks of the Assi river.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1658\\/thumb\\/Sankat Mochan Temple_291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":547,\"Title\":\"Ganga Ghats\",\"Description\":\"Varanasi known as Banaras is a city situated on the banks of the River Ganges in Uttar Pradesh. Ganga Ghats are main attraction of the holy city Varanasi. Ghats of Ganga are perhaps the holiest spots of Varanasi. It has numbers of Ghats more than 100 ghats along side Ganga. The city is considered sacred by Hindus, Buddhists and Jains. Most of the ghats are bathing ghats, while others are used as cremation sites. Many ghats are associated with legends or mythologies while many ghats are privately owned.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1656\\/thumb\\/Ganga Ghats_247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1021,\"Title\":\"Mahabodhi Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6961343,\"Long\":84.9869547,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/132\\/thumb\\/Mahabodhi Temple And Tree_607.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1022,\"Title\":\"Mahabodhi Temple (Chinese Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6961343,\"Long\":84.9869547,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/133\\/thumb\\/Chinese Temple_776.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":228,\"Title\":\"Bodhi Tree (Bodhgaya}\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6959183,\"Long\":84.9911308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6680\\/thumb\\/Bodhi Tree (Bodhgaya}_681.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":650,\"Title\":\"Allahabad\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":650,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1855,\"Title\":\"Varanasi City Tour\",\"Description\":\"The beautiful city owes exceptional heritage and this is one holy city which is equally important in Buddhism and Jainism. There are innumerable ancient temples along with several stupas in the pilgrimage spot Varanasi along with a few natural attractions.\\r\\nThe best part of the holiday to Kashi is the holy aarti offered to river Ganga which is carried in a religious manner and is one of the opulent attractions.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6305\\/thumb\\/Varanasi City Tour_725.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":403,\"Title\":\"Dashashwamedh Ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.308177,\"Long\":83.009932,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/136\\/thumb\\/Dashashwamedh Ghat_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":849,\"Title\":\"Kashi Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3301037,\"Long\":83.0274749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1657\\/thumb\\/ Kashi Vishwanath Temple_834.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1887,\"Title\":\"Vishvanath Temple\",\"Description\":\"Kashi Vishvanath Temple is one of the most famous Hindu temples dedicated to Lord Shiva. It is located in Varanasi, Uttar Pradesh, India. The temple stands on the western bank of the holy river Ganga, and is one of the twelve Jyotirlingas, the holiest of Shiva temples. The main deity is known by the name Vishvanatha or Vishveshvara meaning Ruler of The Universe. Varanasi city is also called Kashi, and hence the temple is popularly called Kashi Vishvanath Temple.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3254276,\"Long\":83.0092803,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5632\\/thumb\\/Vishvanath Temple_278.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":191,\"Title\":\"Bharat Mata Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/258\\/thumb\\/Bharat Mata Temple_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1820,\"Title\":\"Tulsi Manas Temple\",\"Description\":\"Tulsi Manas Mandir is one of the most famous temples in the holy city of Varanasi. This temple has great historical and cultural importance in Hinduism since the ancient Hindu epic Ramcharitmanas was originally written at this place by Hindu poet-saint, reformer and philosopher Goswami Tulsidas in the 16th century.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1659\\/thumb\\/Tulsi Manas Temple_332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1530,\"Title\":\"Sankat Mochan Hanuman Temple\",\"Description\":\"Sankat Mochan Hanuman Temple is a Hindu temple in Varanasi, Uttar Pradesh, India and is dedicated to the Hindu God Hanuman. The temple was established by famous Hindu preacher and poet saint Sri Goswami Tulsidas in the early 1500s and is situated on the banks of the Assi river.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1658\\/thumb\\/Sankat Mochan Temple_291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":547,\"Title\":\"Ganga Ghats\",\"Description\":\"Varanasi known as Banaras is a city situated on the banks of the River Ganges in Uttar Pradesh. Ganga Ghats are main attraction of the holy city Varanasi. Ghats of Ganga are perhaps the holiest spots of Varanasi. It has numbers of Ghats more than 100 ghats along side Ganga. The city is considered sacred by Hindus, Buddhists and Jains. Most of the ghats are bathing ghats, while others are used as cremation sites. Many ghats are associated with legends or mythologies while many ghats are privately owned.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1656\\/thumb\\/Ganga Ghats_247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1021,\"Title\":\"Mahabodhi Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6961343,\"Long\":84.9869547,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/132\\/thumb\\/Mahabodhi Temple And Tree_607.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1022,\"Title\":\"Mahabodhi Temple (Chinese Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6961343,\"Long\":84.9869547,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/133\\/thumb\\/Chinese Temple_776.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":228,\"Title\":\"Bodhi Tree (Bodhgaya}\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6959183,\"Long\":84.9911308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6680\\/thumb\\/Bodhi Tree (Bodhgaya}_681.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":35570,\"Title\":\"Ayodhya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":35570,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1855,\"Title\":\"Varanasi City Tour\",\"Description\":\"The beautiful city owes exceptional heritage and this is one holy city which is equally important in Buddhism and Jainism. There are innumerable ancient temples along with several stupas in the pilgrimage spot Varanasi along with a few natural attractions.\\r\\nThe best part of the holiday to Kashi is the holy aarti offered to river Ganga which is carried in a religious manner and is one of the opulent attractions.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6305\\/thumb\\/Varanasi City Tour_725.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":403,\"Title\":\"Dashashwamedh Ghat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.308177,\"Long\":83.009932,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/136\\/thumb\\/Dashashwamedh Ghat_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":849,\"Title\":\"Kashi Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3301037,\"Long\":83.0274749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1657\\/thumb\\/ Kashi Vishwanath Temple_834.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1887,\"Title\":\"Vishvanath Temple\",\"Description\":\"Kashi Vishvanath Temple is one of the most famous Hindu temples dedicated to Lord Shiva. It is located in Varanasi, Uttar Pradesh, India. The temple stands on the western bank of the holy river Ganga, and is one of the twelve Jyotirlingas, the holiest of Shiva temples. The main deity is known by the name Vishvanatha or Vishveshvara meaning Ruler of The Universe. Varanasi city is also called Kashi, and hence the temple is popularly called Kashi Vishvanath Temple.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3254276,\"Long\":83.0092803,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5632\\/thumb\\/Vishvanath Temple_278.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":191,\"Title\":\"Bharat Mata Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/258\\/thumb\\/Bharat Mata Temple_657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1820,\"Title\":\"Tulsi Manas Temple\",\"Description\":\"Tulsi Manas Mandir is one of the most famous temples in the holy city of Varanasi. This temple has great historical and cultural importance in Hinduism since the ancient Hindu epic Ramcharitmanas was originally written at this place by Hindu poet-saint, reformer and philosopher Goswami Tulsidas in the 16th century.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1659\\/thumb\\/Tulsi Manas Temple_332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1530,\"Title\":\"Sankat Mochan Hanuman Temple\",\"Description\":\"Sankat Mochan Hanuman Temple is a Hindu temple in Varanasi, Uttar Pradesh, India and is dedicated to the Hindu God Hanuman. The temple was established by famous Hindu preacher and poet saint Sri Goswami Tulsidas in the early 1500s and is situated on the banks of the Assi river.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1658\\/thumb\\/Sankat Mochan Temple_291.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":547,\"Title\":\"Ganga Ghats\",\"Description\":\"Varanasi known as Banaras is a city situated on the banks of the River Ganges in Uttar Pradesh. Ganga Ghats are main attraction of the holy city Varanasi. Ghats of Ganga are perhaps the holiest spots of Varanasi. It has numbers of Ghats more than 100 ghats along side Ganga. The city is considered sacred by Hindus, Buddhists and Jains. Most of the ghats are bathing ghats, while others are used as cremation sites. Many ghats are associated with legends or mythologies while many ghats are privately owned.\",\"CurrencyType\":0,\"CityId\":28449,\"CityName\":\"Varanasi\",\"Lat\":25.3176452,\"Long\":82.9739144,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1656\\/thumb\\/Ganga Ghats_247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1021,\"Title\":\"Mahabodhi Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6961343,\"Long\":84.9869547,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/132\\/thumb\\/Mahabodhi Temple And Tree_607.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1022,\"Title\":\"Mahabodhi Temple (Chinese Temple)\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6961343,\"Long\":84.9869547,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/133\\/thumb\\/Chinese Temple_776.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":228,\"Title\":\"Bodhi Tree (Bodhgaya}\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":3517,\"CityName\":\"Bodhgaya\",\"Lat\":24.6959183,\"Long\":84.9911308,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6680\\/thumb\\/Bodhi Tree (Bodhgaya}_681.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"224642\",\"Title\":\"Arrival - Varanasi \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Varanasi Airport, Meet and greet by representative check in to the Hotel&amp;nbsp;and relax. After some time, visit the &lt;strong&gt;Buddhist Place of&amp;nbsp;Sarnath&lt;\\/strong&gt;, a UNESCO world heritage site.&amp;nbsp;This is the place where Gautam&amp;nbsp;Budhha&amp;nbsp;gave his first&amp;nbsp;Sermons&amp;nbsp;and Buddhist Sangha&amp;nbsp;which&amp;nbsp;came into existence through the&amp;nbsp;enlightenment&amp;nbsp;of&amp;nbsp;Kondanna. Later,&amp;nbsp;visit&amp;nbsp;&lt;strong&gt;Sarnath&amp;nbsp;Museum&amp;nbsp;&lt;\\/strong&gt;which is the house of some remarkable collections of Buddhist art, sculptures, and Antiques.&amp;nbsp;Dinner&amp;nbsp;and overnight at the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28449,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224643\",\"Title\":\"Varanasi\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;begin&amp;nbsp;the tour of&amp;nbsp;Varanasi&amp;nbsp;known as the &lt;strong&gt;Kashi&amp;nbsp;tour.&lt;\\/strong&gt; First, take a&amp;nbsp;boat tour of the River&amp;nbsp;Ganges&amp;nbsp;from&amp;nbsp;&lt;strong&gt;Dashashwamedh&amp;nbsp;Ghat &lt;\\/strong&gt;to&amp;nbsp;cover&amp;nbsp;all Bathing Ghats,&amp;nbsp;&lt;strong&gt;Kashi&amp;nbsp;Vishwanath&amp;nbsp;Temple&lt;\\/strong&gt;, &lt;strong&gt;Annapurna Devi Temple&lt;\\/strong&gt;,&amp;nbsp;&lt;strong&gt;Vishalakshi&amp;nbsp;Temple,&amp;nbsp;Bhairav&amp;nbsp;Nath&amp;nbsp;Temple, Bharat Mata (Mother India)&amp;nbsp;Mandir,&amp;nbsp;Tulsi&amp;nbsp;Manas&amp;nbsp;Mandir,&amp;nbsp;Sankat&amp;nbsp;Mochan&amp;nbsp;Hanuman&amp;nbsp;Temple,&lt;\\/strong&gt; etc.&amp;nbsp;All the temples and Ghats have their sacred values in the Hindu religion.&amp;nbsp;Back to your hotel for lunch and relaxation.&amp;nbsp;In&amp;nbsp;the&amp;nbsp;evening, attend the famous Ganga&amp;nbsp;Aarti.&amp;nbsp;Dinner and overnight at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28449,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1855,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":403,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":849,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1887,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":191,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1820,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1530,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":547,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224644\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28449,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224645\",\"Title\":\"Varanasi &acirc;&euro;&ldquo; Bodh Gaya\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After Breakfast, proceed for&amp;nbsp;Bodh Gaya.&amp;nbsp;Upon arrival, check-in and relax. Post Lunch,&amp;nbsp;Visit&amp;nbsp;&lt;strong&gt;Mahabodhi&amp;nbsp;Temple,&amp;nbsp;Great&amp;nbsp;Buddha&amp;nbsp;Statue, Chinese&amp;nbsp;Temple,&amp;nbsp;The Bodhi tree&lt;\\/strong&gt; where&amp;nbsp;Lord&amp;nbsp;Buddha attained enlightenment.&amp;nbsp;Indeed, the city of Bodh Gaya will take you to the journey of life and times of Lord Gautam&amp;nbsp;Budhha.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1021,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1022,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":228,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224646\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":3517,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224647\",\"Title\":\"Bodh Gaya - Prayagraj\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Early&amp;nbsp;in the morning, visit&amp;nbsp;&lt;strong&gt;Vishnupad&amp;nbsp;Temple&lt;\\/strong&gt; and perform&amp;nbsp;Pooja\\/Pind&amp;nbsp;Daan&amp;nbsp;for your ancestors. After Breakfast, we proceed for&amp;nbsp;Prayagraj.&amp;nbsp;Check-in and relax. After some time, walk around in the sacred town. Dinner and overnight at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":650,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224648\",\"Title\":\"Prayagraj -Chitrakoot - Prayagraj \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, proceed to&amp;nbsp;Chitrakoot, Visit&amp;nbsp;&lt;strong&gt;Ramghat,&amp;nbsp;Kamadgiri&amp;nbsp;Temple, Ram Bharat&amp;nbsp;Milap, Hanuman&amp;nbsp;Dhara,&amp;nbsp;Janki&amp;nbsp;Kund, and&amp;nbsp;Sati&amp;nbsp;Anusuya&amp;nbsp;Ashram&lt;\\/strong&gt;. The Ghats, Temples, and Ashrams have their specific significance&amp;nbsp;in the Hindu religion. In the evening&amp;nbsp;return&amp;nbsp;back&amp;nbsp;to&amp;nbsp;Prayagraj&amp;nbsp;after a holy day visit of Chitrakoot. Dinner and overnight at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":650,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224649\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":650,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224650\",\"Title\":\"Prayagraj - Ayodhya\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, Early&amp;nbsp;this&amp;nbsp;morning, take a&amp;nbsp;Holy Dip&amp;nbsp;in the river Gangas&amp;nbsp;and perform&amp;nbsp;pooja, visit&amp;nbsp;&lt;strong&gt;Akshay&amp;nbsp;Vat, Sleeping Hanuman Temple&lt;\\/strong&gt; and proceed for&amp;nbsp;Ayodhya.&amp;nbsp;Check in to the hotel for dinner and overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35570,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224651\",\"Title\":\"Ayodhya &acirc;&euro;&ldquo; Chhapaiya - Ayodhya\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, visit Ram&amp;nbsp;Janma&amp;nbsp;Bhumi,&amp;nbsp;the birthplace of Lord Shree Ram.&amp;nbsp;Also, visit the temples of&amp;nbsp;&lt;strong&gt;Kanak&amp;nbsp;Bhavan&lt;\\/strong&gt;&amp;nbsp;which are dedicated to the Hindu deity of Lord&amp;nbsp;Shree&amp;nbsp;Ram.&amp;nbsp;&amp;nbsp;Proceed to&amp;nbsp;&lt;strong&gt;Hanuman&amp;nbsp;Garhi&lt;\\/strong&gt;,&amp;nbsp;the biggest Hanuman temple in the world.&amp;nbsp;Further,&amp;nbsp;we proceed&amp;nbsp;to&amp;nbsp;Chhapaiya&amp;nbsp;to visit the birthplace of&amp;nbsp;Lord&amp;nbsp;Shree&amp;nbsp;Swaminarayan.&amp;nbsp;Visit places like &lt;strong&gt;Swami Narayan temple, Narayan Sarovar&amp;nbsp;Lake, Meena Sarovar Lake, and Ghanshyam Bhavan&lt;\\/strong&gt;. All the sacred places of interest for Swami Narayan religion. Drive back to Ayodhya for dinner and overnight stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35570,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224652\",\"Title\":\"Ayodhya &acirc;&euro;&ldquo; Varanasi Airport - Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast, transfer to&amp;nbsp;Varanasi&amp;nbsp;Airport&amp;nbsp;for your flight back home&amp;nbsp;with a memorable experience.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35570,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31575\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24999.45\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24999,\"priceDoubleOcc\":\"24999.45\",\"priceSingleOcc\":37499.7,\"priceExtraBed\":\"24999.45\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24999.45\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31575\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23809.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-08\",\"To\":\"2022-04-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-22\",\"To\":\"2022-04-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-06\",\"To\":\"2022-05-06\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-20\",\"To\":\"2022-05-20\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-01\",\"To\":\"2022-07-01\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-08\",\"To\":\"2022-07-08\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-15\",\"To\":\"2022-07-15\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-29\",\"To\":\"2022-07-29\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-12\",\"To\":\"2022-08-12\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-19\",\"To\":\"2022-08-19\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-26\",\"To\":\"2022-08-26\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-02\",\"To\":\"2022-09-02\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-09\",\"To\":\"2022-09-09\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-23\",\"To\":\"2022-09-23\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-30\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":23809,\"priceDoubleOcc\":\"23809.00\",\"priceSingleOcc\":35714,\"priceExtraBed\":\"23809.00\",\"priceWithoutBed\":\"20000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"23809.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30 Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions as per booking forms.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rates are subject to change&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All Pooja and&amp;nbsp;vidhi&amp;nbsp;expenses to be paid by clients directly&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entry Tickets to be paid by Clients Directly.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Surcharges applicable on certain dates&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Varanasi:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Sarnath&amp;nbsp;and&amp;nbsp;Sarnath&amp;nbsp;Museum&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Boat tour of Ganga rivers and Ganga Aarti&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;New Vishwanath Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Annapurna Devi Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vishalakshi Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bharat Mata (Mother India) Mandir&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tulsi Manas Mandir&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sankat Mochan Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Bodh Gaya:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Mahabodhi Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bodhi Tree&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Great Buddha Statue&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chinese Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vishnupad Temple, Gaya&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Prayagraj:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Triveni Sangam&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Akshay Vat&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sleeping Hanuman Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Chitrakoot:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Ramghat&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kamadgiri&amp;nbsp;Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ram Bharat Milap&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hanuman Dhara&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sati Anusuya Ashram&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Ayodhya:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Ram Janma Bhumi&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kanak Bhawan&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hanuman Gadi&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Saryu Ghat&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Chappaya:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Shree Swaminarayan Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;07&amp;nbsp;Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06&amp;nbsp;Lunches&amp;nbsp;(Packed Lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07 Dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All&amp;nbsp;Transfers&amp;nbsp;by A\\/C Coach&amp;nbsp;\\/ Tempo Traveler&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9371\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9372\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"224642\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[224642],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224643\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[224643],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224644\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[224644],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224645\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[224645],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224646\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[224646],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224647\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[224647],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224648\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[224648],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224649\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[224649],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224650\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[224650],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224651\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[224651],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224652\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[224652],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"28449\":{\"CityName\":\"Varanasi\",\"FromDate\":{\"20220401\":{\"FromDate\":\"2022-04-01\",\"FromDateDMY\":\"01\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220408\":{\"FromDate\":\"2022-04-08\",\"FromDateDMY\":\"08\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220415\":{\"FromDate\":\"2022-04-15\",\"FromDateDMY\":\"15\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220422\":{\"FromDate\":\"2022-04-22\",\"FromDateDMY\":\"22\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220429\":{\"FromDate\":\"2022-04-29\",\"FromDateDMY\":\"29\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220506\":{\"FromDate\":\"2022-05-06\",\"FromDateDMY\":\"06\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220513\":{\"FromDate\":\"2022-05-13\",\"FromDateDMY\":\"13\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220520\":{\"FromDate\":\"2022-05-20\",\"FromDateDMY\":\"20\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220527\":{\"FromDate\":\"2022-05-27\",\"FromDateDMY\":\"27\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220603\":{\"FromDate\":\"2022-06-03\",\"FromDateDMY\":\"03\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220610\":{\"FromDate\":\"2022-06-10\",\"FromDateDMY\":\"10\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220617\":{\"FromDate\":\"2022-06-17\",\"FromDateDMY\":\"17\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220624\":{\"FromDate\":\"2022-06-24\",\"FromDateDMY\":\"24\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220701\":{\"FromDate\":\"2022-07-01\",\"FromDateDMY\":\"01\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220708\":{\"FromDate\":\"2022-07-08\",\"FromDateDMY\":\"08\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220715\":{\"FromDate\":\"2022-07-15\",\"FromDateDMY\":\"15\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220722\":{\"FromDate\":\"2022-07-22\",\"FromDateDMY\":\"22\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220729\":{\"FromDate\":\"2022-07-29\",\"FromDateDMY\":\"29\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220805\":{\"FromDate\":\"2022-08-05\",\"FromDateDMY\":\"05\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220812\":{\"FromDate\":\"2022-08-12\",\"FromDateDMY\":\"12\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220819\":{\"FromDate\":\"2022-08-19\",\"FromDateDMY\":\"19\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220826\":{\"FromDate\":\"2022-08-26\",\"FromDateDMY\":\"26\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220902\":{\"FromDate\":\"2022-09-02\",\"FromDateDMY\":\"02\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220909\":{\"FromDate\":\"2022-09-09\",\"FromDateDMY\":\"09\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220916\":{\"FromDate\":\"2022-09-16\",\"FromDateDMY\":\"16\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220923\":{\"FromDate\":\"2022-09-23\",\"FromDateDMY\":\"23\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220930\":{\"FromDate\":\"2022-09-30\",\"FromDateDMY\":\"30\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Varanasi,Bodhgaya,Allahabad,Ayodhya','Varanasi,Uttar Pradesh,Indian Subcontinent,North India,India,Bodhgaya,Bihar,East India,Allahabad,Ayodhya,Chitrakoot',NULL,'28449,3517,650,35570',23809,24999,7,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-uttar-pradesh-2022',NULL,NULL,NULL,0),(26,31535,1,12577,0,0,0,'Honeymoon,Family,Hill Station,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31535,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_nostalgic_nepal_2022_1642507751.jpg\",\"BookingValidUntill\":\"2022-10-27\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Nepal, officially the&amp;nbsp;Federal Democratic Republic of Nepal is a&amp;nbsp;landlocked country&amp;nbsp;in&amp;nbsp;South Asia. It is mainly situated in the&amp;nbsp;Himalayas, but also includes parts of the&amp;nbsp;Indo-Gangetic Plain, bordering&amp;nbsp;Tibet&amp;nbsp;of China&amp;nbsp;to the north, and India&amp;nbsp;in the south, east, and west, while it is narrowly separated from&amp;nbsp;Bangladesh&amp;nbsp;by the&amp;nbsp;Siliguri Corridor, and from&amp;nbsp;Bhutan&amp;nbsp;by the&amp;nbsp;Indian state&amp;nbsp;of&amp;nbsp;Sikkim. Nepal has a&amp;nbsp;diverse geography, including&amp;nbsp;fertile plains, subalpine forested hills, and eight of the world&amp;#39;s ten&amp;nbsp;tallest mountains, including&amp;nbsp;Mount Everest, the highest point on Earth. Nepal is a multi-ethnic, multi-lingual, multi-religious, and multi-cultural state, with&amp;nbsp;Nepali&amp;nbsp;as the official language.&amp;nbsp;Kathmandu&amp;nbsp;is the nation&amp;#39;s capital and the&amp;nbsp;largest city.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Kathmandu\",\"DestinationPlacesSysId\":13672,\"SourcePlaces\":\"Kathmandu\",\"SourcePlaceSysId\":13672,\"AgencyName\":\"\",\"Name\":\"Ex. Nostalgic Nepal 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-10-27\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13672,\"Title\":\"Kathmandu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":493218,\"Name\":\"Mirage Lords Inn Kathmandu\",\"Star\":\"3.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.7038063\",\"Long\":\"85.34161879999999\",\"Address\":\"310 Battisputali Road, Kathmandu, Nepal 44600, Nepal\"},\"Images\":{\"Image\":[{\"ImagId\":4820351,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493218\\/4913_01642768402.jpg\"},{\"ImagId\":4820352,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493218\\/4913_11642768406.jpg\"},{\"ImagId\":4820353,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493218\\/4913_21642768409.jpg\"},{\"ImagId\":4820354,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493218\\/4913_31642768412.jpg\"}]},\"CityId\":13672,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493218\\/4913_99929dd0d283a25a59a856b6584da9b51642768402.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2342,\"Title\":\"Kathmandu Durbar Square\",\"Description\":\"The Kathmandu Durbar Square  is also known as Hanuman Dhoka.The outer complexof Durbar Square is renowned for many interesting temples as Kumari Ghar  Kasthamandap  Shiv-Parbati Temple Jagannath Temple Big Bell etc while the inner complex comprises the old palace area Hanuman-dhoka and its courtyards as Nasal Choke Mul Choke Sundari Choke Basantapur Durbar and other. Besides the magnificent temples and shrines.Kathmandu Durbar Square never fails to impress first time visitors with its intricate wood carvings and rich history.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.704283,\"Long\":85.307355,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Kathmandu_Durbar_Square_13672_1518071623.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2335,\"Title\":\"Pashupatinath Temple\",\"Description\":\"Pashupatinath is the largest temple complex in Nepal stretches on both sides of the Bagmati River which is considered holy by Hindus.This Temple is dedicated to Lord Shiva which is the fourth most important religious sites in Asia for devotees of Shiva.The  temple has a gilded roof four sides covered in silver and wood carvings of the finest quality. Pashupatinath is also one of the very few living cultural heritage sites in the world.It is the centre of energy with active participation of people all times of the day every day. The big Maha Shivaratri festival in spring attracts hundreds of thousands of devotees from within Nepal and from India.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7104641,\"Long\":85.3486888,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Pashupatinath_Temple_13672_1518068971.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3354,\"Title\":\"Swayambhunath\",\"Description\":\"Swayambhunath is the most ancient of all the holy shrines located at the hilltop in Kathmandu valley.Its glittering golden spire are visible for many miles and from all sides of the valley.This sacred pilgrimage site is also home to hundreds of monkeys considered holy to Tibetan Buddhists and Hindus. Swayambhunath is a fascinating jumble of Buddhist and Hindu iconography.The 2015 earthquake failed to tumble Kathmandus best loved temple though a couple of outlying buildings crumbled in the earthquake.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7147791,\"Long\":85.2903796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Swayambhunath_13672_1518075035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2336,\"Title\":\"Phewa Lake\",\"Description\":\"Phewa Tal or Fewa Lake is a freshwater lake in Nepal located in the south of the Pokhara Valley. One of Nepal&#039;s most beautiful spots, Phewa Tal is surrounded by a combination of monkey-filled forests and the high white peaks. The reflections in the mirror-like water in the early mornings are something you must see at least once before you die. Hire a boat and row yourself across the lake .\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":28.2153837,\"Long\":83.9453168,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503317751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8331,\"Title\":\"Chitwan National Park\",\"Description\":\"Chitwan National Park is a preserved area in the Terai Lowlands of south-central Nepal, known for its biodiversity. Its dense forests and grassy plains are home to rare mammals like one-horned rhinos and Bengal tigers. The park shelters numerous bird species, including the giant hornbill. Dugout canoes traverse the northern Rapti River, home to crocodiles. Inside the park is Balmiki Ashram, a Hindu pilgrimage site.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/Chitwan_National_Park_6194_1548659024.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2349,\"Title\":\"Jungle Walk \",\"Description\":\"Jungle walk is one the adventurous and entertaining activity of Sauraha. One can walk through dense forest around the natural habitat of the wild animals during the jungle walk.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":23.8196342,\"Long\":86.4684159,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503320551.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2348,\"Title\":\"Tribal Dance \",\"Description\":\"Its a cultural and traditional dances with long and short sticks performed by local Tharu people. They represent the different festivals and ceremonies.\\r\\nYou will be amazed by these war-like dances.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":40.8818468,\"Long\":-73.3256041,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503320173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2344,\"Title\":\"Elephant Safari\",\"Description\":\"You have a chance to spot a one-horned rhinoceros, Royal Bengal tigers, majestic elephants, crocodiles, rhesus monkeys, grey langur, deer, leopards, python, brilliantly colored birds and much more varieties of mammals, birds, reptiles and water animals.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":-8.391231,\"Long\":115.283967,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503319480.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2346,\"Title\":\"Village walk \",\"Description\":\"You can witness the daily lifestyle and activities of the Tharu community. The Tharu community reside along the entire length of the Terai plains of Nepal but Chitwan are is especially popular for their traditional culture. \",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":26.330209,\"Long\":-81.6956938,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503319815.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":21687,\"Title\":\"Pokhara\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492259,\"Name\":\"Hotel Lake Star\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Barahipath-6, Pokhara 33700\"},\"Images\":{\"Image\":[{\"ImagId\":4820227,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492259\\/4913_01642075168.jpg\"},{\"ImagId\":4820228,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492259\\/4913_11642075168.jpg\"},{\"ImagId\":4820229,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492259\\/4913_21642075168.jpg\"},{\"ImagId\":4820230,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492259\\/4913_31642075168.jpg\"}]},\"CityId\":21687,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492259\\/4913_54c67a8021e5baa5627f1baf5760dd411642075168.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2342,\"Title\":\"Kathmandu Durbar Square\",\"Description\":\"The Kathmandu Durbar Square  is also known as Hanuman Dhoka.The outer complexof Durbar Square is renowned for many interesting temples as Kumari Ghar  Kasthamandap  Shiv-Parbati Temple Jagannath Temple Big Bell etc while the inner complex comprises the old palace area Hanuman-dhoka and its courtyards as Nasal Choke Mul Choke Sundari Choke Basantapur Durbar and other. Besides the magnificent temples and shrines.Kathmandu Durbar Square never fails to impress first time visitors with its intricate wood carvings and rich history.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.704283,\"Long\":85.307355,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Kathmandu_Durbar_Square_13672_1518071623.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2335,\"Title\":\"Pashupatinath Temple\",\"Description\":\"Pashupatinath is the largest temple complex in Nepal stretches on both sides of the Bagmati River which is considered holy by Hindus.This Temple is dedicated to Lord Shiva which is the fourth most important religious sites in Asia for devotees of Shiva.The  temple has a gilded roof four sides covered in silver and wood carvings of the finest quality. Pashupatinath is also one of the very few living cultural heritage sites in the world.It is the centre of energy with active participation of people all times of the day every day. The big Maha Shivaratri festival in spring attracts hundreds of thousands of devotees from within Nepal and from India.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7104641,\"Long\":85.3486888,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Pashupatinath_Temple_13672_1518068971.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3354,\"Title\":\"Swayambhunath\",\"Description\":\"Swayambhunath is the most ancient of all the holy shrines located at the hilltop in Kathmandu valley.Its glittering golden spire are visible for many miles and from all sides of the valley.This sacred pilgrimage site is also home to hundreds of monkeys considered holy to Tibetan Buddhists and Hindus. Swayambhunath is a fascinating jumble of Buddhist and Hindu iconography.The 2015 earthquake failed to tumble Kathmandus best loved temple though a couple of outlying buildings crumbled in the earthquake.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7147791,\"Long\":85.2903796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Swayambhunath_13672_1518075035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2336,\"Title\":\"Phewa Lake\",\"Description\":\"Phewa Tal or Fewa Lake is a freshwater lake in Nepal located in the south of the Pokhara Valley. One of Nepal&#039;s most beautiful spots, Phewa Tal is surrounded by a combination of monkey-filled forests and the high white peaks. The reflections in the mirror-like water in the early mornings are something you must see at least once before you die. Hire a boat and row yourself across the lake .\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":28.2153837,\"Long\":83.9453168,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503317751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8331,\"Title\":\"Chitwan National Park\",\"Description\":\"Chitwan National Park is a preserved area in the Terai Lowlands of south-central Nepal, known for its biodiversity. Its dense forests and grassy plains are home to rare mammals like one-horned rhinos and Bengal tigers. The park shelters numerous bird species, including the giant hornbill. Dugout canoes traverse the northern Rapti River, home to crocodiles. Inside the park is Balmiki Ashram, a Hindu pilgrimage site.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/Chitwan_National_Park_6194_1548659024.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2349,\"Title\":\"Jungle Walk \",\"Description\":\"Jungle walk is one the adventurous and entertaining activity of Sauraha. One can walk through dense forest around the natural habitat of the wild animals during the jungle walk.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":23.8196342,\"Long\":86.4684159,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503320551.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2348,\"Title\":\"Tribal Dance \",\"Description\":\"Its a cultural and traditional dances with long and short sticks performed by local Tharu people. They represent the different festivals and ceremonies.\\r\\nYou will be amazed by these war-like dances.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":40.8818468,\"Long\":-73.3256041,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503320173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2344,\"Title\":\"Elephant Safari\",\"Description\":\"You have a chance to spot a one-horned rhinoceros, Royal Bengal tigers, majestic elephants, crocodiles, rhesus monkeys, grey langur, deer, leopards, python, brilliantly colored birds and much more varieties of mammals, birds, reptiles and water animals.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":-8.391231,\"Long\":115.283967,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503319480.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2346,\"Title\":\"Village walk \",\"Description\":\"You can witness the daily lifestyle and activities of the Tharu community. The Tharu community reside along the entire length of the Terai plains of Nepal but Chitwan are is especially popular for their traditional culture. \",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":26.330209,\"Long\":-81.6956938,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503319815.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":6194,\"Title\":\"Chitwan\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492260,\"Name\":\"Chitwan Paradise Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Baadreni Road, Ratnanagar 44200, Nepal\"},\"Images\":{\"Image\":[{\"ImagId\":4820231,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492260\\/4913_01642075299.jpg\"},{\"ImagId\":4820232,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492260\\/4913_11642075299.jpg\"},{\"ImagId\":4820233,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492260\\/4913_21642075299.jpg\"},{\"ImagId\":4820234,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492260\\/4913_31642075299.jpg\"}]},\"CityId\":6194,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492260\\/4913_b15c9579f110413427578eb68a510a8f1642075299.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2342,\"Title\":\"Kathmandu Durbar Square\",\"Description\":\"The Kathmandu Durbar Square  is also known as Hanuman Dhoka.The outer complexof Durbar Square is renowned for many interesting temples as Kumari Ghar  Kasthamandap  Shiv-Parbati Temple Jagannath Temple Big Bell etc while the inner complex comprises the old palace area Hanuman-dhoka and its courtyards as Nasal Choke Mul Choke Sundari Choke Basantapur Durbar and other. Besides the magnificent temples and shrines.Kathmandu Durbar Square never fails to impress first time visitors with its intricate wood carvings and rich history.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.704283,\"Long\":85.307355,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Kathmandu_Durbar_Square_13672_1518071623.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2335,\"Title\":\"Pashupatinath Temple\",\"Description\":\"Pashupatinath is the largest temple complex in Nepal stretches on both sides of the Bagmati River which is considered holy by Hindus.This Temple is dedicated to Lord Shiva which is the fourth most important religious sites in Asia for devotees of Shiva.The  temple has a gilded roof four sides covered in silver and wood carvings of the finest quality. Pashupatinath is also one of the very few living cultural heritage sites in the world.It is the centre of energy with active participation of people all times of the day every day. The big Maha Shivaratri festival in spring attracts hundreds of thousands of devotees from within Nepal and from India.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7104641,\"Long\":85.3486888,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Pashupatinath_Temple_13672_1518068971.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3354,\"Title\":\"Swayambhunath\",\"Description\":\"Swayambhunath is the most ancient of all the holy shrines located at the hilltop in Kathmandu valley.Its glittering golden spire are visible for many miles and from all sides of the valley.This sacred pilgrimage site is also home to hundreds of monkeys considered holy to Tibetan Buddhists and Hindus. Swayambhunath is a fascinating jumble of Buddhist and Hindu iconography.The 2015 earthquake failed to tumble Kathmandus best loved temple though a couple of outlying buildings crumbled in the earthquake.\",\"CurrencyType\":0,\"CityId\":13672,\"CityName\":\"Kathmandu\",\"Lat\":27.7147791,\"Long\":85.2903796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13672\\/sightseeing\\/Swayambhunath_13672_1518075035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2336,\"Title\":\"Phewa Lake\",\"Description\":\"Phewa Tal or Fewa Lake is a freshwater lake in Nepal located in the south of the Pokhara Valley. One of Nepal&#039;s most beautiful spots, Phewa Tal is surrounded by a combination of monkey-filled forests and the high white peaks. The reflections in the mirror-like water in the early mornings are something you must see at least once before you die. Hire a boat and row yourself across the lake .\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":28.2153837,\"Long\":83.9453168,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503317751.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8331,\"Title\":\"Chitwan National Park\",\"Description\":\"Chitwan National Park is a preserved area in the Terai Lowlands of south-central Nepal, known for its biodiversity. Its dense forests and grassy plains are home to rare mammals like one-horned rhinos and Bengal tigers. The park shelters numerous bird species, including the giant hornbill. Dugout canoes traverse the northern Rapti River, home to crocodiles. Inside the park is Balmiki Ashram, a Hindu pilgrimage site.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/Chitwan_National_Park_6194_1548659024.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2349,\"Title\":\"Jungle Walk \",\"Description\":\"Jungle walk is one the adventurous and entertaining activity of Sauraha. One can walk through dense forest around the natural habitat of the wild animals during the jungle walk.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":23.8196342,\"Long\":86.4684159,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503320551.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2348,\"Title\":\"Tribal Dance \",\"Description\":\"Its a cultural and traditional dances with long and short sticks performed by local Tharu people. They represent the different festivals and ceremonies.\\r\\nYou will be amazed by these war-like dances.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":40.8818468,\"Long\":-73.3256041,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503320173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2344,\"Title\":\"Elephant Safari\",\"Description\":\"You have a chance to spot a one-horned rhinoceros, Royal Bengal tigers, majestic elephants, crocodiles, rhesus monkeys, grey langur, deer, leopards, python, brilliantly colored birds and much more varieties of mammals, birds, reptiles and water animals.\",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":-8.391231,\"Long\":115.283967,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503319480.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2346,\"Title\":\"Village walk \",\"Description\":\"You can witness the daily lifestyle and activities of the Tharu community. The Tharu community reside along the entire length of the Terai plains of Nepal but Chitwan are is especially popular for their traditional culture. \",\"CurrencyType\":0,\"CityId\":6194,\"CityName\":\"Chitwan\",\"Lat\":26.330209,\"Long\":-81.6956938,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6194\\/sightseeing\\/18_1503319815.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"224310\",\"Title\":\"Arrival &acirc;&euro;&ldquo; Kathmandu\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Once you arrive at the airport in Kathmandu, look out for our representative who will be holding a placard with your name on it. A short drive and you will be at your hotel, complete the check-in procedure. In the evening,&amp;nbsp;you can head over to&amp;nbsp;&lt;strong&gt;Thamel&lt;\\/strong&gt;, the main tourist hub where you can have a good time at the bar or a club.&amp;nbsp;Dinner and&amp;nbsp;overnight&amp;nbsp;in Kathmandu.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493218,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224311\",\"Title\":\"Kathmandu Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, today is a big day for you as you finally get to kick-start your cultural discovery. We have a lot of sightseeing in store for you starting with Kathmandu, the nerve &amp;ndash;&amp;nbsp;center&amp;nbsp;of Nepal. It flaunts its rich history and vibrant culture in every possible nook and cranny.&amp;nbsp;&lt;strong&gt;Pashupati Nath&amp;nbsp;Temple&lt;\\/strong&gt; is dedicated to Lord Mahadev and has a&amp;nbsp;great&amp;nbsp;significance in the Hindu religion.&amp;nbsp;You then make your way to&amp;nbsp;&lt;strong&gt;Swoyambhu&amp;nbsp;Nath&amp;nbsp;Stupa&lt;\\/strong&gt;&amp;nbsp;meaning &amp;ldquo;the self-existent&amp;rdquo; which is popular among foreigners owing to the large monkey&amp;nbsp;population residing in the area. No wonder why it&amp;rsquo;s also called &amp;ldquo;Monkey Temple&amp;rdquo;. Make sure you keep an eye out for these notorious creatures. Continue towards,&amp;nbsp;&lt;strong&gt;Patan&amp;nbsp;Durbar Square &lt;\\/strong&gt;&amp;ndash; the&amp;nbsp;center&amp;nbsp;of Fine art.&amp;nbsp;Patan&amp;nbsp;Durbar Square and as you walk past the whitewashed gate, you enter a square lined with cafes, grocery stores, and huge iron bells. Still beyond the alleys&amp;nbsp;lie mostly medieval neighborhoods of the city.&amp;nbsp;Temples and stupas are in abundance, in various shapes, sizes, and antiquity.&amp;nbsp;After visiting&amp;nbsp;Buddhinath&amp;nbsp;stupa,&amp;nbsp;the full-day sightseeing tour comes to an end. Back to the hotel for dinner and&amp;nbsp;overnight&amp;nbsp;in Kathmandu.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493218,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2342,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2335,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3354,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224312\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224313\",\"Title\":\"Kathmandu-Pokhara \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Following breakfast, our adventure begins with a scenic drive to&amp;nbsp;Pokhara&amp;nbsp;offering views of rivers, terrace fields, and a captivating view of the &lt;strong&gt;Annapurna range&lt;\\/strong&gt; as you near the&amp;nbsp;Pokhara&amp;nbsp;city&amp;nbsp;which is also known as&amp;nbsp;scenic lake city. Feel free to take a stroll through the city in the evening or relax by the lakeside.&amp;nbsp;Dinner and&amp;nbsp;Overnight in&amp;nbsp;Pokhara.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21687,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492259,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224314\",\"Title\":\"Sarangkot with Pokhara Sightseeing Tour\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;A short drive before the crack of dawn takes you to&amp;nbsp;&lt;strong&gt;Sarangkot&amp;nbsp;&lt;\\/strong&gt;to witness the most amazing sunrise. You can paraglide in&amp;nbsp;Sarangkot&amp;nbsp;as the option is available on request. Nothing better to start the day with a well-deserved breakfast at the hotel. The city of lakes &amp;ndash;&amp;nbsp;Pokhara&amp;nbsp;is a natural charmer. The city is dotted with placid lakes, and we are sure that the view of the&amp;nbsp;&lt;strong&gt;Phewa&amp;nbsp;Lake&lt;\\/strong&gt;&amp;nbsp;with the serene Fishtail Mountain in the backdrop&amp;nbsp;will surely inspire the photographer in you.&amp;nbsp;You can indulge yourself in adventure activities of your choice like paragliding, bungee jumping, zip flying, and ultra-light flight (optional).&amp;nbsp;Transfer back to the hotel in the evening for dinner and overnight stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21687,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492259,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2336,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224315\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21687,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224316\",\"Title\":\"Pokhara - Chitwan\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, check out&amp;nbsp;and&amp;nbsp;Drive towards&amp;nbsp;Chitwan&amp;nbsp;(180 km, 4-5&amp;nbsp;hrs&amp;nbsp;drive).&amp;nbsp;Chitwan&amp;nbsp;is listed among one of the eight UNESCO world heritage sites. This is also the first national park in Nepal. You will enjoy 2 days full of jungle activities that will take you deep into the jungle and get closer to the wild as you comb the jungles for rhinos and tigers.&amp;nbsp;In the evening there will be a special cultural show by indigenous&amp;nbsp;Tharu&amp;nbsp;community people followed by dinner&amp;nbsp;and an Overnight stay at&amp;nbsp;Chitwan.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492260,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8331,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2349,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2348,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224317\",\"Title\":\"Chitwan\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;The day will be filled with various jungle activities starting with either&lt;strong&gt; jeep safari or elephant ride&lt;\\/strong&gt;. Canoeing on the calm waters of the &lt;strong&gt;Rapti&amp;nbsp;River&lt;\\/strong&gt; is the best way to spot water birds, crocodiles, and alligators. Visit local&amp;nbsp;&lt;strong&gt;Tharu&amp;nbsp;village&lt;\\/strong&gt; to closely observe the lifestyle and habitat of these indigenous people; and the brave can even take a guided walk through the jungle, surrounded by the hoots and roars of the forest.&amp;nbsp;Get the experience of the close encounter with wildlife during the day. Dinner and&amp;nbsp;Overnight stay at&amp;nbsp;Chitwan.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492260,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2344,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2346,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224318\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224319\",\"Title\":\"Chitwan - Kathmandu\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;Drive back to Kathmandu. En route, visit the popular Himalayan sites of&amp;nbsp;&lt;strong&gt;Nagarkot&amp;nbsp;village&lt;\\/strong&gt;. You can see mount Everest at distance on a clear day. Also, visit&amp;nbsp;&lt;strong&gt;Nagarkot&amp;nbsp;waterfalls&lt;\\/strong&gt;&amp;nbsp;if time permits.&amp;nbsp;Upon arrival&amp;nbsp;in Kathmandu, transfer to your respective hotel. The rest of the time is free for leisure&amp;nbsp;and shopping.&amp;nbsp;Dinner and&amp;nbsp;Overnight stay at Kathmandu.&amp;nbsp;You can try your lady luck at famous local casinos.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493218,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224320\",\"Title\":\"Kathmandu - Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Check-out from the hotel&amp;nbsp;and&amp;nbsp;transfer to the international airport for&amp;nbsp;your&amp;nbsp;flight back home with picturesque memories.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31535\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"34999.65\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35000,\"priceDoubleOcc\":\"34999.65\",\"priceSingleOcc\":52498.95,\"priceExtraBed\":\"34999.65\",\"priceWithoutBed\":\"31999.80\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"34999.65\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31535\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33333.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":33333,\"priceDoubleOcc\":\"33333.00\",\"priceSingleOcc\":49999,\"priceExtraBed\":\"33333.00\",\"priceWithoutBed\":\"30476.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"33333.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30 Passengers group size will have Driver cum guide.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions as per booking forms.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rates are subject to change&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All&amp;nbsp;Pooja&amp;nbsp;and&amp;nbsp;vidhi&amp;nbsp;expenses to be paid by clients directly&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entry Tickets to be paid by Clients Directly.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Surcharges applicable on certain dates&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Kathmandu:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Thamel&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pashupatinath&amp;nbsp;Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Swayambhu&amp;nbsp;Stupa&amp;nbsp;(Monkey Temple)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Patan&amp;nbsp;Durbar Square&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Boudha&amp;nbsp;Stupa&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Pokhara:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Sarangkot&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Varahi&amp;nbsp;Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Davis Falls (Underground Waterfall)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gupteshwor&amp;nbsp;Mahadev&amp;nbsp;Cave&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Seti&amp;nbsp;River Gorge&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Old&amp;nbsp;Pokhara&amp;nbsp;Bazaar&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shree&amp;nbsp;Bindhyabasini&amp;nbsp;Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Adventure activities (optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Chitwan:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Chitwan&amp;nbsp;National Park&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Elephant Breeding Center&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tharu&amp;nbsp;village&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Local dance show&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Nagarkot:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Nagarkot&amp;nbsp;Village&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nagarkot&amp;nbsp;Waterfalls&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;07&amp;nbsp;Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06&amp;nbsp;Lunches (Packed Lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07&amp;nbsp;Dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All&amp;nbsp;Transfers&amp;nbsp;by A\\/C Coach&amp;nbsp;\\/ Tempo Traveler&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9349\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9350\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"224310\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[224310],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224311\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[224311],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224312\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[224312],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224313\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[224313],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224314\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[224314],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224315\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[224315],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224316\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[224316],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224317\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[224317],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224318\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[224318],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224319\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[224319],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224320\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[224320],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"13672\":{\"CityName\":\"Kathmandu\",\"FromDate\":{\"20220507\":{\"FromDate\":\"2022-05-07\",\"FromDateDMY\":\"07\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220514\":{\"FromDate\":\"2022-05-14\",\"FromDateDMY\":\"14\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220521\":{\"FromDate\":\"2022-05-21\",\"FromDateDMY\":\"21\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220604\":{\"FromDate\":\"2022-06-04\",\"FromDateDMY\":\"04\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220611\":{\"FromDate\":\"2022-06-11\",\"FromDateDMY\":\"11\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220618\":{\"FromDate\":\"2022-06-18\",\"FromDateDMY\":\"18\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220625\":{\"FromDate\":\"2022-06-25\",\"FromDateDMY\":\"25\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220815\":{\"FromDate\":\"2022-08-15\",\"FromDateDMY\":\"15\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220816\":{\"FromDate\":\"2022-08-16\",\"FromDateDMY\":\"16\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220817\":{\"FromDate\":\"2022-08-17\",\"FromDateDMY\":\"17\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220925\":{\"FromDate\":\"2022-09-25\",\"FromDateDMY\":\"25\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221021\":{\"FromDate\":\"2022-10-21\",\"FromDateDMY\":\"21\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221022\":{\"FromDate\":\"2022-10-22\",\"FromDateDMY\":\"22\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221023\":{\"FromDate\":\"2022-10-23\",\"FromDateDMY\":\"23\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221025\":{\"FromDate\":\"2022-10-25\",\"FromDateDMY\":\"25\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221026\":{\"FromDate\":\"2022-10-26\",\"FromDateDMY\":\"26\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221027\":{\"FromDate\":\"2022-10-27\",\"FromDateDMY\":\"27\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Kathmandu,Pokhara,Chitwan','Kathmandu,Indian Subcontinent,Nepal,Pokhara,Chitwan',NULL,'13672,21687,6194',33333,35000,7,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-10-27 00:00:00','2022-10-27 00:00:00',3,'Nepal','153','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-nostalgic-nepal-2022',NULL,NULL,NULL,0),(27,31500,1,12577,1,0,0,'Honeymoon,Adventure,Family,Hill Station,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31500,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_leh_ladakh_2022_1642491623.jpg\",\"BookingValidUntill\":\"2022-09-28\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Leh&amp;nbsp;(\\/&Euml;&circ;le&Eacute;&ordf;\\/) is the joint capital and largest town of the&amp;nbsp;union territory&amp;nbsp;of&amp;nbsp;Ladakh&amp;nbsp;in&amp;nbsp;India. Leh, located in the&amp;nbsp;Leh district, was also the historical capital of the Kingdom of Ladakh, the seat of which was in the&amp;nbsp;Leh Palace, the former residence of the royal family of Ladakh, built in the same style and about the same time as the&amp;nbsp;Potala Palace&amp;nbsp;in&amp;nbsp;Tibet. Leh is at an altitude of 3,524&amp;nbsp;m (11,562&amp;nbsp;ft), and is connected via&amp;nbsp;National Highway 1&amp;nbsp;to&amp;nbsp;Srinagar&amp;nbsp;in the southwest and to&amp;nbsp;Manali&amp;nbsp;in the south via the&amp;nbsp;Leh-Manali Highway.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Leh\",\"SourcePlaceSysId\":15229,\"AgencyName\":\"\",\"Name\":\"Ex. Leh Ladakh 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Family,Hill Station,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-09-28\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492114,\"Name\":\"Hotel Kesaar Palace\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1628796\",\"Long\":\"77.5797402\",\"Address\":\"Fort Rd, Leh, 194101\"},\"Images\":{\"Image\":[{\"ImagId\":4820235,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492114\\/4913_01642076359.jpg\"},{\"ImagId\":4820236,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492114\\/4913_11642076359.jpg\"},{\"ImagId\":4820237,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492114\\/4913_21642076359.jpg\"}]},\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492114\\/4913_837cb9cda04a8b362c3feacde5c9f5f01642076359.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &acirc;&euro;&oelig;magnetic hill&acirc;&euro;\\u009d is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7256,\"Title\":\"Indo-China Border\",\"Description\":\"Pangong Tso is a salt lake in the state of Jammu and Kashmir. Situated in the midst of the Himalayas, the lake lies at the Indo-China border with part of the lake in India and the rest in China.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Indo-China_Border_35281_1538049283.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492115,\"Name\":\"Nubra Ethnic Camp\",\"Star\":\"3.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.5852806\",\"Long\":\"77.4702903\",\"Address\":\"Hundar,Nubra Valley,Ladakh 194101\"},\"Images\":{\"Image\":[{\"ImagId\":4820242,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_01642076530.jpg\"},{\"ImagId\":4820243,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_11642076530.png\"},{\"ImagId\":4820244,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_21642076530.gif\"},{\"ImagId\":4820245,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_31642076530.jpg\"}]},\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_9489311fe07e3da30329b16df57f340e1642076530.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &acirc;&euro;&oelig;magnetic hill&acirc;&euro;\\u009d is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7256,\"Title\":\"Indo-China Border\",\"Description\":\"Pangong Tso is a salt lake in the state of Jammu and Kashmir. Situated in the midst of the Himalayas, the lake lies at the Indo-China border with part of the lake in India and the rest in China.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Indo-China_Border_35281_1538049283.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":35281,\"Title\":\"Pangong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492249,\"Name\":\"World Attic Camp\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"SpagmiK, Pangong Lake, Ladakh, Union Territory\"},\"Images\":{\"Image\":[{\"ImagId\":4820238,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_01642076449.jpg\"},{\"ImagId\":4820239,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_11642076449.jpg\"},{\"ImagId\":4820240,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_21642076449.jpg\"},{\"ImagId\":4820241,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_31642076449.jpg\"}]},\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_de70b6b9ca8adb38dc2f686f6d0381e61642076449.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &acirc;&euro;&oelig;magnetic hill&acirc;&euro;\\u009d is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7257,\"Title\":\"3 Idiot Shooting\",\"Description\":\"This place is the most popular shooting point in Pangong. Many Bollywood blockbuster movies shooting done here like 3 Idiots , Jab Tak Hai Jaan . It is one of the most crowded locations along the bank of pangong lake. It is the main Sightseeing in Pangong.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/3_Idiot_Shooting_35281_1538049430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7256,\"Title\":\"Indo-China Border\",\"Description\":\"Pangong Tso is a salt lake in the state of Jammu and Kashmir. Situated in the midst of the Himalayas, the lake lies at the Indo-China border with part of the lake in India and the rest in China.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Indo-China_Border_35281_1538049283.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"224072\",\"Title\":\"Arrive Leh\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival&amp;nbsp;at&amp;nbsp;Leh&amp;nbsp;Airport.&amp;nbsp;&amp;nbsp;(This must be one of the Most Sensational Flights in the World. On a clear Day from one side of the aircraft can be seen in the distance the peaks of K2, Nanga Parbat, Gasherbrum and on the other side of the aircraft, so close that you feel you could reach out and touch it, is the Nun Kun massif.) Upon arrival you will be met by&acirc;&euro;&macr;our&amp;nbsp;representative and transfer to Hotel for Check in. Complete Day for rest and leisure to acclimatise followed by Welcome tea or Coffee at the Hotel. Evening visit to&acirc;&euro;&macr;&lt;strong&gt;Leh&amp;nbsp;Palace, Shanti Stupa &amp;amp;&amp;nbsp;Leh&amp;nbsp;Market.&lt;\\/strong&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner and overnight at&amp;nbsp;hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492114,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3541,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3579,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224073\",\"Title\":\"Leh - Excursion to Sham Valley (50 Kms \\/ 03-04 Hr) \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;drive downstream along the River Indus on&amp;nbsp;Leh&amp;nbsp;&amp;ndash;&amp;nbsp;Kargil&amp;nbsp;Highway&amp;nbsp;to&amp;nbsp;start&amp;nbsp;your sightseeing with&acirc;&euro;&macr;the &lt;strong&gt;Hall&amp;nbsp;of&amp;nbsp;Fame&acirc;&euro;&macr;(Museum Constructed by India Army)&lt;\\/strong&gt; near&amp;nbsp;Leh, which&amp;nbsp;is worth a visit for every Indian,&amp;nbsp;this is a memorial of the &amp;ldquo;Sahid Javan&amp;rdquo; who&amp;nbsp;lost&amp;nbsp;their lives&amp;nbsp;defending&amp;nbsp;the&amp;nbsp;Motherland.&amp;nbsp;&amp;nbsp;Proceed further to&acirc;&euro;&macr;&lt;strong&gt;Gurudwara&amp;nbsp;Patthar&amp;nbsp;Sahib&acirc;&euro;&macr;&lt;\\/strong&gt;at an altitude of 3600&amp;nbsp;Mtrs&amp;nbsp;about 22&amp;nbsp;kms&amp;nbsp;from&amp;nbsp;Leh&amp;nbsp;was constructed in memory of Guru Nanak&amp;nbsp;Dev&amp;nbsp;ji&amp;nbsp;Nestled deep in the Himalayas.&amp;nbsp;Also visit &lt;strong&gt;Kali Mata temple,&amp;nbsp;Hemis&amp;nbsp;Monastery,&amp;nbsp;Thiksey&amp;nbsp;Monastery,&lt;\\/strong&gt; and&amp;nbsp;&lt;strong&gt;Sindhu Ghat.&lt;\\/strong&gt; Indulge into the optional activity of River Rafting if you are an adventure lover.&amp;nbsp;&amp;nbsp;A drive of&amp;nbsp;further&amp;nbsp;4 kms&amp;nbsp;will take&amp;nbsp;us to &lt;strong&gt;Magnetic Hill&lt;\\/strong&gt; which defies the law of gravity. As you move ahead from Magnetic Hills, just before&amp;nbsp;Nimmu&amp;nbsp;Village, there comes a famous&acirc;&euro;&macr;Confluence&amp;nbsp;of&amp;nbsp;Two Rivers Indus River&acirc;&euro;&macr;coming from Tibet (left) and&amp;nbsp;Zanskar&amp;nbsp;River coming from&acirc;&euro;&macr;Zanskar&amp;nbsp;Valley&acirc;&euro;&macr;(right).&amp;nbsp;Zanskar&amp;nbsp;River is known for its famous&amp;nbsp;Chadar&amp;nbsp;Trek.&amp;nbsp;In the evening,&amp;nbsp;drive back to&amp;nbsp;Leh&amp;nbsp;for&amp;nbsp;Dinner and overnight at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492114,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3595,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3576,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3536,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2644,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2630,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224074\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224075\",\"Title\":\"Leh&acirc;&euro;&ldquo;Nubra Valley via Khardung La 18,390 FT. (120 Kms \\/ 4 &acirc;&euro;&ldquo; 5 Hrs)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Post breakfast,&amp;nbsp;we drive to&amp;nbsp;&lt;strong&gt;Nubra&amp;nbsp;Valley&lt;\\/strong&gt;. The road journey from&amp;nbsp;Leh&amp;nbsp;to&amp;nbsp;Nubra&amp;nbsp;Valley passes over&acirc;&euro;&macr;&lt;strong&gt;Khardung&amp;nbsp;La&lt;\\/strong&gt; (The Highest&amp;nbsp;Motorable&amp;nbsp;Road&amp;nbsp;In&amp;nbsp;The&amp;nbsp;World) at 5,602&amp;nbsp;Mtrs&amp;nbsp;\\/ 18,390 Ft, around 39 km from&amp;nbsp;Leh. From the pass, one can see all the way south over the Indus valley to seemingly endless peaks and ridges of the&amp;nbsp;Zanskar&amp;nbsp;range, and north to the giants of the&amp;nbsp;Saser&amp;nbsp;massif.&amp;nbsp;Nubra&amp;nbsp;Valley is popularly known as&amp;nbsp;Ldumra&amp;nbsp;or the valley of flowers. It is situated in the north of&amp;nbsp;Ladakh&amp;nbsp;between the Karakoram and&amp;nbsp;Ladakh&amp;nbsp;ranges of the Himalayas. The average altitude of the valley is 10,000 Ft. above sea level.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival in&amp;nbsp;Nubra,&amp;nbsp;check in&amp;nbsp;to&amp;nbsp;our Camp OR Hotel.&amp;nbsp;In the evening,&amp;nbsp;we drive to&acirc;&euro;&macr;Hunder&acirc;&euro;&macr;where you have&amp;nbsp;an optional&amp;nbsp;opportunity to ride on a&amp;nbsp;bacterian&amp;nbsp;camel (double humped) amidst the sand dunes of this&amp;nbsp;high-altitude&amp;nbsp;desert with&amp;nbsp;snow-capped&amp;nbsp;mountains on the horizon. Between&amp;nbsp;Hunder&amp;nbsp;and&amp;nbsp;Diskit&amp;nbsp;you come across sand dunes besides the road. Seen in isolation,&amp;nbsp;you could well be amongst the sand dunes of the&amp;nbsp;Thar&amp;nbsp;Desert in Rajasthan. On the return stop at&acirc;&euro;&macr;Diskit&acirc;&euro;&macr;which is the headquarter town of the Nubra&amp;nbsp;Valley. Stroll around the bazaar observing the shops and local people going about their daily chores.&amp;nbsp;Diskit&amp;nbsp;is famous for its 515 years old Buddhist Monastery, lying magnificently situated on a hilltop, facing the entire Valley. Later we drive back&amp;nbsp;to the hotel\\/Camp for Dinner &amp;amp; Overnight&amp;nbsp;stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492115,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3419,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3575,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2630,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224076\",\"Title\":\"Hunder &acirc;&euro;&ldquo; Turtuk &acirc;&euro;&ldquo; Nubra Valley (82 Kms &acirc;&euro;&ldquo; 3 Hrs One Way)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After an early breakfast,&amp;nbsp;proceed&amp;nbsp;to&acirc;&euro;&macr;&lt;strong&gt;Turtuk&lt;\\/strong&gt;&amp;nbsp;and a lot of other small villages,&amp;nbsp;which&amp;nbsp;were brought under Indian control after the 1971 war, when the Indian army pushed the Pakistani soldiers past the mountains towering the&amp;nbsp;Nubra&amp;nbsp;Valley.&amp;nbsp;Turtuk&amp;nbsp;lies at the extreme corner of the Indian border, and hence its accessibility is a challenge.&acirc;&euro;&macr;Although the roads are marred by landslides and shooting stones, the&amp;nbsp;3-hour&amp;nbsp;drive from&amp;nbsp;Hunder&amp;nbsp;to&amp;nbsp;Turtuk&amp;nbsp;is nothing less than exceptional. Throughout the journey, one has the company of&amp;nbsp;Shyok, as well as the vistas, that define the barrenness which is characteristic of&amp;nbsp;Ladakh. Drive back to our camp&amp;nbsp;for an overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492115,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224077\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224078\",\"Title\":\"Nubra Valley to Pangong Lake (170 Kms \\/ 7 Hrs)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Post breakfast&acirc;&euro;&macr;we&amp;nbsp;drive towards&acirc;&euro;&macr;Pangong&amp;nbsp;Tso&acirc;&euro;&macr;via&amp;nbsp;&lt;strong&gt;Agham&amp;nbsp;&amp;amp;&amp;nbsp;Shyok&amp;nbsp;Valley&lt;\\/strong&gt;. Some of the road patches in areas are extremely tough (towards&amp;nbsp;Nubra&amp;nbsp;side) in terms of road conditions but no doubt the journey is very scenic!&acirc;&euro;&macr; Later after crossing this adventurous&amp;nbsp;part&amp;nbsp;we drive further towards&amp;nbsp;&lt;strong&gt;Durbuk&amp;nbsp;&amp;amp;&amp;nbsp;Tangtse&lt;\\/strong&gt;&amp;nbsp;for&amp;nbsp;Pangong&amp;nbsp;you pass through a few small villages of&amp;nbsp;Changthang&amp;nbsp;and finally, you can have a sudden view of the&amp;nbsp;&lt;strong&gt;Pangong&amp;nbsp;Lake&lt;\\/strong&gt;&amp;nbsp;situated at 14,000 feet (4,267 m).&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This famous blue brackish Lake of&amp;nbsp;Pangong&amp;nbsp;is 5\\/6&amp;nbsp;Kms&amp;nbsp;wide and over 133&amp;nbsp;Kms&amp;nbsp;long with half of&amp;nbsp;its&amp;nbsp;running the other side of the &amp;quot;&lt;strong&gt;Indo China Border&amp;quot;&lt;\\/strong&gt;. One rarely feels so close to nature and environment and the scenery is unforgettable. After the success of 3 Idiots, this beautiful natural location has attracted more tourists from all over the world. Upon arrival, we check-in at our Camp&amp;nbsp;near&amp;nbsp;Pangong&amp;nbsp;Lake.&amp;nbsp;Dinner &amp;amp; Overnight at the Camp.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492249,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7257,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7256,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3583,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224079\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224080\",\"Title\":\"Pangong Lake to Leh via Changla (140 Kms \\/ 6 Hrs)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning at leisure to explore the beauty of&amp;nbsp;Pangong&amp;nbsp;lake and later,&amp;nbsp;we drive back to&amp;nbsp;Leh&amp;nbsp;via&acirc;&euro;&macr;&lt;strong&gt;Changla&amp;nbsp;Pass&lt;\\/strong&gt;&amp;nbsp;(5486&amp;nbsp;Mtrs).&acirc;&euro;&macr;En route,&amp;nbsp;visit&acirc;&euro;&macr;Thiksey,&acirc;&euro;&macr;an impressive complex rising tier upon tier on a hill above the village.&amp;nbsp;On&amp;nbsp;another 5&amp;nbsp;Kms&amp;nbsp;Driving through a picturesque landscape, we reach &acirc;&euro;&macr;&lt;strong&gt;Shey&amp;nbsp;Palace&lt;\\/strong&gt;,&amp;nbsp;the&amp;nbsp;ancient capital of&amp;nbsp;Ladakh&amp;nbsp;to witness the ancient glory. Later, visit&amp;nbsp;the &lt;strong&gt;3&amp;nbsp;Idiots Rancho School.&lt;\\/strong&gt;&acirc;&euro;&macr; Drive further to&amp;nbsp;Leh&amp;nbsp;and check-in at our hotel for&amp;nbsp;dinner and overnight&amp;nbsp;stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492114,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3577,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2644,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224081\",\"Title\":\"Departure Leh \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, check out and transfer to Airport to catch the flight for your onward Destination.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31500\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"29999.55\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":30000,\"priceDoubleOcc\":\"29999.55\",\"priceSingleOcc\":44999.85,\"priceExtraBed\":\"29999.55\",\"priceWithoutBed\":\"24999.45\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"29999.55\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31500\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28571.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-10\",\"To\":\"2022-06-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-16\",\"To\":\"2022-06-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-22\",\"To\":\"2022-06-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-28\",\"To\":\"2022-06-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-04\",\"To\":\"2022-07-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-22\",\"To\":\"2022-07-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-28\",\"To\":\"2022-07-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-04\",\"To\":\"2022-08-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-10\",\"To\":\"2022-08-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-22\",\"To\":\"2022-08-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":28571,\"priceDoubleOcc\":\"28571.00\",\"priceSingleOcc\":42857,\"priceExtraBed\":\"28571.00\",\"priceWithoutBed\":\"23809.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"28571.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30&amp;nbsp;Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions&amp;nbsp;as per booking forms&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Snow Points Not Included&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rates are subject to change&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entry Tickets to be paid by Clients Directly&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Leh&amp;nbsp;:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Shanti Stupa&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hall of Fame (A Museum developed by the Indian Army)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kali Mata temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gurudwara&amp;nbsp;Patthar&amp;nbsp;sahib&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Magnetic Hill&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hemis&amp;nbsp;Monastery&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Thiksey&amp;nbsp;Monastery&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rancho School&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shey&amp;nbsp;palace&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sindhu&amp;nbsp;Ghat&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;River Rafting (Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Pangong&amp;nbsp;Lake :&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Pangong&amp;nbsp;Lake&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Idiot Shooting Point&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Changla&amp;nbsp;Pass&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Nubra&amp;nbsp;Valley :&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Khardongla&amp;nbsp;pass&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camel ride (On your own)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Diskit&amp;nbsp;&amp;amp;&amp;nbsp;Hunder&amp;nbsp;Monasteries&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Turtuk&amp;nbsp;Day Trip&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Breakfasts at the hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05&amp;nbsp;Lunches&amp;nbsp;(Packed Lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06 Dinners at the hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All transfers by A\\/C&amp;nbsp;Innova&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9346\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9347\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"224072\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[224072],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224073\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[224073],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224074\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[224074],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224075\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[224075],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224076\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[224076],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224077\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[224077],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224078\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[224078],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224079\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[224079],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224080\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[224080],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224081\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[224081],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"15229\":{\"CityName\":\"Leh\",\"FromDate\":{\"20220516\":{\"FromDate\":\"2022-05-16\",\"FromDateDMY\":\"16\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220522\":{\"FromDate\":\"2022-05-22\",\"FromDateDMY\":\"22\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220528\":{\"FromDate\":\"2022-05-28\",\"FromDateDMY\":\"28\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220604\":{\"FromDate\":\"2022-06-04\",\"FromDateDMY\":\"04\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220610\":{\"FromDate\":\"2022-06-10\",\"FromDateDMY\":\"10\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220616\":{\"FromDate\":\"2022-06-16\",\"FromDateDMY\":\"16\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220622\":{\"FromDate\":\"2022-06-22\",\"FromDateDMY\":\"22\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220628\":{\"FromDate\":\"2022-06-28\",\"FromDateDMY\":\"28\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220704\":{\"FromDate\":\"2022-07-04\",\"FromDateDMY\":\"04\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220710\":{\"FromDate\":\"2022-07-10\",\"FromDateDMY\":\"10\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220716\":{\"FromDate\":\"2022-07-16\",\"FromDateDMY\":\"16\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220722\":{\"FromDate\":\"2022-07-22\",\"FromDateDMY\":\"22\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220728\":{\"FromDate\":\"2022-07-28\",\"FromDateDMY\":\"28\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220804\":{\"FromDate\":\"2022-08-04\",\"FromDateDMY\":\"04\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220810\":{\"FromDate\":\"2022-08-10\",\"FromDateDMY\":\"10\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220816\":{\"FromDate\":\"2022-08-16\",\"FromDateDMY\":\"16\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220817\":{\"FromDate\":\"2022-08-17\",\"FromDateDMY\":\"17\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220822\":{\"FromDate\":\"2022-08-22\",\"FromDateDMY\":\"22\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220828\":{\"FromDate\":\"2022-08-28\",\"FromDateDMY\":\"28\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220904\":{\"FromDate\":\"2022-09-04\",\"FromDateDMY\":\"04\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220910\":{\"FromDate\":\"2022-09-10\",\"FromDateDMY\":\"10\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220916\":{\"FromDate\":\"2022-09-16\",\"FromDateDMY\":\"16\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220922\":{\"FromDate\":\"2022-09-22\",\"FromDateDMY\":\"22\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220928\":{\"FromDate\":\"2022-09-28\",\"FromDateDMY\":\"28\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Leh,Nubra,Pangong','Leh,Ladakh,Indian Subcontinent,North India,India,Nubra,Jammu and kashmir,Pangong,Sham Valley,Khardongla,Hunder,Turtuk',NULL,'15229,35282,35281',28571,30000,6,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-09-28 00:00:00','2022-09-28 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-leh-ladakh-2022',NULL,NULL,NULL,0),(28,31470,1,12577,1,0,0,'Honeymoon,Family,Hill Station,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31470,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_kashmir_super_saver_2022_1642428883.jpg\",\"BookingValidUntill\":\"2022-05-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Jammu &amp;amp; Kashmir&amp;nbsp;is fast developing as a tourist destination although it is advisable to check the political conditions in the state before your travel owing to sudden spurts of unrest and chaos. Mountainous Trekking and the beautiful snowy hill stations are popular amongst tourists.&amp;nbsp;Kashmir&amp;nbsp;is also home to many temples, pilgrimages and monasteries making it a religious destination for pilgrimages too. Other than this, you can even take part in many adventures and sports in certain areas if weather permits. After all the activities, you can unwind by relaxing in the many gardens and the serene houseboats on the pristine lakes. On the whole, our&amp;nbsp;Kashmir tour Packages&amp;nbsp;will offer you an all-round vacation which will leave you relaxed and refreshed, just what a holiday should do to you!&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Srinagar\",\"SourcePlaceSysId\":25897,\"AgencyName\":\"\",\"Name\":\"Ex. Kashmir Super Saver 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-05-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491340,\"Name\":\"Hotel Pearl Continental\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0853658\",\"Long\":\"74.8638739\",\"Address\":\"shalimar road chandpora, Harwan Rd, Srinagar, Jammu and Kashmir 191123\"},\"Images\":{\"Image\":[{\"ImagId\":4820140,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_01640784524.jpg\"},{\"ImagId\":4820141,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_11640784524.jpg\"},{\"ImagId\":4820142,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_21640784524.jpg\"},{\"ImagId\":4820143,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_31640784524.jpg\"}]},\"CityId\":25897,\"Brief\":\"&lt;p&gt;Hotel Pearl Continental is your home away from home in Srinagar. An opulent boutique property located at Shalimar in the scenic Srinagar, Pearl Continental, takes in 30 Luxurious rooms with modern amenities offering the ultimate in comfort and style.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_f871ad7c2a822358267590d15e54e79e1640784524.jpg\",\"AccoAminitiesMask\":\"111001000100111000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1928,\"Title\":\"Zabarwan Range\",\"Description\":\"The Zabarwan Range is a short (20 mi (32 km) long) sub-mountain range between Pir Panjal and Great Himalayan Range in the central part of the Kashmir Valley in the state of Jammu and Kashmir in India.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1318\\/thumb\\/Zabarwan Range_147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":16971,\"Title\":\"Himalayan Lakes\",\"Description\":\"The city of Srinagar is popular across the globe for its enticing lakes. Paragon of peace, calm, serenity, and tranquility, the lakes of Srinagar are a must visit. Right from the enticing backdrop of the lakes to a stay in decorated Shikaras on the lake, Golden Triangle Tour with Srinagar will let you experience the best.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Himalayan_Lakes_25897_1594374514.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":179,\"Title\":\"Betaab Valley\",\"Description\":\"The Betaab Valley in Pahalgam is a breathtaking combination of picturesque surroundings that is encircled by mountains full of tall deodar trees and pine forests, with the Lidder River flowing right through it. The valley is located at a distance of 15 kilometres from Pahalgam in the Anantnag district of Jammu and Kashmir in northern India. The valley got its more recent and attractive name from a famous Bollywood movie that was shot here and has been attracting a large number of tourists ever this. The Bollywood connect of the valley, coupled with the scenic views that the place offers, have made the area a popular tourist destination.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1319\\/thumb\\/Betaab Valley_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":296,\"Title\":\"Chandanwari Valley\",\"Description\":\"Chandanwari, located 15 km from Pahalgam, is the starting point of the famous Amarnath Yatra. It is also famous for the snow sledging on a snow bridge. The place is perfect to enjoy a picnic with your family and enjoy the natural beauty.\\r\\nPahalgam is a popular hill station in Anantnag district of Jammu &amp;amp; Kashmir. It is a very famous tourist destination, and many tourists visit the place every year. It is located on the banks of Lidder River. Chandanwari is best recognised as the place where the Bollywood movie Betaab was shot.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0144741,\"Long\":75.3186241,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/799\\/thumb\\/Chandanwari_749.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2168,\"Title\":\"Pahalgam \\u00e2\\u20ac\\u201c The valley of shepherds\",\"Description\":\"The Pahalgam valley is situated at the confluence of the Seshnag Lake and the Lidder River. Pahalgam is basically a cluster of eight villages. The word Pahalgam literally means, the Valley of Shepherds.\\r\\n\\r\\nTours to Pahalgam is associated with the annual Amaranth Yatra. The region is extremely popular among tourists for its outdoor activities like Fishing, Horse Riding, Golf and Trekking. Pahalgam is a popular take off point for treks to the Kolahoi glacier, to several high altitude lakes, to the Amarnath cave and to Sonmarg.\\r\\n\\r\\nPahalgam offers several tourist attractions. Tours and travel to Pahalgam usually include a visit the Baisaran Meadow that is surrounded by pine forests on all sides. Tours to  Pahalgam should definitely include a visit to the village of Mamal that is significant as it has an ancient Shiva temple. It is believed that this is Kashmir&#039;s oldest temple.\\r\\n\\r\\nThere are excellent Fishing opportunities at the Lidder River. Tourists are issued permits to go fishing on the Lidder River. These permits are issued for maximum three days at a time. Most tours and travel packages to Pahalgam offer opportunities to tourists for outdoor activities such as fishing. There are ample opportunities for tourists to enjoy Horse Riding upto the Thajwas glacier.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501225253.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":587,\"Title\":\"Gondola Ride\",\"Description\":\"Gulmarg Gondola in Gulmarg, Jammu and Kashmir is the world&amp;#039;s second highest operating cable car since the closure in 2008 of the M&amp;eacute;rida cable car in Venezuela and the opening in 2008 of the Dagu Glacie\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/438\\/thumb\\/Gondola Ride_723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":612,\"Title\":\"Gulmarg City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3722\\/thumb\\/Gulmarg City Tour_538.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":883,\"Title\":\"Khilanmarg\",\"Description\":\"Khilanmarg in Jammu &amp;amp; Kashmir state is a picturesque and small valley, that is about a 6-km walk from the Gulmarg town center. This beautiful meadow, covered with beautiful flowers in the spring, becomes the site for Gulmarg&amp;rsquo;s winter ski runs and also offers a fine viewing point of the surrounding snow capped peaks and over the mesmerizing Kashmir Valley. The 600-metre ascent from Gulmarg to Khilanmarg can be a very muddy climb due to melting snow in the early spring season. The effort is however rewarded with a sweeping and memorable view of the great Himalayas from the mighty Nanga Parbat to the twin giants, the 7,100-metre peaks of Nun and Kun in the southeast direction. The best time to visit Khilanmarg is between May and September while for skiing and other winter activities the best months are from November to February.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1190\\/thumb\\/Mountain Khilanmarg_999.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1198,\"Title\":\"Nanga Parbat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1384\\/thumb\\/Nanga Parbat_660.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":980,\"Title\":\"Local Crafts Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6319\\/thumb\\/Local Crafts Market_368.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"223850\",\"Title\":\"Day 01 - Arrival at Srinagar\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival, meet our representative and transfer to the hotel. Spend the day at leisure on boulevard road which is one of the most famous&amp;nbsp;roads&amp;nbsp;in Srinagar for tourists and is situated around the&amp;nbsp;Dal lake&amp;nbsp;surrounded by&amp;nbsp;&lt;strong&gt;Zabarwan&amp;nbsp;mountain ranges&lt;\\/strong&gt;, also enjoy&amp;nbsp;01-hour&amp;nbsp;&lt;strong&gt;shikara ride&lt;\\/strong&gt; in &lt;strong&gt;dal Lake&lt;\\/strong&gt; at Nehru Park on boulevard road. Dinner and overnight stay in&amp;nbsp;Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":393,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1579,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1928,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223851\",\"Title\":\"Srinagar - Sonmarg &acirc;&euro;&ldquo; Srinagar (86 kms \\/ 3:30 hours approximately)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast leave with full-day excursion for&amp;nbsp;&lt;strong&gt;Sonmarg&amp;nbsp;&lt;\\/strong&gt;&amp;ldquo;The meadow of gold. Situated at an altitude of 9000 Ft.&amp;nbsp;Sonmarg&amp;nbsp;is also called &amp;ldquo;The meadow of gold&amp;rdquo;.&amp;nbsp;Sonmarg&amp;nbsp;lies in Sindh Valley streamed with flowers and surrounded by mountains. The place is also the base for some interesting treks to the high altitude of &lt;strong&gt;Himalayan Lake&lt;\\/strong&gt;. Ponies can be hired for the trip up to&amp;nbsp;&lt;strong&gt;Thajiwas&amp;nbsp;glacier&lt;\\/strong&gt;, which is a major local attraction during the summer. You may also visit &lt;strong&gt;Zero point&lt;\\/strong&gt; by hiring a union-operated vehicle to witness the glacier mountains at the famous point. Packed lunch will be served during in the afternoon. Drive back from&amp;nbsp;Sonmarg&amp;nbsp;to Srinagar. Dinner and overnight stay in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":16971,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223852\",\"Title\":\"Srinagar - Pahalgam - Srinagar (85 kms \\/ 2:30 hours approximately)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After Breakfast, Drive to&amp;nbsp;&lt;strong&gt;Pahalgam&amp;nbsp;&amp;ldquo;Valley of Shepherds&amp;rdquo;&lt;\\/strong&gt;. On arrival, enjoy nature and admire the beauty of this quiet place and be in awe of the serene surroundings. Best place for Honeymoon Couple&amp;rsquo;s surrounded by snow-clad mountains with dense forest of pine and&amp;nbsp;devdar&amp;nbsp;trees, vast meadows, and Fresh Fast running river. The natural beauty makes it a popular hill station in India. You can go trekking along the mountainous path and explore the beauty on the way. Enjoy visits by union-operated vehicles to places like&amp;nbsp;&lt;strong&gt;Chandanwadi,&amp;nbsp;Betaab&amp;nbsp;Valley, and Aru valle&lt;\\/strong&gt;y to witness the different views and river sites. if you are an avid nature lover you may take pleasure in a peaceful walk along the&amp;nbsp;River&amp;nbsp;Lidder.&amp;nbsp;Pahalgam&amp;nbsp;is famous for some trekking routes also &amp;amp; is the base camp for&amp;nbsp;Amarnath&amp;nbsp;Pilgrimage. Late in the&amp;nbsp;evening, Drive&amp;nbsp;Back to Srinagar for dinner and overnight stay in a hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":78,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":179,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":296,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2168,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223853\",\"Title\":\"Srinagar &acirc;&euro;&ldquo; Doodhpathri - Srinagar\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;&lt;strong&gt;Doodhpathri&amp;nbsp;&lt;\\/strong&gt;or &amp;ldquo;Valley of Milk&amp;rdquo;, situated 40 kms from Srinagar is definitely an unexplored place in Kashmir. You will certainly love the green meadows, pristine environment, and serenity. It took us about an hour from Srinagar by cab.&amp;nbsp; A river cascading down the pebbles is a walk of 5 minutes from the parking lot. You will definitely meet sphered who will be keeping a watchful eye on his flock grazing on the verdant meadows and some cattle and horses. On reaching the river, you can soak your feet in the clear and icy water. The best thing to enjoy here is the ride on horses to the bottom of snow-covered mountains and trekking. In the evening, Drive back from&amp;nbsp;Doodhpathri&amp;nbsp;to Srinagar. Overnight stay in&amp;nbsp;hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223854\",\"Title\":\"Srinagar - Gulmarg - Srinagar (56 Kms \\/ 2:00 hours approximately)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast drive to &lt;strong&gt;Gulmarg &lt;\\/strong&gt;&amp;ldquo;Meadow of Flowers&amp;rdquo; 2730 Mts. above sea level. The distance of 56 kms will be covered in about 2:00 hrs. Gulmarg has one of the best Ski slopes in the world and the highest golf course in the world with 18 holes. Later&amp;nbsp;visit the local market in Gulmarg.&amp;nbsp; One can also have the view of &lt;strong&gt;Nanga&amp;nbsp;Parbhat&lt;\\/strong&gt;&amp;nbsp;if weather permits. The view enroute from&amp;nbsp;Tangmarg&amp;nbsp;to Gulmarg is fascinating. One can also have a short trek up to &lt;strong&gt;Khilanmarg&amp;nbsp;&lt;\\/strong&gt;which can be covered in about 3 to 4 hrs or enjoy the scenic view of&amp;nbsp;Kongdori&amp;nbsp;on a Cable Car Known as a &lt;strong&gt;Gondola&lt;\\/strong&gt; till phase 1. One can buy the ticket to phase 2 to further confront the glaciers and indulge in some snow activities. Packed lunch will be served during the day. Drive Back to Srinagar in the evening for dinner and overnight stay in a hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":587,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":612,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":883,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1198,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223855\",\"Title\":\"Srinagar Local Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, visit famous &lt;strong&gt;Mughal Gardens,&amp;nbsp;Chashme Shahi &amp;ldquo;Royal Spring&amp;rdquo;, Shalimar &amp;ldquo;Garden of Love&amp;rdquo;, Nishat Garden &amp;ldquo;Garden of Pleasure, Shankaracharya Temple&lt;\\/strong&gt;. Post lunch, you may also go Sightseeing of&amp;nbsp;&lt;strong&gt;Badamwari&amp;nbsp;Garden&lt;\\/strong&gt; in Srinagar. Visit the Local handicraft showroom for hand-knotted especially silken shawls, carpet, and jewelry ornaments. Shopping at Lal chowk if time permits to end the day with a lot of photographs of memorable gardens. Dinner and overnight stay in&amp;nbsp;hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":309,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":980,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1242,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1560,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1563,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223856\",\"Title\":\"Srinagar- Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, enjoy the morning in Srinagar and get ready for transfer to the airport \\/ Railway Station to board your scheduled flight for onward destination.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31470\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16999.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"16999.50\",\"priceSingleOcc\":25499.25,\"priceExtraBed\":\"16999.50\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31470\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16190.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-16\",\"To\":\"2022-02-16\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-22\",\"To\":\"2022-02-22\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-28\",\"To\":\"2022-02-28\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-18\",\"To\":\"2022-03-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-30\",\"To\":\"2022-03-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-12\",\"To\":\"2022-04-12\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-18\",\"To\":\"2022-04-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-24\",\"To\":\"2022-05-24\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-30\",\"To\":\"2022-05-30\",\"Currency\":1,\"priceTripleOcc\":16190,\"priceDoubleOcc\":\"16190.00\",\"priceSingleOcc\":24285,\"priceExtraBed\":\"16190.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"16190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30 Passengers group size will have Driver cum guide&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions as per booking forms.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rates are subject to change&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entry Tickets to be paid by Clients Directly.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Surcharge applicable on certain dates.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Srinagar&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Shalimar&amp;nbsp;Bagh&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nishant&amp;nbsp;Bagh&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shikara&amp;nbsp;Ride&amp;nbsp;(1 Hour)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chashme&amp;nbsp;Shahi&amp;nbsp;Gardens&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shankaracharya&amp;nbsp;temple&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Sonmarg:&lt;\\/strong&gt;&amp;nbsp;(Day Trip &amp;ndash; If Operative)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Thajiwas&amp;nbsp;Glacier&amp;nbsp;(On your own)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Zero Point&amp;nbsp;(On your own)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Pahalgam&lt;\\/strong&gt;:&amp;nbsp;(Day Trip)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Aru&amp;nbsp;Valley&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Betaab&amp;nbsp;valley&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chandanwari&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Doodhpathri&lt;\\/strong&gt;: (Day Trip)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Doodhpatri&amp;nbsp;hills&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shaliganga&amp;nbsp;River&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Taungnar&amp;nbsp;valley&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Gulmarg&lt;\\/strong&gt;:&amp;nbsp;(Day Trip)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Golf Course&amp;nbsp;(Photo stop)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gondola Ride (Phase 1)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals&lt;\\/strong&gt;: (Pure Veg.\\/Jain&amp;nbsp;Kitchen By&amp;nbsp;Maharaj)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05&amp;nbsp;Lunches&amp;nbsp;(Packed Lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06 Dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All&amp;nbsp;Transfers&amp;nbsp;by A\\/C coach\\/tempo traveler&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Note:&amp;nbsp; A\\/C will not be operated on hilly area as per Govt. norms&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9344\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9345\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"223850\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[223850],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223851\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[223851],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223852\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[223852],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223853\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223853],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223854\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[223854],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223855\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[223855],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223856\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[223856],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"25897\":{\"CityName\":\"Srinagar\",\"FromDate\":{\"20220205\":{\"FromDate\":\"2022-02-05\",\"FromDateDMY\":\"05\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220210\":{\"FromDate\":\"2022-02-10\",\"FromDateDMY\":\"10\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220216\":{\"FromDate\":\"2022-02-16\",\"FromDateDMY\":\"16\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220222\":{\"FromDate\":\"2022-02-22\",\"FromDateDMY\":\"22\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220228\":{\"FromDate\":\"2022-02-28\",\"FromDateDMY\":\"28\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220306\":{\"FromDate\":\"2022-03-06\",\"FromDateDMY\":\"06\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220312\":{\"FromDate\":\"2022-03-12\",\"FromDateDMY\":\"12\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220318\":{\"FromDate\":\"2022-03-18\",\"FromDateDMY\":\"18\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220324\":{\"FromDate\":\"2022-03-24\",\"FromDateDMY\":\"24\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220330\":{\"FromDate\":\"2022-03-30\",\"FromDateDMY\":\"30\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220406\":{\"FromDate\":\"2022-04-06\",\"FromDateDMY\":\"06\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220412\":{\"FromDate\":\"2022-04-12\",\"FromDateDMY\":\"12\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220418\":{\"FromDate\":\"2022-04-18\",\"FromDateDMY\":\"18\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220424\":{\"FromDate\":\"2022-04-24\",\"FromDateDMY\":\"24\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220430\":{\"FromDate\":\"2022-04-30\",\"FromDateDMY\":\"30\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220507\":{\"FromDate\":\"2022-05-07\",\"FromDateDMY\":\"07\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220513\":{\"FromDate\":\"2022-05-13\",\"FromDateDMY\":\"13\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220518\":{\"FromDate\":\"2022-05-18\",\"FromDateDMY\":\"18\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220524\":{\"FromDate\":\"2022-05-24\",\"FromDateDMY\":\"24\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220530\":{\"FromDate\":\"2022-05-30\",\"FromDateDMY\":\"30\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Srinagar','Srinagar,Jammu and kashmir,Indian Subcontinent,North India,India,Gulmarg,Pahalgam,Sonmarg,Doodhpathri',NULL,'25897',16190,17000,6,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-05-30 00:00:00','2022-05-30 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-kashmir-super-saver-2022',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (29,31460,1,12577,0,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31460,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_dashing_darjeeling_2022_1642419465.jpg\",\"BookingValidUntill\":\"2022-12-24\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Darjeeling is a town in India&amp;#39;s West Bengal state, in the Himalayan foothills. Once a summer resort for the British Raj elite, it remains the terminus of the narrow-gauge Darjeeling Himalayan Railway, or &amp;ldquo;Toy Train,&amp;rdquo; completed in 1881. It&amp;#39;s famed for the distinctive black tea grown on plantations that dot its surrounding slopes. Its backdrop is Mt. Kanchenjunga, among the world&amp;rsquo;s highest peaks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Gangtok is the capital of the mountainous northern Indian state of Sikkim. Established as a Buddhist pilgrimage site in the 1840s, the city became the capital of an independent monarchy after British rule ended, but joined India in 1975. Today, it remains a Tibetan Buddhist center and a base for hikers organizing permits and transport for treks through Sikkim&amp;rsquo;s Himalayan mountain ranges.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Lachung is a mountain village close to the Tibetan border, in the northeastern Indian state of Sikkim. It&amp;#39;s divided by the Lachung River. The village is home to the 19th-century Buddhist Lachung Monastery, surrounded by apple orchards. Nearby, the Yumthang Valley&amp;#39;s Shingba Rhododendron Sanctuary protects many species of rhododendron. The valley is also known for its waterfalls, pine forests, and hot springs.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Pelling is a small town in the northeastern Indian state of Sikkim, at the foothills of Mount Khangchendzonga. The late-17th-century Buddhist Sanga Choling Monastery has mountain views. Pemayangtse Monastery features wall paintings, sculptures, and a gold-plated statue of Guru Padsambhava. Overlooking a valley, the 17th-century Rabdentse Palace, now in ruins, still has evidence of the king&amp;rsquo;s bedroom and kitchen.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Bagdogra\",\"DestinationPlacesSysId\":2012,\"SourcePlaces\":\"Bagdogra\",\"SourcePlaceSysId\":2012,\"AgencyName\":\"\",\"Name\":\"Ex. Dashing Darjeeling 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-24\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":10106,\"Title\":\"Gangtok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491877,\"Name\":\"Cygnett Inn La Maison\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.3133013\",\"Long\":\"88.5969093\",\"Address\":\"NH10, Tadong, Gangtok, Sikkim 737102, India\"},\"Images\":{\"Image\":[{\"ImagId\":4820246,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491877\\/4913_01642078525.jpg\"},{\"ImagId\":4820247,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491877\\/4913_11642078525.jpg\"},{\"ImagId\":4820248,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491877\\/4913_21642078525.jpg\"},{\"ImagId\":4820249,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491877\\/4913_31642078525.jpg\"}]},\"CityId\":10106,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491877\\/4913_4aeafc591e208b3118846db66c3d099b1642078525.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":95,\"Title\":\"Baba Harbhajan Singh Memorial Temple\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh (30 August 1946 &amp;ndash; 4 October 1968) was an Indian army soldier who died in 1968 near the Nathu La in eastern Sikkim, India. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honour. He was accorded the status of saint by believers who refer to him as the Baba (saintly father).\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Baba_Harbhajan_Singh_Memorial__10106_1496747022.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":112,\"Title\":\"Bakthang Waterfalls\",\"Description\":\"While the height of the fall isn&amp;#039;t much, it&amp;#039;s the width of the fall that makes it so beautiful. The source of the water is at Ratey Chu. The flowing water falls over a canopy of green creepers. It&amp;#039;s a wonderful sight to take pictures.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3389356,\"Long\":88.6065035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5412\\/thumb\\/Bakthang Waterfalls_812.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":546,\"Title\":\"Ganesh Tok\",\"Description\":\"Ganesh Tok is a loved tourist spot in Gangtok and a small temple dedicated to Lord Ganesha. It is situated on top of a hill thereby giving scenic views to the tourists who come here. The Kanchenjunga hill can be seen in its true form of glory from here and is at its best especially in the morning. The viewpoint is situated at a distance of 6500 m offers stunning views of the mountains covered in snow. The temple is however so small that it can only fit one person at a time. The place takes you a step closer to nature with its surreal surroundings and comforting ambience.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3389356,\"Long\":88.6065035,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Ganesh_Tok_10106_1549026202.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2266,\"Title\":\"Nathu La\",\"Description\":\"Nathu la, One of the highest drive able roads in the world, is a mountain pass in the Himalayan peaks that co-joins Sikkim and China. Nathu la Pass is situated on the Indo-Chinese border and is one of the biggest tourist attractions in India. Tourists flock here every year for trekking in the valley and enjoying the scenic beauty. It also offers an opportunity to see beautiful snow peaks encircling the area.  It&amp;#039;s closed on Mondays and Tuesdays for public.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3866112,\"Long\":88.8308771,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1502444794.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2181,\"Title\":\"Tsomgo lake\",\"Description\":\"Tsomgo Lake, also known Changu Lake, is a glacial lake in the East Sikkim district, some 40 kms from the capital Gangtok. Located at an elevation of 3,753 m (12,313 ft), the lake remains frozen during the winter season. The lake surface reflects different colors with change of seasons and is held in great reverence by the local Sikkimese people. Buddhist monks prognosticate after studying the changing colors of the lake.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3745576,\"Long\":88.7632283,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501488816.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":831,\"Title\":\"Kanchenjunga Mountain\",\"Description\":\"These mountains offer a breath taking view of the surrounding areas. One can also enjoy the unforgettable view of the Sun Rise and Sun Set and admire the beauty of nature.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0395315,\"Long\":88.2801785,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/896\\/thumb\\/Kanchenjunga Mountain_817.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3725,\"Title\":\"Bhim Nala Waterfall\",\"Description\":\"Naga waterfalls. Between Mangan and Chungthang is another waterfall called Naga. Bhim Nala waterfalls. This waterfall is on the way between Chungthang and Lachung. Situated just next to the road, it looks like a three stage waterfall.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":30.489842,\"Long\":79.171128,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/36_1519314223.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2259,\"Title\":\"Naga Waterfall\",\"Description\":\"You will encounter this awesome water fall enroute to Lachung. It is a popular spot to stop and take a break for pictures and enjoy the Himalayan mountain range view. Views from here are amazing and waterfall itself is very refreshing.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.6890569,\"Long\":88.7429723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502022561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2256,\"Title\":\"Singhik view point\",\"Description\":\"A short walk uphill will take you to the popular Singhik View Point which offers the most magnificent view of Mt. Kanchenjunga and Mt. Siniolchu. Surrounded by lush green hills with the Teesta River flowing below it. Situated at an altitude of over 5000 ft, Singhik view point offers a desired break to the travelers on the way to Lachen or Lachung.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.5156904,\"Long\":88.5541146,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502021760.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2193,\"Title\":\"Yumthang Valley\",\"Description\":\"The Yumthang Valley is a nature sanctuary with river, hot springs, Yaks surrounded by the Himalayan mountains, located at a distance of 150 kilometers from Gangtok. The name Yumthang Valley means &amp;#039;Valley of Flowers&amp;quot; and it doesn&amp;#039;t disappoints. Other than the wonderful views of vast valley of flowers, Yumthang also offers lovely views of the mountain peaks such as Pauhunri and Shundu Tsenpa forming the backdrop of the river Teesta. Before entering the Yumthang valley, there is a hot water spring too with medicinal properties.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.8267952,\"Long\":88.6958087,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501494403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2543,\"Title\":\"Darap Village\",\"Description\":\"The word Darap is originated from the limbo word &acirc;&euro;&trade;Tan-lop&acirc;&euro;&trade; which literally means a plain land. Its one of the most beautiful scenery village wherein one can be engaged in milking the cows, gardening, interaction with the local children, learn to make butter and cheese and visit to the 200 year old Limboo traditional house. This ancient structure, with solid mud floors and tar-encrusted ceilings from the constantly burning fire, has been passed down from generation to generation of Nepali Limboo tribesmen.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3063263,\"Long\":88.1862222,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/36_1511612787.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":876,\"Title\":\"Khecheopalri - The Wishing Lake\",\"Description\":\"This religious place is believed to fulfill one&amp;rsquo;s wishes. Khecheopalri Lake is a paradise for nature lovers and trekkers. There are various trekkers&amp;rsquo; outlets and lodging facilities as well if you prefer camping overnight.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3197716,\"Long\":88.2400333,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1151\\/thumb\\/Khecheopalri - The Wishing Lake_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1349,\"Title\":\"Pemayangtse Monastery\",\"Description\":\"The unique feature of the monastery is that there is an intricately carved wooden structure located on the top floor     displaying a heavenly sphere known as &amp;lsquo;Zangdokpalri&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2582\\/thumb\\/Pemayangtse Monastery_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1407,\"Title\":\"Rabdentse Ruins\",\"Description\":\"Rabdentse was the second capital of the former Kingdom of Sikkim.  The old palace and monastery complex are in ruins, and now Archaeological Survey of India.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3197716,\"Long\":88.2400333,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2844\\/thumb\\/Rabdentse Ruins_559.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2207,\"Title\":\"Rimbi Waterfalls\",\"Description\":\"Rimbi Waterfalls is situated along the banks of Rimbi River, famous for the recreational activities like fishing. The waterfall is a great place to click pictures with your loved ones.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3139827,\"Long\":88.1865589,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501499354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":752,\"Title\":\"Japanese Temple\",\"Description\":\"There is a wonderful Japanese temple located at a 10 minutes driving distance from the Darjeeling town center. The temple is also known as the Nipponzan Myohoji Buddhist Temple. ... Close to the temple is the Peace Pagoda that showcases four avatars of Lord Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1040\\/thumb\\/Japanese Temple_99.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1487,\"Title\":\"Ropeway\",\"Description\":\"The Darjeeling Ropeway is a ropeway in the town of Darjeeling in the Indian state of West Bengal. The ropeway is a popular tourist destination in the town.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6049\\/thumb\\/Ropeway_642.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1737,\"Title\":\"Tea Garden\",\"Description\":\"Tea planting in the Indian district of Darjeeling began in 1841 by Archibald Campbell, a civil surgeon of the Indian Medical Service. Campbell was transferred as superintendent of Darjeeling in 1839 from Kathmandu, Nepal. In 1841, he brought seeds of the Chinese tea plant (Camellia sinensis) from Kumaun and began to experiment with tea planting in Darjeeling.The British government also established tea nurseries during that period (1847). Commercial development began during the 1850s.In 1856, the Alubari tea garden was opened by the Kurseong and Darjeeling Tea company,followed by others.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9337226,\"Long\":88.289905,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1039\\/thumb\\/Tea Garden_593.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1782,\"Title\":\"Tibetan Refugee Self Help Center\",\"Description\":\"The Tibetan Refugee Self-Help Centre was started on October 2, 1959. Following the dramatic escape of His Holiness the Dalai Lama during that period of mayhem, thousands of our fellow countrymen, leaving hearth and home, fled into neighboring countries so they could live as free human beings. The overwhelming majority of the refugees had brought nothing with them apart from the clothes they wore and what little provisions they could carry with them as they began the long and difficult trek over the Himalayas.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/297\\/thumb\\/Tibetan Refugee Self Help Center_620.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1786,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is located in Darjeeling, in the Indian State of West Bengal, and is the summit of Ghoom, the highest railway station in the Darjeeling Himalayan Railway\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9957499,\"Long\":88.2783622,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/895\\/thumb\\/Tiger Hill_949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":34559,\"Title\":\"Lachung\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491880,\"Name\":\"Etho Metho by RightClique\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Sikkim 737120\"},\"Images\":{\"Image\":[{\"ImagId\":4820250,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491880\\/4913_01642078734.png\"},{\"ImagId\":4820251,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491880\\/4913_11642078734.jpg\"}]},\"CityId\":34559,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491880\\/4913_c7737294f4fe0c426b03d37d13adcc231642078734.png\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":95,\"Title\":\"Baba Harbhajan Singh Memorial Temple\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh (30 August 1946 &amp;ndash; 4 October 1968) was an Indian army soldier who died in 1968 near the Nathu La in eastern Sikkim, India. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honour. He was accorded the status of saint by believers who refer to him as the Baba (saintly father).\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Baba_Harbhajan_Singh_Memorial__10106_1496747022.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":112,\"Title\":\"Bakthang Waterfalls\",\"Description\":\"While the height of the fall isn&amp;#039;t much, it&amp;#039;s the width of the fall that makes it so beautiful. The source of the water is at Ratey Chu. The flowing water falls over a canopy of green creepers. It&amp;#039;s a wonderful sight to take pictures.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3389356,\"Long\":88.6065035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5412\\/thumb\\/Bakthang Waterfalls_812.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":546,\"Title\":\"Ganesh Tok\",\"Description\":\"Ganesh Tok is a loved tourist spot in Gangtok and a small temple dedicated to Lord Ganesha. It is situated on top of a hill thereby giving scenic views to the tourists who come here. The Kanchenjunga hill can be seen in its true form of glory from here and is at its best especially in the morning. The viewpoint is situated at a distance of 6500 m offers stunning views of the mountains covered in snow. The temple is however so small that it can only fit one person at a time. The place takes you a step closer to nature with its surreal surroundings and comforting ambience.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3389356,\"Long\":88.6065035,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Ganesh_Tok_10106_1549026202.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2266,\"Title\":\"Nathu La\",\"Description\":\"Nathu la, One of the highest drive able roads in the world, is a mountain pass in the Himalayan peaks that co-joins Sikkim and China. Nathu la Pass is situated on the Indo-Chinese border and is one of the biggest tourist attractions in India. Tourists flock here every year for trekking in the valley and enjoying the scenic beauty. It also offers an opportunity to see beautiful snow peaks encircling the area.  It&amp;#039;s closed on Mondays and Tuesdays for public.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3866112,\"Long\":88.8308771,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1502444794.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2181,\"Title\":\"Tsomgo lake\",\"Description\":\"Tsomgo Lake, also known Changu Lake, is a glacial lake in the East Sikkim district, some 40 kms from the capital Gangtok. Located at an elevation of 3,753 m (12,313 ft), the lake remains frozen during the winter season. The lake surface reflects different colors with change of seasons and is held in great reverence by the local Sikkimese people. Buddhist monks prognosticate after studying the changing colors of the lake.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3745576,\"Long\":88.7632283,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501488816.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":831,\"Title\":\"Kanchenjunga Mountain\",\"Description\":\"These mountains offer a breath taking view of the surrounding areas. One can also enjoy the unforgettable view of the Sun Rise and Sun Set and admire the beauty of nature.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0395315,\"Long\":88.2801785,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/896\\/thumb\\/Kanchenjunga Mountain_817.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3725,\"Title\":\"Bhim Nala Waterfall\",\"Description\":\"Naga waterfalls. Between Mangan and Chungthang is another waterfall called Naga. Bhim Nala waterfalls. This waterfall is on the way between Chungthang and Lachung. Situated just next to the road, it looks like a three stage waterfall.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":30.489842,\"Long\":79.171128,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/36_1519314223.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2259,\"Title\":\"Naga Waterfall\",\"Description\":\"You will encounter this awesome water fall enroute to Lachung. It is a popular spot to stop and take a break for pictures and enjoy the Himalayan mountain range view. Views from here are amazing and waterfall itself is very refreshing.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.6890569,\"Long\":88.7429723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502022561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2256,\"Title\":\"Singhik view point\",\"Description\":\"A short walk uphill will take you to the popular Singhik View Point which offers the most magnificent view of Mt. Kanchenjunga and Mt. Siniolchu. Surrounded by lush green hills with the Teesta River flowing below it. Situated at an altitude of over 5000 ft, Singhik view point offers a desired break to the travelers on the way to Lachen or Lachung.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.5156904,\"Long\":88.5541146,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502021760.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2193,\"Title\":\"Yumthang Valley\",\"Description\":\"The Yumthang Valley is a nature sanctuary with river, hot springs, Yaks surrounded by the Himalayan mountains, located at a distance of 150 kilometers from Gangtok. The name Yumthang Valley means &amp;#039;Valley of Flowers&amp;quot; and it doesn&amp;#039;t disappoints. Other than the wonderful views of vast valley of flowers, Yumthang also offers lovely views of the mountain peaks such as Pauhunri and Shundu Tsenpa forming the backdrop of the river Teesta. Before entering the Yumthang valley, there is a hot water spring too with medicinal properties.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.8267952,\"Long\":88.6958087,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501494403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2543,\"Title\":\"Darap Village\",\"Description\":\"The word Darap is originated from the limbo word &acirc;&euro;&trade;Tan-lop&acirc;&euro;&trade; which literally means a plain land. Its one of the most beautiful scenery village wherein one can be engaged in milking the cows, gardening, interaction with the local children, learn to make butter and cheese and visit to the 200 year old Limboo traditional house. This ancient structure, with solid mud floors and tar-encrusted ceilings from the constantly burning fire, has been passed down from generation to generation of Nepali Limboo tribesmen.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3063263,\"Long\":88.1862222,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/36_1511612787.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":876,\"Title\":\"Khecheopalri - The Wishing Lake\",\"Description\":\"This religious place is believed to fulfill one&amp;rsquo;s wishes. Khecheopalri Lake is a paradise for nature lovers and trekkers. There are various trekkers&amp;rsquo; outlets and lodging facilities as well if you prefer camping overnight.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3197716,\"Long\":88.2400333,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1151\\/thumb\\/Khecheopalri - The Wishing Lake_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1349,\"Title\":\"Pemayangtse Monastery\",\"Description\":\"The unique feature of the monastery is that there is an intricately carved wooden structure located on the top floor     displaying a heavenly sphere known as &amp;lsquo;Zangdokpalri&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2582\\/thumb\\/Pemayangtse Monastery_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1407,\"Title\":\"Rabdentse Ruins\",\"Description\":\"Rabdentse was the second capital of the former Kingdom of Sikkim.  The old palace and monastery complex are in ruins, and now Archaeological Survey of India.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3197716,\"Long\":88.2400333,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2844\\/thumb\\/Rabdentse Ruins_559.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2207,\"Title\":\"Rimbi Waterfalls\",\"Description\":\"Rimbi Waterfalls is situated along the banks of Rimbi River, famous for the recreational activities like fishing. The waterfall is a great place to click pictures with your loved ones.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3139827,\"Long\":88.1865589,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501499354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":752,\"Title\":\"Japanese Temple\",\"Description\":\"There is a wonderful Japanese temple located at a 10 minutes driving distance from the Darjeeling town center. The temple is also known as the Nipponzan Myohoji Buddhist Temple. ... Close to the temple is the Peace Pagoda that showcases four avatars of Lord Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1040\\/thumb\\/Japanese Temple_99.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1487,\"Title\":\"Ropeway\",\"Description\":\"The Darjeeling Ropeway is a ropeway in the town of Darjeeling in the Indian state of West Bengal. The ropeway is a popular tourist destination in the town.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6049\\/thumb\\/Ropeway_642.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1737,\"Title\":\"Tea Garden\",\"Description\":\"Tea planting in the Indian district of Darjeeling began in 1841 by Archibald Campbell, a civil surgeon of the Indian Medical Service. Campbell was transferred as superintendent of Darjeeling in 1839 from Kathmandu, Nepal. In 1841, he brought seeds of the Chinese tea plant (Camellia sinensis) from Kumaun and began to experiment with tea planting in Darjeeling.The British government also established tea nurseries during that period (1847). Commercial development began during the 1850s.In 1856, the Alubari tea garden was opened by the Kurseong and Darjeeling Tea company,followed by others.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9337226,\"Long\":88.289905,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1039\\/thumb\\/Tea Garden_593.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1782,\"Title\":\"Tibetan Refugee Self Help Center\",\"Description\":\"The Tibetan Refugee Self-Help Centre was started on October 2, 1959. Following the dramatic escape of His Holiness the Dalai Lama during that period of mayhem, thousands of our fellow countrymen, leaving hearth and home, fled into neighboring countries so they could live as free human beings. The overwhelming majority of the refugees had brought nothing with them apart from the clothes they wore and what little provisions they could carry with them as they began the long and difficult trek over the Himalayas.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/297\\/thumb\\/Tibetan Refugee Self Help Center_620.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1786,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is located in Darjeeling, in the Indian State of West Bengal, and is the summit of Ghoom, the highest railway station in the Darjeeling Himalayan Railway\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9957499,\"Long\":88.2783622,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/895\\/thumb\\/Tiger Hill_949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":21043,\"Title\":\"Pelling\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491955,\"Name\":\"Retreat Crassula Ovata\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.3011724\",\"Long\":\"88.23047319999999\",\"Address\":\"upper pelling, helipad, Pelling City, Sikkim 737113, India\"},\"Images\":{\"Image\":[{\"ImagId\":4820252,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491955\\/4913_01642078818.jpg\"},{\"ImagId\":4820253,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491955\\/4913_11642078818.jpg\"},{\"ImagId\":4820254,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491955\\/4913_21642078818.jpg\"}]},\"CityId\":21043,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491955\\/4913_992889f9bcb1b68724d84c442ab083511642078818.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":95,\"Title\":\"Baba Harbhajan Singh Memorial Temple\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh (30 August 1946 &amp;ndash; 4 October 1968) was an Indian army soldier who died in 1968 near the Nathu La in eastern Sikkim, India. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honour. He was accorded the status of saint by believers who refer to him as the Baba (saintly father).\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Baba_Harbhajan_Singh_Memorial__10106_1496747022.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":112,\"Title\":\"Bakthang Waterfalls\",\"Description\":\"While the height of the fall isn&amp;#039;t much, it&amp;#039;s the width of the fall that makes it so beautiful. The source of the water is at Ratey Chu. The flowing water falls over a canopy of green creepers. It&amp;#039;s a wonderful sight to take pictures.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3389356,\"Long\":88.6065035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5412\\/thumb\\/Bakthang Waterfalls_812.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":546,\"Title\":\"Ganesh Tok\",\"Description\":\"Ganesh Tok is a loved tourist spot in Gangtok and a small temple dedicated to Lord Ganesha. It is situated on top of a hill thereby giving scenic views to the tourists who come here. The Kanchenjunga hill can be seen in its true form of glory from here and is at its best especially in the morning. The viewpoint is situated at a distance of 6500 m offers stunning views of the mountains covered in snow. The temple is however so small that it can only fit one person at a time. The place takes you a step closer to nature with its surreal surroundings and comforting ambience.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3389356,\"Long\":88.6065035,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Ganesh_Tok_10106_1549026202.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2266,\"Title\":\"Nathu La\",\"Description\":\"Nathu la, One of the highest drive able roads in the world, is a mountain pass in the Himalayan peaks that co-joins Sikkim and China. Nathu la Pass is situated on the Indo-Chinese border and is one of the biggest tourist attractions in India. Tourists flock here every year for trekking in the valley and enjoying the scenic beauty. It also offers an opportunity to see beautiful snow peaks encircling the area.  It&amp;#039;s closed on Mondays and Tuesdays for public.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3866112,\"Long\":88.8308771,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1502444794.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2181,\"Title\":\"Tsomgo lake\",\"Description\":\"Tsomgo Lake, also known Changu Lake, is a glacial lake in the East Sikkim district, some 40 kms from the capital Gangtok. Located at an elevation of 3,753 m (12,313 ft), the lake remains frozen during the winter season. The lake surface reflects different colors with change of seasons and is held in great reverence by the local Sikkimese people. Buddhist monks prognosticate after studying the changing colors of the lake.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3745576,\"Long\":88.7632283,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501488816.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":831,\"Title\":\"Kanchenjunga Mountain\",\"Description\":\"These mountains offer a breath taking view of the surrounding areas. One can also enjoy the unforgettable view of the Sun Rise and Sun Set and admire the beauty of nature.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0395315,\"Long\":88.2801785,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/896\\/thumb\\/Kanchenjunga Mountain_817.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3725,\"Title\":\"Bhim Nala Waterfall\",\"Description\":\"Naga waterfalls. Between Mangan and Chungthang is another waterfall called Naga. Bhim Nala waterfalls. This waterfall is on the way between Chungthang and Lachung. Situated just next to the road, it looks like a three stage waterfall.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":30.489842,\"Long\":79.171128,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/36_1519314223.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2259,\"Title\":\"Naga Waterfall\",\"Description\":\"You will encounter this awesome water fall enroute to Lachung. It is a popular spot to stop and take a break for pictures and enjoy the Himalayan mountain range view. Views from here are amazing and waterfall itself is very refreshing.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.6890569,\"Long\":88.7429723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502022561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2256,\"Title\":\"Singhik view point\",\"Description\":\"A short walk uphill will take you to the popular Singhik View Point which offers the most magnificent view of Mt. Kanchenjunga and Mt. Siniolchu. Surrounded by lush green hills with the Teesta River flowing below it. Situated at an altitude of over 5000 ft, Singhik view point offers a desired break to the travelers on the way to Lachen or Lachung.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.5156904,\"Long\":88.5541146,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502021760.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2193,\"Title\":\"Yumthang Valley\",\"Description\":\"The Yumthang Valley is a nature sanctuary with river, hot springs, Yaks surrounded by the Himalayan mountains, located at a distance of 150 kilometers from Gangtok. The name Yumthang Valley means &amp;#039;Valley of Flowers&amp;quot; and it doesn&amp;#039;t disappoints. Other than the wonderful views of vast valley of flowers, Yumthang also offers lovely views of the mountain peaks such as Pauhunri and Shundu Tsenpa forming the backdrop of the river Teesta. Before entering the Yumthang valley, there is a hot water spring too with medicinal properties.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.8267952,\"Long\":88.6958087,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501494403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2543,\"Title\":\"Darap Village\",\"Description\":\"The word Darap is originated from the limbo word &acirc;&euro;&trade;Tan-lop&acirc;&euro;&trade; which literally means a plain land. Its one of the most beautiful scenery village wherein one can be engaged in milking the cows, gardening, interaction with the local children, learn to make butter and cheese and visit to the 200 year old Limboo traditional house. This ancient structure, with solid mud floors and tar-encrusted ceilings from the constantly burning fire, has been passed down from generation to generation of Nepali Limboo tribesmen.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3063263,\"Long\":88.1862222,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/36_1511612787.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":876,\"Title\":\"Khecheopalri - The Wishing Lake\",\"Description\":\"This religious place is believed to fulfill one&amp;rsquo;s wishes. Khecheopalri Lake is a paradise for nature lovers and trekkers. There are various trekkers&amp;rsquo; outlets and lodging facilities as well if you prefer camping overnight.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3197716,\"Long\":88.2400333,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1151\\/thumb\\/Khecheopalri - The Wishing Lake_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1349,\"Title\":\"Pemayangtse Monastery\",\"Description\":\"The unique feature of the monastery is that there is an intricately carved wooden structure located on the top floor     displaying a heavenly sphere known as &amp;lsquo;Zangdokpalri&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2582\\/thumb\\/Pemayangtse Monastery_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1407,\"Title\":\"Rabdentse Ruins\",\"Description\":\"Rabdentse was the second capital of the former Kingdom of Sikkim.  The old palace and monastery complex are in ruins, and now Archaeological Survey of India.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3197716,\"Long\":88.2400333,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2844\\/thumb\\/Rabdentse Ruins_559.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2207,\"Title\":\"Rimbi Waterfalls\",\"Description\":\"Rimbi Waterfalls is situated along the banks of Rimbi River, famous for the recreational activities like fishing. The waterfall is a great place to click pictures with your loved ones.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3139827,\"Long\":88.1865589,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501499354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":752,\"Title\":\"Japanese Temple\",\"Description\":\"There is a wonderful Japanese temple located at a 10 minutes driving distance from the Darjeeling town center. The temple is also known as the Nipponzan Myohoji Buddhist Temple. ... Close to the temple is the Peace Pagoda that showcases four avatars of Lord Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1040\\/thumb\\/Japanese Temple_99.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1487,\"Title\":\"Ropeway\",\"Description\":\"The Darjeeling Ropeway is a ropeway in the town of Darjeeling in the Indian state of West Bengal. The ropeway is a popular tourist destination in the town.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6049\\/thumb\\/Ropeway_642.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1737,\"Title\":\"Tea Garden\",\"Description\":\"Tea planting in the Indian district of Darjeeling began in 1841 by Archibald Campbell, a civil surgeon of the Indian Medical Service. Campbell was transferred as superintendent of Darjeeling in 1839 from Kathmandu, Nepal. In 1841, he brought seeds of the Chinese tea plant (Camellia sinensis) from Kumaun and began to experiment with tea planting in Darjeeling.The British government also established tea nurseries during that period (1847). Commercial development began during the 1850s.In 1856, the Alubari tea garden was opened by the Kurseong and Darjeeling Tea company,followed by others.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9337226,\"Long\":88.289905,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1039\\/thumb\\/Tea Garden_593.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1782,\"Title\":\"Tibetan Refugee Self Help Center\",\"Description\":\"The Tibetan Refugee Self-Help Centre was started on October 2, 1959. Following the dramatic escape of His Holiness the Dalai Lama during that period of mayhem, thousands of our fellow countrymen, leaving hearth and home, fled into neighboring countries so they could live as free human beings. The overwhelming majority of the refugees had brought nothing with them apart from the clothes they wore and what little provisions they could carry with them as they began the long and difficult trek over the Himalayas.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/297\\/thumb\\/Tibetan Refugee Self Help Center_620.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1786,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is located in Darjeeling, in the Indian State of West Bengal, and is the summit of Ghoom, the highest railway station in the Darjeeling Himalayan Railway\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9957499,\"Long\":88.2783622,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/895\\/thumb\\/Tiger Hill_949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":7556,\"Title\":\"Darjeeling\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":491956,\"Name\":\"Jai Hotels\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.04118679999999\",\"Long\":\"88.26550440000001\",\"Address\":\"Jai Complex, Laden La Road, Darjeeling - 734101\"},\"Images\":{\"Image\":[{\"ImagId\":4820255,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491956\\/4913_01642078957.jpg\"},{\"ImagId\":4820256,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491956\\/4913_11642078957.jpg\"},{\"ImagId\":4820257,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491956\\/4913_21642078957.jpg\"},{\"ImagId\":4820258,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491956\\/4913_31642078957.jpg\"}]},\"CityId\":7556,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491956\\/4913_fc2799ef9dd4e3e648acf32ff10b14bd1642078957.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":95,\"Title\":\"Baba Harbhajan Singh Memorial Temple\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh (30 August 1946 &amp;ndash; 4 October 1968) was an Indian army soldier who died in 1968 near the Nathu La in eastern Sikkim, India. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honour. He was accorded the status of saint by believers who refer to him as the Baba (saintly father).\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Baba_Harbhajan_Singh_Memorial__10106_1496747022.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2183,\"Title\":\"Baba Mandir\",\"Description\":\"Major &amp;quot;Baba&amp;quot; Harbhajan Singh  was an Indian army soldier. He is revered as the &amp;quot;Hero of Nathula&amp;quot; by soldiers of the Indian army, who built a shrine in his honor. He was accorded the status of saint by believers who refer to him as the &amp;quot;Baba&amp;quot; (saintly father).Many who come here leave a bottle of drinking water which they arrange to collect a few days later. It is believed that one can fulfill one&amp;#039;s wishes by drinking that water. Although this temple is on a roadside, it is surrounded by mountains from all sides and the views all around is magnificent.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":34.007485,\"Long\":-118.104177,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501489339.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":112,\"Title\":\"Bakthang Waterfalls\",\"Description\":\"While the height of the fall isn&amp;#039;t much, it&amp;#039;s the width of the fall that makes it so beautiful. The source of the water is at Ratey Chu. The flowing water falls over a canopy of green creepers. It&amp;#039;s a wonderful sight to take pictures.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3389356,\"Long\":88.6065035,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5412\\/thumb\\/Bakthang Waterfalls_812.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":546,\"Title\":\"Ganesh Tok\",\"Description\":\"Ganesh Tok is a loved tourist spot in Gangtok and a small temple dedicated to Lord Ganesha. It is situated on top of a hill thereby giving scenic views to the tourists who come here. The Kanchenjunga hill can be seen in its true form of glory from here and is at its best especially in the morning. The viewpoint is situated at a distance of 6500 m offers stunning views of the mountains covered in snow. The temple is however so small that it can only fit one person at a time. The place takes you a step closer to nature with its surreal surroundings and comforting ambience.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3389356,\"Long\":88.6065035,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/Ganesh_Tok_10106_1549026202.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2266,\"Title\":\"Nathu La\",\"Description\":\"Nathu la, One of the highest drive able roads in the world, is a mountain pass in the Himalayan peaks that co-joins Sikkim and China. Nathu la Pass is situated on the Indo-Chinese border and is one of the biggest tourist attractions in India. Tourists flock here every year for trekking in the valley and enjoying the scenic beauty. It also offers an opportunity to see beautiful snow peaks encircling the area.  It&amp;#039;s closed on Mondays and Tuesdays for public.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3866112,\"Long\":88.8308771,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1502444794.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2181,\"Title\":\"Tsomgo lake\",\"Description\":\"Tsomgo Lake, also known Changu Lake, is a glacial lake in the East Sikkim district, some 40 kms from the capital Gangtok. Located at an elevation of 3,753 m (12,313 ft), the lake remains frozen during the winter season. The lake surface reflects different colors with change of seasons and is held in great reverence by the local Sikkimese people. Buddhist monks prognosticate after studying the changing colors of the lake.\",\"CurrencyType\":0,\"CityId\":10106,\"CityName\":\"Gangtok\",\"Lat\":27.3745576,\"Long\":88.7632283,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501488816.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":831,\"Title\":\"Kanchenjunga Mountain\",\"Description\":\"These mountains offer a breath taking view of the surrounding areas. One can also enjoy the unforgettable view of the Sun Rise and Sun Set and admire the beauty of nature.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0395315,\"Long\":88.2801785,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/896\\/thumb\\/Kanchenjunga Mountain_817.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3725,\"Title\":\"Bhim Nala Waterfall\",\"Description\":\"Naga waterfalls. Between Mangan and Chungthang is another waterfall called Naga. Bhim Nala waterfalls. This waterfall is on the way between Chungthang and Lachung. Situated just next to the road, it looks like a three stage waterfall.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":30.489842,\"Long\":79.171128,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/36_1519314223.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2259,\"Title\":\"Naga Waterfall\",\"Description\":\"You will encounter this awesome water fall enroute to Lachung. It is a popular spot to stop and take a break for pictures and enjoy the Himalayan mountain range view. Views from here are amazing and waterfall itself is very refreshing.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.6890569,\"Long\":88.7429723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502022561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2256,\"Title\":\"Singhik view point\",\"Description\":\"A short walk uphill will take you to the popular Singhik View Point which offers the most magnificent view of Mt. Kanchenjunga and Mt. Siniolchu. Surrounded by lush green hills with the Teesta River flowing below it. Situated at an altitude of over 5000 ft, Singhik view point offers a desired break to the travelers on the way to Lachen or Lachung.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.5156904,\"Long\":88.5541146,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34559\\/sightseeing\\/18_1502021760.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2193,\"Title\":\"Yumthang Valley\",\"Description\":\"The Yumthang Valley is a nature sanctuary with river, hot springs, Yaks surrounded by the Himalayan mountains, located at a distance of 150 kilometers from Gangtok. The name Yumthang Valley means &amp;#039;Valley of Flowers&amp;quot; and it doesn&amp;#039;t disappoints. Other than the wonderful views of vast valley of flowers, Yumthang also offers lovely views of the mountain peaks such as Pauhunri and Shundu Tsenpa forming the backdrop of the river Teesta. Before entering the Yumthang valley, there is a hot water spring too with medicinal properties.\",\"CurrencyType\":0,\"CityId\":34559,\"CityName\":\"Lachung\",\"Lat\":27.8267952,\"Long\":88.6958087,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501494403.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2543,\"Title\":\"Darap Village\",\"Description\":\"The word Darap is originated from the limbo word &acirc;&euro;&trade;Tan-lop&acirc;&euro;&trade; which literally means a plain land. Its one of the most beautiful scenery village wherein one can be engaged in milking the cows, gardening, interaction with the local children, learn to make butter and cheese and visit to the 200 year old Limboo traditional house. This ancient structure, with solid mud floors and tar-encrusted ceilings from the constantly burning fire, has been passed down from generation to generation of Nepali Limboo tribesmen.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3063263,\"Long\":88.1862222,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21043\\/sightseeing\\/36_1511612787.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":876,\"Title\":\"Khecheopalri - The Wishing Lake\",\"Description\":\"This religious place is believed to fulfill one&amp;rsquo;s wishes. Khecheopalri Lake is a paradise for nature lovers and trekkers. There are various trekkers&amp;rsquo; outlets and lodging facilities as well if you prefer camping overnight.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3197716,\"Long\":88.2400333,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1151\\/thumb\\/Khecheopalri - The Wishing Lake_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1349,\"Title\":\"Pemayangtse Monastery\",\"Description\":\"The unique feature of the monastery is that there is an intricately carved wooden structure located on the top floor     displaying a heavenly sphere known as &amp;lsquo;Zangdokpalri&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.5329718,\"Long\":88.5122178,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2582\\/thumb\\/Pemayangtse Monastery_877.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1407,\"Title\":\"Rabdentse Ruins\",\"Description\":\"Rabdentse was the second capital of the former Kingdom of Sikkim.  The old palace and monastery complex are in ruins, and now Archaeological Survey of India.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3197716,\"Long\":88.2400333,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2844\\/thumb\\/Rabdentse Ruins_559.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2207,\"Title\":\"Rimbi Waterfalls\",\"Description\":\"Rimbi Waterfalls is situated along the banks of Rimbi River, famous for the recreational activities like fishing. The waterfall is a great place to click pictures with your loved ones.\",\"CurrencyType\":0,\"CityId\":21043,\"CityName\":\"Pelling\",\"Lat\":27.3139827,\"Long\":88.1865589,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/10106\\/sightseeing\\/18_1501499354.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2202,\"Title\":\"Himalayan Mountaineering Institute\",\"Description\":\"The Himalayan Mountaineering Institute was established in Darjeeling  to encourage mountaineering as an organized sport in India. The first ascent of Mount Everest in 1953 by Tenzing Norgay and Edmund Hillary sparked a keen interest in establishing mountaineering as a well-respected endeavor for people in the region. Tenzing Norgay was the first director of field training for HMI.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586589,\"Long\":88.2539006,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7556\\/sightseeing\\/18_1501497906.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":752,\"Title\":\"Japanese Temple\",\"Description\":\"There is a wonderful Japanese temple located at a 10 minutes driving distance from the Darjeeling town center. The temple is also known as the Nipponzan Myohoji Buddhist Temple. ... Close to the temple is the Peace Pagoda that showcases four avatars of Lord Buddha.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1040\\/thumb\\/Japanese Temple_99.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1275,\"Title\":\"Padmaja Naidu Zoological Park\",\"Description\":\"Padmaja Naidu Himalayan Zoological Park is a 67.56-acre zoo in the town of Darjeeling in the Indian state of West Bengal. The zoo was opened in 1958, and an average elevation of 7,000 feet, is the largest high altitude zoo in India\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0586099,\"Long\":88.254405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/295\\/thumb\\/Padmaja Naidu Zoological Park_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1487,\"Title\":\"Ropeway\",\"Description\":\"The Darjeeling Ropeway is a ropeway in the town of Darjeeling in the Indian state of West Bengal. The ropeway is a popular tourist destination in the town.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6049\\/thumb\\/Ropeway_642.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1737,\"Title\":\"Tea Garden\",\"Description\":\"Tea planting in the Indian district of Darjeeling began in 1841 by Archibald Campbell, a civil surgeon of the Indian Medical Service. Campbell was transferred as superintendent of Darjeeling in 1839 from Kathmandu, Nepal. In 1841, he brought seeds of the Chinese tea plant (Camellia sinensis) from Kumaun and began to experiment with tea planting in Darjeeling.The British government also established tea nurseries during that period (1847). Commercial development began during the 1850s.In 1856, the Alubari tea garden was opened by the Kurseong and Darjeeling Tea company,followed by others.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9337226,\"Long\":88.289905,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1039\\/thumb\\/Tea Garden_593.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1749,\"Title\":\"Tenzing Rock\",\"Description\":\"Opposite to this is the Gombu Rock named after Nawang Gombu, nephew of Tenzing who was the first person to climb the Everest twice, once in 1963 and then in 65. He took over as the Director of Field Training at Himalayan Mountaineering Institute after Tenzing retired in 1976.One of a pair of large natural rocks used by people to practice rock-climbing, including beginners.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0590663,\"Long\":88.2540275,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2840\\/thumb\\/Tenzing Rock_48.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1782,\"Title\":\"Tibetan Refugee Self Help Center\",\"Description\":\"The Tibetan Refugee Self-Help Centre was started on October 2, 1959. Following the dramatic escape of His Holiness the Dalai Lama during that period of mayhem, thousands of our fellow countrymen, leaving hearth and home, fled into neighboring countries so they could live as free human beings. The overwhelming majority of the refugees had brought nothing with them apart from the clothes they wore and what little provisions they could carry with them as they began the long and difficult trek over the Himalayas.\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":27.0360066,\"Long\":88.2626751,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/297\\/thumb\\/Tibetan Refugee Self Help Center_620.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1786,\"Title\":\"Tiger Hill\",\"Description\":\"Tiger Hill is located in Darjeeling, in the Indian State of West Bengal, and is the summit of Ghoom, the highest railway station in the Darjeeling Himalayan Railway\",\"CurrencyType\":0,\"CityId\":7556,\"CityName\":\"Darjeeling\",\"Lat\":26.9957499,\"Long\":88.2783622,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/895\\/thumb\\/Tiger Hill_949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"223755\",\"Title\":\"NJP Rly Station \\/ IXB Airport - Gangtok (128 Kms. \\/ 5 Hrs)\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Meet and&amp;nbsp;greet&amp;nbsp;on arrival at New Jalpaiguri Railway Station\\/&amp;nbsp;Bagdogra&amp;nbsp;International Airport and transfer to&amp;nbsp;Gangtok&amp;nbsp;(5,500 Ft.). On arrival check-in to the hotel and rest of the day at leisure. Overnight stay at&amp;nbsp;Gangtok.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491877,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223756\",\"Title\":\"Excursion to Tsomgo Lake and Baba Mandir (53 Kms. \\/ 3 Hrs. one-way)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, wake up early to start the day with an &lt;strong&gt;optional&lt;\\/strong&gt; visit to&amp;nbsp;&lt;strong&gt;Nathula&amp;nbsp;pass&lt;\\/strong&gt;. Located at a distance of 56&amp;nbsp;Kmts&amp;nbsp;from Gangtok, the&amp;nbsp;Nathula&amp;nbsp;pass had been used to be a corridor of passage between India and Tibet which is now a border for India and China. The permission to visit the place must be taken in advance to witness the highest memorable roads in the world. The alpine flora and its surrounding make the journey a remarkable memory. Further, start for an excursion to&amp;nbsp;Tsomgo&amp;nbsp;Lake (12,400 ft. \\/ 37 Kms. \\/ 02 Hrs. from&amp;nbsp;Gangtok). This high-altitude lake is a beautiful place to visit. while reaching through the mesmerizing landscapes and views of Kanchenjunga at distance, once you reach the actual place, you will be surprised to witness the scenic beauty of the lake and its surroundings. Afterwards, drive to Baba Mandir (13,200 ft. \\/ 16 Kms. \\/ 01 Hrs. from&amp;nbsp;Tsomgo&amp;nbsp;Lake). The temple is built and dedicated to the memory of great Indian army soldiers, folk hero, and saint Baba Harbhajan Singh. Next to visit in the list is&amp;nbsp;Bakthang&amp;nbsp;Waterfalls (4.5&amp;nbsp;Kmts). Crystal clear water and outstanding Zipline make it the first choice of place to visit. In the afternoon, drive back to&amp;nbsp;Gangtok&amp;nbsp;to&amp;nbsp;&amp;nbsp;Visit&amp;nbsp;the famous Ganesh Temple &amp;ldquo;Ganesh Tok&amp;rdquo; which is situated on top of a hill with mind-stirring views.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner and overnight stay at&amp;nbsp;Gangtok.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;color:#c0392b&quot;&gt;&lt;strong&gt;&lt;span style=&quot;background-color:#ffff00&quot;&gt;(In case of Land slide or any other reason, if&amp;nbsp;Tsomgo&amp;nbsp;Lake is closed we will provide alternate sightseeing.)&amp;nbsp;&lt;\\/span&gt;&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491877,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":95,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2183,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":112,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":546,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2266,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2181,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":831,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223757\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223758\",\"Title\":\"Gangtok - Lachung (116 Kms. \\/ 6 Hrs.)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel with limited luggage and proceed to&amp;nbsp;Lachung&amp;nbsp;(8,738 Ft.) in North&acirc;&euro;&macr;Sikkim. On the way, take a break&amp;nbsp;at&amp;nbsp;some beautiful spots that are worth seeing and visiting like Naga Waterfall, The Confluence of&amp;nbsp;Lachen&amp;nbsp;Chu (River), and&amp;nbsp;Lachung&amp;nbsp;Chu (River) at&amp;nbsp;Chungthang&amp;nbsp;and&amp;nbsp;Bhim&amp;nbsp;Nala Waterfall. On arrival at&amp;nbsp;Lachung, check into your hotel. Dinner and Overnight stay at&amp;nbsp;Lachung&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34559,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491880,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3725,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2259,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223759\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34559,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223760\",\"Title\":\" Lachung - Yumthang Valley - Gangtok (161 Kms. \\/ 9 Hrs.)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Early Morning, you can choose to visit Zero point (Optional). Also known as Yume&amp;nbsp;Samdong,&amp;nbsp;Zero&amp;nbsp;point is at an altitude of 15300 Ft above the sea level. The panoramic views of snow-clad mountains and picturesque surroundings near the Indo-China border makes it a must in to the list of places to visit. After reaching there, there is no further civilian road beyond this point, that is the reason why it is known as Zero point. On the way back, drive to&amp;nbsp;Yumthang&amp;nbsp;Valley which is known as Valley of Flowers (12,000 ft \\/ 26 Kms \\/ 1&amp;frac12; Hrs. one way).&amp;nbsp;Yumthang&amp;nbsp;is the summer grazing ground of the yaks and winter playgrounds of yetis. On the way back, visit Hot Spring, which is considered to have medicinal properties. Back to hotel for lunch and drive to&amp;nbsp;Gangtok&amp;nbsp;(5,500 Ft.). On the way, if the weather is clear you may get to see the mighty&amp;nbsp;Khangchendzonga&amp;nbsp;from the Singhik&amp;nbsp;viewpoint. On arrival at&amp;nbsp;Gangtok check in to your hotel for dinner and overnight stay at&amp;nbsp;Gangtok. You may visit M G road for shopping on your own if time permits.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491877,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2256,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2193,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223761\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":10106,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223762\",\"Title\":\"Gangtok - Pelling (150 Kms. \\/ 7 Hrs.)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, start for Pelling (6,300 Ft. \\/ 120 Kms. \\/ 5 Hrs.). packed lunch will be served. On the way to Pelling, visit Darap Village. This is a place which is occupied by the Limboo&amp;nbsp;community. Its calming ambiance, wide rolling ranchlands, and Peddy fields oozes the feeling of peace and tranquillity. Feel the spirituality and peace upon the short visit of the place. Drive further by 15&amp;nbsp;Kms&amp;nbsp;to reach Pelling. On arrival, check in to your hotel. Dinner and overnight stay at Pelling.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21043,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2543,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223763\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21043,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223764\",\"Title\":\"Pelling &acirc;&euro;&ldquo; Darjeeling Enroute Pelling Sightseeing (80 Kms. \\/ 4 Hrs.) \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, transfer to Darjeeling (6,950 Ft.).&amp;nbsp;Rimbi&amp;nbsp;waterfalls,&amp;nbsp;Khecheopalri&amp;nbsp;Lake (Wishfulling&amp;nbsp;Lake), and&amp;nbsp;Khangchendzongha&amp;nbsp;waterfalls. In the second half cover the&amp;nbsp;Pemayangtse&amp;nbsp;monastery,&amp;nbsp;Rabdantse&amp;nbsp;ruins (2nd capital of Sikkim),&amp;nbsp;On arrival at&amp;nbsp;Darjeeling, check into your hotel. Dinner and Overnight stay at&amp;nbsp;Darjeeling.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":876,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1349,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1407,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2207,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223765\",\"Title\":\"Darjeeling Full Day Sightseeing with Tiger Hill \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;Early morning (4:00 AM) visit Tiger Hill (Subject to availability of Permit \\/ Token) and then back to the hotel. After breakfast, starting&amp;nbsp;at&acirc;&euro;&macr;8.30&amp;nbsp;AM, visit Himalayan Mountaineering Institute, P.N. Zoological Park (Thursday closed),&amp;nbsp;Tenzing&amp;nbsp;Rock, Ropeway, Tibetan Refugee self-help Centre (Sunday closed), Tea Garden (outer view), Japanese Temple. Evening free for shopping or leisure. Dinner and Overnight stay at Darjeeling.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2202,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":752,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1275,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1487,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1737,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1749,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1782,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1786,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223766\",\"Title\":\"Darjeeling - NJP Rly Station \\/ IXB Airport (75 Kms. \\/ 3 Hrs.)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;check&amp;nbsp;out from the hotel and take the departure transfers to New Jalpaiguri Railway Station\\/&amp;nbsp;Bagdogra&amp;nbsp;International Airport for your onward journey.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7556,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31460\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"36999.90\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":37000,\"priceDoubleOcc\":\"36999.90\",\"priceSingleOcc\":55500.9,\"priceExtraBed\":\"36999.90\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36999.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":37000,\"priceDoubleOcc\":\"36999.90\",\"priceSingleOcc\":55500.9,\"priceExtraBed\":\"36999.90\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36999.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":37000,\"priceDoubleOcc\":\"36999.90\",\"priceSingleOcc\":55500.9,\"priceExtraBed\":\"36999.90\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36999.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":37000,\"priceDoubleOcc\":\"36999.90\",\"priceSingleOcc\":55500.9,\"priceExtraBed\":\"36999.90\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36999.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":37000,\"priceDoubleOcc\":\"36999.90\",\"priceSingleOcc\":55500.9,\"priceExtraBed\":\"36999.90\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36999.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":37000,\"priceDoubleOcc\":\"36999.90\",\"priceSingleOcc\":55500.9,\"priceExtraBed\":\"36999.90\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36999.90\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33967.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33967.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33967.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33967.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33967.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33967.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":37047,\"priceDoubleOcc\":\"37047.15\",\"priceSingleOcc\":55548.15,\"priceExtraBed\":\"37047.15\",\"priceWithoutBed\":\"33999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37047.15\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31460\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"35238.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":35238,\"priceDoubleOcc\":\"35238.00\",\"priceSingleOcc\":52858,\"priceExtraBed\":\"35238.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35238.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":35238,\"priceDoubleOcc\":\"35238.00\",\"priceSingleOcc\":52858,\"priceExtraBed\":\"35238.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35238.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":35238,\"priceDoubleOcc\":\"35238.00\",\"priceSingleOcc\":52858,\"priceExtraBed\":\"35238.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35238.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":35238,\"priceDoubleOcc\":\"35238.00\",\"priceSingleOcc\":52858,\"priceExtraBed\":\"35238.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35238.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":35238,\"priceDoubleOcc\":\"35238.00\",\"priceSingleOcc\":52858,\"priceExtraBed\":\"35238.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35238.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":35238,\"priceDoubleOcc\":\"35238.00\",\"priceSingleOcc\":52858,\"priceExtraBed\":\"35238.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35238.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32350.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32350.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32350.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32350.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32350.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32350.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-17\",\"To\":\"2022-09-17\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":35283,\"priceDoubleOcc\":\"35283.00\",\"priceSingleOcc\":52903,\"priceExtraBed\":\"35283.00\",\"priceWithoutBed\":\"32380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"35283.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30 Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions as per booking forms.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rates are subject to change&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Snow Points Not Included.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entry Tickets to be paid by Clients Directly.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Surcharge applicable on certain dates&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package&amp;nbsp;Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Gangtok:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Bhim&amp;nbsp;Nala&amp;nbsp;Waterfalls&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Naga Waterfalls&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tsomgo&amp;nbsp;Lake&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shopping @MG Road (If time permits)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ganesh&amp;nbsp;Tok&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Baba&amp;nbsp;Harbhajan&amp;nbsp;Singh Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nathu&amp;nbsp;La Pass&amp;nbsp;(Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Lachung:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Yumthang&amp;nbsp;Valley&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Zero Point&amp;nbsp;(Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lachung&amp;nbsp;Monastery&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Pelling:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Darap&amp;nbsp;Village&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Khecheopalri&amp;nbsp;Lake&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pemavangtse&amp;nbsp;Monastery&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Khangchendzonga&amp;nbsp;Waterfalls&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rabdantse&amp;nbsp;Ruins&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Darjeeling:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Lush Green Tea Gardens&amp;nbsp;(Outer View)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tiger Hill&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Japanese Buddhist Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Padmaja&amp;nbsp;Naidu Himalayan Zoological Park&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Tenzing&amp;nbsp;Rock&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ropeway (Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;07 Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06 Lunches (Packed Lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;07 Dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All&amp;nbsp;Transfers&amp;nbsp;by A\\/C&amp;nbsp;Innova\\/ Tempo traveler&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Note:&amp;nbsp;A\\/C will not be operated on the hilly areas as per Govt. norms&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9327\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9328\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"223755\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[223755],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223756\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[223756],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223757\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[223757],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223758\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[223758],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223759\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223759],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223760\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223760],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223761\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[223761],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223762\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[223762],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223763\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[223763],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223764\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[223764],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223765\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[223765],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223766\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[223766],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"2012\":{\"CityName\":\"Bagdogra\",\"FromDate\":{\"20220226\":{\"FromDate\":\"2022-02-26\",\"FromDateDMY\":\"26\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220319\":{\"FromDate\":\"2022-03-19\",\"FromDateDMY\":\"19\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220402\":{\"FromDate\":\"2022-04-02\",\"FromDateDMY\":\"02\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220409\":{\"FromDate\":\"2022-04-09\",\"FromDateDMY\":\"09\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220416\":{\"FromDate\":\"2022-04-16\",\"FromDateDMY\":\"16\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220423\":{\"FromDate\":\"2022-04-23\",\"FromDateDMY\":\"23\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220430\":{\"FromDate\":\"2022-04-30\",\"FromDateDMY\":\"30\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220507\":{\"FromDate\":\"2022-05-07\",\"FromDateDMY\":\"07\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220514\":{\"FromDate\":\"2022-05-14\",\"FromDateDMY\":\"14\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220521\":{\"FromDate\":\"2022-05-21\",\"FromDateDMY\":\"21\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220528\":{\"FromDate\":\"2022-05-28\",\"FromDateDMY\":\"28\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220604\":{\"FromDate\":\"2022-06-04\",\"FromDateDMY\":\"04\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220611\":{\"FromDate\":\"2022-06-11\",\"FromDateDMY\":\"11\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220618\":{\"FromDate\":\"2022-06-18\",\"FromDateDMY\":\"18\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220625\":{\"FromDate\":\"2022-06-25\",\"FromDateDMY\":\"25\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220702\":{\"FromDate\":\"2022-07-02\",\"FromDateDMY\":\"02\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220709\":{\"FromDate\":\"2022-07-09\",\"FromDateDMY\":\"09\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220716\":{\"FromDate\":\"2022-07-16\",\"FromDateDMY\":\"16\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220723\":{\"FromDate\":\"2022-07-23\",\"FromDateDMY\":\"23\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220730\":{\"FromDate\":\"2022-07-30\",\"FromDateDMY\":\"30\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220806\":{\"FromDate\":\"2022-08-06\",\"FromDateDMY\":\"06\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220813\":{\"FromDate\":\"2022-08-13\",\"FromDateDMY\":\"13\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220815\":{\"FromDate\":\"2022-08-15\",\"FromDateDMY\":\"15\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220816\":{\"FromDate\":\"2022-08-16\",\"FromDateDMY\":\"16\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220817\":{\"FromDate\":\"2022-08-17\",\"FromDateDMY\":\"17\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220820\":{\"FromDate\":\"2022-08-20\",\"FromDateDMY\":\"20\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220827\":{\"FromDate\":\"2022-08-27\",\"FromDateDMY\":\"27\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220903\":{\"FromDate\":\"2022-09-03\",\"FromDateDMY\":\"03\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220910\":{\"FromDate\":\"2022-09-10\",\"FromDateDMY\":\"10\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220917\":{\"FromDate\":\"2022-09-17\",\"FromDateDMY\":\"17\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220924\":{\"FromDate\":\"2022-09-24\",\"FromDateDMY\":\"24\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221001\":{\"FromDate\":\"2022-10-01\",\"FromDateDMY\":\"01\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221008\":{\"FromDate\":\"2022-10-08\",\"FromDateDMY\":\"08\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221015\":{\"FromDate\":\"2022-10-15\",\"FromDateDMY\":\"15\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221022\":{\"FromDate\":\"2022-10-22\",\"FromDateDMY\":\"22\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221023\":{\"FromDate\":\"2022-10-23\",\"FromDateDMY\":\"23\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221025\":{\"FromDate\":\"2022-10-25\",\"FromDateDMY\":\"25\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221026\":{\"FromDate\":\"2022-10-26\",\"FromDateDMY\":\"26\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221027\":{\"FromDate\":\"2022-10-27\",\"FromDateDMY\":\"27\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221029\":{\"FromDate\":\"2022-10-29\",\"FromDateDMY\":\"29\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221105\":{\"FromDate\":\"2022-11-05\",\"FromDateDMY\":\"05\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221112\":{\"FromDate\":\"2022-11-12\",\"FromDateDMY\":\"12\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221119\":{\"FromDate\":\"2022-11-19\",\"FromDateDMY\":\"19\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221126\":{\"FromDate\":\"2022-11-26\",\"FromDateDMY\":\"26\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221224\":{\"FromDate\":\"2022-12-24\",\"FromDateDMY\":\"24\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Gangtok,Lachung,Pelling,Darjeeling','Gangtok,Sikkim,Indian Subcontinent,Northeast India,India,Lachung,Pelling,Darjeeling,West Bengal,East India,Chumathang',NULL,'10106,34559,21043,7556',35238,37047,7,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-12-24 00:00:00','2022-12-24 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-dashing-darjeeling-2022',NULL,NULL,NULL,0),(30,31459,1,12577,1,0,0,'Honeymoon,Beach,Family,Hill Station,Culture,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31459,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_classic_kerala_2022_1642416570.jpg\",\"BookingValidUntill\":\"2022-12-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Kerala, a state on India&amp;#39;s tropical Malabar Coast, has nearly 600km of Arabian Sea shoreline. It&amp;#39;s known for its palm-lined beaches and backwaters, a network of canals. Inland are the Western Ghats, mountains whose slopes support tea, coffee and spice plantations as well as wildlife. National parks like Eravikulam and Periyar, plus Wayanad and other sanctuaries, are home to elephants, langur monkeys and tigers.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Cochin\",\"DestinationPlacesSysId\":6561,\"SourcePlaces\":\"Cochin\",\"SourcePlaceSysId\":6561,\"AgencyName\":\"\",\"Name\":\"Ex. Classic Kerala 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Family,Hill Station,Culture,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":493210,\"Name\":\"Misty Lake Resorts\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0038393\",\"Long\":\"77.04328269999999\",\"Address\":\"Sengulam, Anachal, Kerala 685565, India\"},\"Images\":{\"Image\":[{\"ImagId\":4820373,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493210\\/4913_01642769400.jpg\"},{\"ImagId\":4820374,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493210\\/4913_11642769400.jpg\"},{\"ImagId\":4820375,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493210\\/4913_21642769400.jpg\"},{\"ImagId\":4820376,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493210\\/4913_31642769400.jpg\"}]},\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493210\\/4913_9f054b9d137ba24987244c045f7207861642769400.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":86,\"Title\":\"Attukal Waterfalls\",\"Description\":\"The waterfall lays 9 km away from the Munnar town, on the way to Pallivasal.  Attukal offers the beauty of water falling from the top of the mountain. The sight of the roaring water and the rolling hills around is something which you can never delete from your memories.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1415\\/thumb\\/Attukal Waterfalls_231.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8387,\"Title\":\"Nilgiri tahr\",\"Description\":\"The Nilgiri tahr known locally as the Nilgiri ibex or simply ibex, is an ungulate that is endemic to the Nilgiri Hills and the southern portion of the Western Ghats in the states of Tamil Nadu and Kerala in Southern India. It is the state animal of Tamil Nadu.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Nilgiri_tahr_18697_1549434035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1739,\"Title\":\"Tea Gardens\",\"Description\":\"Tea Garden has become one of the reasons behind the international fame of the hill station of Munnar and regarded as a prominent hub of tea trade in the country. This hill station is synonymous with rolling hills that are carpeted with verdant plantations of tea. This place is recognised for having some of the best and most beautiful tea gardens across the globe. In present times, the hill station has more than 50 tea gardens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0868868,\"Long\":77.0652156,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Gardens_18697_1521638841.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2538,\"Title\":\"Tea Plantation\",\"Description\":\"Quaint cottages, fragrant tea gardens and mist-draped mornings are hallmarks of Munnar. For years the cool and picturesque town of Munnar was the summer retreat of the British and it still retains the charm of a colonial past. The destination is home to the only sandalwood forest in Kerala and is also famous for its exotic flora and fauna. The Nilgiri tahr (mountain goat), the grizzled giant squirrel and the once-in-twelve-year blooming wonder - Neelakurinji flower (Strobilantheskunthiana) are special to Munnar.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Tea_Plantation_6561_1512550027.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":262,\"Title\":\"Bustling Spice Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6318\\/thumb\\/Bustling Spice Market_764.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":486,\"Title\":\"Elephant Ride\",\"Description\":\"Tourist attraction where guests can take short elephant rides down a path surrounded by trees.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2708,\"Title\":\"Hawa Beach\",\"Description\":\"To begin, this beach has many names: Sea Rock beach, Eve&amp;#039;s beach, and some even call it Kovalam beach, which is wrong because that term applies to the whole area.\\r\\n\\r\\nThe good things: it has excellent swimming for domestic tourists, who generally not only can&amp;#039;t swim, but often have never seen the ocean and waves before in their life. Being a smaller bay to Lighthouse beach around the corner, it is mostly a calmer sea (though not always). This means you can stand or sit on the edges, and enjoy the smaller waves that roll in.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3883147,\"Long\":76.9765123,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/36_1520846727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":972,\"Title\":\"Lighthouse Beach\",\"Description\":\"Light house beach is named after the 30 meter high Light house here which is the most important feature of this beach. The Light House is located towards the southern end of the beach and it&amp;#039;s on a cape. There is an observation platform from which you can see Poovar in one direction and the famous Beemapalli mosque on the other. You can reach this platform by climbing a total of 142 steps.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4003984,\"Long\":76.9787076,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/269\\/thumb\\/Lighthouse Beach_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1870,\"Title\":\"Vellayani Lake\",\"Description\":\"Vellayani Lake is a freshwater lake that is located at a distance 7 km from the main town. Vellayani is the largest freshwater lake in Thiruvananthapuram. The surroundings look enchanting during moon-lit nights. The rain-fed lake is locally known as &amp;lsquo;Vellayani Kayal&amp;rsquo;. The water from the lake is used for irrigational purposes and for drinking.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":10.8505159,\"Long\":76.2710833,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4230\\/thumb\\/Vellayani Lake_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13990,\"Title\":\"Anantha Padmanabhaswamy Temple\",\"Description\":\"The Padmanabhaswamy temple is a Hindu temple located in Thiruvananthapuram, state capital of Kerala, India. The name of the city of Thiruvananthapuram in Malayalam translates to &amp;quot;The City of Lord Ananta&amp;quot;, referring to the deity of the Padmanabhaswamy temple.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Anantha_Padmanabhaswamy_Temple_34288_1580110680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13996,\"Title\":\"Napier Museum\",\"Description\":\"The Napier Museum is an art and natural history museum situated in Thiruvananthapuram, the capital city of Kerala, India.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Napier_Museum_34288_1580111802.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13998,\"Title\":\"Zoo\",\"Description\":\"The Thiruvananthapuram Zoo is located in the city of Thiruvananthapuram, the capital of Kerala, India. It occupies 55 acres of woodland, lakes, and lawns.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Zoo_34288_1580112277.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":41,\"Title\":\"Alleppey Beach\",\"Description\":\"Alappuzha Beach is a beach in Alappuzha town and a tourist attraction in Kerala, India.Beach has an old pier which extend to sea is over 150 years old.Alappuzha beach host many events annually like Alappuzha beach festival,Sand art festival and many more.\\r\\nAlappuzha beach is one of the major tourist spot in Alappuzha town. Alappuzha lighthouse situated near to the beach.Beach is accessible through various town roads and an elevated highway will passing by the beach as part of Alappuzha bypass in order to preserve the beauty of the area.Camel safaris was another attraction in beach which introduced a couple of years ago but it got banned by authorities.\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4942494,\"Long\":76.3171667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/21_1500899376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":42,\"Title\":\"Alleppey City Tour\",\"Description\":\"Alleppey has many tourist places to visit, there are very nice sightseeing, attractions in Alleppey which are must see in. Details on Alleppey city and tourist places.\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4980667,\"Long\":76.3388484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/130_1516803580.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1071,\"Title\":\"Marari Beach\",\"Description\":\"&amp;quot;Marari Beach is a perfect location to visit with family and friends. This is located in the Alappuzha District of Kerala. This beach in Kerala have a lot of coconut palm trees and golden sands. The beach is quite beautiful and The serenity and tranquility of this beach take beach lovers backwards in time. The slow pace of local life makes vacationing near the Marari beach a great experience.&amp;quot;\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.655838,\"Long\":76.375021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/Marari_Beach_670_1534850657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1578,\"Title\":\"Shikara Boat Ride\",\"Description\":\"he shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas ...\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4980667,\"Long\":76.3388484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/130_1516803681.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492111,\"Name\":\"Grand Thekkady\",\"Star\":\"3.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6036527\",\"Long\":\"77.168032\",\"Address\":\"Lake Palace Ferry, Thekkady, Kumily, Tamil Nadu 685509, India\"},\"Images\":{\"Image\":[{\"ImagId\":4820277,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492111\\/4913_01642399040.jpg\"},{\"ImagId\":4820278,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492111\\/4913_11642399041.png\"},{\"ImagId\":4820279,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492111\\/4913_21642399041.jpg\"}]},\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492111\\/4913_514a959008e50ca5ec8dfa710fc258561642399040.png\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":86,\"Title\":\"Attukal Waterfalls\",\"Description\":\"The waterfall lays 9 km away from the Munnar town, on the way to Pallivasal.  Attukal offers the beauty of water falling from the top of the mountain. The sight of the roaring water and the rolling hills around is something which you can never delete from your memories.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1415\\/thumb\\/Attukal Waterfalls_231.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8387,\"Title\":\"Nilgiri tahr\",\"Description\":\"The Nilgiri tahr known locally as the Nilgiri ibex or simply ibex, is an ungulate that is endemic to the Nilgiri Hills and the southern portion of the Western Ghats in the states of Tamil Nadu and Kerala in Southern India. It is the state animal of Tamil Nadu.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Nilgiri_tahr_18697_1549434035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1739,\"Title\":\"Tea Gardens\",\"Description\":\"Tea Garden has become one of the reasons behind the international fame of the hill station of Munnar and regarded as a prominent hub of tea trade in the country. This hill station is synonymous with rolling hills that are carpeted with verdant plantations of tea. This place is recognised for having some of the best and most beautiful tea gardens across the globe. In present times, the hill station has more than 50 tea gardens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0868868,\"Long\":77.0652156,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Gardens_18697_1521638841.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2538,\"Title\":\"Tea Plantation\",\"Description\":\"Quaint cottages, fragrant tea gardens and mist-draped mornings are hallmarks of Munnar. For years the cool and picturesque town of Munnar was the summer retreat of the British and it still retains the charm of a colonial past. The destination is home to the only sandalwood forest in Kerala and is also famous for its exotic flora and fauna. The Nilgiri tahr (mountain goat), the grizzled giant squirrel and the once-in-twelve-year blooming wonder - Neelakurinji flower (Strobilantheskunthiana) are special to Munnar.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Tea_Plantation_6561_1512550027.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":262,\"Title\":\"Bustling Spice Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6318\\/thumb\\/Bustling Spice Market_764.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":486,\"Title\":\"Elephant Ride\",\"Description\":\"Tourist attraction where guests can take short elephant rides down a path surrounded by trees.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2708,\"Title\":\"Hawa Beach\",\"Description\":\"To begin, this beach has many names: Sea Rock beach, Eve&amp;#039;s beach, and some even call it Kovalam beach, which is wrong because that term applies to the whole area.\\r\\n\\r\\nThe good things: it has excellent swimming for domestic tourists, who generally not only can&amp;#039;t swim, but often have never seen the ocean and waves before in their life. Being a smaller bay to Lighthouse beach around the corner, it is mostly a calmer sea (though not always). This means you can stand or sit on the edges, and enjoy the smaller waves that roll in.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3883147,\"Long\":76.9765123,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/36_1520846727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":972,\"Title\":\"Lighthouse Beach\",\"Description\":\"Light house beach is named after the 30 meter high Light house here which is the most important feature of this beach. The Light House is located towards the southern end of the beach and it&amp;#039;s on a cape. There is an observation platform from which you can see Poovar in one direction and the famous Beemapalli mosque on the other. You can reach this platform by climbing a total of 142 steps.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4003984,\"Long\":76.9787076,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/269\\/thumb\\/Lighthouse Beach_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1870,\"Title\":\"Vellayani Lake\",\"Description\":\"Vellayani Lake is a freshwater lake that is located at a distance 7 km from the main town. Vellayani is the largest freshwater lake in Thiruvananthapuram. The surroundings look enchanting during moon-lit nights. The rain-fed lake is locally known as &amp;lsquo;Vellayani Kayal&amp;rsquo;. The water from the lake is used for irrigational purposes and for drinking.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":10.8505159,\"Long\":76.2710833,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4230\\/thumb\\/Vellayani Lake_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13990,\"Title\":\"Anantha Padmanabhaswamy Temple\",\"Description\":\"The Padmanabhaswamy temple is a Hindu temple located in Thiruvananthapuram, state capital of Kerala, India. The name of the city of Thiruvananthapuram in Malayalam translates to &amp;quot;The City of Lord Ananta&amp;quot;, referring to the deity of the Padmanabhaswamy temple.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Anantha_Padmanabhaswamy_Temple_34288_1580110680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13996,\"Title\":\"Napier Museum\",\"Description\":\"The Napier Museum is an art and natural history museum situated in Thiruvananthapuram, the capital city of Kerala, India.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Napier_Museum_34288_1580111802.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13998,\"Title\":\"Zoo\",\"Description\":\"The Thiruvananthapuram Zoo is located in the city of Thiruvananthapuram, the capital of Kerala, India. It occupies 55 acres of woodland, lakes, and lawns.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Zoo_34288_1580112277.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":41,\"Title\":\"Alleppey Beach\",\"Description\":\"Alappuzha Beach is a beach in Alappuzha town and a tourist attraction in Kerala, India.Beach has an old pier which extend to sea is over 150 years old.Alappuzha beach host many events annually like Alappuzha beach festival,Sand art festival and many more.\\r\\nAlappuzha beach is one of the major tourist spot in Alappuzha town. Alappuzha lighthouse situated near to the beach.Beach is accessible through various town roads and an elevated highway will passing by the beach as part of Alappuzha bypass in order to preserve the beauty of the area.Camel safaris was another attraction in beach which introduced a couple of years ago but it got banned by authorities.\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4942494,\"Long\":76.3171667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/21_1500899376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":42,\"Title\":\"Alleppey City Tour\",\"Description\":\"Alleppey has many tourist places to visit, there are very nice sightseeing, attractions in Alleppey which are must see in. Details on Alleppey city and tourist places.\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4980667,\"Long\":76.3388484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/130_1516803580.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1071,\"Title\":\"Marari Beach\",\"Description\":\"&amp;quot;Marari Beach is a perfect location to visit with family and friends. This is located in the Alappuzha District of Kerala. This beach in Kerala have a lot of coconut palm trees and golden sands. The beach is quite beautiful and The serenity and tranquility of this beach take beach lovers backwards in time. The slow pace of local life makes vacationing near the Marari beach a great experience.&amp;quot;\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.655838,\"Long\":76.375021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/Marari_Beach_670_1534850657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1578,\"Title\":\"Shikara Boat Ride\",\"Description\":\"he shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas ...\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4980667,\"Long\":76.3388484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/130_1516803681.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":14455,\"Title\":\"Kovalam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":493211,\"Name\":\"Jasmine Palace Kovalam.\",\"Star\":\"3.00\",\"Rating\":\"3.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"8.3885551\",\"Long\":\"76.97784759999999\",\"Address\":\"Devi temple, Hill and Sea View Resort Rd, Near Avaduthura, Kovalam, Kerala 695527, India\"},\"Images\":{\"Image\":[{\"ImagId\":4820369,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493211\\/4913_01642769181.jpg\"},{\"ImagId\":4820371,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493211\\/4913_01642769212.jpg\"},{\"ImagId\":4820372,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493211\\/4913_01642769230.jpg\"}]},\"CityId\":14455,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493211\\/4913_b06b0837409ea9a8431493f66189a0df1642769141.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":86,\"Title\":\"Attukal Waterfalls\",\"Description\":\"The waterfall lays 9 km away from the Munnar town, on the way to Pallivasal.  Attukal offers the beauty of water falling from the top of the mountain. The sight of the roaring water and the rolling hills around is something which you can never delete from your memories.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1415\\/thumb\\/Attukal Waterfalls_231.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8387,\"Title\":\"Nilgiri tahr\",\"Description\":\"The Nilgiri tahr known locally as the Nilgiri ibex or simply ibex, is an ungulate that is endemic to the Nilgiri Hills and the southern portion of the Western Ghats in the states of Tamil Nadu and Kerala in Southern India. It is the state animal of Tamil Nadu.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Nilgiri_tahr_18697_1549434035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1739,\"Title\":\"Tea Gardens\",\"Description\":\"Tea Garden has become one of the reasons behind the international fame of the hill station of Munnar and regarded as a prominent hub of tea trade in the country. This hill station is synonymous with rolling hills that are carpeted with verdant plantations of tea. This place is recognised for having some of the best and most beautiful tea gardens across the globe. In present times, the hill station has more than 50 tea gardens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0868868,\"Long\":77.0652156,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Gardens_18697_1521638841.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2538,\"Title\":\"Tea Plantation\",\"Description\":\"Quaint cottages, fragrant tea gardens and mist-draped mornings are hallmarks of Munnar. For years the cool and picturesque town of Munnar was the summer retreat of the British and it still retains the charm of a colonial past. The destination is home to the only sandalwood forest in Kerala and is also famous for its exotic flora and fauna. The Nilgiri tahr (mountain goat), the grizzled giant squirrel and the once-in-twelve-year blooming wonder - Neelakurinji flower (Strobilantheskunthiana) are special to Munnar.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Tea_Plantation_6561_1512550027.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":262,\"Title\":\"Bustling Spice Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6318\\/thumb\\/Bustling Spice Market_764.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":486,\"Title\":\"Elephant Ride\",\"Description\":\"Tourist attraction where guests can take short elephant rides down a path surrounded by trees.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2708,\"Title\":\"Hawa Beach\",\"Description\":\"To begin, this beach has many names: Sea Rock beach, Eve&amp;#039;s beach, and some even call it Kovalam beach, which is wrong because that term applies to the whole area.\\r\\n\\r\\nThe good things: it has excellent swimming for domestic tourists, who generally not only can&amp;#039;t swim, but often have never seen the ocean and waves before in their life. Being a smaller bay to Lighthouse beach around the corner, it is mostly a calmer sea (though not always). This means you can stand or sit on the edges, and enjoy the smaller waves that roll in.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3883147,\"Long\":76.9765123,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/36_1520846727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":972,\"Title\":\"Lighthouse Beach\",\"Description\":\"Light house beach is named after the 30 meter high Light house here which is the most important feature of this beach. The Light House is located towards the southern end of the beach and it&amp;#039;s on a cape. There is an observation platform from which you can see Poovar in one direction and the famous Beemapalli mosque on the other. You can reach this platform by climbing a total of 142 steps.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4003984,\"Long\":76.9787076,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/269\\/thumb\\/Lighthouse Beach_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1870,\"Title\":\"Vellayani Lake\",\"Description\":\"Vellayani Lake is a freshwater lake that is located at a distance 7 km from the main town. Vellayani is the largest freshwater lake in Thiruvananthapuram. The surroundings look enchanting during moon-lit nights. The rain-fed lake is locally known as &amp;lsquo;Vellayani Kayal&amp;rsquo;. The water from the lake is used for irrigational purposes and for drinking.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":10.8505159,\"Long\":76.2710833,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4230\\/thumb\\/Vellayani Lake_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13990,\"Title\":\"Anantha Padmanabhaswamy Temple\",\"Description\":\"The Padmanabhaswamy temple is a Hindu temple located in Thiruvananthapuram, state capital of Kerala, India. The name of the city of Thiruvananthapuram in Malayalam translates to &amp;quot;The City of Lord Ananta&amp;quot;, referring to the deity of the Padmanabhaswamy temple.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Anantha_Padmanabhaswamy_Temple_34288_1580110680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13996,\"Title\":\"Napier Museum\",\"Description\":\"The Napier Museum is an art and natural history museum situated in Thiruvananthapuram, the capital city of Kerala, India.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Napier_Museum_34288_1580111802.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13998,\"Title\":\"Zoo\",\"Description\":\"The Thiruvananthapuram Zoo is located in the city of Thiruvananthapuram, the capital of Kerala, India. It occupies 55 acres of woodland, lakes, and lawns.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Zoo_34288_1580112277.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":41,\"Title\":\"Alleppey Beach\",\"Description\":\"Alappuzha Beach is a beach in Alappuzha town and a tourist attraction in Kerala, India.Beach has an old pier which extend to sea is over 150 years old.Alappuzha beach host many events annually like Alappuzha beach festival,Sand art festival and many more.\\r\\nAlappuzha beach is one of the major tourist spot in Alappuzha town. Alappuzha lighthouse situated near to the beach.Beach is accessible through various town roads and an elevated highway will passing by the beach as part of Alappuzha bypass in order to preserve the beauty of the area.Camel safaris was another attraction in beach which introduced a couple of years ago but it got banned by authorities.\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4942494,\"Long\":76.3171667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/21_1500899376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":42,\"Title\":\"Alleppey City Tour\",\"Description\":\"Alleppey has many tourist places to visit, there are very nice sightseeing, attractions in Alleppey which are must see in. Details on Alleppey city and tourist places.\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4980667,\"Long\":76.3388484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/130_1516803580.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1071,\"Title\":\"Marari Beach\",\"Description\":\"&amp;quot;Marari Beach is a perfect location to visit with family and friends. This is located in the Alappuzha District of Kerala. This beach in Kerala have a lot of coconut palm trees and golden sands. The beach is quite beautiful and The serenity and tranquility of this beach take beach lovers backwards in time. The slow pace of local life makes vacationing near the Marari beach a great experience.&amp;quot;\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.655838,\"Long\":76.375021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/Marari_Beach_670_1534850657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1578,\"Title\":\"Shikara Boat Ride\",\"Description\":\"he shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas ...\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4980667,\"Long\":76.3388484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/130_1516803681.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492113,\"Name\":\"Alleppey Deluxe Houseboat\",\"Star\":\"3.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.5014469\",\"Long\":\"76.3517957\",\"Address\":\"Finishing Point Road, Punnamada, Finishing Point, Alappuzha, Kerala 688013, India\"},\"Images\":{\"Image\":[{\"ImagId\":4820388,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492113\\/4913_01642772053.jpg\"},{\"ImagId\":4820389,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492113\\/4913_11642772054.png\"},{\"ImagId\":4820390,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492113\\/4913_21642772054.jpg\"}]},\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492113\\/4913_6988b4ed05450f28eaa27738ed0bf6761642772053.png\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":86,\"Title\":\"Attukal Waterfalls\",\"Description\":\"The waterfall lays 9 km away from the Munnar town, on the way to Pallivasal.  Attukal offers the beauty of water falling from the top of the mountain. The sight of the roaring water and the rolling hills around is something which you can never delete from your memories.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1415\\/thumb\\/Attukal Waterfalls_231.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":8387,\"Title\":\"Nilgiri tahr\",\"Description\":\"The Nilgiri tahr known locally as the Nilgiri ibex or simply ibex, is an ungulate that is endemic to the Nilgiri Hills and the southern portion of the Western Ghats in the states of Tamil Nadu and Kerala in Southern India. It is the state animal of Tamil Nadu.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Nilgiri_tahr_18697_1549434035.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1739,\"Title\":\"Tea Gardens\",\"Description\":\"Tea Garden has become one of the reasons behind the international fame of the hill station of Munnar and regarded as a prominent hub of tea trade in the country. This hill station is synonymous with rolling hills that are carpeted with verdant plantations of tea. This place is recognised for having some of the best and most beautiful tea gardens across the globe. In present times, the hill station has more than 50 tea gardens.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0868868,\"Long\":77.0652156,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Gardens_18697_1521638841.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2538,\"Title\":\"Tea Plantation\",\"Description\":\"Quaint cottages, fragrant tea gardens and mist-draped mornings are hallmarks of Munnar. For years the cool and picturesque town of Munnar was the summer retreat of the British and it still retains the charm of a colonial past. The destination is home to the only sandalwood forest in Kerala and is also famous for its exotic flora and fauna. The Nilgiri tahr (mountain goat), the grizzled giant squirrel and the once-in-twelve-year blooming wonder - Neelakurinji flower (Strobilantheskunthiana) are special to Munnar.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Tea_Plantation_6561_1512550027.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":262,\"Title\":\"Bustling Spice Market\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6318\\/thumb\\/Bustling Spice Market_764.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":486,\"Title\":\"Elephant Ride\",\"Description\":\"Tourist attraction where guests can take short elephant rides down a path surrounded by trees.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802561.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2708,\"Title\":\"Hawa Beach\",\"Description\":\"To begin, this beach has many names: Sea Rock beach, Eve&amp;#039;s beach, and some even call it Kovalam beach, which is wrong because that term applies to the whole area.\\r\\n\\r\\nThe good things: it has excellent swimming for domestic tourists, who generally not only can&amp;#039;t swim, but often have never seen the ocean and waves before in their life. Being a smaller bay to Lighthouse beach around the corner, it is mostly a calmer sea (though not always). This means you can stand or sit on the edges, and enjoy the smaller waves that roll in.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3883147,\"Long\":76.9765123,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/36_1520846727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":972,\"Title\":\"Lighthouse Beach\",\"Description\":\"Light house beach is named after the 30 meter high Light house here which is the most important feature of this beach. The Light House is located towards the southern end of the beach and it&amp;#039;s on a cape. There is an observation platform from which you can see Poovar in one direction and the famous Beemapalli mosque on the other. You can reach this platform by climbing a total of 142 steps.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4003984,\"Long\":76.9787076,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/269\\/thumb\\/Lighthouse Beach_160.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1870,\"Title\":\"Vellayani Lake\",\"Description\":\"Vellayani Lake is a freshwater lake that is located at a distance 7 km from the main town. Vellayani is the largest freshwater lake in Thiruvananthapuram. The surroundings look enchanting during moon-lit nights. The rain-fed lake is locally known as &amp;lsquo;Vellayani Kayal&amp;rsquo;. The water from the lake is used for irrigational purposes and for drinking.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":10.8505159,\"Long\":76.2710833,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4230\\/thumb\\/Vellayani Lake_708.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13990,\"Title\":\"Anantha Padmanabhaswamy Temple\",\"Description\":\"The Padmanabhaswamy temple is a Hindu temple located in Thiruvananthapuram, state capital of Kerala, India. The name of the city of Thiruvananthapuram in Malayalam translates to &amp;quot;The City of Lord Ananta&amp;quot;, referring to the deity of the Padmanabhaswamy temple.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Anantha_Padmanabhaswamy_Temple_34288_1580110680.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13996,\"Title\":\"Napier Museum\",\"Description\":\"The Napier Museum is an art and natural history museum situated in Thiruvananthapuram, the capital city of Kerala, India.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Napier_Museum_34288_1580111802.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":13998,\"Title\":\"Zoo\",\"Description\":\"The Thiruvananthapuram Zoo is located in the city of Thiruvananthapuram, the capital of Kerala, India. It occupies 55 acres of woodland, lakes, and lawns.\",\"CurrencyType\":0,\"CityId\":34288,\"CityName\":\"Trivandrum\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34288\\/sightseeing\\/Zoo_34288_1580112277.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":41,\"Title\":\"Alleppey Beach\",\"Description\":\"Alappuzha Beach is a beach in Alappuzha town and a tourist attraction in Kerala, India.Beach has an old pier which extend to sea is over 150 years old.Alappuzha beach host many events annually like Alappuzha beach festival,Sand art festival and many more.\\r\\nAlappuzha beach is one of the major tourist spot in Alappuzha town. Alappuzha lighthouse situated near to the beach.Beach is accessible through various town roads and an elevated highway will passing by the beach as part of Alappuzha bypass in order to preserve the beauty of the area.Camel safaris was another attraction in beach which introduced a couple of years ago but it got banned by authorities.\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4942494,\"Long\":76.3171667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/21_1500899376.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":42,\"Title\":\"Alleppey City Tour\",\"Description\":\"Alleppey has many tourist places to visit, there are very nice sightseeing, attractions in Alleppey which are must see in. Details on Alleppey city and tourist places.\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4980667,\"Long\":76.3388484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/130_1516803580.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1071,\"Title\":\"Marari Beach\",\"Description\":\"&amp;quot;Marari Beach is a perfect location to visit with family and friends. This is located in the Alappuzha District of Kerala. This beach in Kerala have a lot of coconut palm trees and golden sands. The beach is quite beautiful and The serenity and tranquility of this beach take beach lovers backwards in time. The slow pace of local life makes vacationing near the Marari beach a great experience.&amp;quot;\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.655838,\"Long\":76.375021,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/Marari_Beach_670_1534850657.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1578,\"Title\":\"Shikara Boat Ride\",\"Description\":\"he shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas ...\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":9.4980667,\"Long\":76.3388484,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/670\\/sightseeing\\/130_1516803681.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"223745\",\"Title\":\"Cochin - Munnar\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at Cochin, our representative will greet you at Cochin Airport\\/Railway Station. Later, proceed to Munnar &amp;amp; Check-in at the hotel, and relax for a while amidst the comforts of your room. On the way visit&amp;nbsp;&lt;strong&gt;Attukal Waterfalls&lt;\\/strong&gt;, which is amongst the most famous waterfalls in the region. You will love the sweet noise of the flow of water that falls down the hill. Explore the rest of the day at your own leisure in Munnar. Dinner and overnight stay at the Hotel\\/Resort.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493210,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":86,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223746\",\"Title\":\"Munnar \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Enjoy the scrumptious breakfast, carry your packed lunch for a full day sightseeing of Munnar. Begin with the visit of the Tea Museum at the Tea Gardens. You can taste the Tea and shop it at the museum. Next, Visit Rajamala- the house of the highly endangered mountain goats - the&amp;nbsp;Nilgiri&amp;nbsp;Thars. Later on, visit the Echo point. The lush green mountains will echo the names of your loved ones while you scream them. Further, you will get transferred to&amp;nbsp;Mattupetty&amp;nbsp;Dam, which is amongst the biggest Dam of the region. Take advantage of the Speed boating facilities available here. The dam is flanked by forests and a vast expanse of grassland on one side and the&amp;nbsp;Kundala&amp;nbsp;dam, tea plantation on the other side. Transfer back to the hotel for dinner and overnight stay at the Hotel\\/Resort.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493210,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":925,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8387,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1739,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1740,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2538,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223747\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223748\",\"Title\":\"Munnar - Thekkady\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Enjoy the scrumptious breakfast. Later, proceed to&amp;nbsp;Thekkady&amp;nbsp;&amp;amp; Check-in at the hotel and relax for a while amidst the comforts of your room. Post Lunch, get ready to visit&amp;nbsp;Periyar&amp;nbsp;Lake for boating. This is the only sanctuary in India where you can have the unique experience of viewing the wildlife at close quarters from the safety of your boat. The scenic views of the lush green mountains and fields around the lakesides will make you feel very happy. The options like Elephant ride, Cultural show, and visit of spice garden to buy some spices are available during the visit. Later, transfer back to the hotel for dinner and overnight stay at the Hotel\\/Resort in&amp;nbsp;Thekkady.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492111,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":262,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":486,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1351,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223749\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223750\",\"Title\":\"Thekkady - Kovalam\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, proceed to&amp;nbsp;Kovalam&amp;nbsp;&amp;amp; Check-in at the hotel, and relax for a while amidst the comforts of your room. Post Lunch, visit the city of&amp;nbsp;Kovalam&amp;nbsp;- breathtakingly beautiful - a haven of peace and&amp;nbsp;tranquility&amp;nbsp;- the idyllic tourist destination in God&amp;#39;s own country.&amp;nbsp;Kovalam&amp;nbsp;offers an excellent diversity with&amp;nbsp;Kovalam&amp;nbsp;beach to suit all desires and occasions. Visit lighthouse beach and Hawah beach. Proceed to the hotel for dinner and overnight stay at the Hotel\\/Resort.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14455,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2708,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":972,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223751\",\"Title\":\"Kovalam &acirc;&euro;&ldquo; Trivandrum - Kovalam\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Enjoy the sumptuous breakfast. Take your packed lunch and proceed to Trivandrum for a city tour covering Napier Museum, Sri Padmanabha Swami Temple, Vellayani Lake, and Zoo. After a full day of green surroundings and a sacred visit to the world&amp;rsquo;s richest temple of Lord Vishnu, transfer back to the hotel for dinner and overnight stay at the Hotel\\/Resort.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14455,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493211,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1606,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1870,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13990,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13996,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":13998,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223752\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14455,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223753\",\"Title\":\"Kovalam - Alleppey\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Enjoy the sumptuous breakfast. Later, proceed to Alleppey. The &amp;quot;Venice of India&amp;quot; is noted for its winding waterways and canals. Upon arrival, Check-in at the hotel and relax for a while amidst the comforts of your room. After Lunch, Explore the natural beauty of Kerala, the paddy fields, narrow canals, coir villages, etc.&amp;nbsp;Begin with Alleppey beach, city tour,&amp;nbsp;The two hours of backwater boat ride will offer some great moments of your life with its spectacular views of the clean green waters of Kerala, The God&amp;rsquo;s own country.&amp;nbsp;Visit Marari Beach to witness the&amp;nbsp;stunning beauty of the sea. (If time permits).&amp;nbsp;Transfer back to your hotel for dinner and overnight stay. You can choose the option of a stay in a Deluxe&amp;nbsp;Houseboat with some extra charges.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492113,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":41,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":42,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1071,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1578,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223754\",\"Title\":\"Alleppey &acirc;&euro;&ldquo; Cochin- Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After&amp;nbsp;breakfast, transfer&amp;nbsp;to Cochin Airport \\/ Railway station. Cochin local sightseeing&amp;nbsp;of visits to&amp;nbsp;Mattancherry&amp;nbsp;Palace, Fort Kochi, Chinese Fishing Nets, Marine Drive,&amp;nbsp;MG Road, etc will be offered if time permits. Flyback home with sweet memories of your tour.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31459\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18999.75\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":19000,\"priceDoubleOcc\":\"18999.75\",\"priceSingleOcc\":28502.25,\"priceExtraBed\":\"18999.75\",\"priceWithoutBed\":\"14999.25\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18999.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31459\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18095.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-06\",\"To\":\"2022-03-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-20\",\"To\":\"2022-03-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-27\",\"To\":\"2022-03-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-19\",\"To\":\"2022-06-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-01\",\"To\":\"2022-11-01\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-03\",\"To\":\"2022-11-03\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-07\",\"To\":\"2022-11-07\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-11\",\"To\":\"2022-11-11\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-15\",\"To\":\"2022-11-15\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-17\",\"To\":\"2022-11-17\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-21\",\"To\":\"2022-11-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-21\",\"To\":\"2022-11-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-21\",\"To\":\"2022-11-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-21\",\"To\":\"2022-11-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-21\",\"To\":\"2022-11-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-21\",\"To\":\"2022-11-21\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-25\",\"To\":\"2022-11-25\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-29\",\"To\":\"2022-11-29\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-02\",\"To\":\"2022-12-02\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-06\",\"To\":\"2022-12-06\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-08\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-12\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-16\",\"To\":\"2022-12-16\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-20\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-26\",\"To\":\"2022-12-26\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-30\",\"To\":\"2022-12-30\",\"Currency\":1,\"priceTripleOcc\":18095,\"priceDoubleOcc\":\"18095.00\",\"priceSingleOcc\":27145,\"priceExtraBed\":\"18095.00\",\"priceWithoutBed\":\"14285.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"18095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30 Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions&amp;nbsp;as per booking forms&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rates are subject to change&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entry Tickets to be paid by Clients Directly&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Surcharges&amp;nbsp;applicable on certain dates&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Munnar&amp;nbsp;:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Tea Museum&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Echo Point&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mattupetty&amp;nbsp;dam&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Eravikulam&amp;nbsp;national park&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Attukad&amp;nbsp;Waterfalls&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Munnar&amp;nbsp;Town&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Thekkady&amp;nbsp;:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Periyar&amp;nbsp;Lake&amp;nbsp;(Boat Ride &amp;ndash; Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Periyar&amp;nbsp;Wild Life&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Elephant Ride (Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cultural&amp;nbsp;Show (Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Spice Garden (Enjoy on your own)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Kovalam&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Kovalam&amp;nbsp;Beaches&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kanyakumari&amp;nbsp;(Optional)&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Vellayani&amp;nbsp;Lake&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sree&amp;nbsp;Padmanabhaswamy&amp;nbsp;Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Trivandrum&amp;nbsp;City tour&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Allepey&amp;nbsp;:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Back Water&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Stay in Houseboat (Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Cochin&amp;nbsp;:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Cochin city tour (If Time Permits)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mattancherry&amp;nbsp;Palace&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Fort Kochi&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chinese Fishing Nets&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Marine Drive&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;MG Road&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&lt;\\/strong&gt;&amp;nbsp;(Pure Veg.\\/Jain&amp;nbsp;Kitchen by&amp;nbsp;Maharaj)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05 Lunches&amp;nbsp;(Packed lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06 Dinners&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All transfers by 40-45&amp;nbsp;Seater&amp;nbsp;Bus&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9325\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9326\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"223745\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[223745],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223746\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[223746],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223747\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[223747],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223748\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[223748],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223749\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223749],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223750\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223750],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223751\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[223751],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223752\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[223752],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223753\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[223753],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223754\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[223754],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"6561\":{\"CityName\":\"Cochin\",\"FromDate\":{\"20220306\":{\"FromDate\":\"2022-03-06\",\"FromDateDMY\":\"06\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220313\":{\"FromDate\":\"2022-03-13\",\"FromDateDMY\":\"13\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220320\":{\"FromDate\":\"2022-03-20\",\"FromDateDMY\":\"20\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220327\":{\"FromDate\":\"2022-03-27\",\"FromDateDMY\":\"27\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220403\":{\"FromDate\":\"2022-04-03\",\"FromDateDMY\":\"03\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220410\":{\"FromDate\":\"2022-04-10\",\"FromDateDMY\":\"10\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220417\":{\"FromDate\":\"2022-04-17\",\"FromDateDMY\":\"17\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220424\":{\"FromDate\":\"2022-04-24\",\"FromDateDMY\":\"24\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220501\":{\"FromDate\":\"2022-05-01\",\"FromDateDMY\":\"01\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220508\":{\"FromDate\":\"2022-05-08\",\"FromDateDMY\":\"08\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220515\":{\"FromDate\":\"2022-05-15\",\"FromDateDMY\":\"15\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220522\":{\"FromDate\":\"2022-05-22\",\"FromDateDMY\":\"22\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220529\":{\"FromDate\":\"2022-05-29\",\"FromDateDMY\":\"29\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220605\":{\"FromDate\":\"2022-06-05\",\"FromDateDMY\":\"05\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220612\":{\"FromDate\":\"2022-06-12\",\"FromDateDMY\":\"12\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220619\":{\"FromDate\":\"2022-06-19\",\"FromDateDMY\":\"19\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220626\":{\"FromDate\":\"2022-06-26\",\"FromDateDMY\":\"26\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220703\":{\"FromDate\":\"2022-07-03\",\"FromDateDMY\":\"03\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220710\":{\"FromDate\":\"2022-07-10\",\"FromDateDMY\":\"10\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220717\":{\"FromDate\":\"2022-07-17\",\"FromDateDMY\":\"17\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220724\":{\"FromDate\":\"2022-07-24\",\"FromDateDMY\":\"24\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220807\":{\"FromDate\":\"2022-08-07\",\"FromDateDMY\":\"07\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220814\":{\"FromDate\":\"2022-08-14\",\"FromDateDMY\":\"14\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220821\":{\"FromDate\":\"2022-08-21\",\"FromDateDMY\":\"21\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220828\":{\"FromDate\":\"2022-08-28\",\"FromDateDMY\":\"28\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220904\":{\"FromDate\":\"2022-09-04\",\"FromDateDMY\":\"04\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220911\":{\"FromDate\":\"2022-09-11\",\"FromDateDMY\":\"11\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220918\":{\"FromDate\":\"2022-09-18\",\"FromDateDMY\":\"18\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220925\":{\"FromDate\":\"2022-09-25\",\"FromDateDMY\":\"25\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221002\":{\"FromDate\":\"2022-10-02\",\"FromDateDMY\":\"02\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221009\":{\"FromDate\":\"2022-10-09\",\"FromDateDMY\":\"09\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221016\":{\"FromDate\":\"2022-10-16\",\"FromDateDMY\":\"16\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221020\":{\"FromDate\":\"2022-10-20\",\"FromDateDMY\":\"20\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221021\":{\"FromDate\":\"2022-10-21\",\"FromDateDMY\":\"21\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221022\":{\"FromDate\":\"2022-10-22\",\"FromDateDMY\":\"22\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221023\":{\"FromDate\":\"2022-10-23\",\"FromDateDMY\":\"23\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221025\":{\"FromDate\":\"2022-10-25\",\"FromDateDMY\":\"25\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221026\":{\"FromDate\":\"2022-10-26\",\"FromDateDMY\":\"26\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221027\":{\"FromDate\":\"2022-10-27\",\"FromDateDMY\":\"27\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221101\":{\"FromDate\":\"2022-11-01\",\"FromDateDMY\":\"01\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221103\":{\"FromDate\":\"2022-11-03\",\"FromDateDMY\":\"03\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221105\":{\"FromDate\":\"2022-11-05\",\"FromDateDMY\":\"05\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221107\":{\"FromDate\":\"2022-11-07\",\"FromDateDMY\":\"07\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221109\":{\"FromDate\":\"2022-11-09\",\"FromDateDMY\":\"09\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221111\":{\"FromDate\":\"2022-11-11\",\"FromDateDMY\":\"11\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221113\":{\"FromDate\":\"2022-11-13\",\"FromDateDMY\":\"13\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221115\":{\"FromDate\":\"2022-11-15\",\"FromDateDMY\":\"15\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221117\":{\"FromDate\":\"2022-11-17\",\"FromDateDMY\":\"17\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221119\":{\"FromDate\":\"2022-11-19\",\"FromDateDMY\":\"19\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221121\":{\"FromDate\":\"2022-11-21\",\"FromDateDMY\":\"21\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221123\":{\"FromDate\":\"2022-11-23\",\"FromDateDMY\":\"23\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221125\":{\"FromDate\":\"2022-11-25\",\"FromDateDMY\":\"25\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221127\":{\"FromDate\":\"2022-11-27\",\"FromDateDMY\":\"27\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221129\":{\"FromDate\":\"2022-11-29\",\"FromDateDMY\":\"29\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221202\":{\"FromDate\":\"2022-12-02\",\"FromDateDMY\":\"02\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221204\":{\"FromDate\":\"2022-12-04\",\"FromDateDMY\":\"04\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221206\":{\"FromDate\":\"2022-12-06\",\"FromDateDMY\":\"06\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221208\":{\"FromDate\":\"2022-12-08\",\"FromDateDMY\":\"08\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221210\":{\"FromDate\":\"2022-12-10\",\"FromDateDMY\":\"10\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221212\":{\"FromDate\":\"2022-12-12\",\"FromDateDMY\":\"12\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221214\":{\"FromDate\":\"2022-12-14\",\"FromDateDMY\":\"14\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221216\":{\"FromDate\":\"2022-12-16\",\"FromDateDMY\":\"16\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221218\":{\"FromDate\":\"2022-12-18\",\"FromDateDMY\":\"18\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221220\":{\"FromDate\":\"2022-12-20\",\"FromDateDMY\":\"20\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221222\":{\"FromDate\":\"2022-12-22\",\"FromDateDMY\":\"22\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221224\":{\"FromDate\":\"2022-12-24\",\"FromDateDMY\":\"24\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221226\":{\"FromDate\":\"2022-12-26\",\"FromDateDMY\":\"26\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221228\":{\"FromDate\":\"2022-12-28\",\"FromDateDMY\":\"28\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221230\":{\"FromDate\":\"2022-12-30\",\"FromDateDMY\":\"30\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Munnar,Thekkady,Kovalam,Alleppey','Munnar,Kerala,Indian Subcontinent,South India,India,Thekkady,Kovalam,Alleppey,Cochin,Trivandrum',NULL,'18697,27156,14455,670',18095,19000,6,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-12-30 00:00:00','2022-12-30 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-classic-kerala-2022',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (31,31453,1,12577,0,0,0,'Honeymoon,Beach,Romantic,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31453,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_astonishing_andaman_2022_1642404418.jpg\",\"BookingValidUntill\":\"2022-12-29\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The Andaman Islands are an Indian archipelago in the Bay of Bengal. These roughly 300 islands are known for their palm-lined, white-sand beaches, mangroves, and tropical rainforests. Coral reefs supporting marine life such as sharks and rays make for popular diving and snorkeling sites. Indigenous Andaman Islanders inhabit the more remote islands, many of which are off-limits to visitors.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For its turquoise waters, sugary sands, and sun-drenched beaches, Havelock is a magnet for ardent divers and leisure seekers. Port Blair&amp;rsquo;s perfect setting and history, home to the Cellular Jail outside of the very British Ross and Viper Islands, will be the perfect starting point for your sojourn into the Andaman Islands.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"\",\"Name\":\"Ex. Astonishing Andaman 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-29\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":193663,\"Name\":\"TSG Emerald View\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.668704\",\"Long\":\"92.731382\",\"Address\":\"25 Maulana Azad Road Phoenix Bay\"},\"Images\":{\"Image\":[{\"ImagId\":4329460,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix1.agoda.net\\/hotelimages\\/110\\/110941\\/110941_14042219070019159243.jpg?s=312x\"},{\"ImagId\":4329461,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix5.agoda.net\\/hotelimages\\/110\\/110941\\/110941_14042219100019159292.jpg?s=312x\"},{\"ImagId\":4329462,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix3.agoda.net\\/hotelimages\\/110\\/110941\\/110941_14042219100019159296.jpg?s=312x\"},{\"ImagId\":4329463,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix4.agoda.net\\/hotelimages\\/110\\/110941\\/110941_0912301147002217487.jpg?s=312x\"},{\"ImagId\":4329464,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/pix2.agoda.net\\/hotelimages\\/110\\/110941\\/110941_14042219070019159242.jpg?s=312x\"}]},\"CityId\":32511,\"Brief\":\"TSG The Emerald Hotel - Port Blair is perfectly located for both business and leisure guests in Andaman and Nicobar Islands. Both business travelers and tourists can enjoy the hotel&#039;s facilities and services. Free Wi-Fi in all rooms, 24-hour front desk, 24-hour room service, express check-in\\/check-out, luggage storage are there for guest&#039;s enjoyment. Comfortable guestrooms ensure a good night&#039;s sleep with some rooms featuring facilities such as television LCD\\/plasma screen, internet access &ndash; wireless (complimentary), non smoking rooms, air conditioning, heating. Recuperate from a full day of sightseeing in the comfort of your room or take advantage of the hotel&#039;s recreational facilities, including fishing, spa, massage, water sports (motorized), water sports (non-motorized). TSG The Emerald Hotel - Port Blair combines warm hospitality with a lovely ambiance to make your stay in Andaman and Nicobar Islands unforgettable.\",\"MainImg\":\"http:\\/\\/pix1.agoda.net\\/hotelimages\\/110\\/110941\\/110941_14042219070019159243.jpg?s=312x\",\"AccoAminitiesMask\":\"101000001000110000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":16535,\"Title\":\"Ferry Transfer.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2286,\"Title\":\"North Bay (Coral Island)\",\"Description\":\"North Bay Island, also known as Coral Island is a beautiful beach island, placed just northwards of Port Blair. It is known for vibrant corals, colorful fishes and variety of vegetation. It is ideal place for scuba diving and snorkeling along with coral under water treasures. The beach around the island is very famous for under water corals. Coral island with white sand beaches and surrounded by the pristine beauty of Nature that attract any sea loving human. The Coral reefs are gorgeously decorated by nature to stun the visitor.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/North_Bay_(Coral_Island)_32511_1519649474.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2278,\"Title\":\"Ross Island\",\"Description\":\"Few miles from Port Blair is the Ross Island, once an administrative headquarter for the Britishers, before an earthquake rocked the Island in 1941. The British then left the island and took settlement at Port Blair, since then the Island could never recover from the decay and neglect which had set in. Slowly but steadily the nature took its toll, as banyan trees engulfed the buildings thus replacing the structures created by man. This island makes you nostalgic and takes you back in time when this was an administrative settlement for the Britishers. The Indian Navy has rebuilt some of the old buildings like the bakery and the local stores, from where souvenirs are available.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.67583,\"Long\":92.762425,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Ross_Island_32511_1519650801.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":480824,\"Name\":\"TSG Blue Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.989574\",\"Long\":\"92.954881\",\"Address\":\"Radha Nagar Beach Havelock, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":16535,\"Title\":\"Ferry Transfer.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2286,\"Title\":\"North Bay (Coral Island)\",\"Description\":\"North Bay Island, also known as Coral Island is a beautiful beach island, placed just northwards of Port Blair. It is known for vibrant corals, colorful fishes and variety of vegetation. It is ideal place for scuba diving and snorkeling along with coral under water treasures. The beach around the island is very famous for under water corals. Coral island with white sand beaches and surrounded by the pristine beauty of Nature that attract any sea loving human. The Coral reefs are gorgeously decorated by nature to stun the visitor.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/North_Bay_(Coral_Island)_32511_1519649474.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2278,\"Title\":\"Ross Island\",\"Description\":\"Few miles from Port Blair is the Ross Island, once an administrative headquarter for the Britishers, before an earthquake rocked the Island in 1941. The British then left the island and took settlement at Port Blair, since then the Island could never recover from the decay and neglect which had set in. Slowly but steadily the nature took its toll, as banyan trees engulfed the buildings thus replacing the structures created by man. This island makes you nostalgic and takes you back in time when this was an administrative settlement for the Britishers. The Indian Navy has rebuilt some of the old buildings like the bakery and the local stores, from where souvenirs are available.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.67583,\"Long\":92.762425,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Ross_Island_32511_1519650801.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492309,\"Name\":\"TSG Aura Resort\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.821431\",\"Long\":\"93.061296\",\"Address\":\"Beach No. 5, Sitapur Beach, Neil Islands, Port Blair, Andaman and Nicobar Islands 744104, India\"},\"Images\":{\"Image\":[{\"ImagId\":4820163,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_01641903693.jpg\"},{\"ImagId\":4820164,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_11641903693.jpg\"},{\"ImagId\":4820165,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_21641903693.jpg\"},{\"ImagId\":4820166,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_31641903693.jpg\"}]},\"CityId\":34567,\"Brief\":\"&lt;p&gt;Luxury has always been at it&amp;#39;s finest at Aura Hotel, Andaman and Nicobar Islands, a pearl in the TSG Group&amp;#39;s set of hotels. The Aura stands as a monument to the service and warm hospitality of the Andaman Islands with its beautiful view of the beach. The hotel offers its guests nothing less than a memorable stay. We understand your need for a hassle free and relaxing vacation and make it our obligation to give you the same.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_9f869bc13dffbb4616d8c87ed7383e3c1641903693.jpg\",\"AccoAminitiesMask\":\"111000001000111000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":16535,\"Title\":\"Ferry Transfer.\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2286,\"Title\":\"North Bay (Coral Island)\",\"Description\":\"North Bay Island, also known as Coral Island is a beautiful beach island, placed just northwards of Port Blair. It is known for vibrant corals, colorful fishes and variety of vegetation. It is ideal place for scuba diving and snorkeling along with coral under water treasures. The beach around the island is very famous for under water corals. Coral island with white sand beaches and surrounded by the pristine beauty of Nature that attract any sea loving human. The Coral reefs are gorgeously decorated by nature to stun the visitor.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/North_Bay_(Coral_Island)_32511_1519649474.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2278,\"Title\":\"Ross Island\",\"Description\":\"Few miles from Port Blair is the Ross Island, once an administrative headquarter for the Britishers, before an earthquake rocked the Island in 1941. The British then left the island and took settlement at Port Blair, since then the Island could never recover from the decay and neglect which had set in. Slowly but steadily the nature took its toll, as banyan trees engulfed the buildings thus replacing the structures created by man. This island makes you nostalgic and takes you back in time when this was an administrative settlement for the Britishers. The Indian Navy has rebuilt some of the old buildings like the bakery and the local stores, from where souvenirs are available.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.67583,\"Long\":92.762425,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Ross_Island_32511_1519650801.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"223704\",\"Title\":\"Arrival &acirc;&euro;&ldquo; Port Blair\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair&acirc;&euro;&macr;airport, meet and greet by our local representative in&amp;nbsp;Port Blair&amp;nbsp;to pick up and transfer to the pre-assigned hotel. Check-in and relax. In the evening, visit&amp;nbsp;Corbyn&amp;rsquo;s Cove&acirc;&euro;&macr;Beach which is 9 km from&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair&acirc;&euro;&macr;&amp;ndash; It&amp;rsquo;s a coconut palm fringed beach, ideal for swimming, sun-basking &amp;amp; bathing. Then proceed to&acirc;&euro;&macr;Cellular Jail Museum,&acirc;&euro;&macr;and later attend the enthralling&acirc;&euro;&macr;Sound and light show&acirc;&euro;&macr;at Cellular Jail- where the heroic saga of the Indian freedom struggle is brought alive.&acirc;&euro;&macr;Transfer back to the hotel for dinner and Overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":193663,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2276,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2277,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2294,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223705\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223706\",\"Title\":\"Port Blair &acirc;&euro;&ldquo; Havelock Island\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, departure by inter-island ferry to Havelock Island (57 kms by sea from&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair). Transfer and check in to your hotel and relax. Post lunch, transfer to the World Famous &amp;ldquo;Radha Nagar Beach&amp;rdquo; (Beach number 7) at Havelock. This is the most popular beach named &amp;ldquo;Best Beach in Asia &amp;ndash; by Time in 2004&amp;rdquo;. Indulge yourself in the optional water sports activities and simply relax at the famous beach. Transfer back to the hotel for Dinner and Overnight stay at the respective Hotel \\/ Resort at&amp;nbsp;Havelock Island.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480824,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":16535,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223707\",\"Title\":\"Havelock Island\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, proceed to&acirc;&euro;&macr;Elephant Beach&acirc;&euro;&macr;for an adventurous&amp;nbsp;snorkeling&amp;nbsp;experience.&acirc;&euro;&macr;Elephant Beach&acirc;&euro;&macr;is located near the eastern coast of Havelock Island. It is approachable by&amp;nbsp;dunghi&amp;nbsp;(small wooden carved fishing motorboat).&amp;nbsp;Snorkeling&amp;nbsp;is leisure water sports in which a person swims on the surface of water wearing a face mask and view underwater corals. Please carry your snacks \\/ packed lunch, drink water &amp;amp; change dress. In the evening, return back to the Hotel. Dinner and overnight stay will be at the respective Hotel \\/ Resort at&amp;nbsp;Havelock Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":480824,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223708\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223709\",\"Title\":\"Havelock Island &acirc;&euro;&ldquo; Neil Island\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After Breakfast, transfer to&acirc;&euro;&macr;Neil Island by boat\\/ferry. This is a beautiful island with plenty of marine life triangularly shaped with lush green surroundings of paddy fields, banana plantations, and tropical trees. Pristine sandy beaches at&acirc;&euro;&macr;Bharatpur&acirc;&euro;&macr;and&acirc;&euro;&macr;Lakshmanpur&acirc;&euro;&macr;are some of the best beaches to explore. The breathtaking view of the sea and the lushing greeneries in the island is really rejuvenating and enjoyable for enthusiastic travelers. Arrive and check in to your hotel. After Lunch, Visit&acirc;&euro;&macr;Lakshmanpur&acirc;&euro;&macr;beach, where you can see a natural bridge formation. Later, visit&acirc;&euro;&macr;Bharatpur&acirc;&euro;&macr;beach, ideal for&amp;nbsp;Snorkeling&amp;nbsp;and glass-bottom boat rides. You can see the beautiful coral and underwater life. Transfer back to the hotel for dinner and Overnight stay at respective Hotel \\/ Resort at&acirc;&euro;&macr;Neil Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492309,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6550,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6541,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223710\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223711\",\"Title\":\"Neil Island &acirc;&euro;&ldquo; Port Blair\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, morning free at leisure. Post Lunch, travel back to&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair&acirc;&euro;&macr;(as per your booked ferry timings)&acirc;&euro;&macr;and transfer to the pre-assigned hotel. Dinner and overnight stay&acirc;&euro;&macr;will be at the respective Hotel \\/ Resort at&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":193663,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":16535,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223712\",\"Title\":\"Port Blair \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Start after breakfast for a full-day Excursion to&acirc;&euro;&macr;North Bay (Coral Island)&acirc;&euro;&macr;- to see coral reefs, exotic varieties of beautiful ornamental fishes and other marine life. The glass bottom boat ride helps one to&acirc;&euro;&macr;take a closer look at the vast coral colonies. You can also enjoy&amp;nbsp;Snorkelling&amp;nbsp;and other water sports activities like Jet Ski Ride, Sea&amp;nbsp;walk&amp;nbsp;etc. Please carry your snacks \\/ pack lunch, drinking water &amp;amp; changing dress.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Further, visit&acirc;&euro;&macr;Ross Island&acirc;&euro;&macr;- from where the&acirc;&euro;&macr;British governed the entire Andaman &amp;amp; Nicobar Islands, prior to India&amp;rsquo;s Independence. One can see remnants of an opulent past in the ruins of the church, swimming pool and the chief commissioner&amp;#39;s residence with its huge gardens and grand ballrooms.&amp;nbsp;There is also a cemetery and a small museum managed by the Indian Navy. This island is an ideal destination for nature walk&acirc;&euro;&macr;amidst sylvan surroundings with deer, peacocks, exotic birds, etc.&acirc;&euro;&macr;In the evening, transfer to the hotel for dinner and overnight stay at respective Hotel \\/ Resort at&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":193663,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2286,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2278,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223713\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After Breakfast, check out and transfer to the airport for your journey back home after a wonderful vacation.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31453\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37999.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":38000,\"priceDoubleOcc\":\"37999.50\",\"priceSingleOcc\":56999.25,\"priceExtraBed\":\"37999.50\",\"priceWithoutBed\":\"32999.40\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37999.50\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31453\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"36190.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-12\",\"To\":\"2022-02-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-19\",\"To\":\"2022-02-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-26\",\"To\":\"2022-02-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-05\",\"To\":\"2022-03-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-12\",\"To\":\"2022-03-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-26\",\"To\":\"2022-03-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-02\",\"To\":\"2022-04-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-16\",\"To\":\"2022-04-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-30\",\"To\":\"2022-04-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-14\",\"To\":\"2022-05-14\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-02\",\"To\":\"2022-07-02\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-09\",\"To\":\"2022-07-09\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-16\",\"To\":\"2022-07-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-06\",\"To\":\"2022-08-06\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-13\",\"To\":\"2022-08-13\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-20\",\"To\":\"2022-08-20\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-27\",\"To\":\"2022-08-27\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-03\",\"To\":\"2022-09-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-12\",\"To\":\"2022-09-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-24\",\"To\":\"2022-09-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-08\",\"To\":\"2022-10-08\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-29\",\"To\":\"2022-10-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-05\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-12\",\"To\":\"2022-11-12\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-19\",\"To\":\"2022-11-19\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-26\",\"To\":\"2022-11-26\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-03\",\"To\":\"2022-12-03\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-10\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-17\",\"To\":\"2022-12-17\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-22\",\"To\":\"2022-12-22\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-24\",\"To\":\"2022-12-24\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-29\",\"To\":\"2022-12-29\",\"Currency\":1,\"priceTripleOcc\":36190,\"priceDoubleOcc\":\"36190.00\",\"priceSingleOcc\":54285,\"priceExtraBed\":\"36190.00\",\"priceWithoutBed\":\"31428.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"36190.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30&amp;nbsp;Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions&amp;nbsp;as per booking forms&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Rates are subject to change&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entry Tickets to be paid by Clients Directly&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package&amp;nbsp;Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Port Blair&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Corbyn&amp;rsquo;s&amp;nbsp;Cove&amp;nbsp;beach&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Science Centre&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cellular Jail&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sound and light show&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;North Bay&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Jet Ski Ride &amp;amp; Sea walk (optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ross Island&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Havelock&amp;nbsp;&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Radha&amp;nbsp;Nagar Beach&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Elephant Beach&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Neil Island&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Bharatpur&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lakshmanpur&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coral Colonies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06&amp;nbsp;Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05 Lunches&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06&amp;nbsp;Dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All transfers by A\\/C&amp;nbsp;Innova&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9321\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9322\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"223704\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[223704],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223705\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[223705],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223706\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[223706],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223707\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[223707],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223708\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223708],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223709\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223709],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223710\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[223710],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223711\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[223711],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223712\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[223712],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223713\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[223713],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"32511\":{\"CityName\":\"Port Blair\",\"FromDate\":{\"20220205\":{\"FromDate\":\"2022-02-05\",\"FromDateDMY\":\"05\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220212\":{\"FromDate\":\"2022-02-12\",\"FromDateDMY\":\"12\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220219\":{\"FromDate\":\"2022-02-19\",\"FromDateDMY\":\"19\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220226\":{\"FromDate\":\"2022-02-26\",\"FromDateDMY\":\"26\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220305\":{\"FromDate\":\"2022-03-05\",\"FromDateDMY\":\"05\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220312\":{\"FromDate\":\"2022-03-12\",\"FromDateDMY\":\"12\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220319\":{\"FromDate\":\"2022-03-19\",\"FromDateDMY\":\"19\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220326\":{\"FromDate\":\"2022-03-26\",\"FromDateDMY\":\"26\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220402\":{\"FromDate\":\"2022-04-02\",\"FromDateDMY\":\"02\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220409\":{\"FromDate\":\"2022-04-09\",\"FromDateDMY\":\"09\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220416\":{\"FromDate\":\"2022-04-16\",\"FromDateDMY\":\"16\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220423\":{\"FromDate\":\"2022-04-23\",\"FromDateDMY\":\"23\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220430\":{\"FromDate\":\"2022-04-30\",\"FromDateDMY\":\"30\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220507\":{\"FromDate\":\"2022-05-07\",\"FromDateDMY\":\"07\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220514\":{\"FromDate\":\"2022-05-14\",\"FromDateDMY\":\"14\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220521\":{\"FromDate\":\"2022-05-21\",\"FromDateDMY\":\"21\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220528\":{\"FromDate\":\"2022-05-28\",\"FromDateDMY\":\"28\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220604\":{\"FromDate\":\"2022-06-04\",\"FromDateDMY\":\"04\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220611\":{\"FromDate\":\"2022-06-11\",\"FromDateDMY\":\"11\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220618\":{\"FromDate\":\"2022-06-18\",\"FromDateDMY\":\"18\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220625\":{\"FromDate\":\"2022-06-25\",\"FromDateDMY\":\"25\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220702\":{\"FromDate\":\"2022-07-02\",\"FromDateDMY\":\"02\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220709\":{\"FromDate\":\"2022-07-09\",\"FromDateDMY\":\"09\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220716\":{\"FromDate\":\"2022-07-16\",\"FromDateDMY\":\"16\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220723\":{\"FromDate\":\"2022-07-23\",\"FromDateDMY\":\"23\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220730\":{\"FromDate\":\"2022-07-30\",\"FromDateDMY\":\"30\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220806\":{\"FromDate\":\"2022-08-06\",\"FromDateDMY\":\"06\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220813\":{\"FromDate\":\"2022-08-13\",\"FromDateDMY\":\"13\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220815\":{\"FromDate\":\"2022-08-15\",\"FromDateDMY\":\"15\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220816\":{\"FromDate\":\"2022-08-16\",\"FromDateDMY\":\"16\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220817\":{\"FromDate\":\"2022-08-17\",\"FromDateDMY\":\"17\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220820\":{\"FromDate\":\"2022-08-20\",\"FromDateDMY\":\"20\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220827\":{\"FromDate\":\"2022-08-27\",\"FromDateDMY\":\"27\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220903\":{\"FromDate\":\"2022-09-03\",\"FromDateDMY\":\"03\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220910\":{\"FromDate\":\"2022-09-10\",\"FromDateDMY\":\"10\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220912\":{\"FromDate\":\"2022-09-12\",\"FromDateDMY\":\"12\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220924\":{\"FromDate\":\"2022-09-24\",\"FromDateDMY\":\"24\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221001\":{\"FromDate\":\"2022-10-01\",\"FromDateDMY\":\"01\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221008\":{\"FromDate\":\"2022-10-08\",\"FromDateDMY\":\"08\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221015\":{\"FromDate\":\"2022-10-15\",\"FromDateDMY\":\"15\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221021\":{\"FromDate\":\"2022-10-21\",\"FromDateDMY\":\"21\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221022\":{\"FromDate\":\"2022-10-22\",\"FromDateDMY\":\"22\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221023\":{\"FromDate\":\"2022-10-23\",\"FromDateDMY\":\"23\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221025\":{\"FromDate\":\"2022-10-25\",\"FromDateDMY\":\"25\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221026\":{\"FromDate\":\"2022-10-26\",\"FromDateDMY\":\"26\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221029\":{\"FromDate\":\"2022-10-29\",\"FromDateDMY\":\"29\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221105\":{\"FromDate\":\"2022-11-05\",\"FromDateDMY\":\"05\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221112\":{\"FromDate\":\"2022-11-12\",\"FromDateDMY\":\"12\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221119\":{\"FromDate\":\"2022-11-19\",\"FromDateDMY\":\"19\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221126\":{\"FromDate\":\"2022-11-26\",\"FromDateDMY\":\"26\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221203\":{\"FromDate\":\"2022-12-03\",\"FromDateDMY\":\"03\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221210\":{\"FromDate\":\"2022-12-10\",\"FromDateDMY\":\"10\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221217\":{\"FromDate\":\"2022-12-17\",\"FromDateDMY\":\"17\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221222\":{\"FromDate\":\"2022-12-22\",\"FromDateDMY\":\"22\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221224\":{\"FromDate\":\"2022-12-24\",\"FromDateDMY\":\"24\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221229\":{\"FromDate\":\"2022-12-29\",\"FromDateDMY\":\"29\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island',NULL,'32511,11658,34567',36190,38000,6,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-12-29 00:00:00','2022-12-29 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-astonishing-andaman-2022',NULL,NULL,NULL,0),(32,31178,1,12577,1,0,0,'Honeymoon,Beach,Romantic,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31178,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/astonishing_andaman_2022_1641649816.jpg\",\"BookingValidUntill\":\"2022-06-11\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The Andaman Islands are an Indian archipelago in the Bay of Bengal. These roughly 300 islands are known for their palm-lined, white-sand beaches, mangroves, and tropical rainforests. Coral reefs supporting marine life such as sharks and rays make for popular diving and snorkeling sites. Indigenous Andaman Islanders inhabit the more remote islands, many of which are off-limits to visitors.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;For its turquoise waters, sugary sands, and sun-drenched beaches, Havelock is a magnet for ardent divers and leisure seekers. Port Blair&amp;rsquo;s perfect setting and history, home to the Cellular Jail outside of the very British Ross and Viper Islands, will be the perfect starting point for your sojourn into the Andaman Islands.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Ahmedabad\",\"DestinationPlacesSysId\":296,\"SourcePlaces\":\"Ahmedabad\",\"SourcePlaceSysId\":296,\"AgencyName\":\"\",\"Name\":\"Astonishing Andaman 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-06-11\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492560,\"Name\":\"TSG Emerald View\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":{\"Image\":[{\"ImagId\":4820155,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492560\\/4913_01641901699.jpg\"},{\"ImagId\":4820156,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492560\\/4913_11641901699.png\"},{\"ImagId\":4820157,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492560\\/4913_21641901700.jpg\"},{\"ImagId\":4820158,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492560\\/4913_31641901700.jpg\"}]},\"CityId\":32511,\"Brief\":\"&lt;p&gt;Rated number one among the hotels in the Andaman Islands, TSG&amp;#39;s Hotel Emerald View is a 3 star wonder with only one objective - to pamper you. Relax and unwind at the hotel when you stay in the Andaman and Nicobar Islands with modern facilities and well trained staff who are delighted to serve you and make sure you have a memorable stay in the hotel. The hotel is a great destination for guests who visit the city on leisure trips or even on business. Plan your next vacation with us and be assured a satisfactory stay.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492560\\/4913_4f8d907bdde3a95e1a486790d6f7be8d1641901699.jpg\",\"AccoAminitiesMask\":\"111010101000111000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2804,\"Title\":\"Cellular Jail - National Memorial\",\"Description\":\"The Cellular Jail, also known as Kala Pani is located at Port Blair, was completed in the year 1906. Acquired the name &amp;lsquo;Cellular&amp;rsquo; because it is entirely made up of individual cells for the solitary confinement. It was used by the British to exile political prisoners to the remote archipelago. Many notable protestors such as Batukeshwar Dutt, Yogendra Shukla and Vinayak Damodar Savarkar were imprisoned here during the struggle for India&amp;#039;s freedom. The Jail has been declared as a National Memorial Monument, a place of pilgrimage for all freedom loving people.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6738247,\"Long\":92.7479768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Cellular_Jail_-_National_Memor_32511_1519642683.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2286,\"Title\":\"North Bay (Coral Island)\",\"Description\":\"North Bay Island, also known as Coral Island is a beautiful beach island, placed just northwards of Port Blair. It is known for vibrant corals, colorful fishes and variety of vegetation. It is ideal place for scuba diving and snorkeling along with coral under water treasures. The beach around the island is very famous for under water corals. Coral island with white sand beaches and surrounded by the pristine beauty of Nature that attract any sea loving human. The Coral reefs are gorgeously decorated by nature to stun the visitor.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/North_Bay_(Coral_Island)_32511_1519649474.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2278,\"Title\":\"Ross Island\",\"Description\":\"Few miles from Port Blair is the Ross Island, once an administrative headquarter for the Britishers, before an earthquake rocked the Island in 1941. The British then left the island and took settlement at Port Blair, since then the Island could never recover from the decay and neglect which had set in. Slowly but steadily the nature took its toll, as banyan trees engulfed the buildings thus replacing the structures created by man. This island makes you nostalgic and takes you back in time when this was an administrative settlement for the Britishers. The Indian Navy has rebuilt some of the old buildings like the bakery and the local stores, from where souvenirs are available.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.67583,\"Long\":92.762425,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Ross_Island_32511_1519650801.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492308,\"Name\":\"TSG Blue Resort\",\"Star\":\"3.00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.989574\",\"Long\":\"92.954881\",\"Address\":\"Beach No. 7, Swaraj Dweep, Andaman and Nicobar Islands 744 211\"},\"Images\":{\"Image\":[{\"ImagId\":4820159,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492308\\/4913_01641903082.jpg\"},{\"ImagId\":4820160,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492308\\/4913_11641903083.jpg\"},{\"ImagId\":4820161,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492308\\/4913_21641903083.jpg\"},{\"ImagId\":4820162,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492308\\/4913_31641903083.jpg\"}]},\"CityId\":11658,\"Brief\":\"&lt;p&gt;Experience the sights and sounds of nature during your stay at The Blue Resort, Andaman and Nicobar Islands and enjoy its calm ambience and quality service. We give you unmatched hospitality and make sure you are pampered throughout your stay. Expect only the best when you stay at The Blue Resort, Andaman and Nicobar Islands with our courteous and highly trained staff ready to assist you at any time during your stay. The hotel is situated just 2 minutes away from Radhanagar Beach and is a delight for the leisure traveller.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492308\\/4913_5406dad7111ad32336d2a9d415b9de7a1641903082.jpg\",\"AccoAminitiesMask\":\"111100001000111000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2804,\"Title\":\"Cellular Jail - National Memorial\",\"Description\":\"The Cellular Jail, also known as Kala Pani is located at Port Blair, was completed in the year 1906. Acquired the name &amp;lsquo;Cellular&amp;rsquo; because it is entirely made up of individual cells for the solitary confinement. It was used by the British to exile political prisoners to the remote archipelago. Many notable protestors such as Batukeshwar Dutt, Yogendra Shukla and Vinayak Damodar Savarkar were imprisoned here during the struggle for India&amp;#039;s freedom. The Jail has been declared as a National Memorial Monument, a place of pilgrimage for all freedom loving people.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6738247,\"Long\":92.7479768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Cellular_Jail_-_National_Memor_32511_1519642683.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2286,\"Title\":\"North Bay (Coral Island)\",\"Description\":\"North Bay Island, also known as Coral Island is a beautiful beach island, placed just northwards of Port Blair. It is known for vibrant corals, colorful fishes and variety of vegetation. It is ideal place for scuba diving and snorkeling along with coral under water treasures. The beach around the island is very famous for under water corals. Coral island with white sand beaches and surrounded by the pristine beauty of Nature that attract any sea loving human. The Coral reefs are gorgeously decorated by nature to stun the visitor.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/North_Bay_(Coral_Island)_32511_1519649474.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2278,\"Title\":\"Ross Island\",\"Description\":\"Few miles from Port Blair is the Ross Island, once an administrative headquarter for the Britishers, before an earthquake rocked the Island in 1941. The British then left the island and took settlement at Port Blair, since then the Island could never recover from the decay and neglect which had set in. Slowly but steadily the nature took its toll, as banyan trees engulfed the buildings thus replacing the structures created by man. This island makes you nostalgic and takes you back in time when this was an administrative settlement for the Britishers. The Indian Navy has rebuilt some of the old buildings like the bakery and the local stores, from where souvenirs are available.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.67583,\"Long\":92.762425,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Ross_Island_32511_1519650801.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492309,\"Name\":\"TSG Aura Resort\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.821431\",\"Long\":\"93.061296\",\"Address\":\"Beach No. 5, Sitapur Beach, Neil Islands, Port Blair, Andaman and Nicobar Islands 744104, India\"},\"Images\":{\"Image\":[{\"ImagId\":4820163,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_01641903693.jpg\"},{\"ImagId\":4820164,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_11641903693.jpg\"},{\"ImagId\":4820165,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_21641903693.jpg\"},{\"ImagId\":4820166,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_31641903693.jpg\"}]},\"CityId\":34567,\"Brief\":\"&lt;p&gt;Luxury has always been at it&amp;#39;s finest at Aura Hotel, Andaman and Nicobar Islands, a pearl in the TSG Group&amp;#39;s set of hotels. The Aura stands as a monument to the service and warm hospitality of the Andaman Islands with its beautiful view of the beach. The hotel offers its guests nothing less than a memorable stay. We understand your need for a hassle free and relaxing vacation and make it our obligation to give you the same.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492309\\/4913_9f869bc13dffbb4616d8c87ed7383e3c1641903693.jpg\",\"AccoAminitiesMask\":\"111000001000111000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2804,\"Title\":\"Cellular Jail - National Memorial\",\"Description\":\"The Cellular Jail, also known as Kala Pani is located at Port Blair, was completed in the year 1906. Acquired the name &amp;lsquo;Cellular&amp;rsquo; because it is entirely made up of individual cells for the solitary confinement. It was used by the British to exile political prisoners to the remote archipelago. Many notable protestors such as Batukeshwar Dutt, Yogendra Shukla and Vinayak Damodar Savarkar were imprisoned here during the struggle for India&amp;#039;s freedom. The Jail has been declared as a National Memorial Monument, a place of pilgrimage for all freedom loving people.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6738247,\"Long\":92.7479768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Cellular_Jail_-_National_Memor_32511_1519642683.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2294,\"Title\":\"Sound &amp; Light Show\",\"Description\":\"Cellular Jail show, we experience the Light and Sound show. During this show various artists enact the life of prisoners when Cellular Jail was operational. The light and sound show takes place both in Hindi and English. It&amp;#039;s a must watch show in the Andaman, and is pretty good. Post completion of the tour our team attends you and drop you back to your hotel and resort.\\r\\n\\r\\nTiming of Light and Sound Show : Hindi show starts from 6:00 pm to 7:15 pm on Tuesday, Thursday, Saturday and Sunday. English show starts from 7:15 pm. Jail Museum opens from 9:00 am to 12:00 noon, and from 1:30 pm to 4:45 pm. Close on Mondays.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Sound_&amp;_Light_Show_32511_1519646690.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2286,\"Title\":\"North Bay (Coral Island)\",\"Description\":\"North Bay Island, also known as Coral Island is a beautiful beach island, placed just northwards of Port Blair. It is known for vibrant corals, colorful fishes and variety of vegetation. It is ideal place for scuba diving and snorkeling along with coral under water treasures. The beach around the island is very famous for under water corals. Coral island with white sand beaches and surrounded by the pristine beauty of Nature that attract any sea loving human. The Coral reefs are gorgeously decorated by nature to stun the visitor.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/North_Bay_(Coral_Island)_32511_1519649474.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2278,\"Title\":\"Ross Island\",\"Description\":\"Few miles from Port Blair is the Ross Island, once an administrative headquarter for the Britishers, before an earthquake rocked the Island in 1941. The British then left the island and took settlement at Port Blair, since then the Island could never recover from the decay and neglect which had set in. Slowly but steadily the nature took its toll, as banyan trees engulfed the buildings thus replacing the structures created by man. This island makes you nostalgic and takes you back in time when this was an administrative settlement for the Britishers. The Indian Navy has rebuilt some of the old buildings like the bakery and the local stores, from where souvenirs are available.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.67583,\"Long\":92.762425,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Ross_Island_32511_1519650801.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"221860\",\"Title\":\"Arrival &acirc;&euro;&ldquo; Port Blair \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair&acirc;&euro;&macr;airport, meet and greet by our local representative in&amp;nbsp;Port Blair&amp;nbsp;to pick up and transfer to the pre-assigned hotel. Check-in and relax. In the evening, visit&amp;nbsp;Corbyn&amp;rsquo;s Cove&acirc;&euro;&macr;Beach which is 9 km from&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair&acirc;&euro;&macr;&amp;ndash; It&amp;rsquo;s a coconut palm fringed beach, ideal for swimming, sun-basking &amp;amp; bathing. Then proceed to&acirc;&euro;&macr;Cellular Jail Museum,&acirc;&euro;&macr;and later attend the enthralling&acirc;&euro;&macr;Sound and light show&acirc;&euro;&macr;at Cellular Jail- where the heroic saga of the Indian freedom struggle is brought alive.&acirc;&euro;&macr;Transfer back to the hotel for dinner and Overnight stay.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492560,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2804,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2276,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2294,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221861\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221862\",\"Title\":\"Port Blair &acirc;&euro;&ldquo; Havelock Island\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast, departure by inter-island ferry to Havelock Island (57 kms by sea from&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair). Transfer and check in to your hotel and relax. Post lunch, transfer to the World Famous &amp;ldquo;Radha Nagar Beach&amp;rdquo; (Beach number 7) at Havelock. This is the most popular beach named &amp;ldquo;Best Beach in Asia &amp;ndash; by Time in 2004&amp;rdquo;. Indulge yourself in the optional water sports activities and simply relax at the famous beach. Transfer back to the hotel for Dinner and Overnight stay at the respective Hotel \\/ Resort at&amp;nbsp;Havelock Island.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492308,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221863\",\"Title\":\"Havelock Island\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, proceed to&acirc;&euro;&macr;Elephant Beach&acirc;&euro;&macr;for an adventurous&amp;nbsp;snorkeling&amp;nbsp;experience.&acirc;&euro;&macr;Elephant Beach&acirc;&euro;&macr;is located near the eastern coast of Havelock Island. It is approachable by&amp;nbsp;dunghi&amp;nbsp;(small wooden carved fishing motor boat).&amp;nbsp;Snorkeling&amp;nbsp;is leisure water sports in which a person swims on the surface of water wearing the face mask and view in the underwater corals. Please carry your snacks \\/ packed lunch, drinking water &amp;amp; changing dress. In the evening, return back to the Hotel. Dinner and overnight stay will be at respective Hotel \\/ Resort at&amp;nbsp;Havelock Island.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492308,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221864\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221865\",\"Title\":\"Havelock Island &acirc;&euro;&ldquo; Neil Island\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After Breakfast, transfer to&acirc;&euro;&macr;Neil Island by boat\\/ferry. This is a beautiful Island with plenty of marine life triangularly shaped with lush green surroundings of paddy fields, banana plantations and tropical trees. Pristine sandy beaches at&acirc;&euro;&macr;Bharatpur&acirc;&euro;&macr;and&acirc;&euro;&macr;Lakshmanpur&acirc;&euro;&macr;are some of the best beaches to explore. The breath-taking view of sea and the lushing greeneries in the island is really rejuvenating and enjoyable for enthusiastic travellers. Arrive and check in to your hotel. After Lunch, Visit&acirc;&euro;&macr;Lakshmanpur&acirc;&euro;&macr;beach, where you can see a natural bridge formation. Later, visit&acirc;&euro;&macr;Bharatpur&acirc;&euro;&macr;beach, ideal for&amp;nbsp;Snorkeling&amp;nbsp;and glass bottom boat rides. You can see the beautiful coral and underwater life. Transfer back to the hotel for dinner and Overnight stay at respective Hotel \\/ Resort at&acirc;&euro;&macr;Neil Island.&acirc;&euro;&macr;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492309,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6550,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221866\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221867\",\"Title\":\"Neil Island &acirc;&euro;&ldquo; Port Blair \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, morning free at leisure. Post Lunch, travel back to&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair&acirc;&euro;&macr;(as per your booked ferry timings)&acirc;&euro;&macr;and transfer to the pre-assigned hotel. Dinner and overnight stay&acirc;&euro;&macr;will be at the respective Hotel \\/ Resort at&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492560,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221868\",\"Title\":\"Port Blair \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Start after breakfast for a full-day Excursion to&acirc;&euro;&macr;North Bay (Coral Island)&acirc;&euro;&macr;- to see coral reefs, exotic varieties of beautiful ornamental fishes and other marine life. The glass bottom boat ride helps one to&acirc;&euro;&macr;take a closer look at the vast coral colonies. You can also enjoy&amp;nbsp;Snorkelling&amp;nbsp;and other water sports activities like Jet Ski Ride, Sea&amp;nbsp;walk&amp;nbsp;etc. Please carry your snacks \\/ pack lunch, drinking water &amp;amp; changing dress.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Further, visit&acirc;&euro;&macr;Ross Island&acirc;&euro;&macr;- from where the&acirc;&euro;&macr;British governed the entire Andaman &amp;amp; Nicobar Islands, prior to India&amp;rsquo;s Independence. One can see remnants of an opulent past in the ruins of the church, swimming pool and the chief commissioner&amp;#39;s residence with its huge gardens and grand ballrooms.&amp;nbsp;There is also a cemetery and a small museum managed by the Indian Navy. This island is an ideal destination for nature walk&acirc;&euro;&macr;amidst sylvan surroundings with deer, peacocks, exotic birds, etc.&acirc;&euro;&macr;In the evening, transfer to the hotel for dinner and overnight stay at respective Hotel \\/ Resort at&acirc;&euro;&macr;Port&acirc;&euro;&macr;Blair.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492560,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2286,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2278,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"221869\",\"Title\":\"Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After Breakfast, check out and transfer to airport for your journey back home after a wonderful vacation.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle free vacations.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31178\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"59999.10\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":59999,\"priceDoubleOcc\":\"59999.10\",\"priceSingleOcc\":89998.65,\"priceExtraBed\":\"59999.10\",\"priceWithoutBed\":\"54999.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"59999.10\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31178\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"57142.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-11\",\"To\":\"2022-06-11\",\"Currency\":1,\"priceTripleOcc\":57142,\"priceDoubleOcc\":\"57142.00\",\"priceSingleOcc\":85713,\"priceExtraBed\":\"57142.00\",\"priceWithoutBed\":\"52380.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"57142.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30&amp;nbsp;Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Terms and Conditions&amp;nbsp;as per booking forms&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates are subject to change&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry Tickets to be paid by Clients Directly&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package&amp;nbsp;Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Flight Information:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Economy&amp;nbsp;Class&amp;nbsp;air ticket&amp;nbsp;Ex Ahmedabad&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Port Blair&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Corbyn&amp;rsquo;s&amp;nbsp;Cove&amp;nbsp;beach&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Science Centre&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cellular Jail&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sound and light show&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;North Bay&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Jet Ski Ride &amp;amp; Sea walk (optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ross Island&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Havelock&amp;nbsp;&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Radha&amp;nbsp;Nagar Beach&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Elephant Beach&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Neil Island&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bharatpur&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Lakshmanpur&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Coral Colonies&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06&amp;nbsp;Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05 Lunches&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06&amp;nbsp;Dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All transfers by A\\/C&amp;nbsp;Innova&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9267\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9268\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"221860\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[221860],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221861\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[221861],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221862\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[221862],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221863\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[221863],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221864\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[221864],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221865\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[221865],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221866\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[221866],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221867\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[221867],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221868\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[221868],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"221869\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[221869],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"296\":{\"CityName\":\"Ahmedabad\",\"FromDate\":{\"20220424\":{\"FromDate\":\"2022-04-24\",\"FromDateDMY\":\"24\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220508\":{\"FromDate\":\"2022-05-08\",\"FromDateDMY\":\"08\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220522\":{\"FromDate\":\"2022-05-22\",\"FromDateDMY\":\"22\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220611\":{\"FromDate\":\"2022-06-11\",\"FromDateDMY\":\"11\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island',NULL,'32511,11658,34567',57142,59999,6,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-06-11 00:00:00','2022-06-11 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'astonishing-andaman-2022',NULL,NULL,NULL,0),(33,31556,1,12577,0,0,0,'Honeymoon,Wildlife,Family,Hill Station,Romantic,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31556,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_ultimate_uttarakh2022_1642656160.jpg\",\"BookingValidUntill\":\"2022-12-28\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Popularly referred to as Dev Bhoomi (the land of gods), Uttarakhand since it was wedged free from Uttar Pradesh in 2000 has developed its own distinct identity, what with the region&amp;rsquo;s own distinct languages, history, cultures, river valleys home to interesting micro-civilizations coming together to create a state that is not only special topographically but also unique in its heritage and spirituality. Lying to the northeast of Delhi and surrounded by Tibet and Nepal, Uttarakhand comprises the Kumaon and Garhwal regions which rise out of the sub- Himalayan plains. The snow peaks of Uttarakhand are rated among the most beautiful in the inner Himalayas, continuing in a spine that ends in Nanda Devi, the second-highest peak in the country at 25,643 feet. The dramatic terrain of the Himalayan state is defined by azure lakes, frothy rivers, glaciers that are the source of origin of some of Hinduism&amp;rsquo;s holiest rivers such as Ganga, Yamuna, Mandakini, and Alakananda, and frosty peaks, some of which set the backdrop for its most coveted pilgrimages. The high-altitude drives and hikes bringing you to some spectacular pilgrimages, forming the backdrop for Hindu epics.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThe place that solemnized the wedding of Shiva and Parvati, also the place that has its colonial legacy aside from the legend of the famous conservationist, Jim Corbett that to this day survives in the famous tiger park that bears his name. Then the coming of the Beatles to Rishikesh, turning the place into a hub for seekers of spirituality and yoga practitioners from all over the world. Uttarakhand&amp;rsquo;s diversity, its record of being the state with the second-highest tiger population, the presence of the Chota Chardham sites, and the frosty Himalayan peaks, make it a paradise for travelers.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"\",\"Name\":\"Ex. Ultimate Uttarakhand 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Wildlife,Family,Hill Station,Romantic,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-12-28\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18776,\"Title\":\"Mussoorie\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492290,\"Name\":\"Kamakshi Grand By Royal Collection\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Henry Allen Road, Opposite Wynberg-Allen School, Bala Hissar, Picture Palace side, Near The Mall Road, Mussoorie, Uttarakhand - 248179\"},\"Images\":{\"Image\":[{\"ImagId\":4820174,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492290\\/4913_01641970320.png\"},{\"ImagId\":4820175,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492290\\/4913_11641970320.png\"},{\"ImagId\":4820176,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492290\\/4913_21641970320.png\"}]},\"CityId\":18776,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492290\\/4913_86cba120258fa10554267205f1816ac31641970320.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3472,\"Title\":\"Gun Hill\",\"Description\":\"A historic and second-highest peak of Mussoorie Gun Hill is a favorite place for beautiful Himalaya Mountains and Doon Valley. A popular view of Mussoorie Gun point is located at 400 feet above the mall and is also accessible by a cable car. Hill which is part of Woodlion Cemetery became known as Gun Hill. The road which leads to the hill formerly known as Kingsbridge Road is now called Gun Hill Road. Ropeway cable car travel costs 75 rupees per head and undoubtedly offers a beautiful view during climbing remote hills and green landscapes.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.45932,\"Long\":78.07427,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Gun_Hill_18776_1518413415.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":5222,\"Title\":\"Kempty falls\",\"Description\":\"Kemtpy Falls is the most famous attraction. The falls are not BIG but, they have setup all the facilities for the tourist which makes a good place to visit. One can walk up the falls or use ropeway to go downhill at the Kempty lake. A good time is spent at this point.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/36_1527082759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1047,\"Title\":\"Mall Road\",\"Description\":\"The most famous excursion in the queen of hills Mussoorie Mall is the main attraction of the Mall in Mussoorie at an altitude of 2000 meters. Almost every visitor beautiful mall street. Mall Road runs through the city and provides pleasant views of verdant hills and valleys on almost every nook and corner. There is no doubt that the muscular beating artery which gives life. On both sides of the mall tourists can enjoy food and snacks in the small and large restaurant. The Food Stall also offers some sweet dishes on the Mall. There are all items of woollens handicrafts to decorate all the items in the mall.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.4560588,\"Long\":78.0781603,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Mall_Road_18776_1518416174.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1162,\"Title\":\"Mussoorie Lake\",\"Description\":\"Mussoorie Lake is a beautiful place in the city of Mussoorie and one of the places which can not remember anyone in this city. Mussoorie is known for its calm setting and the calm nature of the voyages and this lake tells peace and tranquility and the truth. This big lake is well known for boating and you can pedal your way through the lake and spend some quality time with them it is an artificial lake that still feels reality and One gives opportunity to some good ideas of the Doon Valley. While lying on the Mussoorie Dehradun Highway this lake is being visited by many people and one of the people who feel happy in Mussoorie is this favorite place. And this is the famous for Natural beauty amazing adventures scenic setting Seeking Experience serene location and blissful peace.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.4585113,\"Long\":78.0737202,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Mussoorie_Lake_18776_1518276334.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":586,\"Title\":\"Gondola Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.3803039,\"Long\":79.4635658,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3900\\/thumb\\/Gondola Ride_151.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1045,\"Title\":\"Mall Road\",\"Description\":\"The mall road of Nainital, which runs parallel to Naini Lake, connects the two ends of the hill city, it is Nainitals major shopping, food and cultural center, which is Nainital. It is shopping for some luscious food or local people digging, this mall road is all for you. Mall is the most popular name in the city of Nainital. The busiest road in the day time, The mall runs towards the banks of Nainital Lake, the British built Mall road which passes through the center of Nainital and Nainital connects the two main ends of the city. Although Mallital and tallital are officially nominated as the Govind Ballabh Pant Marg, Mall Road is still popularly known and famous by its last name. Tourists and locals like to walk on the mall to enjoy the beauty of Naini Lake in the evening.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.385181,\"Long\":79.464033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Mall_Road_18892_1518502015.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1180,\"Title\":\"Naina Devi Temple\",\"Description\":\"Naina Devi Temple is a famous Hindu pilgrimage place in Nainital on the edges of Naini Lake. According to the legends Naina Devi Temple came into existence when Lord Shiva was taking the body of Sati and his eyes fell on the ground where the temple is presently present. Temple Nanda attracts thousands of travelers and residents during Ashtami which is a grand festival which runs for eight days in the premises of the Naina Devi temple. Every year a statue immersion ceremony is celebrated here from 1819-19. Other festivals like Navratri and Chaitra attract a huge crowd. By reaching the temple you can easily walk from Nainital main bus stand or take Rickshaw to Mallital bus stand after 300 meters walk.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.3868622,\"Long\":79.459841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Naina_Devi_Temple_18892_1518499126.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1182,\"Title\":\"Naini Lake\",\"Description\":\"Situated between the Nainital colony Naini Lake is a beautiful natural fresh body lake. The lake is in a crescent or kidney shape and is one of the famous lakes in the Kumaon area. Naini peak on the northwest Tiffin point on the southwest and snow covered by snow covered in the north the lake offers a breathtaking view especially during the morning and sunset. Naini Lake is a beautiful beauty surrounded by seven peaks like Ayarpata Deopata Handi Bandi Cheena Peak Alma Laria Kanta and Sher ka Danda. The lake can be divided into two separate parts the northern region is called the Mallital and the southern region called the Tallital.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Naini_Lake_18892_1518440259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1633,\"Title\":\"Snow Point\",\"Description\":\"Snow View Point is one of the most attractive tourist destinations in Nainital. It is about 3 km from the city and accessible through a cable car or a rope. The summit offers a wonderful view of the beautiful city and breathtaking snow-covered mountains. At this place an early morning trek gives some good ideas to the great Himalayan ranges. A special attraction for children is an amusement park which is open here recently. Provide stall teas and some snacks at Snow View Point.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":30.066753,\"Long\":79.0192997,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Snow_Point_18892_1518434062.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2457,\"Title\":\"Corbett Fall\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.277785,\"Long\":79.320871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/Corbett_Fall_6917_1519303201.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2456,\"Title\":\"Garija Temple\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.494165,\"Long\":79.141201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/Garija_Temple_6917_1519303345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":792,\"Title\":\"Jungle Safari\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.3947643,\"Long\":79.1264997,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3604\\/thumb\\/Jungle Safari_645.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1476,\"Title\":\"River Kosi\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.396318,\"Long\":79.127414,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/River_Kosi_6917_1519304271.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":18892,\"Title\":\"Nainital\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492292,\"Name\":\"La Niwasa Luxury Resort | Hotel | Nainital | By Shivraj Stays Properties\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"near High Court, Mallital, Nainital, Uttarakhand 263001\"},\"Images\":{\"Image\":[{\"ImagId\":4820177,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492292\\/4913_01641970755.png\"},{\"ImagId\":4820178,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492292\\/4913_11641970755.jpg\"},{\"ImagId\":4820179,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492292\\/4913_21641970755.jpg\"}]},\"CityId\":18892,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492292\\/4913_81595bb97e382e1ea411bb3e1c023e1d1641970755.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Deluxe Tents\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3472,\"Title\":\"Gun Hill\",\"Description\":\"A historic and second-highest peak of Mussoorie Gun Hill is a favorite place for beautiful Himalaya Mountains and Doon Valley. A popular view of Mussoorie Gun point is located at 400 feet above the mall and is also accessible by a cable car. Hill which is part of Woodlion Cemetery became known as Gun Hill. The road which leads to the hill formerly known as Kingsbridge Road is now called Gun Hill Road. Ropeway cable car travel costs 75 rupees per head and undoubtedly offers a beautiful view during climbing remote hills and green landscapes.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.45932,\"Long\":78.07427,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Gun_Hill_18776_1518413415.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":5222,\"Title\":\"Kempty falls\",\"Description\":\"Kemtpy Falls is the most famous attraction. The falls are not BIG but, they have setup all the facilities for the tourist which makes a good place to visit. One can walk up the falls or use ropeway to go downhill at the Kempty lake. A good time is spent at this point.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/36_1527082759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1047,\"Title\":\"Mall Road\",\"Description\":\"The most famous excursion in the queen of hills Mussoorie Mall is the main attraction of the Mall in Mussoorie at an altitude of 2000 meters. Almost every visitor beautiful mall street. Mall Road runs through the city and provides pleasant views of verdant hills and valleys on almost every nook and corner. There is no doubt that the muscular beating artery which gives life. On both sides of the mall tourists can enjoy food and snacks in the small and large restaurant. The Food Stall also offers some sweet dishes on the Mall. There are all items of woollens handicrafts to decorate all the items in the mall.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.4560588,\"Long\":78.0781603,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Mall_Road_18776_1518416174.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1162,\"Title\":\"Mussoorie Lake\",\"Description\":\"Mussoorie Lake is a beautiful place in the city of Mussoorie and one of the places which can not remember anyone in this city. Mussoorie is known for its calm setting and the calm nature of the voyages and this lake tells peace and tranquility and the truth. This big lake is well known for boating and you can pedal your way through the lake and spend some quality time with them it is an artificial lake that still feels reality and One gives opportunity to some good ideas of the Doon Valley. While lying on the Mussoorie Dehradun Highway this lake is being visited by many people and one of the people who feel happy in Mussoorie is this favorite place. And this is the famous for Natural beauty amazing adventures scenic setting Seeking Experience serene location and blissful peace.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.4585113,\"Long\":78.0737202,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Mussoorie_Lake_18776_1518276334.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":586,\"Title\":\"Gondola Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.3803039,\"Long\":79.4635658,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3900\\/thumb\\/Gondola Ride_151.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1045,\"Title\":\"Mall Road\",\"Description\":\"The mall road of Nainital, which runs parallel to Naini Lake, connects the two ends of the hill city, it is Nainitals major shopping, food and cultural center, which is Nainital. It is shopping for some luscious food or local people digging, this mall road is all for you. Mall is the most popular name in the city of Nainital. The busiest road in the day time, The mall runs towards the banks of Nainital Lake, the British built Mall road which passes through the center of Nainital and Nainital connects the two main ends of the city. Although Mallital and tallital are officially nominated as the Govind Ballabh Pant Marg, Mall Road is still popularly known and famous by its last name. Tourists and locals like to walk on the mall to enjoy the beauty of Naini Lake in the evening.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.385181,\"Long\":79.464033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Mall_Road_18892_1518502015.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1180,\"Title\":\"Naina Devi Temple\",\"Description\":\"Naina Devi Temple is a famous Hindu pilgrimage place in Nainital on the edges of Naini Lake. According to the legends Naina Devi Temple came into existence when Lord Shiva was taking the body of Sati and his eyes fell on the ground where the temple is presently present. Temple Nanda attracts thousands of travelers and residents during Ashtami which is a grand festival which runs for eight days in the premises of the Naina Devi temple. Every year a statue immersion ceremony is celebrated here from 1819-19. Other festivals like Navratri and Chaitra attract a huge crowd. By reaching the temple you can easily walk from Nainital main bus stand or take Rickshaw to Mallital bus stand after 300 meters walk.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.3868622,\"Long\":79.459841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Naina_Devi_Temple_18892_1518499126.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1182,\"Title\":\"Naini Lake\",\"Description\":\"Situated between the Nainital colony Naini Lake is a beautiful natural fresh body lake. The lake is in a crescent or kidney shape and is one of the famous lakes in the Kumaon area. Naini peak on the northwest Tiffin point on the southwest and snow covered by snow covered in the north the lake offers a breathtaking view especially during the morning and sunset. Naini Lake is a beautiful beauty surrounded by seven peaks like Ayarpata Deopata Handi Bandi Cheena Peak Alma Laria Kanta and Sher ka Danda. The lake can be divided into two separate parts the northern region is called the Mallital and the southern region called the Tallital.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Naini_Lake_18892_1518440259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1633,\"Title\":\"Snow Point\",\"Description\":\"Snow View Point is one of the most attractive tourist destinations in Nainital. It is about 3 km from the city and accessible through a cable car or a rope. The summit offers a wonderful view of the beautiful city and breathtaking snow-covered mountains. At this place an early morning trek gives some good ideas to the great Himalayan ranges. A special attraction for children is an amusement park which is open here recently. Provide stall teas and some snacks at Snow View Point.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":30.066753,\"Long\":79.0192997,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Snow_Point_18892_1518434062.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2457,\"Title\":\"Corbett Fall\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.277785,\"Long\":79.320871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/Corbett_Fall_6917_1519303201.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2456,\"Title\":\"Garija Temple\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.494165,\"Long\":79.141201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/Garija_Temple_6917_1519303345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":792,\"Title\":\"Jungle Safari\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.3947643,\"Long\":79.1264997,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3604\\/thumb\\/Jungle Safari_645.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1476,\"Title\":\"River Kosi\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.396318,\"Long\":79.127414,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/River_Kosi_6917_1519304271.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":6917,\"Title\":\"Corbett\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492294,\"Name\":\"Corbett River Creek - Luxury Resorts In Jim Corbett\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"Plot No 4158, Jim Corbett National Park, NH 121, Village jhadgaon, Tehsil Sult, Dist Almorah, Marchula, Uttarakhand 244715\"},\"Images\":{\"Image\":[{\"ImagId\":4820180,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492294\\/4913_01641973105.jpg\"},{\"ImagId\":4820181,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492294\\/4913_11641973105.jpg\"},{\"ImagId\":4820182,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492294\\/4913_21641973106.jpg\"},{\"ImagId\":4820183,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492294\\/4913_31641973106.jpg\"}]},\"CityId\":6917,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492294\\/4913_7c8f201a879be5cdb1ed7d72f199bf591641973105.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3472,\"Title\":\"Gun Hill\",\"Description\":\"A historic and second-highest peak of Mussoorie Gun Hill is a favorite place for beautiful Himalaya Mountains and Doon Valley. A popular view of Mussoorie Gun point is located at 400 feet above the mall and is also accessible by a cable car. Hill which is part of Woodlion Cemetery became known as Gun Hill. The road which leads to the hill formerly known as Kingsbridge Road is now called Gun Hill Road. Ropeway cable car travel costs 75 rupees per head and undoubtedly offers a beautiful view during climbing remote hills and green landscapes.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.45932,\"Long\":78.07427,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Gun_Hill_18776_1518413415.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":5222,\"Title\":\"Kempty falls\",\"Description\":\"Kemtpy Falls is the most famous attraction. The falls are not BIG but, they have setup all the facilities for the tourist which makes a good place to visit. One can walk up the falls or use ropeway to go downhill at the Kempty lake. A good time is spent at this point.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/36_1527082759.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1047,\"Title\":\"Mall Road\",\"Description\":\"The most famous excursion in the queen of hills Mussoorie Mall is the main attraction of the Mall in Mussoorie at an altitude of 2000 meters. Almost every visitor beautiful mall street. Mall Road runs through the city and provides pleasant views of verdant hills and valleys on almost every nook and corner. There is no doubt that the muscular beating artery which gives life. On both sides of the mall tourists can enjoy food and snacks in the small and large restaurant. The Food Stall also offers some sweet dishes on the Mall. There are all items of woollens handicrafts to decorate all the items in the mall.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.4560588,\"Long\":78.0781603,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Mall_Road_18776_1518416174.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1162,\"Title\":\"Mussoorie Lake\",\"Description\":\"Mussoorie Lake is a beautiful place in the city of Mussoorie and one of the places which can not remember anyone in this city. Mussoorie is known for its calm setting and the calm nature of the voyages and this lake tells peace and tranquility and the truth. This big lake is well known for boating and you can pedal your way through the lake and spend some quality time with them it is an artificial lake that still feels reality and One gives opportunity to some good ideas of the Doon Valley. While lying on the Mussoorie Dehradun Highway this lake is being visited by many people and one of the people who feel happy in Mussoorie is this favorite place. And this is the famous for Natural beauty amazing adventures scenic setting Seeking Experience serene location and blissful peace.\",\"CurrencyType\":0,\"CityId\":18776,\"CityName\":\"Mussoorie\",\"Lat\":30.4585113,\"Long\":78.0737202,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18776\\/sightseeing\\/Mussoorie_Lake_18776_1518276334.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":586,\"Title\":\"Gondola Ride\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.3803039,\"Long\":79.4635658,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3900\\/thumb\\/Gondola Ride_151.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1045,\"Title\":\"Mall Road\",\"Description\":\"The mall road of Nainital, which runs parallel to Naini Lake, connects the two ends of the hill city, it is Nainitals major shopping, food and cultural center, which is Nainital. It is shopping for some luscious food or local people digging, this mall road is all for you. Mall is the most popular name in the city of Nainital. The busiest road in the day time, The mall runs towards the banks of Nainital Lake, the British built Mall road which passes through the center of Nainital and Nainital connects the two main ends of the city. Although Mallital and tallital are officially nominated as the Govind Ballabh Pant Marg, Mall Road is still popularly known and famous by its last name. Tourists and locals like to walk on the mall to enjoy the beauty of Naini Lake in the evening.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.385181,\"Long\":79.464033,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Mall_Road_18892_1518502015.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1180,\"Title\":\"Naina Devi Temple\",\"Description\":\"Naina Devi Temple is a famous Hindu pilgrimage place in Nainital on the edges of Naini Lake. According to the legends Naina Devi Temple came into existence when Lord Shiva was taking the body of Sati and his eyes fell on the ground where the temple is presently present. Temple Nanda attracts thousands of travelers and residents during Ashtami which is a grand festival which runs for eight days in the premises of the Naina Devi temple. Every year a statue immersion ceremony is celebrated here from 1819-19. Other festivals like Navratri and Chaitra attract a huge crowd. By reaching the temple you can easily walk from Nainital main bus stand or take Rickshaw to Mallital bus stand after 300 meters walk.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":29.3868622,\"Long\":79.459841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Naina_Devi_Temple_18892_1518499126.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1182,\"Title\":\"Naini Lake\",\"Description\":\"Situated between the Nainital colony Naini Lake is a beautiful natural fresh body lake. The lake is in a crescent or kidney shape and is one of the famous lakes in the Kumaon area. Naini peak on the northwest Tiffin point on the southwest and snow covered by snow covered in the north the lake offers a breathtaking view especially during the morning and sunset. Naini Lake is a beautiful beauty surrounded by seven peaks like Ayarpata Deopata Handi Bandi Cheena Peak Alma Laria Kanta and Sher ka Danda. The lake can be divided into two separate parts the northern region is called the Mallital and the southern region called the Tallital.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Naini_Lake_18892_1518440259.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1633,\"Title\":\"Snow Point\",\"Description\":\"Snow View Point is one of the most attractive tourist destinations in Nainital. It is about 3 km from the city and accessible through a cable car or a rope. The summit offers a wonderful view of the beautiful city and breathtaking snow-covered mountains. At this place an early morning trek gives some good ideas to the great Himalayan ranges. A special attraction for children is an amusement park which is open here recently. Provide stall teas and some snacks at Snow View Point.\",\"CurrencyType\":0,\"CityId\":18892,\"CityName\":\"Nainital\",\"Lat\":30.066753,\"Long\":79.0192997,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18892\\/sightseeing\\/Snow_Point_18892_1518434062.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2457,\"Title\":\"Corbett Fall\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.277785,\"Long\":79.320871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/Corbett_Fall_6917_1519303201.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2456,\"Title\":\"Garija Temple\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.494165,\"Long\":79.141201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/Garija_Temple_6917_1519303345.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":792,\"Title\":\"Jungle Safari\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.3947643,\"Long\":79.1264997,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3604\\/thumb\\/Jungle Safari_645.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1476,\"Title\":\"River Kosi\",\"Description\":\".\",\"CurrencyType\":0,\"CityId\":6917,\"CityName\":\"Corbett\",\"Lat\":29.396318,\"Long\":79.127414,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6917\\/sightseeing\\/River_Kosi_6917_1519304271.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"224537\",\"Title\":\"Arrive Delhi &acirc;&euro;&ldquo; Mussoorie (310 KMS, 7:30 HOURS) \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at Delhi Airport and Drive to Mussoorie,&amp;nbsp;on&amp;nbsp;arrival,&amp;nbsp;check in to the hotel and relax, Overnight Stay at Mussoorie.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492290,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224538\",\"Title\":\"Mussoorie\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;After Breakfast, Visit&amp;nbsp;&lt;strong&gt;Kempty&amp;nbsp;Falls&lt;\\/strong&gt;,&amp;nbsp;the falls famous for swimming and fishing are a must-visit due to their beautiful location and flow of water.&amp;nbsp;Later on, visit&amp;nbsp;&lt;strong&gt;Landour&lt;\\/strong&gt;&amp;nbsp;to enjoy the stunning natural views from the hilltop.&amp;nbsp;Further, visit &lt;strong&gt;Gun Hill &lt;\\/strong&gt;where you&amp;nbsp;can&amp;nbsp;choose to take&amp;nbsp;the option of a Gondola ride. Post Lunch,&amp;nbsp;Visit &lt;strong&gt;Mall Road&lt;\\/strong&gt;&amp;nbsp;to use the benches and lampposts and shopping at&amp;nbsp;modern shops.&amp;nbsp;&amp;nbsp;Further, we take you to&amp;nbsp;&lt;strong&gt;Mussoorie Lake&lt;\\/strong&gt;&amp;nbsp;which is an artificial lake that offers boating&amp;nbsp;facilities.&amp;nbsp;Return&amp;nbsp;back to the hotel&amp;nbsp;for dinner&amp;nbsp;and&amp;nbsp;Overnight Stay at Mussoorie.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492290,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5222,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1047,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1162,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224539\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18776,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224540\",\"Title\":\"Mussoorie - Nainital (302 KMS, 7:45 HOURS)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;check out&amp;nbsp;and drive to&amp;nbsp;Nainital, check in to the hotel in&amp;nbsp;Nainital, and relax. Day free at leisure to enjoy nature. Dinner and&amp;nbsp;overnight Stay at&amp;nbsp;Nainital.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492292,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Deluxe Tents\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224541\",\"Title\":\"Nainital Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;Visit&amp;nbsp;the main attraction of Nainital&amp;nbsp;&amp;ldquo;&lt;strong&gt;Naini&amp;nbsp;Lake&lt;\\/strong&gt;&amp;rdquo; for a stunning view and boating (Own Expense). Later,&amp;nbsp;visit &lt;strong&gt;Naina&amp;nbsp;Devi Temple&lt;\\/strong&gt;&amp;nbsp;which is amongst 51 Shakti&amp;nbsp;Peeths,&amp;nbsp;Further, visit&amp;nbsp;&lt;strong&gt;Mall Road&lt;\\/strong&gt; (Till Parking)&amp;nbsp;which is good for local shopping.&amp;nbsp;Visit &lt;strong&gt;Snow point &lt;\\/strong&gt;from where you can see glacier mountains on one&amp;nbsp;side and Naini lake on the other side. One can choose to&amp;nbsp;visit Snow View Point from&amp;nbsp;Mallital&amp;nbsp;by&amp;nbsp;Ropeway (Own expense).&amp;nbsp;In the evening, transfer back&amp;nbsp;to&amp;nbsp;the&amp;nbsp;hotel&amp;nbsp;for dinner and&amp;nbsp;overnight stay&amp;nbsp;in&amp;nbsp;Nainital.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492292,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Deluxe Tents\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":586,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1045,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1182,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1633,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224542\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18892,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224543\",\"Title\":\"Nainital to Corbett (80 KMS, 2:30 HRS) \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After Breakfast, check out from the hotel and drive to Corbett,&amp;nbsp;En-route Visit &lt;strong&gt;Corbett Falls&lt;\\/strong&gt;&amp;nbsp;which is a 66 Feet waterfall&amp;nbsp;which is a great site to visit.&amp;nbsp;After lunch,&amp;nbsp;check&amp;nbsp;in to the&amp;nbsp;hotel and&amp;nbsp;relax.&amp;nbsp;Dinner and overnight stay at Corbett.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6917,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492294,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2457,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224544\",\"Title\":\"Corbett- Jungle Safari (Extra Payable)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Wake up early today and get ready for Thrilling &lt;strong&gt;Jungle&amp;nbsp;Safari&lt;\\/strong&gt;, Encounter&amp;nbsp;the wild animals including tigers. Jungle Safari is also&amp;nbsp;famous for Bird watching.&amp;nbsp;Post Lunch,&amp;nbsp;visit&amp;nbsp;&lt;strong&gt;Garjiya&amp;nbsp;Devi temple&lt;\\/strong&gt;, dedicated to Goddess Parvati. Later, proceed to&amp;nbsp;&lt;strong&gt;Koshi river&lt;\\/strong&gt; which is a picturesque location with&amp;nbsp;breathtaking views. Dinner and&amp;nbsp;Overnight stay at Corbett.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6917,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492294,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2456,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":792,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1476,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"224545\",\"Title\":\"Corbett to Delhi \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After Breakfast, check out and proceed to the airport to board your flight&amp;nbsp;back home.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6917,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31556\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25999.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":25999,\"priceDoubleOcc\":\"25999.05\",\"priceSingleOcc\":38999.1,\"priceExtraBed\":\"25999.05\",\"priceWithoutBed\":\"21999.60\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"25999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31556\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24761.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-28\",\"To\":\"2022-01-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-04\",\"To\":\"2022-02-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-11\",\"To\":\"2022-02-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-18\",\"To\":\"2022-02-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-03\",\"To\":\"2022-03-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-10\",\"To\":\"2022-03-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-17\",\"To\":\"2022-03-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-24\",\"To\":\"2022-03-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-06\",\"To\":\"2022-04-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-10\",\"To\":\"2022-04-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-20\",\"To\":\"2022-04-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-24\",\"To\":\"2022-04-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-08\",\"To\":\"2022-05-08\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-18\",\"To\":\"2022-05-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-01\",\"To\":\"2022-06-01\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-05\",\"To\":\"2022-06-05\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-17\",\"To\":\"2022-06-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-26\",\"To\":\"2022-06-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-03\",\"To\":\"2022-07-03\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-10\",\"To\":\"2022-07-10\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-17\",\"To\":\"2022-07-17\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-31\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-07\",\"To\":\"2022-08-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-14\",\"To\":\"2022-08-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-18\",\"To\":\"2022-08-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-21\",\"To\":\"2022-08-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-28\",\"To\":\"2022-08-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-11\",\"To\":\"2022-09-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-18\",\"To\":\"2022-09-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-25\",\"To\":\"2022-09-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-02\",\"To\":\"2022-10-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-09\",\"To\":\"2022-10-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-20\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-21\",\"To\":\"2022-10-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-30\",\"To\":\"2022-10-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-02\",\"To\":\"2022-11-02\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-06\",\"To\":\"2022-11-06\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-09\",\"To\":\"2022-11-09\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-13\",\"To\":\"2022-11-13\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-16\",\"To\":\"2022-11-16\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-20\",\"To\":\"2022-11-20\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-23\",\"To\":\"2022-11-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-27\",\"To\":\"2022-11-27\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-11-30\",\"To\":\"2022-11-30\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-04\",\"To\":\"2022-12-04\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-07\",\"To\":\"2022-12-07\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-11\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-14\",\"To\":\"2022-12-14\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-18\",\"To\":\"2022-12-18\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-21\",\"To\":\"2022-12-21\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-23\",\"To\":\"2022-12-23\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-25\",\"To\":\"2022-12-25\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-12-28\",\"To\":\"2022-12-28\",\"Currency\":1,\"priceTripleOcc\":24761,\"priceDoubleOcc\":\"24761.00\",\"priceSingleOcc\":37142,\"priceExtraBed\":\"24761.00\",\"priceWithoutBed\":\"20952.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"24761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30 Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions as per booking forms.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Snow Points Not Included.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entry Tickets to be paid by Clients Directly.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Coach&amp;nbsp;\\/ Tempo&amp;nbsp;traveler&amp;nbsp;will not cover&amp;nbsp;Nainital&amp;nbsp;&amp;amp;&amp;nbsp;Mussoorie&amp;nbsp;Sightseeing&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Surcharges applicable on certain dates&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Mussoorie:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Local sightseeing&amp;nbsp;by Union vehicles&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mussoorie&amp;nbsp;Lake&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kempty&amp;nbsp;Falls&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mall road&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Nainital:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Local&amp;nbsp;sightseeing&amp;nbsp;by Union vehicles&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Naini&amp;nbsp;lake&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Naini&amp;nbsp;Devi Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mall Road&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ropeway (Own expense)&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Corbett:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Garjiya&amp;nbsp;Devi Temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Jungle Safari&amp;nbsp;(Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Corbett Waterfall&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;River rafting (Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06&amp;nbsp;Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04 Lunches&amp;nbsp;(Packed Lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06&amp;nbsp;Dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All&amp;nbsp;Transfers&amp;nbsp;by A\\/C Coach&amp;nbsp;\\/&amp;nbsp;Tempo Traveler&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Note:&amp;nbsp; A\\/C will not be operated on hilly area as per Govt. norms&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9368\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9369\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"224537\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[224537],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224538\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[224538],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224539\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[224539],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224540\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[224540],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224541\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[224541],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224542\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[224542],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224543\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[224543],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224544\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[224544],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"224545\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[224545],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"7701\":{\"CityName\":\"Delhi\",\"FromDate\":{\"20220128\":{\"FromDate\":\"2022-01-28\",\"FromDateDMY\":\"28\\/01\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220204\":{\"FromDate\":\"2022-02-04\",\"FromDateDMY\":\"04\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220211\":{\"FromDate\":\"2022-02-11\",\"FromDateDMY\":\"11\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220218\":{\"FromDate\":\"2022-02-18\",\"FromDateDMY\":\"18\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220303\":{\"FromDate\":\"2022-03-03\",\"FromDateDMY\":\"03\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220310\":{\"FromDate\":\"2022-03-10\",\"FromDateDMY\":\"10\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220317\":{\"FromDate\":\"2022-03-17\",\"FromDateDMY\":\"17\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220324\":{\"FromDate\":\"2022-03-24\",\"FromDateDMY\":\"24\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220331\":{\"FromDate\":\"2022-03-31\",\"FromDateDMY\":\"31\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220403\":{\"FromDate\":\"2022-04-03\",\"FromDateDMY\":\"03\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220406\":{\"FromDate\":\"2022-04-06\",\"FromDateDMY\":\"06\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220410\":{\"FromDate\":\"2022-04-10\",\"FromDateDMY\":\"10\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220413\":{\"FromDate\":\"2022-04-13\",\"FromDateDMY\":\"13\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220417\":{\"FromDate\":\"2022-04-17\",\"FromDateDMY\":\"17\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220420\":{\"FromDate\":\"2022-04-20\",\"FromDateDMY\":\"20\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220424\":{\"FromDate\":\"2022-04-24\",\"FromDateDMY\":\"24\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220427\":{\"FromDate\":\"2022-04-27\",\"FromDateDMY\":\"27\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220501\":{\"FromDate\":\"2022-05-01\",\"FromDateDMY\":\"01\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220504\":{\"FromDate\":\"2022-05-04\",\"FromDateDMY\":\"04\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220508\":{\"FromDate\":\"2022-05-08\",\"FromDateDMY\":\"08\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220511\":{\"FromDate\":\"2022-05-11\",\"FromDateDMY\":\"11\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220515\":{\"FromDate\":\"2022-05-15\",\"FromDateDMY\":\"15\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220518\":{\"FromDate\":\"2022-05-18\",\"FromDateDMY\":\"18\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220522\":{\"FromDate\":\"2022-05-22\",\"FromDateDMY\":\"22\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220525\":{\"FromDate\":\"2022-05-25\",\"FromDateDMY\":\"25\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220529\":{\"FromDate\":\"2022-05-29\",\"FromDateDMY\":\"29\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220601\":{\"FromDate\":\"2022-06-01\",\"FromDateDMY\":\"01\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220605\":{\"FromDate\":\"2022-06-05\",\"FromDateDMY\":\"05\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220612\":{\"FromDate\":\"2022-06-12\",\"FromDateDMY\":\"12\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220617\":{\"FromDate\":\"2022-06-17\",\"FromDateDMY\":\"17\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220626\":{\"FromDate\":\"2022-06-26\",\"FromDateDMY\":\"26\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220703\":{\"FromDate\":\"2022-07-03\",\"FromDateDMY\":\"03\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220710\":{\"FromDate\":\"2022-07-10\",\"FromDateDMY\":\"10\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220717\":{\"FromDate\":\"2022-07-17\",\"FromDateDMY\":\"17\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220724\":{\"FromDate\":\"2022-07-24\",\"FromDateDMY\":\"24\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220731\":{\"FromDate\":\"2022-07-31\",\"FromDateDMY\":\"31\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220807\":{\"FromDate\":\"2022-08-07\",\"FromDateDMY\":\"07\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220814\":{\"FromDate\":\"2022-08-14\",\"FromDateDMY\":\"14\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220816\":{\"FromDate\":\"2022-08-16\",\"FromDateDMY\":\"16\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220818\":{\"FromDate\":\"2022-08-18\",\"FromDateDMY\":\"18\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220821\":{\"FromDate\":\"2022-08-21\",\"FromDateDMY\":\"21\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220828\":{\"FromDate\":\"2022-08-28\",\"FromDateDMY\":\"28\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220904\":{\"FromDate\":\"2022-09-04\",\"FromDateDMY\":\"04\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220911\":{\"FromDate\":\"2022-09-11\",\"FromDateDMY\":\"11\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220918\":{\"FromDate\":\"2022-09-18\",\"FromDateDMY\":\"18\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220925\":{\"FromDate\":\"2022-09-25\",\"FromDateDMY\":\"25\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221002\":{\"FromDate\":\"2022-10-02\",\"FromDateDMY\":\"02\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221009\":{\"FromDate\":\"2022-10-09\",\"FromDateDMY\":\"09\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221016\":{\"FromDate\":\"2022-10-16\",\"FromDateDMY\":\"16\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221020\":{\"FromDate\":\"2022-10-20\",\"FromDateDMY\":\"20\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221021\":{\"FromDate\":\"2022-10-21\",\"FromDateDMY\":\"21\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221022\":{\"FromDate\":\"2022-10-22\",\"FromDateDMY\":\"22\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221025\":{\"FromDate\":\"2022-10-25\",\"FromDateDMY\":\"25\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221026\":{\"FromDate\":\"2022-10-26\",\"FromDateDMY\":\"26\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221030\":{\"FromDate\":\"2022-10-30\",\"FromDateDMY\":\"30\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221102\":{\"FromDate\":\"2022-11-02\",\"FromDateDMY\":\"02\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221106\":{\"FromDate\":\"2022-11-06\",\"FromDateDMY\":\"06\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221109\":{\"FromDate\":\"2022-11-09\",\"FromDateDMY\":\"09\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221113\":{\"FromDate\":\"2022-11-13\",\"FromDateDMY\":\"13\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221116\":{\"FromDate\":\"2022-11-16\",\"FromDateDMY\":\"16\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221120\":{\"FromDate\":\"2022-11-20\",\"FromDateDMY\":\"20\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221123\":{\"FromDate\":\"2022-11-23\",\"FromDateDMY\":\"23\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221127\":{\"FromDate\":\"2022-11-27\",\"FromDateDMY\":\"27\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221130\":{\"FromDate\":\"2022-11-30\",\"FromDateDMY\":\"30\\/11\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221204\":{\"FromDate\":\"2022-12-04\",\"FromDateDMY\":\"04\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221207\":{\"FromDate\":\"2022-12-07\",\"FromDateDMY\":\"07\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221211\":{\"FromDate\":\"2022-12-11\",\"FromDateDMY\":\"11\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221214\":{\"FromDate\":\"2022-12-14\",\"FromDateDMY\":\"14\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221218\":{\"FromDate\":\"2022-12-18\",\"FromDateDMY\":\"18\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221221\":{\"FromDate\":\"2022-12-21\",\"FromDateDMY\":\"21\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221223\":{\"FromDate\":\"2022-12-23\",\"FromDateDMY\":\"23\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221225\":{\"FromDate\":\"2022-12-25\",\"FromDateDMY\":\"25\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221228\":{\"FromDate\":\"2022-12-28\",\"FromDateDMY\":\"28\\/12\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Mussoorie,Nainital,Corbett','Mussoorie,Uttarakhand,Indian Subcontinent,North India,India,Nainital,Corbett,Delhi',NULL,'18776,18892,6917',24761,25999,6,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-12-28 00:00:00','2022-12-28 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-ultimate-uttarakhand-2022',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (34,31469,1,12577,1,0,0,'Honeymoon,Family,Hill Station,Romantic,Leisure,Group Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31469,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/ex_kashmir_ki_kali_2022_1642424897.jpg\",\"BookingValidUntill\":\"2022-10-27\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Jammu &amp;amp; Kashmir&amp;nbsp;is fast developing as a tourist destination although it is advisable to check the political conditions in the state before your travel owing to sudden spurts of unrest and chaos. Mountainous Trekking and the beautiful snowy hill stations are popular amongst tourists.&amp;nbsp;Kashmir&amp;nbsp;is also home to many temples, pilgrimages, and monasteries making it a religious destination for pilgrimages too. Other than this, you can even take part in many adventures and sports in certain areas if weather permits. After all the activities, you can unwind by relaxing in the many gardens and the serene houseboats on the pristine lakes. On the whole, our&amp;nbsp;Kashmir tour Packages&amp;nbsp;will offer you an all-around vacation that will leave you relaxed and refreshed, just what a holiday should do to you!&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Srinagar\",\"SourcePlaceSysId\":25897,\"AgencyName\":\"\",\"Name\":\"Ex. Kashmir Ki Kali 2022 \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Hill Station,Romantic,Leisure,Group Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-10-27\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":493214,\"Name\":\"Wangnoo Houseboats\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.12089350000001\",\"Long\":\"74.8256864\",\"Address\":\"Lake Road,Nagin Lake, Lal Bazar, opp. Nagin Club, Srinagar, Jammu and Kashmir 190011\"},\"Images\":{\"Image\":[{\"ImagId\":4820381,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493214\\/4913_01642770284.jpg\"},{\"ImagId\":4820382,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493214\\/4913_11642770284.jpg\"},{\"ImagId\":4820383,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493214\\/4913_21642770284.jpg\"},{\"ImagId\":4820384,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493214\\/4913_31642770284.jpg\"}]},\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493214\\/4913_f62ddecdad1e6b417f3b3135fe747f5c1642770284.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":493215,\"Name\":\"New Alexandra Houseboats\",\"Star\":\"3.00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.0900016\",\"Long\":\"74.8392355\",\"Address\":\"Dal Lake, Ghat No 13, opposite Hotel Boulevard, Karapura, Rainawari, Srinagar, Jammu and Kashmir 190001\"},\"Images\":{\"Image\":[{\"ImagId\":4820385,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493215\\/4913_01642771001.jpg\"},{\"ImagId\":4820386,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493215\\/4913_11642771001.jpg\"},{\"ImagId\":4820387,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493215\\/4913_21642771001.jpg\"}]},\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_493215\\/4913_f57c39e04adbabb8dc805d0a1c9a210c1642771001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":491340,\"Name\":\"Hotel Pearl Continental\",\"Star\":\"3.00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0853658\",\"Long\":\"74.8638739\",\"Address\":\"shalimar road chandpora, Harwan Rd, Srinagar, Jammu and Kashmir 191123\"},\"Images\":{\"Image\":[{\"ImagId\":4820140,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_01640784524.jpg\"},{\"ImagId\":4820141,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_11640784524.jpg\"},{\"ImagId\":4820142,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_21640784524.jpg\"},{\"ImagId\":4820143,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_31640784524.jpg\"}]},\"CityId\":25897,\"Brief\":\"&lt;p&gt;Hotel Pearl Continental is your home away from home in Srinagar. An opulent boutique property located at Shalimar in the scenic Srinagar, Pearl Continental, takes in 30 Luxurious rooms with modern amenities offering the ultimate in comfort and style.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_491340\\/4913_f871ad7c2a822358267590d15e54e79e1640784524.jpg\",\"AccoAminitiesMask\":\"111001000100111000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1928,\"Title\":\"Zabarwan Range\",\"Description\":\"The Zabarwan Range is a short (20 mi (32 km) long) sub-mountain range between Pir Panjal and Great Himalayan Range in the central part of the Kashmir Valley in the state of Jammu and Kashmir in India.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1318\\/thumb\\/Zabarwan Range_147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2168,\"Title\":\"Pahalgam \\u00e2\\u20ac\\u201c The valley of shepherds\",\"Description\":\"The Pahalgam valley is situated at the confluence of the Seshnag Lake and the Lidder River. Pahalgam is basically a cluster of eight villages. The word Pahalgam literally means, the Valley of Shepherds.\\r\\n\\r\\nTours to Pahalgam is associated with the annual Amaranth Yatra. The region is extremely popular among tourists for its outdoor activities like Fishing, Horse Riding, Golf and Trekking. Pahalgam is a popular take off point for treks to the Kolahoi glacier, to several high altitude lakes, to the Amarnath cave and to Sonmarg.\\r\\n\\r\\nPahalgam offers several tourist attractions. Tours and travel to Pahalgam usually include a visit the Baisaran Meadow that is surrounded by pine forests on all sides. Tours to  Pahalgam should definitely include a visit to the village of Mamal that is significant as it has an ancient Shiva temple. It is believed that this is Kashmir&#039;s oldest temple.\\r\\n\\r\\nThere are excellent Fishing opportunities at the Lidder River. Tourists are issued permits to go fishing on the Lidder River. These permits are issued for maximum three days at a time. Most tours and travel packages to Pahalgam offer opportunities to tourists for outdoor activities such as fishing. There are ample opportunities for tourists to enjoy Horse Riding upto the Thajwas glacier.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501225253.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":110,\"Title\":\"Baisaran Valley\",\"Description\":\"Also termed as mini Switzerland, this valley is part of the package designed by pony owners &amp;amp; a must visit place too.It has a perfect settings of vast green valley, magnificent mountains &amp;amp; a perfect sunset.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0030906,\"Long\":75.3342943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1320\\/thumb\\/Baisaran Valley_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":179,\"Title\":\"Betaab Valley\",\"Description\":\"The Betaab Valley in Pahalgam is a breathtaking combination of picturesque surroundings that is encircled by mountains full of tall deodar trees and pine forests, with the Lidder River flowing right through it. The valley is located at a distance of 15 kilometres from Pahalgam in the Anantnag district of Jammu and Kashmir in northern India. The valley got its more recent and attractive name from a famous Bollywood movie that was shot here and has been attracting a large number of tourists ever this. The Bollywood connect of the valley, coupled with the scenic views that the place offers, have made the area a popular tourist destination.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1319\\/thumb\\/Betaab Valley_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":296,\"Title\":\"Chandanwari Valley\",\"Description\":\"Chandanwari, located 15 km from Pahalgam, is the starting point of the famous Amarnath Yatra. It is also famous for the snow sledging on a snow bridge. The place is perfect to enjoy a picnic with your family and enjoy the natural beauty.\\r\\nPahalgam is a popular hill station in Anantnag district of Jammu &amp;amp; Kashmir. It is a very famous tourist destination, and many tourists visit the place every year. It is located on the banks of Lidder River. Chandanwari is best recognised as the place where the Bollywood movie Betaab was shot.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0144741,\"Long\":75.3186241,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/799\\/thumb\\/Chandanwari_749.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":582,\"Title\":\"Golf Course\",\"Description\":\"Gulmarg Golf Course with asymmetrical contours is counted amongst the largest 18-hole golf courses in the country. Situated on the lower ranges of Gulmarg, it has emerged as one of the most popular golfing destinations in India. A number of tourists flock this region to enjoy a game of golf and escape the summer heat. Golfing in the region began in the early 1920s, when British came here to spend their summers. Over the years, this golf course has witnessed a lot of changes, and the present structure has been designed by Ranjit Nanda, a well-known golf course designer. The golf course, measuring 7505 yards (par of 72), was inaugurated by the Chief Minister of Jammu and Kashmir, Omar Abdullah in the year 2011.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3671\\/thumb\\/Golf Course_525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":587,\"Title\":\"Gondola Ride\",\"Description\":\"Gulmarg Gondola in Gulmarg, Jammu and Kashmir is the world&amp;#039;s second highest operating cable car since the closure in 2008 of the M&amp;eacute;rida cable car in Venezuela and the opening in 2008 of the Dagu Glacie\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/438\\/thumb\\/Gondola Ride_723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1198,\"Title\":\"Nanga Parbat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1384\\/thumb\\/Nanga Parbat_660.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7250,\"Title\":\"Bat Factory\",\"Description\":\"Srinagar is a year round entertainment spot for kids. Whether it is taking a Shikara ride on the Dal Lake in summers or building a snowman in winters, Srinagar is the ideal holiday destination for kids. \\r\\n\\r\\nForty kilometres from Srinagar is Sangam, the veiled world of the Kashmiri willow and cricket bat makers. Kids will have a field day with scores of cricket factories and stacks of drying planks. Some of the factories here supply bats to the stalwarts of the game.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Bat_Factory__25897_1538043081.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1290,\"Title\":\"Pampore\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/179\\/thumb\\/Pampore_125.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":20566,\"Title\":\"Pahalgam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485956,\"Name\":\"Hotel Sparrow pahalgam\",\"Star\":\"3.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"6.3958566\",\"Long\":\"80.7000637\",\"Address\":\"Nagipora Kullar, Pahalgam, J&amp;K 192126\"},\"Images\":{\"Image\":[{\"ImagId\":4820170,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485956\\/4913_01641968507.jpg\"},{\"ImagId\":4820171,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485956\\/4913_11641968508.png\"},{\"ImagId\":4820172,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485956\\/4913_21641968508.jpg\"},{\"ImagId\":4820173,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485956\\/4913_31641968508.jpg\"}]},\"CityId\":20566,\"Brief\":\"&lt;p&gt;This budget hotel of Kullar Pahalgam is ideally located on peaceful area of kullar pahalgam. Hotel Sparrow, Pahalgam was newly constructed in 2019, as a popular destination for overseas and domestic tourists and those escaping for a rejuvenating break in the hill station. Taking a stroll on the Mall Road is a pure bliss at any time of the day as it gives you a glimpse of the exotic scenery and gives a variety of shopping and eating options to the tourists.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;At Hotel Sparrow we pride ourselves in creating a special environment for all our guests, one in which you are able to relax and let yourselves be thoroughly pampered by our experienced and dedicated staff.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;We are 75 kms away from the srinagar Airport. The popular destinations around Pahalgam like Baisaran, Aru Valley, Betab Valley is 16 kms away. Time spent at leisure is an extremely precious commodity and it is our aim to help you make the most of it. We look forward to welcome you.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485956\\/4913_4678cf3567b882ae225d0f13c995fc9b1641968507.png\",\"AccoAminitiesMask\":\"111001000000110000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1928,\"Title\":\"Zabarwan Range\",\"Description\":\"The Zabarwan Range is a short (20 mi (32 km) long) sub-mountain range between Pir Panjal and Great Himalayan Range in the central part of the Kashmir Valley in the state of Jammu and Kashmir in India.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1318\\/thumb\\/Zabarwan Range_147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2168,\"Title\":\"Pahalgam \\u00e2\\u20ac\\u201c The valley of shepherds\",\"Description\":\"The Pahalgam valley is situated at the confluence of the Seshnag Lake and the Lidder River. Pahalgam is basically a cluster of eight villages. The word Pahalgam literally means, the Valley of Shepherds.\\r\\n\\r\\nTours to Pahalgam is associated with the annual Amaranth Yatra. The region is extremely popular among tourists for its outdoor activities like Fishing, Horse Riding, Golf and Trekking. Pahalgam is a popular take off point for treks to the Kolahoi glacier, to several high altitude lakes, to the Amarnath cave and to Sonmarg.\\r\\n\\r\\nPahalgam offers several tourist attractions. Tours and travel to Pahalgam usually include a visit the Baisaran Meadow that is surrounded by pine forests on all sides. Tours to  Pahalgam should definitely include a visit to the village of Mamal that is significant as it has an ancient Shiva temple. It is believed that this is Kashmir&#039;s oldest temple.\\r\\n\\r\\nThere are excellent Fishing opportunities at the Lidder River. Tourists are issued permits to go fishing on the Lidder River. These permits are issued for maximum three days at a time. Most tours and travel packages to Pahalgam offer opportunities to tourists for outdoor activities such as fishing. There are ample opportunities for tourists to enjoy Horse Riding upto the Thajwas glacier.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501225253.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":110,\"Title\":\"Baisaran Valley\",\"Description\":\"Also termed as mini Switzerland, this valley is part of the package designed by pony owners &amp;amp; a must visit place too.It has a perfect settings of vast green valley, magnificent mountains &amp;amp; a perfect sunset.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0030906,\"Long\":75.3342943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1320\\/thumb\\/Baisaran Valley_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":179,\"Title\":\"Betaab Valley\",\"Description\":\"The Betaab Valley in Pahalgam is a breathtaking combination of picturesque surroundings that is encircled by mountains full of tall deodar trees and pine forests, with the Lidder River flowing right through it. The valley is located at a distance of 15 kilometres from Pahalgam in the Anantnag district of Jammu and Kashmir in northern India. The valley got its more recent and attractive name from a famous Bollywood movie that was shot here and has been attracting a large number of tourists ever this. The Bollywood connect of the valley, coupled with the scenic views that the place offers, have made the area a popular tourist destination.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1319\\/thumb\\/Betaab Valley_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":296,\"Title\":\"Chandanwari Valley\",\"Description\":\"Chandanwari, located 15 km from Pahalgam, is the starting point of the famous Amarnath Yatra. It is also famous for the snow sledging on a snow bridge. The place is perfect to enjoy a picnic with your family and enjoy the natural beauty.\\r\\nPahalgam is a popular hill station in Anantnag district of Jammu &amp;amp; Kashmir. It is a very famous tourist destination, and many tourists visit the place every year. It is located on the banks of Lidder River. Chandanwari is best recognised as the place where the Bollywood movie Betaab was shot.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0144741,\"Long\":75.3186241,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/799\\/thumb\\/Chandanwari_749.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":582,\"Title\":\"Golf Course\",\"Description\":\"Gulmarg Golf Course with asymmetrical contours is counted amongst the largest 18-hole golf courses in the country. Situated on the lower ranges of Gulmarg, it has emerged as one of the most popular golfing destinations in India. A number of tourists flock this region to enjoy a game of golf and escape the summer heat. Golfing in the region began in the early 1920s, when British came here to spend their summers. Over the years, this golf course has witnessed a lot of changes, and the present structure has been designed by Ranjit Nanda, a well-known golf course designer. The golf course, measuring 7505 yards (par of 72), was inaugurated by the Chief Minister of Jammu and Kashmir, Omar Abdullah in the year 2011.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3671\\/thumb\\/Golf Course_525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":587,\"Title\":\"Gondola Ride\",\"Description\":\"Gulmarg Gondola in Gulmarg, Jammu and Kashmir is the world&amp;#039;s second highest operating cable car since the closure in 2008 of the M&amp;eacute;rida cable car in Venezuela and the opening in 2008 of the Dagu Glacie\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/438\\/thumb\\/Gondola Ride_723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1198,\"Title\":\"Nanga Parbat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1384\\/thumb\\/Nanga Parbat_660.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7250,\"Title\":\"Bat Factory\",\"Description\":\"Srinagar is a year round entertainment spot for kids. Whether it is taking a Shikara ride on the Dal Lake in summers or building a snowman in winters, Srinagar is the ideal holiday destination for kids. \\r\\n\\r\\nForty kilometres from Srinagar is Sangam, the veiled world of the Kashmiri willow and cricket bat makers. Kids will have a field day with scores of cricket factories and stacks of drying planks. Some of the factories here supply bats to the stalwarts of the game.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Bat_Factory__25897_1538043081.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1290,\"Title\":\"Pampore\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/179\\/thumb\\/Pampore_125.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":11197,\"Title\":\"Gulmarg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":485957,\"Name\":\"Hotel Gulmarg House\",\"Star\":\"3.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0644404\",\"Long\":\"74.4312166\",\"Address\":\"Gulmarg Tangmarg Qazipora Gulmarg Qazipora, Gulmarg, Jammu and Kashmir 193402\"},\"Images\":{\"Image\":[{\"ImagId\":4820167,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485957\\/4913_01641967486.jpg\"},{\"ImagId\":4820168,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485957\\/4913_11641967486.png\"},{\"ImagId\":4820169,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485957\\/4913_21641967486.jpg\"}]},\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_485957\\/4913_16a5923a3e18edcfb9cffc844f2f34fb1641967485.png\",\"AccoAminitiesMask\":\"111001000100110000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Double\\/Twin Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1928,\"Title\":\"Zabarwan Range\",\"Description\":\"The Zabarwan Range is a short (20 mi (32 km) long) sub-mountain range between Pir Panjal and Great Himalayan Range in the central part of the Kashmir Valley in the state of Jammu and Kashmir in India.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1318\\/thumb\\/Zabarwan Range_147.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":971,\"Title\":\"Lidder River\",\"Description\":\"Lidder or Liddar is a 73 kilometres (45 mi) long river in the Kashmir region of India in the state of Jammu and Kashmir. It originates from the Kolhoi Glacier and joins the Jehlum River at Gurnar Khanabal at an altitude of 1,615 metres (5,299 ft).\\r\\nLidder river originates from Kolhoi Glacier near Sonamarg and gives rise to Lidder Valley. It runs southwards through the alpine meadows of Lidderwat in region of Aru, from which it got its name. It covers 30 kilometres (19 mi) before reaching Pahalgam where it the major tributary of East Lidder from Sheshnag Lake. It then runs westwards until it meets the Jehlum River at Gurnar Khanabal near Anantnag. It has crystal blueish water and Pahalgam is situated in the center of Lidder Valley.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501224594.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2168,\"Title\":\"Pahalgam \\u00e2\\u20ac\\u201c The valley of shepherds\",\"Description\":\"The Pahalgam valley is situated at the confluence of the Seshnag Lake and the Lidder River. Pahalgam is basically a cluster of eight villages. The word Pahalgam literally means, the Valley of Shepherds.\\r\\n\\r\\nTours to Pahalgam is associated with the annual Amaranth Yatra. The region is extremely popular among tourists for its outdoor activities like Fishing, Horse Riding, Golf and Trekking. Pahalgam is a popular take off point for treks to the Kolahoi glacier, to several high altitude lakes, to the Amarnath cave and to Sonmarg.\\r\\n\\r\\nPahalgam offers several tourist attractions. Tours and travel to Pahalgam usually include a visit the Baisaran Meadow that is surrounded by pine forests on all sides. Tours to  Pahalgam should definitely include a visit to the village of Mamal that is significant as it has an ancient Shiva temple. It is believed that this is Kashmir&#039;s oldest temple.\\r\\n\\r\\nThere are excellent Fishing opportunities at the Lidder River. Tourists are issued permits to go fishing on the Lidder River. These permits are issued for maximum three days at a time. Most tours and travel packages to Pahalgam offer opportunities to tourists for outdoor activities such as fishing. There are ample opportunities for tourists to enjoy Horse Riding upto the Thajwas glacier.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20566\\/sightseeing\\/21_1501225253.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":110,\"Title\":\"Baisaran Valley\",\"Description\":\"Also termed as mini Switzerland, this valley is part of the package designed by pony owners &amp;amp; a must visit place too.It has a perfect settings of vast green valley, magnificent mountains &amp;amp; a perfect sunset.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0030906,\"Long\":75.3342943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1320\\/thumb\\/Baisaran Valley_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":179,\"Title\":\"Betaab Valley\",\"Description\":\"The Betaab Valley in Pahalgam is a breathtaking combination of picturesque surroundings that is encircled by mountains full of tall deodar trees and pine forests, with the Lidder River flowing right through it. The valley is located at a distance of 15 kilometres from Pahalgam in the Anantnag district of Jammu and Kashmir in northern India. The valley got its more recent and attractive name from a famous Bollywood movie that was shot here and has been attracting a large number of tourists ever this. The Bollywood connect of the valley, coupled with the scenic views that the place offers, have made the area a popular tourist destination.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1319\\/thumb\\/Betaab Valley_430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":296,\"Title\":\"Chandanwari Valley\",\"Description\":\"Chandanwari, located 15 km from Pahalgam, is the starting point of the famous Amarnath Yatra. It is also famous for the snow sledging on a snow bridge. The place is perfect to enjoy a picnic with your family and enjoy the natural beauty.\\r\\nPahalgam is a popular hill station in Anantnag district of Jammu &amp;amp; Kashmir. It is a very famous tourist destination, and many tourists visit the place every year. It is located on the banks of Lidder River. Chandanwari is best recognised as the place where the Bollywood movie Betaab was shot.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0144741,\"Long\":75.3186241,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/799\\/thumb\\/Chandanwari_749.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":582,\"Title\":\"Golf Course\",\"Description\":\"Gulmarg Golf Course with asymmetrical contours is counted amongst the largest 18-hole golf courses in the country. Situated on the lower ranges of Gulmarg, it has emerged as one of the most popular golfing destinations in India. A number of tourists flock this region to enjoy a game of golf and escape the summer heat. Golfing in the region began in the early 1920s, when British came here to spend their summers. Over the years, this golf course has witnessed a lot of changes, and the present structure has been designed by Ranjit Nanda, a well-known golf course designer. The golf course, measuring 7505 yards (par of 72), was inaugurated by the Chief Minister of Jammu and Kashmir, Omar Abdullah in the year 2011.\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3671\\/thumb\\/Golf Course_525.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":587,\"Title\":\"Gondola Ride\",\"Description\":\"Gulmarg Gondola in Gulmarg, Jammu and Kashmir is the world&amp;#039;s second highest operating cable car since the closure in 2008 of the M&amp;eacute;rida cable car in Venezuela and the opening in 2008 of the Dagu Glacie\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0416028,\"Long\":74.370477,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/438\\/thumb\\/Gondola Ride_723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1198,\"Title\":\"Nanga Parbat\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":11197,\"CityName\":\"Gulmarg\",\"Lat\":34.0460089,\"Long\":74.3965405,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1384\\/thumb\\/Nanga Parbat_660.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":7250,\"Title\":\"Bat Factory\",\"Description\":\"Srinagar is a year round entertainment spot for kids. Whether it is taking a Shikara ride on the Dal Lake in summers or building a snowman in winters, Srinagar is the ideal holiday destination for kids. \\r\\n\\r\\nForty kilometres from Srinagar is Sangam, the veiled world of the Kashmiri willow and cricket bat makers. Kids will have a field day with scores of cricket factories and stacks of drying planks. Some of the factories here supply bats to the stalwarts of the game.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Bat_Factory__25897_1538043081.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":309,\"Title\":\"Chashme Shahi Garden\",\"Description\":\"Chashme Shahi or Chashmai Shahi, also called Chashma Shahi, is one of the Mughal gardens built in 1632 AD around a spring by Ali Mardan Khan, a governor of Mughal emperor Shah Jahan as per the orders.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0863686,\"Long\":74.8865298,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/108\\/thumb\\/Chashme Shahi Garden_678.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1242,\"Title\":\"Nishat Bagh\",\"Description\":\"Nishat Bagh is a terraced Mughal garden built on the eastern side of the Dal Lake, close to Srinagar in the state of Jammu and Kashmir, India. It is the second largest Mughal garden in the Kashmir Valley. The largest in size is the Shalimar Bagh, which is also located on the bank of the Dal Lake. &acirc;&euro;&tilde;Nishat Bagh&acirc;&euro;&trade; is Urdu, which means &quot;Garden of Joy,&quot; &quot;Garden of Gladness&quot; and &quot;Garden of Delight.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1225226,\"Long\":74.8821445,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171115.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1563,\"Title\":\"Shankaracharya Temple\",\"Description\":\"The Shankaracharya Temple  is also known as the Jyesteshwara temple or Pas-Pahar by Buddhists. Shankracharya Temple was renamed as Takht-e-Suleiman (Throne of Solomon)[citation needed]. It is on top of the Shankaracharya Hill (also called Gopadari Hill)on the Zabarwan Mountain in Srinagar, Kashmir. It is dedicated to Lord Shiva. The temple is at a height of 1,000 feet (300 m) above the plain and overlooks the city of Srinagar.\\r\\n\\r\\n\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501170973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":1290,\"Title\":\"Pampore\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0160751,\"Long\":75.3149796,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/179\\/thumb\\/Pampore_125.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"223840\",\"Title\":\"Arrival in Srinagar\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival, meet and greet by our representative at the airport and transfer to the hotel\\/houseboat. Spend the day at leisure on boulevard road which is one of the most famous roads in Srinagar for tourists and is situated around the Dal Lake surrounded by Zabarwan Mountain ranges. Dinner and overnight at the Houseboat.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":493214,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"},{\"IsIncluded\":false,\"Id\":493215,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":393,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1928,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223841\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223842\",\"Title\":\" Srinagar - Pahalgam (85 kms \\/ 2:30 hours approximately)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After Breakfast Drive to&amp;nbsp;Pahalgam&amp;nbsp;&amp;ldquo;Valley of Shepherds&amp;rdquo;. On arrival, check into the Hotel in&amp;nbsp;Pahalgam. Enjoy the nature and admire the beauty of this quiet place and be in awe of the serene surroundings.&amp;nbsp; if you are an avid nature lover you may take pleasure in a peaceful walk along the&amp;nbsp;River&amp;nbsp;Lidder.&amp;nbsp;Pahalgam&amp;nbsp;is famous for some trekking routes also &amp;amp; is the base camp for Amarnath Pilgrimage. Dinner and Overnight stay in&amp;nbsp;hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":971,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2168,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223843\",\"Title\":\"Pahalgam Local Sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, enjoy your full day in&amp;nbsp;Pahalgam, the best place for a Honeymoon Couple surrounded by snow-clad mountains with dense forest of pine and deodar trees, vast meadows, and Fresh Fast running river. The natural beauty makes it a popular hill station of India. You can go trekking along the mountainous path and explore the beauty on the way. Visit the famous sightseeing places like Aru Valley,&amp;nbsp;Betaab&amp;nbsp;Valley, and&amp;nbsp;Chandanwari&amp;nbsp;(By Union-operated vehicles) Post lunch,&amp;nbsp;One&amp;nbsp;can also visit&amp;nbsp;Baisaran&amp;nbsp;by Pony (On Own Expense) to witness the glaciers of&amp;nbsp;Pahalgam. (If time permits) Transfer back to the hotel for dinner and Overnight stay in&amp;nbsp;Hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485956,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":78,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":110,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":179,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":296,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223844\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223845\",\"Title\":\"Pahalgam - Gulmarg (146 kms \\/ 3:30 hours approximately)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast drive to Gulmarg, &amp;ldquo;Meadow of Flowers&amp;rdquo; which is situated at 2730 Mts. above sea level. The distance of 56 kms will be covered in about 2 hrs. Gulmarg has one of the best Ski slopes in the world and the highest golf course in the world with 18 holes. One can also have the view of Nanga&amp;nbsp;Parbhat&amp;nbsp;if weather permits. The view enroute from&amp;nbsp;Tangmarg&amp;nbsp;to Gulmarg is fascinating. Later, take a Gondola ride to enjoy the scenic view of&amp;nbsp;Kongdori. Pay and visit level 2 of the mountain to enjoy the snow activities and nature at the glacier. Transfer to Gulmarg for Check-in, Dinner, and&amp;nbsp; Overnight&amp;nbsp;stay in the Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":485957,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":582,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":587,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1198,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223846\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223847\",\"Title\":\"Gulmarg &acirc;&euro;&ldquo; Srinagar (56 kms \\/ 2:00 hours approximately)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, drive to Srinagar. En route, visit Pampore village for visiting saffron fields and showrooms. Taste the local Kahwa, purchase dry fruits, and Saffron. Also, visit a Bat factory if you are a cricket lover, you will surely like to buy them. Upon arrival at Srinagar, Strat sightseeing of the famous Mughal Gardens&amp;nbsp;Chashma&amp;nbsp;Shahi&amp;nbsp;&amp;ldquo;Royal Spring&amp;rdquo;,&amp;nbsp;Shalimar&amp;nbsp;&amp;ldquo;Garden of Love&amp;rdquo;,&amp;nbsp;Nishat Garden&amp;nbsp;&amp;ldquo;Garden of Pleasure&amp;rdquo; and Shankaracharya Temple. On return visit a local Handicrafts Showroom for hand-knotted specialty silken carpets, shawls, and jewellery ornaments. Check-in, Dinner, and overnight stay in hotel. Visit Lal chowk for some local shopping if time permits.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7250,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":309,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1242,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1560,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1563,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1290,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223848\",\"Title\":\"Srinagar - Sonmarg &acirc;&euro;&ldquo; Srinagar (84 Kms \\/ 2:30 hours approximately)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast, leave for a full day excursion tour of&amp;nbsp;&amp;nbsp;Sonmarg, &amp;ldquo;The meadow of gold. Situated at an altitude of 9000 Ft.&amp;nbsp;Sonmarg&amp;nbsp;at a distance of 84 kms from Srinagar is also called &amp;ldquo;The meadow of gold&amp;rdquo;,&amp;nbsp;Sonmarg&amp;nbsp;lies in Sindh Valley streamed with flowers and surrounded by glacier mountains. The place is also the base for some interesting treks to the high altitude of Himalayan Lake. Ponies can be hired for the trip up to&amp;nbsp;Thajiwas&amp;nbsp;glacier, which is a major local attraction during the summer, also take a local vehicle to visit the Zero point (If time permits).&amp;nbsp;Sonmarg&amp;nbsp;offers some stunning views of snow-clad mountains and beautiful greenery.&amp;nbsp; Drive back to Srinagar for dinner and overnight stay in&amp;nbsp;hotel.&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":491340,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Standard Double\\/Twin Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"223849\",\"Title\":\"Srinagar - Onward destination \",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, check out and transfer to Srinagar airport to board your scheduled flight for your onward destination.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;Great Memories linger while the tour ends.&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p style=&quot;text-align:center&quot;&gt;Remember to rate us on Google and recommend Best Tours to your friends and families for hassle-free vacations.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31469\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21999.60\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2200,\"priceDoubleOcc\":\"2199.75\",\"priceSingleOcc\":13199.55,\"priceExtraBed\":\"2199.75\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2199.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2200,\"priceDoubleOcc\":\"2199.75\",\"priceSingleOcc\":13199.55,\"priceExtraBed\":\"2199.75\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2199.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2200,\"priceDoubleOcc\":\"2199.75\",\"priceSingleOcc\":13199.55,\"priceExtraBed\":\"2199.75\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2199.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2200,\"priceDoubleOcc\":\"2199.75\",\"priceSingleOcc\":13199.55,\"priceExtraBed\":\"2199.75\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2199.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2200,\"priceDoubleOcc\":\"2199.75\",\"priceSingleOcc\":13199.55,\"priceExtraBed\":\"2199.75\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2199.75\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":15400,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"2199.75\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":22000,\"priceDoubleOcc\":\"21999.60\",\"priceSingleOcc\":32999.399999999994,\"priceExtraBed\":\"21999.60\",\"priceWithoutBed\":\"17999.10\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"21999.60\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31469\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20952.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-23\",\"To\":\"2022-01-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-01-30\",\"To\":\"2022-01-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-05\",\"To\":\"2022-02-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-10\",\"To\":\"2022-02-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-15\",\"To\":\"2022-02-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-20\",\"To\":\"2022-02-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-02-25\",\"To\":\"2022-02-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-01\",\"To\":\"2022-03-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-07\",\"To\":\"2022-03-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-13\",\"To\":\"2022-03-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-19\",\"To\":\"2022-03-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-25\",\"To\":\"2022-03-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-03-31\",\"To\":\"2022-03-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-01\",\"To\":\"2022-04-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-03\",\"To\":\"2022-04-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-05\",\"To\":\"2022-04-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-07\",\"To\":\"2022-04-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-09\",\"To\":\"2022-04-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-11\",\"To\":\"2022-04-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-13\",\"To\":\"2022-04-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-15\",\"To\":\"2022-04-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-17\",\"To\":\"2022-04-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-19\",\"To\":\"2022-04-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-21\",\"To\":\"2022-04-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-23\",\"To\":\"2022-04-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-25\",\"To\":\"2022-04-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-27\",\"To\":\"2022-04-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-04-29\",\"To\":\"2022-04-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-01\",\"To\":\"2022-05-01\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-03\",\"To\":\"2022-05-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-05\",\"To\":\"2022-05-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-07\",\"To\":\"2022-05-07\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-09\",\"To\":\"2022-05-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-11\",\"To\":\"2022-05-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-13\",\"To\":\"2022-05-13\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-15\",\"To\":\"2022-05-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-17\",\"To\":\"2022-05-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-19\",\"To\":\"2022-05-19\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2095,\"priceDoubleOcc\":\"2095.00\",\"priceSingleOcc\":12571,\"priceExtraBed\":\"2095.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2095,\"priceDoubleOcc\":\"2095.00\",\"priceSingleOcc\":12571,\"priceExtraBed\":\"2095.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2095,\"priceDoubleOcc\":\"2095.00\",\"priceSingleOcc\":12571,\"priceExtraBed\":\"2095.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2095,\"priceDoubleOcc\":\"2095.00\",\"priceSingleOcc\":12571,\"priceExtraBed\":\"2095.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":2095,\"priceDoubleOcc\":\"2095.00\",\"priceSingleOcc\":12571,\"priceExtraBed\":\"2095.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"2095.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-21\",\"To\":\"2022-05-21\",\"Currency\":1,\"priceTripleOcc\":14666,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"2095.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-23\",\"To\":\"2022-05-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-25\",\"To\":\"2022-05-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-27\",\"To\":\"2022-05-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-29\",\"To\":\"2022-05-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-31\",\"To\":\"2022-05-31\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-03\",\"To\":\"2022-06-03\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-06\",\"To\":\"2022-06-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-09\",\"To\":\"2022-06-09\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-12\",\"To\":\"2022-06-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-15\",\"To\":\"2022-06-15\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-18\",\"To\":\"2022-06-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-21\",\"To\":\"2022-06-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-24\",\"To\":\"2022-06-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-27\",\"To\":\"2022-06-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-30\",\"To\":\"2022-06-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-12\",\"To\":\"2022-07-12\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-18\",\"To\":\"2022-07-18\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-24\",\"To\":\"2022-07-24\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-30\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-05\",\"To\":\"2022-08-05\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-23\",\"To\":\"2022-08-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-29\",\"To\":\"2022-08-29\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-04\",\"To\":\"2022-09-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-10\",\"To\":\"2022-09-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-16\",\"To\":\"2022-09-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-20\",\"To\":\"2022-09-20\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-21\",\"To\":\"2022-09-21\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-22\",\"To\":\"2022-09-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-09-28\",\"To\":\"2022-09-28\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-04\",\"To\":\"2022-10-04\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-10\",\"To\":\"2022-10-10\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-22\",\"To\":\"2022-10-22\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-23\",\"To\":\"2022-10-23\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-25\",\"To\":\"2022-10-25\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-10-27\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":20952,\"priceDoubleOcc\":\"20952.00\",\"priceSingleOcc\":31428,\"priceExtraBed\":\"20952.00\",\"priceWithoutBed\":\"17142.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"20952.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return Air ticket&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30 Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Upgrade to 4* Hotel with additional charges of INR 15000\\/- per adult.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Child rates will vary accordingly.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Terms and Conditions as per booking forms&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Surcharges applicable on certain dates&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Srinagar&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Shalimar&amp;nbsp;Bagh&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Nishant&amp;nbsp;Bagh&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shikara&amp;nbsp;Ride&amp;nbsp;(1 Hour)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chashme&amp;nbsp;Shahi&amp;nbsp;Gardens&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shankaracharya&amp;nbsp;temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shopping tour&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pampore&amp;nbsp;saffron&amp;nbsp;shopping&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Sonmarg:&amp;nbsp;&lt;\\/strong&gt;(Day Trip &amp;ndash; If Operative)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Thajiwas&amp;nbsp;Glacier&amp;nbsp;(On your own)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Zero Point&amp;nbsp;(On your own)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Pahalgam:&lt;\\/strong&gt;&amp;nbsp;(Done in union vehicles)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Aru&amp;nbsp;Valley&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Betaab&amp;nbsp;valley&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Chandanwari&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Pony Ride&amp;nbsp;to&amp;nbsp;Baisaran&amp;nbsp;(On your own)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Gulmarg:&amp;nbsp;&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Golf Course&amp;nbsp;(Photo stop)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gondola Ride (Phase 1)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Meals:&lt;\\/strong&gt;&amp;nbsp;(Pure Veg.\\/Jain Kitchen by&amp;nbsp;Maharaj)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Breakfasts&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05&amp;nbsp;Lunches&amp;nbsp;(Packed Lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06 Dinners&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Transportation:&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All&amp;nbsp;Transfers&amp;nbsp;by A\\/C coach\\/tempo traveler&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Note:&amp;nbsp; A\\/C will not be operated on hilly area as per Govt. norms&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9335\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9336\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"223840\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[223840],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223841\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[223841],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223842\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[223842],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223843\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[223843],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223844\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223844],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223845\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[223845],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223846\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[223846],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223847\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[223847],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223848\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[223848],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"223849\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[223849],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"25897\":{\"CityName\":\"Srinagar\",\"FromDate\":{\"20220123\":{\"FromDate\":\"2022-01-23\",\"FromDateDMY\":\"23\\/01\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220130\":{\"FromDate\":\"2022-01-30\",\"FromDateDMY\":\"30\\/01\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220205\":{\"FromDate\":\"2022-02-05\",\"FromDateDMY\":\"05\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220210\":{\"FromDate\":\"2022-02-10\",\"FromDateDMY\":\"10\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220215\":{\"FromDate\":\"2022-02-15\",\"FromDateDMY\":\"15\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220220\":{\"FromDate\":\"2022-02-20\",\"FromDateDMY\":\"20\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220225\":{\"FromDate\":\"2022-02-25\",\"FromDateDMY\":\"25\\/02\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220301\":{\"FromDate\":\"2022-03-01\",\"FromDateDMY\":\"01\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220307\":{\"FromDate\":\"2022-03-07\",\"FromDateDMY\":\"07\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220313\":{\"FromDate\":\"2022-03-13\",\"FromDateDMY\":\"13\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220319\":{\"FromDate\":\"2022-03-19\",\"FromDateDMY\":\"19\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220325\":{\"FromDate\":\"2022-03-25\",\"FromDateDMY\":\"25\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220331\":{\"FromDate\":\"2022-03-31\",\"FromDateDMY\":\"31\\/03\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220401\":{\"FromDate\":\"2022-04-01\",\"FromDateDMY\":\"01\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220403\":{\"FromDate\":\"2022-04-03\",\"FromDateDMY\":\"03\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220405\":{\"FromDate\":\"2022-04-05\",\"FromDateDMY\":\"05\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220407\":{\"FromDate\":\"2022-04-07\",\"FromDateDMY\":\"07\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220409\":{\"FromDate\":\"2022-04-09\",\"FromDateDMY\":\"09\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220411\":{\"FromDate\":\"2022-04-11\",\"FromDateDMY\":\"11\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220413\":{\"FromDate\":\"2022-04-13\",\"FromDateDMY\":\"13\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220415\":{\"FromDate\":\"2022-04-15\",\"FromDateDMY\":\"15\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220417\":{\"FromDate\":\"2022-04-17\",\"FromDateDMY\":\"17\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220419\":{\"FromDate\":\"2022-04-19\",\"FromDateDMY\":\"19\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220421\":{\"FromDate\":\"2022-04-21\",\"FromDateDMY\":\"21\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220423\":{\"FromDate\":\"2022-04-23\",\"FromDateDMY\":\"23\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220425\":{\"FromDate\":\"2022-04-25\",\"FromDateDMY\":\"25\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220427\":{\"FromDate\":\"2022-04-27\",\"FromDateDMY\":\"27\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220429\":{\"FromDate\":\"2022-04-29\",\"FromDateDMY\":\"29\\/04\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220501\":{\"FromDate\":\"2022-05-01\",\"FromDateDMY\":\"01\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220503\":{\"FromDate\":\"2022-05-03\",\"FromDateDMY\":\"03\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220505\":{\"FromDate\":\"2022-05-05\",\"FromDateDMY\":\"05\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220507\":{\"FromDate\":\"2022-05-07\",\"FromDateDMY\":\"07\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220509\":{\"FromDate\":\"2022-05-09\",\"FromDateDMY\":\"09\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220511\":{\"FromDate\":\"2022-05-11\",\"FromDateDMY\":\"11\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220513\":{\"FromDate\":\"2022-05-13\",\"FromDateDMY\":\"13\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220515\":{\"FromDate\":\"2022-05-15\",\"FromDateDMY\":\"15\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220517\":{\"FromDate\":\"2022-05-17\",\"FromDateDMY\":\"17\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220519\":{\"FromDate\":\"2022-05-19\",\"FromDateDMY\":\"19\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220521\":{\"FromDate\":\"2022-05-21\",\"FromDateDMY\":\"21\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220523\":{\"FromDate\":\"2022-05-23\",\"FromDateDMY\":\"23\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220525\":{\"FromDate\":\"2022-05-25\",\"FromDateDMY\":\"25\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220527\":{\"FromDate\":\"2022-05-27\",\"FromDateDMY\":\"27\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220529\":{\"FromDate\":\"2022-05-29\",\"FromDateDMY\":\"29\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220531\":{\"FromDate\":\"2022-05-31\",\"FromDateDMY\":\"31\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220603\":{\"FromDate\":\"2022-06-03\",\"FromDateDMY\":\"03\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220606\":{\"FromDate\":\"2022-06-06\",\"FromDateDMY\":\"06\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220609\":{\"FromDate\":\"2022-06-09\",\"FromDateDMY\":\"09\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220612\":{\"FromDate\":\"2022-06-12\",\"FromDateDMY\":\"12\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220615\":{\"FromDate\":\"2022-06-15\",\"FromDateDMY\":\"15\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220618\":{\"FromDate\":\"2022-06-18\",\"FromDateDMY\":\"18\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220621\":{\"FromDate\":\"2022-06-21\",\"FromDateDMY\":\"21\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220624\":{\"FromDate\":\"2022-06-24\",\"FromDateDMY\":\"24\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220627\":{\"FromDate\":\"2022-06-27\",\"FromDateDMY\":\"27\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220630\":{\"FromDate\":\"2022-06-30\",\"FromDateDMY\":\"30\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220706\":{\"FromDate\":\"2022-07-06\",\"FromDateDMY\":\"06\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220712\":{\"FromDate\":\"2022-07-12\",\"FromDateDMY\":\"12\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220718\":{\"FromDate\":\"2022-07-18\",\"FromDateDMY\":\"18\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220724\":{\"FromDate\":\"2022-07-24\",\"FromDateDMY\":\"24\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220730\":{\"FromDate\":\"2022-07-30\",\"FromDateDMY\":\"30\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220805\":{\"FromDate\":\"2022-08-05\",\"FromDateDMY\":\"05\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220811\":{\"FromDate\":\"2022-08-11\",\"FromDateDMY\":\"11\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220816\":{\"FromDate\":\"2022-08-16\",\"FromDateDMY\":\"16\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220817\":{\"FromDate\":\"2022-08-17\",\"FromDateDMY\":\"17\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220823\":{\"FromDate\":\"2022-08-23\",\"FromDateDMY\":\"23\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220829\":{\"FromDate\":\"2022-08-29\",\"FromDateDMY\":\"29\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220904\":{\"FromDate\":\"2022-09-04\",\"FromDateDMY\":\"04\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220910\":{\"FromDate\":\"2022-09-10\",\"FromDateDMY\":\"10\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220916\":{\"FromDate\":\"2022-09-16\",\"FromDateDMY\":\"16\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220920\":{\"FromDate\":\"2022-09-20\",\"FromDateDMY\":\"20\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220921\":{\"FromDate\":\"2022-09-21\",\"FromDateDMY\":\"21\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220922\":{\"FromDate\":\"2022-09-22\",\"FromDateDMY\":\"22\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220928\":{\"FromDate\":\"2022-09-28\",\"FromDateDMY\":\"28\\/09\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221004\":{\"FromDate\":\"2022-10-04\",\"FromDateDMY\":\"04\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221010\":{\"FromDate\":\"2022-10-10\",\"FromDateDMY\":\"10\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221016\":{\"FromDate\":\"2022-10-16\",\"FromDateDMY\":\"16\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221022\":{\"FromDate\":\"2022-10-22\",\"FromDateDMY\":\"22\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221023\":{\"FromDate\":\"2022-10-23\",\"FromDateDMY\":\"23\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221025\":{\"FromDate\":\"2022-10-25\",\"FromDateDMY\":\"25\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221026\":{\"FromDate\":\"2022-10-26\",\"FromDateDMY\":\"26\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221027\":{\"FromDate\":\"2022-10-27\",\"FromDateDMY\":\"27\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Srinagar,Pahalgam,Gulmarg','Srinagar,Jammu and kashmir,Indian Subcontinent,North India,India,Pahalgam,Gulmarg,Sonmarg',NULL,'25897,20566,11197',2095,22000,6,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-10-27 00:00:00','2022-10-27 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'ex.-kashmir-ki-kali-2022',NULL,NULL,NULL,0),(35,31066,1,12577,1,0,0,'Honeymoon,Adventure,Family,Hill Station,Leisure,Group Tours,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":31066,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/leh_ladakh_2022_1641478078.jpg\",\"BookingValidUntill\":\"2022-08-17\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Leh&amp;nbsp;(\\/&Euml;&circ;le&Eacute;&ordf;\\/) is the joint capital and largest town of the&amp;nbsp;union territory&amp;nbsp;of&amp;nbsp;Ladakh&amp;nbsp;in&amp;nbsp;India. Leh, located in the&amp;nbsp;Leh district, was also the historical capital of the Kingdom of Ladakh, the seat of which was in the&amp;nbsp;Leh Palace, the former residence of the royal family of Ladakh, built in the same style and about the same time as the&amp;nbsp;Potala Palace&amp;nbsp;in&amp;nbsp;Tibet. Leh is at an altitude of 3,524&amp;nbsp;m (11,562&amp;nbsp;ft), and is connected via&amp;nbsp;National Highway 1&amp;nbsp;to&amp;nbsp;Srinagar&amp;nbsp;in the southwest and to&amp;nbsp;Manali&amp;nbsp;in the south via the&amp;nbsp;Leh-Manali Highway.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":2,\"AgencyId\":4913,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4913,\"DestinationPlaces\":\"Ahmedabad\",\"DestinationPlacesSysId\":296,\"SourcePlaces\":\"Ahmedabad\",\"SourcePlaceSysId\":296,\"AgencyName\":\"\",\"Name\":\"Leh Ladakh 2022\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"4671\",\"SupplierName\":\"Internal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,All Meals,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Adventure,Family,Hill Station,Leisure,Group Tours,Luxury Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-08-17\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492114,\"Name\":\"Hotel Kesaar Palace\",\"Star\":\"3.00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1628796\",\"Long\":\"77.5797402\",\"Address\":\"Fort Rd, Leh, 194101\"},\"Images\":{\"Image\":[{\"ImagId\":4820235,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492114\\/4913_01642076359.jpg\"},{\"ImagId\":4820236,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492114\\/4913_11642076359.jpg\"},{\"ImagId\":4820237,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492114\\/4913_21642076359.jpg\"}]},\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492114\\/4913_837cb9cda04a8b362c3feacde5c9f5f01642076359.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Basic Room\",\"MealTypeName\":\"AP\"},{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Basic Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &acirc;&euro;&oelig;magnetic hill&acirc;&euro;\\u009d is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492115,\"Name\":\"Nubra Ethnic Camp\",\"Star\":\"3.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.5852806\",\"Long\":\"77.4702903\",\"Address\":\"Hundar,Nubra Valley,Ladakh 194101\"},\"Images\":{\"Image\":[{\"ImagId\":4820242,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_01642076530.jpg\"},{\"ImagId\":4820243,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_11642076530.png\"},{\"ImagId\":4820244,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_21642076530.gif\"},{\"ImagId\":4820245,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_31642076530.jpg\"}]},\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492115\\/4913_9489311fe07e3da30329b16df57f340e1642076530.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Basic Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &acirc;&euro;&oelig;magnetic hill&acirc;&euro;\\u009d is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}},{\"CityId\":35281,\"Title\":\"Pangong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":492249,\"Name\":\"World Attic Camp\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"SpagmiK, Pangong Lake, Ladakh, Union Territory\"},\"Images\":{\"Image\":[{\"ImagId\":4820238,\"Type\":\"FullImage\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_01642076449.jpg\"},{\"ImagId\":4820239,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_11642076449.jpg\"},{\"ImagId\":4820240,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_21642076449.jpg\"},{\"ImagId\":4820241,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_31642076449.jpg\"}]},\"CityId\":35281,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_492249\\/4913_de70b6b9ca8adb38dc2f686f6d0381e61642076449.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null,\"RoomTypeName\":\"Basic Room\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3541,\"Title\":\"Leh Market\",\"Description\":\"You can enjoy shopping for curios and souvenirs in the bazaars and markets of Leh, while on your tour of Ladakh. Popular items with tourists are Pashmina shawls, stoles and other Pashmina wool garments. Locally handmade woolen socks, gloves, caps and sweaters are a favorite of tourists in Ladakh.\\r\\n\\r\\nTibetan handicraft items including prayer wheels, Buddhist masks and Thangka paintings can be purchased in Ladakh. Tibetan silver jewelry and traditional Ladakhi jewelry with turquoise are also popular with tourists. Apricots that grow abundantly in Ladakh are another popular gift that you can take back as a delicious souvenir of your trip to Ladakh. Handwoven rugs, carpets and shawls are available in a range of prices in Ladakh&#039;s markets. The carpets have floral or geometric designs or dragon motifs on them and can also be hung as decorative wall hangings. Woven in wool gathered from Ladakhi goats, and dyed with natural dyes, Ladakhi carpets and rugs are thick, long-lasting and objects of utility and beauty, which you can buy while shopping in Ladakh. Some other popular items with tourists are Pashmina shawls, stoles and other woolen garments. Handmade woolen socks, gloves, caps and sweaters are also a favorite of tourists in this region. Then the market is also filled with carpets and handwoven rugs in a range of prices. During your visit, you must not forget to buy apricots, because this dry fruit of the region is considered to be of a good quality.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1597034,\"Long\":77.5861201,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518510505.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &acirc;&euro;&oelig;magnetic hill&acirc;&euro;\\u009d is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3419,\"Title\":\"Camel ride\",\"Description\":\"When you are coming to India, then don&#039;t forget to experience the Camel Safari, as this experience will leave some unforgettable moments in your life. Thar - the Great India Desert, sprawls across the western extreme part of the state of Rajasthan in India\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/414_1521287693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3575,\"Title\":\"Nubra Valley ladakh\",\"Description\":\"Nubra is a tri-armed valley located to the north east of Ladakh valley.The original name of Nubra was Ldumra which means valley of flowers.The average altitude of the valley is about 10,000 ft. above the sea level..The valley offers tremendous scenery on a grand scale, with green oasis villages surrounded by thrillingly stark scree slopes, boulder fields and harsh arid mountains. It is one of the must visit places in Ladakh if you are visiting for the first time.\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":34.6863146,\"Long\":77.567288,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35282\\/sightseeing\\/Nubra_Valley_ladakh_35282_1518609014.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3583,\"Title\":\"Pangong Lake\",\"Description\":\"Pangong Lake, is an endorheic lake in the Himalayas situated at a height of about 14,270 ft. The Lake is 134 km long and extends from India to China. Approximately 60  of the lake lies in China. The lake is 5 km wide at its broadest point. The lake freezes completely during winters, despite being saline water. The Lake has no fish or other aquatic life in the lake, except for some small crustaceans, but there are numerous ducks and gulls over and on the lake surface. There is a variety of birds including a number of migratory birds and a number of species of wildlife including the kiang and the Marmot.\",\"CurrencyType\":0,\"CityId\":35281,\"CityName\":\"Pangong\",\"Lat\":33.7595131,\"Long\":78.6674404,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/35281\\/sightseeing\\/Pangong_Lake_35281_1518681636.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Monastery\",\"Description\":\"Shey Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":4671,\"SupplierName\":\"Internal\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"220966\",\"Title\":\" Arrive Leh \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival&amp;nbsp;at&amp;nbsp;Leh&amp;nbsp;Airport.&amp;nbsp;&amp;nbsp;(This must be one of the Most Sensational Flights in the World. On a clear Day from one side of the aircraft can be seen in the distance the peaks of K2, Nanga Parbat, Gasherbrum and on the other side of the aircraft, so close that you feel you could reach out and touch it, is the Nun Kun massif.) Upon arrival you will be met by&acirc;&euro;&macr;our&amp;nbsp;representative and transfer to Hotel for Check in. Complete Day for rest and leisure to acclimatise followed by Welcome tea or Coffee at the Hotel. Evening visit to&acirc;&euro;&macr;Leh&amp;nbsp;Palace, Shanti Stupa &amp;amp;&amp;nbsp;Leh&amp;nbsp;Market.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Dinner and overnight at&amp;nbsp;hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492114,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"},{\"IsIncluded\":false,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3541,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3579,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220967\",\"Title\":\"Leh - Excursion to Sham Valley (50 Kms \\/ 03-04 Hr)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast,&amp;nbsp;drive downstream along the River Indus on&amp;nbsp;Leh&amp;nbsp;&amp;ndash;&amp;nbsp;Kargil&amp;nbsp;Highway&amp;nbsp;to&amp;nbsp;start&amp;nbsp;your sightseeing with&acirc;&euro;&macr;Hall&amp;nbsp;of&amp;nbsp;Fame&acirc;&euro;&macr;(Museum Constructed by India Army) near&amp;nbsp;Leh, which&amp;nbsp;is worth a visit for every Indian,&amp;nbsp;this is a memorial of the &amp;ldquo;Sahid Javan&amp;rdquo; who&amp;nbsp;lost&amp;nbsp;their lives&amp;nbsp;defending&amp;nbsp;the&amp;nbsp;Motherland.&amp;nbsp;&amp;nbsp;Proceed further to&acirc;&euro;&macr;Gurudwara&amp;nbsp;Patthar&amp;nbsp;Sahib&acirc;&euro;&macr;at an altitude of 3600&amp;nbsp;Mtrs&amp;nbsp;about 22&amp;nbsp;Kms&amp;nbsp;from&amp;nbsp;Leh&amp;nbsp;was constructed in memory of Guru Nanak&amp;nbsp;Dev&amp;nbsp;ji&amp;nbsp;Nestled deep in the Himalayas.&amp;nbsp;Also visit Kali Mata temple,&amp;nbsp;Hemis&amp;nbsp;Monastery,&amp;nbsp;Thiksey&amp;nbsp;Monastery&amp;nbsp;and&amp;nbsp;Sindhu Ghat. Indulge into optional activity of River Rafting if you are an adventure lover.&amp;nbsp;&amp;nbsp;A drive of&amp;nbsp;further&amp;nbsp;4 kms&amp;nbsp;will take&amp;nbsp;us to Magnetic Hill which defies the law of gravity. As you move ahead from Magnetic Hills, just before&amp;nbsp;Nimmu&amp;nbsp;Village, there comes a famous&acirc;&euro;&macr;Confluence&amp;nbsp;of&amp;nbsp;Two Rivers Indus River&acirc;&euro;&macr;coming from Tibet (left) and&amp;nbsp;Zanskar&amp;nbsp;River coming from&acirc;&euro;&macr;Zanskar&amp;nbsp;Valley&acirc;&euro;&macr;(right).&amp;nbsp;Zanskar&amp;nbsp;River is known for its famous&amp;nbsp;Chadar&amp;nbsp;Trek.&amp;nbsp;In the evening,&amp;nbsp;drive back to&amp;nbsp;Leh&amp;nbsp;for&amp;nbsp;Dinner and overnight at the hotel.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492114,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"},{\"IsIncluded\":false,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3595,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3576,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3536,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2644,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220968\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220969\",\"Title\":\"Leh &acirc;&euro;&ldquo; Nubra Valley via Khardung La 18,390 FT. (120 Kms \\/ 4 &acirc;&euro;&ldquo; 5 Hrs) \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Post breakfast,&amp;nbsp;we drive to&amp;nbsp;Nubra&amp;nbsp;Valley. The road journey from&amp;nbsp;Leh&amp;nbsp;to&amp;nbsp;Nubra&amp;nbsp;Valley passes over&acirc;&euro;&macr;Khardung&amp;nbsp;La (The Highest&amp;nbsp;Motorable&amp;nbsp;Road&amp;nbsp;In&amp;nbsp;The&amp;nbsp;World) at 5,602&amp;nbsp;Mtrs&amp;nbsp;\\/ 18,390 Ft, around 39 km from&amp;nbsp;Leh. From the pass, one can see all the way south over the Indus valley to seemingly endless peaks and ridges of the&amp;nbsp;Zanskar&amp;nbsp;range, and north to the giants of the&amp;nbsp;Saser&amp;nbsp;massif.&amp;nbsp;Nubra&amp;nbsp;Valley is popularly known as&amp;nbsp;Ldumra&amp;nbsp;or the valley of flowers. It is situated in the north of&amp;nbsp;Ladakh&amp;nbsp;between the Karakoram and&amp;nbsp;Ladakh&amp;nbsp;ranges of the Himalayas. The average altitude of the valley is 10,000 Ft. above sea level.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival in&amp;nbsp;Nubra,&amp;nbsp;check in&amp;nbsp;to&amp;nbsp;our Camp OR Hotel.&amp;nbsp;In the evening,&amp;nbsp;we drive to&acirc;&euro;&macr;Hunder&acirc;&euro;&macr;where you have&amp;nbsp;an optional&amp;nbsp;opportunity to ride on a&amp;nbsp;bacterian&amp;nbsp;camel (double humped) amidst the sand dunes of this&amp;nbsp;high-altitude&amp;nbsp;desert with&amp;nbsp;snow-capped&amp;nbsp;mountains on the horizon. Between&amp;nbsp;Hunder&amp;nbsp;and&amp;nbsp;Diskit&amp;nbsp;you come across sand dunes besides the road. Seen in isolation,&amp;nbsp;you could well be amongst the sand dunes of the&amp;nbsp;Thar&amp;nbsp;Desert in Rajasthan. On the return stop at&acirc;&euro;&macr;Diskit&acirc;&euro;&macr;which is the headquarter town of&amp;nbsp;Nubra&amp;nbsp;Valley. Stroll around the bazaar observing the shops and local people going about their daily chores.&amp;nbsp;Diskit&amp;nbsp;is famous for its 515 years old Buddhist Monastery, lying magnificently situated on a hilltop, facing the entire Valley. Later we drive back&amp;nbsp;to the hotel\\/Camp for Dinner &amp;amp; Overnight&amp;nbsp;stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492115,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3419,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3575,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220970\",\"Title\":\"Hunder &acirc;&euro;&ldquo; Turtuk &acirc;&euro;&ldquo; Nubra Valley (82 Kms &acirc;&euro;&ldquo; 3 Hrs One Way)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After an early breakfast,&amp;nbsp;proceed&amp;nbsp;to&acirc;&euro;&macr;Turtuk&amp;nbsp;and a lot of other small villages,&amp;nbsp;which&amp;nbsp;were brought under Indian control after the 1971 war, when the Indian army pushed the Pakistani soldiers past the mountains towering the&amp;nbsp;Nubra&amp;nbsp;Valley.&amp;nbsp;Turtuk&amp;nbsp;lies at the extreme corner of the Indian border, and hence its accessibility is a challenge.&acirc;&euro;&macr;Although the roads are marred by landslides and shooting stones, the&amp;nbsp;3-hour&amp;nbsp;drive from&amp;nbsp;Hunder&amp;nbsp;to&amp;nbsp;Turtuk&amp;nbsp;is nothing less than exceptional. Throughout the journey, one has the company of&amp;nbsp;Shyok, as well as the vistas, that define the barrenness which is characteristic to&amp;nbsp;Ladakh. Drive back to our camp&amp;nbsp;for Overnight stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492115,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220971\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220972\",\"Title\":\"Nubra Valley to Pangong Lake (170 Kms \\/ 7 Hrs) \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Post breakfast&acirc;&euro;&macr;we&amp;nbsp;drive towards&acirc;&euro;&macr;Pangong&amp;nbsp;Tso&acirc;&euro;&macr;via&amp;nbsp;Agham&amp;nbsp;&amp;amp;&amp;nbsp;Shyok&amp;nbsp;Valley. Some of the road patches in areas are extremely tough (towards&amp;nbsp;nubra&amp;nbsp;side) in terms of road conditions but no doubt the journey is very scenic!&acirc;&euro;&macr; Later after crossing this adventurous&amp;nbsp;part&amp;nbsp;we drive further towards&amp;nbsp;Durbuk&amp;nbsp;&amp;amp;&amp;nbsp;Tangtse&amp;nbsp;for&amp;nbsp;Pangong&amp;nbsp;you pass through few small villages of&amp;nbsp;Changthang&amp;nbsp;and finally you can have a sudden view of the&amp;nbsp;Pangong&amp;nbsp;Lake&amp;nbsp;situated at 14,000 feet (4,267 m).&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This famous blue brackish Lake of&amp;nbsp;Pangong&amp;nbsp;is 5\\/6&amp;nbsp;Kms&amp;nbsp;wide and over 133&amp;nbsp;Kms&amp;nbsp;long with half of&amp;nbsp;it&amp;rsquo;s&amp;nbsp;running the other side of the &amp;quot;Indo China Border&amp;quot;. One rarely feels so close to nature and environment and the scenery is unforgettable. After the success of 3 Idiots, this beautiful natural location has attracted more tourists from all over the world. Upon arrival we check in at our Camp&amp;nbsp;near&amp;nbsp;Pangong&amp;nbsp;Lake.&amp;nbsp;Dinner &amp;amp; Overnight at the Camp.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492249,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3583,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220973\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35281,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220974\",\"Title\":\"Pangong Lake to Leh via Changla (140 Kms \\/ 6 Hrs)\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning at leisure to explore the beauty of&amp;nbsp;Pangong&amp;nbsp;lake and later,&amp;nbsp;we drive back to&amp;nbsp;Leh&amp;nbsp;via&acirc;&euro;&macr;Changla&amp;nbsp;Pass&amp;nbsp;(5486&amp;nbsp;Mtrs).&acirc;&euro;&macr;Enroute,&amp;nbsp;visit&acirc;&euro;&macr;Thiksey,&acirc;&euro;&macr;an impressive complex rising tier upon tier on a hill above the village.&amp;nbsp;On&amp;nbsp;another 5&amp;nbsp;Kms&amp;nbsp;driving through a picturesque landscape we reach to&acirc;&euro;&macr;Shey&amp;nbsp;Palace,&amp;nbsp;the&amp;nbsp;ancient capital of&amp;nbsp;Ladakh&amp;nbsp;to witness the ancient glory. Later, visit&amp;nbsp;the 3&amp;nbsp;Idiots Rancho School.&acirc;&euro;&macr; Drive further to&amp;nbsp;Leh&amp;nbsp;and check in at our hotel for&amp;nbsp;dinner and overnight&amp;nbsp;stay.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":492114,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"},{\"IsIncluded\":false,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Basic Room\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3577,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2644,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"220975\",\"Title\":\"Departure Leh\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast, check out and transfer to Airport to catch the flight for your onward Destination.&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"46999.05\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":46999,\"priceDoubleOcc\":\"46999.05\",\"priceSingleOcc\":70499.1,\"priceExtraBed\":\"46999.05\",\"priceWithoutBed\":\"41999.47\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"46999.05\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"31066\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"44761.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-04\",\"To\":\"2022-05-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-10\",\"To\":\"2022-05-10\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-16\",\"To\":\"2022-05-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-22\",\"To\":\"2022-05-22\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-28\",\"To\":\"2022-05-28\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-04\",\"To\":\"2022-06-04\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-06-25\",\"To\":\"2022-06-25\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-07-23\",\"To\":\"2022-07-23\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-15\",\"To\":\"2022-08-15\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-16\",\"To\":\"2022-08-16\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-08-17\",\"To\":\"2022-08-17\",\"Currency\":1,\"priceTripleOcc\":44761,\"priceDoubleOcc\":\"44761.00\",\"priceSingleOcc\":67142,\"priceExtraBed\":\"44761.00\",\"priceWithoutBed\":\"39999.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\".00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"44761.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Tour Manager Service will only be provided if the Group size is of 30 passengers or above. Below 30&amp;nbsp;Passengers group size will have Driver cum guide&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Terms and Conditions&amp;nbsp;as per booking forms&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Snow Points Not Included&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rates are subject to change&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entry Tickets to be paid by Clients Directly&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Package Inclusions:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Flight Information:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Economy Class air ticket&amp;nbsp;Ex Ahmedabad&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Leh&amp;nbsp;:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Shanti Stupa&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hall of Fame (A Museum developed by the Indian Army)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Kali Mata temple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Gurudwara&amp;nbsp;Patthar&amp;nbsp;sahib&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Magnetic Hill&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hemis&amp;nbsp;Monastery&amp;nbsp;&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Thiksey&amp;nbsp;Monastery&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Rancho School&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Shey&amp;nbsp;palace&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sindhu&amp;nbsp;Ghat&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;River Rafting (Optional)&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Pangong&amp;nbsp;Lake :&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Pangong&amp;nbsp;Lake&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;3 Idiot Shooting Point&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Changla&amp;nbsp;Pass&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Nubra&amp;nbsp;Valley :&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Khardongla&amp;nbsp;pass&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camel ride (On your own)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Diskit&amp;nbsp;&amp;amp;&amp;nbsp;Hunder&amp;nbsp;Monasteries&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Turtuk&amp;nbsp;Day Trip&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Meals:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;06 Breakfasts at the hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;05&amp;nbsp;Lunches&amp;nbsp;(Packed Lunch on some days)&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;06 Dinners at the hotel&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;Transportation:&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;All transfers by A\\/C&amp;nbsp;Innova&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[{\"DaysBefore\":60,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 60 Days\",\"TPRulesSysId\":\"9257\",\"Value\":\"50\"},{\"DaysBefore\":30,\"ExtraValue\":\"0\",\"IsPercentage\":true,\"Title\":\"Before 30 Days\",\"TPRulesSysId\":\"9258\",\"Value\":\"100\"}],\"BuspickupLocation\":[],\"TransferData\":{\"220966\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[220966],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220967\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[220967],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220968\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[220968],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220969\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[220969],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220970\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[220970],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220971\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[220971],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220972\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[220972],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220973\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[220973],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220974\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[220974],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"220975\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[220975],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"296\":{\"CityName\":\"Ahmedabad\",\"FromDate\":{\"20220504\":{\"FromDate\":\"2022-05-04\",\"FromDateDMY\":\"04\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220510\":{\"FromDate\":\"2022-05-10\",\"FromDateDMY\":\"10\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220516\":{\"FromDate\":\"2022-05-16\",\"FromDateDMY\":\"16\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220522\":{\"FromDate\":\"2022-05-22\",\"FromDateDMY\":\"22\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220528\":{\"FromDate\":\"2022-05-28\",\"FromDateDMY\":\"28\\/05\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220604\":{\"FromDate\":\"2022-06-04\",\"FromDateDMY\":\"04\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220625\":{\"FromDate\":\"2022-06-25\",\"FromDateDMY\":\"25\\/06\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220723\":{\"FromDate\":\"2022-07-23\",\"FromDateDMY\":\"23\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220815\":{\"FromDate\":\"2022-08-15\",\"FromDateDMY\":\"15\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220816\":{\"FromDate\":\"2022-08-16\",\"FromDateDMY\":\"16\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220817\":{\"FromDate\":\"2022-08-17\",\"FromDateDMY\":\"17\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Leh,Nubra,Pangong','Leh,Ladakh,Indian Subcontinent,North India,India,Nubra,Jammu and kashmir,Pangong',NULL,'15229,35282,35281',44761,46999,6,NULL,NULL,NULL,1,'',0,'2022-05-25 00:00:00','2022-08-17 00:00:00','2022-08-17 00:00:00',3,'India','101','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'leh-ladakh-2022',NULL,NULL,NULL,0),(36,29276,1,12577,0,0,0,'Honeymoon,Beach,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":29276,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/maldives_honeymoon_package_by_mukundu_islresort_1635401409.jpg\",\"BookingValidUntill\":\"2022-10-27\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Maldives&amp;nbsp;(\\/&Euml;&circ;m&Eacute;&rdquo;&Euml;\\u0090ldi&Euml;\\u0090vz\\/,&amp;nbsp;US:&amp;nbsp;\\/&Euml;&circ;m&Eacute;&rdquo;&Euml;\\u0090lda&Eacute;&ordf;vz\\/;&amp;nbsp;Dhivehi:&amp;nbsp;&THORN;&lsaquo;&THORN;&uml;&THORN;&circ;&THORN;&not;&THORN;&euro;&THORN;&uml;&THORN;&fnof;&THORN;&sect;&THORN;&Dagger;&THORN;&deg;&THORN;&ndash;&THORN;&not;,&amp;nbsp;romanized:&amp;nbsp;Dhivehi Raajje), officially the&amp;nbsp;Republic of Maldives, is an&amp;nbsp;archipelagic state&amp;nbsp;in the&amp;nbsp;Indian subcontinent&amp;nbsp;of&amp;nbsp;Asia, situated in the&amp;nbsp;Indian Ocean. It lies southwest of&amp;nbsp;Sri Lanka&amp;nbsp;and&amp;nbsp;India, about 750 kilometres (470 miles; 400 nautical miles) from the&amp;nbsp;Asian&amp;nbsp;continent&amp;#39;s mainland. The chain of&amp;nbsp;26 atolls&amp;nbsp;stretches from&amp;nbsp;Ihavandhippolhu Atoll&amp;nbsp;in the north to&amp;nbsp;Addu Atoll&amp;nbsp;in the south (across the&amp;nbsp;Equator). Comprising a&amp;nbsp;territory&amp;nbsp;spanning roughly 90,000 square kilometres (35,000&amp;nbsp;sq&amp;nbsp;mi) including the sea, land area of all the islands comprises 298 square kilometres (115&amp;nbsp;sq&amp;nbsp;mi), Maldives is one of the world&amp;#39;s most geographically dispersed&amp;nbsp;sovereign states&amp;nbsp;as well as the&amp;nbsp;smallest Asian country&amp;nbsp;by land area and, with around 557,751 inhabitants, the 2nd&amp;nbsp;least populous country in Asia.&amp;nbsp;Mal&amp;eacute;&amp;nbsp;is the capital and the most populated city, traditionally called the &amp;quot;King&amp;#39;s Island&amp;quot; where the ancient&amp;nbsp;royal dynasties&amp;nbsp;ruled for its central location.[13]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Maldivian Archipelago is located on the&amp;nbsp;Chagos-Laccadive Ridge, a vast submarine mountain range in the Indian Ocean; this also forms a&amp;nbsp;terrestrial ecoregion, together with the&amp;nbsp;Chagos Archipelago&amp;nbsp;and&amp;nbsp;Lakshadweep.[14]&amp;nbsp;With an average ground-level elevation of 1.5 metres (4&amp;nbsp;ft 11&amp;nbsp;in) above sea level,[15]&amp;nbsp;and a&amp;nbsp;highest natural point&amp;nbsp;of only 5.1 metres (17&amp;nbsp;ft), it is the world&amp;#39;s lowest-lying country.[15]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the 12th century&amp;nbsp;Islam&amp;nbsp;reached the Maldivian Archipelago, which was consolidated as a&amp;nbsp;sultanate, developing strong commercial and cultural ties with&amp;nbsp;Asia&amp;nbsp;and&amp;nbsp;Africa. From the mid-16th-century, the region came under the increasing influence of European&amp;nbsp;colonial powers, with the Maldives becoming a British&amp;nbsp;protectorate&amp;nbsp;in 1887.&amp;nbsp;Independence&amp;nbsp;from the United Kingdom came in 1965, and a&amp;nbsp;presidential republic&amp;nbsp;was established in 1968 with an elected&amp;nbsp;People&amp;#39;s Majlis. The ensuing decades have seen political instability, efforts at democratic reform,[16]&amp;nbsp;and environmental challenges posed by&amp;nbsp;climate change.[17]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Maldives became a founding member of the&amp;nbsp;South Asian Association for Regional Cooperation&amp;nbsp;(SAARC). It is also a member of the&amp;nbsp;United Nations, the&amp;nbsp;Commonwealth of Nations, the&amp;nbsp;Organisation of Islamic Cooperation, and the&amp;nbsp;Non-Aligned Movement. The World Bank classifies the Maldives as having an upper-middle income&amp;nbsp;economy.[18]&amp;nbsp;Fishing&amp;nbsp;has historically been the dominant economic activity, and remains the largest sector by far, followed by the rapidly growing&amp;nbsp;tourism&amp;nbsp;industry. The Maldives rates &amp;quot;high&amp;quot; on the&amp;nbsp;Human Development Index,[12]&amp;nbsp;with&amp;nbsp;per capita&amp;nbsp;income significantly higher than other SAARC nations.[19]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Maldives was a member of the&amp;nbsp;Commonwealth&amp;nbsp;from July 1982 until withdrawing from the organisation in October 2016 in protest of allegations by other nations of its&amp;nbsp;human rights&amp;nbsp;abuses and failing democracy. The Maldives rejoined the Commonwealth on 1 February 2020 after showing evidence of functioning democratic processes and popular support.[2&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":10,\"AgencyId\":2596,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":2596,\"DestinationPlaces\":\"Maldives\",\"DestinationPlacesSysId\":16505,\"SourcePlaces\":\"Maldives\",\"SourcePlaceSysId\":16505,\"AgencyName\":\"STERLING\",\"Name\":\"Maldives Honeymoon Special by Mukundu \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"3364\",\"SupplierName\":\"MY VALUE TRAVEL COM PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Speed Boat\",\"PackageType\":\"Honeymoon,Beach,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-10-27\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"208620\",\"Title\":\"Maldives - Arrival\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at&amp;nbsp;Maldives&amp;nbsp;Airport and later, transfer to the hotel by speedboat. Check in at the hotel and relax for a while. Facilities for overnight stay will be arranged in&amp;nbsp;Maldives.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208621\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Relish a drool-worthy breakfast and relax for a while at the hotel. Enjoy your overnight stay in&amp;nbsp;Maldives.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208622\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;Relish a drool-worthy breakfast and relax for a while at the hotel. Enjoy your overnight stay in&amp;nbsp;Maldives.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208623\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, relax for a while at the hotel (in&amp;nbsp;Maldives) where facilities for overnight stay will be arranged.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208624\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to the airport (by speedboat).&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"29276\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"43200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":43200,\"priceDoubleOcc\":\"43200.00\",\"priceSingleOcc\":86400,\"priceExtraBed\":\"43200.00\",\"priceWithoutBed\":\"43200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":43200,\"priceDoubleOcc\":\"43200.00\",\"priceSingleOcc\":86400,\"priceExtraBed\":\"43200.00\",\"priceWithoutBed\":\"43200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":43200,\"priceDoubleOcc\":\"43200.00\",\"priceSingleOcc\":86400,\"priceExtraBed\":\"43200.00\",\"priceWithoutBed\":\"43200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":43200,\"priceDoubleOcc\":\"43200.00\",\"priceSingleOcc\":86400,\"priceExtraBed\":\"43200.00\",\"priceWithoutBed\":\"43200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":43200,\"priceDoubleOcc\":\"43200.00\",\"priceSingleOcc\":86400,\"priceExtraBed\":\"43200.00\",\"priceWithoutBed\":\"43200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":43200,\"priceDoubleOcc\":\"43200.00\",\"priceSingleOcc\":86400,\"priceExtraBed\":\"43200.00\",\"priceWithoutBed\":\"43200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"20.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"43200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"29276\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37800,\"priceDoubleOcc\":\"37800.00\",\"priceSingleOcc\":75600,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37800,\"priceDoubleOcc\":\"37800.00\",\"priceSingleOcc\":75600,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37800,\"priceDoubleOcc\":\"37800.00\",\"priceSingleOcc\":75600,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37800,\"priceDoubleOcc\":\"37800.00\",\"priceSingleOcc\":75600,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37800,\"priceDoubleOcc\":\"37800.00\",\"priceSingleOcc\":75600,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-28\",\"To\":\"2022-10-27\",\"Currency\":1,\"priceTripleOcc\":37800,\"priceDoubleOcc\":\"37800.00\",\"priceSingleOcc\":75600,\"priceExtraBed\":\"37800.00\",\"priceWithoutBed\":\"37800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"37800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;5% TCS Applicable on Land&amp;nbsp;Package Cost&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls, alcoholic beverages, camera\\/video fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;span style=&quot;color:383838&quot;&gt;No refund is available for No Show&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of &lt;span style=&quot;color:383838&quot;&gt;flight cancellation delay due to bad weather or any other reason given by the airline ill health road blocks and\\/or any factors beyond reasonable control. No refund will be available for unutilized services.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No refund for No Show at any service&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;04 Nights accommdoation in Male&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;04 Breakfast, 04 Lunch and 04 Dinner&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT PCR Test in&amp;nbsp;Maldives&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return airport trasnfer by speedboat&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Beach Dinner for Honeymoon Couple&amp;nbsp;&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Green Tax Fees&amp;nbsp;&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"208620\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[208620],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"208621\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[208621],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"208622\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[208622],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"208623\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[208623],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"208624\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[208624],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Maldives','Maldives,Indian Subcontinent',NULL,'16505',37800,43200,4,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-10-27 00:00:00','2022-10-27 00:00:00',3,'Maldives','133','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'maldives-honeymoon-special-by-mukundu',NULL,NULL,NULL,0),(37,29280,1,12577,0,0,0,'Honeymoon,Beach,Luxury Tours',NULL,1,1,0,'{\"package\":{\"TPId\":29280,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/adaaran_club_ranalhi_-_all_inclusive_1635417154.jpg\",\"BookingValidUntill\":\"2022-10-28\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Maldives&amp;nbsp;(\\/&Euml;&circ;m&Eacute;&rdquo;&Euml;\\u0090ldi&Euml;\\u0090vz\\/,&amp;nbsp;US:&amp;nbsp;\\/&Euml;&circ;m&Eacute;&rdquo;&Euml;\\u0090lda&Eacute;&ordf;vz\\/;&amp;nbsp;Dhivehi:&amp;nbsp;&THORN;&lsaquo;&THORN;&uml;&THORN;&circ;&THORN;&not;&THORN;&euro;&THORN;&uml;&THORN;&fnof;&THORN;&sect;&THORN;&Dagger;&THORN;&deg;&THORN;&ndash;&THORN;&not;,&amp;nbsp;romanized:&amp;nbsp;Dhivehi Raajje), officially the&amp;nbsp;Republic of Maldives, is an&amp;nbsp;archipelagic state&amp;nbsp;in the&amp;nbsp;Indian subcontinent&amp;nbsp;of&amp;nbsp;Asia, situated in the&amp;nbsp;Indian Ocean. It lies southwest of&amp;nbsp;Sri Lanka&amp;nbsp;and&amp;nbsp;India, about 750 kilometres (470 miles; 400 nautical miles) from the&amp;nbsp;Asian&amp;nbsp;continent&amp;#39;s mainland. The chain of&amp;nbsp;26 atolls&amp;nbsp;stretches from&amp;nbsp;Ihavandhippolhu Atoll&amp;nbsp;in the north to&amp;nbsp;Addu Atoll&amp;nbsp;in the south (across the&amp;nbsp;Equator). Comprising a&amp;nbsp;territory&amp;nbsp;spanning roughly 90,000 square kilometres (35,000&amp;nbsp;sq&amp;nbsp;mi) including the sea, land area of all the islands comprises 298 square kilometres (115&amp;nbsp;sq&amp;nbsp;mi), Maldives is one of the world&amp;#39;s most geographically dispersed&amp;nbsp;sovereign states&amp;nbsp;as well as the&amp;nbsp;smallest Asian country&amp;nbsp;by land area and, with around 557,751 inhabitants, the 2nd&amp;nbsp;least populous country in Asia.&amp;nbsp;Mal&amp;eacute;&amp;nbsp;is the capital and the most populated city, traditionally called the &amp;quot;King&amp;#39;s Island&amp;quot; where the ancient&amp;nbsp;royal dynasties&amp;nbsp;ruled for its central location.[13]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The Maldivian Archipelago is located on the&amp;nbsp;Chagos-Laccadive Ridge, a vast submarine mountain range in the Indian Ocean; this also forms a&amp;nbsp;terrestrial ecoregion, together with the&amp;nbsp;Chagos Archipelago&amp;nbsp;and&amp;nbsp;Lakshadweep.[14]&amp;nbsp;With an average ground-level elevation of 1.5 metres (4&amp;nbsp;ft 11&amp;nbsp;in) above sea level,[15]&amp;nbsp;and a&amp;nbsp;highest natural point&amp;nbsp;of only 5.1 metres (17&amp;nbsp;ft), it is the world&amp;#39;s lowest-lying country.[15]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the 12th century&amp;nbsp;Islam&amp;nbsp;reached the Maldivian Archipelago, which was consolidated as a&amp;nbsp;sultanate, developing strong commercial and cultural ties with&amp;nbsp;Asia&amp;nbsp;and&amp;nbsp;Africa. From the mid-16th-century, the region came under the increasing influence of European&amp;nbsp;colonial powers, with the Maldives becoming a British&amp;nbsp;protectorate&amp;nbsp;in 1887.&amp;nbsp;Independence&amp;nbsp;from the United Kingdom came in 1965, and a&amp;nbsp;presidential republic&amp;nbsp;was established in 1968 with an elected&amp;nbsp;People&amp;#39;s Majlis. The ensuing decades have seen political instability, efforts at democratic reform,[16]&amp;nbsp;and environmental challenges posed by&amp;nbsp;climate change.[17]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Maldives became a founding member of the&amp;nbsp;South Asian Association for Regional Cooperation&amp;nbsp;(SAARC). It is also a member of the&amp;nbsp;United Nations, the&amp;nbsp;Commonwealth of Nations, the&amp;nbsp;Organisation of Islamic Cooperation, and the&amp;nbsp;Non-Aligned Movement. The World Bank classifies the Maldives as having an upper-middle income&amp;nbsp;economy.[18]&amp;nbsp;Fishing&amp;nbsp;has historically been the dominant economic activity, and remains the largest sector by far, followed by the rapidly growing&amp;nbsp;tourism&amp;nbsp;industry. The Maldives rates &amp;quot;high&amp;quot; on the&amp;nbsp;Human Development Index,[12]&amp;nbsp;with&amp;nbsp;per capita&amp;nbsp;income significantly higher than other SAARC nations.[19]&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Maldives was a member of the&amp;nbsp;Commonwealth&amp;nbsp;from July 1982 until withdrawing from the organisation in October 2016 in protest of allegations by other nations of its&amp;nbsp;human rights&amp;nbsp;abuses and failing democracy. The Maldives rejoined the Commonwealth on 1 February 2020 after showing evidence of functioning democratic processes and popular support.[&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":10,\"AgencyId\":2596,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":2596,\"DestinationPlaces\":\"Male\",\"DestinationPlacesSysId\":16508,\"SourcePlaces\":\"Male\",\"SourcePlaceSysId\":16508,\"AgencyName\":\"STERLING\",\"Name\":\"Adaaran Club Ranalhi - All Inclusive \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"3364\",\"SupplierName\":\"MY VALUE TRAVEL COM PVT LTD\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,All Meals,Speed Boat\",\"PackageType\":\"Honeymoon,Beach,Luxury Tours\",\"Validity\":{\"From\":\"2022-05-25\",\"To\":\"2022-10-28\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16505,\"Title\":\"Maldives\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":392056,\"Name\":\"Adaaran Club Rannalhi\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"3.903073\",\"Long\":\"73.357569\",\"Address\":\"ADAARAN RESORTS, MALDIVES   SOUTH MALE ATOLL  MV, \"},\"Images\":[],\"CityId\":16505,\"Brief\":\"This hotel sits at the tip of the South Male atoll in the Maldives. Its unique location offers access to pristine beaches, excellent scuba diving opportunities and a relaxed environment with easy access to the capital city of Male. The hotel&#039;s closeness to Male allows it prime access to the country&#039;s most treasured attractions such as the stunning Grand Friday Mosque and the National Museum. Savour the sumptuous local and international cuisine influenced by the plethora of delicious seafood available daily at the hotel.\",\"MainImg\":\"https:\\/\\/photos.hotelbeds.com\\/giata\\/10\\/108525\\/108525a_hb_ba_001.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":3364,\"SupplierName\":\"MY VALUE TRAVEL COM PVT LTD\",\"priceaditionals\":null,\"RoomTypeName\":\"02 Nights Standard Bungalow   01 Nights Water Bungalow\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"208642\",\"Title\":\"Maldives - Arrival\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive at&amp;nbsp;Maldives&amp;nbsp;Airport and later, transfer to the hotel by speedboat. Check in at the hotel and relax for a while. Facilities for overnight stay will be arranged in&amp;nbsp;Maldives.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392056,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 Nights Standard Bungalow   01 Nights Water Bungalow\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208643\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Relish a drool-worthy breakfast and relax for a while at the hotel. Enjoy your overnight stay in&amp;nbsp;Maldives.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392056,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 Nights Standard Bungalow   01 Nights Water Bungalow\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208644\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast, relax for a while at the hotel (in&amp;nbsp;Maldives) where facilities for overnight stay will be arranged.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":392056,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"02 Nights Standard Bungalow   01 Nights Water Bungalow\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"208645\",\"Title\":\"Maldives\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, check out from the hotel and transfer to the airport (by speedboat).&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16505,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"29280\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"70400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":70400,\"priceDoubleOcc\":\"70400.00\",\"priceSingleOcc\":140800,\"priceExtraBed\":\"70400.00\",\"priceWithoutBed\":\"70400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":70400,\"priceDoubleOcc\":\"70400.00\",\"priceSingleOcc\":140800,\"priceExtraBed\":\"70400.00\",\"priceWithoutBed\":\"70400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":70400,\"priceDoubleOcc\":\"70400.00\",\"priceSingleOcc\":140800,\"priceExtraBed\":\"70400.00\",\"priceWithoutBed\":\"70400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":70400,\"priceDoubleOcc\":\"70400.00\",\"priceSingleOcc\":140800,\"priceExtraBed\":\"70400.00\",\"priceWithoutBed\":\"70400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":70400,\"priceDoubleOcc\":\"70400.00\",\"priceSingleOcc\":140800,\"priceExtraBed\":\"70400.00\",\"priceWithoutBed\":\"70400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":70400,\"priceDoubleOcc\":\"70400.00\",\"priceSingleOcc\":140800,\"priceExtraBed\":\"70400.00\",\"priceWithoutBed\":\"70400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"70400.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"29280\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"67200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":67200,\"priceDoubleOcc\":\"67200.00\",\"priceSingleOcc\":134400,\"priceExtraBed\":\"67200.00\",\"priceWithoutBed\":\"67200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"67200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":67200,\"priceDoubleOcc\":\"67200.00\",\"priceSingleOcc\":134400,\"priceExtraBed\":\"67200.00\",\"priceWithoutBed\":\"67200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"67200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":67200,\"priceDoubleOcc\":\"67200.00\",\"priceSingleOcc\":134400,\"priceExtraBed\":\"67200.00\",\"priceWithoutBed\":\"67200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"67200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":67200,\"priceDoubleOcc\":\"67200.00\",\"priceSingleOcc\":134400,\"priceExtraBed\":\"67200.00\",\"priceWithoutBed\":\"67200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"67200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":67200,\"priceDoubleOcc\":\"67200.00\",\"priceSingleOcc\":134400,\"priceExtraBed\":\"67200.00\",\"priceWithoutBed\":\"67200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"67200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2021-10-29\",\"To\":\"2022-10-28\",\"Currency\":1,\"priceTripleOcc\":67200,\"priceDoubleOcc\":\"67200.00\",\"priceSingleOcc\":134400,\"priceExtraBed\":\"67200.00\",\"priceWithoutBed\":\"67200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"67200.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;5% TCS Applicable on Land Package Cost&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls, alcoholic beverages, camera\\/video fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under package inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;span style=&quot;color:383838&quot;&gt;No refund is available for No Sho&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of &lt;span style=&quot;color:383838&quot;&gt;flight cancellation delay due to bad weather or any other reason given by the airline ill health road blocks and\\/or any factors beyond reasonable control. No refund will be available for unutilized services.&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;No refund for No Show at any service&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;03 Nights accommdoation in Male&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;02 Nights accomodation in Std. Bungalow&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;01 Night accommdoation in Water Bungalow&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All Inclusive (03 Breakfast, 03 Lunch and 03 Dinner)&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Unlimited Alcoholic and Non Alcoholic Drinks with Snacks&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Return airport transfer by speedboat&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Green Tax&amp;nbsp;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"208642\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[208642],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}},\"208643\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[208643],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"208644\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[208644],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"208645\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[208645],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"1\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Maldives','Maldives,Indian Subcontinent,Male',NULL,'16505',67200,70400,3,NULL,NULL,NULL,2,'',0,'2022-05-25 00:00:00','2022-10-28 00:00:00','2022-10-28 00:00:00',3,'Maldives','133','2022-05-25 00:00:00','2022-05-25 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'adaaran-club-ranalhi-all-inclusive',NULL,NULL,NULL,0),(38,36341,1,12577,0,0,0,'Religious',NULL,1,1,0,'{\"package\":{\"TPId\":36341,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/char_dham_yatra_1653557369.jpg\",\"BookingValidUntill\":\"2022-07-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Chardham Yatra is one of the holiest pilgrimages in India. The auspicious Char Dham Yatra is completed with visiting Char Dham Temple namely Badrinath, Kedarnath, Gangotri and Yamunotri. With&amp;nbsp;best Chardham tour packages, pilgrims can visit all four shrines hasselfree and in a very well schedule manner.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Dehradun\",\"DestinationPlacesSysId\":7680,\"SourcePlaces\":\"Dehradun\",\"SourcePlaceSysId\":7680,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"CHAR DHAM YATRA\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"9020\",\"SupplierName\":\"TOURS CLUB INDIA\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Religious\",\"Validity\":{\"From\":\"2022-06-02\",\"To\":\"2022-07-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":34474,\"Title\":\"Barkot\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509088,\"Name\":\"Rigveda Resort Barkot Yamunotri Uttarkashi\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.8173954\",\"Long\":\"78.2478478\",\"Address\":\"Nandgaon, Barkot yamnotri road, Chhatanga, Uttarakhand 249141, India\"},\"Images\":[],\"CityId\":34474,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null,\"RoomTypeName\":\"Delux Cottage\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27001,\"Title\":\"kempty fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27003,\"Title\":\"Bhagirathi River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27002,\"Title\":\"Harsil village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":558,\"Title\":\"Gaurikund\",\"Description\":\"Gauri Kund is a Hindu pilgrimage site and base camp for trek to Kedarnath Temple, in Uttarakhand, India. It is situated at an altitude of 6502 feet above mean sea level in the Garhwal Himalayas. Gauri Kund is connected with Shiva&amp;#039;s wife Parvati, also known as Gauri. In Hindu folklore, Gauri committed to penance involving many ascetic and yogic practices to win over Shiva&amp;#039;s affections. Local tradition claims that Gauri Kund is the spot where Gauri lived while carrying out these practices and it was here that Shiva finally admitted His love for Her. They were married at Triyugi Narayan, which is located nearby. There are hot springs in Gaurikund and they are converted to bathing places.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7346267,\"Long\":79.0668943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5099\\/thumb\\/Gaurikund_956.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27005,\"Title\":\"joshimath\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27004,\"Title\":\"Narsingh Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":948,\"Title\":\"Lakshman Jhula\",\"Description\":\"Lakshman Jhula is an iron suspension bridge over the Ganges. Earlier, it was a jute bridge and was later converted into an iron suspension bridge. The bridge is named after Lakshman, Shri Ram&amp;#039;s younger brother because according to the legend, the same jute bridge was used by Lakshman at the same site to cross the Ganga River. This frequently visited tourist spot is an adjoining bridge across the Ganga, connecting the holy shrines of Badrinath and Kedarnath. The jhula provides an excellent panoramic view of the temples and the ganges. Around the bridge is a market famous for wooden items, Rudraksha, holy books, Idols of Gods and Goddesses, gems, local jewelry, and excellent street food.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.126362,\"Long\":78.3299632,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/513\\/thumb\\/Laxman Jhoola_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1323,\"Title\":\"Parmarth Niketan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.1202595,\"Long\":78.3122715,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5105\\/thumb\\/Parmarth Niketan_184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1435,\"Title\":\"Ram Jhula\",\"Description\":\"Ram Jhula is one of the most popular attractions of Rishikesh. This bridge was constructed later than the Laxman Jhula, in the year 1980. Both these bridges are quite similar in design and steel construction. Ram Jhula is placed a few miles downstream from Laxman Jhula and links Swarg Ashram on the western bank of River Ganga to the Sivananda Ashram on the eastern one.\\r\\nAs you walk on the bridge, river Ganga gushes below with full force and you are surrounded by beautiful Himalayas. Let the cool breeze brush past your face. The bride is around 6 km northwards of the holy town. The bridge is also slightly bigger in length than Laxman Jhula. The total length of the bridge is 450 feet.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.122758,\"Long\":78.316605,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/512\\/thumb\\/Ram Jhula_973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":2979,\"Title\":\"Ganga Aarti Haridwar\",\"Description\":\"Ganga Aarti means prayer for River Ganga. Prayers are dedicated to   godesses. Ganga river is not just a river in India, It is Divine Mother. River Ganga gives life in the form of water. The same water also removes sins when you take a dip in its holy water. River Ganga also gives liberation to souls. Its not just a river but whole culture itself. Historically millions of people are living on the bank of the river ganga. For agriculture her water is still precious for India.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Ganga_Aarti_Haridwar_11530_1519386723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1068,\"Title\":\"Mansa Devi Temple\",\"Description\":\"Mansa Devi Temple is a Hindu temple dedicated to goddess Mansa Devi in the holy city of Haridwar in the Uttarakhand state of India. Mansa Devi is one of the aspects of Shakti. Mansa Devi temple is located in Dev Bhoomi, Haridwar in Uttrakhand state.The Mansa devi temple is among 53 siddha-peetha and also among panch-teertha in Haridwar. One can view whole of the Haridwar city from this temple. Devotees can reach this place via 3 km of trekking. Mansa means desire wish so devotees come here to fulfil the this wishes. There are two idols of Mansa devi in  the temple. One idol is having three faces and five arms.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9392064,\"Long\":78.1526754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Mansa_Devi_Temple,_Haridwar,_U_11530_1519385617.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":8913,\"Title\":\"Shantikunj\",\"Description\":\"Shantikunj is an academy for social and spiritual awakening. It is a spiritually charged pilgrimage center that has given righteous direction and long lasting peace-happiness to the lives of crores of people. Here, about 24 lakhs (24,00,000) Gayatri Mantra are chanted daily by dedicated spiritual seekers and about 1000 people take part in the Gayatri Yagya.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23018\\/sightseeing\\/Shantikunj_23018_1554286953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null}]}},{\"CityId\":28264,\"Title\":\"Uttarkashi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509094,\"Name\":\"Camp Nirvana\\u00ae\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.8255952\",\"Long\":\"78.2498636\",\"Address\":\"GANGANI, Barkot - Yamunotri Rd, Highway, Barkot, Uttarakhand 249181, India\"},\"Images\":[],\"CityId\":28264,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Camp\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27001,\"Title\":\"kempty fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27003,\"Title\":\"Bhagirathi River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27002,\"Title\":\"Harsil village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":558,\"Title\":\"Gaurikund\",\"Description\":\"Gauri Kund is a Hindu pilgrimage site and base camp for trek to Kedarnath Temple, in Uttarakhand, India. It is situated at an altitude of 6502 feet above mean sea level in the Garhwal Himalayas. Gauri Kund is connected with Shiva&amp;#039;s wife Parvati, also known as Gauri. In Hindu folklore, Gauri committed to penance involving many ascetic and yogic practices to win over Shiva&amp;#039;s affections. Local tradition claims that Gauri Kund is the spot where Gauri lived while carrying out these practices and it was here that Shiva finally admitted His love for Her. They were married at Triyugi Narayan, which is located nearby. There are hot springs in Gaurikund and they are converted to bathing places.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7346267,\"Long\":79.0668943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5099\\/thumb\\/Gaurikund_956.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27005,\"Title\":\"joshimath\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27004,\"Title\":\"Narsingh Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":948,\"Title\":\"Lakshman Jhula\",\"Description\":\"Lakshman Jhula is an iron suspension bridge over the Ganges. Earlier, it was a jute bridge and was later converted into an iron suspension bridge. The bridge is named after Lakshman, Shri Ram&amp;#039;s younger brother because according to the legend, the same jute bridge was used by Lakshman at the same site to cross the Ganga River. This frequently visited tourist spot is an adjoining bridge across the Ganga, connecting the holy shrines of Badrinath and Kedarnath. The jhula provides an excellent panoramic view of the temples and the ganges. Around the bridge is a market famous for wooden items, Rudraksha, holy books, Idols of Gods and Goddesses, gems, local jewelry, and excellent street food.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.126362,\"Long\":78.3299632,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/513\\/thumb\\/Laxman Jhoola_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1323,\"Title\":\"Parmarth Niketan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.1202595,\"Long\":78.3122715,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5105\\/thumb\\/Parmarth Niketan_184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1435,\"Title\":\"Ram Jhula\",\"Description\":\"Ram Jhula is one of the most popular attractions of Rishikesh. This bridge was constructed later than the Laxman Jhula, in the year 1980. Both these bridges are quite similar in design and steel construction. Ram Jhula is placed a few miles downstream from Laxman Jhula and links Swarg Ashram on the western bank of River Ganga to the Sivananda Ashram on the eastern one.\\r\\nAs you walk on the bridge, river Ganga gushes below with full force and you are surrounded by beautiful Himalayas. Let the cool breeze brush past your face. The bride is around 6 km northwards of the holy town. The bridge is also slightly bigger in length than Laxman Jhula. The total length of the bridge is 450 feet.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.122758,\"Long\":78.316605,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/512\\/thumb\\/Ram Jhula_973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":2979,\"Title\":\"Ganga Aarti Haridwar\",\"Description\":\"Ganga Aarti means prayer for River Ganga. Prayers are dedicated to   godesses. Ganga river is not just a river in India, It is Divine Mother. River Ganga gives life in the form of water. The same water also removes sins when you take a dip in its holy water. River Ganga also gives liberation to souls. Its not just a river but whole culture itself. Historically millions of people are living on the bank of the river ganga. For agriculture her water is still precious for India.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Ganga_Aarti_Haridwar_11530_1519386723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1068,\"Title\":\"Mansa Devi Temple\",\"Description\":\"Mansa Devi Temple is a Hindu temple dedicated to goddess Mansa Devi in the holy city of Haridwar in the Uttarakhand state of India. Mansa Devi is one of the aspects of Shakti. Mansa Devi temple is located in Dev Bhoomi, Haridwar in Uttrakhand state.The Mansa devi temple is among 53 siddha-peetha and also among panch-teertha in Haridwar. One can view whole of the Haridwar city from this temple. Devotees can reach this place via 3 km of trekking. Mansa means desire wish so devotees come here to fulfil the this wishes. There are two idols of Mansa devi in  the temple. One idol is having three faces and five arms.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9392064,\"Long\":78.1526754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Mansa_Devi_Temple,_Haridwar,_U_11530_1519385617.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":8913,\"Title\":\"Shantikunj\",\"Description\":\"Shantikunj is an academy for social and spiritual awakening. It is a spiritually charged pilgrimage center that has given righteous direction and long lasting peace-happiness to the lives of crores of people. Here, about 24 lakhs (24,00,000) Gayatri Mantra are chanted daily by dedicated spiritual seekers and about 1000 people take part in the Gayatri Yagya.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23018\\/sightseeing\\/Shantikunj_23018_1554286953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null}]}},{\"CityId\":34396,\"Title\":\"Guptakashi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509108,\"Name\":\"Kedar River Retreat\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.6232903\",\"Long\":\"79.00310069999999\",\"Address\":\"NH-107, Kedarnath Road, Sitapur, P.O, Rampur, Uttarakhand 246471, India\"},\"Images\":[],\"CityId\":34396,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cottage Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27001,\"Title\":\"kempty fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27003,\"Title\":\"Bhagirathi River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27002,\"Title\":\"Harsil village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":558,\"Title\":\"Gaurikund\",\"Description\":\"Gauri Kund is a Hindu pilgrimage site and base camp for trek to Kedarnath Temple, in Uttarakhand, India. It is situated at an altitude of 6502 feet above mean sea level in the Garhwal Himalayas. Gauri Kund is connected with Shiva&amp;#039;s wife Parvati, also known as Gauri. In Hindu folklore, Gauri committed to penance involving many ascetic and yogic practices to win over Shiva&amp;#039;s affections. Local tradition claims that Gauri Kund is the spot where Gauri lived while carrying out these practices and it was here that Shiva finally admitted His love for Her. They were married at Triyugi Narayan, which is located nearby. There are hot springs in Gaurikund and they are converted to bathing places.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7346267,\"Long\":79.0668943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5099\\/thumb\\/Gaurikund_956.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27005,\"Title\":\"joshimath\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27004,\"Title\":\"Narsingh Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":948,\"Title\":\"Lakshman Jhula\",\"Description\":\"Lakshman Jhula is an iron suspension bridge over the Ganges. Earlier, it was a jute bridge and was later converted into an iron suspension bridge. The bridge is named after Lakshman, Shri Ram&amp;#039;s younger brother because according to the legend, the same jute bridge was used by Lakshman at the same site to cross the Ganga River. This frequently visited tourist spot is an adjoining bridge across the Ganga, connecting the holy shrines of Badrinath and Kedarnath. The jhula provides an excellent panoramic view of the temples and the ganges. Around the bridge is a market famous for wooden items, Rudraksha, holy books, Idols of Gods and Goddesses, gems, local jewelry, and excellent street food.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.126362,\"Long\":78.3299632,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/513\\/thumb\\/Laxman Jhoola_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1323,\"Title\":\"Parmarth Niketan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.1202595,\"Long\":78.3122715,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5105\\/thumb\\/Parmarth Niketan_184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1435,\"Title\":\"Ram Jhula\",\"Description\":\"Ram Jhula is one of the most popular attractions of Rishikesh. This bridge was constructed later than the Laxman Jhula, in the year 1980. Both these bridges are quite similar in design and steel construction. Ram Jhula is placed a few miles downstream from Laxman Jhula and links Swarg Ashram on the western bank of River Ganga to the Sivananda Ashram on the eastern one.\\r\\nAs you walk on the bridge, river Ganga gushes below with full force and you are surrounded by beautiful Himalayas. Let the cool breeze brush past your face. The bride is around 6 km northwards of the holy town. The bridge is also slightly bigger in length than Laxman Jhula. The total length of the bridge is 450 feet.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.122758,\"Long\":78.316605,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/512\\/thumb\\/Ram Jhula_973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":2979,\"Title\":\"Ganga Aarti Haridwar\",\"Description\":\"Ganga Aarti means prayer for River Ganga. Prayers are dedicated to   godesses. Ganga river is not just a river in India, It is Divine Mother. River Ganga gives life in the form of water. The same water also removes sins when you take a dip in its holy water. River Ganga also gives liberation to souls. Its not just a river but whole culture itself. Historically millions of people are living on the bank of the river ganga. For agriculture her water is still precious for India.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Ganga_Aarti_Haridwar_11530_1519386723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1068,\"Title\":\"Mansa Devi Temple\",\"Description\":\"Mansa Devi Temple is a Hindu temple dedicated to goddess Mansa Devi in the holy city of Haridwar in the Uttarakhand state of India. Mansa Devi is one of the aspects of Shakti. Mansa Devi temple is located in Dev Bhoomi, Haridwar in Uttrakhand state.The Mansa devi temple is among 53 siddha-peetha and also among panch-teertha in Haridwar. One can view whole of the Haridwar city from this temple. Devotees can reach this place via 3 km of trekking. Mansa means desire wish so devotees come here to fulfil the this wishes. There are two idols of Mansa devi in  the temple. One idol is having three faces and five arms.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9392064,\"Long\":78.1526754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Mansa_Devi_Temple,_Haridwar,_U_11530_1519385617.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":8913,\"Title\":\"Shantikunj\",\"Description\":\"Shantikunj is an academy for social and spiritual awakening. It is a spiritually charged pilgrimage center that has given righteous direction and long lasting peace-happiness to the lives of crores of people. Here, about 24 lakhs (24,00,000) Gayatri Mantra are chanted daily by dedicated spiritual seekers and about 1000 people take part in the Gayatri Yagya.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23018\\/sightseeing\\/Shantikunj_23018_1554286953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null}]}},{\"CityId\":13758,\"Title\":\"Kedarnath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509113,\"Name\":\"BEHL ASHRAM KEDARNATH\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.73429\",\"Long\":\"79.066374\",\"Address\":\"P3M8+PG9, near KEDARNATH TEMPLE, Kedarnath, Uttarakhand 246439, India\"},\"Images\":[],\"CityId\":13758,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"EP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27001,\"Title\":\"kempty fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27003,\"Title\":\"Bhagirathi River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27002,\"Title\":\"Harsil village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":558,\"Title\":\"Gaurikund\",\"Description\":\"Gauri Kund is a Hindu pilgrimage site and base camp for trek to Kedarnath Temple, in Uttarakhand, India. It is situated at an altitude of 6502 feet above mean sea level in the Garhwal Himalayas. Gauri Kund is connected with Shiva&amp;#039;s wife Parvati, also known as Gauri. In Hindu folklore, Gauri committed to penance involving many ascetic and yogic practices to win over Shiva&amp;#039;s affections. Local tradition claims that Gauri Kund is the spot where Gauri lived while carrying out these practices and it was here that Shiva finally admitted His love for Her. They were married at Triyugi Narayan, which is located nearby. There are hot springs in Gaurikund and they are converted to bathing places.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7346267,\"Long\":79.0668943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5099\\/thumb\\/Gaurikund_956.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27005,\"Title\":\"joshimath\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27004,\"Title\":\"Narsingh Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":948,\"Title\":\"Lakshman Jhula\",\"Description\":\"Lakshman Jhula is an iron suspension bridge over the Ganges. Earlier, it was a jute bridge and was later converted into an iron suspension bridge. The bridge is named after Lakshman, Shri Ram&amp;#039;s younger brother because according to the legend, the same jute bridge was used by Lakshman at the same site to cross the Ganga River. This frequently visited tourist spot is an adjoining bridge across the Ganga, connecting the holy shrines of Badrinath and Kedarnath. The jhula provides an excellent panoramic view of the temples and the ganges. Around the bridge is a market famous for wooden items, Rudraksha, holy books, Idols of Gods and Goddesses, gems, local jewelry, and excellent street food.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.126362,\"Long\":78.3299632,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/513\\/thumb\\/Laxman Jhoola_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1323,\"Title\":\"Parmarth Niketan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.1202595,\"Long\":78.3122715,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5105\\/thumb\\/Parmarth Niketan_184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1435,\"Title\":\"Ram Jhula\",\"Description\":\"Ram Jhula is one of the most popular attractions of Rishikesh. This bridge was constructed later than the Laxman Jhula, in the year 1980. Both these bridges are quite similar in design and steel construction. Ram Jhula is placed a few miles downstream from Laxman Jhula and links Swarg Ashram on the western bank of River Ganga to the Sivananda Ashram on the eastern one.\\r\\nAs you walk on the bridge, river Ganga gushes below with full force and you are surrounded by beautiful Himalayas. Let the cool breeze brush past your face. The bride is around 6 km northwards of the holy town. The bridge is also slightly bigger in length than Laxman Jhula. The total length of the bridge is 450 feet.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.122758,\"Long\":78.316605,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/512\\/thumb\\/Ram Jhula_973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":2979,\"Title\":\"Ganga Aarti Haridwar\",\"Description\":\"Ganga Aarti means prayer for River Ganga. Prayers are dedicated to   godesses. Ganga river is not just a river in India, It is Divine Mother. River Ganga gives life in the form of water. The same water also removes sins when you take a dip in its holy water. River Ganga also gives liberation to souls. Its not just a river but whole culture itself. Historically millions of people are living on the bank of the river ganga. For agriculture her water is still precious for India.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Ganga_Aarti_Haridwar_11530_1519386723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1068,\"Title\":\"Mansa Devi Temple\",\"Description\":\"Mansa Devi Temple is a Hindu temple dedicated to goddess Mansa Devi in the holy city of Haridwar in the Uttarakhand state of India. Mansa Devi is one of the aspects of Shakti. Mansa Devi temple is located in Dev Bhoomi, Haridwar in Uttrakhand state.The Mansa devi temple is among 53 siddha-peetha and also among panch-teertha in Haridwar. One can view whole of the Haridwar city from this temple. Devotees can reach this place via 3 km of trekking. Mansa means desire wish so devotees come here to fulfil the this wishes. There are two idols of Mansa devi in  the temple. One idol is having three faces and five arms.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9392064,\"Long\":78.1526754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Mansa_Devi_Temple,_Haridwar,_U_11530_1519385617.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":8913,\"Title\":\"Shantikunj\",\"Description\":\"Shantikunj is an academy for social and spiritual awakening. It is a spiritually charged pilgrimage center that has given righteous direction and long lasting peace-happiness to the lives of crores of people. Here, about 24 lakhs (24,00,000) Gayatri Mantra are chanted daily by dedicated spiritual seekers and about 1000 people take part in the Gayatri Yagya.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23018\\/sightseeing\\/Shantikunj_23018_1554286953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null}]}},{\"CityId\":2001,\"Title\":\"Badrinath\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509114,\"Name\":\"New Hotel Snow Crest\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.7402908\",\"Long\":\"79.4962233\",\"Address\":\"Main Road Badrinath Dham, Badrinath, Uttarakhand 246422, India\"},\"Images\":[],\"CityId\":2001,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Premium Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27001,\"Title\":\"kempty fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27003,\"Title\":\"Bhagirathi River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27002,\"Title\":\"Harsil village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":558,\"Title\":\"Gaurikund\",\"Description\":\"Gauri Kund is a Hindu pilgrimage site and base camp for trek to Kedarnath Temple, in Uttarakhand, India. It is situated at an altitude of 6502 feet above mean sea level in the Garhwal Himalayas. Gauri Kund is connected with Shiva&amp;#039;s wife Parvati, also known as Gauri. In Hindu folklore, Gauri committed to penance involving many ascetic and yogic practices to win over Shiva&amp;#039;s affections. Local tradition claims that Gauri Kund is the spot where Gauri lived while carrying out these practices and it was here that Shiva finally admitted His love for Her. They were married at Triyugi Narayan, which is located nearby. There are hot springs in Gaurikund and they are converted to bathing places.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7346267,\"Long\":79.0668943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5099\\/thumb\\/Gaurikund_956.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27005,\"Title\":\"joshimath\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27004,\"Title\":\"Narsingh Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":948,\"Title\":\"Lakshman Jhula\",\"Description\":\"Lakshman Jhula is an iron suspension bridge over the Ganges. Earlier, it was a jute bridge and was later converted into an iron suspension bridge. The bridge is named after Lakshman, Shri Ram&amp;#039;s younger brother because according to the legend, the same jute bridge was used by Lakshman at the same site to cross the Ganga River. This frequently visited tourist spot is an adjoining bridge across the Ganga, connecting the holy shrines of Badrinath and Kedarnath. The jhula provides an excellent panoramic view of the temples and the ganges. Around the bridge is a market famous for wooden items, Rudraksha, holy books, Idols of Gods and Goddesses, gems, local jewelry, and excellent street food.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.126362,\"Long\":78.3299632,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/513\\/thumb\\/Laxman Jhoola_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1323,\"Title\":\"Parmarth Niketan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.1202595,\"Long\":78.3122715,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5105\\/thumb\\/Parmarth Niketan_184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1435,\"Title\":\"Ram Jhula\",\"Description\":\"Ram Jhula is one of the most popular attractions of Rishikesh. This bridge was constructed later than the Laxman Jhula, in the year 1980. Both these bridges are quite similar in design and steel construction. Ram Jhula is placed a few miles downstream from Laxman Jhula and links Swarg Ashram on the western bank of River Ganga to the Sivananda Ashram on the eastern one.\\r\\nAs you walk on the bridge, river Ganga gushes below with full force and you are surrounded by beautiful Himalayas. Let the cool breeze brush past your face. The bride is around 6 km northwards of the holy town. The bridge is also slightly bigger in length than Laxman Jhula. The total length of the bridge is 450 feet.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.122758,\"Long\":78.316605,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/512\\/thumb\\/Ram Jhula_973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":2979,\"Title\":\"Ganga Aarti Haridwar\",\"Description\":\"Ganga Aarti means prayer for River Ganga. Prayers are dedicated to   godesses. Ganga river is not just a river in India, It is Divine Mother. River Ganga gives life in the form of water. The same water also removes sins when you take a dip in its holy water. River Ganga also gives liberation to souls. Its not just a river but whole culture itself. Historically millions of people are living on the bank of the river ganga. For agriculture her water is still precious for India.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Ganga_Aarti_Haridwar_11530_1519386723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1068,\"Title\":\"Mansa Devi Temple\",\"Description\":\"Mansa Devi Temple is a Hindu temple dedicated to goddess Mansa Devi in the holy city of Haridwar in the Uttarakhand state of India. Mansa Devi is one of the aspects of Shakti. Mansa Devi temple is located in Dev Bhoomi, Haridwar in Uttrakhand state.The Mansa devi temple is among 53 siddha-peetha and also among panch-teertha in Haridwar. One can view whole of the Haridwar city from this temple. Devotees can reach this place via 3 km of trekking. Mansa means desire wish so devotees come here to fulfil the this wishes. There are two idols of Mansa devi in  the temple. One idol is having three faces and five arms.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9392064,\"Long\":78.1526754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Mansa_Devi_Temple,_Haridwar,_U_11530_1519385617.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":8913,\"Title\":\"Shantikunj\",\"Description\":\"Shantikunj is an academy for social and spiritual awakening. It is a spiritually charged pilgrimage center that has given righteous direction and long lasting peace-happiness to the lives of crores of people. Here, about 24 lakhs (24,00,000) Gayatri Mantra are chanted daily by dedicated spiritual seekers and about 1000 people take part in the Gayatri Yagya.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23018\\/sightseeing\\/Shantikunj_23018_1554286953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null}]}},{\"CityId\":34295,\"Title\":\"Rudraprayag\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509116,\"Name\":\"Monal Resort\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.30000499999999\",\"Long\":\"79.01009719999999\",\"Address\":\"Main Badrinath Road, Rudraprayag, 8226+225, Chopta, Uttarakhand 246171, India\"},\"Images\":[],\"CityId\":34295,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27001,\"Title\":\"kempty fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27003,\"Title\":\"Bhagirathi River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27002,\"Title\":\"Harsil village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":558,\"Title\":\"Gaurikund\",\"Description\":\"Gauri Kund is a Hindu pilgrimage site and base camp for trek to Kedarnath Temple, in Uttarakhand, India. It is situated at an altitude of 6502 feet above mean sea level in the Garhwal Himalayas. Gauri Kund is connected with Shiva&amp;#039;s wife Parvati, also known as Gauri. In Hindu folklore, Gauri committed to penance involving many ascetic and yogic practices to win over Shiva&amp;#039;s affections. Local tradition claims that Gauri Kund is the spot where Gauri lived while carrying out these practices and it was here that Shiva finally admitted His love for Her. They were married at Triyugi Narayan, which is located nearby. There are hot springs in Gaurikund and they are converted to bathing places.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7346267,\"Long\":79.0668943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5099\\/thumb\\/Gaurikund_956.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27005,\"Title\":\"joshimath\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27004,\"Title\":\"Narsingh Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":948,\"Title\":\"Lakshman Jhula\",\"Description\":\"Lakshman Jhula is an iron suspension bridge over the Ganges. Earlier, it was a jute bridge and was later converted into an iron suspension bridge. The bridge is named after Lakshman, Shri Ram&amp;#039;s younger brother because according to the legend, the same jute bridge was used by Lakshman at the same site to cross the Ganga River. This frequently visited tourist spot is an adjoining bridge across the Ganga, connecting the holy shrines of Badrinath and Kedarnath. The jhula provides an excellent panoramic view of the temples and the ganges. Around the bridge is a market famous for wooden items, Rudraksha, holy books, Idols of Gods and Goddesses, gems, local jewelry, and excellent street food.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.126362,\"Long\":78.3299632,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/513\\/thumb\\/Laxman Jhoola_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1323,\"Title\":\"Parmarth Niketan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.1202595,\"Long\":78.3122715,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5105\\/thumb\\/Parmarth Niketan_184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1435,\"Title\":\"Ram Jhula\",\"Description\":\"Ram Jhula is one of the most popular attractions of Rishikesh. This bridge was constructed later than the Laxman Jhula, in the year 1980. Both these bridges are quite similar in design and steel construction. Ram Jhula is placed a few miles downstream from Laxman Jhula and links Swarg Ashram on the western bank of River Ganga to the Sivananda Ashram on the eastern one.\\r\\nAs you walk on the bridge, river Ganga gushes below with full force and you are surrounded by beautiful Himalayas. Let the cool breeze brush past your face. The bride is around 6 km northwards of the holy town. The bridge is also slightly bigger in length than Laxman Jhula. The total length of the bridge is 450 feet.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.122758,\"Long\":78.316605,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/512\\/thumb\\/Ram Jhula_973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":2979,\"Title\":\"Ganga Aarti Haridwar\",\"Description\":\"Ganga Aarti means prayer for River Ganga. Prayers are dedicated to   godesses. Ganga river is not just a river in India, It is Divine Mother. River Ganga gives life in the form of water. The same water also removes sins when you take a dip in its holy water. River Ganga also gives liberation to souls. Its not just a river but whole culture itself. Historically millions of people are living on the bank of the river ganga. For agriculture her water is still precious for India.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Ganga_Aarti_Haridwar_11530_1519386723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1068,\"Title\":\"Mansa Devi Temple\",\"Description\":\"Mansa Devi Temple is a Hindu temple dedicated to goddess Mansa Devi in the holy city of Haridwar in the Uttarakhand state of India. Mansa Devi is one of the aspects of Shakti. Mansa Devi temple is located in Dev Bhoomi, Haridwar in Uttrakhand state.The Mansa devi temple is among 53 siddha-peetha and also among panch-teertha in Haridwar. One can view whole of the Haridwar city from this temple. Devotees can reach this place via 3 km of trekking. Mansa means desire wish so devotees come here to fulfil the this wishes. There are two idols of Mansa devi in  the temple. One idol is having three faces and five arms.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9392064,\"Long\":78.1526754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Mansa_Devi_Temple,_Haridwar,_U_11530_1519385617.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":8913,\"Title\":\"Shantikunj\",\"Description\":\"Shantikunj is an academy for social and spiritual awakening. It is a spiritually charged pilgrimage center that has given righteous direction and long lasting peace-happiness to the lives of crores of people. Here, about 24 lakhs (24,00,000) Gayatri Mantra are chanted daily by dedicated spiritual seekers and about 1000 people take part in the Gayatri Yagya.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23018\\/sightseeing\\/Shantikunj_23018_1554286953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null}]}},{\"CityId\":23018,\"Title\":\"Rishikesh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509117,\"Name\":\"Divine Ganga Cottage - rishikesh hotel booking\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"30.1293957\",\"Long\":\"78.3284204\",\"Address\":\"Lakshman Jhula, Tapovan, Rishikesh, Uttarakhand 249302, India\"},\"Images\":[],\"CityId\":23018,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null,\"RoomTypeName\":\"River Facing Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27001,\"Title\":\"kempty fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27003,\"Title\":\"Bhagirathi River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27002,\"Title\":\"Harsil village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":558,\"Title\":\"Gaurikund\",\"Description\":\"Gauri Kund is a Hindu pilgrimage site and base camp for trek to Kedarnath Temple, in Uttarakhand, India. It is situated at an altitude of 6502 feet above mean sea level in the Garhwal Himalayas. Gauri Kund is connected with Shiva&amp;#039;s wife Parvati, also known as Gauri. In Hindu folklore, Gauri committed to penance involving many ascetic and yogic practices to win over Shiva&amp;#039;s affections. Local tradition claims that Gauri Kund is the spot where Gauri lived while carrying out these practices and it was here that Shiva finally admitted His love for Her. They were married at Triyugi Narayan, which is located nearby. There are hot springs in Gaurikund and they are converted to bathing places.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7346267,\"Long\":79.0668943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5099\\/thumb\\/Gaurikund_956.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27005,\"Title\":\"joshimath\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27004,\"Title\":\"Narsingh Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":948,\"Title\":\"Lakshman Jhula\",\"Description\":\"Lakshman Jhula is an iron suspension bridge over the Ganges. Earlier, it was a jute bridge and was later converted into an iron suspension bridge. The bridge is named after Lakshman, Shri Ram&amp;#039;s younger brother because according to the legend, the same jute bridge was used by Lakshman at the same site to cross the Ganga River. This frequently visited tourist spot is an adjoining bridge across the Ganga, connecting the holy shrines of Badrinath and Kedarnath. The jhula provides an excellent panoramic view of the temples and the ganges. Around the bridge is a market famous for wooden items, Rudraksha, holy books, Idols of Gods and Goddesses, gems, local jewelry, and excellent street food.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.126362,\"Long\":78.3299632,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/513\\/thumb\\/Laxman Jhoola_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1323,\"Title\":\"Parmarth Niketan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.1202595,\"Long\":78.3122715,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5105\\/thumb\\/Parmarth Niketan_184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1435,\"Title\":\"Ram Jhula\",\"Description\":\"Ram Jhula is one of the most popular attractions of Rishikesh. This bridge was constructed later than the Laxman Jhula, in the year 1980. Both these bridges are quite similar in design and steel construction. Ram Jhula is placed a few miles downstream from Laxman Jhula and links Swarg Ashram on the western bank of River Ganga to the Sivananda Ashram on the eastern one.\\r\\nAs you walk on the bridge, river Ganga gushes below with full force and you are surrounded by beautiful Himalayas. Let the cool breeze brush past your face. The bride is around 6 km northwards of the holy town. The bridge is also slightly bigger in length than Laxman Jhula. The total length of the bridge is 450 feet.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.122758,\"Long\":78.316605,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/512\\/thumb\\/Ram Jhula_973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":2979,\"Title\":\"Ganga Aarti Haridwar\",\"Description\":\"Ganga Aarti means prayer for River Ganga. Prayers are dedicated to   godesses. Ganga river is not just a river in India, It is Divine Mother. River Ganga gives life in the form of water. The same water also removes sins when you take a dip in its holy water. River Ganga also gives liberation to souls. Its not just a river but whole culture itself. Historically millions of people are living on the bank of the river ganga. For agriculture her water is still precious for India.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Ganga_Aarti_Haridwar_11530_1519386723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1068,\"Title\":\"Mansa Devi Temple\",\"Description\":\"Mansa Devi Temple is a Hindu temple dedicated to goddess Mansa Devi in the holy city of Haridwar in the Uttarakhand state of India. Mansa Devi is one of the aspects of Shakti. Mansa Devi temple is located in Dev Bhoomi, Haridwar in Uttrakhand state.The Mansa devi temple is among 53 siddha-peetha and also among panch-teertha in Haridwar. One can view whole of the Haridwar city from this temple. Devotees can reach this place via 3 km of trekking. Mansa means desire wish so devotees come here to fulfil the this wishes. There are two idols of Mansa devi in  the temple. One idol is having three faces and five arms.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9392064,\"Long\":78.1526754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Mansa_Devi_Temple,_Haridwar,_U_11530_1519385617.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":8913,\"Title\":\"Shantikunj\",\"Description\":\"Shantikunj is an academy for social and spiritual awakening. It is a spiritually charged pilgrimage center that has given righteous direction and long lasting peace-happiness to the lives of crores of people. Here, about 24 lakhs (24,00,000) Gayatri Mantra are chanted daily by dedicated spiritual seekers and about 1000 people take part in the Gayatri Yagya.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23018\\/sightseeing\\/Shantikunj_23018_1554286953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null}]}},{\"CityId\":11530,\"Title\":\"Haridwar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":509119,\"Name\":\"Hotel Godwin\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"29.9855856\",\"Long\":\"78.18779219999999\",\"Address\":\"X5PQ+64M, Motichur, Haridwar, Uttarakhand 249411, India\"},\"Images\":[],\"CityId\":11530,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":27001,\"Title\":\"kempty fall\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":34474,\"CityName\":\"Barkot\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":3491,\"Title\":\"Yamunotri Temple Uttarkashi Uttarakhand India\",\"Description\":\"Yamunotri Temple is situated in the western region of Garhwal Himalayas at an altitude of 3291 metres in Uttarkashi district Uttarakhand. The temple is dedicated to Goddess Yamuna and has a black marble idol of the goddess.  The Yamunotri temple is a full day  journey from Uttarakhands  main towns  Rishikesh Haridwar or Dehradun. The temple is accessible by a hilly track of 13km from Hanuman Chatti and is the last motor airport of the temple. Afterwards from Narada Chatti Janaki Cahtti or Phool Chatti towards Yamunotri begins tracking. Horses or palanquins are available for rent it makes easy to access the temple .This temple is included in Char DhamYatra and usually the first stop-over for the Yatra. One of the four Dhams of Uttarakhand. The temple once suffered damage due to an earthquake and Maharani Gularia of Jaipur rebuilt it in the late 19th century.But now light motor vehicles can be accessed to Janki Chatti which is only 5km away from the temple. Janki Chatti also provides accommodation facilities for tourists. The main attraction of the temple is the hot water source. Close to the temple are hot water springs  spirt out from the mountain cavities. Suryakund is the most important Kund and the temperature is about 195 degrees Fahrenheit. The kund has special sound called &amp;ldquo;Om sound&amp;rdquo;. Devotees prepare rice and potatoes to offer at the shrine by dipping them in these hot water springs tied in muslin cloth. Rice so cooked is taken back home as prasadam.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.9996968,\"Long\":78.4628871,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2001\\/sightseeing\\/Yamunotri_Temple_Uttarkashi_Ut_2001_1518263287.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1888,\"Title\":\"Vishwanath Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":30.7268307,\"Long\":78.4354042,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3583\\/thumb\\/Vishwanath Temple_898.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27003,\"Title\":\"Bhagirathi River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27002,\"Title\":\"Harsil village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":28264,\"CityName\":\"Uttarkashi\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":859,\"Title\":\"Kedarnath Temple\",\"Description\":\"Kedarnath Dham, located in the Rudraprayag district of Uttarakhand, is one of the most paramount locations for worshipers of Shiva. The air appears to be reverberating with the name of Lord Shiva amid the mighty snow-clad peaks, enchanting meadows and forests of the lower mountain range of Himalayas. Situated in a breathtaking location, near the source of Mandakini River and at the height of 3,584 meters, Kedarnath Dham celebrates the greatness of Lord Shiva. Kedarnath temple is one of the 12 Jyotir Lingams and is also the most important temple among the Panch Kedars (group of 5 Shiva temples in Garhwal Himalayas). It is also one of the significant temples of the sacred Chota Char Dham Yatra in Uttarakhand, raising the glory of the place to further heights.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7534462,\"Long\":79.0645056,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3337\\/thumb\\/kedarnath temple_401.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":558,\"Title\":\"Gaurikund\",\"Description\":\"Gauri Kund is a Hindu pilgrimage site and base camp for trek to Kedarnath Temple, in Uttarakhand, India. It is situated at an altitude of 6502 feet above mean sea level in the Garhwal Himalayas. Gauri Kund is connected with Shiva&amp;#039;s wife Parvati, also known as Gauri. In Hindu folklore, Gauri committed to penance involving many ascetic and yogic practices to win over Shiva&amp;#039;s affections. Local tradition claims that Gauri Kund is the spot where Gauri lived while carrying out these practices and it was here that Shiva finally admitted His love for Her. They were married at Triyugi Narayan, which is located nearby. There are hot springs in Gaurikund and they are converted to bathing places.\",\"CurrencyType\":0,\"CityId\":13758,\"CityName\":\"Kedarnath\",\"Lat\":30.7346267,\"Long\":79.0668943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5099\\/thumb\\/Gaurikund_956.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27005,\"Title\":\"joshimath\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":27004,\"Title\":\"Narsingh Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1727,\"Title\":\"Tapt Kund\",\"Description\":\"The Tapt Kund is a group of natural sulphur springs situated on the bank of River Alaknanda beside the Badrinarayan Temple. It is said that when Lord Vishnu was happy with Agni Dev&amp;rsquo;s (Fire God&amp;rsquo;s) penance, he granted a boon to eternally reside in the form of this kund here. The kund can incinerate the sins of all the devotees who come to take a holy dip in it. Don&amp;rsquo;t you think it is a miracle of sorts, for such hot springs to reside amid all the low temperatures around? Indeed, nature never fails to astound us. Also, the kund is considered to be therapeutic and possessing medicinal properties! A dip here is considered to be a good cure for skin diseases.\",\"CurrencyType\":0,\"CityId\":2001,\"CityName\":\"Badrinath\",\"Lat\":30.7325809,\"Long\":79.5069867,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4080\\/thumb\\/Tapt Kund_72.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":948,\"Title\":\"Lakshman Jhula\",\"Description\":\"Lakshman Jhula is an iron suspension bridge over the Ganges. Earlier, it was a jute bridge and was later converted into an iron suspension bridge. The bridge is named after Lakshman, Shri Ram&amp;#039;s younger brother because according to the legend, the same jute bridge was used by Lakshman at the same site to cross the Ganga River. This frequently visited tourist spot is an adjoining bridge across the Ganga, connecting the holy shrines of Badrinath and Kedarnath. The jhula provides an excellent panoramic view of the temples and the ganges. Around the bridge is a market famous for wooden items, Rudraksha, holy books, Idols of Gods and Goddesses, gems, local jewelry, and excellent street food.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.126362,\"Long\":78.3299632,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/513\\/thumb\\/Laxman Jhoola_635.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1323,\"Title\":\"Parmarth Niketan\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.1202595,\"Long\":78.3122715,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/5105\\/thumb\\/Parmarth Niketan_184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1435,\"Title\":\"Ram Jhula\",\"Description\":\"Ram Jhula is one of the most popular attractions of Rishikesh. This bridge was constructed later than the Laxman Jhula, in the year 1980. Both these bridges are quite similar in design and steel construction. Ram Jhula is placed a few miles downstream from Laxman Jhula and links Swarg Ashram on the western bank of River Ganga to the Sivananda Ashram on the eastern one.\\r\\nAs you walk on the bridge, river Ganga gushes below with full force and you are surrounded by beautiful Himalayas. Let the cool breeze brush past your face. The bride is around 6 km northwards of the holy town. The bridge is also slightly bigger in length than Laxman Jhula. The total length of the bridge is 450 feet.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":30.122758,\"Long\":78.316605,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/512\\/thumb\\/Ram Jhula_973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":2979,\"Title\":\"Ganga Aarti Haridwar\",\"Description\":\"Ganga Aarti means prayer for River Ganga. Prayers are dedicated to   godesses. Ganga river is not just a river in India, It is Divine Mother. River Ganga gives life in the form of water. The same water also removes sins when you take a dip in its holy water. River Ganga also gives liberation to souls. Its not just a river but whole culture itself. Historically millions of people are living on the bank of the river ganga. For agriculture her water is still precious for India.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Ganga_Aarti_Haridwar_11530_1519386723.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":647,\"Title\":\"Har Ki Pauri\",\"Description\":\"Jai Ganga Maa Har Ki Pauri is a famous ghat on the banks of the Ganges in Haridwar in the Indian state of Uttarakhand. This revered place is the major landmark of the holy city of Haridwar. Literally, &amp;quot;Har&amp;quot; means &amp;quot;Lord Shiva&amp;quot; who is the god according to shaivite Rishav Bhagwan school of Hindu theology, &amp;quot;Ki&amp;quot; means &amp;quot;of&amp;quot; and &amp;quot;Pauri&amp;quot; means &amp;quot;steps&amp;quot;. Lord Shiva and Lord Vishnu are believed to have visited the Brahmakund in Har Ki Pauri in the Vedic times. .It is believed that it is precise spot where the Ganges leaves the mountains and enters the plains.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9573607,\"Long\":78.1749687,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/121\\/thumb\\/Har Ki Pauri_249.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":1068,\"Title\":\"Mansa Devi Temple\",\"Description\":\"Mansa Devi Temple is a Hindu temple dedicated to goddess Mansa Devi in the holy city of Haridwar in the Uttarakhand state of India. Mansa Devi is one of the aspects of Shakti. Mansa Devi temple is located in Dev Bhoomi, Haridwar in Uttrakhand state.The Mansa devi temple is among 53 siddha-peetha and also among panch-teertha in Haridwar. One can view whole of the Haridwar city from this temple. Devotees can reach this place via 3 km of trekking. Mansa means desire wish so devotees come here to fulfil the this wishes. There are two idols of Mansa devi in  the temple. One idol is having three faces and five arms.\",\"CurrencyType\":0,\"CityId\":11530,\"CityName\":\"Haridwar\",\"Lat\":29.9392064,\"Long\":78.1526754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11530\\/sightseeing\\/Mansa_Devi_Temple,_Haridwar,_U_11530_1519385617.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null},{\"RefSSId\":8913,\"Title\":\"Shantikunj\",\"Description\":\"Shantikunj is an academy for social and spiritual awakening. It is a spiritually charged pilgrimage center that has given righteous direction and long lasting peace-happiness to the lives of crores of people. Here, about 24 lakhs (24,00,000) Gayatri Mantra are chanted daily by dedicated spiritual seekers and about 1000 people take part in the Gayatri Yagya.\",\"CurrencyType\":0,\"CityId\":23018,\"CityName\":\"Rishikesh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/23018\\/sightseeing\\/Shantikunj_23018_1554286953.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":9020,\"SupplierName\":\"TOURS CLUB INDIA\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"260452\",\"Title\":\"Haridwar - Barkot (180 kms\\/5-6 hr)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Pickup from the Haridwar\\/Rishikesh\\/Dehradun railway station and Drive to Barkot via visit Kempty Fall,outer Mussoorie and after that drive straight to Barkot on arrival check in to the hotel, after refreshment having dinner and overnight stay in Barkot.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509088,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Delux Cottage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27001,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260453\",\"Title\":\"Barkot-Jankichatti &ndash;(50 km\\/01 hr) &ndash;Yamunotri (06 km Trek )-Back to Barkot same route\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Morning after breakfast drive to Jankichatti by road and from Janki chatty start 6 km of trek for Yamunotri temple ( can use also potter, poni, ghori for the trek at own cost after visit Yamunotri temple back to Jankichatti by trek and after that back to hotel by drive , taking dinner , overnight stay in Barkot.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509088,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Delux Cottage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3491,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260454\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34474,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260455\",\"Title\":\"Barkot - Uttarkashi (100kms\\/4hr)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning after breakfast checkout from the hotel and Drive to Uttarkashi. Visit Vishwanath Temple &amp;amp; Others. Later Check in Hotel. Rest day at leisure. Night stay in Uttarkashi. Uttarkashi: Situated at the bank of river Bhagirathi. The temple of Lord Vishwanath is located here where a massive iron trident is erected.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Camp\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1888,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260456\",\"Title\":\"Uttarkashi &ndash; Harsil -Gangotri (100kms\\/3-4 each side)-Back to Uttarkashi.\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning after breakfast we proceed to Gangotri (3048 mts), enroute we enjoy picturesque Harsil village, Bhagirathi River and the most magnificent view of the Himalayas. After Gangotri Darshan we return to Uttarkashi. Oernight stay at Uttarkashi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509094,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Camp\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27003,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":27002,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260457\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28264,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260458\",\"Title\":\"Uttarkashi &ndash; Guptkashi (218 kms\\/7-8hr)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after Breakfast checkout from the hotel and drive to straight to Guptkashi. on arrival Check in Hotel, night halt&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509108,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Cottage Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260459\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260460\",\"Title\":\"Guptkashi &ndash;Sonprayag (30kms by road)-Gorikund- Kedarnath (14 km by Treek one side)\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning after breakfast checkout from the hotel and drive to sonprayag from sonpryag drive to Gauri Kund by local transport at own cost, on arrival Gaurikund, Trek start from Gaurikund to Kedarnath (14 Km)(can also use poni, ghori, doli for trek by own cost). Reaching in Kedarnath premises , check in to the hotel and overnight stay in Hotel. ( In Kedarnath Hotel food will not include in the Package) OR Kedarnath By Helicopter Morning after breakfast drive to Helipad on arrival, taking boarding passes and later fly for Kedarnath Helipad on arrival Kedarnath helipad go to temple by walk in after reaching check in to the hotel and overnight stay in Kedarnath .&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13758,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509113,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"EP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":859,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260461\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13758,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260462\",\"Title\":\"Kedarnath-Guptkashi (By Same route)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;Early morning visit to Kedarnath Temple and check out from the hotel and back to sonprayag via gorikund by trek and From sonprayag drive to Guptkashi by cab , back to hotel and overnight stay in Guptlkashi.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509108,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Cottage Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":558,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260463\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34396,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260464\",\"Title\":\"Guptkashi &ndash; Joshimath-Pandukeswar\\/Govindghat &ndash;Badrinath (218 kms\\/7-8hr)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;Morning Breakfast check out from the hotel and drive to Badrinath via Joshimath and visit Narsingh Dev Temple after that back to Badrianth on arrival check in to the hotel after refreshment visit Badrivishal and dinner overnight stay in Badrianth.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509114,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27005,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":27004,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260465\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2001,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260466\",\"Title\":\"Badrinath &ndash; Panchprayag &ndash;Rudraprayag (155 km\\/5-6 hr)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;Early morning, pilgrims after having a bath in the Taptkund have the Darshan of Badrivishal. Brahamakapal is significant for Pinddan Shraddh of ancestors (Pitrus). Later after breakfast checkout from the hotel and drive back to Srinagar via visit Panchprayag on arrival Srinagar Check in to the Hotel dinner overnight stay in Srinagar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34295,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509116,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1727,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260467\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":10,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34295,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260468\",\"Title\":\"Rudraprayag-Rishikesh&ndash; Rishikesh (130km\\/3-4 hr)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":10,\"Program\":\"&lt;p&gt;Morning Breakfast checkout from the hotel and drive to Rishikesh Sight Seeing covering with Ram Jhula , Lakshman Jhula, Parmarth Niketan and back to haridwar attain Ganga Aarti and drop in Rishikesh Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23018,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509117,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"River Facing Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":948,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1323,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1435,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260469\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":11,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":23018,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260470\",\"Title\":\"Haridwar \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":11,\"Program\":\"&lt;p&gt;After Brekfast Proceed For&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Har Ki Pauri. 0.1 km. ...&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Ganga Aarti. Haridwar is famous for Har ki Pauri and it&amp;#39;s Ganga Aarti. ...&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Mansa Devi Temple. 4.4 kms. ...&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Shantikunj. 4.3 kms \\/ 15 mins. ...&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Chandi Devi Temple. 3.5 kms \\/ 9 mins. ...&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Patanjali Yogpeeth. 21.3 kms \\/ 39 mins. ...&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Chilla Range. 3.4 kms \\/ 9 mins. ...&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Ma Anandamayi Ashram. 5.3 kms \\/ 19 mins.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":509119,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2979,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":647,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1068,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8913,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"260471\",\"Title\":\"Haridwar - Dehradun  (54.1 km)  1Hr.15 Min\",\"MealPlanInclude\":\"Breakfast\",\"Day\":12,\"Program\":\"&lt;p&gt;After Brekfast Proceed for&amp;nbsp; Dehradun Airport&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11530,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"36341\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"61600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":61600,\"priceDoubleOcc\":\"61600.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"61600.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":61600,\"priceDoubleOcc\":\"61600.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"61600.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":61600,\"priceDoubleOcc\":\"61600.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"61600.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":61600,\"priceDoubleOcc\":\"61600.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"61600.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":61600,\"priceDoubleOcc\":\"61600.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"61600.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":61600,\"priceDoubleOcc\":\"61600.00\",\"priceSingleOcc\":123200,\"priceExtraBed\":\"61600.00\",\"priceWithoutBed\":\"61600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"10.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"61600.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"36341\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"58800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":58800,\"priceDoubleOcc\":\"58800.00\",\"priceSingleOcc\":117600,\"priceExtraBed\":\"58800.00\",\"priceWithoutBed\":\"58800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"58800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":58800,\"priceDoubleOcc\":\"58800.00\",\"priceSingleOcc\":117600,\"priceExtraBed\":\"58800.00\",\"priceWithoutBed\":\"58800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"58800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":58800,\"priceDoubleOcc\":\"58800.00\",\"priceSingleOcc\":117600,\"priceExtraBed\":\"58800.00\",\"priceWithoutBed\":\"58800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"58800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":58800,\"priceDoubleOcc\":\"58800.00\",\"priceSingleOcc\":117600,\"priceExtraBed\":\"58800.00\",\"priceWithoutBed\":\"58800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"58800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":58800,\"priceDoubleOcc\":\"58800.00\",\"priceSingleOcc\":117600,\"priceExtraBed\":\"58800.00\",\"priceWithoutBed\":\"58800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"58800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0},{\"From\":\"2022-05-26\",\"To\":\"2022-07-30\",\"Currency\":1,\"priceTripleOcc\":58800,\"priceDoubleOcc\":\"58800.00\",\"priceSingleOcc\":117600,\"priceExtraBed\":\"58800.00\",\"priceWithoutBed\":\"58800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":\"5.00\",\"ExcludedPercent\":\"0\",\"PricePerPerson\":\"58800.00\",\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;? Cancellation before 30 days of start date will be charged processing fee equivalent to 10% per person;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Cancellations between 20 days to 30 days before start date, 25% of tour cost would be charged as retention;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Cancellations between 20 days to 15 days before start date, 50% of tour cost would be charged as retention;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Cancellations made within 15 days of start date, entire tour cost shall be charged as retention;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Above policy may vary during peak season&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50% advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 40% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;&lt;span style=&quot;color:#c0392b&quot;&gt;&lt;strong&gt;READ CAREFULLY BEFORE BOOKING&lt;\\/strong&gt;&lt;\\/span&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? A\\/c will not work in car on Hilly areas.(In Chardham Sector)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? In case of any uncertain\\/unwanted circumstances like bad weather or land slide etc. Company will reschedule the itinerary accordingly. But, in that case guest has to pay for extra expenses like food, accommodation, car rental for extra days or anything which is already booked\\/ arranged by the company.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Company is not responsible If there will be any kind of fault such as electricity or water inside the Hotel Premises.(Hotel Manager will be resolved the problem)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? After Confirming Helicopter tickets, company is not responsible for any kind of discrepancy happened from the end of the Aviation Company. Like cancellation due to bad weather etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Extra expenses other than the planed itinerary will be bear by the client at their own. Such as medical related problem, extra meal in between journey or whatever is not mentioned in the itinerary, Hotels other than booked one.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Sightseeing which are out of the way of Chardham Yatra will cost extra.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? All extras (F&amp;amp;B and any other services) availed by the customer will be on direct payment basis.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? In case of odd number groups, the extra person shall be accommodated in the same room with an extra bed \\/ mattress.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? The above rates are applicable to the Indian Nationals only.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? In Rishikesh, Green card permit will be taken from Uttrakhand Govt. the time may vary depending upon crowd there hill taking the permit.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;? Any Meals, services not utilized, partly utilized are non-refundable.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"260452\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[260452],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260453\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[260453],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260454\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[260454],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260455\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[260455],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260456\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[260456],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260457\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[260457],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260458\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[260458],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260459\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[260459],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260460\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[260460],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260461\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[260461],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260462\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[260462],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260463\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[260463],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260464\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[260464],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260465\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[260465],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260466\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[260466],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260467\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[260467],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260468\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[260468],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260469\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[260469],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"260470\":{\"11\":{\"Sequence\":[11],\"TPInvnSysId\":[260470],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"260471\":{\"12\":{\"Sequence\":[12],\"TPInvnSysId\":[260471],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":0,\"fixedInventory\":[]}}','Barkot,Uttarkashi,Guptakashi,Kedarnath,Badrinath,Rudraprayag,Rishikesh,Haridwar','Barkot,Uttarakhand,Indian Subcontinent,North India,India,Uttarkashi,Guptakashi,Kedarnath,Badrinath,Rudraprayag,Rishikesh,Haridwar',NULL,'34474,28264,34396,13758,2001,34295,23018,11530',58800,61600,11,NULL,NULL,NULL,2,'',0,'2022-06-02 00:00:00','2022-07-30 00:00:00','2022-07-30 00:00:00',3,'India','101','2022-08-04 14:15:38','2022-06-02 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'char-dham-yatra',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (39,36728,1,12577,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":36728,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":1,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/discover_thail_1655289559.jpg\",\"BookingValidUntill\":\"2022-09-13\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Looking for an exotic getaway with your loved ones this holiday season? Look no further than Thailand, a country with a variety of travel destinations. The&amp;nbsp;4 nights 5 days Thailand family tour package&amp;nbsp;gives a chance to take a family trip to the Land of Smiles. Thailand&amp;#39;s package covers the cities of Pattaya and Bangkok. Direct flights are available from Delhi, Mumbai, Chennai, and Kolkata.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":4539,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":4539,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Pattaya\",\"SourcePlaceSysId\":20925,\"AgencyName\":\"Atlas Tours And Travels Pvt Ltd\",\"Name\":\"Discover Thailand\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":1,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10093\",\"SupplierName\":\"Tripjack Pvt Ltd\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2022-07-12\",\"To\":\"2022-09-13\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":510633,\"Name\":\"Sunbeam Hotel Pattaya\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.9356003\",\"Long\":\"100.8849553\",\"Address\":\"217\\/27 Soi 8, Pattaya Beach Road, Pattaya, Chonburi, 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;A stay at Sunbeam Hotel Pattaya - SHA Extra Plus places you in the heart of Pattaya, within a 5-minute walk of Pattaya Beach and Pattaya Memorial Hospital. This 4-star hotel is 0.7 mi (1.1 km) from Alcazar Cabaret and 0.7 mi (1.2 km) from Central Festival Pattaya. Make yourself at home in one of the 270 air-conditioned rooms featuring refrigerators and minibars. Complimentary wireless Internet access is available to keep you connected. Private bathrooms with bathtubs or showers feature rainfall showerheads and complimentary toiletries. Conveniences include phones, as well as safes and desks. Dip into one of the 2 outdoor swimming pools or enjoy other recreational amenities, which include a fitness center. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge). For lunch or dinner, stop by SIAMESE BISTRO, a restaurant that specializes in international cuisine. Dining is also available at the coffee shop\\/cafe, and 24-hour room service is provided. Wrap up your day with a drink at the bar\\/lounge. Buffet breakfasts are available daily from 6 AM to 10 AM for a fee. Featured amenities include a 24-hour business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. Planning an event in Pattaya? This hotel has facilities measuring 4273 square feet (397 square meters), including conference space. A roundtrip airport shuttle is provided for a surcharge (available 24 hours), and free self parking is available onsite.&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_510633\\/4539_000aa95afc0c65457cc99d6ded2ec6bb1655288639.jpeg\",\"AccoAminitiesMask\":\"111110111110111111111\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":9,\"Title\":\"Pets\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"},{\"AminityId\":16,\"Title\":\"Smoking\"},{\"AminityId\":17,\"Title\":\"Disabled Friendly\"},{\"AminityId\":18,\"Title\":\"Other\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"},{\"AminityId\":20,\"Title\":\"Good Fitness Center\"}],\"IsfromAPI\":false,\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":510635,\"Name\":\"Centara Pattaya Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.9412129\",\"Long\":\"100.888749\",\"Address\":\"78\\/140 Moo 9 Nongprue, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_510635\\/4539_910ec9cbe1f70a800afb9e987fbcf6761655288879.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":510637,\"Name\":\"Dusit Thani Pattaya\",\"Star\":\"5.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.9506774\",\"Long\":\"100.8853687\",\"Address\":\"5 240\\/2 Beach Rd, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"&lt;p&gt;Dusit Thani Pattaya&nbsp;enjoys a five-star status and the resort hotel presents a luxurious blend of city comforts and beach relaxation for individual travellers&lt;\\/p&gt;\\r\\n\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_510637\\/4539_43f7d241933615ba8904fda9c18f46e61655289047.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":4646,\"Title\":\"Golden Buddha\",\"Description\":\"The Golden Buddha, officially titled Phra Phuttha Maha Suwana Patimakon is a gold statue, with a weight of 5.5 tons (5,500 kilograms). It is located in the temple of Wat Traimit, Bangkok, Thailand. At one point in its history the statue was covered with a layer of stucco and coloured glass to conceal its true value\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/36_1524483061.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":8512,\"Title\":\"Marble Temple\",\"Description\":\"Wat Benchamabophit Dusitvanaram is a Buddhist temple in the Dusit district of Bangkok, Thailand. Also known as the marble temple, it is one of Bangkok&amp;#039;s best-known temples and a major tourist attraction. It typifies Bangkok&amp;#039;s ornate style of high gables, stepped-out roofs and elaborate finials.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/Marble_Temple_2266_1551335732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":510641,\"Name\":\"Galleria 12 Bangkok Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.7352086\",\"Long\":\"100.5582044\",\"Address\":\"81, 83 Sukhumvit 12 Alley, Khlong Toei, Bangkok 10110, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_510641\\/4539_4e0f50eab49d48ef8b639b370af7ba2f1655289173.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":510642,\"Name\":\"Avani Atrium Bangkok Hotel\",\"Star\":\"4.00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.7469825\",\"Long\":\"100.5702056\",\"Address\":\"1880 New Petchaburi Rd, Bang Kapi, Huai Khwang, Bangkok 10310, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_510642\\/4539_52eec0b378d001b7a9d9154002b88d9c1655289254.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"},{\"RefHotelId\":510643,\"Name\":\"Lancaster Bangkok\",\"Star\":\"5.00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.7489297\",\"Long\":\"100.5674611\",\"Address\":\"Lancaster Bangkok Hotel, 1777 Phetchaburi Rd, Bangkapi, Huai Khwang, Bangkok 10310, Thailand\"},\"Images\":[],\"CityId\":2266,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_510643\\/4539_484035d92d9329c553f0290a19ad29851655289375.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null,\"RoomTypeName\":\"Standard Room\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":4646,\"Title\":\"Golden Buddha\",\"Description\":\"The Golden Buddha, officially titled Phra Phuttha Maha Suwana Patimakon is a gold statue, with a weight of 5.5 tons (5,500 kilograms). It is located in the temple of Wat Traimit, Bangkok, Thailand. At one point in its history the statue was covered with a layer of stucco and coloured glass to conceal its true value\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/36_1524483061.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null},{\"RefSSId\":8512,\"Title\":\"Marble Temple\",\"Description\":\"Wat Benchamabophit Dusitvanaram is a Buddhist temple in the Dusit district of Bangkok, Thailand. Also known as the marble temple, it is one of Bangkok&amp;#039;s best-known temples and a major tourist attraction. It typifies Bangkok&amp;#039;s ornate style of high gables, stepped-out roofs and elaborate finials.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/Marble_Temple_2266_1551335732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10093,\"SupplierName\":\"Tripjack Pvt Ltd\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"263213\",\"Title\":\"Bangkok - Pattaya: Arrival\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Guests will meet at International Airport, Mumbai\\/Delhi as per the scheduled flight departure time and proceed to Bangkok. &amp;lsquo;Joining and leaving tour&amp;rsquo; guests will meet the group as per their Convenience, directly at Bangkok Airport \\/ Pattaya hotel according to the group schedule. Welcome to Bangkok and proceed to Pattaya. Check-in Pattaya Hotel (Normal Check-in Time 1400 Hrs). Overnight in Pattaya Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510633,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":510635,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":510637,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"263216\",\"Title\":\"Pattaya: Coral Island Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Enjoy a wholesome breakfast and get ready for a fascinating Coral Island Tour in a shared speedboat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;Tour Duration: 5 Hours | Pick up\\/Drop Point: Hotel | Transfers: Shared transfers | Pick up Time: 8:00 AM&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The representative will pick you up from the hotel in a shared transfer and take you to the port where you&amp;#39;ll board the speedboat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Hop on a speed boat which will take around 45 minutes to reach Coral Island.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;One can indulge in many activities as the Island offers a variety of fun water activities to do and find something you&amp;#39;ve always wanted to try.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit the most famous beach Tawaen Beach, where there is a small harbour lined with small tourist shops.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Choose from snorkelling, sea walker diving, parasailing, jet-skiing, and many more such activities (&lt;em&gt;additional&lt;\\/em&gt; &lt;em&gt;cost)&lt;\\/em&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Stroll around the white sandy beaches and watch the waves rushing over the boulders.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After an adventurous day, head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510633,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":510635,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":510637,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"263219\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"263222\",\"Title\":\"Pattaya: Transfer to Bangkok\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast today, our representative will transfer you to Bangkok.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Capture the beautiful sight of the Grand Palace, adorned with beautiful architecture and intricate details and get to know why even after 150 years, the monument is the spiritual heart of the Thai kingdom.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;You can also visit Wat Phra Kaew or the Temple of Emerald Buddha, located within the grounds of the Grand Palace and enshrines the Emerald Buddha image carefully carved from a single block of jade.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Make your way towards Kuan Yim Shrine (Thian Fa Foundation), and experience a peaceful time while praying to the goddess of mercy (basically in Mahayana Buddhism) and see the beauty of the colourful shrine which is about 900 years old.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Visit Wat Benchamabopit or Marble Temple, one of the most modern works of Thai religious architecture.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Continue the tour by passing through the beautiful city scenery of the colourful floating market and Chinatown.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Taste the flavours of delicious Thai Cuisines, stroll around the streets and collect souvenirs for your loved ones.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay in Bangkok.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510641,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":510642,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":510643,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2821,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4646,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":8512,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"263225\",\"Title\":\"Bangkok: Day at Leisure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, spend the rest of the day leisurely.&amp;nbsp;One can stroll around the markets, explore local cafes and witness the extraordinary beauty of the city of angels.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;em&gt;&lt;strong&gt;You can also choose to indulge in optional activities today (contact our holiday expert to know more).&amp;nbsp;&lt;\\/strong&gt;&lt;\\/em&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;** &lt;strong&gt;Optional&lt;\\/strong&gt; Full Day Safari world with Marine Park &amp;ndash; an open zoo where visitors can marvel at the animals living in their natural habitat. At Marine Park, there are a variety of exotic marine animals and shows like Orang Utang Monkey Kick Boxing Show, Cowboy Stunt Show, Sea Lion Show, and Dolphin Show. Here we get an opportunity to have the closest encounter with rare and endangered species of the animal kingdom. Overnight in Bangkok Hotel. **&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Head back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight stay at the hotel in Bangkok.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":510641,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":510642,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":510643,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"Standard Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"263228\",\"Title\":\"Bangkok: Departure\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After having breakfast, check out from the hotel and get transferred to the Bangkok airport for your return flight back home.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Take a plethora of memories with you to cherish for eternity.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"36728\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"33350.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":33925,\"priceDoubleOcc\":33350,\"priceSingleOcc\":43700,\"priceExtraBed\":35075,\"priceWithoutBed\":30590,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30590,\"CEB\":35075,\"COSTDO\":33350,\"COSTSO\":43700,\"ACEB\":35075,\"COSTTO\":35075}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36729\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"36800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":37950,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":37950,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":37950,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":37950,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":37950,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":37950,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":37950,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":37950,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":37950,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":37950,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":37950,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":37950,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":37375,\"priceDoubleOcc\":36800,\"priceSingleOcc\":48300,\"priceExtraBed\":38525,\"priceWithoutBed\":32200,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32200,\"CEB\":38525,\"COSTDO\":36800,\"COSTSO\":48300,\"ACEB\":38525,\"COSTTO\":38525}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"36730\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"40825.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":41400,\"priceDoubleOcc\":40825,\"priceSingleOcc\":56350,\"priceExtraBed\":42550,\"priceWithoutBed\":36340,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":36340,\"CEB\":42550,\"COSTDO\":40825,\"COSTSO\":56350,\"ACEB\":42550,\"COSTTO\":42550}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"36728\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"31900.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":32450,\"priceDoubleOcc\":31900,\"priceSingleOcc\":41800,\"priceExtraBed\":33550,\"priceWithoutBed\":29260,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":29260,\"CEB\":33550,\"COSTDO\":31900,\"COSTSO\":41800,\"ACEB\":33550,\"COSTTO\":33550}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36729\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"35200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":36300,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":36300,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":36300,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":36300,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":36300,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":36300,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":36300,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":36300,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":36300,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":36300,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":36300,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":36300,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":35750,\"priceDoubleOcc\":35200,\"priceSingleOcc\":46200,\"priceExtraBed\":36850,\"priceWithoutBed\":30800,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":30800,\"CEB\":36850,\"COSTDO\":35200,\"COSTSO\":46200,\"ACEB\":36850,\"COSTTO\":36850}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"36730\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"39050.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-06\",\"To\":\"2022-07-06\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-13\",\"To\":\"2022-07-13\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-20\",\"To\":\"2022-07-20\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-07-27\",\"To\":\"2022-07-27\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-08-11\",\"To\":\"2022-08-11\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-15\",\"To\":\"2022-10-15\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-16\",\"To\":\"2022-10-16\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-17\",\"To\":\"2022-10-17\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-18\",\"To\":\"2022-10-18\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-19\",\"To\":\"2022-10-19\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700},{\"From\":\"2022-10-26\",\"To\":\"2022-10-26\",\"Currency\":1,\"priceTripleOcc\":39600,\"priceDoubleOcc\":39050,\"priceSingleOcc\":53900,\"priceExtraBed\":40700,\"priceWithoutBed\":34760,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":34760,\"CEB\":40700,\"COSTDO\":39050,\"COSTSO\":53900,\"ACEB\":40700,\"COSTTO\":40700}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;GST if not mentioned in the rates.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visa &amp;amp; Thai Pass is not included in the above cost&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;5% TCS.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any domestic or international airfare unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Any visa cost unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Travel Insurance unless mentioned in the inclusions tab.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;RT-PCR Test Charges (Covid-19 test)&amp;nbsp;if not mentioned in the&amp;nbsp;itinerary.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax, etc.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Anything not mentioned under Package Inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Entrance fees at all monuments and sightseeing spots unless mentioned under package inclusions.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, roadblocks, and\\/or any factors beyond control.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;Direct return flight from Mumbai to Bangkok.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Return Airport Transfers in Thailand on SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;4 Nights&amp;rsquo; Accommodation in above-mentioned hotel or Similar.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Breakfast a the hotel.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Intercity Transfers (Bangkok to Pattaya and return) on SIC basis.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit Coral Island by speed boat and with lunch in Pattaya on SIC.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Bangkok city orientation tour which includes the Golden Buddha and Marble Buddha on SIC.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"263213\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[263213],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"263216\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[263216],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"263219\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[263219],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"263222\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[263222],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"263225\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[263225],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"263228\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[263228],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"1\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":{\"18676\":{\"CityName\":\"Mumbai\",\"FlightInv\":{\"1\":{\"49\":{\"FlightType\":1,\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8-25\",\"DepartureAirportCode\":\"BOM\",\"DepartureAirportName\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"DepartureTime\":\"05:50:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"BKK\",\"ArrivalAirportName\":\"Bangkok, TH - Bangkok Intl Airport (BKK)\",\"ArrivalTime\":\"12:00:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"04:40\"}},\"2\":{\"50\":{\"FlightType\":2,\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8--26\",\"DepartureAirportCode\":\"BKK\",\"DepartureAirportName\":\"Bangkok, TH - Bangkok Intl Airport (BKK)\",\"DepartureTime\":\"13:00:00\",\"FromTerminal\":\"\",\"ArrivalAirportCode\":\"BOM\",\"ArrivalAirportName\":\"Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)\",\"ArrivalTime\":\"16:15:00\",\"ToTerminal\":\"\",\"EstimateHours\":\"04:45\"}}},\"FromDate\":{\"20220706\":{\"FromDate\":\"2022-07-06\",\"FromDateDMY\":\"06\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220720\":{\"FromDate\":\"2022-07-20\",\"FromDateDMY\":\"20\\/07\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20220811\":{\"FromDate\":\"2022-08-11\",\"FromDateDMY\":\"11\\/08\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221016\":{\"FromDate\":\"2022-10-16\",\"FromDateDMY\":\"16\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221018\":{\"FromDate\":\"2022-10-18\",\"FromDateDMY\":\"18\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221019\":{\"FromDate\":\"2022-10-19\",\"FromDateDMY\":\"19\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"},\"20221026\":{\"FromDate\":\"2022-10-26\",\"FromDateDMY\":\"26\\/10\\/2022\",\"AdultCost\":0,\"InfantCost\":0,\"B2BAdultMarkup\":0,\"B2BInfantMarkup\":0,\"B2CAdultMarkup\":0,\"B2CInfantMarkup\":0,\"CurrencySysId\":1,\"Symbol\":\"INR\"}}}}}}','Pattaya,Bangkok','Pattaya,South East Asia,Thailand,Bangkok',NULL,'20925,2266',31900,40825,4,NULL,NULL,NULL,1,'',0,'2022-07-12 00:00:00','2022-09-13 00:00:00','2022-09-13 00:00:00',3,'Thailand','215','2022-07-12 00:00:00','2022-07-12 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'discover-thailand',NULL,NULL,NULL,0),(40,36882,1,12577,1,0,0,'Family',NULL,1,1,0,'{\"package\":{\"TPId\":36882,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"0\",\"BookingValidUntill\":\"2022-07-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The valley of Kashmir offers woody abyss which surrounds the steep mountainous terrain. Known around the world for its unparallel landscapes, the valley is located 300kms away from Jammu. Situated in the Himalayas, the clear blue skies reveal the snow capped peaks that birth the streams and rivers. Home to native flora like pine, deodar and chinar, it is a memory of a lifetime to preserve as you glide on a Shikara. The valley delights you with multi hues of nature communicated through lush green slopes, tender meadows and prairie of vibrant flowers. The capital city of Kashmir- Srinagar is world renowned for its handloom that produces woolen garments and Pashmina shawls. Srinagar also acquaints you with the local handicrafts and hand carved wooden furniture made out of walnut tree.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"32500\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Srinagar\",\"DestinationPlacesSysId\":25897,\"SourcePlaces\":\"Amritsar\",\"SourcePlaceSysId\":974,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Vaishnodevi With Kashmir \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10147\",\"SupplierName\":\"essence tours and travel\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Family\",\"Validity\":{\"From\":\"2022-07-18\",\"To\":\"2022-07-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":974,\"Title\":\"Amritsar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":508507,\"Name\":\"hotel shivaay grand amritsar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1845,\"Title\":\"Vaishno Devi Mandir\",\"Description\":\"Vaishno Devi, also known as Mata Rani, Trikuta and Vaishnavi, is a manifestation of the Hindu Goddess Mata Adi Shakti also known as Chandi\\/Durga. The words maa and mata are commonly used in India for mother, and thus are often used in connection with Vaishno Devi. Vaishno Devi Mandir is a Hindu temple dedicated to the Hindu Goddess, located in Katra at the Trikuta Mountains within the Indian state of Jammu and Kashmir.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.7266016,\"Long\":74.8570259,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/196\\/thumb\\/Vaishno Devi Mandir_162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":94,\"Title\":\"Baba Bhaironath Temple\",\"Description\":\"Bhairon Temple is located at a distance of 1.42 km from the Bhawan. The temple is situated at the highest point of the adjacent hill at an altitude of 6,619 ft. This temple also involves a steep climb which can be undertaken by foot, ponies or palanquins.\\r\\nIt is believed that the journey to Mata Vaishno Devi is not complete without the darshan in Bhairon Temple.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.9669307,\"Long\":74.9831203,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4786\\/thumb\\/Baba Bhaironath Temple_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":15,\"Title\":\"Adhkwari Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":33.778175,\"Long\":76.5761714,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4785\\/thumb\\/Adhkwari Temple_21.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":306,\"Title\":\"Char Chinar\",\"Description\":\"Char chinar which is also well known by the names such as Char Chinari, Ropa Lank or Rupa Lank is situated in the Dal lake. This group of Island consists of 3 individual islands. Two of them have beautiful Chinar trees. This island is marked by the presence of 4 Chinar trees which are situated at each of the four corners of this island.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3926\\/thumb\\/Char Chinar_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":7252,\"Title\":\"Ropeway Gondola\",\"Description\":\"Gondola in Gulmarg is a popular destination visited by almost everyone. The cable car ride in Gondola is of ultimate attraction to the visitors. At an elevation of around 13,500ft above the sea level, the cable ride is divided in 2 parts. The first is from Gulmarg to Kongdoor and the other is from Kongdoor to Apharwat. The project was initially constructed in collaboration with the French company PUMA. It is managed by the Jammu and Kashmir Cable Car Corporation. It is advisable to take a ride during day time to get involved in foggy chilled weather.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Ropeway_Gondola_25897_1538043828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":110,\"Title\":\"Baisaran Valley\",\"Description\":\"Also termed as mini Switzerland, this valley is part of the package designed by pony owners &amp;amp; a must visit place too.It has a perfect settings of vast green valley, magnificent mountains &amp;amp; a perfect sunset.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0030906,\"Long\":75.3342943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1320\\/thumb\\/Baisaran Valley_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":27600,\"Title\":\"kashmir vally\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null}]}},{\"CityId\":13683,\"Title\":\"Katra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":511110,\"Name\":\"Hotel Green Valley Katra\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.9864115\",\"Long\":\"74.9359207\",\"Address\":\"Railway Station, near Katra, Katra, Jammu and Kashmir 182301\"},\"Images\":[],\"CityId\":13683,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1845,\"Title\":\"Vaishno Devi Mandir\",\"Description\":\"Vaishno Devi, also known as Mata Rani, Trikuta and Vaishnavi, is a manifestation of the Hindu Goddess Mata Adi Shakti also known as Chandi\\/Durga. The words maa and mata are commonly used in India for mother, and thus are often used in connection with Vaishno Devi. Vaishno Devi Mandir is a Hindu temple dedicated to the Hindu Goddess, located in Katra at the Trikuta Mountains within the Indian state of Jammu and Kashmir.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.7266016,\"Long\":74.8570259,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/196\\/thumb\\/Vaishno Devi Mandir_162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":94,\"Title\":\"Baba Bhaironath Temple\",\"Description\":\"Bhairon Temple is located at a distance of 1.42 km from the Bhawan. The temple is situated at the highest point of the adjacent hill at an altitude of 6,619 ft. This temple also involves a steep climb which can be undertaken by foot, ponies or palanquins.\\r\\nIt is believed that the journey to Mata Vaishno Devi is not complete without the darshan in Bhairon Temple.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.9669307,\"Long\":74.9831203,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4786\\/thumb\\/Baba Bhaironath Temple_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":15,\"Title\":\"Adhkwari Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":33.778175,\"Long\":76.5761714,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4785\\/thumb\\/Adhkwari Temple_21.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":306,\"Title\":\"Char Chinar\",\"Description\":\"Char chinar which is also well known by the names such as Char Chinari, Ropa Lank or Rupa Lank is situated in the Dal lake. This group of Island consists of 3 individual islands. Two of them have beautiful Chinar trees. This island is marked by the presence of 4 Chinar trees which are situated at each of the four corners of this island.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3926\\/thumb\\/Char Chinar_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":7252,\"Title\":\"Ropeway Gondola\",\"Description\":\"Gondola in Gulmarg is a popular destination visited by almost everyone. The cable car ride in Gondola is of ultimate attraction to the visitors. At an elevation of around 13,500ft above the sea level, the cable ride is divided in 2 parts. The first is from Gulmarg to Kongdoor and the other is from Kongdoor to Apharwat. The project was initially constructed in collaboration with the French company PUMA. It is managed by the Jammu and Kashmir Cable Car Corporation. It is advisable to take a ride during day time to get involved in foggy chilled weather.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Ropeway_Gondola_25897_1538043828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":110,\"Title\":\"Baisaran Valley\",\"Description\":\"Also termed as mini Switzerland, this valley is part of the package designed by pony owners &amp;amp; a must visit place too.It has a perfect settings of vast green valley, magnificent mountains &amp;amp; a perfect sunset.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0030906,\"Long\":75.3342943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1320\\/thumb\\/Baisaran Valley_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":27600,\"Title\":\"kashmir vally\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null}]}},{\"CityId\":25897,\"Title\":\"Srinagar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":511111,\"Name\":\"The Grand Kaisar\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0687897\",\"Long\":\"74.8244721\",\"Address\":\"Lane No. 1, School, behind Presentation Convent, Rajbagh, Srinagar, Jammu and Kashmir 190008\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":414480,\"Name\":\"Young Bombay Group of House Boats\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.0904\",\"Long\":\"74.8372\",\"Address\":\"Boulevard Road, Opposite Ghat No. 9, Dal Lake Srinagar, Srinagar 190001\"},\"Images\":[],\"CityId\":25897,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at YOUNG BOMBAY GROUP OF HOUSEBOATS in Durgjan (Dal Lake), you&#039;ll be convenient to Shankaracharya Reserved Forest and Hari Parbat Fort.  This historic hotel is within close proximity of Royal Springs Golf Course and Palace of the Fairies.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 10 guestrooms, featuring kitchenettes. Wired and wireless Internet access is complimentary, and flat-screen televisions with satellite programming provide entertainment. Private bathrooms with separate bathtubs and showers feature jetted bathtubs and complimentary toiletries. Conveniences include safes and desks, and housekeeping is provided daily.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Enjoy recreation amenities such as bicycles to rent or take in the view from a rooftop terrace. Additional amenities at this hotel include complimentary wireless Internet access, babysitting\\/childcare (surcharge), and tour\\/ticket assistance.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at a restaurant or in a coffee shop\\/cafe. Or stay in and take advantage of the hotel&#039;s room service (during limited hours).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include complimentary wired Internet access, a business center, and complimentary newspapers in the lobby. A shuttle from the airport to the hotel is provided for a surcharge (available 24 hours), and self parking (subject to charges) is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/0a\\/7d\\/0a7ddd891c63f577f4d2079cf52d8012ab73e840.jpg\",\"AccoAminitiesMask\":\"1010000100001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1845,\"Title\":\"Vaishno Devi Mandir\",\"Description\":\"Vaishno Devi, also known as Mata Rani, Trikuta and Vaishnavi, is a manifestation of the Hindu Goddess Mata Adi Shakti also known as Chandi\\/Durga. The words maa and mata are commonly used in India for mother, and thus are often used in connection with Vaishno Devi. Vaishno Devi Mandir is a Hindu temple dedicated to the Hindu Goddess, located in Katra at the Trikuta Mountains within the Indian state of Jammu and Kashmir.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.7266016,\"Long\":74.8570259,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/196\\/thumb\\/Vaishno Devi Mandir_162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":94,\"Title\":\"Baba Bhaironath Temple\",\"Description\":\"Bhairon Temple is located at a distance of 1.42 km from the Bhawan. The temple is situated at the highest point of the adjacent hill at an altitude of 6,619 ft. This temple also involves a steep climb which can be undertaken by foot, ponies or palanquins.\\r\\nIt is believed that the journey to Mata Vaishno Devi is not complete without the darshan in Bhairon Temple.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.9669307,\"Long\":74.9831203,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4786\\/thumb\\/Baba Bhaironath Temple_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":15,\"Title\":\"Adhkwari Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":33.778175,\"Long\":76.5761714,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4785\\/thumb\\/Adhkwari Temple_21.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":306,\"Title\":\"Char Chinar\",\"Description\":\"Char chinar which is also well known by the names such as Char Chinari, Ropa Lank or Rupa Lank is situated in the Dal lake. This group of Island consists of 3 individual islands. Two of them have beautiful Chinar trees. This island is marked by the presence of 4 Chinar trees which are situated at each of the four corners of this island.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3926\\/thumb\\/Char Chinar_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":7252,\"Title\":\"Ropeway Gondola\",\"Description\":\"Gondola in Gulmarg is a popular destination visited by almost everyone. The cable car ride in Gondola is of ultimate attraction to the visitors. At an elevation of around 13,500ft above the sea level, the cable ride is divided in 2 parts. The first is from Gulmarg to Kongdoor and the other is from Kongdoor to Apharwat. The project was initially constructed in collaboration with the French company PUMA. It is managed by the Jammu and Kashmir Cable Car Corporation. It is advisable to take a ride during day time to get involved in foggy chilled weather.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Ropeway_Gondola_25897_1538043828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":110,\"Title\":\"Baisaran Valley\",\"Description\":\"Also termed as mini Switzerland, this valley is part of the package designed by pony owners &amp;amp; a must visit place too.It has a perfect settings of vast green valley, magnificent mountains &amp;amp; a perfect sunset.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0030906,\"Long\":75.3342943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1320\\/thumb\\/Baisaran Valley_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":27600,\"Title\":\"kashmir vally\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null}]}},{\"CityId\":11197,\"Title\":\"Gulmarg\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":511112,\"Name\":\"Royal Park Hotel\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.05726\",\"Long\":\"74.40209\",\"Address\":\"Gulmarg Road, Gulmarg, Jammu and Kashmir 193403\"},\"Images\":[],\"CityId\":11197,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1845,\"Title\":\"Vaishno Devi Mandir\",\"Description\":\"Vaishno Devi, also known as Mata Rani, Trikuta and Vaishnavi, is a manifestation of the Hindu Goddess Mata Adi Shakti also known as Chandi\\/Durga. The words maa and mata are commonly used in India for mother, and thus are often used in connection with Vaishno Devi. Vaishno Devi Mandir is a Hindu temple dedicated to the Hindu Goddess, located in Katra at the Trikuta Mountains within the Indian state of Jammu and Kashmir.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.7266016,\"Long\":74.8570259,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/196\\/thumb\\/Vaishno Devi Mandir_162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":94,\"Title\":\"Baba Bhaironath Temple\",\"Description\":\"Bhairon Temple is located at a distance of 1.42 km from the Bhawan. The temple is situated at the highest point of the adjacent hill at an altitude of 6,619 ft. This temple also involves a steep climb which can be undertaken by foot, ponies or palanquins.\\r\\nIt is believed that the journey to Mata Vaishno Devi is not complete without the darshan in Bhairon Temple.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.9669307,\"Long\":74.9831203,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4786\\/thumb\\/Baba Bhaironath Temple_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":15,\"Title\":\"Adhkwari Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":33.778175,\"Long\":76.5761714,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4785\\/thumb\\/Adhkwari Temple_21.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":306,\"Title\":\"Char Chinar\",\"Description\":\"Char chinar which is also well known by the names such as Char Chinari, Ropa Lank or Rupa Lank is situated in the Dal lake. This group of Island consists of 3 individual islands. Two of them have beautiful Chinar trees. This island is marked by the presence of 4 Chinar trees which are situated at each of the four corners of this island.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3926\\/thumb\\/Char Chinar_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":7252,\"Title\":\"Ropeway Gondola\",\"Description\":\"Gondola in Gulmarg is a popular destination visited by almost everyone. The cable car ride in Gondola is of ultimate attraction to the visitors. At an elevation of around 13,500ft above the sea level, the cable ride is divided in 2 parts. The first is from Gulmarg to Kongdoor and the other is from Kongdoor to Apharwat. The project was initially constructed in collaboration with the French company PUMA. It is managed by the Jammu and Kashmir Cable Car Corporation. It is advisable to take a ride during day time to get involved in foggy chilled weather.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Ropeway_Gondola_25897_1538043828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":110,\"Title\":\"Baisaran Valley\",\"Description\":\"Also termed as mini Switzerland, this valley is part of the package designed by pony owners &amp;amp; a must visit place too.It has a perfect settings of vast green valley, magnificent mountains &amp;amp; a perfect sunset.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0030906,\"Long\":75.3342943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1320\\/thumb\\/Baisaran Valley_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":27600,\"Title\":\"kashmir vally\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null}]}},{\"CityId\":20566,\"Title\":\"Pahalgam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":511113,\"Name\":\"Wildflower Villa Resort\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"33.9214941\",\"Long\":\"75.285022\",\"Address\":\"Yainer, Movera, Rafting Point, Pahalgam, Jammu and Kashmir 192126\"},\"Images\":[],\"CityId\":20566,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1845,\"Title\":\"Vaishno Devi Mandir\",\"Description\":\"Vaishno Devi, also known as Mata Rani, Trikuta and Vaishnavi, is a manifestation of the Hindu Goddess Mata Adi Shakti also known as Chandi\\/Durga. The words maa and mata are commonly used in India for mother, and thus are often used in connection with Vaishno Devi. Vaishno Devi Mandir is a Hindu temple dedicated to the Hindu Goddess, located in Katra at the Trikuta Mountains within the Indian state of Jammu and Kashmir.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.7266016,\"Long\":74.8570259,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/196\\/thumb\\/Vaishno Devi Mandir_162.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":94,\"Title\":\"Baba Bhaironath Temple\",\"Description\":\"Bhairon Temple is located at a distance of 1.42 km from the Bhawan. The temple is situated at the highest point of the adjacent hill at an altitude of 6,619 ft. This temple also involves a steep climb which can be undertaken by foot, ponies or palanquins.\\r\\nIt is believed that the journey to Mata Vaishno Devi is not complete without the darshan in Bhairon Temple.\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":32.9669307,\"Long\":74.9831203,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4786\\/thumb\\/Baba Bhaironath Temple_499.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":15,\"Title\":\"Adhkwari Temple\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":13683,\"CityName\":\"Katra\",\"Lat\":33.778175,\"Long\":76.5761714,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/4785\\/thumb\\/Adhkwari Temple_21.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":393,\"Title\":\"Dal Lake\",\"Description\":\"Dal is a lake in Srinagar, the summer capital of Jammu and Kashmir. The urban lake, which is the second largest in the state, is integral to tourism and recreation in Kashmir and is named the Jewel in the crown of Kashmir or Srinagar Jewel.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1105857,\"Long\":74.8682569,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/110\\/thumb\\/Dal Lake_358.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1148,\"Title\":\"Mughal Gardens\",\"Description\":\"Mughal gardens are a group of gardens built by the Mughals in the Persian style of architecture. This style was heavily influenced by the Persian gardens particularly the Charbagh structure. Significant use of rectilinear layouts are made within the walled enclosures.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1314483,\"Long\":74.8828754,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/36_1519810663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1560,\"Title\":\"Shalimar Bagh\",\"Description\":\"Shalimar Bagh is a Mughal garden in Srinagar, linked through a channel to the northeast of Dal Lake, on its right bank located on the outskirts of Srinagar city in Jammu and Kashmir, India. Its other names are Shalimar Garden, Shalimar Bagh, Farah Baksh and Faiz Baksh, and the other famous shore line garden in the vicinity is Nishat Bagh. The Bagh was built by Mughal Emperor Jahangir for his wife Nur Jahan, in 1619. The Bagh is considered the high point of Mughal horticulture. It is now a public park. This time it is also called as crown of Srinagar.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.1499588,\"Long\":74.8733735,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/21_1501171065.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":306,\"Title\":\"Char Chinar\",\"Description\":\"Char chinar which is also well known by the names such as Char Chinari, Ropa Lank or Rupa Lank is situated in the Dal lake. This group of Island consists of 3 individual islands. Two of them have beautiful Chinar trees. This island is marked by the presence of 4 Chinar trees which are situated at each of the four corners of this island.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3926\\/thumb\\/Char Chinar_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":7252,\"Title\":\"Ropeway Gondola\",\"Description\":\"Gondola in Gulmarg is a popular destination visited by almost everyone. The cable car ride in Gondola is of ultimate attraction to the visitors. At an elevation of around 13,500ft above the sea level, the cable ride is divided in 2 parts. The first is from Gulmarg to Kongdoor and the other is from Kongdoor to Apharwat. The project was initially constructed in collaboration with the French company PUMA. It is managed by the Jammu and Kashmir Cable Car Corporation. It is advisable to take a ride during day time to get involved in foggy chilled weather.\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/Ropeway_Gondola_25897_1538043828.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":110,\"Title\":\"Baisaran Valley\",\"Description\":\"Also termed as mini Switzerland, this valley is part of the package designed by pony owners &amp;amp; a must visit place too.It has a perfect settings of vast green valley, magnificent mountains &amp;amp; a perfect sunset.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0030906,\"Long\":75.3342943,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1320\\/thumb\\/Baisaran Valley_543.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":78,\"Title\":\"Aru &amp; Betaab Valley\",\"Description\":\"Aru Valley is a pristine scenic village situated in the region of Trans-Himalaya. Clear blue canopy over the head, misty surroundings, whispers of the native pines and conifer forests and beautiful meadows create a captivating diorama for travelers thronging the place. Though the village is the smallest hill station in the state, but still its breathtaking beauty and interesting activities like trekking, hiking and horse riding make it one of the most popular tourist places to visit in Pahalgam.\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":34.0209903,\"Long\":75.3189885,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/800\\/thumb\\/Aru &amp; Betaab Valley_347.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":27600,\"Title\":\"kashmir vally\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":20566,\"CityName\":\"Pahalgam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null},{\"RefSSId\":1579,\"Title\":\"Shikara Boat Ride\",\"Description\":\"The shikara is a type of wooden boat found on Dal Lake and other water bodies of Srinagar, Jammu &amp; Kashmir, India. Shikaras are of varied sizes and are used for multiple purposes, including transportation of people. A usual shikara seats half-a-dozen people, with the driver paddling at the rear. Like the Venetian gondolas, they are a cultural symbol of Kashmir. Some shikaras are still used for fishing, harvesting aquatic vegetation (usually for fodder), and transport, while most are covered with tarpaulins and are used by tourists. Some are used as floating homes by poor people\",\"CurrencyType\":0,\"CityId\":25897,\"CityName\":\"Srinagar\",\"Lat\":34.0836581,\"Long\":74.7973681,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25897\\/sightseeing\\/47_1514979669.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10147,\"SupplierName\":\"essence tours and travel\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"264490\",\"Title\":\"Airport -  Amritsar \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to the holy city of Amritsar. Arrive at Amritsar airport and proceed by your private transfer to your hotel. Late afternoon proceed Attari Wagah border(subject to operation) to experience the Indo-Pakistan parade and lowering of the flag ceremony.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;visiting the magnificent Durgiana temple, Jallianwala Bagh(Subject to operation), and the divine Golden Temple (Harimandar Sahib). Later visit the Hall Bazar for shopping. Evening is at leisure Later return to your hotel. Overnight at Amritsar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":508507,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264491\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264497\",\"Title\":\"Amritsar - Katra  255 kms 5 hr\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After Brekfast Check out From Hotel And Proceed For katra By Road,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Welcome to Jammu, the winter capital of Indian State Jammu and Kashmir. Arrive at Jammu airport and proceed to Katra, the base point of Vaishnodevi. Arrive at Katra and check into your hotel. Rest of the evening is at leisure. Overnight at Katra.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13683,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511110,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1845,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":94,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264498\",\"Title\":\"Vaishnodevi Darshan \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After early morning breakfast, begin your journey by foot to Vaishnodevi Temple, a trek of total 28 kms. Later return to your hotel in Katra. Rest of the day is at leisure. Overnight in Katra.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13683,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511110,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":15,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264499\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13683,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264508\",\"Title\":\"Jammu - Srinagar By Flight \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After Brekfast Check Out From Hotel Proceed For Jammu Airport By Private Transfer&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;On arrival, meet and greet our tour representative and get an assisted transfer to the hotel. The rest of the time is free at leisure. Srinagar is a major city in India renowned for its valley, lakes, and Mughal gardens. In the evening. &amp;nbsp;get ready to visit Mughal Gardens, which is one of the popular tourist attractions in Srinagar. Shah Jahan marks the apex of Mughal garden architecture and floral design. Explore and behold the beauty of the garden, enjoy photography, and soak in the tranquility. Once done, get back to your houseboat or hotel to enjoy an overnight stay. get back to the hotel for an overnight stay.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511111,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":393,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1148,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1560,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":306,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264509\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264512\",\"Title\":\"Srinagar - Gulmarg 1 hr 29 min (51.0 km) via Srinagar - Tangmarg Rd\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Greet the early morning sun, and get refreshed. Today you are going to visit Gulmarg. On arrival check-in hotel. Later you are going to experience nature at its best. Serene lakes, snaking rivers, gorgeous meadows, sky kissing mountains, pine-scented slopes, and a series of multicolored flowers make Gulmarg a perfect spot to enjoy amidst nature. Also explore cable car which includes 2 phases. Afarwat and kangdoori at own cost. Later back to Hotel. Enjoy an overnight stay at a hotel in Gulmarg.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511112,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7252,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264513\",\"Title\":\"Gulmarg &ndash; Pahalgam (142.2 km) via Srinagar - Gulmarg Rd\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;On the 6th day of your tour, wake up early in the morning, get refreshed, and complete the checkout formalities. Get an assisted transfer to Pahalgam, which is one of the hidden gems in Kashmir. Pahalgam is renowned for its vegetation and is also called the &amp;quot;valley of shepherds&amp;#39;&amp;#39;.On arrival check in hotel. Later on you can visit Aru valley and Betaab valley at own cost. Later back to hotel. Dinner &amp;amp; overnight at Pahalgam hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11197,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264518\",\"Title\":\"Gulmarg - Pahalgam (142.2 km) via Srinagar - Gulmarg Rd 3hr.30 min\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;On the 6th day of your tour, wake up early in the morning, get refreshed, and complete the checkout formalities. Get an assisted transfer to Pahalgam, which is one of the hidden gems in Kashmir. Pahalgam is renowned for its vegetation and is also called the &amp;quot;valley of shepherds&amp;#39;&amp;#39;.On arrival check in hotel. Later on you can visit Aru valley and Betaab valley at own cost. Later back to hotel. Dinner &amp;amp; overnight at Pahalgam hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511113,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":110,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":78,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264519\",\"Title\":\"Pahalgam Sightseeing \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast you can visit Kashmir valley, Baisaran by horses at own cost. Later back to hotel. Dinner and overnight at Pahalgam. Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":511113,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":27600,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264520\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":8,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20566,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264521\",\"Title\":\"Pahalgam - Srinagar - 2 hr 12 min (90.8 km)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast we checkout hotel in Pahalgam and proceed to Srinagar. On Arrival check in Houseboat. Later on explore Shikara ride in Srinagar famous dal lake for 01 Hr. Dinner and overnight at Houseboat.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":414480,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1579,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"264522\",\"Title\":\"Srinagar - Airport\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;Here is the delightful culmination of your 6 days Splendors of Kashmir tour. Enjoy your delicious breakfast, complete your check-out formalities at the hotel and get an assisted transfer to the Airport\\/Station for your journey back home.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25897,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36882\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"36882\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600},{\"From\":\"2022-06-22\",\"To\":\"2022-07-31\",\"Currency\":1,\"priceTripleOcc\":32600,\"priceDoubleOcc\":32600,\"priceSingleOcc\":65200,\"priceExtraBed\":32600,\"priceWithoutBed\":32600,\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":100,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":32600,\"CEB\":32600,\"COSTDO\":32600,\"COSTSO\":65100,\"ACEB\":32600,\"COSTTO\":32600}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Personal expenses shopping. Tips Extra foods.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Any Air or train fare&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Meals other than specified&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Monument fee \\/ Camera fee&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Mineral water \\/ Soft or hard drinks \\/ Starters&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Gondola Ride.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Pony rides in Gulmarg, Pehalgam.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Transport to ARU, BetaabWadi, ChandanWadi. In Pahalgam&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Entry fee of Mughal gardens monuments etc.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Cost incidental to any change in the itinerary\\/ stay on account of flight cancellation due to bad&amp;nbsp;weather,&amp;nbsp; ill health, roadblocks and\\/or any factors beyond control&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;Cost Includes:-&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*&amp;nbsp; Service of our representative at the time of arrival&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*&amp;nbsp; Accommodation for 08 nights&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;* Daily Breakfast+Dinner in Hotels\\/Houseboat.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*&amp;nbsp; Arrival\\/ departure transfer&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*&amp;nbsp; Shikara Ride in Srinagar for 01 Hr.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*&amp;nbsp; Any Toll&amp;nbsp; Parking Also Include&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*&amp;nbsp; 24\\/7 Telephonic Support from the office.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;*&amp;nbsp; All present applicable taxes as on date &amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;Complete transport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;uuml;&amp;nbsp;&amp;nbsp;All Parking and Tolls&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"264490\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[264490],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264491\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[264491],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264497\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[264497],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264498\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[264498],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264499\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[264499],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264508\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[264508],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264509\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[264509],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264512\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[264512],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264513\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[264513],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264518\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[264518],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264519\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[264519],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264520\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[264520],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"264521\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[264521],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"264522\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[264522],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Amritsar,Katra,Srinagar,Gulmarg,Pahalgam','Amritsar,Punjab,Indian Subcontinent,North India,India,Katra,Jammu and kashmir,Srinagar,Gulmarg,Pahalgam',NULL,'974,13683,25897,11197,20566',32600,32600,8,NULL,NULL,NULL,2,'',0,'2022-07-18 00:00:00','2022-07-31 00:00:00','2022-07-31 00:00:00',3,'India','101','2022-08-04 14:15:48','2022-07-18 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'vaishnodevi-with-kashmir',NULL,NULL,NULL,0),(41,38453,1,12577,0,0,0,'',NULL,1,1,0,'{\"package\":{\"TPId\":38453,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/dubai_package_1659427597.jpg\",\"BookingValidUntill\":\"2022-12-20\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;test&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"95000-200000 upto\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Dubai\",\"DestinationPlacesSysId\":8219,\"SourcePlaces\":\"Dubai\",\"SourcePlaceSysId\":8219,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Dubai Package \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10508\",\"SupplierName\":\"test\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"\",\"PackageType\":\"\",\"Validity\":{\"From\":\"2022-08-02\",\"To\":\"2022-12-20\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":8219,\"Title\":\"Dubai\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":358559,\"Name\":\"Abidos Hotel Apartment Dubailand\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.08927687018\",\"Long\":\"55.379289974205\",\"Address\":\"Dubailand Residence Area, P.O. Box 232808, Dubai\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Abidos Hotel Apartment, Dubailand in Dubai, you&#039;ll be close to Zayed University and Dubai Silicon Oasis.  This family-friendly aparthotel is within close proximity of Dubai Outlet Mall and Autism Rocks Arena.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 132 guestrooms, featuring kitchens with full-sized refrigerators\\/freezers and stovetops. Rooms have private balconies. 42-inch LCD televisions with satellite programming provide entertainment, while complimentary wireless Internet access keeps you connected. Conveniences include safes and desks, as well as phones with free local calls.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Be sure to enjoy recreational amenities, including an outdoor pool, a sauna, and a fitness center. This aparthotel also features complimentary wireless Internet access, babysitting\\/childcare (surcharge), and shopping on site. Guests can get to nearby shops on the complimentary shuttle.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Satisfy your appetite at the aparthotel&#039;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of room service (during limited hours). While enjoying a refreshing dip in the aparthotel pool, you can order your favorite drink at the poolside bar.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include dry cleaning\\/laundry services, a 24-hour front desk, and luggage storage. Free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/cdn.grnconnect.com\\/hotels\\/images\\/04\\/3b\\/043b639bfee487adab72d3a076fce75b6e256cf7.jpg\",\"AccoAminitiesMask\":\"1010000100001100000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":456341,\"Name\":\"Any 3 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":514837,\"Name\":\"Crowne Plaza Dubai Apartments - Sheikh Zayed Al Nahyan Road - Dubai - United Arab Emirates\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.2205309\",\"Long\":\"55.2807034\",\"Address\":\"Sheikh Zayed Al Nahyan Road - Trade Centre - Trade Centre 1 - Dubai - United Arab Emirates\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":456344,\"Name\":\"Any 4 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":8219,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2927,\"Title\":\"Aquaventure Water Park And Lost Chambers\",\"Description\":\"Spend a day combining thrills at Aquaventure,the largest water park in the Middle East and Europe and undersea exploration at The Lost Chambers, the largest aquarium in the Middle East and Africa.It is the ultimate water-themed way to escape the heat,\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1319161,\"Long\":55.1183542,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Aquaventure_Water_Park_And_Los_8219_1519027763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":2320,\"Title\":\"Sheikh&#039;s Palace\",\"Description\":\"The luxury palace of Sheikh Mohammad Bin Rashid Al Maktoum (the Vice President and Prime Minister of UAE) also refers as Sheikh Mohammad&amp;rsquo;s Palace and the Emir of Dubai. View of the palace is breath-taking and enjoyable. There are luxury cars of the Emir parked inside the palace and the colorful peacocks on the palace grounds will keep your eyes open for a glimpse.\\r\\nIn 1965 Sheik Rashid&amp;#039;s Zabeel Palace was totally encompassed by sand where it remained solitary in the desert. It was Sheik Rashid&amp;#039;s Palace until he has passed in 1990. Presently advanced structures encompass and dominate this memorable building. Its name has been given to Sheik Mohammed&amp;#039;s new Zabeel Palace and the old Zabeel Palace lies nearly forgotten.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.196865,\"Long\":55.274349,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Sheikh&#039;s_Palace_8219_1517483067.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3122,\"Title\":\"Palm Jumeirah Island\",\"Description\":\"Palm Jumeirah is the world&amp;rsquo;s largest man-made island and is comprised of a two kilometre long trunk (stem), a crown made up of 17 fronds (leafs) and a surrounding crescent (curve). The  tree-shaped Palm Jumeirah was built entirely from sand and rocks only. The island itself is five kilometers by five kilometers.\\r\\nDubai is known for its world&amp;#039;s first: Palm Jumeirah is first artificial island, which looks like a stylised palm tree from SPACE, was originally billed as the Eighth Wonder of the World. Palm Jumeirah is one of the three artificial Palm Islands and its creation is started in 2001. As of November 2011, only Palm Jumeirah has been completed. The island is known for glitzy hotels, shopping malls, posh apartment towers and upmarket global restaurants.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1124,\"Long\":55.139,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Palm_Jumeirah_8219_1517479431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3144,\"Title\":\"Yas Waterworld\",\"Description\":\"Yas Waterworld is a themed water park famous by its heritage and fantasy design. Its theme is based on an original story about a brave girl named Dana, who went on a journey to retrieve a lost PEARL. The theme is obvious in the parks&amp;#039; architecture with its pearl seen from outside the waterpark. All the characters, shops and restaurants are also based on the story.\\r\\nThe Yas water park is one of the world&amp;rsquo;s best water park with a variety of attractions grouped into 4 categories: Adrenaline Rush, Exciting Adventures, Moving &amp;amp; Grooving and Young Fun.\\r\\nSince 2013, this waterpark has played host to the World Flowborading Championships. It also  offers special training sessions to learn to ride the waves on body boards called Yas Flow League.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.4876,\"Long\":54.5996,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Yas_Waterworld_105_1517551825.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":5928,\"Title\":\"Burj Al Arab\",\"Description\":\"The Burj Al Arab(Tower of the Arabs) is a luxury hotel located in Dubai, United Arab Emirates.It is the third tallest hotel in the world (although 39 of its total height is made up of non-occupiable space.Burj Al Arab stands on an artificial island 280 m (920 ft) from Jumeirah Beach and is connected to the mainland by a private curving bridge. The shape of the structure is designed to resemble the sail of a ship. It has a helipad near the roof at a height of 210 m (689 ft) above ground.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/8219\\/sightseeing\\/15422_20120813060112!Burj_Al_Arab,_Dubai,_by_Joi_Ito_Dec2007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":10975,\"Title\":\"Warner Bros Theme Park\",\"Description\":\"Warner Bros. Movie World is a movie studio theme park on the Gold Coast, Queensland,. Its theme is based on the Warner Bros. film studio and related DC Comics properties. It is owned and operated by Village Roadshow via Village Roadshow Theme Parks since the take over from AT&amp;T and WarnerMedia\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/2645_1566974727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3146,\"Title\":\"Sheikh Zayed Grand Mosque\",\"Description\":\"Sheikh Zayed Grand Mosque is third largest mosques in the world and most popular attraction in the city. It was constructed by first President of the UAE, the late Sheikh Zayed bin Sultan Al Nahyan.The Sheikh Zayed Grand Mosque is also the last resting place of its name giver, who died in 2004. \\r\\nIts construction began in 1996, and the mosque was initially opened to the public and prayers in December 2007. It&amp;rsquo;s made up of mostly natural materials such as marble, stone, crystals, gold and semi-precious stones.The hand knotted carpet in the main prayer hall is said to be the largest single piece in the world.\\r\\nIt features 96 marble pillars, 7 chandeliers, 82 domes and able to hold 40,000 worshippers.\\r\\nThe mosque is surrounded by pools, amplifying its beauty. The striking white and gold colours shining in the sun are changed at night by a unique lightning system which reflects the phases of the moon.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.4125,\"Long\":54.475,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Sheikh_Zayed_Grand_Mosque__105_1517554563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":6258,\"Title\":\"Observation Deck at 300\",\"Description\":\"Observation Deck at 300, offering skyline views from the highest point in the city, on the 74th floor of the Jumeirah at Etihad Towers hotel.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.458221,\"Long\":54.321646,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Observation_Deck_at_300_105_1530353883.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3136,\"Title\":\"Ferrari World \",\"Description\":\"Ferrari World Abu Dhabi is an amusement park where the world&#039;s fastest roller coaster, &acirc;&euro;&oelig;Formula Rossa&acirc;&euro;\\u009d  is located. It is the first Ferrari-branded theme park and has the record for the largest space frame structure ever built. The Ferrari World Park  took three years to develop and it officially opened to the public on 4 November 2010. It covers an area of 86,000 square metres. \\r\\nOpen 365 days a year, Ferrari World Abu Dhabi houses numerous high-adrenaline rides featuring roller coasters, thrill rides, family rides, children&#039;s rides and shows also.  Attractions also include two stores, racing events, concerts, luxury hotels and a selection of  Itallian restaurants, makes it the top leisure and entertainment destination. \\r\\nThis was named the &quot;Middle East&#039;s Leading Tourist Attraction&quot; in 2015 and &quot;Middle East&#039;s Leading Theme Park&quot; in 2017 at the World Travel Awards.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.4852,\"Long\":54.6076,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Ferrari_World__105_1517546882.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":6259,\"Title\":\"Al-Hosn Fort\",\"Description\":\"Al-Hosn Fort, also known as the Old Fort or the White Fort, is the oldest building in Abu Dhabi and one of its major historical points of interest. The courtyard and the magnificent tile work over the main northern gate are notable features.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.482237,\"Long\":54.354723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Al-Hosn_Fort_105_1530354084.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null}]}},{\"CityId\":105,\"Title\":\"Abu Dhabi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":129,\"Name\":\"Abu Dhabi Plaza Hotel Apartments\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.4716\",\"Long\":\"54.4048\",\"Address\":\"Najda St. Corner Electra St. \"},\"Images\":{\"Image\":[{\"ImagId\":2774,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_3_t.jpg\"},{\"ImagId\":2775,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_6_t.jpg\"},{\"ImagId\":2776,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_4_t.jpg\"},{\"ImagId\":2777,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_12_t.jpg\"},{\"ImagId\":2778,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_11_t.jpg\"},{\"ImagId\":2779,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_21_t.jpg\"},{\"ImagId\":2780,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_27_t.jpg\"},{\"ImagId\":2781,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_19_t.jpg\"},{\"ImagId\":2782,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_26_t.jpg\"},{\"ImagId\":2783,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_20_t.jpg\"},{\"ImagId\":2784,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_23_t.jpg\"},{\"ImagId\":2785,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_25_t.jpg\"},{\"ImagId\":2786,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_28_t.jpg\"},{\"ImagId\":2787,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_30_t.jpg\"},{\"ImagId\":2788,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_29_t.jpg\"},{\"ImagId\":2789,\"Type\":\"Thumbnail\",\"Order\":0,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_31_t.jpg\"}]},\"CityId\":105,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;A stay at Abu Dhabi Plaza Hotel Apartments places you in the heart of Abu Dhabi, convenient to Capital Garden and Abu Dhabi Mall. This 4-star apartment is within close proximity of Abu Dhabi Commercial Bank and Madinat Zayed Shopping Center.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 216 air-conditioned rooms featuring kitchens with refrigerators and ovens. LCD televisions with cable programming provide entertainment, while complimentary wireless Internet access keeps you connected. Conveniences include safes and microwaves, and housekeeping is provided daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Relax on the private beach or enjoy other recreational amenities such as a health club and an outdoor pool. This apartment also features complimentary wireless Internet access and concierge services.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a meal at a restaurant or in a coffee shop\\/caf&eacute;. Or stay in and take advantage of the apartment&amp;apos;s room service (during limited hours). Mingle with other guests at a complimentary reception, held daily.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include limo\\/town car service, express check-in, and express check-out.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/8000000\\/7910000\\/7900300\\/7900221\\/7900221_3_t.jpg\",\"AccoAminitiesMask\":\"111110000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":4,\"Title\":\"Gym\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":456342,\"Name\":\"Any 5 Star Hotel\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":105,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null,\"RoomTypeName\":\" SUPER DELUXE\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2927,\"Title\":\"Aquaventure Water Park And Lost Chambers\",\"Description\":\"Spend a day combining thrills at Aquaventure,the largest water park in the Middle East and Europe and undersea exploration at The Lost Chambers, the largest aquarium in the Middle East and Africa.It is the ultimate water-themed way to escape the heat,\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1319161,\"Long\":55.1183542,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Aquaventure_Water_Park_And_Los_8219_1519027763.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3120,\"Title\":\"Burj Khalifa\",\"Description\":\"Burj Khalifa is the tallest building in the world with height of 828 meters. It is the most popular among tourists attraction in Dubai, initially named as Burj Dubai. One of the building&amp;rsquo;s biggest attractions is its observatory deck. It is located on the 124th level of the building.\\r\\nThere are 163 floors with 58 functional elevators, 2957 parking spaces, 304 hotels and 900 apartments. The building was completed in 2010. The total cost of building Burj Khalifa was 1.5 billion. The design of the tower is inspired by the shape of Hymenocallis flower. \\r\\nBurj Khalifa has broken two impressive records: &amp;ldquo;tallest structure&amp;rdquo; and &amp;ldquo;tallest free-standing structure&amp;rdquo; other than the world&amp;rsquo;s &amp;ldquo;tallest building&amp;rdquo;. The tower also holds world records for  &amp;lsquo;highest occupied floor&amp;rsquo;, &amp;lsquo;highest number of stories&amp;rsquo;, &amp;lsquo;longest travel distance elevators&amp;rsquo;, &amp;lsquo;tallest service elevator&amp;rsquo; and &amp;lsquo;second highest outdoor observatory deck&amp;rsquo;.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1972,\"Long\":55.2744,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Burj_Khalifa_8219_1517481430.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":2320,\"Title\":\"Sheikh&#039;s Palace\",\"Description\":\"The luxury palace of Sheikh Mohammad Bin Rashid Al Maktoum (the Vice President and Prime Minister of UAE) also refers as Sheikh Mohammad&amp;rsquo;s Palace and the Emir of Dubai. View of the palace is breath-taking and enjoyable. There are luxury cars of the Emir parked inside the palace and the colorful peacocks on the palace grounds will keep your eyes open for a glimpse.\\r\\nIn 1965 Sheik Rashid&amp;#039;s Zabeel Palace was totally encompassed by sand where it remained solitary in the desert. It was Sheik Rashid&amp;#039;s Palace until he has passed in 1990. Presently advanced structures encompass and dominate this memorable building. Its name has been given to Sheik Mohammed&amp;#039;s new Zabeel Palace and the old Zabeel Palace lies nearly forgotten.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.196865,\"Long\":55.274349,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Sheikh&#039;s_Palace_8219_1517483067.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3122,\"Title\":\"Palm Jumeirah Island\",\"Description\":\"Palm Jumeirah is the world&amp;rsquo;s largest man-made island and is comprised of a two kilometre long trunk (stem), a crown made up of 17 fronds (leafs) and a surrounding crescent (curve). The  tree-shaped Palm Jumeirah was built entirely from sand and rocks only. The island itself is five kilometers by five kilometers.\\r\\nDubai is known for its world&amp;#039;s first: Palm Jumeirah is first artificial island, which looks like a stylised palm tree from SPACE, was originally billed as the Eighth Wonder of the World. Palm Jumeirah is one of the three artificial Palm Islands and its creation is started in 2001. As of November 2011, only Palm Jumeirah has been completed. The island is known for glitzy hotels, shopping malls, posh apartment towers and upmarket global restaurants.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.1124,\"Long\":55.139,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Palm_Jumeirah_8219_1517479431.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3144,\"Title\":\"Yas Waterworld\",\"Description\":\"Yas Waterworld is a themed water park famous by its heritage and fantasy design. Its theme is based on an original story about a brave girl named Dana, who went on a journey to retrieve a lost PEARL. The theme is obvious in the parks&amp;#039; architecture with its pearl seen from outside the waterpark. All the characters, shops and restaurants are also based on the story.\\r\\nThe Yas water park is one of the world&amp;rsquo;s best water park with a variety of attractions grouped into 4 categories: Adrenaline Rush, Exciting Adventures, Moving &amp;amp; Grooving and Young Fun.\\r\\nSince 2013, this waterpark has played host to the World Flowborading Championships. It also  offers special training sessions to learn to ride the waves on body boards called Yas Flow League.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.4876,\"Long\":54.5996,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Yas_Waterworld_105_1517551825.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3130,\"Title\":\"Desert Safari Dubai\",\"Description\":\"Dubai is a wide playground for adventure enthusiasts. Striking the desert sands in a monstrous 4x4 SUV is where the enjoyement begins. A Dubai desert safari is the ultimate travel experience complete with dune bashing, camel rides and a mouth-watering BBQ dinner accompanied by a belly dancing performance. \\r\\nAdmire the spectacular scenery of the Red Dunes of Al Hibab and spend an adventurous 30 minutes of hard dune bashing. Later reach the camp where one should experience a short camel trek, try out the traditional henna hand decoration of the East, sand ski and enjoy a show consisting of belly dancing, and amazing Tanoura dancing. Other activities at the camp include quad biking, hookah, a sand art display, Arabic coffee, falcon photography, and a carpet stall. \\r\\nDont forget to get a camera  when going to a desert safari in Dubai as the views are breath taking and awesome.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":25.11854,\"Long\":55.207517,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Desert_Safari_Dubai_8219_1517577772.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":5928,\"Title\":\"Burj Al Arab\",\"Description\":\"The Burj Al Arab(Tower of the Arabs) is a luxury hotel located in Dubai, United Arab Emirates.It is the third tallest hotel in the world (although 39 of its total height is made up of non-occupiable space.Burj Al Arab stands on an artificial island 280 m (920 ft) from Jumeirah Beach and is connected to the mainland by a private curving bridge. The shape of the structure is designed to resemble the sail of a ship. It has a helipad near the roof at a height of 210 m (689 ft) above ground.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/8219\\/sightseeing\\/15422_20120813060112!Burj_Al_Arab,_Dubai,_by_Joi_Ito_Dec2007.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":2775,\"Title\":\"Dhow Cruise\",\"Description\":\"Dhow Cruise is a novel experience,which you cannot miss when in Dubai.Enjoy dinner on a Dhow Cruise with the facinating lights of Dubai creek with music and belly dancing.\",\"CurrencyType\":0,\"CityId\":8219,\"CityName\":\"Dubai\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/8219\\/sightseeing\\/Dhow_Cruise_8219_1519026799.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":10975,\"Title\":\"Warner Bros Theme Park\",\"Description\":\"Warner Bros. Movie World is a movie studio theme park on the Gold Coast, Queensland,. Its theme is based on the Warner Bros. film studio and related DC Comics properties. It is owned and operated by Village Roadshow via Village Roadshow Theme Parks since the take over from AT&amp;T and WarnerMedia\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/2645_1566974727.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3146,\"Title\":\"Sheikh Zayed Grand Mosque\",\"Description\":\"Sheikh Zayed Grand Mosque is third largest mosques in the world and most popular attraction in the city. It was constructed by first President of the UAE, the late Sheikh Zayed bin Sultan Al Nahyan.The Sheikh Zayed Grand Mosque is also the last resting place of its name giver, who died in 2004. \\r\\nIts construction began in 1996, and the mosque was initially opened to the public and prayers in December 2007. It&amp;rsquo;s made up of mostly natural materials such as marble, stone, crystals, gold and semi-precious stones.The hand knotted carpet in the main prayer hall is said to be the largest single piece in the world.\\r\\nIt features 96 marble pillars, 7 chandeliers, 82 domes and able to hold 40,000 worshippers.\\r\\nThe mosque is surrounded by pools, amplifying its beauty. The striking white and gold colours shining in the sun are changed at night by a unique lightning system which reflects the phases of the moon.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.4125,\"Long\":54.475,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Sheikh_Zayed_Grand_Mosque__105_1517554563.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":6258,\"Title\":\"Observation Deck at 300\",\"Description\":\"Observation Deck at 300, offering skyline views from the highest point in the city, on the 74th floor of the Jumeirah at Etihad Towers hotel.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.458221,\"Long\":54.321646,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Observation_Deck_at_300_105_1530353883.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":3136,\"Title\":\"Ferrari World \",\"Description\":\"Ferrari World Abu Dhabi is an amusement park where the world&#039;s fastest roller coaster, &acirc;&euro;&oelig;Formula Rossa&acirc;&euro;\\u009d  is located. It is the first Ferrari-branded theme park and has the record for the largest space frame structure ever built. The Ferrari World Park  took three years to develop and it officially opened to the public on 4 November 2010. It covers an area of 86,000 square metres. \\r\\nOpen 365 days a year, Ferrari World Abu Dhabi houses numerous high-adrenaline rides featuring roller coasters, thrill rides, family rides, children&#039;s rides and shows also.  Attractions also include two stores, racing events, concerts, luxury hotels and a selection of  Itallian restaurants, makes it the top leisure and entertainment destination. \\r\\nThis was named the &quot;Middle East&#039;s Leading Tourist Attraction&quot; in 2015 and &quot;Middle East&#039;s Leading Theme Park&quot; in 2017 at the World Travel Awards.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.4852,\"Long\":54.6076,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Ferrari_World__105_1517546882.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null},{\"RefSSId\":6259,\"Title\":\"Al-Hosn Fort\",\"Description\":\"Al-Hosn Fort, also known as the Old Fort or the White Fort, is the oldest building in Abu Dhabi and one of its major historical points of interest. The courtyard and the magnificent tile work over the main northern gate are notable features.\",\"CurrencyType\":0,\"CityId\":105,\"CityName\":\"Abu Dhabi\",\"Lat\":24.482237,\"Long\":54.354723,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/105\\/sightseeing\\/Al-Hosn_Fort_105_1530354084.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10508,\"SupplierName\":\"test\",\"priceaditionals\":null}]}}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"274996\",\"Title\":\"Arrival TO Dubai\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;test&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":358559,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2927,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2320,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3122,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"274998\",\"Title\":\"local Visit Dubai \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;test&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":358559,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":456341,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514837,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"},{\"IsIncluded\":false,\"Id\":456344,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3144,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3130,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3120,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":5928,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2775,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":10975,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275000\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":8219,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275002\",\"Title\":\"welcome to abu dhabi\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;test&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":129,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":456342,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"SUPER DELUXE\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3146,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6258,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3136,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6259,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275004\",\"Title\":\"back to home \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;after&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":105,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38453\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"110400.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":110400,\"priceDoubleOcc\":\"110400.00\",\"priceSingleOcc\":122400,\"priceExtraBed\":\"110400.00\",\"priceWithoutBed\":\"110400.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":110400,\"CEB\":110400,\"COSTDO\":110400,\"COSTSO\":122400,\"ACEB\":110400,\"COSTTO\":110400},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":110400,\"priceDoubleOcc\":\"110400.00\",\"priceSingleOcc\":122400,\"priceExtraBed\":\"110400.00\",\"priceWithoutBed\":\"110400.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":110400,\"CEB\":110400,\"COSTDO\":110400,\"COSTSO\":122400,\"ACEB\":110400,\"COSTTO\":110400},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":110400,\"priceDoubleOcc\":\"110400.00\",\"priceSingleOcc\":122400,\"priceExtraBed\":\"110400.00\",\"priceWithoutBed\":\"110400.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":110400,\"CEB\":110400,\"COSTDO\":110400,\"COSTSO\":122400,\"ACEB\":110400,\"COSTTO\":110400},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":110400,\"priceDoubleOcc\":\"110400.00\",\"priceSingleOcc\":122400,\"priceExtraBed\":\"110400.00\",\"priceWithoutBed\":\"110400.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":110400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":110400,\"CEB\":110400,\"COSTDO\":110400,\"COSTSO\":122400,\"ACEB\":110400,\"COSTTO\":110400},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":112800,\"priceDoubleOcc\":\"114000.00\",\"priceSingleOcc\":126000,\"priceExtraBed\":\"110400.00\",\"priceWithoutBed\":\"110400.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":114000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":110400,\"CEB\":110400,\"COSTDO\":114000,\"COSTSO\":126000,\"ACEB\":110400,\"COSTTO\":110400},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":112800,\"priceDoubleOcc\":\"114000.00\",\"priceSingleOcc\":126000,\"priceExtraBed\":\"110400.00\",\"priceWithoutBed\":\"110400.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":114000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":110400,\"CEB\":110400,\"COSTDO\":114000,\"COSTSO\":126000,\"ACEB\":110400,\"COSTTO\":110400},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":111550,\"priceDoubleOcc\":\"111550.00\",\"priceSingleOcc\":223100,\"priceExtraBed\":\"111550.00\",\"priceWithoutBed\":\"111550.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":111550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":111550,\"CEB\":111550,\"COSTDO\":111550,\"COSTSO\":223100,\"ACEB\":111550,\"COSTTO\":111550},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":111550,\"priceDoubleOcc\":\"111550.00\",\"priceSingleOcc\":223100,\"priceExtraBed\":\"111550.00\",\"priceWithoutBed\":\"111550.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":111550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":111550,\"CEB\":111550,\"COSTDO\":111550,\"COSTSO\":223100,\"ACEB\":111550,\"COSTTO\":111550},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":111550,\"priceDoubleOcc\":\"111550.00\",\"priceSingleOcc\":223100,\"priceExtraBed\":\"111550.00\",\"priceWithoutBed\":\"111550.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":111550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":111550,\"CEB\":111550,\"COSTDO\":111550,\"COSTSO\":223100,\"ACEB\":111550,\"COSTTO\":111550},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":111550,\"priceDoubleOcc\":\"111550.00\",\"priceSingleOcc\":223100,\"priceExtraBed\":\"111550.00\",\"priceWithoutBed\":\"111550.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":111550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":111550,\"CEB\":111550,\"COSTDO\":111550,\"COSTSO\":223100,\"ACEB\":111550,\"COSTTO\":111550},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":111550,\"priceDoubleOcc\":\"111550.00\",\"priceSingleOcc\":223100,\"priceExtraBed\":\"111550.00\",\"priceWithoutBed\":\"111550.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":111550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":111550,\"CEB\":111550,\"COSTDO\":111550,\"COSTSO\":223100,\"ACEB\":111550,\"COSTTO\":111550},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":111550,\"priceDoubleOcc\":\"111550.00\",\"priceSingleOcc\":223100,\"priceExtraBed\":\"111550.00\",\"priceWithoutBed\":\"111550.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":111550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":111550,\"CEB\":111550,\"COSTDO\":111550,\"COSTSO\":223100,\"ACEB\":111550,\"COSTTO\":111550}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38454\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"117600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":117600,\"priceDoubleOcc\":\"117600.00\",\"priceSingleOcc\":235200,\"priceExtraBed\":\"117600.00\",\"priceWithoutBed\":\"117600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":117600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":117600,\"CEB\":117600,\"COSTDO\":117600,\"COSTSO\":235200,\"ACEB\":117600,\"COSTTO\":117600},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":117600,\"priceDoubleOcc\":\"117600.00\",\"priceSingleOcc\":235200,\"priceExtraBed\":\"117600.00\",\"priceWithoutBed\":\"117600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":117600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":117600,\"CEB\":117600,\"COSTDO\":117600,\"COSTSO\":235200,\"ACEB\":117600,\"COSTTO\":117600},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":117600,\"priceDoubleOcc\":\"117600.00\",\"priceSingleOcc\":235200,\"priceExtraBed\":\"117600.00\",\"priceWithoutBed\":\"117600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":117600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":117600,\"CEB\":117600,\"COSTDO\":117600,\"COSTSO\":235200,\"ACEB\":117600,\"COSTTO\":117600},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":117600,\"priceDoubleOcc\":\"117600.00\",\"priceSingleOcc\":235200,\"priceExtraBed\":\"117600.00\",\"priceWithoutBed\":\"117600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":117600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":117600,\"CEB\":117600,\"COSTDO\":117600,\"COSTSO\":235200,\"ACEB\":117600,\"COSTTO\":117600},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":117600,\"priceDoubleOcc\":\"117600.00\",\"priceSingleOcc\":235200,\"priceExtraBed\":\"117600.00\",\"priceWithoutBed\":\"117600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":117600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":117600,\"CEB\":117600,\"COSTDO\":117600,\"COSTSO\":235200,\"ACEB\":117600,\"COSTTO\":117600},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":117600,\"priceDoubleOcc\":\"117600.00\",\"priceSingleOcc\":235200,\"priceExtraBed\":\"117600.00\",\"priceWithoutBed\":\"117600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":20,\"ExcludedPercent\":\"0\",\"PricePerPerson\":117600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":117600,\"CEB\":117600,\"COSTDO\":117600,\"COSTSO\":235200,\"ACEB\":117600,\"COSTTO\":117600},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":113850,\"priceDoubleOcc\":\"113850.00\",\"priceSingleOcc\":227700,\"priceExtraBed\":\"113850.00\",\"priceWithoutBed\":\"113850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":113850,\"CEB\":113850,\"COSTDO\":113850,\"COSTSO\":227700,\"ACEB\":113850,\"COSTTO\":113850},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":113850,\"priceDoubleOcc\":\"113850.00\",\"priceSingleOcc\":227700,\"priceExtraBed\":\"113850.00\",\"priceWithoutBed\":\"113850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":113850,\"CEB\":113850,\"COSTDO\":113850,\"COSTSO\":227700,\"ACEB\":113850,\"COSTTO\":113850},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":113850,\"priceDoubleOcc\":\"113850.00\",\"priceSingleOcc\":227700,\"priceExtraBed\":\"113850.00\",\"priceWithoutBed\":\"113850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":113850,\"CEB\":113850,\"COSTDO\":113850,\"COSTSO\":227700,\"ACEB\":113850,\"COSTTO\":113850},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":113850,\"priceDoubleOcc\":\"113850.00\",\"priceSingleOcc\":227700,\"priceExtraBed\":\"113850.00\",\"priceWithoutBed\":\"113850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":113850,\"CEB\":113850,\"COSTDO\":113850,\"COSTSO\":227700,\"ACEB\":113850,\"COSTTO\":113850},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":113850,\"priceDoubleOcc\":\"113850.00\",\"priceSingleOcc\":227700,\"priceExtraBed\":\"113850.00\",\"priceWithoutBed\":\"113850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":113850,\"CEB\":113850,\"COSTDO\":113850,\"COSTSO\":227700,\"ACEB\":113850,\"COSTTO\":113850},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":113850,\"priceDoubleOcc\":\"113850.00\",\"priceSingleOcc\":227700,\"priceExtraBed\":\"113850.00\",\"priceWithoutBed\":\"113850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":113850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":113850,\"CEB\":113850,\"COSTDO\":113850,\"COSTSO\":227700,\"ACEB\":113850,\"COSTTO\":113850}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38453\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"105800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":105800,\"priceDoubleOcc\":\"105800.00\",\"priceSingleOcc\":117300,\"priceExtraBed\":\"105800.00\",\"priceWithoutBed\":\"105800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":105800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":105800,\"CEB\":105800,\"COSTDO\":105800,\"COSTSO\":117300,\"ACEB\":105800,\"COSTTO\":105800},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":105800,\"priceDoubleOcc\":\"105800.00\",\"priceSingleOcc\":117300,\"priceExtraBed\":\"105800.00\",\"priceWithoutBed\":\"105800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":105800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":105800,\"CEB\":105800,\"COSTDO\":105800,\"COSTSO\":117300,\"ACEB\":105800,\"COSTTO\":105800},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":105800,\"priceDoubleOcc\":\"105800.00\",\"priceSingleOcc\":117300,\"priceExtraBed\":\"105800.00\",\"priceWithoutBed\":\"105800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":105800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":105800,\"CEB\":105800,\"COSTDO\":105800,\"COSTSO\":117300,\"ACEB\":105800,\"COSTTO\":105800},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":105800,\"priceDoubleOcc\":\"105800.00\",\"priceSingleOcc\":117300,\"priceExtraBed\":\"105800.00\",\"priceWithoutBed\":\"105800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":105800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":105800,\"CEB\":105800,\"COSTDO\":105800,\"COSTSO\":117300,\"ACEB\":105800,\"COSTTO\":105800},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":108100,\"priceDoubleOcc\":\"109250.00\",\"priceSingleOcc\":120750,\"priceExtraBed\":\"105800.00\",\"priceWithoutBed\":\"105800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":109250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":105800,\"CEB\":105800,\"COSTDO\":109250,\"COSTSO\":120750,\"ACEB\":105800,\"COSTTO\":105800},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":108100,\"priceDoubleOcc\":\"109250.00\",\"priceSingleOcc\":120750,\"priceExtraBed\":\"105800.00\",\"priceWithoutBed\":\"105800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":109250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":105800,\"CEB\":105800,\"COSTDO\":109250,\"COSTSO\":120750,\"ACEB\":105800,\"COSTTO\":105800},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":106700,\"priceDoubleOcc\":\"106700.00\",\"priceSingleOcc\":213400,\"priceExtraBed\":\"106700.00\",\"priceWithoutBed\":\"106700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106700,\"CEB\":106700,\"COSTDO\":106700,\"COSTSO\":213400,\"ACEB\":106700,\"COSTTO\":106700},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":106700,\"priceDoubleOcc\":\"106700.00\",\"priceSingleOcc\":213400,\"priceExtraBed\":\"106700.00\",\"priceWithoutBed\":\"106700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106700,\"CEB\":106700,\"COSTDO\":106700,\"COSTSO\":213400,\"ACEB\":106700,\"COSTTO\":106700},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":106700,\"priceDoubleOcc\":\"106700.00\",\"priceSingleOcc\":213400,\"priceExtraBed\":\"106700.00\",\"priceWithoutBed\":\"106700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106700,\"CEB\":106700,\"COSTDO\":106700,\"COSTSO\":213400,\"ACEB\":106700,\"COSTTO\":106700},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":106700,\"priceDoubleOcc\":\"106700.00\",\"priceSingleOcc\":213400,\"priceExtraBed\":\"106700.00\",\"priceWithoutBed\":\"106700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106700,\"CEB\":106700,\"COSTDO\":106700,\"COSTSO\":213400,\"ACEB\":106700,\"COSTTO\":106700},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":106700,\"priceDoubleOcc\":\"106700.00\",\"priceSingleOcc\":213400,\"priceExtraBed\":\"106700.00\",\"priceWithoutBed\":\"106700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106700,\"CEB\":106700,\"COSTDO\":106700,\"COSTSO\":213400,\"ACEB\":106700,\"COSTTO\":106700},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":106700,\"priceDoubleOcc\":\"106700.00\",\"priceSingleOcc\":213400,\"priceExtraBed\":\"106700.00\",\"priceWithoutBed\":\"106700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":106700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":106700,\"CEB\":106700,\"COSTDO\":106700,\"COSTSO\":213400,\"ACEB\":106700,\"COSTTO\":106700}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38454\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"112700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":112700,\"priceDoubleOcc\":\"112700.00\",\"priceSingleOcc\":225400,\"priceExtraBed\":\"112700.00\",\"priceWithoutBed\":\"112700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":112700,\"CEB\":112700,\"COSTDO\":112700,\"COSTSO\":225400,\"ACEB\":112700,\"COSTTO\":112700},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":112700,\"priceDoubleOcc\":\"112700.00\",\"priceSingleOcc\":225400,\"priceExtraBed\":\"112700.00\",\"priceWithoutBed\":\"112700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":112700,\"CEB\":112700,\"COSTDO\":112700,\"COSTSO\":225400,\"ACEB\":112700,\"COSTTO\":112700},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":112700,\"priceDoubleOcc\":\"112700.00\",\"priceSingleOcc\":225400,\"priceExtraBed\":\"112700.00\",\"priceWithoutBed\":\"112700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":112700,\"CEB\":112700,\"COSTDO\":112700,\"COSTSO\":225400,\"ACEB\":112700,\"COSTTO\":112700},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":112700,\"priceDoubleOcc\":\"112700.00\",\"priceSingleOcc\":225400,\"priceExtraBed\":\"112700.00\",\"priceWithoutBed\":\"112700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":112700,\"CEB\":112700,\"COSTDO\":112700,\"COSTSO\":225400,\"ACEB\":112700,\"COSTTO\":112700},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":112700,\"priceDoubleOcc\":\"112700.00\",\"priceSingleOcc\":225400,\"priceExtraBed\":\"112700.00\",\"priceWithoutBed\":\"112700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":112700,\"CEB\":112700,\"COSTDO\":112700,\"COSTSO\":225400,\"ACEB\":112700,\"COSTTO\":112700},{\"From\":\"2022-08-02\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":112700,\"priceDoubleOcc\":\"112700.00\",\"priceSingleOcc\":225400,\"priceExtraBed\":\"112700.00\",\"priceWithoutBed\":\"112700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":112700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":112700,\"CEB\":112700,\"COSTDO\":112700,\"COSTSO\":225400,\"ACEB\":112700,\"COSTTO\":112700},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":108900,\"priceDoubleOcc\":\"108900.00\",\"priceSingleOcc\":217800,\"priceExtraBed\":\"108900.00\",\"priceWithoutBed\":\"108900.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":108900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108900,\"CEB\":108900,\"COSTDO\":108900,\"COSTSO\":217800,\"ACEB\":108900,\"COSTTO\":108900},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":108900,\"priceDoubleOcc\":\"108900.00\",\"priceSingleOcc\":217800,\"priceExtraBed\":\"108900.00\",\"priceWithoutBed\":\"108900.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":108900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108900,\"CEB\":108900,\"COSTDO\":108900,\"COSTSO\":217800,\"ACEB\":108900,\"COSTTO\":108900},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":108900,\"priceDoubleOcc\":\"108900.00\",\"priceSingleOcc\":217800,\"priceExtraBed\":\"108900.00\",\"priceWithoutBed\":\"108900.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":108900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108900,\"CEB\":108900,\"COSTDO\":108900,\"COSTSO\":217800,\"ACEB\":108900,\"COSTTO\":108900},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":108900,\"priceDoubleOcc\":\"108900.00\",\"priceSingleOcc\":217800,\"priceExtraBed\":\"108900.00\",\"priceWithoutBed\":\"108900.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":108900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108900,\"CEB\":108900,\"COSTDO\":108900,\"COSTSO\":217800,\"ACEB\":108900,\"COSTTO\":108900},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":108900,\"priceDoubleOcc\":\"108900.00\",\"priceSingleOcc\":217800,\"priceExtraBed\":\"108900.00\",\"priceWithoutBed\":\"108900.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":108900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108900,\"CEB\":108900,\"COSTDO\":108900,\"COSTSO\":217800,\"ACEB\":108900,\"COSTTO\":108900},{\"From\":\"2022-12-01\",\"To\":\"2022-12-20\",\"Currency\":1,\"priceTripleOcc\":108900,\"priceDoubleOcc\":\"108900.00\",\"priceSingleOcc\":217800,\"priceExtraBed\":\"108900.00\",\"priceWithoutBed\":\"108900.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":10,\"ExcludedPercent\":\"0\",\"PricePerPerson\":108900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":108900,\"CEB\":108900,\"COSTDO\":108900,\"COSTSO\":217800,\"ACEB\":108900,\"COSTTO\":108900}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"274996\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[274996],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"274998\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[274998],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275000\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[275000],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275002\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[275002],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275004\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[275004],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Dubai,Abu Dhabi','Dubai,Middle East,United Arab Emirates,Abu Dhabi',NULL,'8219,105',105800,117600,3,NULL,NULL,NULL,2,'',0,'2022-08-02 00:00:00','2022-12-20 00:00:00','2022-12-20 00:00:00',3,'United Arab Emirates','228','2022-08-04 14:15:51','2022-08-02 00:00:00',1,1,'0','0','0',NULL,NULL,NULL,NULL,'dubai-package',NULL,NULL,NULL,0),(42,38777,1,12577,1,0,0,'Family,Hill Station,Romantic,Leisure,Private',NULL,1,1,0,'{\"package\":{\"TPId\":38777,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/himachal_all_over_diwali_special_-_i_1662104451.jpg\",\"BookingValidUntill\":\"2022-11-05\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Himachal Pradesh&lt;\\/strong&gt; is a northern Indian state in the Himalayas. It&amp;#39;s home to scenic mountain towns and resorts such as Dalhousie. Host to the Dalai Lama, Himachal Pradesh has a strong Tibetan presence. This is reflected in its Buddhist temples and monasteries, as well as its vibrant Tibetan New Year celebrations. The region is also well known for its trekking, climbing and skiing areas.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Amritsar\",\"DestinationPlacesSysId\":974,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Himachal All Over Diwali Special - I\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10564\",\"SupplierName\":\"Royal Sunshine Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Sightseeing,Car On Disposal\",\"PackageType\":\"Family,Hill Station,Romantic,Leisure,Private\",\"Validity\":{\"From\":\"2022-09-02\",\"To\":\"2022-11-05\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":1,\"Title\":\"Shimla\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":515249,\"Name\":\"Golden Oak Shimla\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.0894843\",\"Long\":\"77.136126\",\"Address\":\"Sandal, Chakkar, Shimla, Himachal Pradesh 171004, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":515251,\"Name\":\"Golden Oak Shimla\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"31.0894843\",\"Long\":\"77.136126\",\"Address\":\"Sandal, Chakkar, Shimla, Himachal Pradesh 171004, India\"},\"Images\":[],\"CityId\":1,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":31166,\"Title\":\"Pinjore Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":601,\"Title\":\"Green Valley\",\"Description\":\"The Green valley is Gods gift to the wonderful and charming city of Shimla.It is a pollution constant traffic jams and incessant noise free place.The beauty of this place is so mesmerising which makes the tourist forget everything else and simply bask in the sheer joy of being in natures lap.This is the place where tourists loves to stop to enjoy the lush green environment.The is also an ideal place to capture some fantastic pictures. The tall mountains with greenery all around and the distant snow-capped Himalayan ranges make for a perfect background to click amazing snapshots.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1018284,\"Long\":77.2622804,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Green_Valley_1_1518275651.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1680,\"Title\":\"Himachal State Museum\",\"Description\":\"The State Museum was an old Victorian mansion carefully altered to adapt it to the museum.It is located on the Mall Road and has unique collectibles like ancient coins paintings and other handicraft items the aesthetics of which are influenced by the Pahari form of art. It  was opened on January 26 1974 to collect and preserve the ancient artistic historical archaeological and ethnological human works in order that the future generation may have access to the cultural treasure it has inherited from the past.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046015,\"Long\":77.1731038,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/State_Museum_1_1518245691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2622,\"Title\":\"Sunder Nagar Lake\",\"Description\":\"Sunder Nagar is city and municupal council in Mandi district. Formerly it was a princely state, known as Suket. Sunder Nagar is located in Mandi district. The waters of Beas and Sutlej river given it a man-made lake. The Sunder Nager is mixture of Himachalis and Punjabis people. There are lot of scenic beauties to see like sunset across the lake.\\r\\nSunder Nagar is famous for lake. Sunder Nagar is also emerged as an educational hub. Many government college are open there.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.5332,\"Long\":76.8922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Sunder_Nagar_Lake_16593_1521186767.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1303,\"Title\":\"Pandoh Dam\",\"Description\":\"Pandoh Dam lies in the Mandi district of Himachal Pradesh, which is constructed on Beas River. The primary purpose of Pandoh Dam is hydroelectric power generation.The visitors travelling to Manali get a perfect location near the dam to click great pictures as the location is highly picturesque and full of lush greenery. Rafting is also done here, in the lower bed on a commercial basis.The place is an ideal spot for picnics as the surrounding area of the dam is somewhat isolated and hence provides the necessary tranquillity and serenity to the visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Pandoh_Dam_16593_1518506375.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him&Auml;\\u0081chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1862,\"Title\":\"Vashishti Baths\",\"Description\":\"Vashisht Baths are natural hot water springs accompanied by beautiful sanstone temples.\\r\\nSituated on the banks of the gurgling Beas River in the picturesque hill station of Manali.\\r\\nthese baths are named after the great sage Vashisht, who was a teacher and adviser to Lord\\r\\nRama. Surrounded by pine trees and luxuriant vegetation, these are natural sulphur springs\\r\\nthat contains medicinal values and can cure skin related ailments. Elegant Turkish style\\r\\nshowers are connected to the springs through pipes for the convenience of visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2441506,\"Long\":77.1899427,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Vashishti_Baths_16593_1522070945.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1850,\"Title\":\"Van Vihar National Park\",\"Description\":\"Van Vihar National Park is one of the most frequent places to visit in Manali, which attracts visitors mainly because of its ideal location,on the Mall road in Manali. It is an amazing place where all the members of the family could actually chill out and enjoy some wonderfull moments.Specially children love to visit this park as the park have wonderfull rides and perfect environment.There are concrete as well as wooden benches in the park where you can sit for hours together and marvel at the beauty of nature. There is a man made in the park where boating is enjoyed by adults as well as the children.It is the perfect place that caters to all,that every visitor coming here is looking for.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Van_Vihar_National_Park_16593_1518501309.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1414,\"Title\":\"Rahala Falls\",\"Description\":\"Rahala Falls at a height of 8,500 ft. is a beautiful waterfall. It lies on the way from Manali to Rohtang Pass.Rahala Falls are the result of melting glaciers.It is surrounded by a dense forest of birch and deodar trees and showcases the snow capped Himalayan peaks in the background. The waterfall is a famous tourist attraction in the state of Himachal Pradesh.It is a natural spot where tourist can view the natural beauty. The fresh and aromatic air creates a sense of peace and relaxation.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rahala_Falls_16593_1518504158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":31167,\"Title\":\"Palampur Tea Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3515,\"Title\":\"Chamunda Devi Ji Temple\",\"Description\":\"Chamunda Devi Temple is commonly known as Chamunda Nandikeshwar Dham, it is a famous temple of Goddess Shakti who is the goddess of power. This famous shrine is located on the bank of Ban Ganga on an altitude of 1000 mt above sea level, and is considered as more than 700 years old.The temple complex holds a Kund in it where devotees take a holy dip in it. Also a cave-like scoop at the back of the temple, represents an embodiment of Shiva in the form of stone lingam. The main-deity is under cover, not accessible to the visitors. The temple also hold a handicraft center containing items of the wood carvings, wooden toys, black pottery, tea, cap, honey and a number of other things.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.1484912,\"Long\":76.4188062,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Chamunda_Devi_Ji_Temple_7824_1518431940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":394,\"Title\":\"Dal Lake\",\"Description\":\"Dal lake is filled with greenish water, attracts various and innumerable tourists from all over the world because of its panoramic view and the much-felt serenity. This beautiful lake is surrounded by lush green Deodar forests at an altitude of 1,775 metres. It is mostly visited by tourist during the month of September as a fair is organized here. The tourists can offer their prayers to Lord Shiva at the temple dedicated to him on the banks of the lake. One can also enjoy facilities, includes boat ride, fishing and trekking. It is a major attraction for trekkers as it serves as a base camp for several trekking expeditions.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2196772,\"Long\":76.3209345,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dal_Lake_7824_1518442445.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":183,\"Title\":\"Bhagsunag Temple\",\"Description\":\"Bhagsunag Temple also known as Shiva Temple, is believed to be an ancient temple where Lord Shiva himself visited. Hence, this sacred temple is a much-worshipped place among the Hindu pilgrims for its exciting history and sacredness. Thus, the Bhagsu Nag Temple is a must visit for all. The flowing water of the Bhagsu Falls fills the small pool where people come to have a cool dip and fun. The Shiva temple has a bell at the entrance and plenty of inions on the walls and the pillars along with four bells of different sizes hanging inside of the temple. There are plenty of small stalls that serve some tea, cold drinks besides eatables like noodles, sandwiches, etc.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.244594,\"Long\":76.312183,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Bhagsunag_Temple_7824_1518420355.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":809,\"Title\":\"Kalatop Khajjiar Sanctuary\",\"Description\":\"Kalatop Khajjiar Sanctuary is a animal sanctuary at Kalatop and Khajjiar in the Chamba district of Himachal Pradesh, India. The sanctuary area is well laid out for trekking trails both at Kalatop and Khajjiar. There is a dense deodar and  Pheasants, serow and black bear are some of the common animals found here. The sanctuary lies in the path of the Ravi River, and is surrounded by coniferous and oak forests.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5316695,\"Long\":76.014284,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3477\\/thumb\\/Kalatop Khajjiar Sanctuary_399.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":871,\"Title\":\"Khajjiar Lake\",\"Description\":\"Encircled by lush green deodar forests, Khajjiar Lake is a natural splendour, located at an elevation of 1920 mtrs. Among the best places to visit in Himachal Pradesh, it is ideal for reinvigoration of mind and body. The major attraction of the place is the island that floats, which is actually a cluster of grass growing on the lake surface. Khajjiar Lake is mostly visited by locals and tourists for day picnics, paragliding, zorbing, and horse riding. On a sunny day, one can also enjoy the mesmerizing views of Mount Kailash from the lake.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5463519,\"Long\":76.057958,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1062\\/thumb\\/Khajjiar Lake_405.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1297,\"Title\":\"Panchpula\",\"Description\":\"The word Panchpula means five bridges and it is the place where a descending stream flows and feeds several pools. Panchpula is the main stream that supplies water to cities of Dalhousie and Balloon. The stream originates from Dain Kund and falls down into a quaint abyss and then finally reaches the waterworks of Panchpula.\\r\\nA monument has been built where several streams meet at Panchpula in the memory of Sardar Ajit Singh, who was a freedom fighter and uncle of Bhagat Singh. On the way to Panchpula is Satdhara, a union of seven tiny springs. It is believed that the fresh waters of Satdhara contain healing medical properties. Thus, while travelling to Panchpula, most of the tourists halt at this spring fall and collect the water.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/548\\/thumb\\/Panchpula_5.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1160,\"Title\":\"Museum &wagah Border\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/172\\/thumb\\/Museum &amp;wagah Border_66.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null}]}},{\"CityId\":16593,\"Title\":\"Manali\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":515254,\"Name\":\"The Jannat Resort- A Resort with Waterfall\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.2122972\",\"Long\":\"77.18510309999999\",\"Address\":\"Gadherni Rd, Simsa Village, Manali, Himachal Pradesh 175131, India\"},\"Images\":[],\"CityId\":16593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":31166,\"Title\":\"Pinjore Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":601,\"Title\":\"Green Valley\",\"Description\":\"The Green valley is Gods gift to the wonderful and charming city of Shimla.It is a pollution constant traffic jams and incessant noise free place.The beauty of this place is so mesmerising which makes the tourist forget everything else and simply bask in the sheer joy of being in natures lap.This is the place where tourists loves to stop to enjoy the lush green environment.The is also an ideal place to capture some fantastic pictures. The tall mountains with greenery all around and the distant snow-capped Himalayan ranges make for a perfect background to click amazing snapshots.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1018284,\"Long\":77.2622804,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Green_Valley_1_1518275651.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1680,\"Title\":\"Himachal State Museum\",\"Description\":\"The State Museum was an old Victorian mansion carefully altered to adapt it to the museum.It is located on the Mall Road and has unique collectibles like ancient coins paintings and other handicraft items the aesthetics of which are influenced by the Pahari form of art. It  was opened on January 26 1974 to collect and preserve the ancient artistic historical archaeological and ethnological human works in order that the future generation may have access to the cultural treasure it has inherited from the past.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046015,\"Long\":77.1731038,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/State_Museum_1_1518245691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2622,\"Title\":\"Sunder Nagar Lake\",\"Description\":\"Sunder Nagar is city and municupal council in Mandi district. Formerly it was a princely state, known as Suket. Sunder Nagar is located in Mandi district. The waters of Beas and Sutlej river given it a man-made lake. The Sunder Nager is mixture of Himachalis and Punjabis people. There are lot of scenic beauties to see like sunset across the lake.\\r\\nSunder Nagar is famous for lake. Sunder Nagar is also emerged as an educational hub. Many government college are open there.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.5332,\"Long\":76.8922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Sunder_Nagar_Lake_16593_1521186767.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1303,\"Title\":\"Pandoh Dam\",\"Description\":\"Pandoh Dam lies in the Mandi district of Himachal Pradesh, which is constructed on Beas River. The primary purpose of Pandoh Dam is hydroelectric power generation.The visitors travelling to Manali get a perfect location near the dam to click great pictures as the location is highly picturesque and full of lush greenery. Rafting is also done here, in the lower bed on a commercial basis.The place is an ideal spot for picnics as the surrounding area of the dam is somewhat isolated and hence provides the necessary tranquillity and serenity to the visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Pandoh_Dam_16593_1518506375.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him&Auml;\\u0081chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1862,\"Title\":\"Vashishti Baths\",\"Description\":\"Vashisht Baths are natural hot water springs accompanied by beautiful sanstone temples.\\r\\nSituated on the banks of the gurgling Beas River in the picturesque hill station of Manali.\\r\\nthese baths are named after the great sage Vashisht, who was a teacher and adviser to Lord\\r\\nRama. Surrounded by pine trees and luxuriant vegetation, these are natural sulphur springs\\r\\nthat contains medicinal values and can cure skin related ailments. Elegant Turkish style\\r\\nshowers are connected to the springs through pipes for the convenience of visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2441506,\"Long\":77.1899427,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Vashishti_Baths_16593_1522070945.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1850,\"Title\":\"Van Vihar National Park\",\"Description\":\"Van Vihar National Park is one of the most frequent places to visit in Manali, which attracts visitors mainly because of its ideal location,on the Mall road in Manali. It is an amazing place where all the members of the family could actually chill out and enjoy some wonderfull moments.Specially children love to visit this park as the park have wonderfull rides and perfect environment.There are concrete as well as wooden benches in the park where you can sit for hours together and marvel at the beauty of nature. There is a man made in the park where boating is enjoyed by adults as well as the children.It is the perfect place that caters to all,that every visitor coming here is looking for.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Van_Vihar_National_Park_16593_1518501309.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1414,\"Title\":\"Rahala Falls\",\"Description\":\"Rahala Falls at a height of 8,500 ft. is a beautiful waterfall. It lies on the way from Manali to Rohtang Pass.Rahala Falls are the result of melting glaciers.It is surrounded by a dense forest of birch and deodar trees and showcases the snow capped Himalayan peaks in the background. The waterfall is a famous tourist attraction in the state of Himachal Pradesh.It is a natural spot where tourist can view the natural beauty. The fresh and aromatic air creates a sense of peace and relaxation.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rahala_Falls_16593_1518504158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":31167,\"Title\":\"Palampur Tea Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3515,\"Title\":\"Chamunda Devi Ji Temple\",\"Description\":\"Chamunda Devi Temple is commonly known as Chamunda Nandikeshwar Dham, it is a famous temple of Goddess Shakti who is the goddess of power. This famous shrine is located on the bank of Ban Ganga on an altitude of 1000 mt above sea level, and is considered as more than 700 years old.The temple complex holds a Kund in it where devotees take a holy dip in it. Also a cave-like scoop at the back of the temple, represents an embodiment of Shiva in the form of stone lingam. The main-deity is under cover, not accessible to the visitors. The temple also hold a handicraft center containing items of the wood carvings, wooden toys, black pottery, tea, cap, honey and a number of other things.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.1484912,\"Long\":76.4188062,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Chamunda_Devi_Ji_Temple_7824_1518431940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":394,\"Title\":\"Dal Lake\",\"Description\":\"Dal lake is filled with greenish water, attracts various and innumerable tourists from all over the world because of its panoramic view and the much-felt serenity. This beautiful lake is surrounded by lush green Deodar forests at an altitude of 1,775 metres. It is mostly visited by tourist during the month of September as a fair is organized here. The tourists can offer their prayers to Lord Shiva at the temple dedicated to him on the banks of the lake. One can also enjoy facilities, includes boat ride, fishing and trekking. It is a major attraction for trekkers as it serves as a base camp for several trekking expeditions.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2196772,\"Long\":76.3209345,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dal_Lake_7824_1518442445.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":183,\"Title\":\"Bhagsunag Temple\",\"Description\":\"Bhagsunag Temple also known as Shiva Temple, is believed to be an ancient temple where Lord Shiva himself visited. Hence, this sacred temple is a much-worshipped place among the Hindu pilgrims for its exciting history and sacredness. Thus, the Bhagsu Nag Temple is a must visit for all. The flowing water of the Bhagsu Falls fills the small pool where people come to have a cool dip and fun. The Shiva temple has a bell at the entrance and plenty of inions on the walls and the pillars along with four bells of different sizes hanging inside of the temple. There are plenty of small stalls that serve some tea, cold drinks besides eatables like noodles, sandwiches, etc.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.244594,\"Long\":76.312183,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Bhagsunag_Temple_7824_1518420355.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":809,\"Title\":\"Kalatop Khajjiar Sanctuary\",\"Description\":\"Kalatop Khajjiar Sanctuary is a animal sanctuary at Kalatop and Khajjiar in the Chamba district of Himachal Pradesh, India. The sanctuary area is well laid out for trekking trails both at Kalatop and Khajjiar. There is a dense deodar and  Pheasants, serow and black bear are some of the common animals found here. The sanctuary lies in the path of the Ravi River, and is surrounded by coniferous and oak forests.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5316695,\"Long\":76.014284,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3477\\/thumb\\/Kalatop Khajjiar Sanctuary_399.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":871,\"Title\":\"Khajjiar Lake\",\"Description\":\"Encircled by lush green deodar forests, Khajjiar Lake is a natural splendour, located at an elevation of 1920 mtrs. Among the best places to visit in Himachal Pradesh, it is ideal for reinvigoration of mind and body. The major attraction of the place is the island that floats, which is actually a cluster of grass growing on the lake surface. Khajjiar Lake is mostly visited by locals and tourists for day picnics, paragliding, zorbing, and horse riding. On a sunny day, one can also enjoy the mesmerizing views of Mount Kailash from the lake.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5463519,\"Long\":76.057958,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1062\\/thumb\\/Khajjiar Lake_405.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1297,\"Title\":\"Panchpula\",\"Description\":\"The word Panchpula means five bridges and it is the place where a descending stream flows and feeds several pools. Panchpula is the main stream that supplies water to cities of Dalhousie and Balloon. The stream originates from Dain Kund and falls down into a quaint abyss and then finally reaches the waterworks of Panchpula.\\r\\nA monument has been built where several streams meet at Panchpula in the memory of Sardar Ajit Singh, who was a freedom fighter and uncle of Bhagat Singh. On the way to Panchpula is Satdhara, a union of seven tiny springs. It is believed that the fresh waters of Satdhara contain healing medical properties. Thus, while travelling to Panchpula, most of the tourists halt at this spring fall and collect the water.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/548\\/thumb\\/Panchpula_5.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1160,\"Title\":\"Museum &wagah Border\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/172\\/thumb\\/Museum &amp;wagah Border_66.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null}]}},{\"CityId\":7824,\"Title\":\"Dharamshala\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":515262,\"Name\":\"Sky Heaven Resort\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.2426748\",\"Long\":\"76.3329255\",\"Address\":\"Dharamshala, Himachal Pradesh 176219, India\"},\"Images\":[],\"CityId\":7824,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tStandard Deluxe\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":31166,\"Title\":\"Pinjore Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":601,\"Title\":\"Green Valley\",\"Description\":\"The Green valley is Gods gift to the wonderful and charming city of Shimla.It is a pollution constant traffic jams and incessant noise free place.The beauty of this place is so mesmerising which makes the tourist forget everything else and simply bask in the sheer joy of being in natures lap.This is the place where tourists loves to stop to enjoy the lush green environment.The is also an ideal place to capture some fantastic pictures. The tall mountains with greenery all around and the distant snow-capped Himalayan ranges make for a perfect background to click amazing snapshots.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1018284,\"Long\":77.2622804,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Green_Valley_1_1518275651.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1680,\"Title\":\"Himachal State Museum\",\"Description\":\"The State Museum was an old Victorian mansion carefully altered to adapt it to the museum.It is located on the Mall Road and has unique collectibles like ancient coins paintings and other handicraft items the aesthetics of which are influenced by the Pahari form of art. It  was opened on January 26 1974 to collect and preserve the ancient artistic historical archaeological and ethnological human works in order that the future generation may have access to the cultural treasure it has inherited from the past.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046015,\"Long\":77.1731038,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/State_Museum_1_1518245691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2622,\"Title\":\"Sunder Nagar Lake\",\"Description\":\"Sunder Nagar is city and municupal council in Mandi district. Formerly it was a princely state, known as Suket. Sunder Nagar is located in Mandi district. The waters of Beas and Sutlej river given it a man-made lake. The Sunder Nager is mixture of Himachalis and Punjabis people. There are lot of scenic beauties to see like sunset across the lake.\\r\\nSunder Nagar is famous for lake. Sunder Nagar is also emerged as an educational hub. Many government college are open there.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.5332,\"Long\":76.8922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Sunder_Nagar_Lake_16593_1521186767.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1303,\"Title\":\"Pandoh Dam\",\"Description\":\"Pandoh Dam lies in the Mandi district of Himachal Pradesh, which is constructed on Beas River. The primary purpose of Pandoh Dam is hydroelectric power generation.The visitors travelling to Manali get a perfect location near the dam to click great pictures as the location is highly picturesque and full of lush greenery. Rafting is also done here, in the lower bed on a commercial basis.The place is an ideal spot for picnics as the surrounding area of the dam is somewhat isolated and hence provides the necessary tranquillity and serenity to the visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Pandoh_Dam_16593_1518506375.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him&Auml;\\u0081chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1862,\"Title\":\"Vashishti Baths\",\"Description\":\"Vashisht Baths are natural hot water springs accompanied by beautiful sanstone temples.\\r\\nSituated on the banks of the gurgling Beas River in the picturesque hill station of Manali.\\r\\nthese baths are named after the great sage Vashisht, who was a teacher and adviser to Lord\\r\\nRama. Surrounded by pine trees and luxuriant vegetation, these are natural sulphur springs\\r\\nthat contains medicinal values and can cure skin related ailments. Elegant Turkish style\\r\\nshowers are connected to the springs through pipes for the convenience of visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2441506,\"Long\":77.1899427,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Vashishti_Baths_16593_1522070945.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1850,\"Title\":\"Van Vihar National Park\",\"Description\":\"Van Vihar National Park is one of the most frequent places to visit in Manali, which attracts visitors mainly because of its ideal location,on the Mall road in Manali. It is an amazing place where all the members of the family could actually chill out and enjoy some wonderfull moments.Specially children love to visit this park as the park have wonderfull rides and perfect environment.There are concrete as well as wooden benches in the park where you can sit for hours together and marvel at the beauty of nature. There is a man made in the park where boating is enjoyed by adults as well as the children.It is the perfect place that caters to all,that every visitor coming here is looking for.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Van_Vihar_National_Park_16593_1518501309.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1414,\"Title\":\"Rahala Falls\",\"Description\":\"Rahala Falls at a height of 8,500 ft. is a beautiful waterfall. It lies on the way from Manali to Rohtang Pass.Rahala Falls are the result of melting glaciers.It is surrounded by a dense forest of birch and deodar trees and showcases the snow capped Himalayan peaks in the background. The waterfall is a famous tourist attraction in the state of Himachal Pradesh.It is a natural spot where tourist can view the natural beauty. The fresh and aromatic air creates a sense of peace and relaxation.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rahala_Falls_16593_1518504158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":31167,\"Title\":\"Palampur Tea Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3515,\"Title\":\"Chamunda Devi Ji Temple\",\"Description\":\"Chamunda Devi Temple is commonly known as Chamunda Nandikeshwar Dham, it is a famous temple of Goddess Shakti who is the goddess of power. This famous shrine is located on the bank of Ban Ganga on an altitude of 1000 mt above sea level, and is considered as more than 700 years old.The temple complex holds a Kund in it where devotees take a holy dip in it. Also a cave-like scoop at the back of the temple, represents an embodiment of Shiva in the form of stone lingam. The main-deity is under cover, not accessible to the visitors. The temple also hold a handicraft center containing items of the wood carvings, wooden toys, black pottery, tea, cap, honey and a number of other things.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.1484912,\"Long\":76.4188062,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Chamunda_Devi_Ji_Temple_7824_1518431940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":394,\"Title\":\"Dal Lake\",\"Description\":\"Dal lake is filled with greenish water, attracts various and innumerable tourists from all over the world because of its panoramic view and the much-felt serenity. This beautiful lake is surrounded by lush green Deodar forests at an altitude of 1,775 metres. It is mostly visited by tourist during the month of September as a fair is organized here. The tourists can offer their prayers to Lord Shiva at the temple dedicated to him on the banks of the lake. One can also enjoy facilities, includes boat ride, fishing and trekking. It is a major attraction for trekkers as it serves as a base camp for several trekking expeditions.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2196772,\"Long\":76.3209345,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dal_Lake_7824_1518442445.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":183,\"Title\":\"Bhagsunag Temple\",\"Description\":\"Bhagsunag Temple also known as Shiva Temple, is believed to be an ancient temple where Lord Shiva himself visited. Hence, this sacred temple is a much-worshipped place among the Hindu pilgrims for its exciting history and sacredness. Thus, the Bhagsu Nag Temple is a must visit for all. The flowing water of the Bhagsu Falls fills the small pool where people come to have a cool dip and fun. The Shiva temple has a bell at the entrance and plenty of inions on the walls and the pillars along with four bells of different sizes hanging inside of the temple. There are plenty of small stalls that serve some tea, cold drinks besides eatables like noodles, sandwiches, etc.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.244594,\"Long\":76.312183,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Bhagsunag_Temple_7824_1518420355.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":809,\"Title\":\"Kalatop Khajjiar Sanctuary\",\"Description\":\"Kalatop Khajjiar Sanctuary is a animal sanctuary at Kalatop and Khajjiar in the Chamba district of Himachal Pradesh, India. The sanctuary area is well laid out for trekking trails both at Kalatop and Khajjiar. There is a dense deodar and  Pheasants, serow and black bear are some of the common animals found here. The sanctuary lies in the path of the Ravi River, and is surrounded by coniferous and oak forests.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5316695,\"Long\":76.014284,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3477\\/thumb\\/Kalatop Khajjiar Sanctuary_399.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":871,\"Title\":\"Khajjiar Lake\",\"Description\":\"Encircled by lush green deodar forests, Khajjiar Lake is a natural splendour, located at an elevation of 1920 mtrs. Among the best places to visit in Himachal Pradesh, it is ideal for reinvigoration of mind and body. The major attraction of the place is the island that floats, which is actually a cluster of grass growing on the lake surface. Khajjiar Lake is mostly visited by locals and tourists for day picnics, paragliding, zorbing, and horse riding. On a sunny day, one can also enjoy the mesmerizing views of Mount Kailash from the lake.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5463519,\"Long\":76.057958,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1062\\/thumb\\/Khajjiar Lake_405.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1297,\"Title\":\"Panchpula\",\"Description\":\"The word Panchpula means five bridges and it is the place where a descending stream flows and feeds several pools. Panchpula is the main stream that supplies water to cities of Dalhousie and Balloon. The stream originates from Dain Kund and falls down into a quaint abyss and then finally reaches the waterworks of Panchpula.\\r\\nA monument has been built where several streams meet at Panchpula in the memory of Sardar Ajit Singh, who was a freedom fighter and uncle of Bhagat Singh. On the way to Panchpula is Satdhara, a union of seven tiny springs. It is believed that the fresh waters of Satdhara contain healing medical properties. Thus, while travelling to Panchpula, most of the tourists halt at this spring fall and collect the water.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/548\\/thumb\\/Panchpula_5.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1160,\"Title\":\"Museum &wagah Border\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/172\\/thumb\\/Museum &amp;wagah Border_66.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null}]}},{\"CityId\":7478,\"Title\":\"Dalhousie\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":515269,\"Name\":\"Hotel Bias Pushap\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"32.5488923\",\"Long\":\"75.9472239\",\"Address\":\"Hotel Bias Pushap Banikhet, Dalhousie, Himachal Pradesh 176303, India\"},\"Images\":[],\"CityId\":7478,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":31166,\"Title\":\"Pinjore Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":601,\"Title\":\"Green Valley\",\"Description\":\"The Green valley is Gods gift to the wonderful and charming city of Shimla.It is a pollution constant traffic jams and incessant noise free place.The beauty of this place is so mesmerising which makes the tourist forget everything else and simply bask in the sheer joy of being in natures lap.This is the place where tourists loves to stop to enjoy the lush green environment.The is also an ideal place to capture some fantastic pictures. The tall mountains with greenery all around and the distant snow-capped Himalayan ranges make for a perfect background to click amazing snapshots.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1018284,\"Long\":77.2622804,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Green_Valley_1_1518275651.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1680,\"Title\":\"Himachal State Museum\",\"Description\":\"The State Museum was an old Victorian mansion carefully altered to adapt it to the museum.It is located on the Mall Road and has unique collectibles like ancient coins paintings and other handicraft items the aesthetics of which are influenced by the Pahari form of art. It  was opened on January 26 1974 to collect and preserve the ancient artistic historical archaeological and ethnological human works in order that the future generation may have access to the cultural treasure it has inherited from the past.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046015,\"Long\":77.1731038,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/State_Museum_1_1518245691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2622,\"Title\":\"Sunder Nagar Lake\",\"Description\":\"Sunder Nagar is city and municupal council in Mandi district. Formerly it was a princely state, known as Suket. Sunder Nagar is located in Mandi district. The waters of Beas and Sutlej river given it a man-made lake. The Sunder Nager is mixture of Himachalis and Punjabis people. There are lot of scenic beauties to see like sunset across the lake.\\r\\nSunder Nagar is famous for lake. Sunder Nagar is also emerged as an educational hub. Many government college are open there.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.5332,\"Long\":76.8922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Sunder_Nagar_Lake_16593_1521186767.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1303,\"Title\":\"Pandoh Dam\",\"Description\":\"Pandoh Dam lies in the Mandi district of Himachal Pradesh, which is constructed on Beas River. The primary purpose of Pandoh Dam is hydroelectric power generation.The visitors travelling to Manali get a perfect location near the dam to click great pictures as the location is highly picturesque and full of lush greenery. Rafting is also done here, in the lower bed on a commercial basis.The place is an ideal spot for picnics as the surrounding area of the dam is somewhat isolated and hence provides the necessary tranquillity and serenity to the visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Pandoh_Dam_16593_1518506375.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him&Auml;\\u0081chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1862,\"Title\":\"Vashishti Baths\",\"Description\":\"Vashisht Baths are natural hot water springs accompanied by beautiful sanstone temples.\\r\\nSituated on the banks of the gurgling Beas River in the picturesque hill station of Manali.\\r\\nthese baths are named after the great sage Vashisht, who was a teacher and adviser to Lord\\r\\nRama. Surrounded by pine trees and luxuriant vegetation, these are natural sulphur springs\\r\\nthat contains medicinal values and can cure skin related ailments. Elegant Turkish style\\r\\nshowers are connected to the springs through pipes for the convenience of visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2441506,\"Long\":77.1899427,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Vashishti_Baths_16593_1522070945.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1850,\"Title\":\"Van Vihar National Park\",\"Description\":\"Van Vihar National Park is one of the most frequent places to visit in Manali, which attracts visitors mainly because of its ideal location,on the Mall road in Manali. It is an amazing place where all the members of the family could actually chill out and enjoy some wonderfull moments.Specially children love to visit this park as the park have wonderfull rides and perfect environment.There are concrete as well as wooden benches in the park where you can sit for hours together and marvel at the beauty of nature. There is a man made in the park where boating is enjoyed by adults as well as the children.It is the perfect place that caters to all,that every visitor coming here is looking for.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Van_Vihar_National_Park_16593_1518501309.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1414,\"Title\":\"Rahala Falls\",\"Description\":\"Rahala Falls at a height of 8,500 ft. is a beautiful waterfall. It lies on the way from Manali to Rohtang Pass.Rahala Falls are the result of melting glaciers.It is surrounded by a dense forest of birch and deodar trees and showcases the snow capped Himalayan peaks in the background. The waterfall is a famous tourist attraction in the state of Himachal Pradesh.It is a natural spot where tourist can view the natural beauty. The fresh and aromatic air creates a sense of peace and relaxation.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rahala_Falls_16593_1518504158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":31167,\"Title\":\"Palampur Tea Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3515,\"Title\":\"Chamunda Devi Ji Temple\",\"Description\":\"Chamunda Devi Temple is commonly known as Chamunda Nandikeshwar Dham, it is a famous temple of Goddess Shakti who is the goddess of power. This famous shrine is located on the bank of Ban Ganga on an altitude of 1000 mt above sea level, and is considered as more than 700 years old.The temple complex holds a Kund in it where devotees take a holy dip in it. Also a cave-like scoop at the back of the temple, represents an embodiment of Shiva in the form of stone lingam. The main-deity is under cover, not accessible to the visitors. The temple also hold a handicraft center containing items of the wood carvings, wooden toys, black pottery, tea, cap, honey and a number of other things.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.1484912,\"Long\":76.4188062,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Chamunda_Devi_Ji_Temple_7824_1518431940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":394,\"Title\":\"Dal Lake\",\"Description\":\"Dal lake is filled with greenish water, attracts various and innumerable tourists from all over the world because of its panoramic view and the much-felt serenity. This beautiful lake is surrounded by lush green Deodar forests at an altitude of 1,775 metres. It is mostly visited by tourist during the month of September as a fair is organized here. The tourists can offer their prayers to Lord Shiva at the temple dedicated to him on the banks of the lake. One can also enjoy facilities, includes boat ride, fishing and trekking. It is a major attraction for trekkers as it serves as a base camp for several trekking expeditions.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2196772,\"Long\":76.3209345,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dal_Lake_7824_1518442445.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":183,\"Title\":\"Bhagsunag Temple\",\"Description\":\"Bhagsunag Temple also known as Shiva Temple, is believed to be an ancient temple where Lord Shiva himself visited. Hence, this sacred temple is a much-worshipped place among the Hindu pilgrims for its exciting history and sacredness. Thus, the Bhagsu Nag Temple is a must visit for all. The flowing water of the Bhagsu Falls fills the small pool where people come to have a cool dip and fun. The Shiva temple has a bell at the entrance and plenty of inions on the walls and the pillars along with four bells of different sizes hanging inside of the temple. There are plenty of small stalls that serve some tea, cold drinks besides eatables like noodles, sandwiches, etc.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.244594,\"Long\":76.312183,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Bhagsunag_Temple_7824_1518420355.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":809,\"Title\":\"Kalatop Khajjiar Sanctuary\",\"Description\":\"Kalatop Khajjiar Sanctuary is a animal sanctuary at Kalatop and Khajjiar in the Chamba district of Himachal Pradesh, India. The sanctuary area is well laid out for trekking trails both at Kalatop and Khajjiar. There is a dense deodar and  Pheasants, serow and black bear are some of the common animals found here. The sanctuary lies in the path of the Ravi River, and is surrounded by coniferous and oak forests.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5316695,\"Long\":76.014284,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3477\\/thumb\\/Kalatop Khajjiar Sanctuary_399.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":871,\"Title\":\"Khajjiar Lake\",\"Description\":\"Encircled by lush green deodar forests, Khajjiar Lake is a natural splendour, located at an elevation of 1920 mtrs. Among the best places to visit in Himachal Pradesh, it is ideal for reinvigoration of mind and body. The major attraction of the place is the island that floats, which is actually a cluster of grass growing on the lake surface. Khajjiar Lake is mostly visited by locals and tourists for day picnics, paragliding, zorbing, and horse riding. On a sunny day, one can also enjoy the mesmerizing views of Mount Kailash from the lake.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5463519,\"Long\":76.057958,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1062\\/thumb\\/Khajjiar Lake_405.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1297,\"Title\":\"Panchpula\",\"Description\":\"The word Panchpula means five bridges and it is the place where a descending stream flows and feeds several pools. Panchpula is the main stream that supplies water to cities of Dalhousie and Balloon. The stream originates from Dain Kund and falls down into a quaint abyss and then finally reaches the waterworks of Panchpula.\\r\\nA monument has been built where several streams meet at Panchpula in the memory of Sardar Ajit Singh, who was a freedom fighter and uncle of Bhagat Singh. On the way to Panchpula is Satdhara, a union of seven tiny springs. It is believed that the fresh waters of Satdhara contain healing medical properties. Thus, while travelling to Panchpula, most of the tourists halt at this spring fall and collect the water.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/548\\/thumb\\/Panchpula_5.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1160,\"Title\":\"Museum &wagah Border\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/172\\/thumb\\/Museum &amp;wagah Border_66.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null}]}},{\"CityId\":974,\"Title\":\"Amritsar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":515273,\"Name\":\"Hotel Amritsar International\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"31.62782\",\"Long\":\"74.885938\",\"Address\":\"226-227 City Centre, Opp. Guru Nanak Bhawan, Near Bus Stand, Phoola Singh Burj, Amritsar, Punjab 143001, India\"},\"Images\":[],\"CityId\":974,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":31166,\"Title\":\"Pinjore Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":601,\"Title\":\"Green Valley\",\"Description\":\"The Green valley is Gods gift to the wonderful and charming city of Shimla.It is a pollution constant traffic jams and incessant noise free place.The beauty of this place is so mesmerising which makes the tourist forget everything else and simply bask in the sheer joy of being in natures lap.This is the place where tourists loves to stop to enjoy the lush green environment.The is also an ideal place to capture some fantastic pictures. The tall mountains with greenery all around and the distant snow-capped Himalayan ranges make for a perfect background to click amazing snapshots.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1018284,\"Long\":77.2622804,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Green_Valley_1_1518275651.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":7433,\"Title\":\"Kufri, Shimla, Himachal Pradesh, India\",\"Description\":\"Kufri is a small hill station in Shimla district of Himachal Pradesh state in India. It is located 20 km from the state capital Shimla on the National Highway No.22.\\r\\nThe name Kufri is derived from the word kufr meaning &amp;quot;lake&amp;quot; in the local language.\\r\\nThe highest point in the surrounding region, Kufri has a Himalayan wildlife zoo which hosts rare antelopes, felines and birds including the Himalayan monal, the state bird of Himachal Pradesh until 2007. During winter a meandering path through the potato plantations turns into a popular ski track.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Kufri,_Shimla,_Himachal_Prades_1_1543819652.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1874,\"Title\":\"Viceregal Lodge\",\"Description\":\"Viceregal Lodge is also known as Rashtrapati Niwas.It  was designed by British architect Henry Irwin and built in the Jacobethan style during the regime of Lord Dufferin. Its construction started in 1880 and was completed in 1888.Viceregal Lodge was formerly the residence of the British Viceroy of India.It has some of the most ancient articles and photographs going back to the times of the British rule. Viceregal Lodge is the most historically significant and architectural impressive building of the region that makes for a pleasant half-day excursion.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046052,\"Long\":77.1734242,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/Viceregal_Lodge_1_1518252363.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1680,\"Title\":\"Himachal State Museum\",\"Description\":\"The State Museum was an old Victorian mansion carefully altered to adapt it to the museum.It is located on the Mall Road and has unique collectibles like ancient coins paintings and other handicraft items the aesthetics of which are influenced by the Pahari form of art. It  was opened on January 26 1974 to collect and preserve the ancient artistic historical archaeological and ethnological human works in order that the future generation may have access to the cultural treasure it has inherited from the past.\",\"CurrencyType\":0,\"CityId\":1,\"CityName\":\"Shimla\",\"Lat\":31.1046015,\"Long\":77.1731038,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/1\\/sightseeing\\/State_Museum_1_1518245691.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2622,\"Title\":\"Sunder Nagar Lake\",\"Description\":\"Sunder Nagar is city and municupal council in Mandi district. Formerly it was a princely state, known as Suket. Sunder Nagar is located in Mandi district. The waters of Beas and Sutlej river given it a man-made lake. The Sunder Nager is mixture of Himachalis and Punjabis people. There are lot of scenic beauties to see like sunset across the lake.\\r\\nSunder Nagar is famous for lake. Sunder Nagar is also emerged as an educational hub. Many government college are open there.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.5332,\"Long\":76.8922,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Sunder_Nagar_Lake_16593_1521186767.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1303,\"Title\":\"Pandoh Dam\",\"Description\":\"Pandoh Dam lies in the Mandi district of Himachal Pradesh, which is constructed on Beas River. The primary purpose of Pandoh Dam is hydroelectric power generation.The visitors travelling to Manali get a perfect location near the dam to click great pictures as the location is highly picturesque and full of lush greenery. Rafting is also done here, in the lower bed on a commercial basis.The place is an ideal spot for picnics as the surrounding area of the dam is somewhat isolated and hence provides the necessary tranquillity and serenity to the visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.1048294,\"Long\":77.1733901,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Pandoh_Dam_16593_1518506375.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2403,\"Title\":\"Kullu\",\"Description\":\"Kullu, known as the Valleys of God is a popular tourist destination, is an open valley with panoramic views and majestic hills covered with Deodar and Pine trees. Situated at an altitude of 1230 meters, Kullu is a nature lover paradise and it is also popular as a sister town to Manali which is on much higher altitude and provides more scenic views. Tourists coming to Kullu and Manali can indulge in a lot of adventure sports activities like river rafting, trekking, mountaineering, paragliding, hiking etc.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":31.957851,\"Long\":77.1094597,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Kullu_16593_1521527919.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2788,\"Title\":\"Hadimba Devi Temple (Hidimbi)\",\"Description\":\"Also known as the Hadimba Temple, Hidimbi Devi Temple is a unique shrine dedicated to Hadimba Devi, who was the wife of Bhima and mother of Ghatothkach, located amidst the snow covered hills of Manali, in the State of Him&Auml;\\u0081chal Pradesh in north India. Surrounded by gorgeous cedar forests, this ancient cave temple is built on a rock which is believed to be in the image of the goddess herself. The structure was built in 1553 and the construction style of the temple is entirely different from that of any of the other temples, with its wooden doorways, walls, and cone-shaped roof.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2483,\"Long\":77.1808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Hadimba_Devi_Temple_(Hidimbi)_16593_1521095055.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1862,\"Title\":\"Vashishti Baths\",\"Description\":\"Vashisht Baths are natural hot water springs accompanied by beautiful sanstone temples.\\r\\nSituated on the banks of the gurgling Beas River in the picturesque hill station of Manali.\\r\\nthese baths are named after the great sage Vashisht, who was a teacher and adviser to Lord\\r\\nRama. Surrounded by pine trees and luxuriant vegetation, these are natural sulphur springs\\r\\nthat contains medicinal values and can cure skin related ailments. Elegant Turkish style\\r\\nshowers are connected to the springs through pipes for the convenience of visitors.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2441506,\"Long\":77.1899427,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Vashishti_Baths_16593_1522070945.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1781,\"Title\":\"Tibetan Monastery\",\"Description\":\"Tibetan monastery is famous for weaving different and colourfull carpets.It is one of the major tourist spot in Manali. Tibetan monastery is one of the oldest and famous place in Manali.There is the statue of Lord Buddha  presides in the monastery. The architecture of the monastery represents the Tibetan style of architecture designed with hued frescoes. The major attraction of the monastery is the handicrafts of Tibetan artistry and the carpets that are woven and sold in the monastery.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2432415,\"Long\":77.1893835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Tibetan_Monastery_16593_1518523086.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1850,\"Title\":\"Van Vihar National Park\",\"Description\":\"Van Vihar National Park is one of the most frequent places to visit in Manali, which attracts visitors mainly because of its ideal location,on the Mall road in Manali. It is an amazing place where all the members of the family could actually chill out and enjoy some wonderfull moments.Specially children love to visit this park as the park have wonderfull rides and perfect environment.There are concrete as well as wooden benches in the park where you can sit for hours together and marvel at the beauty of nature. There is a man made in the park where boating is enjoyed by adults as well as the children.It is the perfect place that caters to all,that every visitor coming here is looking for.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Van_Vihar_National_Park_16593_1518501309.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3518,\"Title\":\"Solang Valley\",\"Description\":\"Solang is a beautiful valley situated at a distance of about 13km from Manali. It offers a beautiful view of glaciers and snow capped mountains. It is a perfect place for skiing because the valley has fine ski slopes.There is a  guest house of the Atal Bihari Vajpayee Institute of Mountaineering and Allied Sports Manali is based here. This institute is the venue for winter skiing festival and also offers training in skiing to the tourists.The area also has a number of trekking and camping options making it a favorite amongst adventurers and thrill seekers.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.3131482,\"Long\":77.1634096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Solang_Valley,_Burwa,_Himachal_16593_1518435134.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1414,\"Title\":\"Rahala Falls\",\"Description\":\"Rahala Falls at a height of 8,500 ft. is a beautiful waterfall. It lies on the way from Manali to Rohtang Pass.Rahala Falls are the result of melting glaciers.It is surrounded by a dense forest of birch and deodar trees and showcases the snow capped Himalayan peaks in the background. The waterfall is a famous tourist attraction in the state of Himachal Pradesh.It is a natural spot where tourist can view the natural beauty. The fresh and aromatic air creates a sense of peace and relaxation.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2396325,\"Long\":77.1887145,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rahala_Falls_16593_1518504158.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1485,\"Title\":\"Rohtang Pass\",\"Description\":\"Rohtang Pass is one of the most exciting tourist places in Manali.It is a high mountain pass at an elevation of 13054 ft above the sea level located on the eastern Pir Panjal Range of the Himalayas.Rohtang Pass connects Kullu valley with Lahaul and Spiti which in turn provide access to Leh.There are a number of adventure sports that can keep you interested such as skiing skating paragliding snow scooter and more. The name Rohtang means &amp;lsquo;ground of corpses&amp;rsquo; due to the number of people who lost their lives trying to cross  this tricky but beautiful mountain range. Rohtang Pass is mostly visited during the months of summer as during the winter the entire area is covered under a thick blanket of snow and ice.\",\"CurrencyType\":0,\"CityId\":16593,\"CityName\":\"Manali\",\"Lat\":32.2275991,\"Long\":78.0709903,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/16593\\/sightseeing\\/Rohtang_Pass_16593_1518432129.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":31167,\"Title\":\"Palampur Tea Gardens\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":3515,\"Title\":\"Chamunda Devi Ji Temple\",\"Description\":\"Chamunda Devi Temple is commonly known as Chamunda Nandikeshwar Dham, it is a famous temple of Goddess Shakti who is the goddess of power. This famous shrine is located on the bank of Ban Ganga on an altitude of 1000 mt above sea level, and is considered as more than 700 years old.The temple complex holds a Kund in it where devotees take a holy dip in it. Also a cave-like scoop at the back of the temple, represents an embodiment of Shiva in the form of stone lingam. The main-deity is under cover, not accessible to the visitors. The temple also hold a handicraft center containing items of the wood carvings, wooden toys, black pottery, tea, cap, honey and a number of other things.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.1484912,\"Long\":76.4188062,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Chamunda_Devi_Ji_Temple_7824_1518431940.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":394,\"Title\":\"Dal Lake\",\"Description\":\"Dal lake is filled with greenish water, attracts various and innumerable tourists from all over the world because of its panoramic view and the much-felt serenity. This beautiful lake is surrounded by lush green Deodar forests at an altitude of 1,775 metres. It is mostly visited by tourist during the month of September as a fair is organized here. The tourists can offer their prayers to Lord Shiva at the temple dedicated to him on the banks of the lake. One can also enjoy facilities, includes boat ride, fishing and trekking. It is a major attraction for trekkers as it serves as a base camp for several trekking expeditions.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2196772,\"Long\":76.3209345,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Dal_Lake_7824_1518442445.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":2847,\"Title\":\"Mcleodganj\",\"Description\":\"McLeod Ganj is a suburb of Dharamshala in Kangra district of Himachal Pradesh, India. It is known as &quot;Little Lhasa&quot; or &quot;Dhasa&quot; because of its large population of Tibetans. The Tibetan government-in-exile is headquartered in McLeod Ganj.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.2426,\"Long\":76.3213,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/36_1515842973.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":183,\"Title\":\"Bhagsunag Temple\",\"Description\":\"Bhagsunag Temple also known as Shiva Temple, is believed to be an ancient temple where Lord Shiva himself visited. Hence, this sacred temple is a much-worshipped place among the Hindu pilgrims for its exciting history and sacredness. Thus, the Bhagsu Nag Temple is a must visit for all. The flowing water of the Bhagsu Falls fills the small pool where people come to have a cool dip and fun. The Shiva temple has a bell at the entrance and plenty of inions on the walls and the pillars along with four bells of different sizes hanging inside of the temple. There are plenty of small stalls that serve some tea, cold drinks besides eatables like noodles, sandwiches, etc.\",\"CurrencyType\":0,\"CityId\":7824,\"CityName\":\"Dharamshala\",\"Lat\":32.244594,\"Long\":76.312183,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7824\\/sightseeing\\/Bhagsunag_Temple_7824_1518420355.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":809,\"Title\":\"Kalatop Khajjiar Sanctuary\",\"Description\":\"Kalatop Khajjiar Sanctuary is a animal sanctuary at Kalatop and Khajjiar in the Chamba district of Himachal Pradesh, India. The sanctuary area is well laid out for trekking trails both at Kalatop and Khajjiar. There is a dense deodar and  Pheasants, serow and black bear are some of the common animals found here. The sanctuary lies in the path of the Ravi River, and is surrounded by coniferous and oak forests.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5316695,\"Long\":76.014284,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3477\\/thumb\\/Kalatop Khajjiar Sanctuary_399.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":871,\"Title\":\"Khajjiar Lake\",\"Description\":\"Encircled by lush green deodar forests, Khajjiar Lake is a natural splendour, located at an elevation of 1920 mtrs. Among the best places to visit in Himachal Pradesh, it is ideal for reinvigoration of mind and body. The major attraction of the place is the island that floats, which is actually a cluster of grass growing on the lake surface. Khajjiar Lake is mostly visited by locals and tourists for day picnics, paragliding, zorbing, and horse riding. On a sunny day, one can also enjoy the mesmerizing views of Mount Kailash from the lake.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5463519,\"Long\":76.057958,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1062\\/thumb\\/Khajjiar Lake_405.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1297,\"Title\":\"Panchpula\",\"Description\":\"The word Panchpula means five bridges and it is the place where a descending stream flows and feeds several pools. Panchpula is the main stream that supplies water to cities of Dalhousie and Balloon. The stream originates from Dain Kund and falls down into a quaint abyss and then finally reaches the waterworks of Panchpula.\\r\\nA monument has been built where several streams meet at Panchpula in the memory of Sardar Ajit Singh, who was a freedom fighter and uncle of Bhagat Singh. On the way to Panchpula is Satdhara, a union of seven tiny springs. It is believed that the fresh waters of Satdhara contain healing medical properties. Thus, while travelling to Panchpula, most of the tourists halt at this spring fall and collect the water.\",\"CurrencyType\":0,\"CityId\":7478,\"CityName\":\"Dalhousie\",\"Lat\":32.5364551,\"Long\":75.9824737,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/548\\/thumb\\/Panchpula_5.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":1160,\"Title\":\"Museum &wagah Border\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6339793,\"Long\":74.8722642,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/172\\/thumb\\/Museum &amp;wagah Border_66.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":580,\"Title\":\"Golden Temple\",\"Description\":\"Sri Harmandir Sahib, also Sri Darbar Sahib, informally referred to as the Golden Temple, is the holiest Gurdwara of Sikhism, located in the city of Amritsar, Punjab, India. Amritsar was founded in 1577 by the fourth Sikh guru, Guru Ram Das.\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6213305,\"Long\":74.8783582,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Golden_Temple_974_1504779154.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null},{\"RefSSId\":739,\"Title\":\"Jallianwala Bagh\",\"Description\":\"The Jallianwala Bagh massacre, also known as the Amritsar massacre, took place on 13 April, 1919 when a crowd of non-violent protesters, along with Baishakhi pilgrims, who had gathered in Jallianwala\",\"CurrencyType\":0,\"CityId\":974,\"CityName\":\"Amritsar\",\"Lat\":31.6206437,\"Long\":74.8801088,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/974\\/sightseeing\\/Jallianwala_Bagh_974_1504779349.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10564,\"SupplierName\":\"Royal Sunshine Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"277550\",\"Title\":\"Delhi to Shimla\",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Pick up from Delhi&amp;nbsp; Airport &amp;amp; Transfer to &lt;strong&gt;Shimla&lt;\\/strong&gt;. &lt;strong&gt;On the way: &lt;\\/strong&gt;Pinjore Gardens &amp;amp;Barog (if time permits). After arrival in Shimla check into the hotel&amp;nbsp;and enjoy a comfortable&amp;nbsp;night stay at your hotel along with the dinner.&lt;br \\/&gt;\\r\\nOvernight at Shimla&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515249,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":515251,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":31166,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277551\",\"Title\":\"Shimla Sightseeing\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast proceed for Sightseeing Includes: &lt;strong&gt;Green Valley, Kufri, Chini Bunglow, Vice Regal Lodge, Museum&lt;\\/strong&gt;. Evening on the Ridge &amp;amp; Mall. After the tiresome day enjoy a cozy sleep at hotel with dinner.&lt;br \\/&gt;\\r\\nOvernight at Shimla&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515249,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":601,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":7433,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1874,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1680,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277552\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":1,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277553\",\"Title\":\"Shimla to Manali\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast transfer to &lt;strong&gt;Manali&lt;\\/strong&gt;. On the way: &lt;strong&gt;Sundernagar Lake, Pandoh Dam, Kullu Valley Rafting Point Kullu&lt;\\/strong&gt;. After arrival in Manali check into the hotel &amp;amp; Have a peaceful sleep after lavishing your dinner.&lt;br \\/&gt;\\r\\nOvernight at Manali&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515254,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2622,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1303,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2403,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277554\",\"Title\":\"Manali Sightseeing\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast proceed to Sightseeing Includes: &lt;strong&gt;Hadimba Temple, Club House, Vashishth Bath, Monastery, Van Vihar &amp;amp; Market&lt;\\/strong&gt; and enjoy a comfortable&amp;nbsp;night at your hotel along with the dinner.&amp;nbsp;&lt;br \\/&gt;\\r\\nOvernight at Manali.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515254,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2788,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1862,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1781,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1850,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277555\",\"Title\":\"Manali Sightseeing\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast proceed to Sightseeing Includes: &lt;strong&gt;Solang Valley, Rahala Falls &amp;amp; Rohtang Pass (Snow Line).&lt;\\/strong&gt; After the tiresome day enjoy a cozy sleep at hotel with dinner.&amp;nbsp;&lt;br \\/&gt;\\r\\nOvernight at Manali.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515254,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3518,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1414,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1485,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277556\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277557\",\"Title\":\"Manali to Dharamshala\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast transfer to &lt;strong&gt;Dharamshala.&amp;nbsp;&lt;\\/strong&gt;On the way Sightseeing includes: &lt;strong&gt;Palampur Tea Gardens &amp;amp; Chamunda Devi Temple.&lt;\\/strong&gt; After arrival in Dharamshala check into the hotel &amp;amp; enjoy a cozy sleep at hotel with dinner.&lt;br \\/&gt;\\r\\nOvernight at Dharamshala.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515262,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"Standard Deluxe\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":31167,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3515,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277558\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7824,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277559\",\"Title\":\"Dharamshala to Dalhousie\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":7,\"Program\":\"&lt;p&gt;After breakfast proceed to Sightseeing Includes: &lt;strong&gt;Dal Lake, Mcleodganj, Bhagsunag &amp;amp; Cathedral&lt;\\/strong&gt;. Transfer to &lt;strong&gt;Dalhousie&lt;\\/strong&gt;. Check into the hotel &amp;amp; enjoy a cozy sleep at hotel with dinner.&lt;br \\/&gt;\\r\\nOvernight at Dalhousie.&lt;br \\/&gt;\\r\\n&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515269,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":394,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2847,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":183,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277560\",\"Title\":\"Dalhousie sightseeing\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":8,\"Program\":\"&lt;p&gt;After breakfast proceed for sightseeing Includes:&lt;strong&gt; Local Market, Khajjiar, Panchpula &amp;amp; Kalatop&lt;\\/strong&gt;. Have a peaceful sleep after lavishing your dinner.&lt;br \\/&gt;\\r\\nOvernight at Dalhousie.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515269,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":809,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":871,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1297,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277561\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":9,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7478,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277562\",\"Title\":\"Dalhousie to Amritsar\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":9,\"Program\":\"&lt;p&gt;After breakfast check-out From the Hotel &amp;amp; visit &lt;strong&gt;Wagah Border &amp;amp; Golden Temple. &lt;\\/strong&gt;&lt;br \\/&gt;\\r\\nOvernight at Amritsar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515273,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1160,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"277563\",\"Title\":\"Depart Amritsar  \",\"MealPlanInclude\":\"Breakfast\",\"Day\":10,\"Program\":\"&lt;p&gt;After breakfast, proceed for sightseeing of Jallianwala Baug. Later proceed to the Airport \\/ Railway station.&amp;nbsp;&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;TOUR ENDS&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":974,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":739,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38777\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":17533,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"7800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7800,\"CEB\":9100,\"COSTDO\":21000,\"COSTSO\":21000,\"ACEB\":10600,\"COSTTO\":10600},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":17533,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"7800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7800,\"CEB\":9100,\"COSTDO\":21000,\"COSTSO\":21000,\"ACEB\":10600,\"COSTTO\":10600},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":18200,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":22000,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"7800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7800,\"CEB\":9100,\"COSTDO\":22000,\"COSTSO\":22000,\"ACEB\":10600,\"COSTTO\":10600},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":19533,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"7800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7800,\"CEB\":9100,\"COSTDO\":24000,\"COSTSO\":24000,\"ACEB\":10600,\"COSTTO\":10600},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":22767,\"priceDoubleOcc\":\"28850.00\",\"priceSingleOcc\":28850,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"7800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7800,\"CEB\":9100,\"COSTDO\":28850,\"COSTSO\":28850,\"ACEB\":10600,\"COSTTO\":10600},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":23767,\"priceDoubleOcc\":\"30350.00\",\"priceSingleOcc\":30350,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"7800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7800,\"CEB\":9100,\"COSTDO\":30350,\"COSTSO\":30350,\"ACEB\":10600,\"COSTTO\":10600}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38777\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":17033,\"priceDoubleOcc\":\"20500.00\",\"priceSingleOcc\":55350,\"priceExtraBed\":\"8600.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":1500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7300,\"CEB\":8600,\"COSTDO\":20500,\"COSTSO\":20500,\"ACEB\":10100,\"COSTTO\":10100},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":17033,\"priceDoubleOcc\":\"20500.00\",\"priceSingleOcc\":55350,\"priceExtraBed\":\"8600.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":1500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7300,\"CEB\":8600,\"COSTDO\":20500,\"COSTSO\":20500,\"ACEB\":10100,\"COSTTO\":10100},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":17700,\"priceDoubleOcc\":\"21500.00\",\"priceSingleOcc\":56350,\"priceExtraBed\":\"8600.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":1500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7300,\"CEB\":8600,\"COSTDO\":21500,\"COSTSO\":21500,\"ACEB\":10100,\"COSTTO\":10100},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":19033,\"priceDoubleOcc\":\"23500.00\",\"priceSingleOcc\":58350,\"priceExtraBed\":\"8600.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":1500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7300,\"CEB\":8600,\"COSTDO\":23500,\"COSTSO\":23500,\"ACEB\":10100,\"COSTTO\":10100},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":22267,\"priceDoubleOcc\":\"28350.00\",\"priceSingleOcc\":63200,\"priceExtraBed\":\"8600.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":1500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7300,\"CEB\":8600,\"COSTDO\":28350,\"COSTSO\":28350,\"ACEB\":10100,\"COSTTO\":10100},{\"From\":\"2022-10-15\",\"To\":\"2022-11-05\",\"Currency\":1,\"priceTripleOcc\":23267,\"priceDoubleOcc\":\"29850.00\",\"priceSingleOcc\":64700,\"priceExtraBed\":\"8600.00\",\"priceWithoutBed\":\"7300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":1500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7300,\"CEB\":8600,\"COSTDO\":29850,\"COSTSO\":29850,\"ACEB\":10100,\"COSTTO\":10100}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"277550\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[277550],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277551\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[277551],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277552\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[277552],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277553\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[277553],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277554\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[277554],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277555\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[277555],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277556\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[277556],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277557\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[277557],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277558\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[277558],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277559\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[277559],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277560\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[277560],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277561\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[277561],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277562\":{\"9\":{\"Sequence\":[9],\"TPInvnSysId\":[277562],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"277563\":{\"10\":{\"Sequence\":[10],\"TPInvnSysId\":[277563],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Shimla,Manali,Dharamshala,Dalhousie,Amritsar','Shimla,Himachal Pradesh,Indian Subcontinent,North India,India,Manali,Dharamshala,Dalhousie,Amritsar,Punjab',NULL,'1,16593,7824,7478,974',20500,30350,9,NULL,NULL,NULL,2,'',0,'2022-09-02 00:00:00','2022-11-05 00:00:00','2022-11-05 00:00:00',3,'India','101','2022-09-02 13:10:09','2022-09-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'himachal-all-over-diwali-special-i',NULL,NULL,NULL,0),(43,38299,1,12577,0,0,0,'Honeymoon,Adventure,Beach,Family,Sports,Cruise,Weekend,Romantic,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":38299,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/weekend_getaways_to_andaman_1659099132.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":13144,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":13144,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"Andaman Ocean Tourism\",\"Name\":\"Weekend Getaways to Andaman\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10313\",\"SupplierName\":\"Andaman Ocean Tourism\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours,Cruise,Water Sports,Speed Boat,Ferry\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Sports,Cruise,Weekend,Romantic,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-08-06\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":513554,\"Name\":\"Hotel Shompen (Symphony Resorts)\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6648405\",\"Long\":\"92.7390387\",\"Address\":\"02, Middle Point, Thomas Colony, Junglighat, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":514368,\"Name\":\"Hotel Marina Manor\",\"Star\":\"3.00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"11.6597603\",\"Long\":\"92.7315332\",\"Address\":\"Junglighat, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512365,\"Name\":\"Mansha Palace\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001000010101000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":511939,\"Name\":\"S R Castle\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512071,\"Name\":\"Hotel The North Reef\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"11.634341\",\"Long\":\"92.7183451\",\"Address\":\"Dollygunj, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513555,\"Name\":\"Resort Heritage MNR\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.622672\",\"Long\":\"92.7207597\",\"Address\":\"NH4, Pathergudda, Pahargaon, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Club Heritage \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":512072,\"Name\":\"White Coral Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.011609\",\"Long\":\"93.0076531\",\"Address\":\"No.5, Kalapathar Beach Road, Vijay nagar Havelock, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cottage\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513564,\"Name\":\"Sandyy Wavess Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0116977\",\"Long\":\"93.0071808\",\"Address\":\"No 5 Vijay Nagar No 5 Havelock island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512074,\"Name\":\"Symphony Palms Beach Resort\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0275863\",\"Long\":\"93.0005855\",\"Address\":\"3, Govind Nagar Beach, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001101010100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Casa Grande\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"273781\",\"Title\":\"Arrival at Port Blair (Corbyns Cove - Jail Muesum - Cellular Jail Light and Sound Show)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Port Blair in the morning\\/afternoon by flight and our representative will be waiting outside holding a placard with your name on it. You will be taken to your hotel where you relax and rest. After some rest proceed to the nearest Beach, Corbyn&amp;amp;39s Cove. The Crescent shaped coconut palm fringed Corbyn&amp;amp;39s Cove ideal for swimming &amp;amp; bathing, a stretch of around 4 Km with an open sea towards your left is a sight to experience then you will visit the extremely popular Cellular Jail. An excursion to the jail will surely make your family holiday memorable. Formerly known as Kala Pani Later proceed to attend the enthralling Sound and Light Show at Cellular Jail - where the heroic saga of the Indian freedom struggle is brought alive. Enacting of freedom fighters and their struggle for India&amp;amp;39s Independence is enacted during this trip. Post completion of this trip, we drop you back to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":514368,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"},{\"IsIncluded\":false,\"Id\":512071,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273785\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273789\",\"Title\":\"Transfer from Port Blair to Havelock by Ferry and Radhanagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:112pt&quot;&gt;This Day of your Andaman tour starts early. You board the morning ferry from Port Blair to Havelock Island. Carry packed breakfast (Eat Light). This journey is of around 2 hours. On reaching, get transferred to the respective hotels to complete the check-in formalities. Unwind yourself.&lt;br \\/&gt;\\r\\n\\t\\t\\tIn the late afternoon, you visit the popular Radhanagar Beach, which is also known as Beach No 7. It was also rated as the &amp;amp;39Best Beach in Asia&amp;amp;39 by the Time Magazine. Sunset views appear truly magical from this beach. This beach is known as fine sand beach and has clear crystal water. Around 6 pm you will be received by our representative.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273793\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273797\",\"Title\":\"Return back to Port Blair and Shopping Complex\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:80pt&quot;&gt;Knock-Knock&amp;amp;hellipWake up at your own time, have breakfast and explore the beauty of the resort by your own, have some peaceful and leisure time and return back to Port Blair by afternoon ferry, upon reaching port Blair check inn and rest for a while., then proceed for Complementary tour to Shopping Complex for taking something special for your friends and family of beautiful Andaman and Nicobar.&lt;br \\/&gt;\\r\\n\\t\\t\\tNight Stay at Port Blair. Night Stay at Port Blair.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273801\",\"Title\":\"Departure from Port Blair - Drop to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:32pt&quot;&gt;After breakfast check out of the hotel and get transferred to the airport for your journey back home with unlimited memories.. See you soon!!!&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38299\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10580.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":10503,\"priceDoubleOcc\":\"10580.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":10580,\"COSTSO\":29555,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":10503,\"priceDoubleOcc\":\"10580.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":10580,\"COSTSO\":29555,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":10503,\"priceDoubleOcc\":\"10580.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":10580,\"COSTSO\":29555,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":10503,\"priceDoubleOcc\":\"10580.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":10580,\"COSTSO\":29555,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":10925,\"priceDoubleOcc\":\"11212.50\",\"priceSingleOcc\":30187.5,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11212.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":11212.5,\"COSTSO\":30187.5,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11500,\"priceDoubleOcc\":\"12075.00\",\"priceSingleOcc\":31050,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":12075,\"COSTSO\":31050,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12267,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37375,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":13225,\"COSTSO\":37375,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12267,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37375,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":13225,\"COSTSO\":37375,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12267,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37375,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":13225,\"COSTSO\":37375,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12267,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37375,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":13225,\"COSTSO\":37375,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12650,\"priceDoubleOcc\":\"13800.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":13800,\"COSTSO\":37950,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13417,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":39100,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":14950,\"COSTSO\":39100,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10503,\"priceDoubleOcc\":\"10580.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":10580,\"COSTSO\":29555,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10503,\"priceDoubleOcc\":\"10580.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":10580,\"COSTSO\":29555,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10503,\"priceDoubleOcc\":\"10580.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":10580,\"COSTSO\":29555,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10503,\"priceDoubleOcc\":\"10580.00\",\"priceSingleOcc\":29555,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":10580,\"COSTSO\":29555,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10925,\"priceDoubleOcc\":\"11212.50\",\"priceSingleOcc\":30187.5,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11212.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":11212.5,\"COSTSO\":30187.5,\"ACEB\":10350,\"COSTTO\":10350},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11500,\"priceDoubleOcc\":\"12075.00\",\"priceSingleOcc\":31050,\"priceExtraBed\":\"10350.00\",\"priceWithoutBed\":\"8625.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12075,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8625,\"CEB\":10350,\"COSTDO\":12075,\"COSTSO\":31050,\"ACEB\":10350,\"COSTTO\":10350}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38300\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12362.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11883,\"priceDoubleOcc\":\"12362.50\",\"priceSingleOcc\":34787.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12362.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12362.5,\"COSTSO\":34787.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11883,\"priceDoubleOcc\":\"12362.50\",\"priceSingleOcc\":34787.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12362.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12362.5,\"COSTSO\":34787.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11883,\"priceDoubleOcc\":\"12362.50\",\"priceSingleOcc\":34787.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12362.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12362.5,\"COSTSO\":34787.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11883,\"priceDoubleOcc\":\"12362.50\",\"priceSingleOcc\":34787.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12362.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12362.5,\"COSTSO\":34787.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":12267,\"priceDoubleOcc\":\"12937.50\",\"priceSingleOcc\":35362.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12937.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12937.5,\"COSTSO\":35362.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":12842,\"priceDoubleOcc\":\"13800.00\",\"priceSingleOcc\":36225,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":13800,\"COSTSO\":36225,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13608,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":42550,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":14950,\"COSTSO\":42550,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13608,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":42550,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":14950,\"COSTSO\":42550,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13608,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":42550,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":14950,\"COSTSO\":42550,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13608,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":42550,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":14950,\"COSTSO\":42550,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13992,\"priceDoubleOcc\":\"15525.00\",\"priceSingleOcc\":43125,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15525,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":15525,\"COSTSO\":43125,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14758,\"priceDoubleOcc\":\"16675.00\",\"priceSingleOcc\":44275,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":16675,\"COSTSO\":44275,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11883,\"priceDoubleOcc\":\"12362.50\",\"priceSingleOcc\":34787.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12362.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12362.5,\"COSTSO\":34787.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11883,\"priceDoubleOcc\":\"12362.50\",\"priceSingleOcc\":34787.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12362.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12362.5,\"COSTSO\":34787.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11883,\"priceDoubleOcc\":\"12362.50\",\"priceSingleOcc\":34787.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12362.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12362.5,\"COSTSO\":34787.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11883,\"priceDoubleOcc\":\"12362.50\",\"priceSingleOcc\":34787.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12362.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12362.5,\"COSTSO\":34787.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12267,\"priceDoubleOcc\":\"12937.50\",\"priceSingleOcc\":35362.5,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12937.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":12937.5,\"COSTSO\":35362.5,\"ACEB\":10925,\"COSTTO\":10925},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12842,\"priceDoubleOcc\":\"13800.00\",\"priceSingleOcc\":36225,\"priceExtraBed\":\"10925.00\",\"priceWithoutBed\":\"9775.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9775,\"CEB\":10925,\"COSTDO\":13800,\"COSTSO\":36225,\"ACEB\":10925,\"COSTTO\":10925}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38301\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13225.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":13225,\"COSTSO\":37950,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":13225,\"COSTSO\":37950,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":13225,\"COSTSO\":37950,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":13225,\"COSTSO\":37950,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":13800,\"priceDoubleOcc\":\"14087.50\",\"priceSingleOcc\":38812.5,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14087.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":14087.5,\"COSTSO\":38812.5,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":14375,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":39675,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":14950,\"COSTSO\":39675,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15525,\"priceDoubleOcc\":\"16675.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":16675,\"COSTSO\":50025,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15525,\"priceDoubleOcc\":\"16675.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":16675,\"COSTSO\":50025,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15525,\"priceDoubleOcc\":\"16675.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":16675,\"COSTSO\":50025,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15525,\"priceDoubleOcc\":\"16675.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":16675,\"COSTSO\":50025,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15908,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50600,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":17250,\"COSTSO\":50600,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":16675,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":51750,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":18400,\"COSTSO\":51750,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":13225,\"COSTSO\":37950,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":13225,\"COSTSO\":37950,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":13225,\"COSTSO\":37950,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13225.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13225,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":13225,\"COSTSO\":37950,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13800,\"priceDoubleOcc\":\"14087.50\",\"priceSingleOcc\":38812.5,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14087.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":14087.5,\"COSTSO\":38812.5,\"ACEB\":13225,\"COSTTO\":13225},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14375,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":39675,\"priceExtraBed\":\"13225.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13225,\"COSTDO\":14950,\"COSTSO\":39675,\"ACEB\":13225,\"COSTTO\":13225}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38302\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17825.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":50887.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":17825,\"COSTSO\":50887.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":50887.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":17825,\"COSTSO\":50887.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":50887.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":17825,\"COSTSO\":50887.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":50887.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":17825,\"COSTSO\":50887.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":16867,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":51462.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":18400,\"COSTSO\":51462.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":17442,\"priceDoubleOcc\":\"19262.50\",\"priceSingleOcc\":52325,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19262.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":19262.5,\"COSTSO\":52325,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18400,\"priceDoubleOcc\":\"20700.00\",\"priceSingleOcc\":62100,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":20700,\"COSTSO\":62100,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18400,\"priceDoubleOcc\":\"20700.00\",\"priceSingleOcc\":62100,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":20700,\"COSTSO\":62100,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18400,\"priceDoubleOcc\":\"20700.00\",\"priceSingleOcc\":62100,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":20700,\"COSTSO\":62100,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18400,\"priceDoubleOcc\":\"20700.00\",\"priceSingleOcc\":62100,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":20700,\"COSTSO\":62100,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18975,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19742,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":64112.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":22712.5,\"COSTSO\":64112.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":51002.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":17825,\"COSTSO\":51002.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":51002.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":17825,\"COSTSO\":51002.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":51002.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":17825,\"COSTSO\":51002.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":51002.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":17825,\"COSTSO\":51002.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16867,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":51577.5,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":18400,\"COSTSO\":51577.5,\"ACEB\":13800,\"COSTTO\":13800},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17442,\"priceDoubleOcc\":\"19262.50\",\"priceSingleOcc\":52440,\"priceExtraBed\":\"13800.00\",\"priceWithoutBed\":\"10925.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19262.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10925,\"CEB\":13800,\"COSTDO\":19262.5,\"COSTSO\":52440,\"ACEB\":13800,\"COSTTO\":13800}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38299\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9936.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":9864,\"priceDoubleOcc\":\"9936.00\",\"priceSingleOcc\":27756,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9936,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":9936,\"COSTSO\":27756,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":9864,\"priceDoubleOcc\":\"9936.00\",\"priceSingleOcc\":27756,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9936,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":9936,\"COSTSO\":27756,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":9864,\"priceDoubleOcc\":\"9936.00\",\"priceSingleOcc\":27756,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9936,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":9936,\"COSTSO\":27756,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":9864,\"priceDoubleOcc\":\"9936.00\",\"priceSingleOcc\":27756,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9936,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":9936,\"COSTSO\":27756,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"10530.00\",\"priceSingleOcc\":28350,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":10530,\"COSTSO\":28350,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"11340.00\",\"priceSingleOcc\":29160,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":11340,\"COSTSO\":29160,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":11520,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35100,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":12420,\"COSTSO\":35100,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":11520,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35100,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":12420,\"COSTSO\":35100,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":11520,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35100,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":12420,\"COSTSO\":35100,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":11520,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35100,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":12420,\"COSTSO\":35100,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":11880,\"priceDoubleOcc\":\"12960.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12960,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":12960,\"COSTSO\":35640,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12600,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":36720,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":14040,\"COSTSO\":36720,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9864,\"priceDoubleOcc\":\"9936.00\",\"priceSingleOcc\":27756,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9936,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":9936,\"COSTSO\":27756,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9864,\"priceDoubleOcc\":\"9936.00\",\"priceSingleOcc\":27756,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9936,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":9936,\"COSTSO\":27756,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9864,\"priceDoubleOcc\":\"9936.00\",\"priceSingleOcc\":27756,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9936,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":9936,\"COSTSO\":27756,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":9864,\"priceDoubleOcc\":\"9936.00\",\"priceSingleOcc\":27756,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9936,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":9936,\"COSTSO\":27756,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10260,\"priceDoubleOcc\":\"10530.00\",\"priceSingleOcc\":28350,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":10530,\"COSTSO\":28350,\"ACEB\":9720,\"COSTTO\":9720},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10800,\"priceDoubleOcc\":\"11340.00\",\"priceSingleOcc\":29160,\"priceExtraBed\":\"9720.00\",\"priceWithoutBed\":\"8100.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8100,\"CEB\":9720,\"COSTDO\":11340,\"COSTSO\":29160,\"ACEB\":9720,\"COSTTO\":9720}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38300\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11610.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"11610.00\",\"priceSingleOcc\":32670,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":11610,\"COSTSO\":32670,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"11610.00\",\"priceSingleOcc\":32670,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":11610,\"COSTSO\":32670,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"11610.00\",\"priceSingleOcc\":32670,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":11610,\"COSTSO\":32670,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"11610.00\",\"priceSingleOcc\":32670,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":11610,\"COSTSO\":32670,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":11520,\"priceDoubleOcc\":\"12150.00\",\"priceSingleOcc\":33210,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":12150,\"COSTSO\":33210,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":12060,\"priceDoubleOcc\":\"12960.00\",\"priceSingleOcc\":34020,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12960,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":12960,\"COSTSO\":34020,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12780,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":39960,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":14040,\"COSTSO\":39960,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12780,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":39960,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":14040,\"COSTSO\":39960,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12780,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":39960,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":14040,\"COSTSO\":39960,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":12780,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":39960,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":14040,\"COSTSO\":39960,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13140,\"priceDoubleOcc\":\"14580.00\",\"priceSingleOcc\":40500,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":14580,\"COSTSO\":40500,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13860,\"priceDoubleOcc\":\"15660.00\",\"priceSingleOcc\":41580,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15660,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":15660,\"COSTSO\":41580,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"11610.00\",\"priceSingleOcc\":32670,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":11610,\"COSTSO\":32670,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"11610.00\",\"priceSingleOcc\":32670,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":11610,\"COSTSO\":32670,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"11610.00\",\"priceSingleOcc\":32670,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":11610,\"COSTSO\":32670,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11160,\"priceDoubleOcc\":\"11610.00\",\"priceSingleOcc\":32670,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11610,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":11610,\"COSTSO\":32670,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11520,\"priceDoubleOcc\":\"12150.00\",\"priceSingleOcc\":33210,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":12150,\"COSTSO\":33210,\"ACEB\":10260,\"COSTTO\":10260},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12060,\"priceDoubleOcc\":\"12960.00\",\"priceSingleOcc\":34020,\"priceExtraBed\":\"10260.00\",\"priceWithoutBed\":\"9180.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12960,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9180,\"CEB\":10260,\"COSTDO\":12960,\"COSTSO\":34020,\"ACEB\":10260,\"COSTTO\":10260}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38301\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12420.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":12420,\"COSTSO\":35640,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":12420,\"COSTSO\":35640,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":12420,\"COSTSO\":35640,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":12420,\"COSTSO\":35640,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":12960,\"priceDoubleOcc\":\"13230.00\",\"priceSingleOcc\":36450,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":13230,\"COSTSO\":36450,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":37260,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":14040,\"COSTSO\":37260,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14580,\"priceDoubleOcc\":\"15660.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15660,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":15660,\"COSTSO\":46980,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14580,\"priceDoubleOcc\":\"15660.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15660,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":15660,\"COSTSO\":46980,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14580,\"priceDoubleOcc\":\"15660.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15660,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":15660,\"COSTSO\":46980,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14580,\"priceDoubleOcc\":\"15660.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15660,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":15660,\"COSTSO\":46980,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14940,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":47520,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":16200,\"COSTSO\":47520,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15660,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":48600,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":17280,\"COSTSO\":48600,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":12420,\"COSTSO\":35640,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":12420,\"COSTSO\":35640,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":12420,\"COSTSO\":35640,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12420.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12420,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":12420,\"COSTSO\":35640,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12960,\"priceDoubleOcc\":\"13230.00\",\"priceSingleOcc\":36450,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13230,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":13230,\"COSTSO\":36450,\"ACEB\":12420,\"COSTTO\":12420},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":37260,\"priceExtraBed\":\"12420.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12420,\"COSTDO\":14040,\"COSTSO\":37260,\"ACEB\":12420,\"COSTTO\":12420}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38302\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16740.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47790,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":16740,\"COSTSO\":47790,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47790,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":16740,\"COSTSO\":47790,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47790,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":16740,\"COSTSO\":47790,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47790,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":16740,\"COSTSO\":47790,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":15840,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":48330,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":17280,\"COSTSO\":48330,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-08-04\",\"To\":\"2022-12-12\",\"Currency\":1,\"priceTripleOcc\":16380,\"priceDoubleOcc\":\"18090.00\",\"priceSingleOcc\":49140,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18090,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":18090,\"COSTSO\":49140,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17280,\"priceDoubleOcc\":\"19440.00\",\"priceSingleOcc\":58320,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":19440,\"COSTSO\":58320,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17280,\"priceDoubleOcc\":\"19440.00\",\"priceSingleOcc\":58320,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":19440,\"COSTSO\":58320,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17280,\"priceDoubleOcc\":\"19440.00\",\"priceSingleOcc\":58320,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":19440,\"COSTSO\":58320,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17280,\"priceDoubleOcc\":\"19440.00\",\"priceSingleOcc\":58320,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":19440,\"COSTSO\":58320,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17820,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2022-12-13\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18540,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":60210,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":21330,\"COSTSO\":60210,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47898,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":16740,\"COSTSO\":47898,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47898,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":16740,\"COSTSO\":47898,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47898,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":16740,\"COSTSO\":47898,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47898,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":16740,\"COSTSO\":47898,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15840,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":48438,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":17280,\"COSTSO\":48438,\"ACEB\":12960,\"COSTTO\":12960},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16380,\"priceDoubleOcc\":\"18090.00\",\"priceSingleOcc\":49248,\"priceExtraBed\":\"12960.00\",\"priceWithoutBed\":\"10260.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18090,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10260,\"CEB\":12960,\"COSTDO\":18090,\"COSTSO\":49248,\"ACEB\":12960,\"COSTTO\":12960}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;1. Personal Expenses like Telephone, Fax, Internet, Laundry.&lt;br \\/&gt;\\r\\n2. Camera Tickets at various places of Sightseeing\\/tour.&lt;br \\/&gt;\\r\\n3. Expenses incurred due to bad weather, Flight or ferry cancellation, &amp;amp; political unrest.&lt;br \\/&gt;\\r\\n4. Usage of Vehicles other than the mentioned places in the itinerary.&lt;br \\/&gt;\\r\\n5. Gala Dinner Charges if applied by any resort\\/hotel, However, these charges are Mandatory&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;1. GST and Other Taxes Included&lt;br \\/&gt;\\r\\n2. Expert Tour Coordinator At all Islands&lt;br \\/&gt;\\r\\n3.&amp;nbsp;Meal Plan&amp;nbsp;as per the&amp;nbsp;booking and as per the&amp;nbsp;hotel Policy&lt;br \\/&gt;\\r\\n4. Transportation Using Private AC Cab&amp;nbsp;at all respective Island&lt;br \\/&gt;\\r\\n5. All Sightseeing Programs are Accordingly as Mentioned&lt;br \\/&gt;\\r\\n6. Entry Permits\\/Entry Tickets\\/Boat Tickets\\/Ferry Tickets Wherever Required.&lt;br \\/&gt;\\r\\n7. 24 Hour On-Call Assistance During Your Stay&lt;br \\/&gt;\\r\\n8. Pvt Ferry (Makruzz\\/GreenOcean\\/SeaLink) for Inter-Island Transfer&lt;br \\/&gt;\\r\\n9. Assistance At All Arrival And Departure Points&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"273781\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[273781],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"273785\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[273785],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273789\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[273789],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"273793\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[273793],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273797\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[273797],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}},\"273801\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[273801],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Port Blair,Havelock Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island',NULL,'32511,11658',9936,22713,3,NULL,NULL,NULL,2,'',0,'2022-08-06 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-08-06 00:00:00','2022-08-06 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'weekend-getaways-to-andaman',NULL,NULL,NULL,0),(44,38308,1,12577,0,0,0,'Honeymoon,Adventure,Beach,Family,Sports,Cruise,Romantic,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":38308,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/amazing_andaman_1659101240.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":15,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":13144,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":13144,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"Andaman Ocean Tourism\",\"Name\":\"Amazing Andaman \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10313\",\"SupplierName\":\"Andaman Ocean Tourism\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours,Cruise,Ferry\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Sports,Cruise,Romantic,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-08-06\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":513554,\"Name\":\"Hotel Shompen (Symphony Resorts)\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6648405\",\"Long\":\"92.7390387\",\"Address\":\"02, Middle Point, Thomas Colony, Junglighat, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512365,\"Name\":\"Mansha Palace\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001000010101000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":511939,\"Name\":\"S R Castle\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513555,\"Name\":\"Resort Heritage MNR\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.622672\",\"Long\":\"92.7207597\",\"Address\":\"NH4, Pathergudda, Pahargaon, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Club Heritage \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":512072,\"Name\":\"White Coral Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.011609\",\"Long\":\"93.0076531\",\"Address\":\"No.5, Kalapathar Beach Road, Vijay nagar Havelock, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cottage\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513564,\"Name\":\"Sandyy Wavess Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0116977\",\"Long\":\"93.0071808\",\"Address\":\"No 5 Vijay Nagar No 5 Havelock island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513562,\"Name\":\"The Ocean Blue Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0233271\",\"Long\":\"93.00453979999999\",\"Address\":\"Vijay Nagar, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512074,\"Name\":\"Symphony Palms Beach Resort\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0275863\",\"Long\":\"93.0005855\",\"Address\":\"3, Govind Nagar Beach, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001101010100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Casa Grande\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":513569,\"Name\":\"Aquays Hotels & Resorts Neil Island\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Neil Plaza\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513567,\"Name\":\"CS empire\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8348846\",\"Long\":\"93.0275101\",\"Address\":\"Neil Island Jetty, Neil Kendra, Andaman and Nicobar Islands 744104, India\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"standard ac room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512379,\"Name\":\"Symphony Summer Sand Beach Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111101001011101100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Casa Earth\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"273830\",\"Title\":\"Arrival at Port Blair (Corbyns Cove - Jail Muesum - Cellular Jail Light and Sound Show)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Port Blair in the morning\\/afternoon by flight and our representative will be waiting outside holding a placard with your name on it. You will be taken to your hotel where you relax and rest. After some rest proceed to the nearest Beach, Corbyn&amp;amp;39s Cove. The Crescent shaped coconut palm fringed Corbyn&amp;amp;39s Cove ideal for swimming &amp;amp; bathing, a stretch of around 4 Km with an open sea towards your left is a sight to experience then you will visit the extremely popular Cellular Jail. An excursion to the jail will surely make your family holiday memorable. Formerly known as Kala Pani Later proceed to attend the enthralling Sound and Light Show at Cellular Jail - where the heroic saga of the Indian freedom struggle is brought alive. Enacting of freedom fighters and their struggle for India&amp;amp;39s Independence is enacted during this trip. Post completion of this trip, we drop you back to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273834\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273838\",\"Title\":\"Transfer from Port Blair to Havelock by Ferry and Radhanagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:112pt&quot;&gt;This Day of your Andaman tour starts early. You board the morning ferry from Port Blair to Havelock Island. Carry packed breakfast (Eat Light). This journey is of around 2 hours. On reaching, get transferred to the respective hotels to complete the check-in formalities. Unwind yourself.&lt;br \\/&gt;\\r\\n\\t\\t\\tIn the late afternoon, you visit the popular Radhanagar Beach, which is also known as Beach No 7. It was also rated as the &amp;amp;39Best Beach in Asia&amp;amp;39 by the Time Magazine. Sunset views appear truly magical from this beach. This beach is known as fine sand beach and has clear crystal water. Around 6 pm you will be received by our representative.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273842\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273846\",\"Title\":\"Transfer to Neil via Ferry  (Bharatpur beach and Laxmanpur Beach and Natural Coral Bridge)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:80pt&quot;&gt;Post breakfast in the morning, check out from the hotel. Board a ferry from Havelock and get transferred to Neil Island. On arrival, you will be transferred to the respective hotels for check-in. Your Andaman tour package allows you to enjoy a visit to the very popular Bharatpur beach and Laxmanpur Beach, and the famour natural rock formatted coral bridge in the evening.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513567,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":513569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Neil Plaza\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Earth\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":512379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Earth\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273850\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273854\",\"Title\":\"Transfer to Port Blair via Ferry  Shopping Complex\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Knock-Knock&amp;hellip;Wake up at your own time, have breakfast and explore the beauty of resort by your own, have some peaceful and leisure time and return back to Port Blair by afternoon ferry, upon reaching port Blair check inn and rest for a while., then proceed for Compementry tour to Shopping Complex for taking something special for your friends and family of beautiful Andaman and Nicobar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair. Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273858\",\"Title\":\"Departure from Port Blair - Drop to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:32pt&quot;&gt;After breakfast check out of the hotel and get transferred to the airport for your journey back home with unlimited memories.. See you soon!!!&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38308\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"12650.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":12458,\"priceDoubleOcc\":\"12650.00\",\"priceSingleOcc\":36800,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":12650,\"COSTSO\":36800,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":12458,\"priceDoubleOcc\":\"12650.00\",\"priceSingleOcc\":36800,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":12650,\"COSTSO\":36800,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":12458,\"priceDoubleOcc\":\"12650.00\",\"priceSingleOcc\":36800,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":12650,\"COSTSO\":36800,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":12458,\"priceDoubleOcc\":\"12650.00\",\"priceSingleOcc\":36800,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":12650,\"COSTSO\":36800,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13800.00\",\"priceSingleOcc\":37950,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":13800,\"COSTSO\":37950,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":13992,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":39100,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":14950,\"COSTSO\":39100,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14375,\"priceDoubleOcc\":\"15525.00\",\"priceSingleOcc\":45425,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15525,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":15525,\"COSTSO\":45425,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14375,\"priceDoubleOcc\":\"15525.00\",\"priceSingleOcc\":45425,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15525,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":15525,\"COSTSO\":45425,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14375,\"priceDoubleOcc\":\"15525.00\",\"priceSingleOcc\":45425,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15525,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":15525,\"COSTSO\":45425,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14375,\"priceDoubleOcc\":\"15525.00\",\"priceSingleOcc\":45425,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15525,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":15525,\"COSTSO\":45425,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15142,\"priceDoubleOcc\":\"16675.00\",\"priceSingleOcc\":46575,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16675,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":16675,\"COSTSO\":46575,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15908,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":47725,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":17825,\"COSTSO\":47725,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12458,\"priceDoubleOcc\":\"12650.00\",\"priceSingleOcc\":37375,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":12650,\"COSTSO\":37375,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12458,\"priceDoubleOcc\":\"12650.00\",\"priceSingleOcc\":37375,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":12650,\"COSTSO\":37375,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12458,\"priceDoubleOcc\":\"12650.00\",\"priceSingleOcc\":37375,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":12650,\"COSTSO\":37375,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12458,\"priceDoubleOcc\":\"12650.00\",\"priceSingleOcc\":37375,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":12650,\"COSTSO\":37375,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13225,\"priceDoubleOcc\":\"13800.00\",\"priceSingleOcc\":38525,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":13800,\"COSTSO\":38525,\"ACEB\":12075,\"COSTTO\":12075},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13992,\"priceDoubleOcc\":\"14950.00\",\"priceSingleOcc\":39675,\"priceExtraBed\":\"12075.00\",\"priceWithoutBed\":\"10580.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10580,\"CEB\":12075,\"COSTDO\":14950,\"COSTSO\":39675,\"ACEB\":12075,\"COSTTO\":12075}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38309\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15870.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":15257,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":45770,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":15870,\"COSTSO\":45770,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":15257,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":45770,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":15870,\"COSTSO\":45770,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":15257,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":45770,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":15870,\"COSTSO\":45770,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":15257,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":45770,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":15870,\"COSTSO\":45770,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":15640,\"priceDoubleOcc\":\"16445.00\",\"priceSingleOcc\":46345,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16445,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":16445,\"COSTSO\":46345,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":16407,\"priceDoubleOcc\":\"17595.00\",\"priceSingleOcc\":47495,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17595,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":17595,\"COSTSO\":47495,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":16943,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":53762.5,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":18400,\"COSTSO\":53762.5,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":16943,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":53762.5,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":18400,\"COSTSO\":53762.5,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":16943,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":53762.5,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":18400,\"COSTSO\":53762.5,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":16943,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":53762.5,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":18400,\"COSTSO\":53762.5,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17518,\"priceDoubleOcc\":\"19262.50\",\"priceSingleOcc\":54625,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19262.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":19262.5,\"COSTSO\":54625,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18285,\"priceDoubleOcc\":\"20412.50\",\"priceSingleOcc\":55775,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20412.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":20412.5,\"COSTSO\":55775,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15257,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":45770,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":15870,\"COSTSO\":45770,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15257,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":45770,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":15870,\"COSTSO\":45770,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15257,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":45770,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":15870,\"COSTSO\":45770,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15257,\"priceDoubleOcc\":\"15870.00\",\"priceSingleOcc\":45770,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":15870,\"COSTSO\":45770,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15640,\"priceDoubleOcc\":\"16445.00\",\"priceSingleOcc\":46345,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16445,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":16445,\"COSTSO\":46345,\"ACEB\":14030,\"COSTTO\":14030},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16407,\"priceDoubleOcc\":\"17595.00\",\"priceSingleOcc\":47495,\"priceExtraBed\":\"14030.00\",\"priceWithoutBed\":\"12190.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17595,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12190,\"CEB\":14030,\"COSTDO\":17595,\"COSTSO\":47495,\"ACEB\":14030,\"COSTTO\":14030}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38310\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":50025,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":50025,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":50025,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":50025,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":17633,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":50600,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":17825,\"COSTSO\":50600,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":18400,\"priceDoubleOcc\":\"18975.00\",\"priceSingleOcc\":51750,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18975,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":18975,\"COSTSO\":51750,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19550,\"priceDoubleOcc\":\"20700.00\",\"priceSingleOcc\":62100,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":20700,\"COSTSO\":62100,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19550,\"priceDoubleOcc\":\"20700.00\",\"priceSingleOcc\":62100,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":20700,\"COSTSO\":62100,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19550,\"priceDoubleOcc\":\"20700.00\",\"priceSingleOcc\":62100,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":20700,\"COSTSO\":62100,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19550,\"priceDoubleOcc\":\"20700.00\",\"priceSingleOcc\":62100,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":20700,\"COSTSO\":62100,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19933,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20700,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":63825,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17250,\"COSTDO\":22425,\"COSTSO\":63825,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":50025,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":50025,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":50025,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17250,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17250,\"COSTDO\":17250,\"COSTSO\":50025,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17633,\"priceDoubleOcc\":\"17825.00\",\"priceSingleOcc\":50600,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17250,\"COSTDO\":17825,\"COSTSO\":50600,\"ACEB\":17250,\"COSTTO\":17250},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18400,\"priceDoubleOcc\":\"18975.00\",\"priceSingleOcc\":51750,\"priceExtraBed\":\"17250.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18975,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17250,\"COSTDO\":18975,\"COSTSO\":51750,\"ACEB\":17250,\"COSTTO\":17250}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38311\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21562.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":20317,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":20317,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":20317,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":20317,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":20700,\"priceDoubleOcc\":\"22137.50\",\"priceSingleOcc\":63537.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22137.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":22137.5,\"COSTSO\":63537.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"23287.50\",\"priceSingleOcc\":64687.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23287.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":23287.5,\"COSTSO\":64687.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22617,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":75037.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25012.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":25012.5,\"COSTSO\":75037.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22617,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":75037.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25012.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":25012.5,\"COSTSO\":75037.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22617,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":75037.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25012.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":25012.5,\"COSTSO\":75037.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22617,\"priceDoubleOcc\":\"25012.50\",\"priceSingleOcc\":75037.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25012.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":25012.5,\"COSTSO\":75037.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23000,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":75612.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":25587.5,\"COSTSO\":75612.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23767,\"priceDoubleOcc\":\"26737.50\",\"priceSingleOcc\":76762.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"14375.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26737.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14375,\"CEB\":17825,\"COSTDO\":26737.5,\"COSTSO\":76762.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20317,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17825,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20317,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17825,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20317,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17825,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20317,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":62962.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17825,\"COSTDO\":21562.5,\"COSTSO\":62962.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20700,\"priceDoubleOcc\":\"22137.50\",\"priceSingleOcc\":63537.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22137.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17825,\"COSTDO\":22137.5,\"COSTSO\":63537.5,\"ACEB\":17825,\"COSTTO\":17825},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"23287.50\",\"priceSingleOcc\":64687.5,\"priceExtraBed\":\"17825.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23287.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":17825,\"COSTDO\":23287.5,\"COSTSO\":64687.5,\"ACEB\":17825,\"COSTTO\":17825}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38308\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"11880.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"11880.00\",\"priceSingleOcc\":34560,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":11880,\"COSTSO\":34560,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"11880.00\",\"priceSingleOcc\":34560,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":11880,\"COSTSO\":34560,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"11880.00\",\"priceSingleOcc\":34560,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":11880,\"COSTSO\":34560,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"11880.00\",\"priceSingleOcc\":34560,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":11880,\"COSTSO\":34560,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12960.00\",\"priceSingleOcc\":35640,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12960,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":12960,\"COSTSO\":35640,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":13140,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":36720,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":14040,\"COSTSO\":36720,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"14580.00\",\"priceSingleOcc\":42660,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":14580,\"COSTSO\":42660,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"14580.00\",\"priceSingleOcc\":42660,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":14580,\"COSTSO\":42660,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"14580.00\",\"priceSingleOcc\":42660,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":14580,\"COSTSO\":42660,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"14580.00\",\"priceSingleOcc\":42660,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14580,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":14580,\"COSTSO\":42660,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14220,\"priceDoubleOcc\":\"15660.00\",\"priceSingleOcc\":43740,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15660,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":15660,\"COSTSO\":43740,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":14940,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":44820,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":16740,\"COSTSO\":44820,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"11880.00\",\"priceSingleOcc\":35100,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":11880,\"COSTSO\":35100,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"11880.00\",\"priceSingleOcc\":35100,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":11880,\"COSTSO\":35100,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"11880.00\",\"priceSingleOcc\":35100,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":11880,\"COSTSO\":35100,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":11700,\"priceDoubleOcc\":\"11880.00\",\"priceSingleOcc\":35100,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11880,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":11880,\"COSTSO\":35100,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12420,\"priceDoubleOcc\":\"12960.00\",\"priceSingleOcc\":36180,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12960,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":12960,\"COSTSO\":36180,\"ACEB\":11340,\"COSTTO\":11340},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13140,\"priceDoubleOcc\":\"14040.00\",\"priceSingleOcc\":37260,\"priceExtraBed\":\"11340.00\",\"priceWithoutBed\":\"9936.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14040,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9936,\"CEB\":11340,\"COSTDO\":14040,\"COSTSO\":37260,\"ACEB\":11340,\"COSTTO\":11340}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38309\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"14904.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":14328,\"priceDoubleOcc\":\"14904.00\",\"priceSingleOcc\":42984,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14904,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":14904,\"COSTSO\":42984,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":14328,\"priceDoubleOcc\":\"14904.00\",\"priceSingleOcc\":42984,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14904,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":14904,\"COSTSO\":42984,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":14328,\"priceDoubleOcc\":\"14904.00\",\"priceSingleOcc\":42984,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14904,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":14904,\"COSTSO\":42984,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":14328,\"priceDoubleOcc\":\"14904.00\",\"priceSingleOcc\":42984,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14904,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":14904,\"COSTSO\":42984,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":14688,\"priceDoubleOcc\":\"15444.00\",\"priceSingleOcc\":43524,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15444,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":15444,\"COSTSO\":43524,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":15408,\"priceDoubleOcc\":\"16524.00\",\"priceSingleOcc\":44604,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16524,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":16524,\"COSTSO\":44604,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15912,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":50490,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":17280,\"COSTSO\":50490,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15912,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":50490,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":17280,\"COSTSO\":50490,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15912,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":50490,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":17280,\"COSTSO\":50490,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":15912,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":50490,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":17280,\"COSTSO\":50490,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":16452,\"priceDoubleOcc\":\"18090.00\",\"priceSingleOcc\":51300,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18090,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":18090,\"COSTSO\":51300,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17172,\"priceDoubleOcc\":\"19170.00\",\"priceSingleOcc\":52380,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19170,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":19170,\"COSTSO\":52380,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14328,\"priceDoubleOcc\":\"14904.00\",\"priceSingleOcc\":42984,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14904,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":14904,\"COSTSO\":42984,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14328,\"priceDoubleOcc\":\"14904.00\",\"priceSingleOcc\":42984,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14904,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":14904,\"COSTSO\":42984,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14328,\"priceDoubleOcc\":\"14904.00\",\"priceSingleOcc\":42984,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14904,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":14904,\"COSTSO\":42984,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14328,\"priceDoubleOcc\":\"14904.00\",\"priceSingleOcc\":42984,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14904,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":14904,\"COSTSO\":42984,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14688,\"priceDoubleOcc\":\"15444.00\",\"priceSingleOcc\":43524,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15444,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":15444,\"COSTSO\":43524,\"ACEB\":13176,\"COSTTO\":13176},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15408,\"priceDoubleOcc\":\"16524.00\",\"priceSingleOcc\":44604,\"priceExtraBed\":\"13176.00\",\"priceWithoutBed\":\"11448.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16524,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11448,\"CEB\":13176,\"COSTDO\":16524,\"COSTSO\":44604,\"ACEB\":13176,\"COSTTO\":13176}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38310\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":16200,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":16200,\"COSTSO\":46980,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":16200,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":16200,\"COSTSO\":46980,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":16200,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":16200,\"COSTSO\":46980,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":16200,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":16200,\"COSTSO\":46980,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":16560,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47520,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":16740,\"COSTSO\":47520,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":17280,\"priceDoubleOcc\":\"17820.00\",\"priceSingleOcc\":48600,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":17820,\"COSTSO\":48600,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18360,\"priceDoubleOcc\":\"19440.00\",\"priceSingleOcc\":58320,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":19440,\"COSTSO\":58320,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18360,\"priceDoubleOcc\":\"19440.00\",\"priceSingleOcc\":58320,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":19440,\"COSTSO\":58320,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18360,\"priceDoubleOcc\":\"19440.00\",\"priceSingleOcc\":58320,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":19440,\"COSTSO\":58320,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18360,\"priceDoubleOcc\":\"19440.00\",\"priceSingleOcc\":58320,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19440,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":19440,\"COSTSO\":58320,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18720,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19440,\"priceDoubleOcc\":\"21060.00\",\"priceSingleOcc\":59940,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16200,\"COSTDO\":21060,\"COSTSO\":59940,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16200,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16200,\"COSTDO\":16200,\"COSTSO\":46980,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16200,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16200,\"COSTDO\":16200,\"COSTSO\":46980,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16200,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16200,\"COSTDO\":16200,\"COSTSO\":46980,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16200,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16200,\"COSTDO\":16200,\"COSTSO\":46980,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16560,\"priceDoubleOcc\":\"16740.00\",\"priceSingleOcc\":47520,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16740,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16200,\"COSTDO\":16740,\"COSTSO\":47520,\"ACEB\":16200,\"COSTTO\":16200},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17280,\"priceDoubleOcc\":\"17820.00\",\"priceSingleOcc\":48600,\"priceExtraBed\":\"16200.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17820,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16200,\"COSTDO\":17820,\"COSTSO\":48600,\"ACEB\":16200,\"COSTTO\":16200}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38311\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20250.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":19080,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":19080,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":19080,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":19080,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":19440,\"priceDoubleOcc\":\"20790.00\",\"priceSingleOcc\":59670,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20790,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":20790,\"COSTSO\":59670,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-08-04\",\"To\":\"2022-12-11\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21870.00\",\"priceSingleOcc\":60750,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":21870,\"COSTSO\":60750,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21240,\"priceDoubleOcc\":\"23490.00\",\"priceSingleOcc\":70470,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":23490,\"COSTSO\":70470,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21240,\"priceDoubleOcc\":\"23490.00\",\"priceSingleOcc\":70470,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":23490,\"COSTSO\":70470,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21240,\"priceDoubleOcc\":\"23490.00\",\"priceSingleOcc\":70470,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":23490,\"COSTSO\":70470,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21240,\"priceDoubleOcc\":\"23490.00\",\"priceSingleOcc\":70470,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23490,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":23490,\"COSTSO\":70470,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21600,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":71010,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":24030,\"COSTSO\":71010,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2022-12-12\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22320,\"priceDoubleOcc\":\"25110.00\",\"priceSingleOcc\":72090,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25110,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16740,\"COSTDO\":25110,\"COSTSO\":72090,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19080,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16740,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19080,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16740,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19080,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16740,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19080,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":59130,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16740,\"COSTDO\":20250,\"COSTSO\":59130,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19440,\"priceDoubleOcc\":\"20790.00\",\"priceSingleOcc\":59670,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20790,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16740,\"COSTDO\":20790,\"COSTSO\":59670,\"ACEB\":16740,\"COSTTO\":16740},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21870.00\",\"priceSingleOcc\":60750,\"priceExtraBed\":\"16740.00\",\"priceWithoutBed\":\"12960.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12960,\"CEB\":16740,\"COSTDO\":21870,\"COSTSO\":60750,\"ACEB\":16740,\"COSTTO\":16740}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;1. Personal Expenses like Telephone, Fax, Internet, Laundry.&lt;br \\/&gt;\\r\\n2. Camera Tickets at various places of Sightseeing\\/tour.&lt;br \\/&gt;\\r\\n3. Expenses incurred due to bad weather, Flight or ferry cancellation, &amp;amp; political unrest.&lt;br \\/&gt;\\r\\n4. Usage of Vehicles other than the mentioned places in the itinerary.&lt;br \\/&gt;\\r\\n5. Gala Dinner Charges if applied by any resort\\/hotel, However, these charges are Mandatory&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;1. GST and Other Taxes Included&lt;br \\/&gt;\\r\\n2. Expert Tour Coordinator At all Islands&lt;br \\/&gt;\\r\\n3.&amp;nbsp;Meal Plan&amp;nbsp;as per the&amp;nbsp;booking and as per the&amp;nbsp;hotel Policy&lt;br \\/&gt;\\r\\n4. Transportation Using Private AC Cab&amp;nbsp;at all respective Island&lt;br \\/&gt;\\r\\n5. All Sightseeing Programs are Accordingly as Mentioned&lt;br \\/&gt;\\r\\n6. Entry Permits\\/Entry Tickets\\/Boat Tickets\\/Ferry Tickets Wherever Required.&lt;br \\/&gt;\\r\\n7. 24 Hour On-Call Assistance During Your Stay&lt;br \\/&gt;\\r\\n8. Pvt Ferry (Makruzz\\/GreenOcean\\/SeaLink) for Inter-Island Transfer&lt;br \\/&gt;\\r\\n9. Assistance At All Arrival And Departure Points&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"273830\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[273830],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273834\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[273834],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273838\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[273838],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273842\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[273842],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273846\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[273846],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273850\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[273850],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273854\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[273854],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273858\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[273858],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island',NULL,'32511,11658,34567',11880,26738,4,NULL,NULL,NULL,2,'',0,'2022-08-06 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-08-06 00:00:00','2022-08-06 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'amazing-andaman',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (45,38322,1,12577,0,0,0,'Honeymoon,Adventure,Beach,Family,Sports,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":38322,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/best_selling_andaman_1659157313.jpg\",\"BookingValidUntill\":\"2023-01-15\",\"AdvBookingDays\":21,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":13144,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":13144,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"Andaman Ocean Tourism\",\"Name\":\"Best Selling Andaman\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10313\",\"SupplierName\":\"Andaman Ocean Tourism\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Intercity Transfers,Sightseeing,Guided Tours,Speed Boat,Ferry\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Sports,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-08-06\",\"To\":\"2023-01-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":513554,\"Name\":\"Hotel Shompen (Symphony Resorts)\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6648405\",\"Long\":\"92.7390387\",\"Address\":\"02, Middle Point, Thomas Colony, Junglighat, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512365,\"Name\":\"Mansha Palace\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001000010101000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":511939,\"Name\":\"S R Castle\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSuper Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513555,\"Name\":\"Resort Heritage MNR\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.622672\",\"Long\":\"92.7207597\",\"Address\":\"NH4, Pathergudda, Pahargaon, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Club Heritage \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":512072,\"Name\":\"White Coral Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.011609\",\"Long\":\"93.0076531\",\"Address\":\"No.5, Kalapathar Beach Road, Vijay nagar Havelock, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cottage\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513564,\"Name\":\"Sandyy Wavess Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0116977\",\"Long\":\"93.0071808\",\"Address\":\"No 5 Vijay Nagar No 5 Havelock island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513562,\"Name\":\"The Ocean Blue Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0233271\",\"Long\":\"93.00453979999999\",\"Address\":\"Vijay Nagar, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512074,\"Name\":\"Symphony Palms Beach Resort\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0275863\",\"Long\":\"93.0005855\",\"Address\":\"3, Govind Nagar Beach, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001101010100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Casa Grande\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":513569,\"Name\":\"Aquays Hotels & Resorts Neil Island\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Neil Plaza\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513567,\"Name\":\"CS empire\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8348846\",\"Long\":\"93.0275101\",\"Address\":\"Neil Island Jetty, Neil Kendra, Andaman and Nicobar Islands 744104, India\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"standard ac room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512379,\"Name\":\"Symphony Summer Sand Beach Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111101001011101100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Casa Earth\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"273989\",\"Title\":\"Arrival at Port Blair (Corbyns Cove - Jail Muesum - Cellular Jail Light and Sound Show)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Port Blair in the morning\\/afternoon by flight and our representative will be waiting outside holding a placard with your name on it. You will be taken to your hotel where you relax and rest. After some rest proceed to the nearest Beach, Corbyn&amp;amp;39s Cove. The Crescent shaped coconut palm fringed Corbyn&amp;amp;39s Cove ideal for swimming &amp;amp; bathing, a stretch of around 4 Km with an open sea towards your left is a sight to experience then you will visit the extremely popular Cellular Jail. An excursion to the jail will surely make your family holiday memorable. Formerly known as Kala Pani Later proceed to attend the enthralling Sound and Light Show at Cellular Jail - where the heroic saga of the Indian freedom struggle is brought alive. Enacting of freedom fighters and their struggle for India&amp;amp;39s Independence is enacted during this trip. Post completion of this trip, we drop you back to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273993\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"273997\",\"Title\":\"Transfer from Port Blair to Havelock by Ferry and Radhanagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:112pt&quot;&gt;This Day of your Andaman tour starts early. You board the morning ferry from Port Blair to Havelock Island. Carry packed breakfast (Eat Light). This journey is of around 2 hours. On reaching, get transferred to the respective hotels to complete the check-in formalities. Unwind yourself.&lt;br \\/&gt;\\r\\n\\t\\t\\tIn the late afternoon, you visit the popular Radhanagar Beach, which is also known as Beach No 7. It was also rated as the &amp;amp;39Best Beach in Asia&amp;amp;39 by the Time Magazine. Sunset views appear truly magical from this beach. This beach is known as fine sand beach and has clear crystal water. Around 6 pm you will be received by our representative.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"274001\",\"Title\":\"Trip to Elephant Beach via Speed Boat (Ideal for Water Sports)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:128pt&quot;&gt;Wake up early on day 3 of the Andaman Nicobar trip. On this day, you are going for a memorable excursion to the beautiful Elephant beach. The car will come at 08:00 hours. Be ready as the boat will leave the jetty at 08:00-08-30 hours. The boat ride from Havelock Island to Elephant beach takes around 20-25 minutes. This surely is going to be an unforgettable Water Sports experience for you.&lt;br \\/&gt;\\r\\n\\t\\t\\tGet into the sports gear and get all set to explore the colorful underwater world. The reef close to the shore is around 1 meter deep and the larger reef is formed by an amazing variety of corals and marine life. After a few activites, you can simply relax at the beach. The atmosphere is serene and the sight is soothing. Do not forget to catch the beauty of this white-sand beach in your camera.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"274005\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"274009\",\"Title\":\"Transfer to Neil via Ferry  (Bharatpur beach and Laxmanpur Beach and Natural Coral Bridge)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:80pt&quot;&gt;Post breakfast in the morning, check out from the hotel. Board a ferry from Havelock and get transferred to Neil Island. On arrival, you will be transferred to the respective hotels for check-in. Your Andaman tour package allows you to enjoy a visit to the very popular Bharatpur beach and Laxmanpur Beach, and the famour natural rock formatted coral bridge in the evening.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513567,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"standard ac room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":513569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Neil Plaza\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Earth\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":512379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Earth\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"274013\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"274017\",\"Title\":\"Transfer to Port Blair via Ferry  Shopping Complex\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Knock-Knock&amp;hellip;Wake up at your own time, have breakfast and explore the beauty of resort by your own, have some peaceful and leisure time and return back to Port Blair by afternoon ferry, upon reaching port Blair check inn and rest for a while., then proceed for Compementry tour to Shopping Complex for taking something special for your friends and family of beautiful Andaman and Nicobar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair. Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"274021\",\"Title\":\"Departure from Port Blair - Drop to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:32pt&quot;&gt;After breakfast check out of the hotel and get transferred to the airport for your journey back home with unlimited memories.. See you soon!!!&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38322\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16962.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"16962.50\",\"priceSingleOcc\":48587.5,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":16962.5,\"COSTSO\":48587.5,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"16962.50\",\"priceSingleOcc\":48587.5,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":16962.5,\"COSTSO\":48587.5,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"16962.50\",\"priceSingleOcc\":48587.5,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":16962.5,\"COSTSO\":48587.5,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"16962.50\",\"priceSingleOcc\":48587.5,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":16962.5,\"COSTSO\":48587.5,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16675,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":48875,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":17250,\"COSTSO\":48875,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17442,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":18400,\"COSTSO\":50025,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18304,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":56350,\"priceExtraBed\":\"15812.50\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15812.5,\"COSTDO\":19550,\"COSTSO\":56350,\"ACEB\":15812.5,\"COSTTO\":15812.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18304,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":56350,\"priceExtraBed\":\"15812.50\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15812.5,\"COSTDO\":19550,\"COSTSO\":56350,\"ACEB\":15812.5,\"COSTTO\":15812.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18304,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":56350,\"priceExtraBed\":\"15812.50\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15812.5,\"COSTDO\":19550,\"COSTSO\":56350,\"ACEB\":15812.5,\"COSTTO\":15812.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18304,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":56350,\"priceExtraBed\":\"15812.50\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15812.5,\"COSTDO\":19550,\"COSTSO\":56350,\"ACEB\":15812.5,\"COSTTO\":15812.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"20125.00\",\"priceSingleOcc\":56925,\"priceExtraBed\":\"15812.50\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20125,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15812.5,\"COSTDO\":20125,\"COSTSO\":56925,\"ACEB\":15812.5,\"COSTTO\":15812.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19454,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":58075,\"priceExtraBed\":\"15812.50\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15812.5,\"COSTDO\":21275,\"COSTSO\":58075,\"ACEB\":15812.5,\"COSTTO\":15812.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"16962.50\",\"priceSingleOcc\":48587.5,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":16962.5,\"COSTSO\":48587.5,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"16962.50\",\"priceSingleOcc\":48587.5,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":16962.5,\"COSTSO\":48587.5,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"16962.50\",\"priceSingleOcc\":48587.5,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":16962.5,\"COSTSO\":48587.5,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16483,\"priceDoubleOcc\":\"16962.50\",\"priceSingleOcc\":48587.5,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":16962.5,\"COSTSO\":48587.5,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16675,\"priceDoubleOcc\":\"17250.00\",\"priceSingleOcc\":48875,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":17250,\"COSTSO\":48875,\"ACEB\":15525,\"COSTTO\":15525},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17442,\"priceDoubleOcc\":\"18400.00\",\"priceSingleOcc\":50025,\"priceExtraBed\":\"15525.00\",\"priceWithoutBed\":\"13512.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13512.5,\"CEB\":15525,\"COSTDO\":18400,\"COSTSO\":50025,\"ACEB\":15525,\"COSTTO\":15525}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38323\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":58650,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":19550,\"COSTSO\":58650,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":58650,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":19550,\"COSTSO\":58650,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":58650,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":19550,\"COSTSO\":58650,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":58650,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":19550,\"COSTSO\":58650,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19263,\"priceDoubleOcc\":\"20412.50\",\"priceSingleOcc\":59512.5,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20412.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":20412.5,\"COSTSO\":59512.5,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20029,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":60662.5,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":21562.5,\"COSTSO\":60662.5,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20604,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":65550,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":22425,\"COSTSO\":65550,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20604,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":65550,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":22425,\"COSTSO\":65550,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20604,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":65550,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":22425,\"COSTSO\":65550,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20604,\"priceDoubleOcc\":\"22425.00\",\"priceSingleOcc\":65550,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22425,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":22425,\"COSTSO\":65550,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21179,\"priceDoubleOcc\":\"23287.50\",\"priceSingleOcc\":66412.5,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23287.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":23287.5,\"COSTSO\":66412.5,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21946,\"priceDoubleOcc\":\"24437.50\",\"priceSingleOcc\":67562.5,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24437.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":24437.5,\"COSTSO\":67562.5,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":58650,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":19550,\"COSTSO\":58650,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":58650,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":19550,\"COSTSO\":58650,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":58650,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":19550,\"COSTSO\":58650,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18688,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":58650,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":19550,\"COSTSO\":58650,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19263,\"priceDoubleOcc\":\"20412.50\",\"priceSingleOcc\":59512.5,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20412.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":20412.5,\"COSTSO\":59512.5,\"ACEB\":16962.5,\"COSTTO\":16962.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20029,\"priceDoubleOcc\":\"21562.50\",\"priceSingleOcc\":60662.5,\"priceExtraBed\":\"16962.50\",\"priceWithoutBed\":\"15237.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21562.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15237.5,\"CEB\":16962.5,\"COSTDO\":21562.5,\"COSTSO\":60662.5,\"ACEB\":16962.5,\"COSTTO\":16962.5}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38324\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21275.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21275,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21275,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21275,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21275,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21850,\"priceDoubleOcc\":\"22137.50\",\"priceSingleOcc\":63537.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22137.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":22137.5,\"COSTSO\":63537.5,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":22617,\"priceDoubleOcc\":\"23287.50\",\"priceSingleOcc\":64687.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23287.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":23287.5,\"COSTSO\":64687.5,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23479,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74750,\"priceExtraBed\":\"20987.50\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":20987.5,\"COSTDO\":24725,\"COSTSO\":74750,\"ACEB\":20987.5,\"COSTTO\":20987.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23479,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74750,\"priceExtraBed\":\"20987.50\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":20987.5,\"COSTDO\":24725,\"COSTSO\":74750,\"ACEB\":20987.5,\"COSTTO\":20987.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23479,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74750,\"priceExtraBed\":\"20987.50\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":20987.5,\"COSTDO\":24725,\"COSTSO\":74750,\"ACEB\":20987.5,\"COSTTO\":20987.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23479,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74750,\"priceExtraBed\":\"20987.50\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":20987.5,\"COSTDO\":24725,\"COSTSO\":74750,\"ACEB\":20987.5,\"COSTTO\":20987.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23863,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":75325,\"priceExtraBed\":\"20987.50\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":20987.5,\"COSTDO\":25300,\"COSTSO\":75325,\"ACEB\":20987.5,\"COSTTO\":20987.5},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":24821,\"priceDoubleOcc\":\"26737.50\",\"priceSingleOcc\":76762.5,\"priceExtraBed\":\"20987.50\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26737.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":20987.5,\"COSTDO\":26737.5,\"COSTSO\":76762.5,\"ACEB\":20987.5,\"COSTTO\":20987.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21275,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":21275,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21275,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":21275,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21275,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":21275,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21275,\"priceDoubleOcc\":\"21275.00\",\"priceSingleOcc\":62675,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21275,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":21275,\"COSTDO\":21275,\"COSTSO\":62675,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21850,\"priceDoubleOcc\":\"22137.50\",\"priceSingleOcc\":63537.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22137.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":21275,\"COSTDO\":22137.5,\"COSTSO\":63537.5,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22617,\"priceDoubleOcc\":\"23287.50\",\"priceSingleOcc\":64687.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23287.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":21275,\"COSTDO\":23287.5,\"COSTSO\":64687.5,\"ACEB\":21275,\"COSTTO\":21275}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38325\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":25492,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":81650,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":27600,\"COSTSO\":81650,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":25492,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":81650,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":27600,\"COSTSO\":81650,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":25492,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":81650,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":27600,\"COSTSO\":81650,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":25492,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":81650,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":27600,\"COSTSO\":81650,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":26067,\"priceDoubleOcc\":\"28462.50\",\"priceSingleOcc\":82512.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28462.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":28462.5,\"COSTSO\":82512.5,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":26833,\"priceDoubleOcc\":\"29612.50\",\"priceSingleOcc\":83662.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29612.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":29612.5,\"COSTSO\":83662.5,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28175,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":94300,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":21275,\"COSTDO\":31625,\"COSTSO\":94300,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28175,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":94300,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":21275,\"COSTDO\":31625,\"COSTSO\":94300,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28175,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":94300,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":21275,\"COSTDO\":31625,\"COSTSO\":94300,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28175,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":94300,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":21275,\"COSTDO\":31625,\"COSTSO\":94300,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28175,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":94300,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":21275,\"COSTDO\":31625,\"COSTSO\":94300,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":29133,\"priceDoubleOcc\":\"33062.50\",\"priceSingleOcc\":95737.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"1725.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33062.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1725,\"CEB\":21275,\"COSTDO\":33062.5,\"COSTSO\":95737.5,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25492,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":81650,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":27600,\"COSTSO\":81650,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25492,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":81650,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":27600,\"COSTSO\":81650,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25492,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":81650,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":27600,\"COSTSO\":81650,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25492,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":81650,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":27600,\"COSTSO\":81650,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26067,\"priceDoubleOcc\":\"28462.50\",\"priceSingleOcc\":82512.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28462.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":28462.5,\"COSTSO\":82512.5,\"ACEB\":21275,\"COSTTO\":21275},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26833,\"priceDoubleOcc\":\"29612.50\",\"priceSingleOcc\":83662.5,\"priceExtraBed\":\"21275.00\",\"priceWithoutBed\":\"17250.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29612.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17250,\"CEB\":21275,\"COSTDO\":29612.5,\"COSTSO\":83662.5,\"ACEB\":21275,\"COSTTO\":21275}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38322\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15930.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":45630,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":15930,\"COSTSO\":45630,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":45630,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":15930,\"COSTSO\":45630,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":45630,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":15930,\"COSTSO\":45630,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":45630,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":15930,\"COSTSO\":45630,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":15660,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":45900,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":16200,\"COSTSO\":45900,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":16380,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":17280,\"COSTSO\":46980,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17190,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":52920,\"priceExtraBed\":\"14850.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14850,\"COSTDO\":18360,\"COSTSO\":52920,\"ACEB\":14850,\"COSTTO\":14850},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17190,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":52920,\"priceExtraBed\":\"14850.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14850,\"COSTDO\":18360,\"COSTSO\":52920,\"ACEB\":14850,\"COSTTO\":14850},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17190,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":52920,\"priceExtraBed\":\"14850.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14850,\"COSTDO\":18360,\"COSTSO\":52920,\"ACEB\":14850,\"COSTTO\":14850},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17190,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":52920,\"priceExtraBed\":\"14850.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14850,\"COSTDO\":18360,\"COSTSO\":52920,\"ACEB\":14850,\"COSTTO\":14850},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18900.00\",\"priceSingleOcc\":53460,\"priceExtraBed\":\"14850.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14850,\"COSTDO\":18900,\"COSTSO\":53460,\"ACEB\":14850,\"COSTTO\":14850},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18270,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":54540,\"priceExtraBed\":\"14850.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14850,\"COSTDO\":19980,\"COSTSO\":54540,\"ACEB\":14850,\"COSTTO\":14850},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":45630,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":15930,\"COSTSO\":45630,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":45630,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":15930,\"COSTSO\":45630,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":45630,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":15930,\"COSTSO\":45630,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15480,\"priceDoubleOcc\":\"15930.00\",\"priceSingleOcc\":45630,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15930,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":15930,\"COSTSO\":45630,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15660,\"priceDoubleOcc\":\"16200.00\",\"priceSingleOcc\":45900,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":16200,\"COSTSO\":45900,\"ACEB\":14580,\"COSTTO\":14580},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16380,\"priceDoubleOcc\":\"17280.00\",\"priceSingleOcc\":46980,\"priceExtraBed\":\"14580.00\",\"priceWithoutBed\":\"12690.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17280,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12690,\"CEB\":14580,\"COSTDO\":17280,\"COSTSO\":46980,\"ACEB\":14580,\"COSTTO\":14580}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38323\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18360.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":55080,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":18360,\"COSTSO\":55080,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":55080,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":18360,\"COSTSO\":55080,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":55080,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":18360,\"COSTSO\":55080,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":55080,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":18360,\"COSTSO\":55080,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18090,\"priceDoubleOcc\":\"19170.00\",\"priceSingleOcc\":55890,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19170,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":19170,\"COSTSO\":55890,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":18810,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":56970,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":20250,\"COSTSO\":56970,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19350,\"priceDoubleOcc\":\"21060.00\",\"priceSingleOcc\":61560,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":21060,\"COSTSO\":61560,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19350,\"priceDoubleOcc\":\"21060.00\",\"priceSingleOcc\":61560,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":21060,\"COSTSO\":61560,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19350,\"priceDoubleOcc\":\"21060.00\",\"priceSingleOcc\":61560,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":21060,\"COSTSO\":61560,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19350,\"priceDoubleOcc\":\"21060.00\",\"priceSingleOcc\":61560,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21060,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":21060,\"COSTSO\":61560,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19890,\"priceDoubleOcc\":\"21870.00\",\"priceSingleOcc\":62370,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":21870,\"COSTSO\":62370,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20610,\"priceDoubleOcc\":\"22950.00\",\"priceSingleOcc\":63450,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":22950,\"COSTSO\":63450,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":55080,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":18360,\"COSTSO\":55080,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":55080,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":18360,\"COSTSO\":55080,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":55080,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":18360,\"COSTSO\":55080,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17550,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":55080,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":18360,\"COSTSO\":55080,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18090,\"priceDoubleOcc\":\"19170.00\",\"priceSingleOcc\":55890,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19170,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":19170,\"COSTSO\":55890,\"ACEB\":15930,\"COSTTO\":15930},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18810,\"priceDoubleOcc\":\"20250.00\",\"priceSingleOcc\":56970,\"priceExtraBed\":\"15930.00\",\"priceWithoutBed\":\"14310.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14310,\"CEB\":15930,\"COSTDO\":20250,\"COSTSO\":56970,\"ACEB\":15930,\"COSTTO\":15930}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38324\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19980.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19980,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19980,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19980,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":19980,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":20520,\"priceDoubleOcc\":\"20790.00\",\"priceSingleOcc\":59670,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20790,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":20790,\"COSTSO\":59670,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":21240,\"priceDoubleOcc\":\"21870.00\",\"priceSingleOcc\":60750,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":21870,\"COSTSO\":60750,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22050,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":70200,\"priceExtraBed\":\"19710.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19710,\"COSTDO\":23220,\"COSTSO\":70200,\"ACEB\":19710,\"COSTTO\":19710},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22050,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":70200,\"priceExtraBed\":\"19710.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19710,\"COSTDO\":23220,\"COSTSO\":70200,\"ACEB\":19710,\"COSTTO\":19710},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22050,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":70200,\"priceExtraBed\":\"19710.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19710,\"COSTDO\":23220,\"COSTSO\":70200,\"ACEB\":19710,\"COSTTO\":19710},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22050,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":70200,\"priceExtraBed\":\"19710.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19710,\"COSTDO\":23220,\"COSTSO\":70200,\"ACEB\":19710,\"COSTTO\":19710},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22410,\"priceDoubleOcc\":\"23760.00\",\"priceSingleOcc\":70740,\"priceExtraBed\":\"19710.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19710,\"COSTDO\":23760,\"COSTSO\":70740,\"ACEB\":19710,\"COSTTO\":19710},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23310,\"priceDoubleOcc\":\"25110.00\",\"priceSingleOcc\":72090,\"priceExtraBed\":\"19710.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25110,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19710,\"COSTDO\":25110,\"COSTSO\":72090,\"ACEB\":19710,\"COSTTO\":19710},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19980,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19980,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19980,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19980,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19980,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19980,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19980,\"priceDoubleOcc\":\"19980.00\",\"priceSingleOcc\":58860,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19980,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19980,\"COSTDO\":19980,\"COSTSO\":58860,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20520,\"priceDoubleOcc\":\"20790.00\",\"priceSingleOcc\":59670,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20790,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19980,\"COSTDO\":20790,\"COSTSO\":59670,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21240,\"priceDoubleOcc\":\"21870.00\",\"priceSingleOcc\":60750,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21870,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":19980,\"COSTDO\":21870,\"COSTSO\":60750,\"ACEB\":19980,\"COSTTO\":19980}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38325\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25920.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":23940,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":76680,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":25920,\"COSTSO\":76680,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":23940,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":76680,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":25920,\"COSTSO\":76680,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":23940,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":76680,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":25920,\"COSTSO\":76680,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":23940,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":76680,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":25920,\"COSTSO\":76680,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":24480,\"priceDoubleOcc\":\"26730.00\",\"priceSingleOcc\":77490,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":26730,\"COSTSO\":77490,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-08-04\",\"To\":\"2022-12-10\",\"Currency\":1,\"priceTripleOcc\":25200,\"priceDoubleOcc\":\"27810.00\",\"priceSingleOcc\":78570,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27810,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":27810,\"COSTSO\":78570,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26460,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":88560,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":19980,\"COSTDO\":29700,\"COSTSO\":88560,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26460,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":88560,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":19980,\"COSTDO\":29700,\"COSTSO\":88560,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26460,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":88560,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":19980,\"COSTDO\":29700,\"COSTSO\":88560,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26460,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":88560,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":19980,\"COSTDO\":29700,\"COSTSO\":88560,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26460,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":88560,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":19980,\"COSTDO\":29700,\"COSTSO\":88560,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2022-12-11\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":27360,\"priceDoubleOcc\":\"31050.00\",\"priceSingleOcc\":89910,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"1620.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1620,\"CEB\":19980,\"COSTDO\":31050,\"COSTSO\":89910,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23940,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":76680,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":25920,\"COSTSO\":76680,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23940,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":76680,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":25920,\"COSTSO\":76680,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23940,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":76680,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":25920,\"COSTSO\":76680,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23940,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":76680,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":25920,\"COSTSO\":76680,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24480,\"priceDoubleOcc\":\"26730.00\",\"priceSingleOcc\":77490,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":26730,\"COSTSO\":77490,\"ACEB\":19980,\"COSTTO\":19980},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25200,\"priceDoubleOcc\":\"27810.00\",\"priceSingleOcc\":78570,\"priceExtraBed\":\"19980.00\",\"priceWithoutBed\":\"16200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27810,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16200,\"CEB\":19980,\"COSTDO\":27810,\"COSTSO\":78570,\"ACEB\":19980,\"COSTTO\":19980}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"&lt;p&gt;1. Personal Expenses like Telephone, Fax, Internet, Laundry.&lt;br \\/&gt;\\r\\n2. Camera Tickets at various places of Sightseeing\\/tour.&lt;br \\/&gt;\\r\\n3. Expenses incurred due to bad weather, Flight or ferry cancellation, &amp;amp; political unrest.&lt;br \\/&gt;\\r\\n4. Usage of Vehicles other than the mentioned places in the itinerary.&lt;br \\/&gt;\\r\\n5. Gala Dinner Charges if applied by any resort\\/hotel, However, these charges are Mandatory&lt;\\/p&gt;\\r\\n\",\"Inclusion\":\"&lt;p&gt;1. GST and Other Taxes Included&lt;br \\/&gt;\\r\\n2. Expert Tour Coordinator At all Islands&lt;br \\/&gt;\\r\\n3.&amp;nbsp;Meal Plan&amp;nbsp;as per the&amp;nbsp;booking and as per the&amp;nbsp;hotel Policy&lt;br \\/&gt;\\r\\n4. Transportation Using Private AC Cab&amp;nbsp;at all respective Island&lt;br \\/&gt;\\r\\n5. All Sightseeing Programs are Accordingly as Mentioned&lt;br \\/&gt;\\r\\n6. Entry Permits\\/Entry Tickets\\/Boat Tickets\\/Ferry Tickets Wherever Required.&lt;br \\/&gt;\\r\\n7. 24 Hour On-Call Assistance During Your Stay&lt;br \\/&gt;\\r\\n8. Pvt Ferry (Makruzz\\/GreenOcean\\/SeaLink) for Inter-Island Transfer&lt;br \\/&gt;\\r\\n9. Assistance At All Arrival And Departure Points&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"273989\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[273989],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273993\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[273993],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"273997\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[273997],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"274001\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[274001],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"274005\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[274005],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"274009\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[274009],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"274013\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[274013],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"274017\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[274017],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"274021\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[274021],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island,Andaman Island',NULL,'32511,11658,34567',15930,33063,5,NULL,NULL,NULL,2,'',0,'2022-08-06 00:00:00','2023-01-15 00:00:00','2023-01-15 00:00:00',3,'India','101','2022-08-06 00:00:00','2022-08-06 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'best-selling-andaman',NULL,NULL,NULL,0),(46,38559,1,12577,0,0,0,'Honeymoon,Adventure,Beach,Family,Sports,Cruise,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":38559,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/exotic_7_days_andaman_1659518260.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":21,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":13144,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":13144,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"Andaman Ocean Tourism\",\"Name\":\"Exotic 7 Days Andaman\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10313\",\"SupplierName\":\"Andaman Ocean Tourism\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours,Cruise,Speed Boat,Ferry\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Sports,Cruise,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-08-06\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":513554,\"Name\":\"Hotel Shompen (Symphony Resorts)\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6648405\",\"Long\":\"92.7390387\",\"Address\":\"02, Middle Point, Thomas Colony, Junglighat, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":511939,\"Name\":\"S R Castle\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512365,\"Name\":\"Mansha Palace\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001000010101000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513555,\"Name\":\"Resort Heritage MNR\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.622672\",\"Long\":\"92.7207597\",\"Address\":\"NH4, Pathergudda, Pahargaon, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":514368,\"Name\":\"Hotel Marina Manor\",\"Star\":\"3.00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6597603\",\"Long\":\"92.7315332\",\"Address\":\"Junglighat, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":512072,\"Name\":\"White Coral Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.011609\",\"Long\":\"93.0076531\",\"Address\":\"No.5, Kalapathar Beach Road, Vijay nagar Havelock, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cottage\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513564,\"Name\":\"Sandyy Wavess Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0116977\",\"Long\":\"93.0071808\",\"Address\":\"No 5 Vijay Nagar No 5 Havelock island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513562,\"Name\":\"The Ocean Blue Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0233271\",\"Long\":\"93.00453979999999\",\"Address\":\"Vijay Nagar, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512074,\"Name\":\"Symphony Palms Beach Resort\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0275863\",\"Long\":\"93.0005855\",\"Address\":\"3, Govind Nagar Beach, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001101010100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Casa Grande\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":513569,\"Name\":\"Aquays Hotels & Resorts Neil Island\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Neil Plaza\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512379,\"Name\":\"Symphony Summer Sand Beach Resort\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111101001011101100000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":11,\"Title\":\"Nightclub\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Casa Earth\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513567,\"Name\":\"CS empire\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.8348846\",\"Long\":\"93.0275101\",\"Address\":\"Neil Island Jetty, Neil Kendra, Andaman and Nicobar Islands 744104, India\"},\"Images\":[],\"CityId\":34567,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Std AC Room\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"275793\",\"Title\":\"Arrival at Port Blair (Corbyns Cove - Jail Muesum - Cellular Jail Light and Sound Show)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Port Blair in the morning\\/afternoon by flight and our representative will be waiting outside holding a placard with your name on it. You will be taken to your hotel where you relax and rest. After some rest proceed to the nearest Beach, Corbyn&amp;amp;39s Cove. The Crescent shaped coconut palm fringed Corbyn&amp;amp;39s Cove ideal for swimming &amp;amp; bathing, a stretch of around 4 Km with an open sea towards your left is a sight to experience then you will visit the extremely popular Cellular Jail. An excursion to the jail will surely make your family holiday memorable. Formerly known as Kala Pani Later proceed to attend the enthralling Sound and Light Show at Cellular Jail - where the heroic saga of the Indian freedom struggle is brought alive. Enacting of freedom fighters and their struggle for India&amp;amp;39s Independence is enacted during this trip. Post completion of this trip, we drop you back to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275797\",\"Title\":\"Tour to Ross and North Bay Island (Closed on Wednesday)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:112pt&quot;&gt;This tour starts in the morning at around 9 am and ends at around 4 pm in the evening. The journey from&amp;nbsp; Aberdeen Jetty, Port Blair to the islands is covered in a boat. It takes 30-40 min to reach North Bay Island where you spend 2-3 hours. On this Island, you can participate in various water-activities like Scuba Diving, Sea Walk, Snorkeling and Glass Boat Ride etc ( not included in the cost).&lt;br \\/&gt;\\r\\n\\t\\t\\tAfter exploring North Bay, the boat proceeds to Ross Island. Do not forget to go through Japanese Bunker which was built by them during the 2nd world war. It takes 30min to reach Ross Island where you spend 2-3 hours.&lt;br \\/&gt;\\r\\n\\t\\t\\tThe boat then brings you back to Port Blair Water Sports Complex. From there you are dropped back to your hotel.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":514368,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"},{\"IsIncluded\":false,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275801\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275805\",\"Title\":\"Transfer from Port Blair to Havelock by Ferry and Radhanagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:112pt&quot;&gt;This Day of your Andaman tour starts early. You board the morning ferry from Port Blair to Havelock Island. Carry packed breakfast (Eat Light). This journey is of around 2 hours. On reaching, get transferred to the respective hotels to complete the check-in formalities. Unwind yourself.&lt;br \\/&gt;\\r\\n\\t\\t\\tIn the late afternoon, you visit the popular Radhanagar Beach, which is also known as Beach No 7. It was also rated as the &amp;amp;39Best Beach in Asia&amp;amp;39 by the Time Magazine. Sunset views appear truly magical from this beach. This beach is known as fine sand beach and has clear crystal water. Around 6 pm you will be received by our representative.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275809\",\"Title\":\"Trip to Elephant Beach via Speed Boat (Ideal for Water Sports)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:128pt&quot;&gt;Wake up early on day 3 of the Andaman Nicobar trip. On this day, you are going for a memorable excursion to the beautiful Elephant beach. The car will come at 08:00 hours. Be ready as the boat will leave the jetty at 08:00-08-30 hours. The boat ride from Havelock Island to Elephant beach takes around 20-25 minutes. This surely is going to be an unforgettable Water Sports experience for you.&lt;br \\/&gt;\\r\\n\\t\\t\\tGet into the sports gear and get all set to explore the colorful underwater world. The reef close to the shore is around 1 meter deep and the larger reef is formed by an amazing variety of corals and marine life. After a few activites, you can simply relax at the beach. The atmosphere is serene and the sight is soothing. Do not forget to catch the beauty of this white-sand beach in your camera.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275813\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275817\",\"Title\":\"Transfer to Neil via Ferry  (Bharatpur beach and Laxmanpur Beach and Natural Coral Bridge)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:80pt&quot;&gt;Post breakfast in the morning, check out from the hotel. Board a ferry from Havelock and get transferred to Neil Island. On arrival, you will be transferred to the respective hotels for check-in. Your Andaman tour package allows you to enjoy a visit to the very popular Bharatpur beach and Laxmanpur Beach, and the famour natural rock formatted coral bridge in the evening.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513567,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Std AC Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":513569,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Neil Plaza\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512379,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Earth\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275821\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275825\",\"Title\":\"Transfer to Port Blair via Ferry  Shopping Complex\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Knock-Knock&amp;hellip;Wake up at your own time, have breakfast and explore the beauty of resort by your own, have some peaceful and leisure time and return back to Port Blair by afternoon ferry, upon reaching port Blair check inn and rest for a while., then proceed for Compementry tour to Shopping Complex for taking something special for your friends and family of beautiful Andaman and Nicobar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair. Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"275848\",\"Title\":\"Departure from Port Blair - Drop to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:32pt&quot;&gt;After breakfast check out of the hotel and get transferred to the airport for your journey back home with unlimited memories.. See you soon!!!&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38559\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19550.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":18630,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":57270,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":19550,\"COSTSO\":57270,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":18630,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":57270,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":19550,\"COSTSO\":57270,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":18630,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":57270,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":19550,\"COSTSO\":57270,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":18630,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":57270,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":19550,\"COSTSO\":57270,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":19205,\"priceDoubleOcc\":\"20412.50\",\"priceSingleOcc\":58132.5,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20412.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":20412.5,\"COSTSO\":58132.5,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":19895,\"priceDoubleOcc\":\"21447.50\",\"priceSingleOcc\":59167.5,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21447.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":21447.5,\"COSTSO\":59167.5,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20163,\"priceDoubleOcc\":\"21850.00\",\"priceSingleOcc\":65550,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":21850,\"COSTSO\":65550,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20163,\"priceDoubleOcc\":\"21850.00\",\"priceSingleOcc\":65550,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":21850,\"COSTSO\":65550,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20163,\"priceDoubleOcc\":\"21850.00\",\"priceSingleOcc\":65550,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":21850,\"COSTSO\":65550,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20163,\"priceDoubleOcc\":\"21850.00\",\"priceSingleOcc\":65550,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":21850,\"COSTSO\":65550,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20738,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":66412.5,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":22712.5,\"COSTSO\":66412.5,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21697,\"priceDoubleOcc\":\"24150.00\",\"priceSingleOcc\":67850,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":24150,\"COSTSO\":67850,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18630,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":57270,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":19550,\"COSTSO\":57270,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18630,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":57270,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":19550,\"COSTSO\":57270,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18630,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":57270,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":19550,\"COSTSO\":57270,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18630,\"priceDoubleOcc\":\"19550.00\",\"priceSingleOcc\":57270,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":19550,\"COSTSO\":57270,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19205,\"priceDoubleOcc\":\"20412.50\",\"priceSingleOcc\":58132.5,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20412.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":20412.5,\"COSTSO\":58132.5,\"ACEB\":16790,\"COSTTO\":16790},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19895,\"priceDoubleOcc\":\"21447.50\",\"priceSingleOcc\":59167.5,\"priceExtraBed\":\"16790.00\",\"priceWithoutBed\":\"15065.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21447.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15065,\"CEB\":16790,\"COSTDO\":21447.5,\"COSTSO\":59167.5,\"ACEB\":16790,\"COSTTO\":16790}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38560\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22712.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":68137.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":22712.5,\"COSTSO\":68137.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":68137.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":22712.5,\"COSTSO\":68137.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":68137.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":22712.5,\"COSTSO\":68137.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":68137.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":22712.5,\"COSTSO\":68137.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":22042,\"priceDoubleOcc\":\"23575.00\",\"priceSingleOcc\":69000,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23575,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":23575,\"COSTSO\":69000,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":23115,\"priceDoubleOcc\":\"25185.00\",\"priceSingleOcc\":70610,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25185,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":25185,\"COSTSO\":70610,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23192,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":74750,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":25300,\"COSTSO\":74750,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23192,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":74750,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":25300,\"COSTSO\":74750,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23192,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":74750,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":25300,\"COSTSO\":74750,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23192,\"priceDoubleOcc\":\"25300.00\",\"priceSingleOcc\":74750,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":25300,\"COSTSO\":74750,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23767,\"priceDoubleOcc\":\"26162.50\",\"priceSingleOcc\":75612.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26162.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":26162.5,\"COSTSO\":75612.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":24955,\"priceDoubleOcc\":\"27945.00\",\"priceSingleOcc\":77395,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27945,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":27945,\"COSTSO\":77395,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":67907.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":22712.5,\"COSTSO\":67907.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":67907.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":22712.5,\"COSTSO\":67907.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":67907.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":22712.5,\"COSTSO\":67907.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21467,\"priceDoubleOcc\":\"22712.50\",\"priceSingleOcc\":67907.5,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22712.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":22712.5,\"COSTSO\":67907.5,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22042,\"priceDoubleOcc\":\"23575.00\",\"priceSingleOcc\":68770,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23575,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":23575,\"COSTSO\":68770,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23115,\"priceDoubleOcc\":\"25185.00\",\"priceSingleOcc\":70380,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16675.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25185,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16675,\"CEB\":18975,\"COSTDO\":25185,\"COSTSO\":70380,\"ACEB\":18975,\"COSTTO\":18975}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38561\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24725.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":24438,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74175,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":24725,\"COSTSO\":74175,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":24438,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74175,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":24725,\"COSTSO\":74175,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":24438,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74175,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":24725,\"COSTSO\":74175,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":24438,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74175,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":24725,\"COSTSO\":74175,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":25013,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":75037.5,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":25587.5,\"COSTSO\":75037.5,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":26163,\"priceDoubleOcc\":\"27312.50\",\"priceSingleOcc\":76762.5,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27312.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":27312.5,\"COSTSO\":76762.5,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"28893.75\",\"priceSingleOcc\":86393.75,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28893.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":28893.75,\"COSTSO\":86393.75,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"28893.75\",\"priceSingleOcc\":86393.75,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28893.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":28893.75,\"COSTSO\":86393.75,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"28893.75\",\"priceSingleOcc\":86393.75,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28893.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":28893.75,\"COSTSO\":86393.75,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"28893.75\",\"priceSingleOcc\":86393.75,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28893.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":28893.75,\"COSTSO\":86393.75,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"28893.75\",\"priceSingleOcc\":86393.75,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28893.75,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":28893.75,\"COSTSO\":86393.75,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28271,\"priceDoubleOcc\":\"30475.00\",\"priceSingleOcc\":87975,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30475,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":30475,\"COSTSO\":87975,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24438,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74175,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":24725,\"COSTSO\":74175,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24438,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74175,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":24725,\"COSTSO\":74175,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24438,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74175,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":24725,\"COSTSO\":74175,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24438,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":74175,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":24725,\"COSTSO\":74175,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25013,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":75037.5,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":25587.5,\"COSTSO\":75037.5,\"ACEB\":23862.5,\"COSTTO\":23862.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26163,\"priceDoubleOcc\":\"27312.50\",\"priceSingleOcc\":76762.5,\"priceExtraBed\":\"23862.50\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27312.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":23862.5,\"COSTDO\":27312.5,\"COSTSO\":76762.5,\"ACEB\":23862.5,\"COSTTO\":23862.5}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38562\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"32200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":30667,\"priceDoubleOcc\":\"33062.50\",\"priceSingleOcc\":97462.5,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33062.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":33062.5,\"COSTSO\":97462.5,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":31778,\"priceDoubleOcc\":\"34730.00\",\"priceSingleOcc\":99130,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":34730,\"COSTSO\":99130,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":32392,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":108675,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":35650,\"COSTSO\":108675,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":32392,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":108675,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":35650,\"COSTSO\":108675,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":32392,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":108675,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":35650,\"COSTSO\":108675,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":32392,\"priceDoubleOcc\":\"35650.00\",\"priceSingleOcc\":108675,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":35650,\"COSTSO\":108675,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":32967,\"priceDoubleOcc\":\"36512.50\",\"priceSingleOcc\":109537.5,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36512.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":36512.5,\"COSTSO\":109537.5,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":34117,\"priceDoubleOcc\":\"38237.50\",\"priceSingleOcc\":111262.5,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38237.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":38237.5,\"COSTSO\":111262.5,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":30667,\"priceDoubleOcc\":\"33062.50\",\"priceSingleOcc\":97462.5,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33062.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":33062.5,\"COSTSO\":97462.5,\"ACEB\":25875,\"COSTTO\":25875},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":31778,\"priceDoubleOcc\":\"34730.00\",\"priceSingleOcc\":99130,\"priceExtraBed\":\"25875.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34730,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":25875,\"COSTDO\":34730,\"COSTSO\":99130,\"ACEB\":25875,\"COSTTO\":25875}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38559\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18360.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":17496,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":53784,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":18360,\"COSTSO\":53784,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":17496,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":53784,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":18360,\"COSTSO\":53784,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":17496,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":53784,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":18360,\"COSTSO\":53784,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":17496,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":53784,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":18360,\"COSTSO\":53784,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":18036,\"priceDoubleOcc\":\"19170.00\",\"priceSingleOcc\":54594,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19170,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":19170,\"COSTSO\":54594,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":18684,\"priceDoubleOcc\":\"20142.00\",\"priceSingleOcc\":55566,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20142,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":20142,\"COSTSO\":55566,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18936,\"priceDoubleOcc\":\"20520.00\",\"priceSingleOcc\":61560,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":20520,\"COSTSO\":61560,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18936,\"priceDoubleOcc\":\"20520.00\",\"priceSingleOcc\":61560,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":20520,\"COSTSO\":61560,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18936,\"priceDoubleOcc\":\"20520.00\",\"priceSingleOcc\":61560,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":20520,\"COSTSO\":61560,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":18936,\"priceDoubleOcc\":\"20520.00\",\"priceSingleOcc\":61560,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":20520,\"COSTSO\":61560,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":19476,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":62370,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":21330,\"COSTSO\":62370,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":20376,\"priceDoubleOcc\":\"22680.00\",\"priceSingleOcc\":63720,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":22680,\"COSTSO\":63720,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17496,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":53784,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":18360,\"COSTSO\":53784,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17496,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":53784,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":18360,\"COSTSO\":53784,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17496,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":53784,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":18360,\"COSTSO\":53784,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17496,\"priceDoubleOcc\":\"18360.00\",\"priceSingleOcc\":53784,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18360,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":18360,\"COSTSO\":53784,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18036,\"priceDoubleOcc\":\"19170.00\",\"priceSingleOcc\":54594,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19170,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":19170,\"COSTSO\":54594,\"ACEB\":15768,\"COSTTO\":15768},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18684,\"priceDoubleOcc\":\"20142.00\",\"priceSingleOcc\":55566,\"priceExtraBed\":\"15768.00\",\"priceWithoutBed\":\"14148.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20142,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":14148,\"CEB\":15768,\"COSTDO\":20142,\"COSTSO\":55566,\"ACEB\":15768,\"COSTTO\":15768}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38560\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21330.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":63990,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":21330,\"COSTSO\":63990,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":63990,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":21330,\"COSTSO\":63990,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":63990,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":21330,\"COSTSO\":63990,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":63990,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":21330,\"COSTSO\":63990,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":20700,\"priceDoubleOcc\":\"22140.00\",\"priceSingleOcc\":64800,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":22140,\"COSTSO\":64800,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":21708,\"priceDoubleOcc\":\"23652.00\",\"priceSingleOcc\":66312,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23652,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":23652,\"COSTSO\":66312,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21780,\"priceDoubleOcc\":\"23760.00\",\"priceSingleOcc\":70200,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":23760,\"COSTSO\":70200,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21780,\"priceDoubleOcc\":\"23760.00\",\"priceSingleOcc\":70200,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":23760,\"COSTSO\":70200,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21780,\"priceDoubleOcc\":\"23760.00\",\"priceSingleOcc\":70200,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":23760,\"COSTSO\":70200,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21780,\"priceDoubleOcc\":\"23760.00\",\"priceSingleOcc\":70200,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23760,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":23760,\"COSTSO\":70200,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22320,\"priceDoubleOcc\":\"24570.00\",\"priceSingleOcc\":71010,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24570,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":24570,\"COSTSO\":71010,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":23436,\"priceDoubleOcc\":\"26244.00\",\"priceSingleOcc\":72684,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26244,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":26244,\"COSTSO\":72684,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":63774,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":21330,\"COSTSO\":63774,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":63774,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":21330,\"COSTSO\":63774,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":63774,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":21330,\"COSTSO\":63774,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20160,\"priceDoubleOcc\":\"21330.00\",\"priceSingleOcc\":63774,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21330,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":21330,\"COSTSO\":63774,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20700,\"priceDoubleOcc\":\"22140.00\",\"priceSingleOcc\":64584,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22140,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":22140,\"COSTSO\":64584,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21708,\"priceDoubleOcc\":\"23652.00\",\"priceSingleOcc\":66096,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15660.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23652,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15660,\"CEB\":17820,\"COSTDO\":23652,\"COSTSO\":66096,\"ACEB\":17820,\"COSTTO\":17820}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38561\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23220.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":22950,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":69660,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":23220,\"COSTSO\":69660,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":22950,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":69660,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":23220,\"COSTSO\":69660,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":22950,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":69660,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":23220,\"COSTSO\":69660,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":22950,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":69660,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":23220,\"COSTSO\":69660,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":23490,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":70470,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":24030,\"COSTSO\":70470,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":24570,\"priceDoubleOcc\":\"25650.00\",\"priceSingleOcc\":72090,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":25650,\"COSTSO\":72090,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"27135.00\",\"priceSingleOcc\":81135,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27135,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":27135,\"COSTSO\":81135,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"27135.00\",\"priceSingleOcc\":81135,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27135,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":27135,\"COSTSO\":81135,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"27135.00\",\"priceSingleOcc\":81135,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27135,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":27135,\"COSTSO\":81135,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"27135.00\",\"priceSingleOcc\":81135,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27135,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":27135,\"COSTSO\":81135,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"27135.00\",\"priceSingleOcc\":81135,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27135,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":27135,\"COSTSO\":81135,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26550,\"priceDoubleOcc\":\"28620.00\",\"priceSingleOcc\":82620,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":28620,\"COSTSO\":82620,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22950,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":69660,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":23220,\"COSTSO\":69660,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22950,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":69660,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":23220,\"COSTSO\":69660,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22950,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":69660,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":23220,\"COSTSO\":69660,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22950,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":69660,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":23220,\"COSTSO\":69660,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23490,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":70470,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":24030,\"COSTSO\":70470,\"ACEB\":22410,\"COSTTO\":22410},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24570,\"priceDoubleOcc\":\"25650.00\",\"priceSingleOcc\":72090,\"priceExtraBed\":\"22410.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":22410,\"COSTDO\":25650,\"COSTSO\":72090,\"ACEB\":22410,\"COSTTO\":22410}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38562\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"30240.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":28800,\"priceDoubleOcc\":\"31050.00\",\"priceSingleOcc\":91530,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":31050,\"COSTSO\":91530,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-08-04\",\"To\":\"2022-12-09\",\"Currency\":1,\"priceTripleOcc\":29844,\"priceDoubleOcc\":\"32616.00\",\"priceSingleOcc\":93096,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32616,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":32616,\"COSTSO\":93096,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30420,\"priceDoubleOcc\":\"33480.00\",\"priceSingleOcc\":102060,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":33480,\"COSTSO\":102060,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30420,\"priceDoubleOcc\":\"33480.00\",\"priceSingleOcc\":102060,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":33480,\"COSTSO\":102060,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30420,\"priceDoubleOcc\":\"33480.00\",\"priceSingleOcc\":102060,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":33480,\"COSTSO\":102060,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30420,\"priceDoubleOcc\":\"33480.00\",\"priceSingleOcc\":102060,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33480,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":33480,\"COSTSO\":102060,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30960,\"priceDoubleOcc\":\"34290.00\",\"priceSingleOcc\":102870,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34290,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":34290,\"COSTSO\":102870,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2022-12-10\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":32040,\"priceDoubleOcc\":\"35910.00\",\"priceSingleOcc\":104490,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35910,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":35910,\"COSTSO\":104490,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28800,\"priceDoubleOcc\":\"31050.00\",\"priceSingleOcc\":91530,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":31050,\"COSTSO\":91530,\"ACEB\":24300,\"COSTTO\":24300},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":29844,\"priceDoubleOcc\":\"32616.00\",\"priceSingleOcc\":93096,\"priceExtraBed\":\"24300.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32616,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":24300,\"COSTDO\":32616,\"COSTSO\":93096,\"ACEB\":24300,\"COSTTO\":24300}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"Exclusions\",\"Inclusion\":\"Inclusions\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"275793\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[275793],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275797\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[275797],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275801\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[275801],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275805\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[275805],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275809\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[275809],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275813\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[275813],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275817\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[275817],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275821\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[275821],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275825\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[275825],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"275848\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[275848],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island,Andaman Island',NULL,'32511,11658,34567',18360,38238,6,NULL,NULL,NULL,2,'',0,'2022-08-06 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-08-06 00:00:00','2022-08-06 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'exotic-7-days-andaman',NULL,NULL,NULL,0),(47,38589,1,12577,0,0,0,'Honeymoon,Adventure,Beach,Family,Weekend,Romantic,Leisure,Activites Tour',NULL,1,1,0,'{\"package\":{\"TPId\":38589,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/long_weekend_andaman_1659525436.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":21,\"DETAILS\":\"\",\"AdvBookingPercent\":30,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":13144,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":13144,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"Andaman Ocean Tourism\",\"Name\":\"Long Weekend Andaman \",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10313\",\"SupplierName\":\"Andaman Ocean Tourism\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Intercity Transfers,Activity,Sightseeing,Guided Tours,Speed Boat,Ferry\",\"PackageType\":\"Honeymoon,Adventure,Beach,Family,Weekend,Romantic,Leisure,Activites Tour\",\"Validity\":{\"From\":\"2022-08-06\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":511939,\"Name\":\"S R Castle\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Super Deluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513554,\"Name\":\"Hotel Shompen (Symphony Resorts)\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.6648405\",\"Long\":\"92.7390387\",\"Address\":\"02, Middle Point, Thomas Colony, Junglighat, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512365,\"Name\":\"Mansha Palace\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001000010101000010\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":14,\"Title\":\"Transfers\"},{\"AminityId\":19,\"Title\":\"Airport Shuttle\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513555,\"Name\":\"Resort Heritage MNR\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"11.622672\",\"Long\":\"92.7207597\",\"Address\":\"NH4, Pathergudda, Pahargaon, Port Blair, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Club Heritage \",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":512072,\"Name\":\"White Coral Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.011609\",\"Long\":\"93.0076531\",\"Address\":\"No.5, Kalapathar Beach Road, Vijay nagar Havelock, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Deluxe Cottage\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513564,\"Name\":\"Sandyy Wavess Beach Resort\",\"Star\":\".00\",\"Rating\":\"4.40\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0116977\",\"Long\":\"93.0071808\",\"Address\":\"No 5 Vijay Nagar No 5 Havelock island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":513562,\"Name\":\"The Ocean Blue Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0233271\",\"Long\":\"93.00453979999999\",\"Address\":\"Vijay Nagar, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tDeluxe Room\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":512074,\"Name\":\"Symphony Palms Beach Resort\",\"Star\":\"4.00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0275863\",\"Long\":\"93.0005855\",\"Address\":\"3, Govind Nagar Beach, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"111001101010100000000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":5,\"Title\":\"Kids Friendly\"},{\"AminityId\":6,\"Title\":\"Spa\"},{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":10313,\"SupplierName\":\"Andaman Ocean Tourism\",\"priceaditionals\":null,\"RoomTypeName\":\"Casa Grande\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":[]},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":[]}]},\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"275996\",\"Title\":\"Arrival at Port Blair (Corbyns Cove - Jail Muesum - Cellular Jail Light and Sound Show)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Port Blair in the morning\\/afternoon by flight and our representative will be waiting outside holding a placard with your name on it. You will be taken to your hotel where you relax and rest. After some rest proceed to the nearest Beach, Corbyn&amp;amp;39s Cove. The Crescent shaped coconut palm fringed Corbyn&amp;amp;39s Cove ideal for swimming &amp;amp; bathing, a stretch of around 4 Km with an open sea towards your left is a sight to experience then you will visit the extremely popular Cellular Jail. An excursion to the jail will surely make your family holiday memorable. Formerly known as Kala Pani Later proceed to attend the enthralling Sound and Light Show at Cellular Jail - where the heroic saga of the Indian freedom struggle is brought alive. Enacting of freedom fighters and their struggle for India&amp;amp;39s Independence is enacted during this trip. Post completion of this trip, we drop you back to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276000\",\"Title\":\"Tour to Ross and North Bay Island (Closed on Wednesday)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:112pt&quot;&gt;This tour starts in the morning at around 9 am and ends at around 4 pm in the evening. The journey from&amp;nbsp; Aberdeen Jetty, Port Blair to the islands is covered in a boat. It takes 30-40 min to reach North Bay Island where you spend 2-3 hours. On this Island, you can participate in various water-activities like Scuba Diving, Sea Walk, Snorkeling and Glass Boat Ride etc ( not included in the cost).&lt;br \\/&gt;\\r\\n\\t\\t\\tAfter exploring North Bay, the boat proceeds to Ross Island. Do not forget to go through Japanese Bunker which was built by them during the 2nd world war. It takes 30min to reach Ross Island where you spend 2-3 hours.&lt;br \\/&gt;\\r\\n\\t\\t\\tThe boat then brings you back to Port Blair Water Sports Complex. From there you are dropped back to your hotel.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276004\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276015\",\"Title\":\"Transfer from Port Blair to Havelock by Ferry and Radhanagar Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:112pt&quot;&gt;This Day of your Andaman tour starts early. You board the morning ferry from Port Blair to Havelock Island. Carry packed breakfast (Eat Light). This journey is of around 2 hours. On reaching, get transferred to the respective hotels to complete the check-in formalities. Unwind yourself.&lt;br \\/&gt;\\r\\n\\t\\t\\tIn the late afternoon, you visit the popular Radhanagar Beach, which is also known as Beach No 7. It was also rated as the &amp;amp;39Best Beach in Asia&amp;amp;39 by the Time Magazine. Sunset views appear truly magical from this beach. This beach is known as fine sand beach and has clear crystal water. Around 6 pm you will be received by our representative.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276019\",\"Title\":\"Trip to Elephant Beach via Speed Boat (Ideal for Water Sports)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:128pt&quot;&gt;Wake up early on day 3 of the Andaman Nicobar trip. On this day, you are going for a memorable excursion to the beautiful Elephant beach. The car will come at 08:00 hours. Be ready as the boat will leave the jetty at 08:00-08-30 hours. The boat ride from Havelock Island to Elephant beach takes around 20-25 minutes. This surely is going to be an unforgettable Water Sports experience for you.&lt;br \\/&gt;\\r\\n\\t\\t\\tGet into the sports gear and get all set to explore the colorful underwater world. The reef close to the shore is around 1 meter deep and the larger reef is formed by an amazing variety of corals and marine life. After a few activites, you can simply relax at the beach. The atmosphere is serene and the sight is soothing. Do not forget to catch the beauty of this white-sand beach in your camera.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276023\",\"Title\":\"Day Excursion to Kalapather Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:96pt&quot;&gt;Kalapathar beach is a long stretch of white silky sand with big black rocks beside the blue sea. It is situated on one corner of Havelock and is a continuation of beach No. 5. The beach can get a bit crowded in high season, but if you walk further to the south you&amp;rsquo;ll find yourself completely alone. There is a small lodging path through the green jungle, where once was an elephant25 training camp, but nowadays all you&amp;rsquo;ll find is a secluded beach.&lt;br \\/&gt;\\r\\n\\t\\t\\tThe water is deep enough to swim and it is not affected by tides. There are some rocks and corals so do take care while going into the water. Stay There till sunset and return back to the resort for an overnight stay.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513562,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":512072,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Cottage\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512074,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Casa Grande\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513564,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Premium Room\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276027\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276031\",\"Title\":\"Transfer to Neil via Ferry  (Bharatpur beach and Laxmanpur Beach and Natural Coral Bridge)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:80pt&quot;&gt;Post breakfast in the morning, check out from the hotel. Board a ferry from Havelock and get transferred to Neil Island. On arrival, you will be transferred to the respective hotels for check-in. Your Andaman tour package allows you to enjoy a visit to the very popular Bharatpur beach and Laxmanpur Beach, and the famour natural rock formatted coral bridge in the evening.&lt;br \\/&gt;\\r\\n\\t\\t\\tBack to the hotel for unwinding and overnight stay.&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276035\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":7,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276042\",\"Title\":\"Transfer to Port Blair via Ferry  Shopping Complex\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Knock-Knock&amp;hellip;Wake up at your own time, have breakfast and explore the beauty of resort by your own, have some peaceful and leisure time and return back to Port Blair by afternoon ferry, upon reaching port Blair check inn and rest for a while., then proceed for Compementry tour to Shopping Complex for taking something special for your friends and family of beautiful Andaman and Nicobar.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Night Stay at Port Blair. Night Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":513554,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Budget\",\"Id\":1},{\"Item\":[{\"IsIncluded\":true,\"Id\":511939,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Super Deluxe Room\"}],\"Type\":\"Standard\",\"Id\":2},{\"Item\":[{\"IsIncluded\":true,\"Id\":512365,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Deluxe Room\"}],\"Type\":\"Deluxe\",\"Id\":3},{\"Item\":[{\"IsIncluded\":true,\"Id\":513555,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"Club Heritage\"}],\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"276046\",\"Title\":\"Departure from Port Blair - Drop to Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;width:803pt&quot;&gt;\\r\\n\\t&lt;tbody&gt;\\r\\n\\t\\t&lt;tr&gt;\\r\\n\\t\\t\\t&lt;td style=&quot;height:32pt&quot;&gt;After breakfast check out of the hotel and get transferred to the airport for your journey back home with unlimited memories.. See you soon!!!&lt;\\/td&gt;\\r\\n\\t\\t&lt;\\/tr&gt;\\r\\n\\t&lt;\\/tbody&gt;\\r\\n&lt;\\/table&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1},{\"Type\":\"Standard\",\"Id\":2},{\"Type\":\"Deluxe\",\"Id\":3},{\"Type\":\"Luxury\",\"Id\":4}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38589\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21390.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":20585,\"priceDoubleOcc\":\"21390.00\",\"priceSingleOcc\":63940,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21390,\"COSTSO\":63940,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":20585,\"priceDoubleOcc\":\"21390.00\",\"priceSingleOcc\":63940,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21390,\"COSTSO\":63940,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":20585,\"priceDoubleOcc\":\"21390.00\",\"priceSingleOcc\":63940,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21390,\"COSTSO\":63940,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":20585,\"priceDoubleOcc\":\"21390.00\",\"priceSingleOcc\":63940,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21390,\"COSTSO\":63940,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":20949,\"priceDoubleOcc\":\"21936.25\",\"priceSingleOcc\":64486.25,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21936.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21936.25,\"COSTSO\":64486.25,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":22272,\"priceDoubleOcc\":\"23920.00\",\"priceSingleOcc\":66470,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":23920,\"COSTSO\":66470,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"24150.00\",\"priceSingleOcc\":72450,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":24150,\"COSTSO\":72450,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"24150.00\",\"priceSingleOcc\":72450,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":24150,\"COSTSO\":72450,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"24150.00\",\"priceSingleOcc\":72450,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":24150,\"COSTSO\":72450,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22425,\"priceDoubleOcc\":\"24150.00\",\"priceSingleOcc\":72450,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":24150,\"COSTSO\":72450,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22808,\"priceDoubleOcc\":\"24725.00\",\"priceSingleOcc\":73025,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24725,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":24725,\"COSTSO\":73025,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":24112,\"priceDoubleOcc\":\"26680.00\",\"priceSingleOcc\":74980,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":26680,\"COSTSO\":74980,\"ACEB\":18975,\"COSTTO\":18975},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20719,\"priceDoubleOcc\":\"21390.00\",\"priceSingleOcc\":63940,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21390,\"COSTSO\":63940,\"ACEB\":19377.5,\"COSTTO\":19377.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20719,\"priceDoubleOcc\":\"21390.00\",\"priceSingleOcc\":63940,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21390,\"COSTSO\":63940,\"ACEB\":19377.5,\"COSTTO\":19377.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20719,\"priceDoubleOcc\":\"21390.00\",\"priceSingleOcc\":63940,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21390,\"COSTSO\":63940,\"ACEB\":19377.5,\"COSTTO\":19377.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20719,\"priceDoubleOcc\":\"21390.00\",\"priceSingleOcc\":63940,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21390,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21390,\"COSTSO\":63940,\"ACEB\":19377.5,\"COSTTO\":19377.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21083,\"priceDoubleOcc\":\"21936.25\",\"priceSingleOcc\":64486.25,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21936.25,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":21936.25,\"COSTSO\":64486.25,\"ACEB\":19377.5,\"COSTTO\":19377.5},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22406,\"priceDoubleOcc\":\"23920.00\",\"priceSingleOcc\":66470,\"priceExtraBed\":\"18975.00\",\"priceWithoutBed\":\"16962.50\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":16962.5,\"CEB\":18975,\"COSTDO\":23920,\"COSTSO\":66470,\"ACEB\":19377.5,\"COSTTO\":19377.5}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38590\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25587.50\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":24342,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":77337.5,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":25587.5,\"COSTSO\":77337.5,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":24342,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":77337.5,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":25587.5,\"COSTSO\":77337.5,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":24342,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":77337.5,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":25587.5,\"COSTSO\":77337.5,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":24342,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":77337.5,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":25587.5,\"COSTSO\":77337.5,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":24917,\"priceDoubleOcc\":\"26450.00\",\"priceSingleOcc\":78200,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":26450,\"COSTSO\":78200,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":26067,\"priceDoubleOcc\":\"28175.00\",\"priceSingleOcc\":79925,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28175,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":28175,\"COSTSO\":79925,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26450,\"priceDoubleOcc\":\"28750.00\",\"priceSingleOcc\":85100,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":28750,\"COSTSO\":85100,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26450,\"priceDoubleOcc\":\"28750.00\",\"priceSingleOcc\":85100,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":28750,\"COSTSO\":85100,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26450,\"priceDoubleOcc\":\"28750.00\",\"priceSingleOcc\":85100,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":28750,\"COSTSO\":85100,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26450,\"priceDoubleOcc\":\"28750.00\",\"priceSingleOcc\":85100,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":28750,\"COSTSO\":85100,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26833,\"priceDoubleOcc\":\"29325.00\",\"priceSingleOcc\":85675,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29325,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":29325,\"COSTSO\":85675,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":27983,\"priceDoubleOcc\":\"31050.00\",\"priceSingleOcc\":87400,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":31050,\"COSTSO\":87400,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24342,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":77337.5,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":25587.5,\"COSTSO\":77337.5,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24342,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":77337.5,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":25587.5,\"COSTSO\":77337.5,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24342,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":77337.5,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":25587.5,\"COSTSO\":77337.5,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24342,\"priceDoubleOcc\":\"25587.50\",\"priceSingleOcc\":77337.5,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25587.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":25587.5,\"COSTSO\":77337.5,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24917,\"priceDoubleOcc\":\"26450.00\",\"priceSingleOcc\":78200,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":26450,\"COSTSO\":78200,\"ACEB\":21850,\"COSTTO\":21850},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26067,\"priceDoubleOcc\":\"28175.00\",\"priceSingleOcc\":79925,\"priceExtraBed\":\"21850.00\",\"priceWithoutBed\":\"18975.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28175,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":18975,\"CEB\":21850,\"COSTDO\":28175,\"COSTSO\":79925,\"ACEB\":21850,\"COSTTO\":21850}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38591\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"27600.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":82800,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":27600,\"COSTSO\":82800,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":82800,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":27600,\"COSTSO\":82800,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":82800,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":27600,\"COSTSO\":82800,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":82800,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":27600,\"COSTSO\":82800,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":27830,\"priceDoubleOcc\":\"28520.00\",\"priceSingleOcc\":83720,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":28520,\"COSTSO\":83720,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":29133,\"priceDoubleOcc\":\"30475.00\",\"priceSingleOcc\":85675,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30475,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":30475,\"COSTSO\":85675,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":96025,\"priceExtraBed\":\"27025.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":27025,\"COSTDO\":31625,\"COSTSO\":96025,\"ACEB\":27025,\"COSTTO\":27025},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":96025,\"priceExtraBed\":\"27025.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":27025,\"COSTDO\":31625,\"COSTSO\":96025,\"ACEB\":27025,\"COSTTO\":27025},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":96025,\"priceExtraBed\":\"27025.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":27025,\"COSTDO\":31625,\"COSTSO\":96025,\"ACEB\":27025,\"COSTTO\":27025},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30092,\"priceDoubleOcc\":\"31625.00\",\"priceSingleOcc\":96025,\"priceExtraBed\":\"27025.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31625,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":27025,\"COSTDO\":31625,\"COSTSO\":96025,\"ACEB\":27025,\"COSTTO\":27025},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":30475,\"priceDoubleOcc\":\"32200.00\",\"priceSingleOcc\":96600,\"priceExtraBed\":\"27025.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":27025,\"COSTDO\":32200,\"COSTSO\":96600,\"ACEB\":27025,\"COSTTO\":27025},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":31855,\"priceDoubleOcc\":\"34270.00\",\"priceSingleOcc\":98670,\"priceExtraBed\":\"27025.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":34270,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":27025,\"COSTDO\":34270,\"COSTSO\":98670,\"ACEB\":27025,\"COSTTO\":27025},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":82800,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":27600,\"COSTSO\":82800,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":82800,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":27600,\"COSTSO\":82800,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":82800,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":27600,\"COSTSO\":82800,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27217,\"priceDoubleOcc\":\"27600.00\",\"priceSingleOcc\":82800,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":27600,\"COSTSO\":82800,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27830,\"priceDoubleOcc\":\"28520.00\",\"priceSingleOcc\":83720,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28520,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":28520,\"COSTSO\":83720,\"ACEB\":26450,\"COSTTO\":26450},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":29133,\"priceDoubleOcc\":\"30475.00\",\"priceSingleOcc\":85675,\"priceExtraBed\":\"26450.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30475,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":26450,\"COSTDO\":30475,\"COSTSO\":85675,\"ACEB\":26450,\"COSTTO\":26450}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38592\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"37375.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":34883,\"priceDoubleOcc\":\"37375.00\",\"priceSingleOcc\":112125,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37375,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":37375,\"COSTSO\":112125,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":34883,\"priceDoubleOcc\":\"37375.00\",\"priceSingleOcc\":112125,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37375,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":37375,\"COSTSO\":112125,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":34883,\"priceDoubleOcc\":\"37375.00\",\"priceSingleOcc\":112125,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37375,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":37375,\"COSTSO\":112125,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":34883,\"priceDoubleOcc\":\"37375.00\",\"priceSingleOcc\":112125,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37375,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":37375,\"COSTSO\":112125,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":35458,\"priceDoubleOcc\":\"38237.50\",\"priceSingleOcc\":112987.5,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38237.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":38237.5,\"COSTSO\":112987.5,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":36608,\"priceDoubleOcc\":\"39962.50\",\"priceSingleOcc\":114712.5,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":39962.5,\"COSTSO\":114712.5,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":37183,\"priceDoubleOcc\":\"40825.00\",\"priceSingleOcc\":123625,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":40825,\"COSTSO\":123625,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":37183,\"priceDoubleOcc\":\"40825.00\",\"priceSingleOcc\":123625,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":40825,\"COSTSO\":123625,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":37183,\"priceDoubleOcc\":\"40825.00\",\"priceSingleOcc\":123625,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":40825,\"COSTSO\":123625,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":37183,\"priceDoubleOcc\":\"40825.00\",\"priceSingleOcc\":123625,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40825,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":40825,\"COSTSO\":123625,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":37758,\"priceDoubleOcc\":\"41687.50\",\"priceSingleOcc\":124487.5,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":41687.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":41687.5,\"COSTSO\":124487.5,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":38717,\"priceDoubleOcc\":\"43125.00\",\"priceSingleOcc\":125925,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":43125,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":43125,\"COSTSO\":125925,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34883,\"priceDoubleOcc\":\"37375.00\",\"priceSingleOcc\":112125,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37375,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":37375,\"COSTSO\":112125,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34883,\"priceDoubleOcc\":\"37375.00\",\"priceSingleOcc\":112125,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37375,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":37375,\"COSTSO\":112125,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34883,\"priceDoubleOcc\":\"37375.00\",\"priceSingleOcc\":112125,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37375,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":37375,\"COSTSO\":112125,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34883,\"priceDoubleOcc\":\"37375.00\",\"priceSingleOcc\":112125,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37375,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":37375,\"COSTSO\":112125,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":35458,\"priceDoubleOcc\":\"38237.50\",\"priceSingleOcc\":112987.5,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38237.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":38237.5,\"COSTSO\":112987.5,\"ACEB\":29900,\"COSTTO\":29900},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":36608,\"priceDoubleOcc\":\"39962.50\",\"priceSingleOcc\":114712.5,\"priceExtraBed\":\"29900.00\",\"priceWithoutBed\":\"21850.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":15,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39962.5,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21850,\"CEB\":29900,\"COSTDO\":39962.5,\"COSTSO\":114712.5,\"ACEB\":29900,\"COSTTO\":29900}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38589\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"20088.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19332,\"priceDoubleOcc\":\"20088.00\",\"priceSingleOcc\":60048,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20088,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20088,\"COSTSO\":60048,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19332,\"priceDoubleOcc\":\"20088.00\",\"priceSingleOcc\":60048,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20088,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20088,\"COSTSO\":60048,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19332,\"priceDoubleOcc\":\"20088.00\",\"priceSingleOcc\":60048,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20088,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20088,\"COSTSO\":60048,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19332,\"priceDoubleOcc\":\"20088.00\",\"priceSingleOcc\":60048,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20088,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20088,\"COSTSO\":60048,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":19674,\"priceDoubleOcc\":\"20601.00\",\"priceSingleOcc\":60561,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20601,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20601,\"COSTSO\":60561,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":20916,\"priceDoubleOcc\":\"22464.00\",\"priceSingleOcc\":62424,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22464,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":22464,\"COSTSO\":62424,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21060,\"priceDoubleOcc\":\"22680.00\",\"priceSingleOcc\":68040,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":22680,\"COSTSO\":68040,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21060,\"priceDoubleOcc\":\"22680.00\",\"priceSingleOcc\":68040,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":22680,\"COSTSO\":68040,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21060,\"priceDoubleOcc\":\"22680.00\",\"priceSingleOcc\":68040,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":22680,\"COSTSO\":68040,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21060,\"priceDoubleOcc\":\"22680.00\",\"priceSingleOcc\":68040,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22680,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":22680,\"COSTSO\":68040,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":21420,\"priceDoubleOcc\":\"23220.00\",\"priceSingleOcc\":68580,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23220,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":23220,\"COSTSO\":68580,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":22644,\"priceDoubleOcc\":\"25056.00\",\"priceSingleOcc\":70416,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25056,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":25056,\"COSTSO\":70416,\"ACEB\":17820,\"COSTTO\":17820},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19458,\"priceDoubleOcc\":\"20088.00\",\"priceSingleOcc\":60048,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20088,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20088,\"COSTSO\":60048,\"ACEB\":18198,\"COSTTO\":18198},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19458,\"priceDoubleOcc\":\"20088.00\",\"priceSingleOcc\":60048,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20088,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20088,\"COSTSO\":60048,\"ACEB\":18198,\"COSTTO\":18198},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19458,\"priceDoubleOcc\":\"20088.00\",\"priceSingleOcc\":60048,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20088,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20088,\"COSTSO\":60048,\"ACEB\":18198,\"COSTTO\":18198},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19458,\"priceDoubleOcc\":\"20088.00\",\"priceSingleOcc\":60048,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20088,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20088,\"COSTSO\":60048,\"ACEB\":18198,\"COSTTO\":18198},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19800,\"priceDoubleOcc\":\"20601.00\",\"priceSingleOcc\":60561,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20601,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":20601,\"COSTSO\":60561,\"ACEB\":18198,\"COSTTO\":18198},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21042,\"priceDoubleOcc\":\"22464.00\",\"priceSingleOcc\":62424,\"priceExtraBed\":\"17820.00\",\"priceWithoutBed\":\"15930.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22464,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15930,\"CEB\":17820,\"COSTDO\":22464,\"COSTSO\":62424,\"ACEB\":18198,\"COSTTO\":18198}]}]},{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"38590\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24030.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":22860,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":72630,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24030,\"COSTSO\":72630,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":22860,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":72630,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24030,\"COSTSO\":72630,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":22860,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":72630,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24030,\"COSTSO\":72630,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":22860,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":72630,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24030,\"COSTSO\":72630,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":23400,\"priceDoubleOcc\":\"24840.00\",\"priceSingleOcc\":73440,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24840,\"COSTSO\":73440,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":24480,\"priceDoubleOcc\":\"26460.00\",\"priceSingleOcc\":75060,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26460,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":26460,\"COSTSO\":75060,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":79920,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":27000,\"COSTSO\":79920,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":79920,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":27000,\"COSTSO\":79920,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":79920,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":27000,\"COSTSO\":79920,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":24840,\"priceDoubleOcc\":\"27000.00\",\"priceSingleOcc\":79920,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":27000,\"COSTSO\":79920,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":25200,\"priceDoubleOcc\":\"27540.00\",\"priceSingleOcc\":80460,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27540,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":27540,\"COSTSO\":80460,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":26280,\"priceDoubleOcc\":\"29160.00\",\"priceSingleOcc\":82080,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29160,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":29160,\"COSTSO\":82080,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22860,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":72630,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24030,\"COSTSO\":72630,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22860,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":72630,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24030,\"COSTSO\":72630,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22860,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":72630,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24030,\"COSTSO\":72630,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22860,\"priceDoubleOcc\":\"24030.00\",\"priceSingleOcc\":72630,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24030,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24030,\"COSTSO\":72630,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23400,\"priceDoubleOcc\":\"24840.00\",\"priceSingleOcc\":73440,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24840,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":24840,\"COSTSO\":73440,\"ACEB\":20520,\"COSTTO\":20520},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24480,\"priceDoubleOcc\":\"26460.00\",\"priceSingleOcc\":75060,\"priceExtraBed\":\"20520.00\",\"priceWithoutBed\":\"17820.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26460,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17820,\"CEB\":20520,\"COSTDO\":26460,\"COSTSO\":75060,\"ACEB\":20520,\"COSTTO\":20520}]}]},{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"38591\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"25920.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":77760,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":25920,\"COSTSO\":77760,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":77760,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":25920,\"COSTSO\":77760,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":77760,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":25920,\"COSTSO\":77760,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":77760,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":25920,\"COSTSO\":77760,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":26136,\"priceDoubleOcc\":\"26784.00\",\"priceSingleOcc\":78624,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26784,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":26784,\"COSTSO\":78624,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":27360,\"priceDoubleOcc\":\"28620.00\",\"priceSingleOcc\":80460,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":28620,\"COSTSO\":80460,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":90180,\"priceExtraBed\":\"25380.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":25380,\"COSTDO\":29700,\"COSTSO\":90180,\"ACEB\":25380,\"COSTTO\":25380},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":90180,\"priceExtraBed\":\"25380.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":25380,\"COSTDO\":29700,\"COSTSO\":90180,\"ACEB\":25380,\"COSTTO\":25380},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":90180,\"priceExtraBed\":\"25380.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":25380,\"COSTDO\":29700,\"COSTSO\":90180,\"ACEB\":25380,\"COSTTO\":25380},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28260,\"priceDoubleOcc\":\"29700.00\",\"priceSingleOcc\":90180,\"priceExtraBed\":\"25380.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":29700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":25380,\"COSTDO\":29700,\"COSTSO\":90180,\"ACEB\":25380,\"COSTTO\":25380},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":28620,\"priceDoubleOcc\":\"30240.00\",\"priceSingleOcc\":90720,\"priceExtraBed\":\"25380.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":30240,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":25380,\"COSTDO\":30240,\"COSTSO\":90720,\"ACEB\":25380,\"COSTTO\":25380},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":29916,\"priceDoubleOcc\":\"32184.00\",\"priceSingleOcc\":92664,\"priceExtraBed\":\"25380.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":32184,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":25380,\"COSTDO\":32184,\"COSTSO\":92664,\"ACEB\":25380,\"COSTTO\":25380},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":77760,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":25920,\"COSTSO\":77760,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":77760,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":25920,\"COSTSO\":77760,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":77760,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":25920,\"COSTSO\":77760,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25560,\"priceDoubleOcc\":\"25920.00\",\"priceSingleOcc\":77760,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25920,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":25920,\"COSTSO\":77760,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26136,\"priceDoubleOcc\":\"26784.00\",\"priceSingleOcc\":78624,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26784,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":26784,\"COSTSO\":78624,\"ACEB\":24840,\"COSTTO\":24840},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":27360,\"priceDoubleOcc\":\"28620.00\",\"priceSingleOcc\":80460,\"priceExtraBed\":\"24840.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28620,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":24840,\"COSTDO\":28620,\"COSTSO\":80460,\"ACEB\":24840,\"COSTTO\":24840}]}]},{\"CategoryId\":4,\"Type\":\"Luxury\",\"TPSysId\":\"38592\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"35100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"35100.00\",\"priceSingleOcc\":105300,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35100,\"COSTSO\":105300,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"35100.00\",\"priceSingleOcc\":105300,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35100,\"COSTSO\":105300,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"35100.00\",\"priceSingleOcc\":105300,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35100,\"COSTSO\":105300,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"35100.00\",\"priceSingleOcc\":105300,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35100,\"COSTSO\":105300,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":33300,\"priceDoubleOcc\":\"35910.00\",\"priceSingleOcc\":106110,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35910,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35910,\"COSTSO\":106110,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-08-04\",\"To\":\"2022-12-08\",\"Currency\":1,\"priceTripleOcc\":34380,\"priceDoubleOcc\":\"37530.00\",\"priceSingleOcc\":107730,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":37530,\"COSTSO\":107730,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":34920,\"priceDoubleOcc\":\"38340.00\",\"priceSingleOcc\":116100,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":38340,\"COSTSO\":116100,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":34920,\"priceDoubleOcc\":\"38340.00\",\"priceSingleOcc\":116100,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":38340,\"COSTSO\":116100,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":34920,\"priceDoubleOcc\":\"38340.00\",\"priceSingleOcc\":116100,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":38340,\"COSTSO\":116100,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":34920,\"priceDoubleOcc\":\"38340.00\",\"priceSingleOcc\":116100,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38340,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":38340,\"COSTSO\":116100,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":35460,\"priceDoubleOcc\":\"39150.00\",\"priceSingleOcc\":116910,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":39150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":39150,\"COSTSO\":116910,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2022-12-09\",\"To\":\"2023-01-15\",\"Currency\":1,\"priceTripleOcc\":36360,\"priceDoubleOcc\":\"40500.00\",\"priceSingleOcc\":118260,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":40500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":40500,\"COSTSO\":118260,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"35100.00\",\"priceSingleOcc\":105300,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35100,\"COSTSO\":105300,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"35100.00\",\"priceSingleOcc\":105300,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35100,\"COSTSO\":105300,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"35100.00\",\"priceSingleOcc\":105300,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35100,\"COSTSO\":105300,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":32760,\"priceDoubleOcc\":\"35100.00\",\"priceSingleOcc\":105300,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35100,\"COSTSO\":105300,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":33300,\"priceDoubleOcc\":\"35910.00\",\"priceSingleOcc\":106110,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":35910,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":35910,\"COSTSO\":106110,\"ACEB\":28080,\"COSTTO\":28080},{\"From\":\"2023-01-16\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":34380,\"priceDoubleOcc\":\"37530.00\",\"priceSingleOcc\":107730,\"priceExtraBed\":\"28080.00\",\"priceWithoutBed\":\"20520.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedPercent\",\"MarkValue\":8,\"ExcludedPercent\":\"0\",\"PricePerPerson\":37530,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":20520,\"CEB\":28080,\"COSTDO\":37530,\"COSTSO\":107730,\"ACEB\":28080,\"COSTTO\":28080}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp&lt;\\/p&gt;\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"Exclusions\":\"Exclusions\",\"Inclusion\":\"Inclusions\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsptravelled&amp;nbspthe length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"275996\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[275996],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276000\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[276000],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276004\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[276004],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276015\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[276015],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276019\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[276019],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276023\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[276023],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276027\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[276027],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276031\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[276031],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276035\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[276035],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276042\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[276042],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"276046\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[276046],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":2,\"fixedInventory\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island,Andaman Island',NULL,'32511,11658,34567',20088,43125,7,NULL,NULL,NULL,2,'',0,'2022-08-06 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-08-06 00:00:00','2022-08-06 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'long-weekend-andaman',NULL,NULL,NULL,0),(48,39595,1,12577,1,0,0,'Honeymoon,Beach,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":39595,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/maldives_3_nights_1662189922.jpg\",\"BookingValidUntill\":\"2022-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The Maldives are known as &amp;ldquo;the Tropical Paradise&amp;rdquo; for reasons such as its beauty. This tropical country has separated islands and islands are surrounded by its own lagoon. Each island has pure white sandy beaches.&lt;br \\/&gt;\\r\\nThe sea covers 99% of the Maldives and it is where you can see beautiful fishes and corals. There are over five thousand coral reefs and plenty of reef fish, corals, and many other&amp;nbsp;marine&amp;nbsp;lives you could see underwater.&amp;nbsp;Diving&amp;nbsp;in the Maldives would be memorable.&amp;nbsp; &amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Male\",\"DestinationPlacesSysId\":16508,\"SourcePlaces\":\"Male\",\"SourcePlaceSysId\":16508,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Maldives 3 Nights\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"10738\",\"SupplierName\":\"Tatabye\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,All Meals,Welcome Drink,Speed Boat\",\"PackageType\":\"Honeymoon,Beach,Leisure\",\"Validity\":{\"From\":\"2022-09-03\",\"To\":\"2022-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":16508,\"Title\":\"Male\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":455027,\"Name\":\"\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"0\",\"Long\":\"0\",\"Address\":\"0\"},\"Images\":[],\"CityId\":16508,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10738,\"SupplierName\":\"Tatabye\",\"priceaditionals\":null,\"RoomTypeName\":\"Ocean View Room\",\"MealTypeName\":\"AI\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"283969\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Package includes:&lt;br \\/&gt;\\r\\n&amp;bull; 4 Nights Accommodation for 2 persons&lt;br \\/&gt;\\r\\n&amp;bull; Return Speedboat Transfers for 2 persons&lt;br \\/&gt;\\r\\n&amp;bull; Package Rates,&amp;nbsp;&lt;br \\/&gt;\\r\\na) All-Inclusive Plan&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Ocean View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"283970\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Ocean View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"283971\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Ocean View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"283972\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Ocean View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"283973\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":16508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":455027,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AI\",\"ROOMTYPENAME\":\"Ocean View Room\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"39595\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"77682.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":77683,\"priceDoubleOcc\":\"77682.95\",\"priceSingleOcc\":155365.9,\"priceExtraBed\":\"77682.95\",\"priceWithoutBed\":\"77682.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":12200,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77682.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":13022,\"CEB\":13022,\"COSTDO\":13022,\"COSTSO\":13844,\"ACEB\":13022,\"COSTTO\":13022},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":34576,\"priceDoubleOcc\":\"13022.00\",\"priceSingleOcc\":90704.95,\"priceExtraBed\":\"77682.95\",\"priceWithoutBed\":\"77682.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":12200,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13022,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":13022,\"CEB\":13022,\"COSTDO\":13022,\"COSTSO\":13844,\"ACEB\":13022,\"COSTTO\":13022},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":77683,\"priceDoubleOcc\":\"77682.95\",\"priceSingleOcc\":155365.9,\"priceExtraBed\":\"77682.95\",\"priceWithoutBed\":\"77682.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":12200,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77682.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":13022,\"CEB\":13022,\"COSTDO\":13022,\"COSTSO\":13844,\"ACEB\":13022,\"COSTTO\":13022},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":77683,\"priceDoubleOcc\":\"77682.95\",\"priceSingleOcc\":155365.9,\"priceExtraBed\":\"77682.95\",\"priceWithoutBed\":\"77682.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":12200,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77682.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":13022,\"CEB\":13022,\"COSTDO\":13022,\"COSTSO\":13844,\"ACEB\":13022,\"COSTTO\":13022},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":77683,\"priceDoubleOcc\":\"77682.95\",\"priceSingleOcc\":155365.9,\"priceExtraBed\":\"77682.95\",\"priceWithoutBed\":\"77682.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":12200,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77682.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":13022,\"CEB\":13022,\"COSTDO\":13022,\"COSTSO\":13844,\"ACEB\":13022,\"COSTTO\":13022},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":77683,\"priceDoubleOcc\":\"77682.95\",\"priceSingleOcc\":155365.9,\"priceExtraBed\":\"77682.95\",\"priceWithoutBed\":\"77682.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":12200,\"ExcludedPercent\":\"0\",\"PricePerPerson\":77682.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":13022,\"CEB\":13022,\"COSTDO\":13022,\"COSTSO\":13844,\"ACEB\":13022,\"COSTTO\":13022}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"39595\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"69482.95\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":69483,\"priceDoubleOcc\":\"69482.95\",\"priceSingleOcc\":138965.9,\"priceExtraBed\":\"69482.95\",\"priceWithoutBed\":\"69482.95\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":4000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69482.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":4822,\"CEB\":4822,\"COSTDO\":4822,\"COSTSO\":5644,\"ACEB\":4822,\"COSTTO\":4822},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":26376,\"priceDoubleOcc\":\"4822.00\",\"priceSingleOcc\":74304.95,\"priceExtraBed\":\"69482.95\",\"priceWithoutBed\":\"69482.95\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":4000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":4822,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":4822,\"CEB\":4822,\"COSTDO\":4822,\"COSTSO\":5644,\"ACEB\":4822,\"COSTTO\":4822},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":69483,\"priceDoubleOcc\":\"69482.95\",\"priceSingleOcc\":138965.9,\"priceExtraBed\":\"69482.95\",\"priceWithoutBed\":\"69482.95\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":4000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69482.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":4822,\"CEB\":4822,\"COSTDO\":4822,\"COSTSO\":5644,\"ACEB\":4822,\"COSTTO\":4822},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":69483,\"priceDoubleOcc\":\"69482.95\",\"priceSingleOcc\":138965.9,\"priceExtraBed\":\"69482.95\",\"priceWithoutBed\":\"69482.95\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":4000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69482.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":4822,\"CEB\":4822,\"COSTDO\":4822,\"COSTSO\":5644,\"ACEB\":4822,\"COSTTO\":4822},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":69483,\"priceDoubleOcc\":\"69482.95\",\"priceSingleOcc\":138965.9,\"priceExtraBed\":\"69482.95\",\"priceWithoutBed\":\"69482.95\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":4000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69482.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":4822,\"CEB\":4822,\"COSTDO\":4822,\"COSTSO\":5644,\"ACEB\":4822,\"COSTTO\":4822},{\"From\":\"2022-08-15\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":69483,\"priceDoubleOcc\":\"69482.95\",\"priceSingleOcc\":138965.9,\"priceExtraBed\":\"69482.95\",\"priceWithoutBed\":\"69482.95\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":4000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":69482.95,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":2,\"CWOB\":4822,\"CEB\":4822,\"COSTDO\":4822,\"COSTSO\":5644,\"ACEB\":4822,\"COSTTO\":4822}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"283969\":[{\"Sequence\":[0],\"TPInvnSysId\":[283969],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"283970\":[{\"Sequence\":[0],\"TPInvnSysId\":[283970],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"283971\":[{\"Sequence\":[0],\"TPInvnSysId\":[283971],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"283972\":[{\"Sequence\":[0],\"TPInvnSysId\":[283972],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}],\"283973\":[{\"Sequence\":[0],\"TPInvnSysId\":[283973],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"2\"],\"HotelTransport\":[\"2\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Male','Male,Indian Subcontinent,Maldives',NULL,'16508',4822,77683,4,NULL,NULL,NULL,2,'',0,'2022-09-03 00:00:00','2022-10-31 00:00:00','2022-10-31 00:00:00',3,'Maldives','133','2022-09-03 12:54:40','2022-09-03 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'maldives-3-nights',NULL,NULL,NULL,0),(49,39081,1,12577,1,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":39081,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/andaman_-_5n6d_1662036630.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The Andaman and Nicobar Islands is&amp;nbsp;a union territory of India consisting of 572 islands, of which 37 are inhabited, at the junction of the Bay of Bengal and the Andaman Sea. The territory is about 150 km (93 mi) north of Aceh in Indonesia and separated from Thailand and Myanmar by the Andaman Sea.&amp;nbsp;Andaman and Nicobar Islands have&amp;nbsp;India&amp;#39;s best nesting beaches for three species of marine turtles&amp;nbsp;&amp;ndash; Hawksbill, Green turtle and world&amp;#39;s largest sea turtle, the Leatherback (Dermocheleys Coriacea).&amp;nbsp;The best time to visit Andaman &amp;amp; Nicobar Islands is considered&amp;nbsp;between October and May&amp;nbsp;as the weather is pleasant, just perfect for sightseeing, water sports, and beach excursion. Monsoons (July to September) are not always recommended because of the high tidal waves, incessant rains and strong winds.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Andaman - 5N\\/6D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10671\",\"SupplierName\":\"Andaman Tours\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":2300,\"Title\":\"Chidiya Tapu\",\"Description\":\"Chidiya Tapu is also known as Bird Island and Sunset Point, is located 25 km from Port Blair in the archipelago of Andaman Islands. It is a small village and the main hub of Andaman Island. The beach is dotted with green mangroves and peaceful forest, which is a perfect place for nature lovers and bird watching. It is one it an ideal picnic spot and the island is undoubtedly magical at the sunset. It is famous for its 46 varieties of endemic birds, white spotted deer and seasonal orchids.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.505968,\"Long\":92.701465,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Chidiya_Tapu_32511_1519645969.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":2300,\"Title\":\"Chidiya Tapu\",\"Description\":\"Chidiya Tapu is also known as Bird Island and Sunset Point, is located 25 km from Port Blair in the archipelago of Andaman Islands. It is a small village and the main hub of Andaman Island. The beach is dotted with green mangroves and peaceful forest, which is a perfect place for nature lovers and bird watching. It is one it an ideal picnic spot and the island is undoubtedly magical at the sunset. It is famous for its 46 varieties of endemic birds, white spotted deer and seasonal orchids.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.505968,\"Long\":92.701465,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Chidiya_Tapu_32511_1519645969.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null}]}},{\"CityId\":34567,\"Title\":\"Neil Island\",\"Hotels\":[],\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2277,\"Title\":\"Cellular Jail (Alfastan Jail)\",\"Description\":\"The Cellular Jail, also known as K&Auml;\\u0081l&Auml;\\u0081 P&Auml;\\u0081n&Auml;&laquo;, was a colonial prison in the Andaman and Nicobar Islands, India. The prison was used by the British especially to exile political prisoners to the remote archipelago\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/414_1521893521.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":6550,\"Title\":\"Bharatpur Beach, Neil Island, Bharatpur\",\"Description\":\"The best beach in Neil Island is Bharathpur Beach.  Tourists from all over the world love Bharathpur because of its backdrop unimaginably designed by the creator. The lagoon with shallow and clear water is an ideal space for family to have fun and enjoy the level best. The 500 km long beach has a lot of options for the kids to play and simply laugh.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.8364406,\"Long\":93.0316795,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Bharatpur_Beach,_Neil_Island,__34567_1530778332.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":6541,\"Title\":\"Laxmanpur Beach\",\"Description\":\"Among the beaches in Andaman, it is ranked no.3 and the major reason for that is the greatest combination of azure water, the long stretch of secluded beach, the tropical trees in the backdrop and the heaven-like peace prevailing around.\",\"CurrencyType\":0,\"CityId\":34567,\"CityName\":\"Neil Island\",\"Lat\":11.847006,\"Long\":93.0156096,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/34567\\/sightseeing\\/Laxmanpur_Beach_34567_1530776471.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":2300,\"Title\":\"Chidiya Tapu\",\"Description\":\"Chidiya Tapu is also known as Bird Island and Sunset Point, is located 25 km from Port Blair in the archipelago of Andaman Islands. It is a small village and the main hub of Andaman Island. The beach is dotted with green mangroves and peaceful forest, which is a perfect place for nature lovers and bird watching. It is one it an ideal picnic spot and the island is undoubtedly magical at the sunset. It is famous for its 46 varieties of endemic birds, white spotted deer and seasonal orchids.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.505968,\"Long\":92.701465,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Chidiya_Tapu_32511_1519645969.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"280386\",\"Title\":\"Arrival at Port Blair - Corbyn&#039;s Cove Beach - Cellular Jail Visit\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Fly into Port Blair Airport, Our Travel Executive will be waiting outside the airport exit gate with a Pla-Card having your name for a hassle free meet and check in to HOTEL \\/RESORT booked as per your choice. later Post Lunch , visit to the nearby beach inside the city around 3-4 kms away known as Corbyn&amp;rsquo;s Cove Beach, a coconut fringed beach with its beauty of sunset and sunrise Ideal for sun basking and water games. After completing the trip from the Corbyn&amp;rsquo;s cove beach, Visit the cellular Jail, The Historic place where you can witness the heroic saga of Indian freedom fighters followed by Light and sound show at Cellular Jail. Overnight at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2277,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2276,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"280387\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"280400\",\"Title\":\"Port Blair to Havelock Island (Swaraj Dweep) - Radhanagar Beach Visit\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Morning after Breakfast, Check out from Hotel, Catch your cruise\\/ferry booked as per the time and schedule advised by our travel executive, Upon reaching the island, Our travel executive will assist you Check in to your respected Resort at Havelock, Post lunch at your own visit the most famous beach the Radhanagar Beach, Asia&amp;rsquo;s 7th Largest beach in the world and is known as a best place to relax, fun and photography. Spend some time here with you family and have a lot of fun later post lunch get back to your Resort. Overnight Stay at Havelock Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"280401\",\"Title\":\"Elephant Beach Visit\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning after Breakfast, Check out from Havelock Resort Catch your cruise\\/ferry booked as per the time and schedule advised by our travel executive, Visit the Coral land the Elephant Beach at Havelock. the best place for snorkeling and some water activities to have fun. Overnight Stay at Havelock.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"280402\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"280403\",\"Title\":\"Havelock Island (Swaraj Dweep)  to Neil Island (Shaheed Dweep)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning after Breakfast, Check out from Havelock Resort Catch your cruise\\/ferry booked as per the time and schedule advised by our travel executive. Upon Reaching Neil Island Check-in to Hotel\\/Resort later visit to 3 Bharatpur Beach an ideal place for water sports and best for Scuba Dive with its clear surface of Seawater &amp;amp; Laxmanpur Beach Natural Rock formation. Evening free for Leisure. Overnight Stay at Neil Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6550,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":6541,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"280404\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":34567,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"280405\",\"Title\":\"Neil Island (Shaheed Dweep) to Port Blair \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning after Breakfast, Check out from Neil Island Resort Catch your cruise\\/ferry booked as per the time and schedule advised by our travel executive. Upon Reaching Port Blair Check in to Hotel, Evening Visit to Chidiyatapu beach a sunset point 30kms away from the main city, Offers the best sunset view in Port Blair. Overnight Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2300,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"280406\",\"Title\":\"Return to Hometown\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After Having a lot of fun in the island, Check out from Hotel, Step back to Airport and Fly away to Hometown with Unlimited memories and fun.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39081\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"19200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"19200.00\",\"priceSingleOcc\":45400,\"priceExtraBed\":\"14800.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":14800,\"COSTDO\":19200,\"COSTSO\":43400,\"ACEB\":14800,\"COSTTO\":14800},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"19200.00\",\"priceSingleOcc\":45400,\"priceExtraBed\":\"14800.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":14800,\"COSTDO\":19200,\"COSTSO\":43400,\"ACEB\":14800,\"COSTTO\":14800},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"19200.00\",\"priceSingleOcc\":45400,\"priceExtraBed\":\"14800.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":14800,\"COSTDO\":19200,\"COSTSO\":43400,\"ACEB\":14800,\"COSTTO\":14800},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17733,\"priceDoubleOcc\":\"19200.00\",\"priceSingleOcc\":45400,\"priceExtraBed\":\"14800.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":14800,\"COSTDO\":19200,\"COSTSO\":43400,\"ACEB\":14800,\"COSTTO\":14800},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":18133,\"priceDoubleOcc\":\"19800.00\",\"priceSingleOcc\":46000,\"priceExtraBed\":\"14800.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":14800,\"COSTDO\":19800,\"COSTSO\":44000,\"ACEB\":14800,\"COSTTO\":14800},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":19067,\"priceDoubleOcc\":\"21200.00\",\"priceSingleOcc\":47400,\"priceExtraBed\":\"14800.00\",\"priceWithoutBed\":\"13800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13800,\"CEB\":14800,\"COSTDO\":21200,\"COSTSO\":45400,\"ACEB\":14800,\"COSTTO\":14800}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39081\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16233,\"priceDoubleOcc\":\"17700.00\",\"priceSingleOcc\":42400,\"priceExtraBed\":\"13300.00\",\"priceWithoutBed\":\"12300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12300,\"CEB\":13300,\"COSTDO\":17700,\"COSTSO\":41900,\"ACEB\":13300,\"COSTTO\":13300},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16233,\"priceDoubleOcc\":\"17700.00\",\"priceSingleOcc\":42400,\"priceExtraBed\":\"13300.00\",\"priceWithoutBed\":\"12300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12300,\"CEB\":13300,\"COSTDO\":17700,\"COSTSO\":41900,\"ACEB\":13300,\"COSTTO\":13300},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16233,\"priceDoubleOcc\":\"17700.00\",\"priceSingleOcc\":42400,\"priceExtraBed\":\"13300.00\",\"priceWithoutBed\":\"12300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12300,\"CEB\":13300,\"COSTDO\":17700,\"COSTSO\":41900,\"ACEB\":13300,\"COSTTO\":13300},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16233,\"priceDoubleOcc\":\"17700.00\",\"priceSingleOcc\":42400,\"priceExtraBed\":\"13300.00\",\"priceWithoutBed\":\"12300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12300,\"CEB\":13300,\"COSTDO\":17700,\"COSTSO\":41900,\"ACEB\":13300,\"COSTTO\":13300},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16633,\"priceDoubleOcc\":\"18300.00\",\"priceSingleOcc\":43000,\"priceExtraBed\":\"13300.00\",\"priceWithoutBed\":\"12300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12300,\"CEB\":13300,\"COSTDO\":18300,\"COSTSO\":42500,\"ACEB\":13300,\"COSTTO\":13300},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17567,\"priceDoubleOcc\":\"19700.00\",\"priceSingleOcc\":44400,\"priceExtraBed\":\"13300.00\",\"priceWithoutBed\":\"12300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":12300,\"CEB\":13300,\"COSTDO\":19700,\"COSTSO\":43900,\"ACEB\":13300,\"COSTTO\":13300}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"280386\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[280386],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"280387\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[280387],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"280400\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[280400],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"280401\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[280401],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"280402\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[280402],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"280403\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[280403],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"280404\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[280404],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"280405\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[280405],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"280406\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[280406],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Port Blair,Havelock Island,Neil Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island,Neil Island',NULL,'32511,11658,34567',17700,21200,5,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-09-01 18:19:48','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'andaman-5n-6d',NULL,NULL,NULL,0),(50,39895,1,12577,1,0,0,'Adventure,Culture,Offbeat',NULL,1,1,0,'{\"package\":{\"TPId\":39895,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/glimpse_of_ladakh_3n4d_1662035938.jpg\",\"BookingValidUntill\":\"2022-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Leh, town,&amp;nbsp;Ladakh&amp;nbsp;union territory, northern&amp;nbsp;India. The town is located in the valley of the upper&amp;nbsp;Indus River&amp;nbsp;at an elevation of 11,550 feet (3,520 metres), surrounded by the towering peaks of the&amp;nbsp;Ladakh Range&amp;nbsp;(a southeastern&amp;nbsp;extension&amp;nbsp;of the&amp;nbsp;Karakoram Range).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Leh is in one of the most remote areas of the Indian-administered portion of the the&amp;nbsp;Kashmir&amp;nbsp;region and is one of the highest permanently inhabited towns in the world. It was built as a terminus for caravans from&amp;nbsp;Asia. Today Leh is reached only by one main highway, the Treaty Road, which connects it to&amp;nbsp;Srinagar&amp;nbsp;to the west and to D&amp;ecirc;mqog,&amp;nbsp;Tibet&amp;nbsp;(in a Chinese-administered part of Kashmir), to the southeast. The economy relies mainly on trade, but fruit growing and other agriculture are also important. An old palace of the kings of Ladakh and the Sankar monastery overlook the town. Pop. (2001) 28,639; (2011) 30,870.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Leh\",\"SourcePlaceSysId\":15229,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"GLIMPSE OF LADAKH 3N\\/4D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10752\",\"SupplierName\":\"The Samsara Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast\",\"PackageType\":\"Adventure,Culture,Offbeat\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":516935,\"Name\":\"Hotel Sankar Residency\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1756379\",\"Long\":\"77.58580309999999\",\"Address\":\"Sankar Road, near Sankar Monastery Road, Yurtung, Leh, Ladakh 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":418253,\"Name\":\"Hotel The Himalaya\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.16749\",\"Long\":\"77.58645\",\"Address\":\"Darokhan Samkar Road Chubi,Leh, Jammu And Kashmir, , none, LEH, JAMMU &amp; KASHMIR, India, Pin-194101, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"Located 7 km from incredible Shanti Stupa is Hotel The Himalaya. This budget hotel in Leh accommodates its guests in spacious rooms. Onsite parking, front desk for assistance, serene garden, doctor-on-call service are also available here. Guests can enjoy yummy meals at the in-house restaurant here.null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/1\\/nxd\\/mav\\/oyd\\/dbu\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Palace and Monastery\",\"Description\":\"Shey Palace and Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"286622\",\"Title\":\"ARRIVE LEH \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival Leh by morning flight and transfer to the hotel. After welcome drink take a complete rest for acclimatization to the height altitude of Leh (3500 meters). In the late afternoon drive to the city for an orientation walk in the markets&amp;sbquo; followed by a visit to Shanti Stupa&amp;sbquo; Leh palace. Dinner and overnight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3579,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"286623\",\"Title\":\"DAY 02: LEH EXCURSION TO MONASTERIES (50 KMS \\/ 02 HRS &ndash; ONE WAY)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Post Breakfast we proceed for Indus Valley Monastery Starting with Hemis Gompa, the largest monastic foundation of Drukpa Kagyu Order of Tibetan Buddhism, Thiksey Monastery an impressive complex rising tier upon tier on a hill above the village, Shey Palace, The ancient capital of Ladakh, 3 Idiots Rancho School &amp;amp; Sindhu Ghat. After visiting above places we drive back to Leh. Overnight at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3577,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2644,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3576,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3536,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"286624\",\"Title\":\"DAY 03: LEH - EXCURSION TO KHARDUNGLA TOP - 18,390 FT. (40 KMS \\/ 02 HRS ONE WAY) \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After Breakfast drive to Khardong-la (80 Kms round trip), highest motorable pass in the world (alt. 18&amp;sbquo;380 ft)&amp;sbquo; and recorded in the Guinness Book of world records. On the way back from the pass&amp;sbquo; you will be rewarded with spectacular views of the Indus valley and the endless peak of the Zanskar range. Rest of the day free explores the market. Dinner and overnight in Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2630,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"286625\",\"Title\":\"DAY 04: DEPART LEH (FLY OUT)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Through a punctual transfer to the Domestic Airport to catch the flight for your onward destination.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39895\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":10000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":10000,\"COSTDO\":10000,\"COSTSO\":10000,\"ACEB\":10000,\"COSTTO\":10000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":10000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":10000,\"COSTDO\":10000,\"COSTSO\":10000,\"ACEB\":10000,\"COSTTO\":10000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10667,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":11000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":10000,\"COSTDO\":11000,\"COSTSO\":11000,\"ACEB\":10000,\"COSTTO\":10000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10667,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":11000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":10000,\"COSTDO\":11000,\"COSTSO\":11000,\"ACEB\":10000,\"COSTTO\":10000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":12000,\"priceDoubleOcc\":\"13000.00\",\"priceSingleOcc\":13000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":10000,\"COSTDO\":13000,\"COSTSO\":13000,\"ACEB\":10000,\"COSTTO\":10000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":14667,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"10000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":10000,\"COSTDO\":17000,\"COSTSO\":17000,\"ACEB\":10000,\"COSTTO\":10000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39895\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":8500,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":8500,\"priceExtraBed\":\"8500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":8500,\"COSTDO\":8500,\"COSTSO\":8500,\"ACEB\":8500,\"COSTTO\":8500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":8500,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":8500,\"priceExtraBed\":\"8500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":8500,\"COSTDO\":8500,\"COSTSO\":8500,\"ACEB\":8500,\"COSTTO\":8500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9167,\"priceDoubleOcc\":\"9500.00\",\"priceSingleOcc\":9500,\"priceExtraBed\":\"8500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":8500,\"COSTDO\":9500,\"COSTSO\":9500,\"ACEB\":8500,\"COSTTO\":8500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9167,\"priceDoubleOcc\":\"9500.00\",\"priceSingleOcc\":9500,\"priceExtraBed\":\"8500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":8500,\"COSTDO\":9500,\"COSTSO\":9500,\"ACEB\":8500,\"COSTTO\":8500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10500,\"priceDoubleOcc\":\"11500.00\",\"priceSingleOcc\":11500,\"priceExtraBed\":\"8500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":8500,\"COSTDO\":11500,\"COSTSO\":11500,\"ACEB\":8500,\"COSTTO\":8500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":13167,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":15500,\"priceExtraBed\":\"8500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":8500,\"COSTDO\":15500,\"COSTSO\":15500,\"ACEB\":8500,\"COSTTO\":8500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"286622\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[286622],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non Ac Innova \\/ Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"286623\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[286623],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non Ac Innova \\/ Tempo Traveller&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"286624\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[286624],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non Ac Innova \\/ Tempo Traveller&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"286625\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[286625],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non Ac Innova \\/ Tempo Traveller&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Leh','Leh,Ladakh,Indian Subcontinent,North India,India',NULL,'15229',8500,17000,3,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2022-10-31 00:00:00','2022-10-31 00:00:00',3,'India','101','2022-09-01 18:08:18','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'glimpse-of-ladakh-3n-4d',NULL,NULL,NULL,0),(51,39944,1,12577,1,0,0,'Adventure,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":39944,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/little_tibet_experience_4n5d_1662035873.jpg\",\"BookingValidUntill\":\"2022-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Set amidst the epic Himalayas, Ladakh is a rustic and heavenly beautiful travel destination. The rugged valleys and mountains, winding roads coupled with the vibrant cultural life maintain the exuberance and charm of this region. The iconic Magnetic Hill, the turquoise coloured Pangong Lake, the confluence of two mystical rivers, ancient and awe inspiring monasteries and the highest passes are a few of the marvelous attractions of Leh and Ladakh in general. The wide array of trekking routes will satiate your soul and enrich the senses. The moon like desert mountains continue to be an exceptional destination for adventure seekers and admirers of Buddhism and phenomenal mountain vistas. So, pack some travel essentials with you to explore the most enthralling destination of India and bring back souvenirs of endless memories with you.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Leh\",\"SourcePlaceSysId\":15229,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"LITTLE TIBET EXPERIENCE 4N\\/5D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10752\",\"SupplierName\":\"The Samsara Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Airport Transfers,Sightseeing\",\"PackageType\":\"Adventure,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":516935,\"Name\":\"Hotel Sankar Residency\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1756379\",\"Long\":\"77.58580309999999\",\"Address\":\"Sankar Road, near Sankar Monastery Road, Yurtung, Leh, Ladakh 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":418253,\"Name\":\"Hotel The Himalaya\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.16749\",\"Long\":\"77.58645\",\"Address\":\"Darokhan Samkar Road Chubi,Leh, Jammu And Kashmir, , none, LEH, JAMMU &amp; KASHMIR, India, Pin-194101, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"Located 7 km from incredible Shanti Stupa is Hotel The Himalaya. This budget hotel in Leh accommodates its guests in spacious rooms. Onsite parking, front desk for assistance, serene garden, doctor-on-call service are also available here. Guests can enjoy yummy meals at the in-house restaurant here.null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/1\\/nxd\\/mav\\/oyd\\/dbu\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Palace and Monastery\",\"Description\":\"Shey Palace and Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29834,\"Title\":\"Indus Valley sightseeing\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2630,\"Title\":\"Zanskar Range\",\"Description\":\"Zanskar or Zangskar (Ladakhi: zangs dkar ) is a subdistrict or tehsil of the Kargil district, which lies in the eastern half of the Indian state of Jammu and Kashmir. The administrative centre is Padum. Zanskar, together with the neighbouring region of Ladakh, was briefly a part of the kingdom of Guge in Western Tibet.\\r\\n\\r\\nThe Zanskar Range is a mountain range in the Indian state of Jammu and Kashmir that separates Zanskar from Ladakh. Geologically, the Zanskar Range is part of the Tethys Himalaya, an approximately 100-km-wide synclinorium formed by strongly folded and imbricated, weakly metamorphosed sedimentary series. The average height of the Zanskar Range is about 6,000 m (19,700 ft). Its eastern part is known as Rupshu.\\r\\n\\r\\nIt also separates Kinnaur District from Spiti in Himachal Pradesh. The highest peaks of Himachal are in the Zanskar Range.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.25,\"Long\":77.6666667,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516704122.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29872,\"Title\":\"Changthang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29873,\"Title\":\"Indo China Border\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&Acirc;&deg;C to 10&Acirc;&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29870,\"Title\":\"Sakti Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29871,\"Title\":\"Tangtse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"287034\",\"Title\":\"ARRIVE LEH \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival Leh by morning flight and transfer to the hotel. After welcome drink take a complete rest for acclimatization to the height altitude of Leh (3500 meters). In the late afternoon drive to the city for an orientation walk in the markets&amp;sbquo; followed by a visit to Shanti Stupa&amp;sbquo; Leh palace. Dinner and overnight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3579,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287035\",\"Title\":\"DAY 02: LEH EXCURSION TO MONASTERIES (50 KMS \\/ 02 HRS &ndash; ONE WAY)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Post Breakfast we proceed for Indus Valley Monastery Starting with Hemis Gompa, the largest monastic foundation of Drukpa Kagyu Order of Tibetan Buddhism, Thiksey Monastery an impressive complex rising tier upon tier on a hill above the village, Shey Palace, The ancient capital of Ladakh, 3 Idiots Rancho School &amp;amp; Sindhu Ghat. After visiting above places we drive back to Leh. Overnight at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3576,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3577,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3536,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2644,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287036\",\"Title\":\"DAY 03: LEH - EXCURSION TO KHARDUNGLA TOP - 18,390 FT. (40 KMS \\/ 02 HRS ONE WAY) \",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;After Breakfast drive to Khardong-la (80 Kms round trip), highest motorable pass in the world (alt. 18&amp;sbquo;380 ft)&amp;sbquo; and recorded in the Guinness Book of world records. On the way back from the pass&amp;sbquo; you will be rewarded with spectacular views of the Indus valley and the endless peak of the Zanskar range. Rest of the day free explores the market. Dinner and overnight in Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":29834,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2630,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287037\",\"Title\":\"LEH - EXCURSION TO PANGONG LAKE &ndash; 14,000 FT. (140 KMS \\/ 4 - 5 HRS &ndash; ONE WAY)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After an early breakfast we leave for &lt;strong&gt;Pangong Lake&lt;\\/strong&gt; through &lt;strong&gt;Changla&lt;\\/strong&gt; pass 5486 Mtrs. The long easy ascent takes you to Changla pass through its winding roads passing through &lt;strong&gt;Sakti Village&lt;\\/strong&gt;. Stop at the Changla Pass for a quick photograph session and drive down to the village of &lt;strong&gt;Tangtse&lt;\\/strong&gt;, where you can relax for a cup of tea. Leaving Tangtse for Pangong you pass through few small villages of &lt;strong&gt;Changthang&lt;\\/strong&gt; and finally you can have a sudden view of the Pangong Lake situated at 14,000 feet (4,267 m).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This famous blue brackish Lake of Pangong is 5\\/6 Kms wide and over 133 Kms long with half of its running the other side of the &lt;strong&gt;&amp;quot;INDO CHINA BORDER&amp;quot;&lt;\\/strong&gt;. One rarely feels so close to nature and environment and the scenery is unforgettable. After the success of 3 Idiots, this beautiful natural location has attracted more tourists from all over the world. After spending some time at Pangong We drive back to Leh in the late afternoon. Overnight at Hotel in Leh&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29872,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29873,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3496,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29870,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29871,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287038\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39944\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":13000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"7000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7000,\"CEB\":9000,\"COSTDO\":15000,\"COSTSO\":15000,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":13000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"7000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7000,\"CEB\":9000,\"COSTDO\":15000,\"COSTSO\":15000,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":13667,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":16000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"7000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7000,\"CEB\":9000,\"COSTDO\":16000,\"COSTSO\":16000,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":13667,\"priceDoubleOcc\":\"16000.00\",\"priceSingleOcc\":16000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"7000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7000,\"CEB\":9000,\"COSTDO\":16000,\"COSTSO\":16000,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"18000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"7000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7000,\"CEB\":9000,\"COSTDO\":18000,\"COSTSO\":18000,\"ACEB\":9000,\"COSTTO\":9000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":20333,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":26000,\"priceExtraBed\":\"9000.00\",\"priceWithoutBed\":\"7000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7000,\"CEB\":9000,\"COSTDO\":26000,\"COSTSO\":26000,\"ACEB\":9000,\"COSTTO\":9000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39944\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":11500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"5500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5500,\"CEB\":7500,\"COSTDO\":13500,\"COSTSO\":13500,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":11500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"5500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5500,\"CEB\":7500,\"COSTDO\":13500,\"COSTSO\":13500,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":12167,\"priceDoubleOcc\":\"14500.00\",\"priceSingleOcc\":14500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"5500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5500,\"CEB\":7500,\"COSTDO\":14500,\"COSTSO\":14500,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":12167,\"priceDoubleOcc\":\"14500.00\",\"priceSingleOcc\":14500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"5500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5500,\"CEB\":7500,\"COSTDO\":14500,\"COSTSO\":14500,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"5500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5500,\"CEB\":7500,\"COSTDO\":16500,\"COSTSO\":16500,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18833,\"priceDoubleOcc\":\"24500.00\",\"priceSingleOcc\":24500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"5500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5500,\"CEB\":7500,\"COSTDO\":24500,\"COSTSO\":24500,\"ACEB\":7500,\"COSTTO\":7500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"287034\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[287034],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova or Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287035\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[287035],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova or Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287036\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[287036],\"Remark\":[\"&lt;p&gt;Transfers &amp; Sightseeing by Non A\\/C Innova or Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287037\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[287037],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova or Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287038\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[287038],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Leh','Leh,Ladakh,Indian Subcontinent,North India,India',NULL,'15229',13500,26000,4,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2022-10-31 00:00:00','2022-10-31 00:00:00',3,'India','101','2022-09-01 18:07:12','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'little-tibet-experience-4n-5d',NULL,NULL,NULL,0),(52,39946,1,12577,1,0,0,'Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":39946,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/splendour_of_ladakh_5n6d_1662035787.jpg\",\"BookingValidUntill\":\"2022-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Set amidst the epic Himalayas, Ladakh is a rustic and heavenly beautiful travel destination. The rugged valleys and mountains, winding roads coupled with the vibrant cultural life maintain the exuberance and charm of this region. The iconic Magnetic Hill, the turquoise coloured Pangong Lake, the confluence of two mystical rivers, ancient and awe inspiring monasteries and the highest passes are a few of the marvelous attractions of Leh and Ladakh in general. The wide array of trekking routes will satiate your soul and enrich the senses. The moon like desert mountains continue to be an exceptional destination for adventure seekers and admirers of Buddhism and phenomenal mountain vistas. So, pack some travel essentials with you to explore the most enthralling destination of India and bring back souvenirs of endless memories with you.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Leh\",\"SourcePlaceSysId\":15229,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"SPLENDOUR OF LADAKH 5N\\/6D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10752\",\"SupplierName\":\"The Samsara Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Train Station Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2022-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":516935,\"Name\":\"Hotel Sankar Residency\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1756379\",\"Long\":\"77.58580309999999\",\"Address\":\"Sankar Road, near Sankar Monastery Road, Yurtung, Leh, Ladakh 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":418253,\"Name\":\"Hotel The Himalaya\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.16749\",\"Long\":\"77.58645\",\"Address\":\"Darokhan Samkar Road Chubi,Leh, Jammu And Kashmir, , none, LEH, JAMMU &amp; KASHMIR, India, Pin-194101, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"Located 7 km from incredible Shanti Stupa is Hotel The Himalaya. This budget hotel in Leh accommodates its guests in spacious rooms. Onsite parking, front desk for assistance, serene garden, doctor-on-call service are also available here. Guests can enjoy yummy meals at the in-house restaurant here.null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/1\\/nxd\\/mav\\/oyd\\/dbu\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3576,\"Title\":\"hemis monastery leh\",\"Description\":\"Hemis Monastery is the most popular tourist attraction in Ladakh.It is a Tibetan Buddhist monastery which is Situated at a distance of 45 km from Leh. It was re-established in 1672 by the Ladakhi king Sengge Namgyal. The annual Hemis festival honoring Padmasambhava is held here in early June.The Monastery has a beautiful architecture, which is quite interesting to witness. There is a museum also that exhibits a large collection of Buddhist relics and several ancient items that suggest there existed a rich culture here.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":33.9125964,\"Long\":77.7029689,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/hemis_monastery_leh_15229_1518611816.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2644,\"Title\":\"Thikse Monastery\",\"Description\":\"Thiksay Gompa or Thiksay Monastery (also transliterated from Ladakhi as Tikse, Tiksey or Thiksey) is a gompa (monastery) affiliated with the Gelug sect of Tibetan Buddhism. It is located on top of a hill in Thiksey village, approximately 19 kilometres (12 mi) east of Leh in Ladakh, India. It is noted for its resemblance to the Potala Palace in Lhasa, Tibet and is the largest gompa in central Ladakh, notably containing a separate set of buildings for female renunciates that has been the source of significant recent building and reorganisation.\\r\\n\\r\\nThe monastery is located at an altitude of 3,600 metres (11,800 ft) in the Indus Valley. It is a twelve-story complex and houses many items of Buddhist art such as stupas, statues, thangkas, wall paintings and swords. One of the main points of interest is the Maitreya Temple installed to commemorate the visit of the 14th Dalai Lama to this monastery in 1970 it contains a 15 metres (49 ft) high statue of Maitreya, the largest such statue in Ladakh, covering two stories of the building.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0568266,\"Long\":77.6669626,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516684019.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3577,\"Title\":\"Shey Palace and Monastery\",\"Description\":\"Shey Palace and Monastery is one of the worth visiting places in Ladakh.It is situated at an altitude of around 11200 feet above the sea level.Shey Monastery is considered as one of the spectacular monasteries in Northern India.It is also known as Shey Palace beacause it was founded by the first King of Ladakh.The 10 meters high gigantic copper-gold gilded statue of a seated Shakyamuni Lord Buddha is the major attraction of the Monastery. This statue of Lord Buddha is said to be the second Buddha statue in Ladakh.There are two major celebrations take place at Shey Monastery Shey Doo Lhoo and Shey Suey Rupla.A number of tourists across the globe visit this monastery every year to experience such unique celebration in the lap of mountains.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0714933,\"Long\":77.6331496,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shey_Monastery_15229_1518611498.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3537,\"Title\":\"3 idiot Rancho School\",\"Description\":\"This school became famous after the Aamir Khan movie Three Idiots. The name of this school is Druk Padma Karpo School , this is also known as Druk White Lotus school. The clean and eco friendly structures of the school is designed to withstand seismic disturbances. This school was conferred on of the most beautiful schools in the world by BBC London in the year 2016. \\r\\n\\r\\nOn arrival here you will be taken inside the campus with a guide and can visit different parts of the school. You are not allowed to disturb students or take any photographs of them. There is a caf&amp;eacute; and one souvenir shop available inside the campus. Minimum time required is 15 to 20 minutes to visit this beautiful school campus. \\r\\n\\r\\nThe guided tour of Rancho campus is available from 9 AM to 6 PM only.This school was damaged by flood caused by cloudbursts in Aug 2010. \\r\\n\\r\\nThe wall with painting about the three Idiots movie is the most popular spot for the tourist. You can pose for photographs keeping these pictures in the background. \\r\\n\\r\\nThis school is on the way to Shey Palace and Thikse monastery so you can visit this school on a half day sightseeing trip from Leh.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518518663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3536,\"Title\":\"Sindhu Ghat\",\"Description\":\"&quot;Sindhu Ghat is a beautiful riverbank, situated near the Shey village in Leh. It is known for its unique and scenic landscape, which is consists of barren mountains, rocky terrains, sparse greenery and the Sindhu River traversing the region. The Sindhu River, known as Indus in English, originates near Mansarovar Lake in Tibet and passes through the distinct terrains of India before reaching its confluence in Pakistan. This river is counted amongst the seven prime sacred rivers of the country. Apart from its religious significance, the river earns fame as a cultural entity and symbol of communal harmony. \\r\\n\\r\\nThis riverbank is the venue of a famous cultural event, which is named Ladakh Singhey Khabab Spring Festival. Celebrated annually, this three-day festival takes place in the month of June, on the occasion of Guru Purnima &acirc;&euro;&ldquo; the auspicious day of full moon. It is dedicated to the sacred river and is attended by people from surrounding as well as far-flung regions. The festival begins with a ritual that is performed by 50 Buddhist lamas along the riverside. Cultural programmes are organised at the venue that are followed by a short sightseeing trip, campfire and get-together. The third day is marked by a religious ceremony called Sindhu Pujan, during which the river is worshipped.  Apart from being the venue of the famous festival, Sindhu Ghat is an apt place for river rafting. The gurgling waters of this river provide a perfect opportunity for the thrilling activity.&quot;\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.084867,\"Long\":77.608666,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518519581.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3496,\"Title\":\"Pangong Lake\",\"Description\":\"The famous and sparkling blue Pangong lake is situated near Leh-Ladakh in the Himalayas approximately at the height of 4350 meters. This endorheic lake is 12 kilometres long and extends from India to Tibet with two-thirds of it lying in the latter. Owing to its altitude the temperature here ranges from -5&Acirc;&deg;C to 10&Acirc;&deg;C as a result of which the lake freezes completely during winters in spite of its salinity. A unique feature of the lake is that it does not remain blue throughout the year or even the day rather it changes colours from azure to light blue to green and grey too! It has been a tourist attraction for a very long time and has gained further popularity after being a hot-spot for many film shoots apart from being an essential for anyone travelling to Leh - Ladakh. The sublime beauty crystal waters and gentle hills of Pangong Lake are an exceptional example of the beautiful landscape of the region.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518412655.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2617,\"Title\":\"Chang La\",\"Description\":\"The Chang La is a high mountain pass in Ladakh, India. It is claimed to be the second highest motorable road in the world. Chang La is approached from Leh via Kharu and Sekti village by an asphalt road.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.0471702,\"Long\":77.930494,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1516610144.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29870,\"Title\":\"Sakti Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29871,\"Title\":\"Tangtse\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29872,\"Title\":\"Changthang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29873,\"Title\":\"Indo China Border\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29879,\"Title\":\"Nubra Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29880,\"Title\":\"Diskit Monastery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"287052\",\"Title\":\"ARRIVE LEH \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival Leh by morning flight and transfer to the hotel. After welcome drink take a complete rest for acclimatization to the height altitude of Leh (3500 meters). In the late afternoon drive to the city for an orientation walk in the markets&amp;sbquo; followed by a visit to Shanti Stupa&amp;sbquo; Leh palace. Dinner and overnight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3579,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287053\",\"Title\":\"DAY 02: LEH EXCURSION TO MONASTERIES (50 KMS \\/ 02 HRS &ndash; ONE WAY)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Post Breakfast we proceed for Indus Valley Monastery Starting with &lt;strong&gt;Hemis Gompa&lt;\\/strong&gt;, the largest monastic foundation of Drukpa Kagyu Order of Tibetan Buddhism, &lt;strong&gt;Thiksey Monastery&lt;\\/strong&gt; an impressive complex rising tier upon tier on a hill above the village, &lt;strong&gt;Shey Palace&lt;\\/strong&gt;, The ancient capital of Ladakh, &lt;strong&gt;3 Idiots Rancho School&lt;\\/strong&gt; &amp;amp; &lt;strong&gt;Sindhu Ghat&lt;\\/strong&gt;. After visiting above places we drive back to Leh. Overnight at Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3576,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2644,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3577,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3537,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3536,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287054\",\"Title\":\"LEH - EXCURSION TO PANGONG LAKE &ndash; 14,000 FT. (140 KMS \\/ 4 - 5 HRS &ndash; ONE WAY)\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;After an early breakfast we leave for &lt;strong&gt;Pangong Lake&lt;\\/strong&gt; through &lt;strong&gt;Changla&lt;\\/strong&gt; pass 5486 Mtrs. The long easy ascent takes you to Changla pass through its winding roads passing through &lt;strong&gt;Sakti Village&lt;\\/strong&gt;. Stop at the Changla Pass for a quick photograph session and drive down to the village of &lt;strong&gt;Tangtse&lt;\\/strong&gt;, where you can relax for a cup of tea. Leaving Tangtse for Pangong you pass through few small villages of &lt;strong&gt;Changthang&lt;\\/strong&gt; and finally you can have a sudden view of the Pangong Lake situated at 14,000 feet (4,267 m).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;This famous blue brackish Lake of Pangong is 5\\/6 Kms wide and over 133 Kms long with half of its running the other side of the &lt;strong&gt;&amp;quot;INDO CHINA BORDER&amp;quot;&lt;\\/strong&gt;. One rarely feels so close to nature and environment and the scenery is unforgettable. After the success of 3 Idiots, this beautiful natural location has attracted more tourists from all over the world. After spending some time at Pangong We drive back to Leh in the late afternoon. Overnight at Hotel in Leh&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3496,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2617,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29870,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29871,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29872,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29873,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287055\",\"Title\":\"LEH&ndash;NUBRA VALLEY VIA KHARDUNG LA 18,390 FT. (120 KMS \\/ 4 &ndash; 5 HRS)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;Post breakfast we drive to &lt;strong&gt;Nubra Valley&lt;\\/strong&gt;. The road journey from Leh to Nubra Valley passes over &lt;strong&gt;Khardung La&lt;\\/strong&gt; (The Highest Motorable Road In The World) at 5,602 Mtrs \\/ 18,390 Ft, around 39 km from Leh. From the pass, one can see all the way south over the Indus valley to seemingly endless peaks and ridges of the Zanskar range, and north to the giants of the Saser massif. Nubra Valley is popularly known as Ldumra or the valley of flowers. It is situated in the north of Ladakh between the Karakoram and Ladakh ranges of the Himalayas. The average altitude of the valley is 10,000 Ft. above sea level.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Upon arrival in Nubra we check in at our Camp \\/ Hotel in &lt;strong&gt;Hunder&lt;\\/strong&gt; for Overnight stay. In the evening you can walk around the tiny villages to see how the locals live in this part of the world. Overnight Stay at the Camp or Hotel&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":29879,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287056\",\"Title\":\"NUBRA VALLEY &ndash; LEH (120 KMS \\/ 4 &ndash; 5 HRS)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;In the morning drive to Diskit (Headquarters of Nubra) and visit &lt;strong&gt;Diskit Monastery&lt;\\/strong&gt;. Later, drive back to Leh, reaching in the late afternoon. Rest of the day to explore the markets. Dinner and overnight in Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":29880,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287057\",\"Title\":\"DEPART LEH (FLY OUT)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Through a punctual transfer to the Domestic Airport to catch the flight for your onward destination.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39946\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17566.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":15435,\"priceDoubleOcc\":\"17566.00\",\"priceSingleOcc\":17566,\"priceExtraBed\":\"11172.00\",\"priceWithoutBed\":\"8019.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17566,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8019,\"CEB\":11172,\"COSTDO\":17566,\"COSTSO\":null,\"ACEB\":11172,\"COSTTO\":11172},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16007,\"priceDoubleOcc\":\"18424.00\",\"priceSingleOcc\":18424,\"priceExtraBed\":\"11172.00\",\"priceWithoutBed\":\"8019.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18424,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8019,\"CEB\":11172,\"COSTDO\":18424,\"COSTSO\":null,\"ACEB\":11172,\"COSTTO\":11172},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16865,\"priceDoubleOcc\":\"19712.00\",\"priceSingleOcc\":19712,\"priceExtraBed\":\"11172.00\",\"priceWithoutBed\":\"8019.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19712,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8019,\"CEB\":11172,\"COSTDO\":19712,\"COSTSO\":null,\"ACEB\":11172,\"COSTTO\":11172},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17103,\"priceDoubleOcc\":\"20068.00\",\"priceSingleOcc\":20068,\"priceExtraBed\":\"11172.00\",\"priceWithoutBed\":\"8019.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20068,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8019,\"CEB\":11172,\"COSTDO\":20068,\"COSTSO\":null,\"ACEB\":11172,\"COSTTO\":11172},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":19367,\"priceDoubleOcc\":\"23465.00\",\"priceSingleOcc\":23465,\"priceExtraBed\":\"11172.00\",\"priceWithoutBed\":\"8019.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23465,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8019,\"CEB\":11172,\"COSTDO\":23465,\"COSTSO\":null,\"ACEB\":11172,\"COSTTO\":11172},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":25724,\"priceDoubleOcc\":\"33000.00\",\"priceSingleOcc\":33000,\"priceExtraBed\":\"11172.00\",\"priceWithoutBed\":\"8019.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":33000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8019,\"CEB\":11172,\"COSTDO\":33000,\"COSTSO\":null,\"ACEB\":11172,\"COSTTO\":11172}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39946\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16066.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":13935,\"priceDoubleOcc\":\"16066.00\",\"priceSingleOcc\":16066,\"priceExtraBed\":\"9672.00\",\"priceWithoutBed\":\"6519.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16066,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6519,\"CEB\":9672,\"COSTDO\":16066,\"COSTSO\":null,\"ACEB\":9672,\"COSTTO\":9672},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":14507,\"priceDoubleOcc\":\"16924.00\",\"priceSingleOcc\":16924,\"priceExtraBed\":\"9672.00\",\"priceWithoutBed\":\"6519.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16924,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6519,\"CEB\":9672,\"COSTDO\":16924,\"COSTSO\":null,\"ACEB\":9672,\"COSTTO\":9672},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":15365,\"priceDoubleOcc\":\"18212.00\",\"priceSingleOcc\":18212,\"priceExtraBed\":\"9672.00\",\"priceWithoutBed\":\"6519.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18212,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6519,\"CEB\":9672,\"COSTDO\":18212,\"COSTSO\":null,\"ACEB\":9672,\"COSTTO\":9672},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":15603,\"priceDoubleOcc\":\"18568.00\",\"priceSingleOcc\":18568,\"priceExtraBed\":\"9672.00\",\"priceWithoutBed\":\"6519.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18568,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6519,\"CEB\":9672,\"COSTDO\":18568,\"COSTSO\":null,\"ACEB\":9672,\"COSTTO\":9672},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17867,\"priceDoubleOcc\":\"21965.00\",\"priceSingleOcc\":21965,\"priceExtraBed\":\"9672.00\",\"priceWithoutBed\":\"6519.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21965,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6519,\"CEB\":9672,\"COSTDO\":21965,\"COSTSO\":null,\"ACEB\":9672,\"COSTTO\":9672},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":24224,\"priceDoubleOcc\":\"31500.00\",\"priceSingleOcc\":31500,\"priceExtraBed\":\"9672.00\",\"priceWithoutBed\":\"6519.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":31500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6519,\"CEB\":9672,\"COSTDO\":31500,\"COSTSO\":null,\"ACEB\":9672,\"COSTTO\":9672}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"287052\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[287052],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova or Tempo Traveller&nbsp;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287053\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[287053],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova \\/ Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287054\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[287054],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova \\/ Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287055\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[287055],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/c Innova or Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287056\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[287056],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova \\/ Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287057\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[287057],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Leh','Leh,Ladakh,Indian Subcontinent,North India,India',NULL,'15229',16066,33000,5,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2022-10-31 00:00:00','2022-10-31 00:00:00',3,'India','101','2022-09-01 18:05:47','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'splendour-of-ladakh-5n-6d',NULL,NULL,NULL,0),(53,39954,1,12577,1,0,0,'Adventure,Family,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":39954,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/quick_ladakh_-_5n6d_1662035726.jpg\",\"BookingValidUntill\":\"2022-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Set amidst the epic Himalayas, &lt;strong&gt;Ladakh&lt;\\/strong&gt; is a rustic and heavenly beautiful travel destination. The rugged valleys and mountains, winding roads coupled with the vibrant cultural life maintain the exuberance and charm of this region. The iconic Magnetic Hill, the turquoise coloured Pangong Lake, the confluence of two mystical rivers, ancient and awe inspiring monasteries and the highest passes are a few of the marvelous attractions of Leh and Ladakh in general. The wide array of trekking routes will satiate your soul and enrich the senses. The moon like desert mountains continue to be an exceptional destination for adventure seekers and admirers of Buddhism and phenomenal mountain vistas. So, pack some travel essentials with you to explore the most enthralling destination of India and bring back souvenirs of endless memories with you.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Leh\",\"DestinationPlacesSysId\":15229,\"SourcePlaces\":\"Leh\",\"SourcePlaceSysId\":15229,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"QUICK LADAKH - 5N\\/6D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10752\",\"SupplierName\":\"The Samsara Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,B\\/fast & Dinner,Airport Transfers,Intercity Transfers,Sightseeing,Car On Disposal\",\"PackageType\":\"Adventure,Family,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-09-06\",\"To\":\"2022-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":15229,\"Title\":\"Leh\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":516935,\"Name\":\"Hotel Sankar Residency\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.1756379\",\"Long\":\"77.58580309999999\",\"Address\":\"Sankar Road, near Sankar Monastery Road, Yurtung, Leh, Ladakh 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"},{\"RefHotelId\":418253,\"Name\":\"Hotel The Himalaya\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"34.16749\",\"Long\":\"77.58645\",\"Address\":\"Darokhan Samkar Road Chubi,Leh, Jammu And Kashmir, , none, LEH, JAMMU &amp; KASHMIR, India, Pin-194101, 194101\"},\"Images\":[],\"CityId\":15229,\"Brief\":\"Located 7 km from incredible Shanti Stupa is Hotel The Himalaya. This budget hotel in Leh accommodates its guests in spacious rooms. Onsite parking, front desk for assistance, serene garden, doctor-on-call service are also available here. Guests can enjoy yummy meals at the in-house restaurant here.null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/1\\/nxd\\/mav\\/oyd\\/dbu\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &acirc;&euro;&oelig;magnetic hill&acirc;&euro;\\u009d is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3599,\"Title\":\"Alchi Monastery Leh\",\"Description\":\"Alchi Monastery is situated  in the bank of Indus River and shares a distance of 70 km from Leh.It is Considered as one of the oldest Buddhist learning centers in Northern India.Alchi is an ancient Monastery,constructed by Guru Rinchen Zangpo between 958 and 1055 AD.The elaborate artwork along with wood carving and the amazing huge ancient statues of Buddha attract the tourists from all around.Tourists across the globe explore this place just to enjoy the heavenly beauty and to experience the ancient architecture of the monastery temples.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2237143,\"Long\":77.175207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Alchi_Monastery_Leh_15229_1518765472.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29897,\"Title\":\"Likir Monastery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29879,\"Title\":\"Nubra Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29898,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29880,\"Title\":\"Diskit Monastery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29899,\"Title\":\"Pangong Tso\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29900,\"Title\":\"Durbuk & Tangste\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29872,\"Title\":\"Changthang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null}]}},{\"CityId\":35282,\"Title\":\"Nubra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517012,\"Name\":\"Nubra Vista Camp\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"34.5973533\",\"Long\":\"77.46078589999999\",\"Address\":\"Hunder Ombey, HFW6+W8V, Hunder, 194101\"},\"Images\":[],\"CityId\":35282,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"MAP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":3580,\"Title\":\"Shanti Stupa leh\",\"Description\":\"Shanti Stupa is a  white-domed Buddhist stupa on a hilltop in Leh. The Stupa was built in 1991 by Japanese Buddhist Bhikshu who was the part of Peace Pagoda mission.There is a huge idol of Buddha placed inside the Stupa which was enshrined by the 14th Dalai Lama..The stupa has become a tourist attraction not only due to its religious significance but also due to its location which provides panoramic views of the surrounding landscape.The beauty of Shanti Stupa takes a level up at night, especially during the full moon night when it is naturally illuminated by the moonlight.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1736196,\"Long\":77.5749988,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Shanti_Stupa_leh_15229_1518677033.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3579,\"Title\":\"Leh Palace, Leh\",\"Description\":\"Leh Palace is a former royal palace overlooking the Ladakhi Himalayan town of Leh. The palace was built by King Sengge Namgyal in the 16th century. Leh Palace is nine storeys high, the upper floors accommodated the royal family, while the lower floors held stables and store rooms.Leh Palace is  an excellent example of medieval Tibetan architecture.The walls of the palace was constructed with wood and mud helps keep the scorching heat away, thus the palace has a soothing and pleasant temperature inside.The entrance of the palace is decorated with wood carved figurines. The roof top of the palace provides spectacular views of the mountain and the entire town which attracts the tourist from all around.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1659783,\"Long\":77.5865732,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Leh_Palace,_Leh_15229_1518674608.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3595,\"Title\":\"Hall of Fame, Leh\",\"Description\":\"Hall of Fame is a museum which was  built in memory of the brave soldiers who lost their lives fighting for India at the Indo-Pakistan war.This museum is maintained by Indian Army.The Museum showcases seized arms and amenities of Pakistani Army, pictures and biographies of brave soldiers.It  also displays Siachen area, exhibiting apparel and amenities used by the Indian Army in the region.Inside the museum,  one can also witness items related to Ladakhi culture, history, vegetation and wildlife found across the globe.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1391741,\"Long\":77.5410639,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Hall_of_Fame,_Leh_15229_1518698715.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2654,\"Title\":\"Gurudwara Pathar Sahib\",\"Description\":\"Gurudwara Pathar Sahib sits on the Srinagar-Leh Road at some 25 km from Leh. Much revered by people of all faiths, it is dedicated to Guru Nanak. Going by the folklore, it was built to house an unmovable boulder. Back in the year 1970, this boulder was discovered during the road construction but could not be moved by any machine. As per the story, Guru Nanak appeared in the dreams of monks, the construction workers and the Army and asked them not to remove the boulder! Thus, a gurudwara was built to preserve the same. Almost all the vehicles on the stretch take a stop at the gurudwara to pay respect and pray for a safe journey on the rather treacherous roads.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1919737,\"Long\":77.3756324,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518585643.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":2655,\"Title\":\"Magnetic Hill\",\"Description\":\"Magnetic Hill is a gravity hill located near Leh in Ladakh, India. The hill is alleged to have magnetic properties strong enough to pull cars uphill and force passing aircraft to increase their altitude in order to escape magnetic interference in reality, the effect is an optical illusion created by the gravity hill.  The &acirc;&euro;&oelig;magnetic hill&acirc;&euro;\\u009d is located on the Leh-Kargil-Baltik national highway, about 30 km from Leh, at a height of 14,000 feet above sea level. On its eastern side, flows the Sindhu, which originates in Tibet and goes to Pakistan The hill is located on the Leh-Kargil-Batalik national highway, and is bordered by the Sindhu river. The Indian Army maintains a sikh Gurudwara near the hill where Guru Nanak Dev, the first of the Ten Gurus of Sikhism, meditated in the 15th century. Due to both the Gurudwara and the gravity hill, the area has become a popular sightseeing destination.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.1696197,\"Long\":77.3518105,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/36_1518584534.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3599,\"Title\":\"Alchi Monastery Leh\",\"Description\":\"Alchi Monastery is situated  in the bank of Indus River and shares a distance of 70 km from Leh.It is Considered as one of the oldest Buddhist learning centers in Northern India.Alchi is an ancient Monastery,constructed by Guru Rinchen Zangpo between 958 and 1055 AD.The elaborate artwork along with wood carving and the amazing huge ancient statues of Buddha attract the tourists from all around.Tourists across the globe explore this place just to enjoy the heavenly beauty and to experience the ancient architecture of the monastery temples.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2237143,\"Long\":77.175207,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Alchi_Monastery_Leh_15229_1518765472.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29897,\"Title\":\"Likir Monastery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":3597,\"Title\":\"Khardung La Pass\",\"Description\":\"Khardung La is a mountain pass in the Ladakh region of Jammu and Kashmir.It  lies north of Leh and is the gateway to the Shyok and Nubra valleys.The elevation of Khardung La is 17,582 ft.It is a famous attraction for adventure seekers.Biking at Khardung La Pass is something visitors shouldnot miss. It was opened to public motor vehicles in 1988 and has since seen many automobile, motorbike and mountain biking expeditions. The pass  is historically important also as it lies on the major caravan route from Leh to Kashgar in Central Asia. The thrill of visiting the highest pass in the world will churn up your emotions.\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":34.2787271,\"Long\":77.6046756,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/15229\\/sightseeing\\/Khardung_La_Pass_15229_1518758186.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29879,\"Title\":\"Nubra Valley\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29898,\"Title\":\"Turtuk Village\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":35282,\"CityName\":\"Nubra\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29880,\"Title\":\"Diskit Monastery\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29899,\"Title\":\"Pangong Tso\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29900,\"Title\":\"Durbuk & Tangste\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null},{\"RefSSId\":29872,\"Title\":\"Changthang\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":15229,\"CityName\":\"Leh\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10752,\"SupplierName\":\"The Samsara Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"287142\",\"Title\":\"ARRIVE LEH \",\"MealPlanInclude\":\"Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival Leh by morning flight and transfer to the hotel. After welcome drink take a complete rest for acclimatization to the height altitude of Leh (3500 meters). In the late afternoon drive to the city for an orientation walk in the markets&amp;sbquo; followed by a visit to &lt;strong&gt;Shanti Stupa&lt;\\/strong&gt;&amp;sbquo; &lt;strong&gt;Leh palace&lt;\\/strong&gt;. Dinner and overnight in hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3580,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3579,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287143\",\"Title\":\"EXCURSION TO SHAM VALLEY) (65 KMS \\/ 04 HRS &ndash; ONE WAY)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast you drive downstream along the River Indus on Leh &amp;ndash; Kargil Highway. And start our sightseeing with &lt;strong&gt;Hall Of Fame (Museum Constructed by India Army)&lt;\\/strong&gt; near Leh is worth a visit for every Indian, and proceed further to &lt;strong&gt;Gurudwara Patthar Sahib&lt;\\/strong&gt; at an altitude of 3600 Mtrs about 22 Kms from Leh was constructed in memory of Guru Nanak Dev ji Nestled deep in the Himalayas, A drive of another 4 km took us to &lt;strong&gt;Magnetic Hill&lt;\\/strong&gt; which defies the law of gravity. As you move ahead from Magnetic Hills, just before &lt;strong&gt;Nimmu Village&lt;\\/strong&gt;, there comes a famous Confluence of Two Rivers &lt;strong&gt;Indus River&lt;\\/strong&gt; coming from Tibet (left) and &lt;strong&gt;Zanskar River&lt;\\/strong&gt; coming from Zanskar Valley (right). After visiting confluence we head to &lt;strong&gt;Alchi Gompa&lt;\\/strong&gt;, The complex of temples located within the village is the most celebrated of Ladakh&amp;rsquo;s monasteries and dates back to the 11th century. After visiting Alchi we back towards Leh enroute visiting &lt;strong&gt;Likir Monastery&lt;\\/strong&gt; was built in 11th century and was again re-built in 18th century and houses a 25 feet Lord gold covered Buddha Statue. Later we drive back to Leh. Dinner and overnight at Hotel in Leh.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3595,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2654,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2655,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3599,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29897,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287144\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287145\",\"Title\":\"LEH&ndash;NUBRA VALLEY VIA KHARDUNG LA 18,390 FT. (120 KMS \\/ 4 &ndash; 5 HRS)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Post breakfast we drive to &lt;strong&gt;Nubra Valley.&lt;\\/strong&gt; The road journey from Leh to Nubra Valley passes over &lt;strong&gt;Khardung La&lt;\\/strong&gt; (The Highest Motorable Road In The World) at 5,602 Mtrs \\/ 18,390 Ft, around 39 km from Leh. From the pass, one can see all the way south over the Indus valley to seemingly endless peaks and ridges of the Zanskar range, and north to the giants of the Saser massif. Nubra Valley is popularly known as Ldumra or the valley of flowers. It is situated in the north of Ladakh between the Karakoram and Ladakh ranges of the Himalayas. The average altitude of the valley is 10,000 Ft. above sea level. Upon arrival in Nubra we check in at our Camp \\/ Hotel in &lt;strong&gt;Hunder&lt;\\/strong&gt; for Overnight stay. In the evening you can walk around the tiny villages to see how the locals live in this part of the world. Overnight Stay at the Camp or Hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517012,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3597,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29879,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287146\",\"Title\":\"NUBRA VALLEY (EXCURSION TO TURTUK)- 80 KMS ONE WAY\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After an early breakfast, proceed to &lt;strong&gt;Turtuk&lt;\\/strong&gt; (A village that was won by India in the 1971 war with Pakistan) and extremely close to the border. Visit a &lt;strong&gt;16th Century Mosque,&lt;\\/strong&gt; (comprising of a touch of Turkish &amp;amp; Iranian culture), ruined fort of Dhards and Monastery. Admire the magnificent view of the famous K2 peak (The second highest peak in the world after Mount Everest). Later back to hotel for overnight stay.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517012,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":29898,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287147\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":35282,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287148\",\"Title\":\"NUBRA VALLEY - PANGONG LAKE &ndash; LEH (307 KMS \\/ 10 HRS)\",\"MealPlanInclude\":\"Breakfast,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;After an early breakfast we check out from Camp or hotel and drive towards Hunder where you have opportunity to ride on a bacterian camel (double humped) amidst the sand dunes of this high-altitude desert with snowcapped mountains on the horizon. On the return stop at &lt;strong&gt;Diskit&lt;\\/strong&gt; which is the headquarter town of Nubra Valley. Stroll around the bazaar observing the shops and local people going about their daily chores. Diskit is famous for 515 years old Buddhist Monastery, lying magnificently situated on a hilltop, facing the entire Valley. Later we drive towards &lt;strong&gt;Pangong Tso via Agham &amp;amp; Shyok Valley&lt;\\/strong&gt;. Some of the road patches in areas are extremely tough (towards nubra side) in terms of road conditions but no doubt the journey is very scenic!&amp;nbsp; Later after crossing this adventurous part we drive further towards &lt;strong&gt;Durbuk &amp;amp; Tangtse&lt;\\/strong&gt; for Pangong you pass through few small villages of &lt;strong&gt;Changthang &lt;\\/strong&gt;and finally you can have a sudden view of the Pangong lake situated at 14,000 feet (4,267 m). This famous blue brackish Lake of Pangong is 5\\/6 Kms wide and over 133 Kms long with half of its running the other side of the&lt;strong&gt; &amp;quot;Indo China Border&amp;quot;.&lt;\\/strong&gt; After drive back to Leh via &lt;strong&gt;Changla Pass&lt;\\/strong&gt; 5486 Mtrs Dinner and overnight at Hotel in Leh.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":516935,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":418253,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"MAP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":29880,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29899,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29900,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":29872,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287149\",\"Title\":\"DEPART LEH (FLY OUT)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Through a punctual transfer to the Domestic Airport to catch the flight for your onward destination.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":15229,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39954\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"18459.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16560,\"priceDoubleOcc\":\"18459.00\",\"priceSingleOcc\":18459,\"priceExtraBed\":\"12761.00\",\"priceWithoutBed\":\"9762.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18459,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9762,\"CEB\":12761,\"COSTDO\":18459,\"COSTSO\":null,\"ACEB\":12761,\"COSTTO\":12761},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17270,\"priceDoubleOcc\":\"19525.00\",\"priceSingleOcc\":19525,\"priceExtraBed\":\"12761.00\",\"priceWithoutBed\":\"9762.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19525,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9762,\"CEB\":12761,\"COSTDO\":19525,\"COSTSO\":null,\"ACEB\":12761,\"COSTTO\":12761},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18336,\"priceDoubleOcc\":\"21124.00\",\"priceSingleOcc\":21124,\"priceExtraBed\":\"12761.00\",\"priceWithoutBed\":\"9762.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21124,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9762,\"CEB\":12761,\"COSTDO\":21124,\"COSTSO\":null,\"ACEB\":12761,\"COSTTO\":12761},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":18583,\"priceDoubleOcc\":\"21494.00\",\"priceSingleOcc\":21494,\"priceExtraBed\":\"12761.00\",\"priceWithoutBed\":\"9762.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21494,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9762,\"CEB\":12761,\"COSTDO\":21494,\"COSTSO\":null,\"ACEB\":12761,\"COSTTO\":12761},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":21372,\"priceDoubleOcc\":\"25678.00\",\"priceSingleOcc\":25678,\"priceExtraBed\":\"12761.00\",\"priceWithoutBed\":\"9762.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":25678,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9762,\"CEB\":12761,\"COSTDO\":25678,\"COSTSO\":null,\"ACEB\":12761,\"COSTTO\":12761},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":29739,\"priceDoubleOcc\":\"38228.00\",\"priceSingleOcc\":38228,\"priceExtraBed\":\"12761.00\",\"priceWithoutBed\":\"9762.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":38228,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9762,\"CEB\":12761,\"COSTDO\":38228,\"COSTSO\":null,\"ACEB\":12761,\"COSTTO\":12761}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"39954\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16959.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":15060,\"priceDoubleOcc\":\"16959.00\",\"priceSingleOcc\":16959,\"priceExtraBed\":\"11261.00\",\"priceWithoutBed\":\"8262.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16959,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8262,\"CEB\":11261,\"COSTDO\":16959,\"COSTSO\":null,\"ACEB\":11261,\"COSTTO\":11261},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":15770,\"priceDoubleOcc\":\"18025.00\",\"priceSingleOcc\":18025,\"priceExtraBed\":\"11261.00\",\"priceWithoutBed\":\"8262.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18025,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8262,\"CEB\":11261,\"COSTDO\":18025,\"COSTSO\":null,\"ACEB\":11261,\"COSTTO\":11261},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":16836,\"priceDoubleOcc\":\"19624.00\",\"priceSingleOcc\":19624,\"priceExtraBed\":\"11261.00\",\"priceWithoutBed\":\"8262.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19624,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8262,\"CEB\":11261,\"COSTDO\":19624,\"COSTSO\":null,\"ACEB\":11261,\"COSTTO\":11261},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":17083,\"priceDoubleOcc\":\"19994.00\",\"priceSingleOcc\":19994,\"priceExtraBed\":\"11261.00\",\"priceWithoutBed\":\"8262.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19994,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8262,\"CEB\":11261,\"COSTDO\":19994,\"COSTSO\":null,\"ACEB\":11261,\"COSTTO\":11261},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":19872,\"priceDoubleOcc\":\"24178.00\",\"priceSingleOcc\":24178,\"priceExtraBed\":\"11261.00\",\"priceWithoutBed\":\"8262.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24178,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8262,\"CEB\":11261,\"COSTDO\":24178,\"COSTSO\":null,\"ACEB\":11261,\"COSTTO\":11261},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":28239,\"priceDoubleOcc\":\"36728.00\",\"priceSingleOcc\":36728,\"priceExtraBed\":\"11261.00\",\"priceWithoutBed\":\"8262.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":36728,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8262,\"CEB\":11261,\"COSTDO\":36728,\"COSTSO\":null,\"ACEB\":11261,\"COSTTO\":11261}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"287142\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[287142],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova \\/ Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287143\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[287143],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287144\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[287144],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287145\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[287145],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/C Innova \\/ Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287146\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[287146],\"Remark\":[\"&lt;p&gt;Transfers and Sightseeing by Non A\\/c Innvoa \\/ Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287147\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[287147],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287148\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[287148],\"Remark\":[\"&lt;p&gt;Transfers &amp; Sightseeing by Non A\\/c Innova \\/ Tempo Traveller&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287149\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[287149],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Leh,Nubra','Leh,Ladakh,Indian Subcontinent,North India,India,Nubra',NULL,'15229,35282',16959,38228,5,NULL,NULL,NULL,2,'',0,'2022-09-06 00:00:00','2022-10-31 00:00:00','2022-10-31 00:00:00',3,'India','101','2022-09-06 14:54:08','2022-09-06 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'quick-ladakh-5n-6d',NULL,NULL,NULL,0),(54,40009,1,12577,1,0,0,'Adventure,Beach,Family,Culture,Romantic,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40009,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/andamans_tour_-_4n5d_1662104249.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The &lt;strong&gt;Andaman and Nicobar Islands&lt;\\/strong&gt; is&amp;nbsp;a union territory of India consisting of &lt;strong&gt;572 islands&lt;\\/strong&gt;, of which &lt;strong&gt;37 are inhabited&lt;\\/strong&gt;, at the junction of the &lt;strong&gt;Bay of Bengal&lt;\\/strong&gt; and the &lt;strong&gt;Andaman Sea&lt;\\/strong&gt;. The territory is about &lt;strong&gt;150 km (93 mi)&lt;\\/strong&gt; north of Aceh in Indonesia and separated from &lt;strong&gt;Thailand&lt;\\/strong&gt; and &lt;strong&gt;Myanmar&lt;\\/strong&gt; by the &lt;strong&gt;Andaman Sea&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":10,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Port Blair\",\"DestinationPlacesSysId\":32511,\"SourcePlaces\":\"Port Blair\",\"SourcePlaceSysId\":32511,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"ANDAMANS TOUR - 4N\\/5D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10671\",\"SupplierName\":\"Andaman Tours\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast\",\"PackageType\":\"Adventure,Beach,Family,Culture,Romantic,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-09-02\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":32511,\"Title\":\"Port Blair\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517131,\"Name\":\"N K Grand Port Blair\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":515711,\"Name\":\"Hotel Ami Grace\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"11.6668575\",\"Long\":\"92.7401224\",\"Address\":\"Gurudwara Ln, Aberdeen Bazar, Biggie Line, Port Blair, Andaman and Nicobar Islands 744101, India\"},\"Images\":[],\"CityId\":32511,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2804,\"Title\":\"Cellular Jail - National Memorial\",\"Description\":\"The Cellular Jail, also known as Kala Pani is located at Port Blair, was completed in the year 1906. Acquired the name &amp;lsquo;Cellular&amp;rsquo; because it is entirely made up of individual cells for the solitary confinement. It was used by the British to exile political prisoners to the remote archipelago. Many notable protestors such as Batukeshwar Dutt, Yogendra Shukla and Vinayak Damodar Savarkar were imprisoned here during the struggle for India&amp;#039;s freedom. The Jail has been declared as a National Memorial Monument, a place of pilgrimage for all freedom loving people.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6738247,\"Long\":92.7479768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Cellular_Jail_-_National_Memor_32511_1519642683.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null}]}},{\"CityId\":11658,\"Title\":\"Havelock Island\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517133,\"Name\":\"The Ocean Blue Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.0233271\",\"Long\":\"93.00453979999999\",\"Address\":\"Vijay Nagar, Havelock Island, Andaman and Nicobar Islands 744211, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":517134,\"Name\":\"Blue Island Beach Resort - Havelock Island - Private Beach Property\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"12.0112976\",\"Long\":\"93.00779829999999\",\"Address\":\"No. 5, Vijaynagar Beach Havelock Island, Andaman and Nicobar Islands 744103, India\"},\"Images\":[],\"CityId\":11658,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2804,\"Title\":\"Cellular Jail - National Memorial\",\"Description\":\"The Cellular Jail, also known as Kala Pani is located at Port Blair, was completed in the year 1906. Acquired the name &amp;lsquo;Cellular&amp;rsquo; because it is entirely made up of individual cells for the solitary confinement. It was used by the British to exile political prisoners to the remote archipelago. Many notable protestors such as Batukeshwar Dutt, Yogendra Shukla and Vinayak Damodar Savarkar were imprisoned here during the struggle for India&amp;#039;s freedom. The Jail has been declared as a National Memorial Monument, a place of pilgrimage for all freedom loving people.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6738247,\"Long\":92.7479768,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Cellular_Jail_-_National_Memor_32511_1519642683.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":2276,\"Title\":\"Corbyn&#039;s Cove Beach\",\"Description\":\"The Corbyn&amp;rsquo;s Cove, is a serene and unspoiled soft sandy beach, set in picturesque background of lush green coconut palms and pleasant blue sea. The main attractions of this beach are the inviting water sports activities like surfing, scuba diving and boating. The Corbyn&amp;rsquo;s Cove beach, situated 8 kms from the City centre is the closest Beach from the city. This coconut- palm fringed beach, is ideal for swimming, surfing and sun bathing.\\r\\nThe Waves Restaurant, The Peerless Sarovar Portico Resort and the Hornbill Nest Guest House are at a stone&amp;#039;s throw, from the beach front.  In fact, Peerless Sarovar Portico is the only beach resort inside the city.\",\"CurrencyType\":0,\"CityId\":32511,\"CityName\":\"Port Blair\",\"Lat\":11.6446655,\"Long\":92.7476013,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/32511\\/sightseeing\\/Corbyn&#039;s_Cove_Beach_32511_1519651023.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":1408,\"Title\":\"Radhanagar Beach\",\"Description\":\"Radhanagar Beach, also called as Beach No.7 is counted among the most beautiful beaches of Asia, is incredibly astounding beach located on the gorgeous Andaman Island. The beach has turquoise blue sea and white sand which makes this beach a perfect spot to bask in the midst of nature&amp;#039;s bounty. The breathtaking sight of sunset on this beach makes the tourists forget all the woes of life. Sunbathing, sunset view, swimming and basking in the sun are the best activities to enjoy on Radhanagar Beach.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0427166,\"Long\":92.9825169,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Radhanagar_Beach_11658_1519389658.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null},{\"RefSSId\":481,\"Title\":\"Elephant Beach (Sea Walk)\",\"Description\":\"Elephant Beach is an ideal destination for water sports and one of the known hotspots for snorkeling at Havelock Islands. Its rich coral reef structure and amazing underwater marine life will certainly spellbind you and offers water sports like diving, snorkelling, swimming, bird-watching, trekking and kayaking. This place is ideal for relaxing spending a leisure time with food and drinks. Being famous for its coral reefs, sea walking is also one of the popular water activity here.\",\"CurrencyType\":0,\"CityId\":11658,\"CityName\":\"Havelock Island\",\"Lat\":12.0071274,\"Long\":92.9766644,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/11658\\/sightseeing\\/Elephant_Beach_11658_1519391150.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10671,\"SupplierName\":\"Andaman Tours\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"287682\",\"Title\":\"Arrival to Port Blair\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Fly into &lt;strong&gt;Port Blair Airport&lt;\\/strong&gt;, Our travel Executive will be waiting outside the airport exit gate with a Pla-Card having your name for a hassle free meet and check in to HOTEL \\/RESORT booked as per your choice. later Post Lunch , Visit to the nearby beach inside the city around 3-4 kms away known as &lt;strong&gt;Corbyn&amp;amp;rsquos Cove Beach&lt;\\/strong&gt;, a coconut fringed beach with its beauty of sunset and sunrise Ideal for sun basking and water games. After completing the trip from the Corbyn&amp;amp;rsquos cove beach, Visit the &lt;strong&gt;Cellular Jail&lt;\\/strong&gt;, The Historic place where you can witness the heroic saga of Indian freedom fighters followed by Light and sound show at Cellular Jail&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517131,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":515711,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2804,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2276,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287683\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287684\",\"Title\":\"Port Blair to Swaraj Dweep (Havelock) |  Radhanagar Beach Visit | Overnight Stay at  Havelock\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Morning after Breakfast, Check out from Hotel Catch your cruise\\/ferry booked as per the time and schedule advised by our travel executive, Upon reaching the island, Our travel executive will assist you Check in to your respected Resort at &lt;strong&gt;Havelock&lt;\\/strong&gt;, Post lunch at your own visit the most famous beach the &lt;strong&gt;Radhanagar Beach&lt;\\/strong&gt;, &lt;strong&gt;Asia&amp;rsquo;s 7th Largest beach&lt;\\/strong&gt; in the world and is known as a best place to relax, fun and photography. Spend some time here with you family and have a lot of fun later post lunch get back to your Resort. Overnight Stay at Havelock Island.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517133,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517134,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1408,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287685\",\"Title\":\"Elephant Beach\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning after Breakfast, Check out from Havelock Resort Catch your cruise\\/ferry booked as per the time and schedule advised by our travel executive, Visit to the &lt;strong&gt;Coral land&lt;\\/strong&gt; the Elephant Beach at Havelock. the best place for snorkeling and some water activities to have fun. Overnight Stay at Havelock.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517133,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517134,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":481,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287686\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":11658,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287687\",\"Title\":\"Havelock to Port Blair | Overnight Stay at Port Blair\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning after Breakfast, Check out from Havelock Island Resort Catch your cruise\\/ferry booked as per the time and schedule advised by our travel executive. Upon Reaching Port Blair Check in to Hotel, Overnight Stay at Port Blair.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517131,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":515711,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"287688\",\"Title\":\"Return to Hometown\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After Having a lot of fun in the island, Check out from Hotel, Step back to Airport and Fly away to Hometown with Unlimited memories and fun.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":32511,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40009\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14133,\"priceDoubleOcc\":\"15200.00\",\"priceSingleOcc\":15200,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\"11200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11200,\"CEB\":12000,\"COSTDO\":15200,\"COSTSO\":null,\"ACEB\":12000,\"COSTTO\":12000},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14133,\"priceDoubleOcc\":\"15200.00\",\"priceSingleOcc\":15200,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\"11200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11200,\"CEB\":12000,\"COSTDO\":15200,\"COSTSO\":null,\"ACEB\":12000,\"COSTTO\":12000},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14133,\"priceDoubleOcc\":\"15200.00\",\"priceSingleOcc\":15200,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\"11200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11200,\"CEB\":12000,\"COSTDO\":15200,\"COSTSO\":null,\"ACEB\":12000,\"COSTTO\":12000},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14133,\"priceDoubleOcc\":\"15200.00\",\"priceSingleOcc\":15200,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\"11200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11200,\"CEB\":12000,\"COSTDO\":15200,\"COSTSO\":null,\"ACEB\":12000,\"COSTTO\":12000},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14333,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":15500,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\"11200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11200,\"CEB\":12000,\"COSTDO\":15500,\"COSTSO\":null,\"ACEB\":12000,\"COSTTO\":12000},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":14733,\"priceDoubleOcc\":\"16100.00\",\"priceSingleOcc\":16100,\"priceExtraBed\":\"12000.00\",\"priceWithoutBed\":\"11200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":11200,\"CEB\":12000,\"COSTDO\":16100,\"COSTSO\":null,\"ACEB\":12000,\"COSTTO\":12000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40009\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12633,\"priceDoubleOcc\":\"13700.00\",\"priceSingleOcc\":13700,\"priceExtraBed\":\"10500.00\",\"priceWithoutBed\":\"9700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9700,\"CEB\":10500,\"COSTDO\":13700,\"COSTSO\":null,\"ACEB\":10500,\"COSTTO\":10500},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12633,\"priceDoubleOcc\":\"13700.00\",\"priceSingleOcc\":13700,\"priceExtraBed\":\"10500.00\",\"priceWithoutBed\":\"9700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9700,\"CEB\":10500,\"COSTDO\":13700,\"COSTSO\":null,\"ACEB\":10500,\"COSTTO\":10500},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12633,\"priceDoubleOcc\":\"13700.00\",\"priceSingleOcc\":13700,\"priceExtraBed\":\"10500.00\",\"priceWithoutBed\":\"9700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9700,\"CEB\":10500,\"COSTDO\":13700,\"COSTSO\":null,\"ACEB\":10500,\"COSTTO\":10500},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12633,\"priceDoubleOcc\":\"13700.00\",\"priceSingleOcc\":13700,\"priceExtraBed\":\"10500.00\",\"priceWithoutBed\":\"9700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9700,\"CEB\":10500,\"COSTDO\":13700,\"COSTSO\":null,\"ACEB\":10500,\"COSTTO\":10500},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12833,\"priceDoubleOcc\":\"14000.00\",\"priceSingleOcc\":14000,\"priceExtraBed\":\"10500.00\",\"priceWithoutBed\":\"9700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9700,\"CEB\":10500,\"COSTDO\":14000,\"COSTSO\":null,\"ACEB\":10500,\"COSTTO\":10500},{\"From\":\"2022-08-20\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13233,\"priceDoubleOcc\":\"14600.00\",\"priceSingleOcc\":14600,\"priceExtraBed\":\"10500.00\",\"priceWithoutBed\":\"9700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":14600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9700,\"CEB\":10500,\"COSTDO\":14600,\"COSTSO\":null,\"ACEB\":10500,\"COSTTO\":10500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"287682\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[287682],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287683\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[287683],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287684\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[287684],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287685\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[287685],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287686\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[287686],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287687\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[287687],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"287688\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[287688],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Port Blair,Havelock Island','Port Blair,Andaman and Nicobar Islands,Indian Subcontinent,South India,India,Havelock Island',NULL,'32511,11658',13700,16100,4,NULL,NULL,NULL,2,'',0,'2022-09-02 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-09-02 13:08:10','2022-09-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'andamans-tour-4n-5d',NULL,NULL,NULL,0),(55,40041,1,12577,1,0,0,'Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40041,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/bangkok_pattaya_special_offer_4n5d_1662191697.jpg\",\"BookingValidUntill\":\"2022-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Located in the heart of mainland &lt;strong&gt;Southeast Asia,&lt;\\/strong&gt; &lt;strong&gt;THAILAND&lt;\\/strong&gt; is&amp;nbsp;a country of mountains, hills, plains and a long coastline along the Gulf of Thailand (1,875 km) and the Andaman Sea (740 km), not including the coastlines of some 400 islands, most of them in the Andaman Sea.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Bangkok\",\"DestinationPlacesSysId\":2266,\"SourcePlaces\":\"Bangkok\",\"SourcePlaceSysId\":2266,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Bangkok Pattaya Special Offer 4N5D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"10761\",\"SupplierName\":\"K1 Travels\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast\",\"PackageType\":\"Leisure\",\"Validity\":{\"From\":\"2022-09-03\",\"To\":\"2022-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":20925,\"Title\":\"Pattaya\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517192,\"Name\":\"Grande Classic Pattaya\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"12.9208935\",\"Long\":\"100.8817565\",\"Address\":\"193\\/432-436, Moo 10, South Pattaya Sai 3, Tumbon Nongprue, Amphoe Banglamung 20, Pattaya City, Bang Lamung District, Chon Buri 20150, Thailand\"},\"Images\":[],\"CityId\":20925,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"101000000000000000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"}],\"IsfromAPI\":false,\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null}]}},{\"CityId\":2266,\"Title\":\"Bangkok\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":174714,\"Name\":\"Khurana Inn\",\"Star\":\".00\",\"Rating\":\"2.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"13.75424616174\",\"Long\":\"100.53981542587\",\"Address\":\"20\\/176-180 Rajprapop Road Pratunam\"},\"Images\":{\"Image\":[{\"ImagId\":3878997,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_1_t.jpg\"},{\"ImagId\":3878998,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_2_t.jpg\"},{\"ImagId\":3878999,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_3_t.jpg\"},{\"ImagId\":3879000,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_4_t.jpg\"},{\"ImagId\":3879001,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_5_t.jpg\"},{\"ImagId\":3879002,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_6_t.jpg\"},{\"ImagId\":3879003,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_7_t.jpg\"},{\"ImagId\":3879004,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_8_t.jpg\"},{\"ImagId\":3879005,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_9_t.jpg\"},{\"ImagId\":3879006,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_10_t.jpg\"}]},\"CityId\":2266,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Khurana Inn is in the heart of Bangkok, walking distance from Pratunam Market and Suan Pakkard Palace. This inn is within close proximity of Platinum Fashion Mall and Pantip Plaza.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 46 air-conditioned rooms featuring refrigerators and minibars. Rooms have private balconies. Satellite programming and DVD players are provided for your entertainment, while complimentary wireless Internet access keeps you connected. Bathrooms with showers are provided.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Pamper yourself with onsite massages or make use of the other amenities, which include complimentary wireless Internet access and tour\\/ticket assistance. Guests can get to nearby shops on the complimentary shuttle.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Satisfy your appetite at the inn&amp;apos;s restaurant, which serves breakfast, lunch, and dinner, or stay in and take advantage of 24-hour room service.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Featured amenities include limo\\/town car service, a computer station, and express check-in.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/5000000\\/4870000\\/4869000\\/4868981\\/4868981_1_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2020,\"Title\":\"Coral Island\",\"Description\":\"The beautiful beaches of Koh Larn-an idyllic island located  just west of Pattaya &amp;ndash; make a perfect day trip to visit Coral Island by speed boat &amp;ndash; Coral formations and the beautiful underwater life , Take this opportunity to enjoy the various water Sports activities like Parachute , Water Scooter, Banana boat , Under sea walk etc., (Optional cost on your own) Spend the day on the beach  Swimming Snorkeling and Sunbathing\",\"CurrencyType\":0,\"CityId\":20925,\"CityName\":\"Pattaya\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/20925\\/sightseeing\\/Coral_Island_20925_1540708439.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null},{\"RefSSId\":2821,\"Title\":\"Bangkok city tour\",\"Description\":\"Breakfast at the hotel. Check out of the hotel and transfer to Bangkok. Enroute enjoy the city and temple tour. Visit the famous &#039;wat traimit&#039; or the golden Buddha made of solid gold weighing five and a half tons, the marble temple or &#039;wat benchamabopit&#039; and &#039;wat po&#039; or the temple of the reclining Buddha, an enormous Buddha covered in gold leaf. Arrive and check in to the hotel. Rest of the day is free for exploring the fabulous shopping centres like sogo department store, MBK centre and Big C on your own. Overnight at the hotel.\",\"CurrencyType\":0,\"CityId\":2266,\"CityName\":\"Bangkok\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2266\\/sightseeing\\/217_1517575707.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"288025\",\"Title\":\"Arrive Bangkok\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;After you arrive at Suvarnabhumi International Airport in Bangkok, get transferred to your hotel in Pattaya. Day free to explore Pattaya. Stay overnight in Pattaya.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517192,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288026\",\"Title\":\"Pattaya sightseeing\",\"MealPlanInclude\":\"Breakfast,Lunch\",\"Day\":2,\"Program\":\"&lt;p&gt;Post breakfast at the hotel set out to begin the &lt;strong&gt;Coral Island Tour.&lt;\\/strong&gt; A mix of emerald green and turquoise blue, &lt;strong&gt;Coral Island&lt;\\/strong&gt; is a ravishing beauty. Hop on a glass-bottomed boat to see the different formations of corals in multiple hues. Also, if you are interested, you can indulge in various water activities as well like snorkeling, swimming, and sunbathing (On your own) Stay overnight in Pattaya after you reach the hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517192,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2020,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288027\",\"Title\":\"Pattaya - Day Free\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Breakfast at the hotel. Day Free to shop and explore &lt;strong&gt;Pattaya&lt;\\/strong&gt; on your own. Stay Overnight at Pattaya&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517192,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288028\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":20925,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288029\",\"Title\":\"Pattaya to Bangkok\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast at the hotel, travel from &lt;strong&gt;Pattaya&lt;\\/strong&gt;. Arrive Bangkok and head for an astounding &lt;strong&gt;city tour &lt;\\/strong&gt;with visits to the major landmarks consisting of temples around the city. Give a glance at the &lt;strong&gt;Golden Buddha Temple&lt;\\/strong&gt; and get marveled and later head to enjoy the amusing &lt;strong&gt;Reclining Buddha Temple&lt;\\/strong&gt;. The rest of the day can be planned and spent according to your will. Stay overnight at the hotel in Bangkok.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":174714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2821,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288030\",\"Title\":\"Depart Bangkok \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, depart&lt;strong&gt; Bangkok&lt;\\/strong&gt; with a huge bundle of cherish-able memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40041\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":7500,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":7500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7500,\"CEB\":7500,\"COSTDO\":7500,\"COSTSO\":null,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":7500,\"priceDoubleOcc\":\"7500.00\",\"priceSingleOcc\":7500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7500,\"CEB\":7500,\"COSTDO\":7500,\"COSTSO\":null,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":7633,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":7700,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7500,\"CEB\":7500,\"COSTDO\":7700,\"COSTSO\":null,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":7900,\"priceDoubleOcc\":\"8100.00\",\"priceSingleOcc\":8100,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7500,\"CEB\":7500,\"COSTDO\":8100,\"COSTSO\":null,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":8167,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":8500,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7500,\"CEB\":7500,\"COSTDO\":8500,\"COSTSO\":null,\"ACEB\":7500,\"COSTTO\":7500},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9167,\"priceDoubleOcc\":\"10000.00\",\"priceSingleOcc\":10000,\"priceExtraBed\":\"7500.00\",\"priceWithoutBed\":\"7500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":7500,\"CEB\":7500,\"COSTDO\":10000,\"COSTSO\":null,\"ACEB\":7500,\"COSTTO\":7500}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40041\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":6000,\"priceDoubleOcc\":\"6000.00\",\"priceSingleOcc\":6000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6000,\"CEB\":6000,\"COSTDO\":6000,\"COSTSO\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":6000,\"priceDoubleOcc\":\"6000.00\",\"priceSingleOcc\":6000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6000,\"CEB\":6000,\"COSTDO\":6000,\"COSTSO\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":6133,\"priceDoubleOcc\":\"6200.00\",\"priceSingleOcc\":6200,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6000,\"CEB\":6000,\"COSTDO\":6200,\"COSTSO\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":6400,\"priceDoubleOcc\":\"6600.00\",\"priceSingleOcc\":6600,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6600,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6000,\"CEB\":6000,\"COSTDO\":6600,\"COSTSO\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":6667,\"priceDoubleOcc\":\"7000.00\",\"priceSingleOcc\":7000,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6000,\"CEB\":6000,\"COSTDO\":7000,\"COSTSO\":null,\"ACEB\":6000,\"COSTTO\":6000},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":7667,\"priceDoubleOcc\":\"8500.00\",\"priceSingleOcc\":8500,\"priceExtraBed\":\"6000.00\",\"priceWithoutBed\":\"6000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6000,\"CEB\":6000,\"COSTDO\":8500,\"COSTSO\":null,\"ACEB\":6000,\"COSTTO\":6000}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"288025\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[288025],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288026\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[288026],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288027\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[288027],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288028\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[288028],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288029\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[288029],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288030\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[288030],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Pattaya,Bangkok','Pattaya,South East Asia,Thailand,Bangkok',NULL,'20925,2266',6000,10000,4,NULL,NULL,NULL,2,'',0,'2022-09-03 00:00:00','2022-10-31 00:00:00','2022-10-31 00:00:00',3,'Thailand','215','2022-09-03 13:24:22','2022-09-03 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'bangkok-pattaya-special-offer-4n5d',NULL,NULL,NULL,0),(56,40044,1,12577,1,0,0,'Family,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40044,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/phuket_special_offer_-_4n5d_1662189429.jpg\",\"BookingValidUntill\":\"2022-10-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Phuket&lt;\\/strong&gt; is the largest island in Thailand. It is located in the Andaman Sea in southern Thailand. The island is mostly mountainous with a mountain range in the west of the island from the north to the south.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Phuket\",\"DestinationPlacesSysId\":21319,\"SourcePlaces\":\"Phuket\",\"SourcePlaceSysId\":21319,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Phuket Special Offer - 4N\\/5D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"10761\",\"SupplierName\":\"K1 Travels\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Intercity Transfers,Sightseeing\",\"PackageType\":\"Family,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-09-03\",\"To\":\"2022-10-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":21319,\"Title\":\"Phuket\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517199,\"Name\":\"Fishermen\'s Harbour\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"7.8805675\",\"Long\":\"98.291687\",\"Address\":\"2 21 Thanon Sirirat, Tambon Patong, Amphoe Kathu, Chang Wat Phuket 83150, Thailand\"},\"Images\":[],\"CityId\":21319,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":2444,\"Title\":\"Phi Phi Island\",\"Description\":\"Ko Phi Phi is one of the most idyllic tropical locations in the world. Made famous in the Hollywood movie The Beach, this picturesque island is a destination for travelers looking to relax, unwind and soak up some serious sun. This Phuket to Phi Phi Islands by express ferry tour with lunch included is the perfect way to experience the beauty of Ko Phi Phi worry free!\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":7.740738,\"Long\":98.77841,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phi_Phi_Island_21319_1519391829.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null},{\"RefSSId\":3887,\"Title\":\"Phuket City Tour\",\"Description\":\"Witness the beauty of Phuket unveil right in front of your eyes with a guided sightseeing day tour around the city! Get to visit various viewpoints such as Kata, Nai Harn, and Promthep cape points and revel in the picturesque overlooking views of Phuket.\",\"CurrencyType\":0,\"CityId\":21319,\"CityName\":\"Phuket\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21319\\/sightseeing\\/Phuket_City_Tour_21319_1659485765.jpg\",\"SupplierSysId\":10761,\"SupplierName\":\"K1 Travels\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"288063\",\"Title\":\"Arrive Phuket \",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Upon arrival at Phuket Airport, meet our local tour coordinator who will meet and greet you at the specified area and transfer you to the hotel. Check-in at the hotel and relax. Overnight at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288064\",\"Title\":\"Phuket - Phi Phi Island Tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast take a tour to &lt;strong&gt;Phi Phi Island.&lt;\\/strong&gt; This is the most popular tour-experience in Thailand, and a &amp;#39;must&amp;#39; for first-time visitors to the Land of Smiles. Breathtaking limestone cliffs rise straight out of the emerald green water. The&lt;strong&gt; Phi Phi&amp;#39;s&lt;\\/strong&gt; are 40 kilometers southeast of &lt;strong&gt;Phuket&lt;\\/strong&gt; in the&lt;strong&gt; Andaman Sea&lt;\\/strong&gt;. The six islands include Phi Phi Don &amp;ndash; home to the bohemian town of Phi Phi Islands, and Phi Phi Leh &amp;ndash; site of the spectacular Maya Bay which is famous for its role in the movie &amp;ldquo;The Beach&amp;rdquo;. The islands are laced with occasional powdery white beaches and coral reefs teeming with exotic life. They beckon you to unforgettable swimming and snorkeling in the clear tropical waters (National Park fees not included). A tour of Phi Phi presents you with great sightseeing and chances to take a plunge.&amp;nbsp;Overnight at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":2444,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288065\",\"Title\":\"Phuket - city tour\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast head for the Phuket Half-Day City Tour. Drive along scenic beach roads via Patong, Karon and Kata beach with a stop at Karon\\/Kata beach. Visit the Karon viewpoint, one of the most frequented viewpoints in Phuket, where you can see the three beaches, Kata, Kata Noi and Karon. Next, visit the largest and most revered Chalong Temple built in 1837. Experience the old world charm of Phuket Town with its colonial Sino-Portuguese architecture. Later return to hotel and relax. Overnight at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3887,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288066\",\"Title\":\"Phuket - Day Free\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast day free to explore &lt;strong&gt;Phuket &lt;\\/strong&gt;on your own. Overnight at hotel.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517199,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288067\",\"Title\":\"Depart Phuket\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast, checkout from your hotel. You will be picked up and transfered to the airport to catch your flight back home. Your trip ends with sweet memories.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21319,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40044\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"10300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10300,\"priceDoubleOcc\":\"10300.00\",\"priceSingleOcc\":10300,\"priceExtraBed\":\"10300.00\",\"priceWithoutBed\":\"10300.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10300,\"CEB\":10300,\"COSTDO\":10300,\"COSTSO\":null,\"ACEB\":10300,\"COSTTO\":10300},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10300,\"priceDoubleOcc\":\"10300.00\",\"priceSingleOcc\":10300,\"priceExtraBed\":\"10300.00\",\"priceWithoutBed\":\"10300.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10300,\"CEB\":10300,\"COSTDO\":10300,\"COSTSO\":null,\"ACEB\":10300,\"COSTTO\":10300},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10433,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":10500,\"priceExtraBed\":\"10300.00\",\"priceWithoutBed\":\"10300.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10300,\"CEB\":10300,\"COSTDO\":10500,\"COSTSO\":null,\"ACEB\":10300,\"COSTTO\":10300},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10567,\"priceDoubleOcc\":\"10700.00\",\"priceSingleOcc\":10700,\"priceExtraBed\":\"10300.00\",\"priceWithoutBed\":\"10300.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10300,\"CEB\":10300,\"COSTDO\":10700,\"COSTSO\":null,\"ACEB\":10300,\"COSTTO\":10300},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":10767,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":11000,\"priceExtraBed\":\"10300.00\",\"priceWithoutBed\":\"10300.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10300,\"CEB\":10300,\"COSTDO\":11000,\"COSTSO\":null,\"ACEB\":10300,\"COSTTO\":10300},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":11100,\"priceDoubleOcc\":\"11500.00\",\"priceSingleOcc\":11500,\"priceExtraBed\":\"10300.00\",\"priceWithoutBed\":\"10300.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":10300,\"CEB\":10300,\"COSTDO\":11500,\"COSTSO\":null,\"ACEB\":10300,\"COSTTO\":10300}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40044\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9100.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9100,\"priceDoubleOcc\":\"9100.00\",\"priceSingleOcc\":9100,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"9100.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9100,\"CEB\":9100,\"COSTDO\":9100,\"COSTSO\":null,\"ACEB\":9100,\"COSTTO\":9100},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9100,\"priceDoubleOcc\":\"9100.00\",\"priceSingleOcc\":9100,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"9100.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9100,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9100,\"CEB\":9100,\"COSTDO\":9100,\"COSTSO\":null,\"ACEB\":9100,\"COSTTO\":9100},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9233,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":9300,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"9100.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9100,\"CEB\":9100,\"COSTDO\":9300,\"COSTSO\":null,\"ACEB\":9100,\"COSTTO\":9100},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9367,\"priceDoubleOcc\":\"9500.00\",\"priceSingleOcc\":9500,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"9100.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9100,\"CEB\":9100,\"COSTDO\":9500,\"COSTSO\":null,\"ACEB\":9100,\"COSTTO\":9100},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9567,\"priceDoubleOcc\":\"9800.00\",\"priceSingleOcc\":9800,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"9100.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9100,\"CEB\":9100,\"COSTDO\":9800,\"COSTSO\":null,\"ACEB\":9100,\"COSTTO\":9100},{\"From\":\"2022-08-20\",\"To\":\"2022-10-31\",\"Currency\":1,\"priceTripleOcc\":9900,\"priceDoubleOcc\":\"10300.00\",\"priceSingleOcc\":10300,\"priceExtraBed\":\"9100.00\",\"priceWithoutBed\":\"9100.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":800,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":9100,\"CEB\":9100,\"COSTDO\":10300,\"COSTSO\":null,\"ACEB\":9100,\"COSTTO\":9100}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"288063\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[288063],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288064\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[288064],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288065\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[288065],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288066\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[288066],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288067\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[288067],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Phuket','Phuket,South East Asia,Thailand',NULL,'21319',9100,11500,4,NULL,NULL,NULL,2,'',0,'2022-09-03 00:00:00','2022-10-31 00:00:00','2022-10-31 00:00:00',3,'Thailand','215','2022-09-03 12:46:31','2022-09-03 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'phuket-special-offer-4n-5d',NULL,NULL,NULL,0),(57,40144,1,12577,1,0,0,'Honeymoon,Wildlife,Beach,Hill Station,Culture,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40144,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/kerala_-_spicel-_4n5d_1662035465.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Flanked by the &lt;strong&gt;Arabian Sea&lt;\\/strong&gt; in the West, the towering &lt;strong&gt;Western Ghats&lt;\\/strong&gt; in the East and networked by &lt;strong&gt;44 interconnected rivers&lt;\\/strong&gt;, &lt;strong&gt;KERALA&lt;\\/strong&gt; is blessed with a unique set of geographical features that have made it one of the most sought after tourist destinations in &lt;strong&gt;Asia&lt;\\/strong&gt;. A long shoreline with serene beaches, tranquil stretches of emerald backwaters, lush hill stations and exotic wildlife, are just a few of the wonders that await you once you crossover to the other side. And what&amp;#39;s more, each of these charming destinations is only a two hour drive from the other - a singular advantage no other place on the planet can offer.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Kochi\",\"DestinationPlacesSysId\":14275,\"SourcePlaces\":\"Kochi\",\"SourcePlaceSysId\":14275,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Kerala - Spiceland - 4N\\/5D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10801\",\"SupplierName\":\"Spiceland Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Car On Disposal\",\"PackageType\":\"Honeymoon,Wildlife,Beach,Hill Station,Culture,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":141642,\"Name\":\"Green Trees Munnar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"Power House Road Chithirapuram\"},\"Images\":{\"Image\":[{\"ImagId\":3117520,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_35_t.jpg\"},{\"ImagId\":3117521,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_36_t.jpg\"},{\"ImagId\":3117522,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_41_t.jpg\"},{\"ImagId\":3117523,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_42_t.jpg\"},{\"ImagId\":3117524,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_44_t.jpg\"},{\"ImagId\":3117525,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_43_t.jpg\"},{\"ImagId\":3117526,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_47_t.jpg\"},{\"ImagId\":3117527,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_46_t.jpg\"},{\"ImagId\":3117528,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_45_t.jpg\"},{\"ImagId\":3117529,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_40_t.jpg\"},{\"ImagId\":3117530,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_37_t.jpg\"},{\"ImagId\":3117531,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_38_t.jpg\"},{\"ImagId\":3117532,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_39_t.jpg\"},{\"ImagId\":3117533,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_21_t.jpg\"},{\"ImagId\":3117534,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_32_t.jpg\"},{\"ImagId\":3117535,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_22_t.jpg\"},{\"ImagId\":3117536,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_20_t.jpg\"},{\"ImagId\":3117537,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_19_t.jpg\"},{\"ImagId\":3117538,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_29_t.jpg\"},{\"ImagId\":3117539,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_31_t.jpg\"},{\"ImagId\":3117540,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_30_t.jpg\"},{\"ImagId\":3117541,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_27_t.jpg\"},{\"ImagId\":3117542,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_26_t.jpg\"},{\"ImagId\":3117543,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_23_t.jpg\"},{\"ImagId\":3117544,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_18_t.jpg\"},{\"ImagId\":3117545,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_33_t.jpg\"},{\"ImagId\":3117546,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_28_t.jpg\"},{\"ImagId\":3117547,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_25_t.jpg\"},{\"ImagId\":3117548,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_34_t.jpg\"},{\"ImagId\":3117549,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_24_t.jpg\"},{\"ImagId\":3117550,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_9_t.jpg\"},{\"ImagId\":3117551,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_8_t.jpg\"},{\"ImagId\":3117552,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_7_t.jpg\"},{\"ImagId\":3117553,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_6_t.jpg\"},{\"ImagId\":3117554,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_5_t.jpg\"},{\"ImagId\":3117555,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_4_t.jpg\"},{\"ImagId\":3117556,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_3_t.jpg\"},{\"ImagId\":3117557,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_2_t.jpg\"},{\"ImagId\":3117558,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_17_t.jpg\"},{\"ImagId\":3117559,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_16_t.jpg\"},{\"ImagId\":3117560,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_15_t.jpg\"},{\"ImagId\":3117561,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_14_t.jpg\"},{\"ImagId\":3117562,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_13_t.jpg\"},{\"ImagId\":3117563,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_12_t.jpg\"},{\"ImagId\":3117564,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_11_t.jpg\"},{\"ImagId\":3117565,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_10_t.jpg\"},{\"ImagId\":3117566,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_1_t.jpg\"}]},\"CityId\":18697,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Munnar, Green Trees Munnar is minutes from Mount Carmel Church and Carmal Church.  This hotel is within close proximity of Tata Tea Museum and St. Thomas Marthoma.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 25 guestrooms. Rooms have private balconies. Bathrooms have showers and hair dryers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of Green Trees Munnar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_35_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":517415,\"Name\":\"At Wood Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.0098706\",\"Long\":\"77.0811465\",\"Address\":\"1, Pottankad- Bison Valley- Muttukad Rd, Pottankadu, Kerala 685565, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1847,\"Title\":\"Valara Waterfalls\",\"Description\":\"Valara waterfall is among the best trekking area, located between Neriamangalam and Adimali. The waterfall is around 42 km away from Munnar. Valara Waterfalls are known for the lush greenery surrounding it and is a lovely picnic spot. The water cascades from a height of 1000 m, which itself is a treat to your eyes. It is road side attraction of Cochin &amp;ndash; Munnar highway. The serene environment surrounding the magnificent waterfall is also provide ideal habitat for many rare and exotic animals and birds.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Valara_Waterfalls_18697_1521638582.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517451,\"Name\":\"The Patio\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6055549\",\"Long\":\"77.16712249999999\",\"Address\":\"Thekkady Junction, Lake Road, near Mudra Cultural Center, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":517452,\"Name\":\"Thekkady Woods\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.603658899999997\",\"Long\":\"77.167417\",\"Address\":\"Anavachal road, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1847,\"Title\":\"Valara Waterfalls\",\"Description\":\"Valara waterfall is among the best trekking area, located between Neriamangalam and Adimali. The waterfall is around 42 km away from Munnar. Valara Waterfalls are known for the lush greenery surrounding it and is a lovely picnic spot. The water cascades from a height of 1000 m, which itself is a treat to your eyes. It is road side attraction of Cochin &amp;ndash; Munnar highway. The serene environment surrounding the magnificent waterfall is also provide ideal habitat for many rare and exotic animals and birds.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Valara_Waterfalls_18697_1521638582.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517454,\"Name\":\"Hotel AJ Park\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.492314899999998\",\"Long\":\"76.3338819\",\"Address\":\"F8RM+WHC, Junction, Vellakkinar, Alappuzha, Kerala 688001, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1847,\"Title\":\"Valara Waterfalls\",\"Description\":\"Valara waterfall is among the best trekking area, located between Neriamangalam and Adimali. The waterfall is around 42 km away from Munnar. Valara Waterfalls are known for the lush greenery surrounding it and is a lovely picnic spot. The water cascades from a height of 1000 m, which itself is a treat to your eyes. It is road side attraction of Cochin &amp;ndash; Munnar highway. The serene environment surrounding the magnificent waterfall is also provide ideal habitat for many rare and exotic animals and birds.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Valara_Waterfalls_18697_1521638582.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":493,\"Title\":\"Eravikulam National Park\",\"Description\":\"Eravikulam national park is spread over an extensive area of 97 sq km along the crest of Western Ghats in the high ranges of Idukki district. Located 15 km from Munnar, the national park is one of most important tourist destinations in Kerala and is managed by the Kerala Department of Forest and Wildlife, Munnar. Most of the areas of the national park are consistent hill plateau. The forests here are commonly known as &amp;lsquo;shoals&amp;rsquo; &amp;ndash; evergreen tropical and sub tropical moist broadleaf forest.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520863374.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"288888\",\"Title\":\"Arrive Cochin to Munnar\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Cochin Airport and transfer to Munnar. &lt;strong&gt;Munnar&lt;\\/strong&gt; is 1800 mts above sea level and also the place of South India&amp;#39;s highest peak (Anamudi-2695 mts). On the way visit Valara, Cheeyappara waterfalls &amp;amp; Tea Plantations. On arrival at Munnar transfer to Hotel. Check in at Hotel. Afternoon visit Rajamala (Eravikulam National Park - open as per the directions by the forest authorities ), the best place to see Nilgiri Tahr (Hermitragus Hilarious)- the mountain goat of South India &amp;amp; Tea Museum. Evening have a short visit at Munnar town. You can see the beautiful tea estates like a green paradise. Overnight stay at Munnar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":141642,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517415,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1847,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":318,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":30195,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":493,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1740,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288889\",\"Title\":\"Munnar\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast proceed for sightseeing. Maduppatty dam, Echo Point, Kundalay Dam, Pothenmedu View Point, Blossom Park etc are some of the highlights of the sightseeing. Shopping &amp;amp; overnight stay at Munnar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":141642,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517415,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":925,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1377,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4293,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288890\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288891\",\"Title\":\" Munnar &ndash; Thekkady\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning have breakfast at resort later check out resort and drive to Thekkady. &lt;strong&gt;Thekkady&lt;\\/strong&gt; is a world famous wildlife sanctuary and it is also called as&lt;strong&gt; Periyar.&lt;\\/strong&gt; On arrival check in Hotel Afternoon proceed for a game viewing cruise on the Periyar Lake. Here you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, wild boar etc evening you can take a Elephant ride at Periyar wild life and rest of the day is at leisure. Overnight stay at Thekkady&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517451,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517452,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1351,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1352,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288892\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288893\",\"Title\":\"Thekkady &ndash; Alleppey \\/ Kumarakom\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast check out from the hotel and transfer to &lt;strong&gt;Alleppey \\/ Kumarakom&lt;\\/strong&gt;. Check in at the resort. Later proceed to visit Alleppey backwaters. Take a cruise (Optional &amp;ndash; Own Cost) through the rich and splendid backwater. Just relax at the boat. It will be a unique and exclusive experience in your lifetime. You will be cruising along the village sides and paddy fields witnessing the core life of the Kerala villages. Overnight stay at Alleppey\\/Kumarakom.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517454,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30196,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"288894\",\"Title\":\"Alleppey \\/ Kumarakom &ndash; Cochin (Tour Ends)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;Morning have breakfast at resort later check out Hotel and drive to Airport \\/ Railway Station for departure&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40144\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6367,\"priceDoubleOcc\":\"7300.00\",\"priceSingleOcc\":7300,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"3200.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3200,\"CEB\":4500,\"COSTDO\":7300,\"COSTSO\":null,\"ACEB\":4500,\"COSTTO\":4500},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6367,\"priceDoubleOcc\":\"7300.00\",\"priceSingleOcc\":7300,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"3200.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3200,\"CEB\":4500,\"COSTDO\":7300,\"COSTSO\":null,\"ACEB\":4500,\"COSTTO\":4500},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6367,\"priceDoubleOcc\":\"7300.00\",\"priceSingleOcc\":7300,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"3200.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3200,\"CEB\":4500,\"COSTDO\":7300,\"COSTSO\":null,\"ACEB\":4500,\"COSTTO\":4500},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6433,\"priceDoubleOcc\":\"7400.00\",\"priceSingleOcc\":7400,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"3200.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3200,\"CEB\":4500,\"COSTDO\":7400,\"COSTSO\":null,\"ACEB\":4500,\"COSTTO\":4500},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":7033,\"priceDoubleOcc\":\"8300.00\",\"priceSingleOcc\":8300,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"3200.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3200,\"CEB\":4500,\"COSTDO\":8300,\"COSTSO\":null,\"ACEB\":4500,\"COSTTO\":4500},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8033,\"priceDoubleOcc\":\"9800.00\",\"priceSingleOcc\":9800,\"priceExtraBed\":\"4500.00\",\"priceWithoutBed\":\"3200.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3200,\"CEB\":4500,\"COSTDO\":9800,\"COSTSO\":null,\"ACEB\":4500,\"COSTTO\":4500}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40144\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"5800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":4867,\"priceDoubleOcc\":\"5800.00\",\"priceSingleOcc\":5800,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"1700.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1700,\"CEB\":3000,\"COSTDO\":5800,\"COSTSO\":null,\"ACEB\":3000,\"COSTTO\":3000},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":4867,\"priceDoubleOcc\":\"5800.00\",\"priceSingleOcc\":5800,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"1700.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1700,\"CEB\":3000,\"COSTDO\":5800,\"COSTSO\":null,\"ACEB\":3000,\"COSTTO\":3000},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":4867,\"priceDoubleOcc\":\"5800.00\",\"priceSingleOcc\":5800,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"1700.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1700,\"CEB\":3000,\"COSTDO\":5800,\"COSTSO\":null,\"ACEB\":3000,\"COSTTO\":3000},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":4933,\"priceDoubleOcc\":\"5900.00\",\"priceSingleOcc\":5900,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"1700.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":5900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1700,\"CEB\":3000,\"COSTDO\":5900,\"COSTSO\":null,\"ACEB\":3000,\"COSTTO\":3000},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":5533,\"priceDoubleOcc\":\"6800.00\",\"priceSingleOcc\":6800,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"1700.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1700,\"CEB\":3000,\"COSTDO\":6800,\"COSTSO\":null,\"ACEB\":3000,\"COSTTO\":3000},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6533,\"priceDoubleOcc\":\"8300.00\",\"priceSingleOcc\":8300,\"priceExtraBed\":\"3000.00\",\"priceWithoutBed\":\"1700.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":1700,\"CEB\":3000,\"COSTDO\":8300,\"COSTSO\":null,\"ACEB\":3000,\"COSTTO\":3000}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"288888\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[288888],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288889\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[288889],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288890\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[288890],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288891\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[288891],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288892\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[288892],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288893\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[288893],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"288894\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[288894],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Munnar,Thekkady,Alleppey','Munnar,Kerala,Indian Subcontinent,South India,India,Thekkady,Alleppey,Cochin,Kumarakom',NULL,'18697,27156,670',5800,9800,4,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2022-09-01 18:00:59','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kerala-spiceland-4n-5d',NULL,NULL,NULL,0),(58,40170,1,12577,1,0,0,'Adventure,Wildlife,Beach,Hill Station,Heritage,Culture,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40170,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/kerala_-_spicel-_5n6d_1662035400.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;KERALA &lt;\\/strong&gt;has its own traditions and culture. Kerala is the most attracted tourist destination with its beaches, hill stations, backwaters, bird and wild life sancturies etc. Kerala is blessed with its variety of flora and fauna. Kerala festivals are attracting many tourists. Kerala is the first 100% literate state in India. The Kerala cinema is always a symbol for quality movies. In literary field also Kerala is blessed with so many legends.&lt;br \\/&gt;\\r\\nKerala&amp;#39;s Kathakali is a stylized classical Indian dance-drama noted for the attractive make-up of characters, elaborate costumes, detailed gestures and well-defined body movements presented in tune with the anchor playback music and complementary percussion. Kerala&amp;#39;s Kalaripayattu is one of the oldest fighting systems in existence. Kalaripayattu includes strikes, kicks, grappling, preset forms, weaponry and healing methods..&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Cochin\",\"DestinationPlacesSysId\":6561,\"SourcePlaces\":\"Cochin\",\"SourcePlaceSysId\":6561,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Kerala - Spiceland - 5N\\/6D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10801\",\"SupplierName\":\"Spiceland Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Airport Transfers,Train Station Transfers,Intercity Transfers,Sightseeing,Car On Disposal\",\"PackageType\":\"Adventure,Wildlife,Beach,Hill Station,Heritage,Culture,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":6561,\"Title\":\"Cochin\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517495,\"Name\":\"Millennium Continental | Hotels in Kochi\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.9757784\",\"Long\":\"76.28259469999999\",\"Address\":\"Narakathara Road, Mahatma Gandhi Rd, opp. Shenoys Theatre, Shenoys, Kochi, Kerala 682035, India\"},\"Images\":[],\"CityId\":6561,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30230,\"Title\":\"Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30231,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":3777,\"Title\":\"Chinese Fishing Net\",\"Description\":\"Chinese fishing nets are a type of stationary lift net in India. They are fishing nets that are fixed land installations for fishing. Each installation is operated by a team of up to six fishermen. While such nets are used throughout coastal southern China and Indochina, in India they are mostly found in the Indian cities of Kochi and Kollam, where they have become a tourist attraction. This way of fishing is unusual in India and almost unique to the area, as it was introduced by Chinese explorers. Indeed, one interpretation of the city name Kochi is &amp;lsquo;co-chin&amp;#039;, meaning &amp;lsquo;like China.&amp;rsquo;\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Chinese_Fishing_Net_6561_1540979949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}},{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":141642,\"Name\":\"Green Trees Munnar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"Power House Road Chithirapuram\"},\"Images\":{\"Image\":[{\"ImagId\":3117520,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_35_t.jpg\"},{\"ImagId\":3117521,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_36_t.jpg\"},{\"ImagId\":3117522,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_41_t.jpg\"},{\"ImagId\":3117523,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_42_t.jpg\"},{\"ImagId\":3117524,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_44_t.jpg\"},{\"ImagId\":3117525,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_43_t.jpg\"},{\"ImagId\":3117526,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_47_t.jpg\"},{\"ImagId\":3117527,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_46_t.jpg\"},{\"ImagId\":3117528,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_45_t.jpg\"},{\"ImagId\":3117529,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_40_t.jpg\"},{\"ImagId\":3117530,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_37_t.jpg\"},{\"ImagId\":3117531,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_38_t.jpg\"},{\"ImagId\":3117532,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_39_t.jpg\"},{\"ImagId\":3117533,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_21_t.jpg\"},{\"ImagId\":3117534,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_32_t.jpg\"},{\"ImagId\":3117535,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_22_t.jpg\"},{\"ImagId\":3117536,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_20_t.jpg\"},{\"ImagId\":3117537,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_19_t.jpg\"},{\"ImagId\":3117538,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_29_t.jpg\"},{\"ImagId\":3117539,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_31_t.jpg\"},{\"ImagId\":3117540,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_30_t.jpg\"},{\"ImagId\":3117541,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_27_t.jpg\"},{\"ImagId\":3117542,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_26_t.jpg\"},{\"ImagId\":3117543,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_23_t.jpg\"},{\"ImagId\":3117544,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_18_t.jpg\"},{\"ImagId\":3117545,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_33_t.jpg\"},{\"ImagId\":3117546,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_28_t.jpg\"},{\"ImagId\":3117547,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_25_t.jpg\"},{\"ImagId\":3117548,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_34_t.jpg\"},{\"ImagId\":3117549,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_24_t.jpg\"},{\"ImagId\":3117550,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_9_t.jpg\"},{\"ImagId\":3117551,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_8_t.jpg\"},{\"ImagId\":3117552,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_7_t.jpg\"},{\"ImagId\":3117553,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_6_t.jpg\"},{\"ImagId\":3117554,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_5_t.jpg\"},{\"ImagId\":3117555,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_4_t.jpg\"},{\"ImagId\":3117556,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_3_t.jpg\"},{\"ImagId\":3117557,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_2_t.jpg\"},{\"ImagId\":3117558,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_17_t.jpg\"},{\"ImagId\":3117559,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_16_t.jpg\"},{\"ImagId\":3117560,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_15_t.jpg\"},{\"ImagId\":3117561,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_14_t.jpg\"},{\"ImagId\":3117562,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_13_t.jpg\"},{\"ImagId\":3117563,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_12_t.jpg\"},{\"ImagId\":3117564,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_11_t.jpg\"},{\"ImagId\":3117565,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_10_t.jpg\"},{\"ImagId\":3117566,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_1_t.jpg\"}]},\"CityId\":18697,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Munnar, Green Trees Munnar is minutes from Mount Carmel Church and Carmal Church.  This hotel is within close proximity of Tata Tea Museum and St. Thomas Marthoma.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 25 guestrooms. Rooms have private balconies. Bathrooms have showers and hair dryers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of Green Trees Munnar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_35_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":517415,\"Name\":\"At Wood Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.0098706\",\"Long\":\"77.0811465\",\"Address\":\"1, Pottankad- Bison Valley- Muttukad Rd, Pottankadu, Kerala 685565, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30230,\"Title\":\"Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30231,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":3777,\"Title\":\"Chinese Fishing Net\",\"Description\":\"Chinese fishing nets are a type of stationary lift net in India. They are fishing nets that are fixed land installations for fishing. Each installation is operated by a team of up to six fishermen. While such nets are used throughout coastal southern China and Indochina, in India they are mostly found in the Indian cities of Kochi and Kollam, where they have become a tourist attraction. This way of fishing is unusual in India and almost unique to the area, as it was introduced by Chinese explorers. Indeed, one interpretation of the city name Kochi is &amp;lsquo;co-chin&amp;#039;, meaning &amp;lsquo;like China.&amp;rsquo;\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Chinese_Fishing_Net_6561_1540979949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517451,\"Name\":\"The Patio\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6055549\",\"Long\":\"77.16712249999999\",\"Address\":\"Thekkady Junction, Lake Road, near Mudra Cultural Center, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":517452,\"Name\":\"Thekkady Woods\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.603658899999997\",\"Long\":\"77.167417\",\"Address\":\"Anavachal road, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30230,\"Title\":\"Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30231,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":3777,\"Title\":\"Chinese Fishing Net\",\"Description\":\"Chinese fishing nets are a type of stationary lift net in India. They are fishing nets that are fixed land installations for fishing. Each installation is operated by a team of up to six fishermen. While such nets are used throughout coastal southern China and Indochina, in India they are mostly found in the Indian cities of Kochi and Kollam, where they have become a tourist attraction. This way of fishing is unusual in India and almost unique to the area, as it was introduced by Chinese explorers. Indeed, one interpretation of the city name Kochi is &amp;lsquo;co-chin&amp;#039;, meaning &amp;lsquo;like China.&amp;rsquo;\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Chinese_Fishing_Net_6561_1540979949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517505,\"Name\":\"Hotel AJ Park\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.492314899999998\",\"Long\":\"76.3338819\",\"Address\":\"F8RM+WHC, Junction, Vellakkinar, Alappuzha, Kerala 688001, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30230,\"Title\":\"Dutch Palace\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30231,\"Title\":\"Jewish Synagogue\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":3746,\"Title\":\"St. Francis Church\",\"Description\":\"The St. Francis Church, well-known for its beautiful structural design and ambience, has an important place in history. It is here that the famous explorer, Vasco-da-Gama, was originally buried. His remains would be taken back 14 years later but to this day, the exact spot is clearly marked. The place is known for its deep Dutch and Portuguese influences and is an architectural marvel in itself.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":35.3663657,\"Long\":-119.0206457,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/36_1519288938.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":3777,\"Title\":\"Chinese Fishing Net\",\"Description\":\"Chinese fishing nets are a type of stationary lift net in India. They are fishing nets that are fixed land installations for fishing. Each installation is operated by a team of up to six fishermen. While such nets are used throughout coastal southern China and Indochina, in India they are mostly found in the Indian cities of Kochi and Kollam, where they have become a tourist attraction. This way of fishing is unusual in India and almost unique to the area, as it was introduced by Chinese explorers. Indeed, one interpretation of the city name Kochi is &amp;lsquo;co-chin&amp;#039;, meaning &amp;lsquo;like China.&amp;rsquo;\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Chinese_Fishing_Net_6561_1540979949.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2535,\"Title\":\"Fort Kochi, Kochi, Kerala, India\",\"Description\":\"Kochi has managed to attract many travelers and traders for centuries. So enticed were everyone who landed on its ports- be it the British, the Dutch, or the French- that they never wanted to go back.\\r\\n\\r\\nFort Kochi is the heart of Kochi, which falls under the district of Ernakulam. But don&amp;rsquo;t go by its name. Fort Kochi is neither a walled city nor does it have a fort of its own. The moment you enter Kochi, you will be greeted with an alluding chilled-out vibe. You will be forced to follow it to the source. This is when you would discover the laid back region of Fort Kochi.\\r\\n\\r\\nThis allure is what resulted into the unbelievable blend of the village with a Portuguese, Dutch, and French feel to it and the Malabar coast added the required spice to the mixture. Combine all this with uber-cool cafes and you have the perfect city to backpack to!\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Fort_Kochi,_Kochi,_Kerala,_Ind_6561_1540981227.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2803,\"Title\":\"Mattenchary Palace\",\"Description\":\"The Mattancherry Palace is a Portuguese palace popularly known as the Dutch Palace, in Mattancherry, Kochi, in the Indian state of Kerala which features Kerala murals depicting portraits and exhibits of the Rajas of Kochi. The palace was included in the &amp;quot;tentative list&amp;quot; of UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":6561,\"CityName\":\"Cochin\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/6561\\/sightseeing\\/Mattenchary_Palace_6561_1547193187.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"289125\",\"Title\":\"Arrive Cochin\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Cochin and transfer to hotel. Check in at Hotel. In Cochin Visit the &lt;strong&gt;Dutch Palace&lt;\\/strong&gt;-built by the Portuguese in 1557 and subsequently renovated by the Dutch after 1663. The murals are perhaps the best in India. &lt;strong&gt;Jewish Synagogue&lt;\\/strong&gt; - built in 1568 and the oldest Synagogue in the Commonwealth are at Mattancherry. &lt;strong&gt;St. Francis Church&lt;\\/strong&gt; - built in 1510 and the oldest European church in India, &lt;strong&gt;Chinese Fishing Nets&lt;\\/strong&gt;- introduced by the court of Kublai Khan can be seen in Fort Cochin. Fort Cochin Beach etc. Overnight stay at Cochin&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6561,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517495,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30230,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":30231,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3746,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3777,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2535,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2803,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289126\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6561,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289127\",\"Title\":\"Cochin to Munnar\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast check out from the hotel and transfer to Munnar. &lt;strong&gt;Munnar&lt;\\/strong&gt; is 1800 mts above sea level and also the place of South India&amp;#39;s highest peak (Anamudi-2695 mts). On the way visit &lt;strong&gt;Valara, Cheeyappara waterfalls &amp;amp; Tea Plantations&lt;\\/strong&gt;. On arrival at Munnar transfer to Hotel. Check in at Hotel. Afternoon visit &lt;strong&gt;Rajamala (Eravikulam National Park &lt;\\/strong&gt;- open as per the directions by the forest authorities ), the best place to see Nilgiri Tahr (Hermitragus Hilarious)- the mountain goat of South India &amp;amp; Tea Museum. Evening have a short visit at Munnar town. You can see the beautiful tea estates like a green paradise. Overnight stay at Munnar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":141642,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517415,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":318,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":30195,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289128\",\"Title\":\"Munnar\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast proceed for sightseeing. &lt;strong&gt;Maduppatty dam, Echo Point, Kundalay Dam, Pothenmedu View Point, Blossom Park&lt;\\/strong&gt; etc are some of the highlights of the sightseeing. Shopping &amp;amp; overnight stay at Munnar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":141642,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517415,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":925,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1377,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289129\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289130\",\"Title\":\" Munnar &ndash; Thekkady\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Morning have breakfast at resort later check out resort and drive to Thekkady. &lt;strong&gt;Thekkady&lt;\\/strong&gt; is a world famous wildlife sanctuary and it is also called as&lt;strong&gt; Periyar.&lt;\\/strong&gt; On arrival check in Hotel Afternoon proceed for a game viewing cruise on the Periyar Lake. Here you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, wild boar etc evening you can take a Elephant ride at Periyar wild life and rest of the day is at leisure. Overnight stay at Thekkady&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517451,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517452,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1352,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1351,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289131\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289132\",\"Title\":\"Thekkady &ndash; Alleppey \\/ Kumarakom\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast check out from the hotel and transfer to &lt;strong&gt;Alleppey \\/ Kumarakom&lt;\\/strong&gt;. Check in at the resort. Later proceed to visit Alleppey backwaters. Take a cruise (Optional &amp;ndash; Own Cost) through the rich and splendid backwater. Just relax at the boat. It will be a unique and exclusive experience in your lifetime. You will be cruising along the village sides and paddy fields witnessing the core life of the Kerala villages. Overnight stay at Alleppey\\/Kumarakom.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517505,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30196,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289133\",\"Title\":\"Alleppey \\/ Kumarakom &ndash; Cochin (Tour Ends)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Morning have breakfast at resort later check out Hotel and drive to Airport \\/ Railway Station for departure&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40170\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":7267,\"priceDoubleOcc\":\"8300.00\",\"priceSingleOcc\":8300,\"priceExtraBed\":\"5200.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":5200,\"COSTDO\":8300,\"COSTSO\":null,\"ACEB\":5200,\"COSTTO\":5200},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":7267,\"priceDoubleOcc\":\"8300.00\",\"priceSingleOcc\":8300,\"priceExtraBed\":\"5200.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":5200,\"COSTDO\":8300,\"COSTSO\":null,\"ACEB\":5200,\"COSTTO\":5200},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":7267,\"priceDoubleOcc\":\"8300.00\",\"priceSingleOcc\":8300,\"priceExtraBed\":\"5200.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":5200,\"COSTDO\":8300,\"COSTSO\":null,\"ACEB\":5200,\"COSTTO\":5200},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":7367,\"priceDoubleOcc\":\"8450.00\",\"priceSingleOcc\":8450,\"priceExtraBed\":\"5200.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":5200,\"COSTDO\":8450,\"COSTSO\":null,\"ACEB\":5200,\"COSTTO\":5200},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8100,\"priceDoubleOcc\":\"9550.00\",\"priceSingleOcc\":9550,\"priceExtraBed\":\"5200.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9550,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":5200,\"COSTDO\":9550,\"COSTSO\":null,\"ACEB\":5200,\"COSTTO\":5200},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9333,\"priceDoubleOcc\":\"11400.00\",\"priceSingleOcc\":11400,\"priceExtraBed\":\"5200.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11400,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":5200,\"COSTDO\":11400,\"COSTSO\":null,\"ACEB\":5200,\"COSTTO\":5200}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40170\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"6800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":5767,\"priceDoubleOcc\":\"6800.00\",\"priceSingleOcc\":6800,\"priceExtraBed\":\"3700.00\",\"priceWithoutBed\":\"2000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2000,\"CEB\":3700,\"COSTDO\":6800,\"COSTSO\":null,\"ACEB\":3700,\"COSTTO\":3700},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":5767,\"priceDoubleOcc\":\"6800.00\",\"priceSingleOcc\":6800,\"priceExtraBed\":\"3700.00\",\"priceWithoutBed\":\"2000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2000,\"CEB\":3700,\"COSTDO\":6800,\"COSTSO\":null,\"ACEB\":3700,\"COSTTO\":3700},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":5767,\"priceDoubleOcc\":\"6800.00\",\"priceSingleOcc\":6800,\"priceExtraBed\":\"3700.00\",\"priceWithoutBed\":\"2000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2000,\"CEB\":3700,\"COSTDO\":6800,\"COSTSO\":null,\"ACEB\":3700,\"COSTTO\":3700},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":5867,\"priceDoubleOcc\":\"6950.00\",\"priceSingleOcc\":6950,\"priceExtraBed\":\"3700.00\",\"priceWithoutBed\":\"2000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":6950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2000,\"CEB\":3700,\"COSTDO\":6950,\"COSTSO\":null,\"ACEB\":3700,\"COSTTO\":3700},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6600,\"priceDoubleOcc\":\"8050.00\",\"priceSingleOcc\":8050,\"priceExtraBed\":\"3700.00\",\"priceWithoutBed\":\"2000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8050,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2000,\"CEB\":3700,\"COSTDO\":8050,\"COSTSO\":null,\"ACEB\":3700,\"COSTTO\":3700},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":7833,\"priceDoubleOcc\":\"9900.00\",\"priceSingleOcc\":9900,\"priceExtraBed\":\"3700.00\",\"priceWithoutBed\":\"2000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9900,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":2000,\"CEB\":3700,\"COSTDO\":9900,\"COSTSO\":null,\"ACEB\":3700,\"COSTTO\":3700}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"289125\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[289125],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289126\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[289126],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289127\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[289127],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289128\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[289128],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289129\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[289129],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289130\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[289130],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289131\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[289131],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289132\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[289132],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289133\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[289133],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Cochin,Munnar,Thekkady,Alleppey','Cochin,Kerala,Indian Subcontinent,South India,India,Munnar,Thekkady,Alleppey',NULL,'6561,18697,27156,670',6800,11400,5,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2022-09-01 17:59:19','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kerala-spiceland-5n-6d',NULL,NULL,NULL,0);
INSERT INTO `tb_tbb2c_packages_master` VALUES (59,40221,1,12577,1,0,0,'Adventure,Wildlife,Beach,Hill Station,Heritage,Culture,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40221,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/kerala_-_spicel-_6n7d_1662035166.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;KERALA &lt;\\/strong&gt;has its own traditions and culture. Kerala is the most attracted tourist destination with its beaches, hill stations, backwaters, bird and wild life sancturies etc. Kerala is blessed with its variety of flora and fauna. Kerala festivals are attracting many tourists. Kerala is the first 100% literate state in India. The Kerala cinema is always a symbol for quality movies. In literary field also Kerala is blessed with so many legends.&lt;br \\/&gt;\\r\\nKerala&amp;#39;s Kathakali is a stylized classical Indian dance-drama noted for the attractive make-up of characters, elaborate costumes, detailed gestures and well-defined body movements presented in tune with the anchor playback music and complementary percussion. Kerala&amp;#39;s Kalaripayattu is one of the oldest fighting systems in existence. Kalaripayattu includes strikes, kicks, grappling, preset forms, weaponry and healing methods..&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Trivandrum\",\"DestinationPlacesSysId\":34288,\"SourcePlaces\":\"Kochi\",\"SourcePlaceSysId\":14275,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Kerala - Spiceland - 6N\\/7D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10801\",\"SupplierName\":\"Spiceland Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Car On Disposal\",\"PackageType\":\"Adventure,Wildlife,Beach,Hill Station,Heritage,Culture,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":18697,\"Title\":\"Munnar\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":141642,\"Name\":\"Green Trees Munnar\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"10.0615\",\"Long\":\"77.0629\",\"Address\":\"Power House Road Chithirapuram\"},\"Images\":{\"Image\":[{\"ImagId\":3117520,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_35_t.jpg\"},{\"ImagId\":3117521,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_36_t.jpg\"},{\"ImagId\":3117522,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_41_t.jpg\"},{\"ImagId\":3117523,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_42_t.jpg\"},{\"ImagId\":3117524,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_44_t.jpg\"},{\"ImagId\":3117525,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_43_t.jpg\"},{\"ImagId\":3117526,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_47_t.jpg\"},{\"ImagId\":3117527,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_46_t.jpg\"},{\"ImagId\":3117528,\"Type\":\"Thumbnail\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_45_t.jpg\"},{\"ImagId\":3117529,\"Type\":\"Thumbnail\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_40_t.jpg\"},{\"ImagId\":3117530,\"Type\":\"Thumbnail\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_37_t.jpg\"},{\"ImagId\":3117531,\"Type\":\"Thumbnail\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_38_t.jpg\"},{\"ImagId\":3117532,\"Type\":\"Thumbnail\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_39_t.jpg\"},{\"ImagId\":3117533,\"Type\":\"Thumbnail\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_21_t.jpg\"},{\"ImagId\":3117534,\"Type\":\"Thumbnail\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_32_t.jpg\"},{\"ImagId\":3117535,\"Type\":\"Thumbnail\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_22_t.jpg\"},{\"ImagId\":3117536,\"Type\":\"Thumbnail\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_20_t.jpg\"},{\"ImagId\":3117537,\"Type\":\"Thumbnail\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_19_t.jpg\"},{\"ImagId\":3117538,\"Type\":\"Thumbnail\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_29_t.jpg\"},{\"ImagId\":3117539,\"Type\":\"Thumbnail\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_31_t.jpg\"},{\"ImagId\":3117540,\"Type\":\"Thumbnail\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_30_t.jpg\"},{\"ImagId\":3117541,\"Type\":\"Thumbnail\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_27_t.jpg\"},{\"ImagId\":3117542,\"Type\":\"Thumbnail\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_26_t.jpg\"},{\"ImagId\":3117543,\"Type\":\"Thumbnail\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_23_t.jpg\"},{\"ImagId\":3117544,\"Type\":\"Thumbnail\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_18_t.jpg\"},{\"ImagId\":3117545,\"Type\":\"Thumbnail\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_33_t.jpg\"},{\"ImagId\":3117546,\"Type\":\"Thumbnail\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_28_t.jpg\"},{\"ImagId\":3117547,\"Type\":\"Thumbnail\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_25_t.jpg\"},{\"ImagId\":3117548,\"Type\":\"Thumbnail\",\"Order\":29,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_34_t.jpg\"},{\"ImagId\":3117549,\"Type\":\"Thumbnail\",\"Order\":30,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_24_t.jpg\"},{\"ImagId\":3117550,\"Type\":\"Thumbnail\",\"Order\":31,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_9_t.jpg\"},{\"ImagId\":3117551,\"Type\":\"Thumbnail\",\"Order\":32,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_8_t.jpg\"},{\"ImagId\":3117552,\"Type\":\"Thumbnail\",\"Order\":33,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_7_t.jpg\"},{\"ImagId\":3117553,\"Type\":\"Thumbnail\",\"Order\":34,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_6_t.jpg\"},{\"ImagId\":3117554,\"Type\":\"Thumbnail\",\"Order\":35,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_5_t.jpg\"},{\"ImagId\":3117555,\"Type\":\"Thumbnail\",\"Order\":36,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_4_t.jpg\"},{\"ImagId\":3117556,\"Type\":\"Thumbnail\",\"Order\":37,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_3_t.jpg\"},{\"ImagId\":3117557,\"Type\":\"Thumbnail\",\"Order\":38,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_2_t.jpg\"},{\"ImagId\":3117558,\"Type\":\"Thumbnail\",\"Order\":39,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_17_t.jpg\"},{\"ImagId\":3117559,\"Type\":\"Thumbnail\",\"Order\":40,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_16_t.jpg\"},{\"ImagId\":3117560,\"Type\":\"Thumbnail\",\"Order\":41,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_15_t.jpg\"},{\"ImagId\":3117561,\"Type\":\"Thumbnail\",\"Order\":42,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_14_t.jpg\"},{\"ImagId\":3117562,\"Type\":\"Thumbnail\",\"Order\":43,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_13_t.jpg\"},{\"ImagId\":3117563,\"Type\":\"Thumbnail\",\"Order\":44,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_12_t.jpg\"},{\"ImagId\":3117564,\"Type\":\"Thumbnail\",\"Order\":45,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_11_t.jpg\"},{\"ImagId\":3117565,\"Type\":\"Thumbnail\",\"Order\":46,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_10_t.jpg\"},{\"ImagId\":3117566,\"Type\":\"Thumbnail\",\"Order\":47,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_1_t.jpg\"}]},\"CityId\":18697,\"Brief\":\"&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Property Location&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Located in Munnar, Green Trees Munnar is minutes from Mount Carmel Church and Carmal Church.  This hotel is within close proximity of Tata Tea Museum and St. Thomas Marthoma.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Rooms&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Make yourself at home in one of the 25 guestrooms. Rooms have private balconies. Bathrooms have showers and hair dryers.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Dining&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Enjoy a satisfying meal at a restaurant serving guests of Green Trees Munnar.&amp;lt;\\/p&amp;gt;&amp;lt;p&amp;gt;&amp;lt;b&amp;gt;Business, Other Amenities&amp;lt;\\/b&amp;gt; &amp;lt;br \\/&amp;gt;Free self parking is available onsite.&amp;lt;\\/p&amp;gt;\",\"MainImg\":\"https:\\/\\/media.expedia.com\\/hotels\\/10000000\\/9040000\\/9032000\\/9031932\\/9031932_35_t.jpg\",\"AccoAminitiesMask\":\"111000000000010000\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":13,\"Title\":\"Laundry\"}],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":517515,\"Name\":\"At Wood Resort\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"10.0098706\",\"Long\":\"77.0811465\",\"Address\":\"1, Pottankad- Bison Valley- Muttukad Rd, Pottankadu, Kerala 685565, India\"},\"Images\":[],\"CityId\":18697,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4388,\"Title\":\"Kovalam Beach\",\"Description\":\"Kovalam Beach is a magnificent and an internationally renowned beach. It has been a favourite haunt of tourists with amassive rocky promontory on the beach that has created a beautiful bay of calm waters ideal for sea bathing. Sunbathing, swimming, herbal body toning massages, special cultural programmes and catamaran cruising are some of the best facilities offered here. The beach complex includes budget cottages, convention facilities, shopping zones, swimming pools, Ayurvedic health resorts, Yoga and Ayurvedic massage centres.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3888922,\"Long\":76.9760433,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/Kovalam_Beach_14455_1521180275.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30279,\"Title\":\"Trivandrum City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30280,\"Title\":\"Trivandrum Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30281,\"Title\":\"Trivandrum Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2728,\"Title\":\"Veli Tourist Village\",\"Description\":\"Veli is a tourist village that is popular as a picnic destination in Thiruvananthapuram district. The place features a large garden on the southern banks of Veli Lagoon a floating bridge that connects this garden to the Veli Beach. It is an ideal destination for a family picnic as there are wide range of attractions such as play areas for children, boat rides in Veli Lake, horse riding option, and a floating restaurant can be found here. Apart from these, there is a a long walkway connecting Aakulam Lake that catches one&amp;rsquo;s attention, there are also some stone and grass sculptures by Kanayi Kunhiraman which add to the landscape of the garden a collection of birds such as pigeons and swans, and few small ponds with fish and tortoises in them.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.5080206,\"Long\":76.8886702,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/45_1514624362.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}},{\"CityId\":27156,\"Title\":\"Thekkady\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517451,\"Name\":\"The Patio\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.6055549\",\"Long\":\"77.16712249999999\",\"Address\":\"Thekkady Junction, Lake Road, near Mudra Cultural Center, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":517452,\"Name\":\"Thekkady Woods\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"9.603658899999997\",\"Long\":\"77.167417\",\"Address\":\"Anavachal road, Thekkady, Kumily, Kerala 685509, India\"},\"Images\":[],\"CityId\":27156,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4388,\"Title\":\"Kovalam Beach\",\"Description\":\"Kovalam Beach is a magnificent and an internationally renowned beach. It has been a favourite haunt of tourists with amassive rocky promontory on the beach that has created a beautiful bay of calm waters ideal for sea bathing. Sunbathing, swimming, herbal body toning massages, special cultural programmes and catamaran cruising are some of the best facilities offered here. The beach complex includes budget cottages, convention facilities, shopping zones, swimming pools, Ayurvedic health resorts, Yoga and Ayurvedic massage centres.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3888922,\"Long\":76.9760433,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/Kovalam_Beach_14455_1521180275.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30279,\"Title\":\"Trivandrum City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30280,\"Title\":\"Trivandrum Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30281,\"Title\":\"Trivandrum Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2728,\"Title\":\"Veli Tourist Village\",\"Description\":\"Veli is a tourist village that is popular as a picnic destination in Thiruvananthapuram district. The place features a large garden on the southern banks of Veli Lagoon a floating bridge that connects this garden to the Veli Beach. It is an ideal destination for a family picnic as there are wide range of attractions such as play areas for children, boat rides in Veli Lake, horse riding option, and a floating restaurant can be found here. Apart from these, there is a a long walkway connecting Aakulam Lake that catches one&amp;rsquo;s attention, there are also some stone and grass sculptures by Kanayi Kunhiraman which add to the landscape of the garden a collection of birds such as pigeons and swans, and few small ponds with fish and tortoises in them.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.5080206,\"Long\":76.8886702,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/45_1514624362.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}},{\"CityId\":670,\"Title\":\"Alleppey\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517519,\"Name\":\"Hotel AJ Park\",\"Star\":\".00\",\"Rating\":\"3.50\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"9.492314899999998\",\"Long\":\"76.3338819\",\"Address\":\"F8RM+WHC, Junction, Vellakkinar, Alappuzha, Kerala 688001, India\"},\"Images\":[],\"CityId\":670,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4388,\"Title\":\"Kovalam Beach\",\"Description\":\"Kovalam Beach is a magnificent and an internationally renowned beach. It has been a favourite haunt of tourists with amassive rocky promontory on the beach that has created a beautiful bay of calm waters ideal for sea bathing. Sunbathing, swimming, herbal body toning massages, special cultural programmes and catamaran cruising are some of the best facilities offered here. The beach complex includes budget cottages, convention facilities, shopping zones, swimming pools, Ayurvedic health resorts, Yoga and Ayurvedic massage centres.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3888922,\"Long\":76.9760433,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/Kovalam_Beach_14455_1521180275.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30279,\"Title\":\"Trivandrum City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30280,\"Title\":\"Trivandrum Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30281,\"Title\":\"Trivandrum Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2728,\"Title\":\"Veli Tourist Village\",\"Description\":\"Veli is a tourist village that is popular as a picnic destination in Thiruvananthapuram district. The place features a large garden on the southern banks of Veli Lagoon a floating bridge that connects this garden to the Veli Beach. It is an ideal destination for a family picnic as there are wide range of attractions such as play areas for children, boat rides in Veli Lake, horse riding option, and a floating restaurant can be found here. Apart from these, there is a a long walkway connecting Aakulam Lake that catches one&amp;rsquo;s attention, there are also some stone and grass sculptures by Kanayi Kunhiraman which add to the landscape of the garden a collection of birds such as pigeons and swans, and few small ponds with fish and tortoises in them.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.5080206,\"Long\":76.8886702,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/45_1514624362.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}},{\"CityId\":14455,\"Title\":\"Kovalam\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":517566,\"Name\":\"Hawa Beach Resort\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":14455,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1425,\"Title\":\"Rajamalai Sanctuary (Eravikulam National Park)\",\"Description\":\"Rajamalai Wildlife Sanctuary is a part of the  Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Tahr (mountain goat) is protected, spread over an area of 97 square kilometer. Located at a distance of 15 km from the main city of Munnar, the sanctuary is blessed with flora and fauna. It is a great delight to all the wildlife enthusiast and nature lovers. It is the ultimate home to the mountain goat which is found in huge number in the jungles of  Rajmalai.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Rajamalai_Sanctuary_(Eravikula_18697_1521694056.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":318,\"Title\":\"Cheeyapara&Acirc;&nbsp;Waterfalls\",\"Description\":\"Cheeyappara waterfalls is a fascinating tourist destination, located on the Kochi&amp;not; Madurai highway between Neriamangalam and Adimali in Idukki district and around 40 km away from Munnar. The water here cascades down in seven steps, which is a delightful sight. This place is also famous for trekking. The waterfall is situated approximately 1000 feets above the sea level. It is very easy to reach this picturesque spot as it is very well connected to the nearby cities.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/130_1516802316.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30195,\"Title\":\"Tea Plantation Munnar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1740,\"Title\":\"Tea Museum\",\"Description\":\"A Tea Museum has been established by Tata Tea in 2005 which has photographs and machineries, which chronicle the history and growth of tea in the area. The museum set up at the Nallathanni Estate of Tata Tea depicts the transition from the rudimentary tea roller to the modern fully-automated tea factory. One can also see a sundial, the &amp;#039;Pelton Wheel&amp;#039;, tea roller, and a rail engine wheel. A demonstration room for tea tasting is also an attraction where one would come across different varieties of tea.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0943289,\"Long\":77.0504451,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Tea_Museum_18697_1521638784.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1097,\"Title\":\"Mattupetty Dam\",\"Description\":\"Mattupetty Dam is among the most visited destinations in the tourist hotbed of Munnar. It is a storage Concrete Gravity dam built in the mountains of Kerala, India to conserve water for hydro electricity. It is a beautiful picnic spot that regularly attracts visitors. The view of the valley is breath-taking and one gets to simply relax and enjoy the beautiful weather. The lush green tea plantations and forests are ideal for trekking and host a large number of unique bird species.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Mattupetty_Dam_18697_1521698026.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":472,\"Title\":\"Echo Point\",\"Description\":\"Echo Point is a very beautiful place in Munnar, which got its name from natural echo phenomenon situated at a scenic lake bank. When one scream at here, he will be hearing his voice returning to him. Placed at an altitude about 600 ft, Echo Point is located 15 km away from Munnar, on the way to Top Station. It has a greenish look as it is covered with abundant green sceneries. It is an adventurous destination, which will be a perfect choice for those who love to have a nature walk or trekking.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0837092,\"Long\":77.0615374,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/21_1500898299.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":925,\"Title\":\"Kundala Dam Lake\",\"Description\":\"Kundala is located approximately 20 km from Munnar on the way to Top Station and it is at a height of 1700 meters above the sea level. People love to see the Cherry gardens here, that blossoms twice in a year and make the surroundings of the lake even more attractive. However, the famous Neela Kurunji flowers, which bloom once in twelve years and change the green valleys of Kundala into refreshing blue beauties, are hard to see, because of their rare availability.\\r\\n\\r\\nThe Kundala Lake gives way to an artificial dam &amp;#039;Kundala Dam,&amp;#039; which is another famous attraction of this region. It was constructed for Pallivasal Hydro Electric Project in 1946 and is considered to be Asia&amp;#039;s first Arch Dam, also known as Sethuparvathipuram Dam. One can see many a things in the surrounding of this dam, like the green valleys, tea gardens, waterfalls, eucalyptus and pine trees, etc. The boating is another major attraction at this glorious lake.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0889333,\"Long\":77.0595248,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Kundala_Dam_Lake_18697_1521699663.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1377,\"Title\":\"Pothamedu Viewpoint\",\"Description\":\"Pothamedu Viewpoint is visited by a large number of tourists every year, who get the opportunity to trek through the lush green forest of Munnar, which is only 3 km away from this spectacular spot. It is a popular spot among trekkers, hikers and nature lovers for its pleasing scenic environs. Adventure lovers can trek through the beautiful cardamom, tea and coffee plantations to reach this point. It is a perfect place for visitors who love photography.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":10.0169584,\"Long\":77.0909809,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/Pothamedu_Viewpoint_18697_1521694592.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4293,\"Title\":\"Blossom Garden\",\"Description\":\"Blossom Garden, a perfect get away from the city \\/ town with its panoramic view and the homely atmosphere, the perfect place for a quiet holiday. The chirp of birds, the misty mornings and the evenings where you can warm yourself around a bonfire is a home away from home environment.\",\"CurrencyType\":0,\"CityId\":18697,\"CityName\":\"Munnar\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/18697\\/sightseeing\\/36_1520672070.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1351,\"Title\":\"Periyar Lake\",\"Description\":\"At a distance of 54 km from Idukki, 143 km from Kochi, 211 km from Trivandrum, 111 km from Kottayam, 136 km from Madurai and 82 km from Munnar, Periyar Wildlife Sanctuary, one of the best wildlife sanctuaries in India, is located in Thekkady in Idukki district of Kerala. It is located at a distance of 4 km from Kumily on Kerala - Tamilnadu boarder. It is one of the most famous Tourist places in kerala and also a well know summer getaway in Kerala state. Thekkady is also known as one of the scenic Kerala Backwater trips in Periyar lake.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516803371.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1352,\"Title\":\"Periyar National Park And Wildlife Sanctuary\",\"Description\":\"The most sought after destination in Munnar is the Eravikulam National Park, the first of its kind in Kerala, where the endangered Nilgiri Thar is protected. Spread over 97 sq. km., this park holds the largest viable population of Tahr, several other species of rare animals, birds and butterflies.\\r\\nThe park offers a magnificent view of the tea plantations and also of the rolling hills caressed by blankets of mist. The park becomes a hot destination when the hill slopes get covered in a carpet of blue, resulting from the flowering of Neelakurinji.\\r\\nIt is a plant endemic to this part of the Western Ghats which blooms once in twelve years.\\r\\nHere you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, Wild boars. \\r\\nEravikulam National Park is a UNESCO World Heritage Site.\",\"CurrencyType\":0,\"CityId\":27156,\"CityName\":\"Thekkady\",\"Lat\":9.6031088,\"Long\":77.161458,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/27156\\/sightseeing\\/130_1516802250.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30196,\"Title\":\"Backwaters Alleppey\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":670,\"CityName\":\"Alleppey\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":4388,\"Title\":\"Kovalam Beach\",\"Description\":\"Kovalam Beach is a magnificent and an internationally renowned beach. It has been a favourite haunt of tourists with amassive rocky promontory on the beach that has created a beautiful bay of calm waters ideal for sea bathing. Sunbathing, swimming, herbal body toning massages, special cultural programmes and catamaran cruising are some of the best facilities offered here. The beach complex includes budget cottages, convention facilities, shopping zones, swimming pools, Ayurvedic health resorts, Yoga and Ayurvedic massage centres.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.3888922,\"Long\":76.9760433,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/Kovalam_Beach_14455_1521180275.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30279,\"Title\":\"Trivandrum City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":1606,\"Title\":\"Shri Padmanabhaswamy Temple\",\"Description\":\"Padmanabhaswamy Temple is located in Thiruvananthapuram, Kerala, India. The temple is built in an intricate fusion of the indigenous Kerala style and the Tamil style of architecture associated with the temples located in the neighbouring state of Tamil Nadu, featuring high walls, and a 16th-century Gopuram.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.4824205,\"Long\":76.942884,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/909\\/thumb\\/Shri Pandmanbhaswamy Temple_529.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30280,\"Title\":\"Trivandrum Museum\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":30281,\"Title\":\"Trivandrum Zoo\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null},{\"RefSSId\":2728,\"Title\":\"Veli Tourist Village\",\"Description\":\"Veli is a tourist village that is popular as a picnic destination in Thiruvananthapuram district. The place features a large garden on the southern banks of Veli Lagoon a floating bridge that connects this garden to the Veli Beach. It is an ideal destination for a family picnic as there are wide range of attractions such as play areas for children, boat rides in Veli Lake, horse riding option, and a floating restaurant can be found here. Apart from these, there is a a long walkway connecting Aakulam Lake that catches one&amp;rsquo;s attention, there are also some stone and grass sculptures by Kanayi Kunhiraman which add to the landscape of the garden a collection of birds such as pigeons and swans, and few small ponds with fish and tortoises in them.\",\"CurrencyType\":0,\"CityId\":14455,\"CityName\":\"Kovalam\",\"Lat\":8.5080206,\"Long\":76.8886702,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14455\\/sightseeing\\/45_1514624362.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10801,\"SupplierName\":\"Spiceland Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"289615\",\"Title\":\"Arrive Cochin to Munnar\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Cochin Airport and transfer to Munnar. &lt;strong&gt;Munnar&lt;\\/strong&gt; is 1800 mts above sea level and also the place of South India&amp;#39;s highest peak (Anamudi-2695 mts). On the way visit Valara, &lt;strong&gt;Cheeyappara waterfalls &amp;amp; Tea Plantations.&lt;\\/strong&gt; On arrival at Munnar transfer to Hotel. Check in at Hotel. Afternoon visit &lt;strong&gt;Rajamala (Eravikulam National Park - open as per the directions by the forest authorities )&lt;\\/strong&gt;, the best place to see Nilgiri Tahr (Hermitragus Hilarious)- the mountain goat of South India &amp;amp;&lt;strong&gt; Tea Museum&lt;\\/strong&gt;. Evening have a short visit at Munnar town. You can see the beautiful tea estates like a green paradise. Overnight stay at Munnar.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":141642,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517515,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1425,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":318,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":30195,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1740,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289616\",\"Title\":\"Munnar\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast proceed for sightseeing. &lt;strong&gt;Maduppatty dam, Echo Point, Kundalay Dam, Pothenmedu View Point, Blossom Park &lt;\\/strong&gt;etc are some of the highlights of the sightseeing. Shopping &amp;amp; overnight stay at Munnar&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":141642,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517515,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":472,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":925,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1377,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":4293,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289617\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":18697,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289618\",\"Title\":\" Munnar &ndash; Thekkady\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;Morning have breakfast at resort later check out resort and drive to Thekkady. &lt;strong&gt;Thekkady&lt;\\/strong&gt; is a world famous wildlife sanctuary and it is also called as&lt;strong&gt; Periyar.&lt;\\/strong&gt; On arrival check in Hotel Afternoon proceed for a game viewing cruise on the Periyar Lake. Here you will be able to see a large variety of wildlife, which include elephants, monkeys, deer, wild boar etc evening you can take a Elephant ride at Periyar wild life and rest of the day is at leisure. Overnight stay at Thekkady&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517451,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517452,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1351,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1352,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289619\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":27156,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289620\",\"Title\":\"Thekkady &ndash; Alleppey \\/ Kumarakom\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast check out from the hotel and transfer to &lt;strong&gt;Alleppey \\/ Kumarakom&lt;\\/strong&gt;. Check in at the resort. Later proceed to visit Alleppey backwaters. Take a cruise (Optional &amp;ndash; Own Cost) through the rich and splendid backwater. Just relax at the boat. It will be a unique and exclusive experience in your lifetime. You will be cruising along the village sides and paddy fields witnessing the core life of the Kerala villages. Overnight stay at Alleppey\\/Kumarakom.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517519,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30196,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289621\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":670,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289622\",\"Title\":\"Alleppey\\/Kumarakom &ndash; Kovalam\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast check out from the hotel and transfer to Kovalam. On arrival at Kovalam check in at Hotel. &lt;strong&gt;Kovalam&lt;\\/strong&gt; is an evergreen and pleasant climatic beach resort. Relax at the resort\\/Spend the time at beach side. Overnight stay at Kovalam.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14455,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517566,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517566,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":4388,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289623\",\"Title\":\"Kovalam &ndash; Trivandrum &ndash; Kovalam\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast proceed for &lt;strong&gt;Trivandrum&lt;\\/strong&gt; city tour. Visit Padmanaba swamy temple, Trivandrum museum, zoo and Veli tourist village etc. Evening back to Kovalam. Overnight stay at Kovalam.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14455,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":517566,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":517566,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30279,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1606,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":30280,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":30281,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2728,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"289624\",\"Title\":\"Kovalam - Trivandrum (Tour Ends)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Morning have breakfast at resort later check out Hotel and drive to Airport \\/ Railway Station for departure&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14455,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40221\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"9200.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8400,\"priceDoubleOcc\":\"9200.00\",\"priceSingleOcc\":9200,\"priceExtraBed\":\"6800.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4600,\"CEB\":6800,\"COSTDO\":9200,\"COSTSO\":null,\"ACEB\":6800,\"COSTTO\":6800},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8400,\"priceDoubleOcc\":\"9200.00\",\"priceSingleOcc\":9200,\"priceExtraBed\":\"6800.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4600,\"CEB\":6800,\"COSTDO\":9200,\"COSTSO\":null,\"ACEB\":6800,\"COSTTO\":6800},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8400,\"priceDoubleOcc\":\"9200.00\",\"priceSingleOcc\":9200,\"priceExtraBed\":\"6800.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9200,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4600,\"CEB\":6800,\"COSTDO\":9200,\"COSTSO\":null,\"ACEB\":6800,\"COSTTO\":6800},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8467,\"priceDoubleOcc\":\"9300.00\",\"priceSingleOcc\":9300,\"priceExtraBed\":\"6800.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4600,\"CEB\":6800,\"COSTDO\":9300,\"COSTSO\":null,\"ACEB\":6800,\"COSTTO\":6800},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9567,\"priceDoubleOcc\":\"10950.00\",\"priceSingleOcc\":10950,\"priceExtraBed\":\"6800.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4600,\"CEB\":6800,\"COSTDO\":10950,\"COSTSO\":null,\"ACEB\":6800,\"COSTTO\":6800},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":10900,\"priceDoubleOcc\":\"12950.00\",\"priceSingleOcc\":12950,\"priceExtraBed\":\"6800.00\",\"priceWithoutBed\":\"4600.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12950,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":4600,\"CEB\":6800,\"COSTDO\":12950,\"COSTSO\":null,\"ACEB\":6800,\"COSTTO\":6800}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40221\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7700.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6900,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":7700,\"priceExtraBed\":\"5300.00\",\"priceWithoutBed\":\"3100.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3100,\"CEB\":5300,\"COSTDO\":7700,\"COSTSO\":null,\"ACEB\":5300,\"COSTTO\":5300},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6900,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":7700,\"priceExtraBed\":\"5300.00\",\"priceWithoutBed\":\"3100.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3100,\"CEB\":5300,\"COSTDO\":7700,\"COSTSO\":null,\"ACEB\":5300,\"COSTTO\":5300},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6900,\"priceDoubleOcc\":\"7700.00\",\"priceSingleOcc\":7700,\"priceExtraBed\":\"5300.00\",\"priceWithoutBed\":\"3100.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7700,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3100,\"CEB\":5300,\"COSTDO\":7700,\"COSTSO\":null,\"ACEB\":5300,\"COSTTO\":5300},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":6967,\"priceDoubleOcc\":\"7800.00\",\"priceSingleOcc\":7800,\"priceExtraBed\":\"5300.00\",\"priceWithoutBed\":\"3100.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3100,\"CEB\":5300,\"COSTDO\":7800,\"COSTSO\":null,\"ACEB\":5300,\"COSTTO\":5300},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":8067,\"priceDoubleOcc\":\"9450.00\",\"priceSingleOcc\":9450,\"priceExtraBed\":\"5300.00\",\"priceWithoutBed\":\"3100.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3100,\"CEB\":5300,\"COSTDO\":9450,\"COSTSO\":null,\"ACEB\":5300,\"COSTTO\":5300},{\"From\":\"2022-08-20\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":9400,\"priceDoubleOcc\":\"11450.00\",\"priceSingleOcc\":11450,\"priceExtraBed\":\"5300.00\",\"priceWithoutBed\":\"3100.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11450,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3100,\"CEB\":5300,\"COSTDO\":11450,\"COSTSO\":null,\"ACEB\":5300,\"COSTTO\":5300}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"289615\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[289615],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289616\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[289616],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289617\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[289617],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289618\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[289618],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289619\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[289619],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289620\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[289620],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289621\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[289621],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289622\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[289622],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289623\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[289623],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"289624\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[289624],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Munnar,Thekkady,Alleppey,Kovalam','Munnar,Kerala,Indian Subcontinent,South India,India,Thekkady,Alleppey,Kovalam,Kochi',NULL,'18697,27156,670,14455',7700,12950,6,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'India','101','2022-09-01 17:55:27','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kerala-spiceland-6n-7d',NULL,NULL,NULL,0),(60,40671,1,12577,1,0,0,'Family,Heritage,Culture,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40671,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/golden_triangle_-_5n6d_1661861529.webp\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;The &lt;strong&gt;GOLDEN TRIANGLE TOUR&lt;\\/strong&gt; Itinerary comprises the three famous cities of India - &lt;strong&gt;DELHI, AGRA &amp;amp; JAIPUR&lt;\\/strong&gt; having grandeur, glory &amp;amp; history. &lt;strong&gt;Golden Triangle Tour&lt;\\/strong&gt; is a tour where you will Explore India In Style. When Ready to visit India? Get ready for the Golden Triangle Tour and Start Your Trip With Golden Triangle Tour and explore The Ultimate Golden Triangle Tour.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Jaipur\",\"DestinationPlacesSysId\":12995,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Golden Triangle - 5N\\/6D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10856\",\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Car On Disposal\",\"PackageType\":\"Family,Heritage,Culture,Leisure\",\"Validity\":{\"From\":\"2022-11-23\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":214675,\"Name\":\"Almondz Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.646355\",\"Long\":\"77.17296\",\"Address\":\"4\\/3 East Patel Nagar, Near Metro Pillar No 171, Delhi, Delhi, India, , , 110008\"},\"Images\":{\"Image\":[{\"ImagId\":4784819,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=ytl9DmwCsAOMI8k2tU0mDcdf9d7gLLWhwIFdEMJJfh6ZL5S46fkcupvfn6L+7NPoPxUcEtTuBoznIPbCL7vbcQ==\"}]},\"CityId\":7701,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":213955,\"Name\":\"Hotel Regent Grand\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"2\\/6, East Patel Nagar Near Pusa Road-Karol Bagh, Delhi, , \"},\"Images\":{\"Image\":[{\"ImagId\":4784025,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"\"}]},\"CityId\":7701,\"Brief\":\"Property Location A stay at Hotel Regent Grand places you in the heart of New Delhi, convenient to Karol Bagh Shopping Market and Birla Mandir Temple. This 4-star hotel is within close proximity of Laxminarayan Temple and Pusa Hill Forest.Rooms Treat yourself to a stay in one of the 52 individually decorated guestrooms, featuring fireplaces and LCD televisions. Cable programming and DVD players are provided for your entertainment, while complimentary wireless Internet access keeps you connected. Conveniences include phones, as well as laptop-compatible safes and desks.Rec, Spa, Premium Amenities Take in the views from a rooftop terrace and make use of amenities such as complimentary wireless Internet access and concierge services. Additional amenities include wedding services, a fireplace in the lobby, and tour\\/ticket assistance.Dining Grab a bite to eat at the hotel&#039;s restaurant, which features a bar, or stay in and take advantage of 24-hour room service. Mingle with other guests at a complimentary reception, held daily. Quench your thirst with your favorite drink at a bar\\/lounge. A complimentary buffet breakfast is served daily.Business, Other Amenities Featured amenities include a business center, a computer station, and express check-in. Event facilities at this hotel consist of a conference center and a meeting room. A roundtrip airport shuttle is provided for a surcharge available 24 hours, and free valet parking is available onsite.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &acirc;&euro;&rdquo; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &acirc;&euro;&tilde;ceremonial axis&acirc;&euro;&trade; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&acirc;&euro;&ldquo;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah&Auml;\\u0081n-Num&Auml;\\u0081 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3275,\"Title\":\"Itmad-ud-Daula (Baby Taj)\",\"Description\":\"The tomb of Itmad-ud-daula is a Mughal museum in the city of Agra Uttar Pradesh.Often described as &amp;quot;jewel boxes&amp;quot;, sometimes called &amp;quot;Baby Taz&amp;quot;, the tomb of Itmad-ud-Daulah is often considered to be the Taj Mahal draft, for the grave of stone Famous that is made from wine glasses with perfect geometric structure .When you enter the monument, you will find a red stone grave which welcomes you to this child&amp;#039;s crown. After Akbar&amp;#039;s death in 1605, his son Jahangir became Mughal emperor, who made Ghiyas Beg his Chief Minister or a Wazir. Ghiyas Beg was honored with the title of Itidad-ud-Daulah or the State Pillar. It is one of the architectures that reminds of the styles of the Mughal period.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1928873,\"Long\":78.0309808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Itmad-ud-Daula_(Baby_Taj)_266_1518007393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}},{\"CityId\":266,\"Title\":\"Agra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":21583,\"Name\":\"Crystal Inn\",\"Star\":\"3.00\",\"Rating\":\"3.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.161698\",\"Long\":\"78.058438\",\"Address\":\"Fatehbad Road Behind TDI Mall\"},\"Images\":{\"Image\":[{\"ImagId\":4794611,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_1_t.jpg\"},{\"ImagId\":4794612,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_30_t.jpg\"},{\"ImagId\":4794613,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_33_t.jpg\"},{\"ImagId\":4794614,\"Type\":\"FullImage\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_3_t.jpg\"},{\"ImagId\":4794615,\"Type\":\"FullImage\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_6_t.jpg\"},{\"ImagId\":4794616,\"Type\":\"FullImage\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_17_t.jpg\"},{\"ImagId\":4794617,\"Type\":\"FullImage\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_18_t.jpg\"},{\"ImagId\":4794618,\"Type\":\"FullImage\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_19_t.jpg\"},{\"ImagId\":4794619,\"Type\":\"FullImage\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_20_t.jpg\"},{\"ImagId\":4794620,\"Type\":\"FullImage\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_23_t.jpg\"},{\"ImagId\":4794621,\"Type\":\"FullImage\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_24_t.jpg\"},{\"ImagId\":4794622,\"Type\":\"FullImage\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_27_t.jpg\"},{\"ImagId\":4794623,\"Type\":\"FullImage\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_28_t.jpg\"},{\"ImagId\":4794624,\"Type\":\"FullImage\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_29_t.jpg\"},{\"ImagId\":4794625,\"Type\":\"FullImage\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_36_t.jpg\"},{\"ImagId\":4794626,\"Type\":\"FullImage\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_31_t.jpg\"},{\"ImagId\":4794627,\"Type\":\"FullImage\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_37_t.jpg\"},{\"ImagId\":4794628,\"Type\":\"FullImage\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_38_t.jpg\"},{\"ImagId\":4794629,\"Type\":\"FullImage\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_39_t.jpg\"},{\"ImagId\":4794630,\"Type\":\"FullImage\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_40_t.jpg\"},{\"ImagId\":4794631,\"Type\":\"FullImage\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_41_t.jpg\"},{\"ImagId\":4794632,\"Type\":\"FullImage\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_21_t.jpg\"},{\"ImagId\":4794633,\"Type\":\"FullImage\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_26_t.jpg\"},{\"ImagId\":4794634,\"Type\":\"FullImage\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_32_t.jpg\"},{\"ImagId\":4794635,\"Type\":\"FullImage\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_22_t.jpg\"},{\"ImagId\":4794636,\"Type\":\"FullImage\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_25_t.jpg\"},{\"ImagId\":4794637,\"Type\":\"FullImage\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_34_t.jpg\"},{\"ImagId\":4794638,\"Type\":\"FullImage\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_35_t.jpg\"}]},\"CityId\":266,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Hotel Crystal Inn in Agra, you&#039;ll be convenient to Mosque and the Jawab and Taj Mahal.  This luxury hotel is within close proximity of Agra Fort and Sadar Bazar.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 32 air-conditioned rooms featuring fireplaces and LCD televisions. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment. Conveniences include phones, as well as safes and desks.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take time to pamper yourself with a visit to the full-service spa. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at one of the hotel&#039;s dining establishments, which include 2 restaurants and a coffee shop\\/caf&iuml;&iquest;&frac12;. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include complimentary high-speed (wired) Internet access, a business center, and limo\\/town car service. Event facilities at this hotel consist of a conference center and a meeting room. Guests may use a roundtrip airport shuttle for a surcharge, and free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/15011_download (1).jpg\",\"AccoAminitiesMask\":\"1111000000001100001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &acirc;&euro;&rdquo; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &acirc;&euro;&tilde;ceremonial axis&acirc;&euro;&trade; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&acirc;&euro;&ldquo;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah&Auml;\\u0081n-Num&Auml;\\u0081 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3275,\"Title\":\"Itmad-ud-Daula (Baby Taj)\",\"Description\":\"The tomb of Itmad-ud-daula is a Mughal museum in the city of Agra Uttar Pradesh.Often described as &amp;quot;jewel boxes&amp;quot;, sometimes called &amp;quot;Baby Taz&amp;quot;, the tomb of Itmad-ud-Daulah is often considered to be the Taj Mahal draft, for the grave of stone Famous that is made from wine glasses with perfect geometric structure .When you enter the monument, you will find a red stone grave which welcomes you to this child&amp;#039;s crown. After Akbar&amp;#039;s death in 1605, his son Jahangir became Mughal emperor, who made Ghiyas Beg his Chief Minister or a Wazir. Ghiyas Beg was honored with the title of Itidad-ud-Daulah or the State Pillar. It is one of the architectures that reminds of the styles of the Mughal period.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1928873,\"Long\":78.0309808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Itmad-ud-Daula_(Baby_Taj)_266_1518007393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}},{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518277,\"Name\":\"HOTEL RUDRA VILAS\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.8337249\",\"Long\":\"75.7676625\",\"Address\":\"Plot No. 1, Shiv Vatika, Rajawat Farms, New Sanganer Rd, Kalyanpura, Mansarovar, Jaipur, Rajasthan 302020, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":518278,\"Name\":\"Hotel Jaipur Central\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.9212881\",\"Long\":\"75.7945855\",\"Address\":\"6 D, Station Rd, Kanti Nagar, Bani Park, Jaipur, Rajasthan 302001, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":518279,\"Name\":\"Welcom Heritage Traditional Haveli\",\"Star\":\".00\",\"Rating\":\"4.50\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.9268128\",\"Long\":\"75.790359\",\"Address\":\"AC-4-C, Gayatri Marg, Sawai Jai Singh Hwy, Bani Park, Jaipur, Rajasthan 302016, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":300,\"Title\":\"Chandni Chowk\",\"Description\":\"Chandni Chowk is the perfect place to shop in. This densely populated market has been around for more than three centuries and was once visited by merchants from Turkey, China and even Holland. You may buy curios and souvenirs from here. Dariba Kalan is known for its pearl, gold and silver jewellery and attar (natural perfumes). Gulab Singh Johri Mal, established in 1819, are well-known manufacturers and exporters of attar. A visit to Khari Baoli is a must for the spice-lover &acirc;&euro;&rdquo; don&#039;t forget spices are what connected India to the West. Kinari Bazaar is the best place to look for zari and zardozi trimmings and tinsel. The cloth bazaar of Katra Neel offers all kinds of fabrics such as silks, satin, crepe, cotton and muslin. Bhagirath Palace is Asia&#039;s largest market for electrical goods and also offers medical equipment and allopathic medicines. \",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6505942,\"Long\":77.2303284,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998469.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &acirc;&euro;&tilde;ceremonial axis&acirc;&euro;&trade; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&acirc;&euro;&ldquo;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah&Auml;\\u0081n-Num&Auml;\\u0081 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1465,\"Title\":\"Red Fort\",\"Description\":\"The Red Fort is a historical fort in the city of Delhi in India. It was the main residence of the emperors of the Mughal dynasty for nearly 200 years, until 1857. It is located in the center of Delhi and houses a number of museums. In addition to accommodating the emperors and their households, it was the ceremonial and political centre of the Mughal state and the setting for events critically impacting the region.\\r\\nConstructed in 1639 by  the fifth Mughal Emperor Shah Jahan as the palace of his fortified capital Shahjahanabad, the Red Fort is named for its massive enclosing walls of red sandstone and is adjacent to the older Salimgarh Fort, built by Islam Shah Suri in 1546. The imperial apartments consist of a row of pavilions, connected by a water channel known as the Stream of Paradise (Nahr-i-Bihisht).\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.640859,\"Long\":77.238383,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501140388.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3275,\"Title\":\"Itmad-ud-Daula (Baby Taj)\",\"Description\":\"The tomb of Itmad-ud-daula is a Mughal museum in the city of Agra Uttar Pradesh.Often described as &amp;quot;jewel boxes&amp;quot;, sometimes called &amp;quot;Baby Taz&amp;quot;, the tomb of Itmad-ud-Daulah is often considered to be the Taj Mahal draft, for the grave of stone Famous that is made from wine glasses with perfect geometric structure .When you enter the monument, you will find a red stone grave which welcomes you to this child&amp;#039;s crown. After Akbar&amp;#039;s death in 1605, his son Jahangir became Mughal emperor, who made Ghiyas Beg his Chief Minister or a Wazir. Ghiyas Beg was honored with the title of Itidad-ud-Daulah or the State Pillar. It is one of the architectures that reminds of the styles of the Mughal period.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1928873,\"Long\":78.0309808,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Itmad-ud-Daula_(Baby_Taj)_266_1518007393.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1716,\"Title\":\"Taj Mahal\",\"Description\":\"The Taj Mahal, meaning &amp;ldquo;Crown of the Palace&amp;rdquo; is one of the marvels of architecture, Seven Wonders of the World and recognized as UNESCO world Heritage site. It is an ivory-white marble mausoleum on the south bank of the Yamuna river in Agra, was commissioned in 1632 by the Mughal emperor Shah Jahan for his beloved wife Mumtaz Mahal. It took 22 years to complete and by more than 20000 workers. The main mausoleum has two buildings constructed with red sandstone, where one is a guesthouse and other is a mosque. There are 4 pillars of white marble to protect the main mausoleum. It has Persian and Mughal style of architecture. It has three entrances, East, West and South gates. It is the most visited tourist attraction of India.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Taj_Mahal_266_1518500964.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":658,\"Title\":\"Hawa Mahal\",\"Description\":\"The Hawa Mahal Jaipur is the beautiful many windowed extension of the City Palace that is said to resemble the honeycomb structure of a bee&amp;rsquo;s nest. Since the construction of the Hawa Mahal Jaipur in 1799 the building has become the iconic structure of the city and the pink sandstone palace is considered as the finest example of Rajput architecture.The Hawa Mahal Jaipur translated into English means the Palace of the Winds and this name is in reference to the clever cooling system which propagates a gentle breezes through the inner rooms even during the intense Rajasthan summers. This ingenious design has been completely lost after a recent renovation in which windows were installed behind each of the lattice openings, so today the palace of winds has no wind.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9239363,\"Long\":75.8267438,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Hawa_Mahal_12995_1519730800.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"293125\",\"Title\":\"ARRIVE DELHI \",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Today arrive Delhi and transfer to your Hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;India&amp;rsquo;s capital and a major gateway to the country, contemporary Delhi is a bustling metropolis, which successfully combines in its folds - the ancient with the modern. Amidst the fast spiralling skyscrapers the remnants of a bygone time in the form of its many monuments stand as silent reminders to the region&amp;rsquo;s ancient legacy. The first impressions for any visitor traveling in from the airport are of a spacious, garden city, tree-lined with a number of beautiful parks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight stay at your Hotel.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":214675,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":213955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293126\",\"Title\":\"IN DELHI \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast proceed for tour ofOld and New Delhi. Old Delhi, the Mughal Capital of Shahjahanabad. Visit the&lt;strong&gt; Jama Masjid&lt;\\/strong&gt; which is the principal mosque of Old Delhi in India. Commissioned by the Mughal Emperor Shah Jahan, builder of the Taj Mahal, and completed in the year 1656 AD, it is the largest and best-known mosque in India. It lies at the origin of a very busy central street of Old Delhi, the Chawri Bazar Road. The mosque of Friday was built from 1644 to 1658 during the reign of Shahjahan. The mosque is 80 m long and 27 m wide.&amp;nbsp; The courtyard can accommodate 25,000 worshippers and occupies 408 square feet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later we proceed to visit &lt;strong&gt;Raj Ghat &lt;\\/strong&gt;where Mahatma Gandhi &amp;ndash; The Father of Nation, was cremated and drive past the &lt;strong&gt;Red Fort [ from outside] &lt;\\/strong&gt;- the palace for Shahjahan&amp;rsquo;s new capital, Shahjahanabad, the seventh Muslim city in the Delhi site. Wander in the busy streets of the mile long &lt;strong&gt;Chandni Chowk,&lt;\\/strong&gt; popularly called &amp;ldquo;The Silver Street&amp;rdquo;. Enjoy the &amp;lsquo;Cycle Rickshaw&amp;rsquo; ride in Old Delhi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon proceed for tour of New Delhi, which reflects the legacy the British left behind. The division between New and Old Delhi is the division between the capitals of the British and the Mughals respectively. The division in the walled city and New Delhi also marks the division in the life-styles. The walled city is all tradition where one will be able to glean a past life-style in all its facets, colours and spells. New Delhi in contrast, is a city trying to live up to the best of 21st century standards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The tour to Imperial Delhi will start by visit to the &lt;strong&gt;Qutab Minar&lt;\\/strong&gt;, the tallest stone tower in India.&amp;nbsp; The Qutab Minar was started in 1199 AD by Qutab-ud-Din Aibak and completed by the sultan&amp;#39;s successor and son-in-law, Iltutmish. The building is 72.5 m high and has 379 steps from the bottom to the top. The Minar is tapering with the diameter of the base is 14.3 m while at the top floor it is 2.7 m.&amp;nbsp; The Qutab Minar is still the highest stone tower as well as one of the finest Islamic structures ever raised in India.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit &lt;strong&gt;Humayun&amp;rsquo;s Tomb&lt;\\/strong&gt;, built by the widow of the second Mughal Emperor, Humayun, it is an outstanding monument in the Indo-Persian style, a precursor of the Taj Mahal.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Drive past the imposing &lt;strong&gt;India Gate&lt;\\/strong&gt;, the Parliament building and the Rashtrapati Bhawan, the President&amp;rsquo;s residence.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight stay at your Hotel.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":214675,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":213955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":300,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2933,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":701,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":742,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1405,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1417,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1465,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293127\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293128\",\"Title\":\"DELHI &ndash; AGRA (200 KMS) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast drive to &lt;strong&gt;Agra&lt;\\/strong&gt;; Arrive Agra and transfer to your hotel. Agra came into limelight during the rule of&amp;nbsp;Afghan King Sikandar Lodhi - who had made it the&amp;nbsp;capital of his empire. Later in 1526 A.D., the Mughal&amp;nbsp;Emperor Babar took&amp;nbsp;upon himself the task for rendering&amp;nbsp;Agra, a unique&amp;nbsp;character and beauty of its own. Agra - in terms of ambiance is still associated with its Mughal period. The Mughals besides being great rulers were also great builders and they preserved their best architectural wonders for Agra &amp;amp; its neighbourhood. It has many wonderful monuments and the Taj Mahal, the greatest of them all, is a masterpiece of Mughal architecture at its best.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit the &lt;strong&gt;Taj Mahal (closed on Friday)&amp;nbsp;&lt;\\/strong&gt;The Taj Mahal is everything that has been said about it and more. Built by the Mughal Emperor Shah Jahan as an expression of his love for his wife Mumtaz Mahal, in mid-17th century, the Taj Mahal is truly one of the wonders of the world. Though the Taj appears to be amazingly perfect from almost any angle, it is the close-up marble inlay work, which is really astounding.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit &lt;strong&gt;The Agra Fort&lt;\\/strong&gt;, an outstanding example of Mughal architecture. Agra Fort - the seat and the stronghold of the Mughal Empire under successive generations. This was the seat of Mughal rule. Shahjahan added the impressive quarters and the mosque while Aurangzeb added the outer ramparts. Visit its Hall of Public Audience and its Royal Pavilions. Besides the historical monuments, one can also explore Agra&amp;rsquo;s rich heritage of handicrafts in its markets.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Also visit&lt;strong&gt; Itmad ud Daula&lt;\\/strong&gt; -This tomb was built in 1622 for Ghiyas Beg, father of Empress Noor-Jahan, the wife of Emperor Jahangir. It is beautifully conceived in white marble, mosaic and lattice and set a precedent as the first Mughal building to be faced with white marble inlaid with contrasting stones. Sometimes also called &amp;lsquo;Baby Taj&amp;rsquo;, it is small, intimate and has a gentle serenity.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight stay at your Hotel.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21583,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":22,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":3275,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1716,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293129\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293130\",\"Title\":\"AGRA &ndash; JAIPUR (250 KMS) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast proceed drive to &lt;strong&gt;Jaipur visiting Fatehpur Sikri&lt;\\/strong&gt;&amp;nbsp; enroute. The deserted red sandstone city was built by the Great Mughal Emperor, Akbar, as his capital and palace in the late 16th century. &amp;nbsp;It was abandoned soon after it was built when the local wells went dry and it remains today in much the same condition that it was over 300 years ago. &amp;nbsp;It is complete with palaces and mosques and used to be a town larger than London when it was originally constructed. Now it is an extraordinary place to wander around with its buildings in near perfect condition.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later drive to&lt;strong&gt; Jaipur&lt;\\/strong&gt;; arrive Jaipur and transfer to hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The capital of Rajasthan Jaipur - popularly known as the &lt;strong&gt;&amp;ldquo;Pink City&amp;rdquo;&lt;\\/strong&gt; as the Pink sandstone was used to construct the buildings in the old walled city. Jaipur owes it&amp;rsquo;s name, it&amp;rdquo;s foundation and it&amp;rsquo;s planning to the Great-Warrior-Astronomer Maharaja Jai Singh II (1699&amp;ndash;1744 AD). Jaipur (City of Victory) was founded by Maharaja Sawai Jai Singh II in 1727. It is the only city in the world symbolising the nine divisions of the Universe through nine rectangular sectors sub-dividing it. The architect who formalised the city&amp;rsquo;s plans on the Shilpa Shastra, the epic Hindu treatise on architecture, mixed it with the sublimity of the Mughal and Jain influences of those times. The city was painted pink in 1853 in honour of the visit by Prince Albert. Except for the busy traffic of bicycles, cars, and buses, little seems to have changed.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight stay at your Hotel.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518277,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293131\",\"Title\":\"IN JAIPUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast proceed for full day city tour of Jaipur &amp;ndash; visiting &lt;strong&gt;Amer Fort&lt;\\/strong&gt; located at a distance of 11 kilometres from Jaipur and was the old fort of the Kachhwaha clan of Amber. It used to be the capital, till it was moved to Jaipur. The fort is built with white marble and red sandstone and looks even more attractive because of the Maota Lake in the foreground. The fort in itself is a beautiful sight to behold but as one looks on the fort with its clear reflection on the lake in the front; one cannot help but wonder if it is a dream or a beautiful illusion. An elephant [Subject to availability\\/alternatively by jeep] will spare you the trouble of climbing up to the fortress. Once on top, stroll through the sprawling complex of courtyards and halls with a well informed and well spoken guide who would regale you with tales of yore.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit the City of Jaipur. Among the highlights to be seen while touring Jaipur include the &lt;strong&gt;City Palace&lt;\\/strong&gt;, which is an overwhelming complex of exquisite palaces, gardens and courtyards, decorative art and carved doorways. The palace museum houses collections of rare manuscripts, armours, costumes, carpets and miniature paintings. Walk to the adjacent&lt;strong&gt; Jantar Mantar or Astronomical Observatory&lt;\\/strong&gt; made by the Maharaja of Jaipur, built in 1726 and is one of the five such astronomical wonders built by Sawai Jai Singh and makes accurate predictions even to this day. Jaipur is a shopper&amp;rsquo;s paradise. Most of the bazaars are in an old city with a wide range of things to buy, from jewellery (precious and semi-precious stones and handcrafted silver) to textiles to handicrafts and antiques. No doubt, for an avid shopper &amp;ldquo;Jaipur&amp;rdquo; is the choicest of the city to shop and collect memorabilia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight stay at your Hotel.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518277,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518279,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30844,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":658,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":750,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293132\",\"Title\":\"DEPART JAIPUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Today in time transfer to Jaipur Airport \\/ Railway Station to board your flight \\/ train for onward journey to your next destination.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;******TOUR ENDS******&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"40671\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"22500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":null,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":null,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":null,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":null,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":null,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":21167,\"priceDoubleOcc\":\"20500.00\",\"priceSingleOcc\":20500,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":20500,\"COSTSO\":null,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":null},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":45000,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":43000,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":22500},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":45000,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":43000,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":22500},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":45000,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":43000,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":22500},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":45000,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":43000,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":22500},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":45000,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":22500,\"COSTSO\":43000,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":22500},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":21167,\"priceDoubleOcc\":\"20500.00\",\"priceSingleOcc\":43000,\"priceExtraBed\":\"22500.00\",\"priceWithoutBed\":\"22500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":22500,\"CEB\":22500,\"COSTDO\":20500,\"COSTSO\":41000,\"ACEB\":22500,\"COSTTO\":22500,\"CostQuad\":22500}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"40671\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":null,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":null,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":null,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":null,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":21000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":null,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":null},{\"From\":\"2022-10-01\",\"To\":\"2022-10-01\",\"Currency\":1,\"priceTripleOcc\":19667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":19000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":19000,\"COSTSO\":null,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":null},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":41500,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":21000},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":41500,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":21000},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":41500,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":21000},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":41500,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":21000},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":21000,\"priceDoubleOcc\":\"21000.00\",\"priceSingleOcc\":42000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":21000,\"COSTSO\":41500,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":21000},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":19667,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":40000,\"priceExtraBed\":\"21000.00\",\"priceWithoutBed\":\"21000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":21000,\"CEB\":21000,\"COSTDO\":19000,\"COSTSO\":39500,\"ACEB\":21000,\"COSTTO\":21000,\"CostQuad\":21000}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"293125\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[293125],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293126\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[293126],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293127\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[293127],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293128\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[293128],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293129\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[293129],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293130\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[293130],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293131\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[293131],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293132\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[293132],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Delhi,Agra,Jaipur','Delhi,Indian Subcontinent,North India,India,Agra,Uttar Pradesh,Jaipur,Rajasthan',NULL,'7701,266,12995',19000,22500,5,NULL,NULL,NULL,2,'',0,'2022-11-23 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'India','101','2022-11-23 13:01:55','2022-11-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'golden-triangle-5n-6d',NULL,NULL,NULL,0),(61,40673,1,12577,1,0,0,'Wildlife',NULL,1,1,0,'{\"package\":{\"TPId\":40673,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/kanha_wildlife_stay_-_2n3d_1662034996.jpg\",\"BookingValidUntill\":\"2023-06-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;With a strong focus on conservation, sustainability and local community &lt;strong&gt;Kanha Jungle Camp&lt;\\/strong&gt; sits in an enviable position near to the Mukki Gate of Kanha National Park. It is tucked into 40 acres of reforested lands, adjoining the buffer forest of Kanha National Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our highly experienced naturalists and guides will pack you off with a picnic breakfast for morning safaris and prepare high tea after night time game drives in search of nocturnal animals. We also provide telescopes for star gazing up at phenomenally clear skies and whisk you off on nature walking, bird watching and cycling trails.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Kanha\",\"DestinationPlacesSysId\":13508,\"SourcePlaces\":\"Kanha\",\"SourcePlaceSysId\":13508,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Kanha Wildlife Stay - 2N\\/3D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10857\",\"SupplierName\":\"Jungle Camps India\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"Hotel,Only Breakfast\",\"PackageType\":\"Wildlife\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2023-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13508,\"Title\":\"Kanha\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":109540,\"Name\":\"Kanha Jungle Lodge\",\"Star\":\".00\",\"Rating\":\"5.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"22.2982742\",\"Long\":\"80.5882803\",\"Address\":\"Kanha National Park Madhya Pradesh\"},\"Images\":{\"Image\":[{\"ImagId\":2395257,\"Type\":\"Thumbnail\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_a_001.jpg\"},{\"ImagId\":2395258,\"Type\":\"Thumbnail\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_w_002.jpg\"},{\"ImagId\":2395259,\"Type\":\"Thumbnail\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_w_003.jpg\"},{\"ImagId\":2395260,\"Type\":\"Thumbnail\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_r_004.jpg\"},{\"ImagId\":2395261,\"Type\":\"Thumbnail\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_r_005.jpg\"},{\"ImagId\":2395262,\"Type\":\"Thumbnail\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_r_006.jpg\"},{\"ImagId\":2395263,\"Type\":\"Thumbnail\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_a_007.jpg\"},{\"ImagId\":2395264,\"Type\":\"Thumbnail\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/www.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_a_008.jpg\"}]},\"CityId\":13508,\"Brief\":\"The resort is located in Mukki, District Baihar, near to the Kanha National Park. The nearest airport from resort is in Jabalpur, which is 215 km away, while the Jabalpur Railway Station is 196 km away from the hotel.\\n\\nThe resort provides a sophisticated, environmentally friendly experience in the untamed beauty of Kanha and Bandhavgarh National Parks. The resort has been built with minimal interference in the natural environment of the jungle and is run according to eco-friendly principles. Guests are welcomed in the lobby, which offers 24-hour reception, a hotel safe and currency exchange facilities. The resort offers 18 spacious rooms and two new independent deluxe cottages with private patios, overlooking a lush green forest. There is also a newspaper stand and guests can enjoy a drink at the caf&eacute; and dine in the restaurant. Business travellers will enjoy the convenience of conference facilities. Additional features of the resort include room and laundry services as well as a car park for those arriving by car. The resort&#039;s courtyard is an inviting place to play games.\\n\\nAll rooms are en suite with shower, bath and hot and cold running water. All rooms are equipped with single, twin or double beds, reading lights, a writing table and lounge chairs and a large luggage rack. The rooms are comfortable and provide modern amenities including a direct dial telephone, satellite\\/cable TV, safe, minibar as well as tea and coffee making facilities. Air conditioning, individually regulated heating and a balcony or terrace are standard features of all accommodation.\",\"MainImg\":\"https:\\/\\/cdn.hotelbeds.com\\/giata\\/14\\/142396\\/142396a_hb_a_001.jpg\",\"AccoAminitiesMask\":\"100000001010100000\",\"AccoAminities\":[{\"AminityId\":8,\"Title\":\"Bar\"},{\"AminityId\":10,\"Title\":\"Cafe\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":10857,\"SupplierName\":\"Jungle Camps India\",\"priceaditionals\":null,\"RoomTypeName\":\"Elevated Luxury Cottages\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"293138\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Package Inclusions :-&lt;br \\/&gt;\\r\\n* 02 Nights Accommodation in above Camps.&lt;br \\/&gt;\\r\\n* Breakfast, Lunch, Dinner and Tea, Coffee service available.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":109540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Elevated Luxury Cottages\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293139\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":109540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Elevated Luxury Cottages\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293140\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13508,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":109540,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Elevated Luxury Cottages\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40673\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40673\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"293138\":[{\"Sequence\":[0],\"TPInvnSysId\":[293138],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"293139\":[{\"Sequence\":[0],\"TPInvnSysId\":[293139],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"293140\":[{\"Sequence\":[0],\"TPInvnSysId\":[293140],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Kanha','Kanha,Madhya Pradesh,Indian Subcontinent,Central India,India',NULL,'13508',13500,15000,2,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2023-06-30 00:00:00','2023-06-30 00:00:00',3,'India','101','2022-09-01 17:52:34','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kanha-wildlife-stay-2n-3d',NULL,NULL,NULL,0),(62,40676,1,12577,1,0,0,'Wildlife',NULL,1,1,0,'{\"package\":{\"TPId\":40676,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/pench_wildlife_stay_-_2n3d_1662034831.jpg\",\"BookingValidUntill\":\"2023-06-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Pench Jungle Camp&lt;\\/strong&gt; is set in fifty acres of lush foliage, sprawling lawns and untouched landscaping only 1 km from the Turia Gate of Pench National Park, Madhya Pradesh.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nRecently re-built, &lt;strong&gt;Pench Jungle Camp&lt;\\/strong&gt; has upgraded its level of accommodation to that of complete comfort and luxury whilst still maintaining its focus on the guiding and hosting of guests to ensure the ultimate guest experience. Our team of naturalists possesses a wealth of knowledge, expertise and first-hand experience (along with bucket loads of passion for what they do!) Make yourself at home at relaxed and comfortable Pench Jungle Camp !&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Pench\",\"DestinationPlacesSysId\":21077,\"SourcePlaces\":\"Pench\",\"SourcePlaceSysId\":21077,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Pench Wildlife Stay - 2N\\/3D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10857\",\"SupplierName\":\"Jungle Camps India\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"All Meals\",\"PackageType\":\"Wildlife\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2023-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":21077,\"Title\":\"Pench\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":426212,\"Name\":\"Pench Jungle Camp\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"21.729496\",\"Long\":\"79.35019\",\"Address\":\"Village - Avarghini, , Avarghani, PENCH, MADHYA PRADESH, India, Pin-480881, 480881\"},\"Images\":[],\"CityId\":21077,\"Brief\":\"Offering internet connectivity, Pench Jungle Camp offers comfortable accommodation in Pench. This property is located at a distance of 120 km from the Dr. Babasaheb Ambedkar International Airport.  The hotel offers deluxe tents and rooms with all the basic amenities. Some of the conveniences provided include air conditioner, telephone and television. The 19 room hotel also has mini-bar, tea\\/coffee maker and electronic safe in every room.  Facilities available in the hotel include forest spa and Ayurvedic massages, recreation room, conference facility, souvenir shop, library, laundry and doctor-on-call service and multi-cuisine restaurant. Nature walk, bird watching, night safari, cycling, horse riding, hot air ballooning, telescope for star gazing, jungle safari in jeeps are also provided.  This hotel in Pench features a swimming pool and can be reached from the Nagpur Railway Station (92 km). Attractions include Pench National Park which harbors various rare species, Ramtek (50 km) and Pench Tiger Reserve (50 km).    null\",\"MainImg\":\"http:\\/\\/cdn.travelpartnerweb.com\\/DesiyaImages\\/Image\\/6\\/nxd\\/maw\\/wym\\/ebs\\/HO_TN.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10857,\"SupplierName\":\"Jungle Camps India\",\"priceaditionals\":null,\"RoomTypeName\":\"Luxury Safari Tents\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"293151\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions :-&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n* 02 Nights Accommodation in above Camps.&lt;br \\/&gt;\\r\\n* Breakfast, Lunch, Dinner and Tea, Coffee service available.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21077,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":426212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Luxury Safari Tents\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293152\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21077,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":426212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Luxury Safari Tents\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293153\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21077,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":426212,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Luxury Safari Tents\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40676\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15000,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":30000,\"priceExtraBed\":\"15000.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":15000,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":15000,\"COSTTO\":15000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40676\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"13500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":13500,\"priceDoubleOcc\":\"13500.00\",\"priceSingleOcc\":13500,\"priceExtraBed\":\"13500.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":13500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":13500,\"COSTDO\":13500,\"COSTSO\":null,\"ACEB\":13500,\"COSTTO\":13500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"293151\":[{\"Sequence\":[0],\"TPInvnSysId\":[293151],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"293152\":[{\"Sequence\":[0],\"TPInvnSysId\":[293152],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"293153\":[{\"Sequence\":[0],\"TPInvnSysId\":[293153],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Pench','Pench,Indian Subcontinent,India',NULL,'21077',13500,15000,2,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2023-06-30 00:00:00','2023-06-30 00:00:00',3,'India','101','2022-09-01 17:49:50','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'pench-wildlife-stay-2n-3d',NULL,NULL,NULL,0),(63,40681,1,12577,1,0,0,'Wildlife',NULL,1,1,0,'{\"package\":{\"TPId\":40681,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/tadoba_wildlife_stay_-_2n3d_1662034662.jpg\",\"BookingValidUntill\":\"2023-06-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;With a strong focus on conservation, sustainability and local community &lt;strong&gt;Tadoba Jungle Camp&lt;\\/strong&gt; sits in an enviable position near to the Moharli Gate of Tadoba National Park. It is tucked into 10 acres of reforested lands, with a stunning view of Irai Lake.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our highly experienced naturalists and guides will pack you off with a picnic breakfast for morning safaris and prepare high tea after night time game drives in search of nocturnal animals. We also provide telescopes for star gazing up at phenomenally clear skies and whisk you off on nature walking, bird watching and cycling trails.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Tadoba\",\"DestinationPlacesSysId\":36022,\"SourcePlaces\":\"Tadoba\",\"SourcePlaceSysId\":36022,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Tadoba Wildlife Stay - 2N\\/3D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10857\",\"SupplierName\":\"Jungle Camps India\"},\"PackageSpec\":{\"Specification\":\"Only Hotel\",\"SpecificationId\":2},\"Inclusions\":\"All Meals\",\"PackageType\":\"Wildlife\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2023-06-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":36022,\"Title\":\"Tadoba\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518289,\"Name\":\"Tadoba Jungle Camp\",\"Star\":\".00\",\"Rating\":\"4.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"20.20191449999999\",\"Long\":\"79.323791\",\"Address\":\"Moharli Gate, Tadoba Andhari Tiger Reserve, Bhamdeli, Maharashtra 442404, India\"},\"Images\":[],\"CityId\":36022,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10857,\"SupplierName\":\"Jungle Camps India\",\"priceaditionals\":null,\"RoomTypeName\":\"Elevated Luxury Cottages\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":[]}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"293180\",\"Title\":\"0\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;&lt;strong&gt;Package Inclusions :-&lt;\\/strong&gt;&lt;br \\/&gt;\\r\\n* 02 Nights Accommodation in above Camps.&lt;br \\/&gt;\\r\\n* Breakfast, Lunch, Dinner and Tea, Coffee service available.&lt;br \\/&gt;\\r\\n&lt;!--\\r\\n--&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518289,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Elevated Luxury Cottages\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293181\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518289,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Elevated Luxury Cottages\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293182\",\"Title\":\"0\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"0\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":36022,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518289,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Elevated Luxury Cottages\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40681\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":17000,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":17000,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":17000,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":17000,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":17000,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":17000,\"ACEB\":17000,\"COSTTO\":17000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40681\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":15500,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":15500,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":15500,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":15500,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":15500,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-01\",\"To\":\"2023-06-30\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":31000,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":15500,\"ACEB\":15500,\"COSTTO\":15500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"293180\":[{\"Sequence\":[0],\"TPInvnSysId\":[293180],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"293181\":[{\"Sequence\":[0],\"TPInvnSysId\":[293181],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}],\"293182\":[{\"Sequence\":[0],\"TPInvnSysId\":[293182],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}]},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Tadoba','Tadoba,Maharashtra,Indian Subcontinent,West India,India',NULL,'36022',15500,17000,2,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2023-06-30 00:00:00','2023-06-30 00:00:00',3,'India','101','2022-09-01 17:47:02','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'tadoba-wildlife-stay-2n-3d',NULL,NULL,NULL,0),(64,40689,1,12577,1,0,0,'Heritage,Culture,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40689,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/rann_utsav_-_2n3d_1662107174.png\",\"BookingValidUntill\":\"2023-02-28\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Rann Utsav&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The 4-month long festive event - Rann Utsav brims with dynamism, hospitality, vigor and traditional flavor of the splendorous Kutch amidst the breathtaking and divergent landscape. The annual event offers the opportunity to visit the expanse of white desert that lies along the India-Pakistan border.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The most sought-after time to explore&amp;nbsp;White Rann&amp;nbsp;is the full moon night hours after witnessing the enchanting sunset. Transcending through the plain terrain of the white desert at the sunset hours and watching a full moonlit folk concert offer an unrivalled travel experience. And the camel-cart rides to the white desert append the exciting pursuit to discover the nature&amp;rsquo;s most exclusive creation.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Rann Utsav&amp;nbsp;is not only the festive extravaganza but also the celebration of life that crams colors into the salt-encrusted desert plains. The soul-stirring splendour of nature, calm &amp;amp; serene surrounding, rich Kutchi culture, intricate handicrafts and outdoor activities make this desert carnival a perfect holiday destination. With traditional dance forms and musical moments, many thrilling activities like cultural act shows, camel safari, parasailing and dirt biking enhance different colors of the festivity.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Rann Utsav&amp;nbsp;is synonymous with distinctive celebration of life and the memories, colors and rawness, acculturation and isolation.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Kutch\",\"DestinationPlacesSysId\":14637,\"SourcePlaces\":\"Kutch\",\"SourcePlaceSysId\":14637,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Rann Utsav - 2N\\/3D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10858\",\"SupplierName\":\"Praveg Communications India Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"All Meals,Cab,Sightseeing\",\"PackageType\":\"Heritage,Culture,Leisure\",\"Validity\":{\"From\":\"2022-09-02\",\"To\":\"2023-02-28\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":14637,\"Title\":\"Kutch\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518291,\"Name\":\"White Rann Resort\",\"Star\":\"5.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":14637,\"Brief\":\"\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/hoteId_518291\\/12577_9aec4f059e88e9e6dd306e5dbf33e2011661346854.jpg\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10858,\"SupplierName\":\"Praveg Communications India Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"Premium Deluxe\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1457,\"Title\":\"Great Rann of Kutch\",\"Description\":\"The Great Rann of Kutch is a large area of salt marshland, is situated in the Thar Desert which create a mesmerising view that attracts tourists from all over the world. Watching the moonlight view on a full moon night will be wonderful experience. Famous for its natural beauty, it was featured in numerous films in India, for example - Refugee, Goliyon Ki Raasleela Raamleela, Sarainodu etc. It is considered as one of the largest salt deserts in the entire world. Every year tourists participate in the Great festival called &amp;ldquo;Rann Utsav&amp;rdquo;. One can enjoy the various music concerts, Sindhi Bhajans, and Langa Desert Music. It offers plenty of things to do including participation in Golf Cart, ATV Ride, Camel Cart Excursion, yoga, Paramotoring, Meditaiton and Enjoying Gujarati Culture.\",\"CurrencyType\":0,\"CityId\":14637,\"CityName\":\"Kutch\",\"Lat\":24.0454286,\"Long\":70.1455805,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14637\\/sightseeing\\/Great_Rann_of_Kutch_14637_1519645173.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10858,\"SupplierName\":\"Praveg Communications India Ltd.\",\"priceaditionals\":null},{\"RefSSId\":3897,\"Title\":\"Kalo Dungar (Black Hills)\",\"Description\":\"Kalo Dungar, the top of the Black Hills is the highest point in Kutch, at 462 m. It offers jaw dropping view of the entire region, especially the Rann and the Indo-Pak border. The highland is one of the most popular tourist places to visit in Kutch and hiking activity is only recommended for professionals. There is also the site of a 400 year old temple of Dattatreya, three-headed incarnation of Lord Brahma, Lord Vishnu and Lord Shiva. Reaching the hilltop by hiring a jeep from Khavda is good option. Visiting in the early morning or late afternoon is recommended, though with a few more hours there are nice hikes to do around the hill. Be sure to take own food and water.\",\"CurrencyType\":0,\"CityId\":14637,\"CityName\":\"Kutch\",\"Lat\":23.9344982,\"Long\":69.8144835,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/14637\\/sightseeing\\/Kalo_Dungar_(Black_Hills)_14637_1519625073.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10858,\"SupplierName\":\"Praveg Communications India Ltd.\",\"priceaditionals\":null},{\"RefSSId\":30845,\"Title\":\"Gandhi nu Gam\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14637,\"CityName\":\"Kutch\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10858,\"SupplierName\":\"Praveg Communications India Ltd.\",\"priceaditionals\":null},{\"RefSSId\":30846,\"Title\":\"Vande Matram Memorial\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":14637,\"CityName\":\"Kutch\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10858,\"SupplierName\":\"Praveg Communications India Ltd.\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"293231\",\"Title\":\"Arrive Kutch - Rann\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;12:30 pm&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Welcome and Check-in&lt;br \\/&gt;\\r\\n12:30 pm to 2:30 pm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Lunch at Dining Area&lt;br \\/&gt;\\r\\n02:00 pm to 4:30 pm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Shopping \\/ Adventure Time&lt;br \\/&gt;\\r\\n04:30 pm to 5:00 pm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Evening High Tea&lt;br \\/&gt;\\r\\n05:00 pm to 7:30 pm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Visit to White Rann&lt;br \\/&gt;\\r\\n08:00 pm to 9:30 pm&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dinner at Dining Area&lt;br \\/&gt;\\r\\n09:00 pm to 10:00 pm&amp;nbsp;&amp;nbsp;&amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cultural Activities followed by Grand Housie at White Rann Resort&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14637,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518291,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1457,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293232\",\"Title\":\"Kutch \",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;06:30 am&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Morning visit White Rann&lt;br \\/&gt;\\r\\n07:30 am to 09:30 am&amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Breakfast at Dining Area&lt;br \\/&gt;\\r\\n09:30 am to 12:30 pm&amp;nbsp;&amp;nbsp;&amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Leisure \\/ Recreational Activities at the Resort&lt;br \\/&gt;\\r\\n12:30 pm to 02:00 pm&amp;nbsp;&amp;nbsp;&amp;nbsp; : &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Lunch at Dining Area&lt;br \\/&gt;\\r\\n02:00 pm to 03:00 pm&amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Leisure \\/ Recreational Activities at the Resort&lt;br \\/&gt;\\r\\n03:00 pm to 08:00 pm&amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Complimentary Tour to Kalo Dungar &amp;amp; Gandhi nu Gam&lt;br \\/&gt;\\r\\n08:00 pm to 09:30 pm&amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dinner at Dining Area&lt;br \\/&gt;\\r\\n09:00 pm to 10:00 pm&amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Cultural Activities followed by Grand Housie at White Rann Resort&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14637,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518291,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"Premium Deluxe\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":3897,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":30845,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"293233\",\"Title\":\"Depart Kutch\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;07:30 am to 09:30 am&amp;nbsp;&amp;nbsp;&amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Breakfast at Dining Area&lt;br \\/&gt;\\r\\n09:30 am&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; :&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Check-out and Departure for Bhuj with a Complimentary Sightseeing.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":14637,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30846,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40689\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"17000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":null,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":null,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":null,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":null,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":null,\"ACEB\":17000,\"COSTTO\":17000},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":17000,\"priceDoubleOcc\":\"17000.00\",\"priceSingleOcc\":17000,\"priceExtraBed\":\"17000.00\",\"priceWithoutBed\":\"17000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":17000,\"CEB\":17000,\"COSTDO\":17000,\"COSTSO\":null,\"ACEB\":17000,\"COSTTO\":17000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"40689\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":15500,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":null,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":15500,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":null,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":15500,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":null,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":15500,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":null,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":15500,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":null,\"ACEB\":15500,\"COSTTO\":15500},{\"From\":\"2022-10-24\",\"To\":\"2023-02-28\",\"Currency\":1,\"priceTripleOcc\":15500,\"priceDoubleOcc\":\"15500.00\",\"priceSingleOcc\":15500,\"priceExtraBed\":\"15500.00\",\"priceWithoutBed\":\"15500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15500,\"CEB\":15500,\"COSTDO\":15500,\"COSTSO\":null,\"ACEB\":15500,\"COSTTO\":15500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"293231\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[293231],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293232\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[293232],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"293233\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[293233],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Kutch','Kutch,Gujarat,Indian Subcontinent,West India,India',NULL,'14637',15500,17000,2,NULL,NULL,NULL,2,'',0,'2022-09-02 00:00:00','2023-02-28 00:00:00','2023-02-28 00:00:00',3,'India','101','2022-09-02 13:55:33','2022-09-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'rann-utsav-2n-3d',NULL,NULL,NULL,0),(65,38958,1,12577,1,0,0,'Wildlife,Family,Hill Station,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":38958,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/kathmu_pokhara_chitwan_7n8d_1662107828.jpg\",\"BookingValidUntill\":\"2022-09-30\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;Nepal is&amp;nbsp;a landlocked country in South Asia and is bordered by China and India. It is located in the Himalayas and contains eight of the world&amp;#39;s ten highest peaks. The government system is a federal parliamentary republic; the chief of state is the president, and the head of government is the prime minister.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Kathmandu\",\"DestinationPlacesSysId\":13672,\"SourcePlaces\":\"Kathmandu\",\"SourcePlaceSysId\":13672,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Kathmandu Pokhara Chitwan 7N8D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10555\",\"SupplierName\":\"Go Nepal\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Cab,Sightseeing\",\"PackageType\":\"Wildlife,Family,Hill Station,Leisure\",\"Validity\":{\"From\":\"2022-09-02\",\"To\":\"2022-09-30\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13672,\"Title\":\"Kathmandu\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":422275,\"Name\":\"Taleju Boutique Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.7138\",\"Long\":\"85.3145\",\"Address\":\"Chhusya Galli, Jyatha, Thamel, Kathmandu 44600\"},\"Images\":[],\"CityId\":13672,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Taleju Boutique Hotel in Kathmandu (Thamel), you&#039;ll be minutes from Garden of Dreams and Hari Shanker Temple.  This hotel is close to Pashupatinath Temple and Boudhanath.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 27 air-conditioned rooms featuring LED televisions. Complimentary wireless Internet access keeps you connected, and digital programming is available for your entertainment. Private bathrooms with showers feature complimentary toiletries and hair dryers. Conveniences include laptop-compatible safes and desks, as well as phones with free local calls.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take in the views from a rooftop terrace and a garden and make use of amenities such as complimentary wireless Internet access. Additional amenities at this hotel include concierge services, babysitting\\/childcare (surcharge), and a television in a common area.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Grab a bite to eat at the hotel&#039;s restaurant, which features a bar, or stay in and take advantage of room service (during limited hours). Quench your thirst with your favorite drink at a bar\\/lounge. A complimentary buffet breakfast is served daily from 7 AM to 11 AM.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include a business center, complimentary newspapers in the lobby, and dry cleaning\\/laundry services. A shuttle from the airport to the hotel is complimentary (available on request).&lt;\\/p&gt;\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000100001101000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":7,\"Title\":\"Sports\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":15,\"Title\":\"Business Friendly\"}],\"IsfromAPI\":false,\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":29097,\"Title\":\"Davis falls\",\"Description\":\"&lt;p&gt;where the water forms an underground tunnel after reaching the bottom.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is locally known as Patale Chhango (hell&rsquo;s falls). Legend says that a trekker was washed \\r\\n&lt;\\/p&gt;&lt;p&gt;away and mysteriously disappeared down into an underground passage beneath the fall.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null},{\"RefSSId\":2340,\"Title\":\"Gupteshwar Cave\",\"Description\":\"Another cave famous for it&#039;s religious importance located in the southern end of the city, Chorepatan. This cave has a famous Hindu god Shiva. It is opposite to  Devi&#039;s Fall and on going its underground stairwell depth one comes across the waters of Devi&#039;s Fall itself.\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":28.1894857,\"Long\":83.9577485,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503318578.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null},{\"RefSSId\":2345,\"Title\":\"Seti river gorge\",\"Description\":\"The Seti originates from the snow fields and glaciers around the twin peaks of Api and Nampa in the south facing slopes of the main Himalayas. It has cut a spectacular gorge across the Mahabharat Range and appears to be lost amongst caves and tunnels for a short distance.\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":29.2785102,\"Long\":80.9866625,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503319599.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null}]}},{\"CityId\":21687,\"Title\":\"Pokhara\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":515473,\"Name\":\"Hotel Lakeside Pvt Ltd\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.2076308\",\"Long\":\"83.9684753\",\"Address\":\"GairiKhet margh, Pokhara 33700, Nepal\"},\"Images\":[],\"CityId\":21687,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"BB\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":29097,\"Title\":\"Davis falls\",\"Description\":\"&lt;p&gt;where the water forms an underground tunnel after reaching the bottom.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is locally known as Patale Chhango (hell&rsquo;s falls). Legend says that a trekker was washed \\r\\n&lt;\\/p&gt;&lt;p&gt;away and mysteriously disappeared down into an underground passage beneath the fall.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null},{\"RefSSId\":2340,\"Title\":\"Gupteshwar Cave\",\"Description\":\"Another cave famous for it&#039;s religious importance located in the southern end of the city, Chorepatan. This cave has a famous Hindu god Shiva. It is opposite to  Devi&#039;s Fall and on going its underground stairwell depth one comes across the waters of Devi&#039;s Fall itself.\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":28.1894857,\"Long\":83.9577485,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503318578.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null},{\"RefSSId\":2345,\"Title\":\"Seti river gorge\",\"Description\":\"The Seti originates from the snow fields and glaciers around the twin peaks of Api and Nampa in the south facing slopes of the main Himalayas. It has cut a spectacular gorge across the Mahabharat Range and appears to be lost amongst caves and tunnels for a short distance.\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":29.2785102,\"Long\":80.9866625,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503319599.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null}]}},{\"CityId\":6194,\"Title\":\"Chitwan\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":515478,\"Name\":\"Hotel Jungle Crown\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.5914026\",\"Long\":\"84.4846681\",\"Address\":\"Tigerpoint, Baghmara Sauraha Chitwan National Park, Baghmara Road, Ratnanagar 00977, Nepal\"},\"Images\":[],\"CityId\":6194,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":29097,\"Title\":\"Davis falls\",\"Description\":\"&lt;p&gt;where the water forms an underground tunnel after reaching the bottom.\\r\\n&lt;\\/p&gt;&lt;p&gt;It is locally known as Patale Chhango (hell&rsquo;s falls). Legend says that a trekker was washed \\r\\n&lt;\\/p&gt;&lt;p&gt;away and mysteriously disappeared down into an underground passage beneath the fall.&lt;\\/p&gt;\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":0,\"Long\":0,\"Image\":\"\",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null},{\"RefSSId\":2340,\"Title\":\"Gupteshwar Cave\",\"Description\":\"Another cave famous for it&#039;s religious importance located in the southern end of the city, Chorepatan. This cave has a famous Hindu god Shiva. It is opposite to  Devi&#039;s Fall and on going its underground stairwell depth one comes across the waters of Devi&#039;s Fall itself.\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":28.1894857,\"Long\":83.9577485,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503318578.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null},{\"RefSSId\":2345,\"Title\":\"Seti river gorge\",\"Description\":\"The Seti originates from the snow fields and glaciers around the twin peaks of Api and Nampa in the south facing slopes of the main Himalayas. It has cut a spectacular gorge across the Mahabharat Range and appears to be lost amongst caves and tunnels for a short distance.\",\"CurrencyType\":0,\"CityId\":21687,\"CityName\":\"Pokhara\",\"Lat\":29.2785102,\"Long\":80.9866625,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/21687\\/sightseeing\\/18_1503319599.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10555,\"SupplierName\":\"Go Nepal\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"279324\",\"Title\":\"Arrival in Kathmandu\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;On arrival at Tribhuvan International Airport in Kathmandu, our representative will greet and receive you at airport. Then transfer to your hotel. After reaching your hotel, check in and take rest. Then if you want to explore the city then you can enjoy. Overnight in hotel Kathmandu.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":422275,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279325\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":2,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279326\",\"Title\":\"Move to Pokhara from Kathmandu\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast move to Pokhara, started with lovely and beautiful scenic tour with and interesting drive on Nepal&amp;rsquo;s busy main highway. The journeys lead past many farm villages and towns with romantic view of mountains. In evening free walks around the lake side with the close view of Annapurna mountain range and stunning peak Machhapuchare Himal (The Fish Tail). Overnight in hotel at Pokhara.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21687,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515473,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279327\",\"Title\":\" Explore Pokhara\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;In the early morning, we will visit Sarangkot to view the sunrise over the Himalayas (subject to weather permit). After spending couple of an hour in sarangkot we move to Bindabasani Temple. ?&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Bindabasini temple&lt;\\/strong&gt;, dedicated to the Hindu goddess Durga, the guardian god of the city. The white pagoda-styled building of the Hindu Bindabasini Temple quietly sits at about 915 m. above sea level along the renowned Annapurna and Machhpuchhare mountain ranges.&lt;br \\/&gt;\\r\\n\\tThen we will return to the hotel for breakfast. And we will visit the following places:&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Davis falls,&lt;\\/strong&gt; where the water forms an underground tunnel after reaching the bottom. It is locally known as Patale Chhango (hell&amp;rsquo;s falls). Legend says that a trekker was washed away and mysteriously disappeared down into an underground passage beneath the fall.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Gupteshwor Cave&lt;\\/strong&gt;, the longest cave (2950 m.) of Nepal. It features several hall-like rooms and some passages. It is one of the most popular tourist attractions in Pokhara. The Hindus regard this cave as holy.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Seti River Gorge,&amp;nbsp;&lt;\\/strong&gt;Seti River is known for its milky white water. The Seti River and its tributaries have dug impressive canyons into the valley floor, which are only visible from higher viewpoints or from the air.&lt;br \\/&gt;\\r\\n\\t&lt;br \\/&gt;\\r\\n\\tOvernight in hotel at Pokhara.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21687,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515473,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":29097,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2340,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2345,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279328\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":21687,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279329\",\"Title\":\" Move to Chitwan from Pokhara\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast, you will move towards Chitwan. Upon arrival at Chitwan, Check-in at the resort and you will be followed by lunch.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Then we will have some activities:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Tour in &lt;strong&gt;Tharus village.&lt;\\/strong&gt; Tharus are the indigenous inhabitants of the Terai. You will meet the people and experience their traditional self-sufficient way of life.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In the evening, we will have a Tharu cultural program&lt;br \\/&gt;\\r\\n\\t&lt;br \\/&gt;\\r\\n\\tDinner and Overnight in Hotel at Chitwan.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515478,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279330\",\"Title\":\" Jungle activities in Chitwan\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":5,\"Program\":\"&lt;p&gt;Our day will be full of activities.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nWe will have breakfast, lunch and dinner at the resort.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThe activities included:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;Morning Elephant back safari \\/ jeep drive. You can see other jungle animals during the ride.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Canoeing on Rapti River.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Visit elephant breeding center.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Jungle walk.&lt;br \\/&gt;\\r\\n\\t&lt;br \\/&gt;\\r\\n\\tOvernight in a resort at Chitwan&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":515478,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279331\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":6,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":6194,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279332\",\"Title\":\"Back to Kathmandu\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;Early morning after breakfast we will move to chitwan national park for bird watching in Paradise Island with over 450 species of birds. Later we will back to Kathmandu.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight in hotel at Kathmandu.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":422275,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279333\",\"Title\":\": Kathmandu Valley Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":7,\"Program\":\"&lt;p&gt;Breakfast in the hotel and we will visit the following destination:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Pashupatinath&lt;\\/strong&gt;, a famous and sacred Hindu temple complex that is located on the banks of the Bagmati River. It is renowned for its superb architecture, its two-tiered golden roof and silver doors. The temple was listed in the UNESCO world Heritage Monument list in 1797.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Boudhanath&lt;\\/strong&gt;. This colossal and ancient Stupa is one of the biggest in the world, and features all the eyes of Lord Buddha. This is also one of UNESCO&amp;rsquo;s cultural heritage sites of Nepal.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Swayamhbunath&lt;\\/strong&gt;, an ancient religious architecture atop a hill in the Kathmandu Valley, west of the city. This is one of the world&amp;#39;s most glorious Buddhist Stupa. It is around 2000 years old. This is one of UNESCO&amp;rsquo;s cultural heritage sites of Nepal.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;&lt;strong&gt;Kathmandu Durbar Square&lt;\\/strong&gt;, a UNESCO World Heritage Site. It is the historic seat of royalty. The Durbar Square, with its old temples and places, epitomizes the religious and cultural life of the people. There are many interesting things to see there.&lt;br \\/&gt;\\r\\n\\t&lt;br \\/&gt;\\r\\n\\tOvernight in Kathmandu.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":422275,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"BB\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"279334\",\"Title\":\"Departure to Kathmandu Airport\",\"MealPlanInclude\":\"Breakfast\",\"Day\":8,\"Program\":\"&lt;p&gt;Free until final departure and depending upon fight time our representative will transfer you to the airport for the final departure.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13672,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Budget\",\"Id\":1}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38958\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"23000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22467,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":55850,\"priceExtraBed\":\"17550.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":17550,\"COSTDO\":23000,\"COSTSO\":53850,\"ACEB\":21400,\"COSTTO\":21400},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22467,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":55850,\"priceExtraBed\":\"17550.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":17550,\"COSTDO\":23000,\"COSTSO\":53850,\"ACEB\":21400,\"COSTTO\":21400},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22467,\"priceDoubleOcc\":\"23000.00\",\"priceSingleOcc\":55850,\"priceExtraBed\":\"17550.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":17550,\"COSTDO\":23000,\"COSTSO\":53850,\"ACEB\":21400,\"COSTTO\":21400},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22900,\"priceDoubleOcc\":\"23650.00\",\"priceSingleOcc\":56500,\"priceExtraBed\":\"17550.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":17550,\"COSTDO\":23650,\"COSTSO\":54500,\"ACEB\":21400,\"COSTTO\":21400},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":22900,\"priceDoubleOcc\":\"23650.00\",\"priceSingleOcc\":56500,\"priceExtraBed\":\"17550.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":23650,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":17550,\"COSTDO\":23650,\"COSTSO\":54500,\"ACEB\":21400,\"COSTTO\":21400},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":25700,\"priceDoubleOcc\":\"27850.00\",\"priceSingleOcc\":60700,\"priceExtraBed\":\"17550.00\",\"priceWithoutBed\":\"15000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":27850,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":15000,\"CEB\":17550,\"COSTDO\":27850,\"COSTSO\":58700,\"ACEB\":21400,\"COSTTO\":21400}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":1,\"Type\":\"Budget\",\"TPSysId\":\"38958\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"21500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20967,\"priceDoubleOcc\":\"21500.00\",\"priceSingleOcc\":52850,\"priceExtraBed\":\"16050.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16050,\"COSTDO\":21500,\"COSTSO\":52350,\"ACEB\":19900,\"COSTTO\":19900},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20967,\"priceDoubleOcc\":\"21500.00\",\"priceSingleOcc\":52850,\"priceExtraBed\":\"16050.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16050,\"COSTDO\":21500,\"COSTSO\":52350,\"ACEB\":19900,\"COSTTO\":19900},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":20967,\"priceDoubleOcc\":\"21500.00\",\"priceSingleOcc\":52850,\"priceExtraBed\":\"16050.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":21500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16050,\"COSTDO\":21500,\"COSTSO\":52350,\"ACEB\":19900,\"COSTTO\":19900},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21400,\"priceDoubleOcc\":\"22150.00\",\"priceSingleOcc\":53500,\"priceExtraBed\":\"16050.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16050,\"COSTDO\":22150,\"COSTSO\":53000,\"ACEB\":19900,\"COSTTO\":19900},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":21400,\"priceDoubleOcc\":\"22150.00\",\"priceSingleOcc\":53500,\"priceExtraBed\":\"16050.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22150,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16050,\"COSTDO\":22150,\"COSTSO\":53000,\"ACEB\":19900,\"COSTTO\":19900},{\"From\":\"2022-08-15\",\"To\":\"2022-09-30\",\"Currency\":1,\"priceTripleOcc\":24200,\"priceDoubleOcc\":\"26350.00\",\"priceSingleOcc\":57700,\"priceExtraBed\":\"16050.00\",\"priceWithoutBed\":\"13500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26350,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":13500,\"CEB\":16050,\"COSTDO\":26350,\"COSTSO\":57200,\"ACEB\":19900,\"COSTTO\":19900}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"279324\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[279324],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279325\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[279325],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279326\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[279326],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279327\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[279327],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279328\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[279328],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279329\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[279329],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279330\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[279330],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279331\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[279331],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279332\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[279332],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279333\":{\"7\":{\"Sequence\":[7],\"TPInvnSysId\":[279333],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"279334\":{\"8\":{\"Sequence\":[8],\"TPInvnSysId\":[279334],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Kathmandu,Pokhara,Chitwan','Kathmandu,Indian Subcontinent,Nepal,Pokhara,Chitwan',NULL,'13672,21687,6194',21500,27850,7,NULL,NULL,NULL,2,'',0,'2022-09-02 00:00:00','2022-09-30 00:00:00','2022-09-30 00:00:00',3,'Nepal','153','2022-09-02 14:06:28','2022-09-02 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'kathmandu-pokhara-chitwan-7n8d',NULL,NULL,NULL,0),(66,40987,1,12577,1,0,0,'Wildlife,Family,Heritage,Culture,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":40987,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/rajasthan_-_tiger_trails_-_5n6d_1662034313.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Rajasthan&lt;\\/strong&gt; is a perhaps one of the most colourful states of India and a land of unending diversity. Whether it is about the &amp;lsquo;pink&amp;rsquo; in Jaipur or the &amp;lsquo;blue&amp;rsquo; in Jodhpur or the &amp;lsquo;golden hues&amp;rsquo; of Jaisalmer, the barren landscape is swathed in colours of the rainbow.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The state has some of the most beautiful palaces and forts in the country, which are well-maintained by the government and the former royal families. The experience is further enhanced by professional guides who can regale with some interesting stories of a bygone era. Most of these palaces and hotels are equipped with all the modern-day facilities. The restaurants in the premises of the forts treat with royalty and sometimes even have musicians and dancers to entertain the visitors.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Rajasthan - Tiger Trails - 5N\\/6D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10856\",\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast\",\"PackageType\":\"Wildlife,Family,Heritage,Culture,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518277,\"Name\":\"HOTEL RUDRA VILAS\",\"Star\":\".00\",\"Rating\":\"4.60\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.8337249\",\"Long\":\"75.7676625\",\"Address\":\"Plot No. 1, Shiv Vatika, Rajawat Farms, New Sanganer Rd, Kalyanpura, Mansarovar, Jaipur, Rajasthan 302020, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":518278,\"Name\":\"Hotel Jaipur Central\",\"Star\":\".00\",\"Rating\":\"4.10\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.9212881\",\"Long\":\"75.7945855\",\"Address\":\"6 D, Station Rd, Kanti Nagar, Bani Park, Jaipur, Rajasthan 302001, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":6035,\"Title\":\"Ranthambore National Park, Rajasthan\",\"Description\":\"The national park also provides an opportunity to view numerous bird species and flora. The park does not possess many amphibians and offers the closer view of common Indian toads and frogs.\\r\\n\\r\\nThis national park spreads over an area of 392 sq, km and is one of the finest parks for the conservation of Tigers. The park also features hills, hillocks  and flat valleys. The concerned authorities of the park make special arrangements for wildlife photography and video shootings.\",\"CurrencyType\":0,\"CityId\":22593,\"CityName\":\"Ranthambore\",\"Lat\":26.0173274,\"Long\":76.5025742,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22593\\/sightseeing\\/Ranthambore_National_Park,_Raj_22593_1529392705.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah&Auml;\\u0081n-Num&Auml;\\u0081 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &acirc;&euro;&tilde;ceremonial axis&acirc;&euro;&trade; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&acirc;&euro;&ldquo;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}},{\"CityId\":22593,\"Title\":\"Ranthambore\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518714,\"Name\":\"Om Rudrapriya Holiday Resort\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.0203919\",\"Long\":\"76.3746592\",\"Address\":\"Ranthambhore Rd, Saptar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":518715,\"Name\":\"Ranthambhore National Resort\",\"Star\":\".00\",\"Rating\":\"4.20\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.0186511\",\"Long\":\"76.3755643\",\"Address\":\"Ranthambhore Rd, opposite Saras Dairy, Saptar, Sawai Madhopur, Rajasthan 322001, India\"},\"Images\":[],\"CityId\":22593,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":6035,\"Title\":\"Ranthambore National Park, Rajasthan\",\"Description\":\"The national park also provides an opportunity to view numerous bird species and flora. The park does not possess many amphibians and offers the closer view of common Indian toads and frogs.\\r\\n\\r\\nThis national park spreads over an area of 392 sq, km and is one of the finest parks for the conservation of Tigers. The park also features hills, hillocks  and flat valleys. The concerned authorities of the park make special arrangements for wildlife photography and video shootings.\",\"CurrencyType\":0,\"CityId\":22593,\"CityName\":\"Ranthambore\",\"Lat\":26.0173274,\"Long\":76.5025742,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22593\\/sightseeing\\/Ranthambore_National_Park,_Raj_22593_1529392705.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah&Auml;\\u0081n-Num&Auml;\\u0081 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &acirc;&euro;&tilde;ceremonial axis&acirc;&euro;&trade; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&acirc;&euro;&ldquo;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}},{\"CityId\":266,\"Title\":\"Agra\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":21583,\"Name\":\"Crystal Inn\",\"Star\":\"3.00\",\"Rating\":\"3.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"27.161698\",\"Long\":\"78.058438\",\"Address\":\"Fatehbad Road Behind TDI Mall\"},\"Images\":{\"Image\":[{\"ImagId\":4794611,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_1_t.jpg\"},{\"ImagId\":4794612,\"Type\":\"FullImage\",\"Order\":2,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_30_t.jpg\"},{\"ImagId\":4794613,\"Type\":\"FullImage\",\"Order\":3,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_33_t.jpg\"},{\"ImagId\":4794614,\"Type\":\"FullImage\",\"Order\":4,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_3_t.jpg\"},{\"ImagId\":4794615,\"Type\":\"FullImage\",\"Order\":5,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_6_t.jpg\"},{\"ImagId\":4794616,\"Type\":\"FullImage\",\"Order\":6,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_17_t.jpg\"},{\"ImagId\":4794617,\"Type\":\"FullImage\",\"Order\":7,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_18_t.jpg\"},{\"ImagId\":4794618,\"Type\":\"FullImage\",\"Order\":8,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_19_t.jpg\"},{\"ImagId\":4794619,\"Type\":\"FullImage\",\"Order\":9,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_20_t.jpg\"},{\"ImagId\":4794620,\"Type\":\"FullImage\",\"Order\":10,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_23_t.jpg\"},{\"ImagId\":4794621,\"Type\":\"FullImage\",\"Order\":11,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_24_t.jpg\"},{\"ImagId\":4794622,\"Type\":\"FullImage\",\"Order\":12,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_27_t.jpg\"},{\"ImagId\":4794623,\"Type\":\"FullImage\",\"Order\":13,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_28_t.jpg\"},{\"ImagId\":4794624,\"Type\":\"FullImage\",\"Order\":14,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_29_t.jpg\"},{\"ImagId\":4794625,\"Type\":\"FullImage\",\"Order\":15,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_36_t.jpg\"},{\"ImagId\":4794626,\"Type\":\"FullImage\",\"Order\":16,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_31_t.jpg\"},{\"ImagId\":4794627,\"Type\":\"FullImage\",\"Order\":17,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_37_t.jpg\"},{\"ImagId\":4794628,\"Type\":\"FullImage\",\"Order\":18,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_38_t.jpg\"},{\"ImagId\":4794629,\"Type\":\"FullImage\",\"Order\":19,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_39_t.jpg\"},{\"ImagId\":4794630,\"Type\":\"FullImage\",\"Order\":20,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_40_t.jpg\"},{\"ImagId\":4794631,\"Type\":\"FullImage\",\"Order\":21,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_41_t.jpg\"},{\"ImagId\":4794632,\"Type\":\"FullImage\",\"Order\":22,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_21_t.jpg\"},{\"ImagId\":4794633,\"Type\":\"FullImage\",\"Order\":23,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_26_t.jpg\"},{\"ImagId\":4794634,\"Type\":\"FullImage\",\"Order\":24,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_32_t.jpg\"},{\"ImagId\":4794635,\"Type\":\"FullImage\",\"Order\":25,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_22_t.jpg\"},{\"ImagId\":4794636,\"Type\":\"FullImage\",\"Order\":26,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_25_t.jpg\"},{\"ImagId\":4794637,\"Type\":\"FullImage\",\"Order\":27,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_34_t.jpg\"},{\"ImagId\":4794638,\"Type\":\"FullImage\",\"Order\":28,\"ShortDesc\":null,\"URL\":\"http:\\/\\/media.expedia.com\\/hotels\\/4000000\\/3570000\\/3565700\\/3565614\\/3565614_35_t.jpg\"}]},\"CityId\":266,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;With a stay at Hotel Crystal Inn in Agra, you&#039;ll be convenient to Mosque and the Jawab and Taj Mahal.  This luxury hotel is within close proximity of Agra Fort and Sadar Bazar.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 32 air-conditioned rooms featuring fireplaces and LCD televisions. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment. Conveniences include phones, as well as safes and desks.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Amenities&lt;\\/b&gt; &lt;br \\/&gt;Take time to pamper yourself with a visit to the full-service spa. Additional amenities at this hotel include complimentary wireless Internet access, concierge services, and babysitting\\/childcare (surcharge).&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at one of the hotel&#039;s dining establishments, which include 2 restaurants and a coffee shop\\/caf&iuml;&iquest;&frac12;. From your room, you can also access 24-hour room service. Quench your thirst with your favorite drink at a bar\\/lounge.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Featured amenities include complimentary high-speed (wired) Internet access, a business center, and limo\\/town car service. Event facilities at this hotel consist of a conference center and a meeting room. Guests may use a roundtrip airport shuttle for a surcharge, and free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/hotel\\/15011_download (1).jpg\",\"AccoAminitiesMask\":\"1111000000001100001\",\"AccoAminities\":[{\"AminityId\":1,\"Title\":\"Internet\"},{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":3,\"Title\":\"Swimming Pool\"},{\"AminityId\":12,\"Title\":\"Room Service\"},{\"AminityId\":13,\"Title\":\"Laundry\"},{\"AminityId\":18,\"Title\":\"Other\"}],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":6035,\"Title\":\"Ranthambore National Park, Rajasthan\",\"Description\":\"The national park also provides an opportunity to view numerous bird species and flora. The park does not possess many amphibians and offers the closer view of common Indian toads and frogs.\\r\\n\\r\\nThis national park spreads over an area of 392 sq, km and is one of the finest parks for the conservation of Tigers. The park also features hills, hillocks  and flat valleys. The concerned authorities of the park make special arrangements for wildlife photography and video shootings.\",\"CurrencyType\":0,\"CityId\":22593,\"CityName\":\"Ranthambore\",\"Lat\":26.0173274,\"Long\":76.5025742,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22593\\/sightseeing\\/Ranthambore_National_Park,_Raj_22593_1529392705.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah&Auml;\\u0081n-Num&Auml;\\u0081 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &acirc;&euro;&tilde;ceremonial axis&acirc;&euro;&trade; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&acirc;&euro;&ldquo;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}},{\"CityId\":7701,\"Title\":\"Delhi\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":214675,\"Name\":\"Almondz Hotel\",\"Star\":\"3.00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"28.646355\",\"Long\":\"77.17296\",\"Address\":\"4\\/3 East Patel Nagar, Near Metro Pillar No 171, Delhi, Delhi, India, , , 110008\"},\"Images\":{\"Image\":[{\"ImagId\":4784819,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"http:\\/\\/images.cdnpath.com\\/imageresource.aspx?img=ytl9DmwCsAOMI8k2tU0mDcdf9d7gLLWhwIFdEMJJfh6ZL5S46fkcupvfn6L+7NPoPxUcEtTuBoznIPbCL7vbcQ==\"}]},\"CityId\":7701,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":213955,\"Name\":\"Hotel Regent Grand\",\"Star\":\"4.00\",\"Rating\":\".00\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"2\\/6, East Patel Nagar Near Pusa Road-Karol Bagh, Delhi, , \"},\"Images\":{\"Image\":[{\"ImagId\":4784025,\"Type\":\"FullImage\",\"Order\":1,\"ShortDesc\":null,\"URL\":\"\"}]},\"CityId\":7701,\"Brief\":\"Property Location A stay at Hotel Regent Grand places you in the heart of New Delhi, convenient to Karol Bagh Shopping Market and Birla Mandir Temple. This 4-star hotel is within close proximity of Laxminarayan Temple and Pusa Hill Forest.Rooms Treat yourself to a stay in one of the 52 individually decorated guestrooms, featuring fireplaces and LCD televisions. Cable programming and DVD players are provided for your entertainment, while complimentary wireless Internet access keeps you connected. Conveniences include phones, as well as laptop-compatible safes and desks.Rec, Spa, Premium Amenities Take in the views from a rooftop terrace and make use of amenities such as complimentary wireless Internet access and concierge services. Additional amenities include wedding services, a fireplace in the lobby, and tour\\/ticket assistance.Dining Grab a bite to eat at the hotel&#039;s restaurant, which features a bar, or stay in and take advantage of 24-hour room service. Mingle with other guests at a complimentary reception, held daily. Quench your thirst with your favorite drink at a bar\\/lounge. A complimentary buffet breakfast is served daily.Business, Other Amenities Featured amenities include a business center, a computer station, and express check-in. Event facilities at this hotel consist of a conference center and a meeting room. A roundtrip airport shuttle is provided for a surcharge available 24 hours, and free valet parking is available onsite.\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":6035,\"Title\":\"Ranthambore National Park, Rajasthan\",\"Description\":\"The national park also provides an opportunity to view numerous bird species and flora. The park does not possess many amphibians and offers the closer view of common Indian toads and frogs.\\r\\n\\r\\nThis national park spreads over an area of 392 sq, km and is one of the finest parks for the conservation of Tigers. The park also features hills, hillocks  and flat valleys. The concerned authorities of the park make special arrangements for wildlife photography and video shootings.\",\"CurrencyType\":0,\"CityId\":22593,\"CityName\":\"Ranthambore\",\"Lat\":26.0173274,\"Long\":76.5025742,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22593\\/sightseeing\\/Ranthambore_National_Park,_Raj_22593_1529392705.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":499,\"Title\":\"Fatehpur Sikri\",\"Description\":\"Fatehpur Sikri is one of the mostly visited spots in India, listed among the World Heritage sites. It is an important specimen of the Mughal dynasty, situated at an easy distance from the city of Agra in the state of Uttar Pradesh. Fatehpur Sikri was made the political capital of the Mughal Empire by Emperor Akbar from the period of 1571 to 1585. There are majestic buildings built by Akbar in Fatehpur Sikri. These buildings are blend of Mughal and Persian architecture. Fatehpur Sikri consists of beautiful monuments includes, Buland Darwaza (largest gateway in the world), Diwan-i-Khas- Hall, Panch Mahal, Tomb of Salim Chisti, the Palace of Jodha Bai, Birbal Bhawan, Diwan-i-Aam and Karawan Serai.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1572276,\"Long\":78.0102828,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Fatehpur_Sikri_266_1518516693.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":22,\"Title\":\"Agra Fort\",\"Description\":\"Agra Fort is a historical fort in the city of Agra in India, is a UNESCO World Heritage site. It was the main residence of the emperors of the Mughal Dynasty till 1638, when the capital was shifted from Agra to Delhi. The fort is also known as Lal Qila, Fort Rouge and Red Fort of Agra, can be more accurately described as a walled palatial city. It is about 2.5 km northwest of its much more famous sister monument, the Taj Mahal. Agra Fort was built in 1573 by Akbar in Red Sandstone. Some 1,444,000 builders worked on it for eight years. Some of the exquisite structures that deserve a mention are: Sheesh Mahal, Deewan-e-Khaas, Deewan-e-Aam,etc.\",\"CurrencyType\":0,\"CityId\":266,\"CityName\":\"Agra\",\"Lat\":27.1584223,\"Long\":78.0196499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/266\\/sightseeing\\/Agra_Fort_266_1518515684.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":411,\"Title\":\"Delhi City Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6612355,\"Long\":77.2311749,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3548\\/thumb\\/Delhi City Tour_100.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":742,\"Title\":\"Jama Masjid\",\"Description\":\"The Masjid-i Jah&Auml;\\u0081n-Num&Auml;\\u0081 (World-reflecting Mosque), commonly known as the Jama Masjid of Delhi, is one of the largest mosques in India.\\r\\nIt was built by Mughal emperor Shah Jahan between 1644 and 1656 at a cost of 1 million rupees, and was inaugurated by an imam from Bukhara, present-day Uzbekistan. The mosque was completed in 1656 AD with three great gates, four towers and two 40 m high minarets constructed of strips of red sandstone and white marble. The courtyard can accommodate more than 25,000 persons. There are three domes on the terrace which are surrounded by the two minarets. On the floor, a total of 899 black borders are marked for worshippers. The architectural plan of Badshahi Masjid, built by Shah Jahan&#039;s son Aurangzeb at Lahore, Pakistan, is similar to the Jama Masjid, Delhi.\\r\\nThe mosque has been the site of two attacks, one in 2006 and another in 2010. During the first, two explosions occurred in the mosque, injuring thirteen people. In the second, two Taiwanese students were injured as two gunmen opened fire upon them.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.6509222,\"Long\":77.237291,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139509.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1417,\"Title\":\"Raj Ghat\",\"Description\":\"Raj Ghat is a memorial dedicated to Mahatma Gandhi. Originally it was the name of a historic ghat of Old Delhi (Shahjahanabad) on the banks of Yamuna river. Close to it, and east of Daryaganj was Raj Ghat Gate of the walled city, opening at Raj Ghat on Yamuna River. Later the memorial area was also called Raj ghat. It is a black marble platform that marks the spot of Mahatma Gandhi&#039;s cremation, Antyesti (Antim Sanskar) on 31 January 1948, a day after his assassination. It is left open to the sky while an eternal flame burns perpetually at one end. It is located on the banks of the river Yamuna in Delhi in India on Ring Road officially known as Mahatma Gandhi Road. A stone footpath flanked by lawns leads to the walled enclosure that houses the memorial. All guests must remove their footwear before entering the Raj Ghat walls.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5699886,\"Long\":77.1863499,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501139732.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1405,\"Title\":\"Qutub Minar\",\"Description\":\"Qutub Minar is a minaret that forms part of the Qutb complex, a UNESCO World Heritage Site in the Mehrauli area of Delhi, India. Made of red sandstone and marble, Qutub Minar is a 73-metre (240 feet) tall tapering tower of five storeys, with a 14.3 metre (47 feet) base diameter, reducing to 2.7 metres (9 feet) at the peak.It contains a spiral staircase of 379 steps. Its design is thought to have been based on the Minaret of Jam, in western Afghanistan.\\r\\nQutb al-Din Aiak, founder of the Delhi Sultanate, started construction of the Qutub Minar&#039;s first storey around 1192. In 1220, Aibak&#039;s successor and son-in-law Iltutmish completed a further three storeys. In 1369, a lightning strike destroyed the top storey. Firoz Shah Tughlaq replaced the damaged storey, and added one more.\\r\\nThe Minar is surrounded by several historically significant monuments of the Qutb complex, including Quwwat-ul-Islam Mosque, which was built at the same time as the Minar, and the much older Iron Pillar of Delhi.The nearby pillared Cupola known as &quot;Smith&#039;s Folly&quot; is a remnant of the tower&#039;s 19th century restoration, which included an ill-advised attempt to add a sixth storey.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5212083,\"Long\":77.1789831,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1517998350.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":2933,\"Title\":\"Humayun&#039;s Tomb\",\"Description\":\"Humayun&amp;#039;s tomb is the tomb of the Mughal Emperor Humayun in Delhi, India. The tomb was commissioned by Humayun&amp;#039;s first wife and chief consort, Empress Bega Begum, in 1569-70, and designed by Mirak Mirza Ghiyas and his son, Sayyid Muhammad, Persian architects chosen by her.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.5934534,\"Long\":77.250798,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/Humayun&#039;s_Tomb_7701_1550663572.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":701,\"Title\":\"India Gate\",\"Description\":\"The India Gate, (originally called the All India War Memorial), is a war memorial located astride the Rajpath, on the eastern edge of the &acirc;&euro;&tilde;ceremonial axis&acirc;&euro;&trade; of New Delhi, India, formerly called Kingsway. India Gate is a memorial to 82,000 soldiers of the Indian Army who died in the period 1914&acirc;&euro;&ldquo;21 in the First World War, in France, Flanders, Mesopotamia, Persia, East Africa, Gallipoli and elsewhere in the Near and the Far East, and the Third Anglo-Afghan War. 13,300 servicemen&#039;s names, including some soldiers and officers from the United Kingdom, are inscribed on the gate.The India Gate, even though a war memorial, evokes the architectural style of the triumphal arch like the Arch of Constantine, outside the Colosseum in Rome, and is often compared to the Arc de Triomphe in Paris, and the Gateway of India in Mumbai. It was designed by Sir Edwin Lutyens.\\r\\nIn 1971, following the Bangladesh Liberation war, a small simple structure, consisting of a black marble plinth, with a reversed rifle, capped by a war helmet, bounded by four eternal flames, was built beneath the soaring Memorial Archway. This structure, called Amar Jawan Jyoti, or the Flame of the Immortal Soldier, since 1971 has served as India&#039;s Tomb of the Unknown Soldier.\",\"CurrencyType\":0,\"CityId\":7701,\"CityName\":\"Delhi\",\"Lat\":28.623421,\"Long\":77.242501,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/7701\\/sightseeing\\/21_1501138184.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"295605\",\"Title\":\"Arrive Jaipur\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive &lt;strong&gt;Jaipur &lt;\\/strong&gt;and transfer to your hotel.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThe capital of &lt;strong&gt;Rajasthan Jaipur&lt;\\/strong&gt; - popularly known as the &lt;strong&gt;&amp;ldquo;Pink City&amp;rdquo;&lt;\\/strong&gt; as the Pink sandstone was used to construct the buildings in the old walled city. Jaipur owes it&amp;rsquo;s name, it&amp;rdquo;s foundation and it&amp;rsquo;s planning to the Great-Warrior-Astronomer Maharaja Jai Singh II (1699&amp;ndash;1744 AD). Jaipur (City of Victory) was founded by Maharaja Sawai Jai Singh II in 1727. It is the only city in the world symbolising the nine divisions of the Universe through nine rectangular sectors sub-dividing it. The architect who formalised the city&amp;rsquo;s plans on the Shilpa Shastra, the epic Hindu treatise on architecture, mixed it with the sublimity of the Mughal and Jain influences of those times. The city was painted pink in 1853 in honour of the visit by Prince Albert. Except for the busy traffic of bicycles, cars, and buses, little seems to have changed.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAfternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight at Jaipur&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518277,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295606\",\"Title\":\"Jaipur Sightseeing\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast proceed for full day city tour of Jaipur &amp;ndash; visiting &lt;strong&gt;Amer Fort&lt;\\/strong&gt; located at a distance of 11 kilometres from Jaipur and was the old fort of the &lt;strong&gt;Kachhwaha clan of Amber&lt;\\/strong&gt;. It used to be the capital, till it was moved to Jaipur. The fort is built with white marble and red sandstone and looks even more attractive because of the &lt;strong&gt;Maota Lake&lt;\\/strong&gt; in the foreground. The fort in itself is a beautiful sight to behold but as one looks on the fort with its clear reflection on the lake in the front; one cannot help but wonder if it is a dream or a beautiful illusion. An elephant [Subject to availability \\/ alternatively by jeep] will spare you the trouble of climbing up to the fortress. Once on top, stroll through the sprawling complex of courtyards and halls with a well informed and well spoken guide who would regale you with tales of yore.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit the &lt;strong&gt;City of Jaipur&lt;\\/strong&gt;. Among the highlights to be seen while touring Jaipur include the &lt;strong&gt;City Palace&lt;\\/strong&gt;, which is an overwhelming complex of exquisite palaces, gardens and courtyards, decorative art and carved doorways. The palace museum houses collections of rare manuscripts, armours, costumes, carpets and miniature paintings. Walk to the adjacent &lt;strong&gt;Jantar Mantar&lt;\\/strong&gt; or &lt;strong&gt;Astronomical Observatory&lt;\\/strong&gt; made by the Maharaja of Jaipur, built in 1726 and is one of the five such astronomical wonders built by Sawai Jai Singh and makes accurate predictions even to this day. Jaipur is a shopper&amp;rsquo;s paradise. Most of the bazaars are in an old city with a wide range of things to buy, from jewellery (precious and semi-precious stones and handcrafted silver) to textiles to handicrafts and antiques. No doubt, for an avid shopper &amp;ldquo;Jaipur&amp;rdquo; is the choicest of the city to shop and collect memorabilia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Jaipur&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518277,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518278,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30844,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295607\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295608\",\"Title\":\"Jaipur &ndash; Ranthambore (200 KMS) {PARK CLOSED FROM 01 JULY TO 30 SEPTEMBER}\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast drive to &lt;strong&gt;Ranthambore&lt;\\/strong&gt;; Arrive Ranthambore and transfer to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The park is one of the&lt;strong&gt; finest tiger reserves in the country&lt;\\/strong&gt; where more visitors spending a couple of nights are likely to spot one of these majestic animals, &lt;strong&gt;THE ROYAL BENGAL TIGERS&lt;\\/strong&gt;.&amp;nbsp; Once, private tiger reserve of the Maharaja of Jaipur, in 1972 the sanctuary came under the Project Tiger scheme.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;It covers 410 sq. km and runs from the easternmost spur of the Aravalli to the Vindhya Range.&amp;nbsp; It has both the old fort and the wildlife sanctuary, also known as &lt;strong&gt;Sawai Madhopur,&lt;\\/strong&gt; after the town, which has some Jain temples with gilded paintings. Apart from tiger you can see herds of Chital and Sambar deer and sounders of wild boar, Nilgai antelope and Chinkara gazelles. There is also sloth bear, a few leopards and crocodiles. Extensive bird life includes spur fowl, jungle fowl, patridges, quails, crested serpent eagle, woodpeckers, flycatchers etc. There are also water birds like storks, ducks and geese at the lakes and waterholes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon Game Drive&lt;strong&gt; [Not included in the quote]&lt;\\/strong&gt; to Ranthambore National Park.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Ranthambore&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518714,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518715,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":6035,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295609\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":22593,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295610\",\"Title\":\"Ranthambore - Agra (300 KMS) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Early morning &lt;strong&gt;Game Drive [Not included in the quote]&lt;\\/strong&gt; into the Park where your naturalist will talk to you about the wildlife found in this Park. &lt;strong&gt;Ranthambhore National Park&lt;\\/strong&gt; is probably the best place in the world to see wild tigers and is the only dry deciduous tiger habitat in the world. In game drive your naturalist will help you explore the park in the search of The Royal Bengal Tiger.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;After Game Drive, return to the hotel for breakfast. Later drive to &lt;strong&gt;Agra&lt;\\/strong&gt; enroute visiting &lt;strong&gt;Fatehpur Sikri&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Fatehpur Sikri&lt;\\/strong&gt; - the deserted red sandstone city was built by the Great Mughal Emperor, Akbar, as his capital and palace in the late 16th century. &amp;nbsp;It was abandoned soon after it was built when the local wells went dry and it remains today in much the same condition that it was over 300 years ago. &amp;nbsp;It is complete with palaces and mosques and used to be a town larger than London when it was originally constructed. Now it is an extraordinary place to wander around with its buildings in near perfect condition.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later continue drive to &lt;strong&gt;Agra&lt;\\/strong&gt;.&amp;nbsp; Arrive Agra and transfer to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Agra came into limelight during the rule of&amp;nbsp;Afghan King Sikandar Lodhi - who had made it the&amp;nbsp;capital of his empire. Later in 1526 A.D., the Mughal Emperor Babar took&amp;nbsp;upon himself the task for rendering&amp;nbsp;Agra, a unique&amp;nbsp;character and beauty of its own. Agra - in terms of ambiance is still associated with its Mughal period. The Mughals besides being great rulers were also great builders and they preserved their best architectural wonders for Agra &amp;amp; its neighbourhood. It has many wonderful monuments and the Taj Mahal, the greatest of them all, is a masterpiece of Mughal architecture at its best.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Agra&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":21583,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":499,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":22,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295611\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":5,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":266,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295612\",\"Title\":\"Agra &ndash; Delhi (203 KMS) \",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast proceed for half day city tour of Agra.&lt;strong&gt; The Taj Mahal (closed on Friday) - The Taj Mahal&lt;\\/strong&gt; is everything that has been said about it and more. Built by the Mughal Emperor Shah Jahan as an expression of his love for his wife Mumtaz Mahal, in mid-17th century, the Taj Mahal is truly one of the wonders of the world. Though the Taj appears to be amazingly perfect from almost any angle, it is the close-up marble inlay work, which is really astounding.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit The Agra Fort, an outstanding example of Mughal architecture. Agra Fort - the seat and the stronghold of the Mughal Empire under successive generations. This was the seat of Mughal rule. Shahjahan added the impressive quarters and the mosque while Aurangzeb added the outer ramparts. Visit its Hall of Public Audience and its Royal Pavilions. Besides the historical monuments, one can also explore Agra&amp;rsquo;s rich heritage of handicrafts in its markets.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Also visit Itmad ud Daula -This tomb was built in 1622 for Ghiyas Beg, father of Empress Noor-Jahan, the wife of Emperor Jahangir. It is beautifully conceived in white marble, mosaic and lattice and set a precedent as the first Mughal building to be faced with white marble inlaid with contrasting stones. Sometimes also called &amp;lsquo;Baby Taj&amp;rsquo;, it is small, intimate and has a gentle serenity.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later drive to &lt;strong&gt;Delhi;&lt;\\/strong&gt; arrive Delhi and transfer to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;India&amp;rsquo;s capital and a major gateway to the country, contemporary Delhi is a bustling metropolis, which successfully combines in its folds - the ancient with the modern. Amidst the fast spiralling skyscrapers the remnants of a bygone time in the form of its many monuments stand as silent reminders to the region&amp;rsquo;s ancient legacy. The first impressions for any visitor traveling in from the airport are of a spacious, garden city, tree-lined with a number of beautiful parks.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":214675,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":213955,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":411,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295613\",\"Title\":\"Depart Delhi\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast proceed for tour of &lt;strong&gt;Old and New Delhi&lt;\\/strong&gt;. Old Delhi, the Mughal Capital of Shahjahanabad. Visit the &lt;strong&gt;Jama Masjid&lt;\\/strong&gt; which is the principal mosque of Old Delhi in India. Commissioned by the Mughal Emperor Shah Jahan, builder of the Taj Mahal, and completed in the year 1656 AD, it is the largest and best-known mosque in India. It lies at the origin of a very busy central street of Old Delhi, the Chawri Bazar Road. The mosque of Friday was built from 1644 to 1658 during the reign of Shahjahan. The mosque is 80 m long and 27 m wide.&amp;nbsp; The courtyard can accommodate 25,000 worshippers and occupies 408 square feet.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later we proceed to visit &lt;strong&gt;Raj Ghat &lt;\\/strong&gt;where Mahatma Gandhi &amp;ndash; The Father of Nation, was cremated and drive past the Red Fort [ from outside] - the palace for Shahjahan&amp;rsquo;s new capital, Shahjahanabad, the seventh Muslim city in the Delhi site. Wander in the busy streets of the mile long Chandni Chowk, popularly called &amp;ldquo;The Silver Street&amp;rdquo;. Enjoy the &amp;lsquo;Cycle Rickshaw&amp;rsquo; ride in Old Delhi.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;In the afternoon proceed for tour of New Delhi, which reflects the legacy the British left behind. The division between New and Old Delhi is the division between the capitals of the British and the Mughals respectively. The division in the walled city and New Delhi also marks the division in the life-styles. The walled city is all tradition where one will be able to glean a past life-style in all its facets, colours and spells. New Delhi in contrast, is a city trying to live up to the best of 21st century standards.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The tour to Imperial Delhi will start by visit to the &lt;strong&gt;Qutab Minar&lt;\\/strong&gt;, the tallest stone tower in India.&amp;nbsp; The Qutab Minar was started in 1199 AD by Qutab-ud-Din Aibak and completed by the sultan&amp;#39;s successor and son-in-law, Iltutmish. The building is 72.5 m high and has 379 steps from the bottom to the top. The Minar is tapering with the diameter of the base is 14.3 m while at the top floor it is 2.7 m.&amp;nbsp; The Qutab Minar is still the highest stone tower as well as one of the finest Islamic structures ever raised in India.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit &lt;strong&gt;Humayun&amp;rsquo;s Tomb&lt;\\/strong&gt;, built by the widow of the second Mughal Emperor, Humayun, it is an outstanding monument in the Indo-Persian style, a precursor of the Taj Mahal.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Drive past the imposing &lt;strong&gt;India Gate&lt;\\/strong&gt;, the &lt;strong&gt;Parliament building&lt;\\/strong&gt; and the &lt;strong&gt;Rashtrapati Bhawan&lt;\\/strong&gt;, the President&amp;rsquo;s residence.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later in time transfer to Delhi Airport \\/ Railway Station to board your flight \\/ train for onward journey to your next destination.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":7701,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":742,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1417,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1405,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":2933,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":701,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40987\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"28000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28000,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":28000,\"priceExtraBed\":\"28000.00\",\"priceWithoutBed\":\"28000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28000,\"CEB\":28000,\"COSTDO\":28000,\"COSTSO\":null,\"ACEB\":28000,\"COSTTO\":28000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28000,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":28000,\"priceExtraBed\":\"28000.00\",\"priceWithoutBed\":\"28000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28000,\"CEB\":28000,\"COSTDO\":28000,\"COSTSO\":null,\"ACEB\":28000,\"COSTTO\":28000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":28000,\"priceDoubleOcc\":\"28000.00\",\"priceSingleOcc\":28000,\"priceExtraBed\":\"28000.00\",\"priceWithoutBed\":\"28000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":28000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28000,\"CEB\":28000,\"COSTDO\":28000,\"COSTSO\":null,\"ACEB\":28000,\"COSTTO\":28000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26667,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":26000,\"priceExtraBed\":\"28000.00\",\"priceWithoutBed\":\"28000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28000,\"CEB\":28000,\"COSTDO\":26000,\"COSTSO\":null,\"ACEB\":28000,\"COSTTO\":28000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25333,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"28000.00\",\"priceWithoutBed\":\"28000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28000,\"CEB\":28000,\"COSTDO\":24000,\"COSTSO\":null,\"ACEB\":28000,\"COSTTO\":28000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24000,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":22000,\"priceExtraBed\":\"28000.00\",\"priceWithoutBed\":\"28000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":28000,\"CEB\":28000,\"COSTDO\":22000,\"COSTSO\":null,\"ACEB\":28000,\"COSTTO\":28000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"40987\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26500,\"priceDoubleOcc\":\"26500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"26500.00\",\"priceWithoutBed\":\"26500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26500,\"CEB\":26500,\"COSTDO\":26500,\"COSTSO\":null,\"ACEB\":26500,\"COSTTO\":26500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26500,\"priceDoubleOcc\":\"26500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"26500.00\",\"priceWithoutBed\":\"26500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26500,\"CEB\":26500,\"COSTDO\":26500,\"COSTSO\":null,\"ACEB\":26500,\"COSTTO\":26500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26500,\"priceDoubleOcc\":\"26500.00\",\"priceSingleOcc\":26500,\"priceExtraBed\":\"26500.00\",\"priceWithoutBed\":\"26500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26500,\"CEB\":26500,\"COSTDO\":26500,\"COSTSO\":null,\"ACEB\":26500,\"COSTTO\":26500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":25167,\"priceDoubleOcc\":\"24500.00\",\"priceSingleOcc\":24500,\"priceExtraBed\":\"26500.00\",\"priceWithoutBed\":\"26500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26500,\"CEB\":26500,\"COSTDO\":24500,\"COSTSO\":null,\"ACEB\":26500,\"COSTTO\":26500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23833,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":\"26500.00\",\"priceWithoutBed\":\"26500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26500,\"CEB\":26500,\"COSTDO\":22500,\"COSTSO\":null,\"ACEB\":26500,\"COSTTO\":26500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":22500,\"priceDoubleOcc\":\"20500.00\",\"priceSingleOcc\":20500,\"priceExtraBed\":\"26500.00\",\"priceWithoutBed\":\"26500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26500,\"CEB\":26500,\"COSTDO\":20500,\"COSTSO\":null,\"ACEB\":26500,\"COSTTO\":26500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;KINDLY NOTE THAT DIWALI PERIOD FROM&amp;nbsp; 20 OCT 05 NOV 2022 &amp;amp; 23 DEC 2022 TO 05 JAN 2023 ON MAP BASIS. COST SHALL BE ADDITIONAL. THE ABOVE RATE IS NOT VALID DURING THE DIWALI PERIODS AND X- MAS &amp;amp; NEW YEAR PERIODS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"295605\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[295605],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295606\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[295606],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295607\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[295607],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295608\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[295608],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295609\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[295609],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295610\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[295610],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295611\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[295611],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295612\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[295612],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295613\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[295613],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Jaipur,Ranthambore,Agra,Delhi','Jaipur,Rajasthan,Indian Subcontinent,North India,India,Ranthambore,Agra,Uttar Pradesh,Delhi',NULL,'12995,22593,266,7701',20500,28000,5,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-09-01 17:41:13','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'rajasthan-tiger-trails-5n-6d',NULL,NULL,NULL,0),(67,41009,1,12577,1,0,0,'Adventure,Family,Heritage,Culture,Romantic,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":41009,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/highlights_of_rajasthan-_5n6d_1662033972.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Rajasthan &lt;\\/strong&gt;is located in northwestern India, bounded on the west and northwest by Pakistan and shares domestic borders with the states of Punjab, Haryana, Uttar Pradesh, Madhya Pradesh and Gujarat. With a land area of 342,239 sq km, Rajasthan is the largest state in India geographically.8&amp;nbsp;The state is divided into 33 districts and comprises nine regions &amp;ndash; Ajmer State, Hadoti, Dhundhar, Gorwar, Shekhawati, Mewar, Marwar, Vagad and Mewat.9&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;The western part of Rajasthan is relatively dry and infertile. Rajasthan is home to the Thar Desert, also known as the Great Indian Desert, and the Chambal River, which is solely responsible for the water supply in the region.10&amp;nbsp;Jaipur, Udaipur, Kota and Ajmer are known as the four smart cities in Rajasthan.11&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Udaipur\",\"DestinationPlacesSysId\":28058,\"SourcePlaces\":\"Jaipur\",\"SourcePlaceSysId\":12995,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Highlights of Rajasthan- 5N\\/6D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10856\",\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast\",\"PackageType\":\"Adventure,Family,Heritage,Culture,Romantic,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":12995,\"Title\":\"Jaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518744,\"Name\":\"Treebo Trend Hotel Istana Inn\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.9003803\",\"Long\":\"75.75593959999999\",\"Address\":\"B-142, Vidyut Nagar B, Vidhyut Nagar, Jaipur, Rajasthan 302019, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":518745,\"Name\":\"Hotel Liv Inn\",\"Star\":\".00\",\"Rating\":\"3.90\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.85168669999999\",\"Long\":\"75.80148489999999\",\"Address\":\"Sanyam Marg, Jawahar Lal Nehru Marg, Adinath Nagar, Jaipur, Rajasthan 302017, India\"},\"Images\":[],\"CityId\":12995,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":398,\"Title\":\"Dargah Ajmer Sharif\",\"Description\":\"The shrine has the grave (Maqbara) of the revered saint, Moinuddin Chisti. The dargah of Moinuddin Chishti , is an international waqf.\",\"CurrencyType\":0,\"CityId\":367,\"CityName\":\"Ajmer\",\"Lat\":26.4498954,\"Long\":74.6399163,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/367\\/sightseeing\\/Dargah_Ajmer_Sharif_367_1528801889.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1396,\"Title\":\"Pushkar City Tour\",\"Description\":\"Pushkar is a must visit place as it has got a different charm in itself and serves as the most mesmerising  view giver. All the areas in Pushkar are a worth seeing\",\"CurrencyType\":0,\"CityId\":22270,\"CityName\":\"Pushkar\",\"Lat\":26.489749,\"Long\":74.5510856,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6433\\/thumb\\/Pushkar City Tour_127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1447,\"Title\":\"Ranakpur Jain Temple\",\"Description\":\"Ranakpur Jain temple or Chaturmukha Dharanavihara is a Jain temple at Ranakpur is dedicated to Tirthankara Rishabhanatha. Dharna Shah, a local Jain businessperson, started construction of the temple in the 15th century following a divine vision. The temple honors Adinath, the first Tirthankar of the present half-cycle according to Jain cosmology. The town of Ranakpur and the temple are named after the provincial ruler monarch, Rana Kumbha who supported the construction of the temple. The Ranakpur temple is one of the largest and most important temples of Jain culture. The temple is located in a village of Ranakpur near Sadri town in the Pali district of Rajasthan. The campus includes various temples such as Chaumukha temple, Surya temple, Parsavanth temple and Amba temple.\",\"CurrencyType\":0,\"CityId\":22558,\"CityName\":\"Ranakpur\",\"Lat\":27.0238036,\"Long\":74.2179326,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22558\\/sightseeing\\/Ranakpur_Jain_Temple_22558_1549612463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1825,\"Title\":\"Udaipur City Tour\",\"Description\":\"A magnificent compositional wonder towering over the lake on a slope encompassed by crenallated dividers, it is an aggregation of yards, structures, porches, halls, rooms and hanging gardens. The fundamental passage is through the triple curved entryway, the &amp;quot;Tripolia&amp;quot; with eight marble patios. The maharanas were weighed under the entryway in gold, the equal measure of which was circulated among the masses. The Suraj Gokhada, the overhang of the sun, is the place the Suryavanshi Maharanas of Mewar introduced themselves to the general population in a bad position to reestablish their certainty. The &amp;#039;Mor Chowk&amp;#039; known for its perfect peacock mosaics in glass and the &amp;#039;Chini Chitrashala&amp;#039; noted for its blue and white earthenware production are different attractions in the Palace.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.585445,\"Long\":73.712479,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Udaipur_City_Tour_28058_1529403131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}},{\"CityId\":13184,\"Title\":\"Jodhpur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":423414,\"Name\":\"The Prem Beacon Jodhpur\",\"Star\":\"3.50\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"26.2789\",\"Long\":\"73.028\",\"Address\":\"71-B\\/1 Pali Road, Bheruji Circle, Bhagat ki kothi, Jodhpur 342001\"},\"Images\":[],\"CityId\":13184,\"Brief\":\"&lt;p&gt;&lt;b&gt;Property Location&lt;\\/b&gt; &lt;br \\/&gt;Located in Jodhpur, The Prem Beacon Jodhpur is close to Oriental Art Gallery and Mata Temple.  This hotel is within close proximity of Ashapurna Mall and Saint Andrews Hall Church.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Rooms&lt;\\/b&gt; &lt;br \\/&gt;Make yourself at home in one of the 14 air-conditioned rooms featuring LED televisions. Complimentary wireless Internet access keeps you connected, and digital programming is available for your entertainment. Bathrooms have showers and complimentary toiletries. Conveniences include phones and desks, and housekeeping is provided on a limited basis.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Dining&lt;\\/b&gt; &lt;br \\/&gt;Enjoy a meal at a restaurant, or stay in and take advantage of the hotel&#039;s 24-hour room service.&lt;\\/p&gt;&lt;p&gt;&lt;b&gt;Business, Other Amenities&lt;\\/b&gt; &lt;br \\/&gt;Free self parking is available onsite.&lt;\\/p&gt;\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"1010000000001000000\",\"AccoAminities\":[{\"AminityId\":2,\"Title\":\"Restaurant\"},{\"AminityId\":12,\"Title\":\"Room Service\"}],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":398,\"Title\":\"Dargah Ajmer Sharif\",\"Description\":\"The shrine has the grave (Maqbara) of the revered saint, Moinuddin Chisti. The dargah of Moinuddin Chishti , is an international waqf.\",\"CurrencyType\":0,\"CityId\":367,\"CityName\":\"Ajmer\",\"Lat\":26.4498954,\"Long\":74.6399163,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/367\\/sightseeing\\/Dargah_Ajmer_Sharif_367_1528801889.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1396,\"Title\":\"Pushkar City Tour\",\"Description\":\"Pushkar is a must visit place as it has got a different charm in itself and serves as the most mesmerising  view giver. All the areas in Pushkar are a worth seeing\",\"CurrencyType\":0,\"CityId\":22270,\"CityName\":\"Pushkar\",\"Lat\":26.489749,\"Long\":74.5510856,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6433\\/thumb\\/Pushkar City Tour_127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1447,\"Title\":\"Ranakpur Jain Temple\",\"Description\":\"Ranakpur Jain temple or Chaturmukha Dharanavihara is a Jain temple at Ranakpur is dedicated to Tirthankara Rishabhanatha. Dharna Shah, a local Jain businessperson, started construction of the temple in the 15th century following a divine vision. The temple honors Adinath, the first Tirthankar of the present half-cycle according to Jain cosmology. The town of Ranakpur and the temple are named after the provincial ruler monarch, Rana Kumbha who supported the construction of the temple. The Ranakpur temple is one of the largest and most important temples of Jain culture. The temple is located in a village of Ranakpur near Sadri town in the Pali district of Rajasthan. The campus includes various temples such as Chaumukha temple, Surya temple, Parsavanth temple and Amba temple.\",\"CurrencyType\":0,\"CityId\":22558,\"CityName\":\"Ranakpur\",\"Lat\":27.0238036,\"Long\":74.2179326,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22558\\/sightseeing\\/Ranakpur_Jain_Temple_22558_1549612463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1825,\"Title\":\"Udaipur City Tour\",\"Description\":\"A magnificent compositional wonder towering over the lake on a slope encompassed by crenallated dividers, it is an aggregation of yards, structures, porches, halls, rooms and hanging gardens. The fundamental passage is through the triple curved entryway, the &amp;quot;Tripolia&amp;quot; with eight marble patios. The maharanas were weighed under the entryway in gold, the equal measure of which was circulated among the masses. The Suraj Gokhada, the overhang of the sun, is the place the Suryavanshi Maharanas of Mewar introduced themselves to the general population in a bad position to reestablish their certainty. The &amp;#039;Mor Chowk&amp;#039; known for its perfect peacock mosaics in glass and the &amp;#039;Chini Chitrashala&amp;#039; noted for its blue and white earthenware production are different attractions in the Palace.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.585445,\"Long\":73.712479,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Udaipur_City_Tour_28058_1529403131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}},{\"CityId\":28058,\"Title\":\"Udaipur\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518751,\"Name\":\"Hotel Shambhu Villas\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"24.5745675\",\"Long\":\"73.6897461\",\"Address\":\"Lake Palace Rd, Old City, Kalaji Goraji, Udaipur, Rajasthan 313001, India\"},\"Images\":[],\"CityId\":28058,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":30844,\"Title\":\"Amer Fort\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":358,\"Title\":\"City Palace\",\"Description\":\"City Palace Located in the heart of the Pink City Jaipur, the City Palace was where the Maharaja reigned from. This palace also includes the famous &amp;#039;Chandra Mahal&amp;#039; and &amp;#039;Mubarak Mahal&amp;#039;, and other buildings which form a part of the palace complex. The palace is located towards the northeast side of central Jaipur and has many courtyards and buildings. The palace was built between 1729 and 1732 AD by Sawai Jai Singh II. He ruled in Amer and planned and built the outer walls of the palace and later rulers added to the architecture of this palace. These additions have been known to take place right up to the 20th century. The urban layout of the city of Jaipur was commissioned to Vidyadhar Bhattacharya and Sir Samuel Swinton Jacob. The architectural styles are largely based on a fusion of Rajput, Mughal and European styles. Today, the &amp;#039;Chandra Mahal&amp;#039; has been turned into a museum which is home to unique handcrafted products, various uniforms of the rulers and many more things pertaining to the royal heritage of the City Palace.\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9260296,\"Long\":75.8238895,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/34_1513173523.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":750,\"Title\":\"Jantar Mantar\",\"Description\":\"Jantar Mantar is the largest of the five observatories built by Sawai Raja Jai Singh. Located in the city of Jaipur, Jantar Mantar draws its name from Sanskrit terms &amp;#039;yantra&amp;#039; and &amp;#039;mantra&amp;#039;. The former term means instrument while the latter means formulae. Built between the period of 1728-34, the Jantar Mantar is based on the astronomical studies conducted by Sawai Jai Singh and his men around the world. One of his men brought a manual which was a copy of La Hire&amp;#039;s &amp;quot;Tables&amp;quot;. Accordingly, Jai Singh ordered the construction of the observatories based on the information provided in this manual. Jai Singh had to make choice regarding the material used for the construction of the observatory. He had the option of using either metal or masonry instruments and he preferred the latter to the former. Infact, he himself designed the stone and masonry instruments of the observatory. \\r\\nRs. 40 per person for Indians\\r\\nRs. 15 per person for students\\r\\nRs. 200 per person for foreign tourists\",\"CurrencyType\":0,\"CityId\":12995,\"CityName\":\"Jaipur\",\"Lat\":26.9124336,\"Long\":75.7872709,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/12995\\/sightseeing\\/Jantar_Mantar_12995_1519713338.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":398,\"Title\":\"Dargah Ajmer Sharif\",\"Description\":\"The shrine has the grave (Maqbara) of the revered saint, Moinuddin Chisti. The dargah of Moinuddin Chishti , is an international waqf.\",\"CurrencyType\":0,\"CityId\":367,\"CityName\":\"Ajmer\",\"Lat\":26.4498954,\"Long\":74.6399163,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/367\\/sightseeing\\/Dargah_Ajmer_Sharif_367_1528801889.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1396,\"Title\":\"Pushkar City Tour\",\"Description\":\"Pushkar is a must visit place as it has got a different charm in itself and serves as the most mesmerising  view giver. All the areas in Pushkar are a worth seeing\",\"CurrencyType\":0,\"CityId\":22270,\"CityName\":\"Pushkar\",\"Lat\":26.489749,\"Long\":74.5510856,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/6433\\/thumb\\/Pushkar City Tour_127.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1360,\"Title\":\"Pichola Lake\",\"Description\":\"Pichola Lake is one of the most beautiful and picturesque lakes of Rajasthan, India. Located in the heart of the city, Pichola Lake is the oldest and one of the largest lakes of Udaipur. In 1362, the beautiful lake was built by Pichhu Banjara during the ruling period of Maharana Lakha. Talking about the dimensions of Pichhola Lake, it is extended to 3 miles in length, 2 miles in width and has depth of 30 feet.The beauty of this lake has not separated anyone to attract towards it. The lake looks more enchanting with its scenic surroundings. Maharana Udai Singh must have been certainly captivated by the charm of this pristine lake with the perfect backdrop of lush green hills as when he founded the city of Udaipur, he enlarged this lake. He also constructed a dam made in stone that falls under the &amp;#039;Badipol&amp;#039; region on the shore of this lake.Pichola Lake is enveloped by lofty Palaces, temples, bathing ghats and elevated hills on all its sides. In the southern part of this lake, there is a hill that is known as Machhala Magra and one can see glimpse of Eklinggarh Fort from here. The City Palace of Udaipur broadens along the eastern banks of this lake. Built by Jagat Singh, Mohan Mandir is situated in the north-east corner of Lake Pichola\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Pichola_Lake_28058_1529404247.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1113,\"Title\":\"Mehrangarh Fort\",\"Description\":\"It is one of the largest forts in the country. It is situated at the top of a 410 feet elevated hill and guarded by massive walls. The intricate carvings on the walls of the fort, the sprawling courtyards, its impressive history, striking palaces, museums and galleries allures tourists from all over the world.\",\"CurrencyType\":0,\"CityId\":13184,\"CityName\":\"Jodhpur\",\"Lat\":26.2964287,\"Long\":73.0154376,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/36\\/thumb\\/Mehrangarh Fort_364.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1447,\"Title\":\"Ranakpur Jain Temple\",\"Description\":\"Ranakpur Jain temple or Chaturmukha Dharanavihara is a Jain temple at Ranakpur is dedicated to Tirthankara Rishabhanatha. Dharna Shah, a local Jain businessperson, started construction of the temple in the 15th century following a divine vision. The temple honors Adinath, the first Tirthankar of the present half-cycle according to Jain cosmology. The town of Ranakpur and the temple are named after the provincial ruler monarch, Rana Kumbha who supported the construction of the temple. The Ranakpur temple is one of the largest and most important temples of Jain culture. The temple is located in a village of Ranakpur near Sadri town in the Pali district of Rajasthan. The campus includes various temples such as Chaumukha temple, Surya temple, Parsavanth temple and Amba temple.\",\"CurrencyType\":0,\"CityId\":22558,\"CityName\":\"Ranakpur\",\"Lat\":27.0238036,\"Long\":74.2179326,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/22558\\/sightseeing\\/Ranakpur_Jain_Temple_22558_1549612463.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":359,\"Title\":\"City Palace\",\"Description\":\"This magnificent palace was built by Maharana Udai Singh, the beauty of which can&amp;rsquo;t be described in words. An accumulation of several buildings with balconies, towers, and dome built all over, the City Palace also have a crystal gallery, which showcases royal artifacts and the world&amp;rsquo;s largest private collection of crystals. It is one of Rajasthan&amp;rsquo;s royal palaces which offer splendid views of Lake Pichola. Mewar Sound and Light Show is the must watch show which gives you a great experience.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.58,\"Long\":73.68,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/City_Palace_28058_1529406605.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null},{\"RefSSId\":1825,\"Title\":\"Udaipur City Tour\",\"Description\":\"A magnificent compositional wonder towering over the lake on a slope encompassed by crenallated dividers, it is an aggregation of yards, structures, porches, halls, rooms and hanging gardens. The fundamental passage is through the triple curved entryway, the &amp;quot;Tripolia&amp;quot; with eight marble patios. The maharanas were weighed under the entryway in gold, the equal measure of which was circulated among the masses. The Suraj Gokhada, the overhang of the sun, is the place the Suryavanshi Maharanas of Mewar introduced themselves to the general population in a bad position to reestablish their certainty. The &amp;#039;Mor Chowk&amp;#039; known for its perfect peacock mosaics in glass and the &amp;#039;Chini Chitrashala&amp;#039; noted for its blue and white earthenware production are different attractions in the Palace.\",\"CurrencyType\":0,\"CityId\":28058,\"CityName\":\"Udaipur\",\"Lat\":24.585445,\"Long\":73.712479,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/28058\\/sightseeing\\/Udaipur_City_Tour_28058_1529403131.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            \",\"SupplierSysId\":10856,\"SupplierName\":\"Rajasthan Routes Trails Pvt. Ltd.\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"295733\",\"Title\":\"Arrive Jaipur\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrive &lt;strong&gt;Jaipur &lt;\\/strong&gt;and transfer to your hotel.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nThe capital of &lt;strong&gt;Rajasthan Jaipur&lt;\\/strong&gt; - popularly known as the &lt;strong&gt;&amp;ldquo;Pink City&amp;rdquo;&lt;\\/strong&gt; as the Pink sandstone was used to construct the buildings in the old walled city. Jaipur owes it&amp;rsquo;s name, it&amp;rdquo;s foundation and it&amp;rsquo;s planning to the Great-Warrior-Astronomer Maharaja Jai Singh II (1699&amp;ndash;1744 AD). Jaipur (City of Victory) was founded by Maharaja Sawai Jai Singh II in 1727. It is the only city in the world symbolising the nine divisions of the Universe through nine rectangular sectors sub-dividing it. The architect who formalised the city&amp;rsquo;s plans on the Shilpa Shastra, the epic Hindu treatise on architecture, mixed it with the sublimity of the Mughal and Jain influences of those times. The city was painted pink in 1853 in honour of the visit by Prince Albert. Except for the busy traffic of bicycles, cars, and buses, little seems to have changed.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nAfternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight at Jaipur&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295734\",\"Title\":\"IN JAIPUR \",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;After breakfast proceed for full day city tour of Jaipur &amp;ndash; visiting &lt;strong&gt;Amer Fort&lt;\\/strong&gt; located at a distance of 11 kilometres from Jaipur and was the old fort of the Kachhwaha clan of Amber. It used to be the capital, till it was moved to Jaipur. The fort is built with white marble and red sandstone and looks even more attractive because of the Maota Lake in the foreground. The fort in itself is a beautiful sight to behold but as one looks on the fort with its clear reflection on the lake in the front; one cannot help but wonder if it is a dream or a beautiful illusion. An elephant [Subject to availability\\/alternatively by jeep] will spare you the trouble of climbing up to the fortress. Once on top, stroll through the sprawling complex of courtyards and halls with a well informed and well spoken guide who would regale you with tales of yore.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later visit the City of Jaipur. Among the highlights to be seen while touring Jaipur include the &lt;strong&gt;City Palace&lt;\\/strong&gt;, which is an overwhelming complex of exquisite palaces, gardens and courtyards, decorative art and carved doorways. The palace museum houses collections of rare manuscripts, armours, costumes, carpets and miniature paintings. Walk to the adjacent&lt;strong&gt; Jantar Mantar or Astronomical Observatory&lt;\\/strong&gt; made by the Maharaja of Jaipur, built in 1726 and is one of the five such astronomical wonders built by Sawai Jai Singh and makes accurate predictions even to this day. Jaipur is a shopper&amp;rsquo;s paradise. Most of the bazaars are in an old city with a wide range of things to buy, from jewellery (precious and semi-precious stones and handcrafted silver) to textiles to handicrafts and antiques. No doubt, for an avid shopper &amp;ldquo;Jaipur&amp;rdquo; is the choicest of the city to shop and collect memorabilia.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight at Jaipur&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518744,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":518745,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":30844,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":358,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":750,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295735\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":12995,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295736\",\"Title\":\"JAIPUR &ndash; AJMER &ndash; PUSHKAR &ndash; JODHPUR (400 KMS)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast drive to&lt;strong&gt; Jodhpur&lt;\\/strong&gt; enroute visit &lt;strong&gt;Ajmer &amp;amp; Pushkar&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Ajmer&lt;\\/strong&gt; was founded in the 11th century by Chauhan ruler Ajaipal and is dominated by the &lt;strong&gt;Taragarh fort&lt;\\/strong&gt;. It is a major centre for Muslim pilgrims during the month of Ramzan, being home to the Dargah of Sufi saint Khwaja Moin-ud-din Chishti. Seven pilgrimages to Ajmer are supposed to equal one to Mecca. Ajmer has some superb examples of early Muslim architecture and a lively bazaar and is located conveniently close to Pushkar. Visit the Dargah (tomb) of Khwaja Moin-ud-din Chishti and the Ana Sagar Lake.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later drive to &lt;strong&gt;Pushkar&lt;\\/strong&gt;; at its heart is one of India&amp;rsquo;s most sacred lakes. There are 52 ghats around the lake, and numerous temples. The Brahma temple, especially, attracts pilgrims all year around. Apart from its religious significance, Pushkar is known for its Cattle and Camel fair held every year in the month of Kartik which attracts visitors in thousands. You can also witness and participate in the evening prayer meetings in the temples. Being a religious town, alcohol and non-vegetarian food are taboo. Pushkar separated from Ajmer by Nag Pahar, the snake mountain. This traveller-friendly town clings to the side of the small Pushkar Lake with its many bathing ghats and temples. For Hindus, Pushkar is a very important pilgrimage centre, and you&amp;#39;ll see plenty of Sadhus (individuals on a spiritual search). Pushkar boasts of temples, the most famous being the Brahma Temple, said to be one of the few temples in the world dedicated to this deity. Read a brief on the Pushkar Fair here Later continue to drive to Jodhpur; Arrive to the &lt;strong&gt;Blue City &amp;ndash; Jodhpur&lt;\\/strong&gt; and transfer to your hotel.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;An oasis in the arid Thar Desert, Jodhpur is the second largest city in the state of Rajasthan. Representing this colourful city with shades of blue, Jodhpur has a history that is rich and a present that beckons strongly to the discerning tourist. Forts and palaces, temples and havelis, culture and tradition, spices, and fabrics, colour and texture, Jodhpur has them all and in plenty. Situated in Western Rajasthan, Jodhpur has long attracted both the domestic and international tourist. It not only offers tangibles, in terms of what you can see and buy but also fills one with a sense of history and the splendour of an era gone by. The hospitality of the locals, the demure women, and the colourful turbans -all set against the beloved desert (Marwar) is something to feel, not just see. Every pore of Jodhpur tells its own tales of heroic deeds that made legends out of kings and soldiers, romances that continue to warm the heart and a time when epics were lived out on the streets by everyday man.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Jodhpur&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":423414,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":398,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1396,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295737\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":4,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13184,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295738\",\"Title\":\"JODHPUR &ndash; RANAKPUR &ndash; UDAIPUR (300 KMS)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast proceed for city tour of &lt;strong&gt;Jodhpur&lt;\\/strong&gt;. Visit the &lt;strong&gt;Mehrangarh Fort&lt;\\/strong&gt;, situated on a low sandstone hill. The palace apartments like Sukh Mahal, Phool Mahal, and Sheesh Mahal etc are beautifully decorated and house Jewellery, costumes, armoury, palanquins, howdahs and other remnants of the past.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;See the Jaswant Thada, an imposing marble memorial to Maharaja Jaswant Singh II built in 1899. Later the royal crematorium and three other cenotaphs were also built here. Also visit Sardar Bazaar and Clock Tower markets where you can see the vegetable, spice, Indian sweets, and textile and silver markets. These colourful markets with tiny shops dot the narrow lanes replete with woodcarvings, wrought iron, lacquer work, silver and ivory ornamentation and leather handicrafts.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later continue to drive to Udaipur enroute visiting &lt;strong&gt;Ranakpur&lt;\\/strong&gt; &amp;ndash; It is the largest Jain temple complex in India and dates to the 15th century. The main temple is dedicated to Adinath, the first Tirthankar. Intricate carvings detail mythological figures, patterns and motifs on the walls, pillars, and domes. There are 1444 ornately carved marble pillars in the complex and none of them are similar. The beautiful lace-like interiors of the domes are a superb example of western Indian temple style.&amp;nbsp; Surya temple and other Jain temples are side attractions. (Temples open only at 1200 Hrs. Leather belts, footwear, bare legs, and black clothing not allowed).&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later drive to &lt;strong&gt;Udaipur&lt;\\/strong&gt;; Arrive Udaipur and transfer to your hotel. Set on the shores of Lake Pichola and surrounded by hills, Udaipur grew in complete contrast to the harsh deserts of the rest of Rajasthan. As capital of the old Mewar State it was the only Rajput stronghold to uphold its Hindu allegiance in the face of Muslim invasion. This fairy &amp;ndash; tale city, with its marble palaces and lakes surrounded by a ring of hills, was founded by Maharana Udai Singh in 1559. The city is dominated by massive City Palace, which overlooks Lake Pichola with its romantic island palaces. Picturesque havelis, ghats and temples line the lake front, with the lively bazaars of the old walled city stretching behind them.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Afternoon is free to walk around in the colorful and bustling bazaars for personal exploration or shopping.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Udaipur&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518751,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1360,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1113,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1447,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295739\",\"Title\":\"IN UDAIPUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast proceed for half day city tour of &lt;strong&gt;Udaipur&lt;\\/strong&gt; &amp;ndash; visiting the &lt;strong&gt;City Palace and Museum&lt;\\/strong&gt;. The largest palace complex in India, it is a blend of Mughal and Rajput influences. Also, see the 17th century Jagdish temple, drive around the Fatehsagar Lake, and visit the Sahelion ki Bari (the Garden for the Maids of Honour), an ornamental pleasure garden with fountains and marble kiosks. Later visit the Bharatiya Lok Kala Mandir or the Folk Art Museum.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later in the evening take a boat ride on the 4 km long and 3 km wide Lake Pichola, which is fringed with hills, palaces, havelis, ghats, embankments and temples and offers spectacular views of the city. Visit the Jag Mandir Island with its exquisite Gul Mahal Pavilion.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Overnight at Udaipur&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518751,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":359,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1825,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"295740\",\"Title\":\"DEPART UDAIPUR\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast in time transfer to Udaipur Airport \\/ Railway Station to board your flight \\/ train for onward journey to your next destination.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;**** TOUR ENDS ****&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":28058,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Deluxe\",\"Id\":3}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"41009\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"26000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26000,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":26000,\"priceExtraBed\":\"26000.00\",\"priceWithoutBed\":\"26000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26000,\"CEB\":26000,\"COSTDO\":26000,\"COSTSO\":null,\"ACEB\":26000,\"COSTTO\":26000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26000,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":26000,\"priceExtraBed\":\"26000.00\",\"priceWithoutBed\":\"26000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26000,\"CEB\":26000,\"COSTDO\":26000,\"COSTSO\":null,\"ACEB\":26000,\"COSTTO\":26000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":26000,\"priceDoubleOcc\":\"26000.00\",\"priceSingleOcc\":26000,\"priceExtraBed\":\"26000.00\",\"priceWithoutBed\":\"26000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":26000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26000,\"CEB\":26000,\"COSTDO\":26000,\"COSTSO\":null,\"ACEB\":26000,\"COSTTO\":26000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24667,\"priceDoubleOcc\":\"24000.00\",\"priceSingleOcc\":24000,\"priceExtraBed\":\"26000.00\",\"priceWithoutBed\":\"26000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26000,\"CEB\":26000,\"COSTDO\":24000,\"COSTSO\":null,\"ACEB\":26000,\"COSTTO\":26000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23333,\"priceDoubleOcc\":\"22000.00\",\"priceSingleOcc\":22000,\"priceExtraBed\":\"26000.00\",\"priceWithoutBed\":\"26000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26000,\"CEB\":26000,\"COSTDO\":22000,\"COSTSO\":null,\"ACEB\":26000,\"COSTTO\":26000},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21667,\"priceDoubleOcc\":\"19500.00\",\"priceSingleOcc\":19500,\"priceExtraBed\":\"26000.00\",\"priceWithoutBed\":\"26000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":26000,\"CEB\":26000,\"COSTDO\":19500,\"COSTSO\":null,\"ACEB\":26000,\"COSTTO\":26000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":3,\"Type\":\"Deluxe\",\"TPSysId\":\"41009\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"24500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24500,\"priceDoubleOcc\":\"24500.00\",\"priceSingleOcc\":24500,\"priceExtraBed\":\"24500.00\",\"priceWithoutBed\":\"24500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24500,\"CEB\":24500,\"COSTDO\":24500,\"COSTSO\":null,\"ACEB\":24500,\"COSTTO\":24500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24500,\"priceDoubleOcc\":\"24500.00\",\"priceSingleOcc\":24500,\"priceExtraBed\":\"24500.00\",\"priceWithoutBed\":\"24500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24500,\"CEB\":24500,\"COSTDO\":24500,\"COSTSO\":null,\"ACEB\":24500,\"COSTTO\":24500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":24500,\"priceDoubleOcc\":\"24500.00\",\"priceSingleOcc\":24500,\"priceExtraBed\":\"24500.00\",\"priceWithoutBed\":\"24500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":24500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24500,\"CEB\":24500,\"COSTDO\":24500,\"COSTSO\":null,\"ACEB\":24500,\"COSTTO\":24500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":23167,\"priceDoubleOcc\":\"22500.00\",\"priceSingleOcc\":22500,\"priceExtraBed\":\"24500.00\",\"priceWithoutBed\":\"24500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24500,\"CEB\":24500,\"COSTDO\":22500,\"COSTSO\":null,\"ACEB\":24500,\"COSTTO\":24500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":21833,\"priceDoubleOcc\":\"20500.00\",\"priceSingleOcc\":20500,\"priceExtraBed\":\"24500.00\",\"priceWithoutBed\":\"24500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24500,\"CEB\":24500,\"COSTDO\":20500,\"COSTSO\":null,\"ACEB\":24500,\"COSTTO\":24500},{\"From\":\"2022-10-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":20167,\"priceDoubleOcc\":\"18000.00\",\"priceSingleOcc\":18000,\"priceExtraBed\":\"24500.00\",\"priceWithoutBed\":\"24500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":18000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":24500,\"CEB\":24500,\"COSTDO\":18000,\"COSTSO\":null,\"ACEB\":24500,\"COSTTO\":24500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;KINDLY NOTE THAT DIWALI PERIOD FROM&amp;nbsp; 20 OCT 05 NOV 2022 &amp;amp; 23 DEC 2022 TO 05 JAN 2023 ON MAP BASIS. COST SHALL BE ADDITIONAL. THE ABOVE RATE IS NOT VALID DURING THE DIWALI PERIODS AND X- MAS &amp;amp; NEW YEAR PERIODS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"295733\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[295733],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295734\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[295734],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295735\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[295735],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295736\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[295736],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295737\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[295737],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295738\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[295738],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295739\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[295739],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"295740\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[295740],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Jaipur,Jodhpur,Udaipur','Jaipur,Rajasthan,Indian Subcontinent,North India,India,Jodhpur,Udaipur,Ajmer,Pushkar,Ranakpur',NULL,'12995,13184,28058',18000,26000,5,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-09-01 17:35:36','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'highlights-of-rajasthan-5n-6d',NULL,NULL,NULL,0),(68,41092,1,12577,1,0,0,'Adventure,Wildlife,Family,Hill Station,Culture,Romantic,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":41092,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/shillong_beauty_-_3n4d_1662033540.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;A beautiful city encircled by pine trees, &lt;strong&gt;Shillong&lt;\\/strong&gt; is the capital of &lt;strong&gt;Meghalaya&lt;\\/strong&gt;. It derives its name from Lei Shyllong, an idol worshipped at the Shillong Peak. Standing as tall as 1496 meters, this hill station is known for its weather, picturesque locations and traditions. This place is also known as the &amp;lsquo;Scotland of the East. One can find descendants of the Khyrim, Mylliem, Maharam, Mallaisohmat, Bhowal and Langrim tribes.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Shillong, the capital of Meghalaya, is home to numerous waterfalls. The key reasons people visit Shillong are the exciting mountain peaks, crystal clear lakes, breathtakingly beautiful golf courses, cafes, and museums. Apart from the natural beauty, Shillong also acts as the gateway to Meghalaya, the state famous for heavy rainfalls, caving, tallest waterfalls, beautiful landscapes and amazing people and culture. Shillong, in particular, has been in the limelight for its jovial people and their culture. Interestingly, Shillong has a very westernised culture, and it has a very young feel to it. Shillong is also famous as the music capital of India, as many prominent musicians have hailed from this place. Many music events keep happening throughout the year, making it a very lively place.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Shillong Beauty - 3N\\/4D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10927\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast\",\"PackageType\":\"Adventure,Wildlife,Family,Hill Station,Culture,Romantic,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518998,\"Name\":\"The Boulevard Shillong\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14471,\"Title\":\"Police Bazaar\",\"Description\":\"Police Bazar is the major market of Shillong, and a popular shopping haunt for locals and tourists alike. In addition to an array of restaurants, hotels and big brand stores, the Police Bazaar also has a flea market section which is pocket-friendly and draws the maximum number of tourists owing to its traditional handicrafts stores, exquisite Meghalaya merchandise, regional apparels, junk jewellery and the like. The colourful market is thronged by shopping enthusiasts as well as foodies.\\r\\n\\r\\nPolice Bazaar, also known as Khyndailad is the prime shopping hub in Shillong and the ideal place to book a hotel if you are travelling to Shillong. The bazaar is a blend of traditional as well as modern, the chic as well as classic. The extensive collection is why people choose it over Bara Bazaar. The markets are well laid out in the form a huge circle (chowk) right in the middle of the police bazaar with plants and trees, surrounded by 7 roads going away from the circle to the different points in the city. Many roads in Police Bazaar do not allow vehicles, which makes them an excellent stop for street shopping.\\r\\n\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/\\/public\\/upload\\/city\\/25073\\/sightseeing\\/15826_648495434Shillong_Police_Bazar_Main.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":31287,\"Title\":\"Eco Park\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1583,\"Title\":\"Shillong Peak\",\"Description\":\"Shillong Peak is the highest point of Shillong and offers panoramic views of the city, the waterfalls, the Himalayas, the lush green surroundings as well as the Bangladesh plains. The peak has an impressive height of 1962 m, above the sea level.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5473771,\"Long\":91.8750558,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1226\\/thumb\\/Shillong Peak_894.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":31288,\"Title\":\"Living root bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":31289,\"Title\":\"Umgnot River\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1101,\"Title\":\"Mawlynnong\",\"Description\":\"Mawlynnong\\/Mawlynnong Village located in the East Khasi Hills of Meghalaya, also referred as &amp;lsquo;God&amp;rsquo;s own garden&amp;rsquo; has won the acclaim of being the cleanest village in Asia in 2003 as well as the Cleanest Village in India in 2005\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5834397,\"Long\":91.8996128,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/2017\\/thumb\\/Mawlynnong_887.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9182,\"Title\":\"Lady Hydari Park\",\"Description\":\"Lady Hydari Park is the best place to start your morning in Shillong. It was dedicated to the first lady of the province, Lady Hydari. The park comprises of a sprawling and manicured garden including beautiful rose beds and children&acirc;&euro;&trade;s play area. There is a mini zoo inside the park housing more than 73 species of birds and 100 species of reptiles.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.8822712,\"Long\":25.565994,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094300.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"296315\",\"Title\":\"Guwahati - Shillong (100 kms \\/ 3 hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to &lt;strong&gt;Awesome Assam.&lt;\\/strong&gt; Meet and be assisted by our representative at the airport\\/Railway Station. Proceed to Shillong, also called &amp;#39;Scotland of the East&amp;quot;. Reach the majestic Umium Lake (Barapani). You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight stay in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":14471,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"296316\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM | 1.5 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to &lt;strong&gt;Cherrapunji&lt;\\/strong&gt;, this is the wettest place in the world. &lt;strong&gt;Visit &amp;nbsp;Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park&lt;\\/strong&gt;. Evening return to Shillong. Visit &lt;strong&gt;Elephanta Falls&lt;\\/strong&gt; and &lt;strong&gt;Shillong Peak&lt;\\/strong&gt; for some breathtaking views.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight stay in Shillong.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":31287,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1583,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"296317\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM | 2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast visit&lt;strong&gt; Mawlynnong Village&lt;\\/strong&gt; the&amp;nbsp;cleanest village in India. This cute and colorful little village is known for its cleanliness.&amp;nbsp; It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the &lt;strong&gt;Living Root Bridge&lt;\\/strong&gt; and another strange natural phenomenon of a boulder balancing on another rock. Visit &lt;strong&gt;Dawki&lt;\\/strong&gt;, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the &lt;strong&gt;Umgnot River&lt;\\/strong&gt;. Evening we will return back to Shillong.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nOvernight stay in Shillong&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":31288,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":31289,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":1101,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":19106,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"296318\",\"Title\":\"Shillong - Guwahati (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;After breakfast today visit &lt;strong&gt;Don Bosco Centre &lt;\\/strong&gt;for Indigenous Cultures, Ward&amp;#39;s Lake where you can enjoy boating, &lt;strong&gt;Cathedral Catholic Church&lt;\\/strong&gt; and &lt;strong&gt;Lady Hydari Park&lt;\\/strong&gt;.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nLater proceed to Guwahati and with everlasting memories transfer to airport\\/railway station for onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9182,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"41092\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"8800.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7533,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":8800,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"8800.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5000,\"CEB\":5000,\"COSTDO\":8800,\"COSTSO\":null,\"ACEB\":5000,\"COSTTO\":5000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7533,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":8800,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"8800.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5000,\"CEB\":5000,\"COSTDO\":8800,\"COSTSO\":null,\"ACEB\":5000,\"COSTTO\":5000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7533,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":8800,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"8800.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5000,\"CEB\":5000,\"COSTDO\":8800,\"COSTSO\":null,\"ACEB\":5000,\"COSTTO\":5000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7533,\"priceDoubleOcc\":\"8800.00\",\"priceSingleOcc\":8800,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"8800.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":8800,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5000,\"CEB\":5000,\"COSTDO\":8800,\"COSTSO\":null,\"ACEB\":5000,\"COSTTO\":5000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":8667,\"priceDoubleOcc\":\"10500.00\",\"priceSingleOcc\":10500,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"8800.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":10500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5000,\"CEB\":5000,\"COSTDO\":10500,\"COSTSO\":null,\"ACEB\":5000,\"COSTTO\":5000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":10000,\"priceDoubleOcc\":\"12500.00\",\"priceSingleOcc\":12500,\"priceExtraBed\":\"5000.00\",\"priceWithoutBed\":\"8800.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":12500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":5000,\"CEB\":5000,\"COSTDO\":12500,\"COSTSO\":null,\"ACEB\":5000,\"COSTTO\":5000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"41092\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"7300.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":6033,\"priceDoubleOcc\":\"7300.00\",\"priceSingleOcc\":7300,\"priceExtraBed\":\"3500.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":3500,\"COSTDO\":7300,\"COSTSO\":null,\"ACEB\":3500,\"COSTTO\":3500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":6033,\"priceDoubleOcc\":\"7300.00\",\"priceSingleOcc\":7300,\"priceExtraBed\":\"3500.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":3500,\"COSTDO\":7300,\"COSTSO\":null,\"ACEB\":3500,\"COSTTO\":3500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":6033,\"priceDoubleOcc\":\"7300.00\",\"priceSingleOcc\":7300,\"priceExtraBed\":\"3500.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":3500,\"COSTDO\":7300,\"COSTSO\":null,\"ACEB\":3500,\"COSTTO\":3500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":6033,\"priceDoubleOcc\":\"7300.00\",\"priceSingleOcc\":7300,\"priceExtraBed\":\"3500.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":7300,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":3500,\"COSTDO\":7300,\"COSTSO\":null,\"ACEB\":3500,\"COSTTO\":3500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":7167,\"priceDoubleOcc\":\"9000.00\",\"priceSingleOcc\":9000,\"priceExtraBed\":\"3500.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":9000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":3500,\"COSTDO\":9000,\"COSTSO\":null,\"ACEB\":3500,\"COSTTO\":3500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":8500,\"priceDoubleOcc\":\"11000.00\",\"priceSingleOcc\":11000,\"priceExtraBed\":\"3500.00\",\"priceWithoutBed\":\"3500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":11000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":3500,\"CEB\":3500,\"COSTDO\":11000,\"COSTSO\":null,\"ACEB\":3500,\"COSTTO\":3500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"296315\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[296315],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"296316\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[296316],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"296317\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[296317],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"296318\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[296318],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Shillong','Shillong,Meghalaya,Indian Subcontinent,Northeast India,India',NULL,'25073',7300,12500,3,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-09-01 17:28:19','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'shillong-beauty-3n-4d',NULL,NULL,NULL,0),(69,41197,1,12577,1,0,0,'Adventure,Wildlife,Family,Hill Station,Culture,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":41197,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/beast_the_beauty_of_northeast_-_5n6d_1662033639.jpg\",\"BookingValidUntill\":\"2023-03-31\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Assam, &lt;\\/strong&gt;in North East India, is a treasure trove of natural beauty and diverse history, remaining as one of the most bountiful untouched regions in the country. Known as the land of &lt;strong&gt;&amp;#39;Blue Hills and Red River&amp;#39;&lt;\\/strong&gt;, the state is home to wild forests, mighty rivers, and acres and acres of tea plantations. Popularly known as the home to the one-horned rhino, the state is one of the top biodiversity hotspots in the entire world. With the majestic &lt;strong&gt;Brahmaputra&lt;\\/strong&gt; river, magnificent hills, rich flora and fauna, the state is every tourist&amp;#39;s paradise. One of the most beautiful states of India, Assam is the gateway to the enchanting and unexploited northeastern part of the country.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;A veritable paradise, Assam shares international borders with both Bangladesh and Bhutan and boasts of its vibrant culture and scenic beauty, as well as its historical significance. The state enjoys a climate similar to tropical regions and has evergreen vegetation throughout the year.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;Guwahati,&lt;\\/strong&gt; the largest city, known as the city of temples, is home to &lt;strong&gt;Maa Kamakhya Devi Temple&lt;\\/strong&gt;, one of the most sacred temples for Hindus. Another beautiful highlight of the state is Majuli, which is the largest river island in the world and is famous for its vibrant Assamese neo-Vaishnavite culture. Further up north, located near the Dibru river, is &lt;strong&gt;Dibrugarh city,&lt;\\/strong&gt; known as the Tea City of India.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;Hajo&lt;\\/strong&gt;, an extremely ancient pilgrimage centre for not one or two but three different religions, stands as a beautiful example of the secular diversity that exists in India. The area is dotted with numerous temples, mosques and churches, and other religious and sacred artefacts. Haflong, Assam&amp;rsquo;s only hill station, is a stunningly beautiful place, marked with rolling mountains and lush green valleys.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Guwahati\",\"DestinationPlacesSysId\":11240,\"SourcePlaces\":\"Guwahati\",\"SourcePlaceSysId\":11240,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Beast and The Beauty of Northeast - 5N\\/6D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":2,\"Value\":\"Domestic                                          \"},\"Supplier\":{\"SupplierId\":\"10927\",\"SupplierName\":\"Assam Holidays\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Hotel,Only Breakfast,Car On Disposal\",\"PackageType\":\"Adventure,Wildlife,Family,Hill Station,Culture,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":13741,\"Title\":\"Kaziranga National Park\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":519333,\"Name\":\"Hotel Boulevard\",\"Star\":\".00\",\"Rating\":\"4.00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"25.5775464\",\"Long\":\"91.88145159999999\",\"Address\":\"Thana Road, Police Bazar, Shillong, Meghalaya 793001, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"},{\"RefHotelId\":519334,\"Name\":\"Wild Grass Lodge\",\"Star\":\".00\",\"Rating\":\"4.30\",\"IsIncluded\":false,\"Location\":{\"Lat\":\"26.591338\",\"Long\":\"93.3993897\",\"Address\":\"BOSAGAON, H9RX+GQJ, Resort Borgos, Assam 785609, India\"},\"Images\":[],\"CityId\":13741,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":31288,\"Title\":\"Living root bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}},{\"CityId\":25073,\"Title\":\"Shillong\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":518998,\"Name\":\"The Boulevard Shillong\",\"Star\":\".00\",\"Rating\":\".00\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"\",\"Long\":\"\",\"Address\":\"\"},\"Images\":[],\"CityId\":25073,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"CP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":8382,\"Title\":\"Elephant Safari (Kaziranga)\",\"Description\":\"Elephant safari is the best way to explore the wide varieties of wildlife in the Kaziranga National Park, area covered by the Elephant Grass can be best viewed trip through elephant&#039;s back, Elephant safari is best enjoyed in the early Morning, during safari one can get opportunity to see herds of Indian Elephants, One-horned Rhinoceros very short distance, a close encounter with the animals in Kaziranga National Park makes the trip memorable, Elephant safari covers Baguri, Hole Path, Mihimukh, Kohora Central Path and Arimarah.\",\"CurrencyType\":0,\"CityId\":13741,\"CityName\":\"Kaziranga National Park\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/13741\\/sightseeing\\/1916_1549439219.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":1835,\"Title\":\"Umiam Lake\",\"Description\":\"Umiam Lake is a reservoir.  It is a popular destination for water sports and adventure activities. Tourists visit this spot for kayaking, water cycling, scooting and boating.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":26.1445169,\"Long\":91.7362365,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/3131\\/thumb\\/Umiam Lake_860.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":483,\"Title\":\"Elephant Falls\",\"Description\":\"The steps and access path makes one go close to the waterfalls and can admire its beauty which is iconic. The sides of the waterfall are flanked by lush greenery and that adds to the charm of the place.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":25.5787726,\"Long\":91.8932535,\"Image\":\"https:\\/\\/img.g07.in\\/public\\/upload\\/destinations\\/1225\\/thumb\\/Elephant Falls_734.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":19106,\"Title\":\"Umngot River, Dawki Bridge, Dawki, Meghalaya, India\",\"Description\":\"The small border town Dawki of Meghalaya is popular for its famous Umngot river and a beautiful suspension bridge. It is a major tourist destination in Meghalaya. The water of Umngot river is so clear that the boats floating on it, look as if they are on a crystal glass surface. Dawki lies between India and Bangladesh and is the trade hub between the two countries. People come to this place to enjoy a boat ride in the Umngot river and view of the surrounding greenery. Charge for boat riding is Rs. 800\\/- per boat.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Umngot_River,_Dawki_Bridge,_Da_25073_1617342426.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":31288,\"Title\":\"Living root bridge\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":14869,\"Title\":\"Cathedral Catholic Church\",\"Description\":\"Cathedral Catholic Church, also known as the Cathedral of Mary Help of Christians, is a beautiful shrine located in the heart of Shillong. This cathedral falls under the Roman Catholic Archdiocese of Shillong, which administers similar shrines in Meghalaya&amp;#039;s Khasi and Jaintia hills. The construction of the present shrine was started after the first church built at this site got destroyed in a fire in 1936. In order to ensure that the cathedral is earthquake resistant, rock trenches were filled with sand and a strong foundation was laid. This cathedral was given the status of a shrine in 1980, on completion of the Catholic Church&amp;#039;s 100 years in North East India.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":0,\"Long\":0,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/Cathedral_Catholic_Church_25073_1582627639.jpeg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null},{\"RefSSId\":9180,\"Title\":\"Don Bosco Museum\",\"Description\":\"Don Bosco Centre for Indigenous Culture is an amazing initiative taken to conserve North East India&acirc;&euro;&trade;s native culture and heritage. The museum has a collection of interesting information about the entire seven sisters of North- East India along with the exhibits like exclusive art galleries, handicrafts, ornamentation, photographs, and weapons used by tribes of Northeast. Don Bosco Museum is located along the Sacred Heart Church and is one of the must-visit places in Shillong.\",\"CurrencyType\":0,\"CityId\":25073,\"CityName\":\"Shillong\",\"Lat\":91.882263,\"Long\":25.593246,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/25073\\/sightseeing\\/48_1556094262.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10927,\"SupplierName\":\"Assam Holidays\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"297234\",\"Title\":\"Guwahati - Kaziranga National Park (230 KM | 4.5 Hrs)\",\"MealPlanInclude\":\"\",\"Day\":1,\"Program\":\"&lt;p&gt;Welcome to&lt;strong&gt; Awesome Assam&lt;\\/strong&gt;. Meet and be assisted by our representative at the airport\\/Railway Station. Transfer to &lt;strong&gt;Kaziranga National Park,&lt;\\/strong&gt; the home of the&lt;strong&gt; One Horn Indian Rhinoceros.&lt;\\/strong&gt; Check in at your hotel\\/Lodge\\/resort. Evening you may visit &lt;strong&gt;Orchid Park &lt;\\/strong&gt;and the nearby &lt;strong&gt;Tea Plantations&lt;\\/strong&gt;.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;Overnight at Kaziranga National Park.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":519333,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":519334,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":8382,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"297235\",\"Title\":\"Kaziranga National Park\",\"MealPlanInclude\":\"Breakfast\",\"Day\":2,\"Program\":\"&lt;p&gt;Early morning explore &lt;strong&gt;Kaziranga National Park&lt;\\/strong&gt; on back of elephant. Apart from world&amp;#39;s endangered &lt;strong&gt;One Horn Indian Rhinoceros&lt;\\/strong&gt;, the Park sustains half the world&amp;#39;s population of genetically pure Wild Water Buffaloes, over 1000 Wild elephants and perhaps the densest population of Royal Bengal Tiger anywhere. Kaziranga National Park is also a bird watcher&amp;#39;s paradise and home to some 500 species of Birds. The Crested Serpent Eagle, Palla&amp;#39;s Fishing Eagle, Greyheaded Fishing Eagle, Swamp Partridge, Bar-headed goose, whistling Teal, Bengal Florican, Storks, Herons and Pelicans are some of the species found here. We will return to the resort for breakfast. Afternoon we proceed for a jeep safari. Evening come back to the hotel.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;Overnight at Kaziranga National Park.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":519333,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"},{\"IsIncluded\":false,\"Id\":519334,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"297236\",\"Title\":\"\",\"MealPlanInclude\":\"\",\"Day\":3,\"Program\":\"&lt;p&gt;0&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":13741,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"297237\",\"Title\":\"Kaziranga National Park&ndash; Shillong (280 Km | 6 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":3,\"Program\":\"&lt;p&gt;After breakfast drive to &lt;strong&gt;Shillong&lt;\\/strong&gt;, also called &lt;strong&gt;&amp;#39;Scotland of the East&amp;quot;&lt;\\/strong&gt;. Reach the majestic &lt;strong&gt;Umium Lake (Barapani)&lt;\\/strong&gt;. You may do the water sports here (Optional). On arrival at Shillong, check in at your hotel. Evening you can visit Police Bazaar which the biggest local market.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;Overnight stay in Shillong&lt;\\/strong&gt;.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":1835,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"297238\",\"Title\":\"Shillong - Cherrapunji - Shillong (65 KM | 1.5 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Get up early today to enjoy the mesmerizing mornings of Shillong. After early breakfast drive to &lt;strong&gt;Cherrapunji&lt;\\/strong&gt;, this is the wettest place in the world. &lt;strong&gt;Visit &amp;nbsp;Eco Park, Dainthlen Falls, Nohkalikai Falls, Nohsngithiang Falls (Seven Sisters Falls), Mawsmai Cave, Thangkharang Park&lt;\\/strong&gt;. Evening return to Shillong. Visit &lt;strong&gt;Elephanta Falls&lt;\\/strong&gt; and &lt;strong&gt;Shillong Peak&lt;\\/strong&gt; for some breathtaking views.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;Overnight stay in Shillong.&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":483,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"297239\",\"Title\":\"Shillong - Dawki - Mawlynnong Village - Shillong (90 KM | 2 Hrs Per Way)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":5,\"Program\":\"&lt;p&gt;After breakfast visit&lt;strong&gt; Mawlynnong Village&lt;\\/strong&gt; the&amp;nbsp;cleanest village in India. This cute and colorful little village is known for its cleanliness.&amp;nbsp; It is situated 90 kms. from Shillong and besides the picturesque village, offers many interesting sights such as the &lt;strong&gt;Living Root Bridge&lt;\\/strong&gt; and another strange natural phenomenon of a boulder balancing on another rock. Visit &lt;strong&gt;Dawki&lt;\\/strong&gt;, It is along the Indo-Bangladesh border. You can enjoy boating in the crystal clear waters of the &lt;strong&gt;Umgnot River&lt;\\/strong&gt;. Evening we will return to Shillong.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\n&lt;strong&gt;Overnight stay in Shillong&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":518998,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"CP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":19106,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":31288,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"297240\",\"Title\":\"Shillong - Guwahati (100 KM | 3 Hrs)\",\"MealPlanInclude\":\"Breakfast\",\"Day\":6,\"Program\":\"&lt;p&gt;After breakfast today visit &lt;strong&gt;Don Bosco Centre &lt;\\/strong&gt;for Indigenous Cultures, Ward&amp;#39;s Lake where you can enjoy boating, &lt;strong&gt;Cathedral Catholic Church&lt;\\/strong&gt; and&lt;strong&gt; Lady Hydari Park&lt;\\/strong&gt;.&lt;br \\/&gt;\\r\\n&lt;br \\/&gt;\\r\\nProceed to Guwahati and with everlasting memories transfer to airport\\/railway station for onward journey.&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":25073,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":14869,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":9180,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"41197\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"16500.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13667,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":8000,\"COSTDO\":16500,\"COSTSO\":null,\"ACEB\":8000,\"COSTTO\":8000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13667,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":8000,\"COSTDO\":16500,\"COSTSO\":null,\"ACEB\":8000,\"COSTTO\":8000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13667,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":8000,\"COSTDO\":16500,\"COSTSO\":null,\"ACEB\":8000,\"COSTTO\":8000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13667,\"priceDoubleOcc\":\"16500.00\",\"priceSingleOcc\":16500,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":16500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":8000,\"COSTDO\":16500,\"COSTSO\":null,\"ACEB\":8000,\"COSTTO\":8000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":15333,\"priceDoubleOcc\":\"19000.00\",\"priceSingleOcc\":19000,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":19000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":8000,\"COSTDO\":19000,\"COSTSO\":null,\"ACEB\":8000,\"COSTTO\":8000},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":17500,\"priceDoubleOcc\":\"22250.00\",\"priceSingleOcc\":22250,\"priceExtraBed\":\"8000.00\",\"priceWithoutBed\":\"8000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":22250,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":8000,\"CEB\":8000,\"COSTDO\":22250,\"COSTSO\":null,\"ACEB\":8000,\"COSTTO\":8000}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"41197\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"15000.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12167,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"6500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":6500,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":6500,\"COSTTO\":6500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12167,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"6500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":6500,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":6500,\"COSTTO\":6500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12167,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"6500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":6500,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":6500,\"COSTTO\":6500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":12167,\"priceDoubleOcc\":\"15000.00\",\"priceSingleOcc\":15000,\"priceExtraBed\":\"6500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":15000,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":6500,\"COSTDO\":15000,\"COSTSO\":null,\"ACEB\":6500,\"COSTTO\":6500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":13833,\"priceDoubleOcc\":\"17500.00\",\"priceSingleOcc\":17500,\"priceExtraBed\":\"6500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":17500,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":6500,\"COSTDO\":17500,\"COSTSO\":null,\"ACEB\":6500,\"COSTTO\":6500},{\"From\":\"2022-09-01\",\"To\":\"2023-03-31\",\"Currency\":1,\"priceTripleOcc\":16000,\"priceDoubleOcc\":\"20750.00\",\"priceSingleOcc\":20750,\"priceExtraBed\":\"6500.00\",\"priceWithoutBed\":\"6500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":20750,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":6500,\"CEB\":6500,\"COSTDO\":20750,\"COSTSO\":null,\"ACEB\":6500,\"COSTTO\":6500}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"297234\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[297234],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"297235\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[297235],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"297236\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[297236],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"297237\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[297237],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"297238\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[297238],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"297239\":{\"5\":{\"Sequence\":[5],\"TPInvnSysId\":[297239],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"297240\":{\"6\":{\"Sequence\":[6],\"TPInvnSysId\":[297240],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Kaziranga National Park,Shillong','Kaziranga National Park,Assam,Indian Subcontinent,Northeast India,India,Shillong,Meghalaya',NULL,'13741,25073',15000,22250,5,NULL,NULL,NULL,2,'',0,'2022-09-01 00:00:00','2023-03-31 00:00:00','2023-03-31 00:00:00',3,'India','101','2022-09-01 17:30:02','2022-09-01 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'beast-and-the-beauty-of-northeast-5n-6d',NULL,NULL,NULL,0),(70,41582,1,12577,1,0,0,'Honeymoon,Family,Culture,Offbeat,Leisure',NULL,1,1,0,'{\"package\":{\"TPId\":41582,\"IsCF\":0,\"ImgHeader\":\"0\",\"IsFixedDeparturePackage\":0,\"IsBusRoutePackage\":0,\"ImgThumbnail\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/package\\/azerbaijan_-_3n4d_1662554584.jpg\",\"BookingValidUntill\":\"2022-12-15\",\"AdvBookingDays\":30,\"DETAILS\":\"&lt;p&gt;&lt;strong&gt;Azerbaijan&amp;#39;s &lt;\\/strong&gt;ancient historical, cultural heritage and natural landscape attract scholars, art connoisseurs, musicians and tourists from different continents of the globe. Azerbaijan is often dubbed as the &amp;quot;Land of Fire&amp;quot; due to its petroleum reserves and thousands of ground sources of natural gas, many of which have been burning for thousands of years.&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Baku is the capital and largest city of Azerbaijan, as well as the largest city on the Caspian Sea and of the Caucasus region.&amp;nbsp; It is also known as &lt;strong&gt;&amp;quot;City of Winds&amp;rdquo;&lt;\\/strong&gt; for its romantic climate. According to the Lonely Planet&amp;#39;s ranking,&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Baku is also among the world&amp;#39;s top ten destinations for urban nightlife.&lt;\\/p&gt;\\r\\n\",\"AdvBookingPercent\":50,\"PriceRange\":\"\",\"MarkUpOnGTXNetworkPackage\":5,\"AgencyId\":12577,\"AgencyIdB2C\":12577,\"AgencyIdB2B\":12577,\"DestinationPlaces\":\"Delhi\",\"DestinationPlacesSysId\":7701,\"SourcePlaces\":\"Delhi\",\"SourcePlaceSysId\":7701,\"AgencyName\":\"SVEZZ AIR\",\"Name\":\"Azerbaijan - 3N\\/4D\",\"TagLine1\":null,\"TagLine2\":null,\"AllowMinPax\":2,\"GroupSize\":0,\"Source\":{\"SourceId\":1,\"Value\":\"Readymade\"},\"Type\":{\"TypeId\":3,\"Value\":\"International                                     \"},\"Supplier\":{\"SupplierId\":\"10998\",\"SupplierName\":\"Dook Travels\"},\"PackageSpec\":{\"Specification\":\"Daily Itinerary Based\",\"SpecificationId\":1},\"Inclusions\":\"Flight,Hotel,Only Breakfast,Airport Transfers,Sightseeing\",\"PackageType\":\"Honeymoon,Family,Culture,Offbeat,Leisure\",\"Validity\":{\"From\":\"2022-11-23\",\"To\":\"2022-12-15\"},\"Cities\":{\"desc\":null,\"City\":[{\"CityId\":2099,\"Title\":\"Baku\",\"Hotels\":{\"Hotel\":[{\"RefHotelId\":520006,\"Name\":\"Diamond Hotel Baku\",\"Star\":\".00\",\"Rating\":\"3.70\",\"IsIncluded\":true,\"Location\":{\"Lat\":\"40.4113292\",\"Long\":\"49.861539\",\"Address\":\"191 ?hm?d R?c?bli, Bak? 1000, Azerbaijan\"},\"Images\":[],\"CityId\":2099,\"Brief\":\"\",\"MainImg\":\"\",\"AccoAminitiesMask\":\"\",\"AccoAminities\":[],\"IsfromAPI\":false,\"SupplierSysId\":10998,\"SupplierName\":\"Dook Travels\",\"priceaditionals\":null,\"RoomTypeName\":\"\\tSTANDARD ROOM\",\"MealTypeName\":\"AP\"}]},\"Activities\":[],\"SightSeeings\":{\"SightSeeing\":[{\"RefSSId\":7299,\"Title\":\"Martyrs\' Lane & Highland Park\",\"Description\":\"It is a burial place of Azerbaijani and Turkish soldiers who were killed in the battles for Baku in 1918. Also, the graves of the martyrs who died for their country in the war in 90s are situated here. But the most picturesque corner of Baku is Highland park. From here you get the opportunity to panorama of beautiful Baku city\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":40.3566852,\"Long\":49.8282397,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/1211_1540377578.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \",\"SupplierSysId\":10998,\"SupplierName\":\"Dook Travels\",\"priceaditionals\":null},{\"RefSSId\":31972,\"Title\":\"National Assembly\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10998,\"SupplierName\":\"Dook Travels\",\"priceaditionals\":null},{\"RefSSId\":31973,\"Title\":\"Flame Towers\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10998,\"SupplierName\":\"Dook Travels\",\"priceaditionals\":null},{\"RefSSId\":31974,\"Title\":\"Freedom Square\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10998,\"SupplierName\":\"Dook Travels\",\"priceaditionals\":null},{\"RefSSId\":31975,\"Title\":\"Yeni Bulvar\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10998,\"SupplierName\":\"Dook Travels\",\"priceaditionals\":null},{\"RefSSId\":5438,\"Title\":\"Baku City Tour\",\"Description\":\"Baku is the capital and largest city of Azerbaijan, as well as the largest city on the Caspian Sea. The city is the scientific, cultural and industrial center of Azerbaijan. Usually goods for Novruz begins a month before to the festival. Each of forthcoming 4 weeks is devoted to one of the four elements and called similarly in Azerbaijan. Each Tuesday people celebrate the day of one of the four elements - water, fire, earth and wind.\\r\\nThe city is famous for its harsh winds, which is reflected in its nickname, the &amp;quot;City of Winds&amp;quot;.\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":40.368355,\"Long\":49.835703,\"Image\":\"https:\\/\\/globaltravelexchange.com\\/public\\/upload\\/city\\/2099\\/sightseeing\\/Baku_City_Tour_2099_1527761916.jpg                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 \",\"SupplierSysId\":10998,\"SupplierName\":\"Dook Travels\",\"priceaditionals\":null},{\"RefSSId\":31976,\"Title\":\"Flame Tour\",\"Description\":\"\",\"CurrencyType\":0,\"CityId\":2099,\"CityName\":\"Baku\",\"Lat\":0,\"Long\":0,\"Image\":\"0\",\"SupplierSysId\":10998,\"SupplierName\":\"Dook Travels\",\"priceaditionals\":null}]}}]},\"DiscountCode\":[],\"Transfers\":null,\"OtherServices\":null,\"Itineraries\":{\"Itinerary\":[{\"ItineraryId\":\"300116\",\"Title\":\"WELCOME TO BAKU + PANORAMIC TOUR\",\"MealPlanInclude\":\"Lunch,Dinner\",\"Day\":1,\"Program\":\"&lt;p&gt;Arrival at Airport.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer from Airport to Hotel. Accommodation in hotel. Free time.&amp;nbsp;Assembly at lobby. Start tour. Visit to Highland Park-Alley of Martyrs, The National Assembly- also transliterated as Milli Majlis, Flame towers-the tallest skyscraper in Baku.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Walking through Baku Boulevardwhich stretches along a south-facing bay on the Caspian Sea. It traditionally starts at Freedom Square continuing west to the Old City and beyond. Since 2012, the Yeni Bulvar (New Boulevard) has virtually doubled the length to 3.75 km.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer for Dinner at Indian restaurant at 2000 hrs&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer to hotel at 2230 hrs. Free time &amp;ndash; can explore night activities at you own&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight stay at the Baku&lt;\\/strong&gt;&amp;nbsp;&amp;nbsp;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520006,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":7299,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":31972,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":31973,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":31974,\"MasterIntSysId\":0},{\"IsIncluded\":true,\"Id\":31975,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"300117\",\"Title\":\"BAKU CITY TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":2,\"Program\":\"&lt;p&gt;Breakfast in Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Our tour program starts with Old City or Inner City is the historical core of Baku, the capital of Azerbaijan. The Old City is the most ancient part of Baku, which is surrounded by walls were well protected. In 2007, the Old City had a population of about 3000 people. In December 2000, the Old City of Baku, including the Palace of the Shirvanshahs and Maiden Tower, became the first location in Azerbaijan to be classified as a World Heritage Site by UNESCO(walking tour)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Later experience the happening street of Nizami Street known for Shopping.The Street&amp;rsquo;s history could be traced back to Baku&amp;#39;s town-planning project of 1864. The street runs through the city&amp;#39;s downtown from west to east. It begins from Abdulla Shaig Street, in mountainous part of the city and ends at railroad bed on Sabit Orujov Street, near a monument to Shah Ismail Khatai in &amp;ldquo;Black City&amp;rdquo;.&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tour continues with the visit to the charming example of modern achticture - The Heydar Aliyev Center&amp;ndash; a 57,500 m2 building complex in Baku, Azerbaijan designed by Iraqi-British architect Zaha Hadid and noted for its distinctive architecture and flowing, curved style that eschews sharp angles. The center is named after Heydar Aliyev, the first secretary of Soviet Azerbaijan from 1969 to 1982, and president of Azerbaijan Republic from October 1993 to October 2003. (Photo shoot outside)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer for dinner at Indian restaurant at 2000 hrs&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer to hotel at 2230 hrs&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Free time &amp;ndash; can explore night activities at you own&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight stay at Baku&amp;nbsp;&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520006,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":5438,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"300118\",\"Title\":\"FLAME TOUR\",\"MealPlanInclude\":\"Breakfast,Lunch,Dinner\",\"Day\":3,\"Program\":\"&lt;p&gt;Breakfast in Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Assembly at hotel lobby. Tour starts with Ateshgah (Fire Worshippers Temple)&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Based on Persian and Indian inscriptions, the temple was used as a Hindu and Zoroastrian place of worship. &amp;quot;Atash&amp;rdquo; is the Persian word for fire. The pentagonal complex, which has a courtyard surrounded by cells for monks and a tetra pillar-altar in the middle, was built during the 17th and 18th centuries. It was abandoned in the late 19th century, probably due to the dwindling of the Indian population in the area. The natural &amp;quot;eternal flame&amp;quot; went out in 1969, after nearly a century of exploitation of petroleum and gas in the area, but is now lit by gas piped from the nearby city&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Trip to &amp;quot;Fire Mountain &amp;quot;-&amp;quot;Yanardag&amp;quot; -a mountain on Abs heron peninsula , 25 km from north of Baku. Literally, &amp;nbsp;word &amp;quot;Yanardag&amp;quot; means &amp;quot;Blazing mountain&amp;quot;. Blazing bodies of flame dance on stones and floor.&amp;nbsp; Yanar dag is a natural gas fire which blazes continuously on a hillside on the Absheron Peninsula on the Caspian Sea near Baku, the capital of Azerbaijan, which itself is known as the &amp;quot;land of fire.&amp;quot;&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Tour continues with a visit to Bibi-Heybat Mosque which is a historical mosque in Baku, Azerbaijan. The existing structure, built in the 1990s, is a recreation of the mosque with the same name built in the 13th century by Shirvanshah Farrukhzad II Ibn Ahsitan II, which was completely destroyed by the Bolsheviks in 1936. The Bibi-Heybat Mosque includes the tomb of Ukeyma Khanum (a descendant of The Islamic Prophet Muhammad), and today is the spiritual center for the Muslims of the region and one of the major monuments of Islamic &amp;nbsp;architecture in Azerbaijan&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer &amp;nbsp;for Dinner at an Indian Restaurant&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Transfer to hotel at 2230 hrs&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;Free time &amp;ndash; can explore night activities at you own&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;&lt;strong&gt;Overnight stay at Baku&lt;\\/strong&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":520006,\"MasterIntSysId\":0,\"MEALTYPENAME\":\"AP\",\"ROOMTYPENAME\":\"STANDARD ROOM\"}],\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[{\"IsIncluded\":true,\"Id\":31976,\"MasterIntSysId\":0}],\"Type\":null,\"Id\":0}]}]},{\"ItineraryId\":\"300119\",\"Title\":\"DEPARTURE\",\"MealPlanInclude\":\"Breakfast\",\"Day\":4,\"Program\":\"&lt;p&gt;Breakfast in Hotel&lt;\\/p&gt;\\r\\n\\r\\n&lt;p&gt;12:00 Check out Hotel. Transfer from Hotel to Airport&lt;\\/p&gt;\\r\\n\",\"ItineraryItem\":[{\"Type\":\"CITY\",\"Id\":2099,\"Items\":[]},{\"Type\":\"HOTEL\",\"Id\":0,\"Items\":[{\"Type\":\"Standard\",\"Id\":2}]},{\"Type\":\"ACTIVITY\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]},{\"Type\":\"SIGHTSEEING\",\"Id\":0,\"Items\":[{\"Item\":[],\"Type\":null,\"Id\":0}]}]}]},\"TourTypes\":{\"MarketType\":[{\"MarketTypeId\":1,\"MarketTypeTitle\":\"B2C\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"41582\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"67999.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":145998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":143998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":145998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":143998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":145998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":143998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":145998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":143998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":145998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":143998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":145998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":143998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":null},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":135998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":133998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":67999},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":135998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":133998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":67999},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":135998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":133998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":67999},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":135998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":133998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":67999},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":135998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":133998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":67999},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":67999,\"priceDoubleOcc\":\"67999.00\",\"priceSingleOcc\":135998,\"priceExtraBed\":\"57500.00\",\"priceWithoutBed\":\"44500.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":2000,\"ExcludedPercent\":\"0\",\"PricePerPerson\":67999,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":44500,\"CEB\":57500,\"COSTDO\":67999,\"COSTSO\":133998,\"ACEB\":67999,\"COSTTO\":67999,\"CostQuad\":67999}]}]}]}}]},{\"MarketTypeId\":2,\"MarketTypeTitle\":\"B2B\",\"TourType\":[{\"TourType\":1,\"TourTypeTitle\":\"Private\",\"Categories\":{\"Category\":[{\"CategoryId\":2,\"Type\":\"Standard\",\"TPSysId\":\"41582\",\"MasterTPId\":null,\"SeletedForPackage\":true,\"GroupSize\":12,\"Price\":\"66499.00\",\"MPType\":[{\"MPTypeId\":1,\"MPTypeText\":\"ITENARYWISE\",\"PriceAdditional\":[{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":142998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":142498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":142998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":142498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":142998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":142498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":142998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":142498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":142998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":142498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":null},{\"From\":\"2022-09-17\",\"To\":\"2022-10-20\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":142998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":142498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":null},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":132998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":12,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":132498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":66499},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":132998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":10,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":132498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":66499},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":132998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":8,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":132498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":66499},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":132998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":6,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":132498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":66499},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":132998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":4,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":132498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":66499},{\"From\":\"2022-11-24\",\"To\":\"2022-12-15\",\"Currency\":1,\"priceTripleOcc\":66499,\"priceDoubleOcc\":\"66499.00\",\"priceSingleOcc\":132998,\"priceExtraBed\":\"56000.00\",\"priceWithoutBed\":\"43000.00\",\"Tax\":\"Excluded\",\"PAX\":2,\"MarkType\":\"FixedAmount\",\"MarkValue\":500,\"ExcludedPercent\":\"0\",\"PricePerPerson\":66499,\"TourType\":1,\"TourTypeTitle\":\"Private\",\"DiscountType\":0,\"DiscountVal\":0,\"PC\":1,\"CWOB\":43000,\"CEB\":56000,\"COSTDO\":66499,\"COSTSO\":132498,\"ACEB\":66499,\"COSTTO\":66499,\"CostQuad\":66499}]}]}]}}]}]},\"Terms\":{\"RefundPolicy\":\"&lt;p&gt;Refund Policy&lt;\\/p&gt;\\r\\n\",\"BookingTerms\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;50 advance to be paid at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Air fair is calcualted at the time of proposal creation and is subject to change at the time of booking.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for domestic packages before 4 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;100 payment is to be made for international packages before 7 days of departure date.&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;In case of cancellation standard cancellation policies will be applicable or may be changed as per the policies&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"CancellationPolicy\":\"&lt;p&gt;If you Cancel your Holiday&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;30 days or more before date of departure : 25% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;29 - 20 days before date of departure : 50% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;19 days or less before date of departure : 100% of total cost&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"Conditions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In case client wishes to prepone \\/postpone his or her travel dates, we request you to kindly reach us 15 days prior to journey date via e-mail\\/SMS.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The customers can prepone \\/postpone their tour once without any additional charges (if intimated before 15 days of travel date in written). However postponing &amp;amp; preponing second time will attract additional charges.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Also note that few service providers (Hoteliers, Transporter etc.) may apply postpone\\/prepone charges even after meeting above requirement. In such cases postpone\\/prepone charges will deducted from the advance amount deposited.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;In all prepone or postpone scenarios, the services and the costing will be subject to availability of Hotel\\/Volvo and season\\/off season time.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;We do not accept any changes in plan within 15 days of travel date. However in rare cases like adverse climatic conditions or strikes, package can be postponed which will be intimated to you beforehand.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The validity to utilize your Advance payment in prepone\\/postpone scenarios is 1 Year from the date of advance payment.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;The advance payment and the invoice Number allotted to you, are transferable i.e. you can pass on your booking to any of your friends\\/ relatives. (Please Note: In order to transfer your booking you must meet the above terms and conditions first).&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Exclusions\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;&lt;strong&gt;GST if not mentioned in the rates&lt;\\/strong&gt;&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All personal expenses like tips, laundry, telephone calls\\/fax, alcoholic beverages, camera\\/video camera fees at monuments, medical expenses, airport departure tax etc.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Anything not mentioned under Package Inclusions.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Entrance fees at all monuments and sightseeing spots&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Cost incidental to any change in the itinerary\\/stay on account of flight cancellation due to bad weather, ill health, and roadblocks and\\/or any factors beyond control.&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Airfare if not mentioned in the&amp;nbsp;itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"Inclusion\":\"&lt;ul&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Hotel Nights accommodation on twin sharing basis as per itinerary&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Meals as per hotel plan&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;All transfers and sightseeing as per the itinerary in an air-conditioned vehicle on sharing basis&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;\\r\\n\\t&lt;p&gt;Road taxes, parking fees, fuel charges, interstate taxes&lt;\\/p&gt;\\r\\n\\t&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\\r\\n&lt;p&gt;&amp;nbsp;&lt;\\/p&gt;\\r\\n\",\"TravelBasics\":\"&lt;p&gt;Here is a must take list that you should carry while traveling:&lt;\\/p&gt;\\r\\n\\r\\n&lt;ul&gt;\\r\\n\\t&lt;li&gt;ID Proof any Passport v(For International Travel)&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Water Bottle with a Filtering System&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Daily Medications&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Phone Chargers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Camera&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;ID Proof&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Toilet Papers&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Walking Shoes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ear Phones&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Cap&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Power bank&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Sun Screen Lotion&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Wipes&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Ladies basics&lt;\\/li&gt;\\r\\n\\t&lt;li&gt;Mosquito Creame\\/bands\\/net depending upon your itinerary.&lt;\\/li&gt;\\r\\n&lt;\\/ul&gt;\\r\\n\",\"WhyUseUs\":\"&lt;p&gt;We are a Travel Boutique house which specializes in the personalized travel experiences . We have&amp;nbsp;travelled&amp;nbsp;the length and breadth of these regions repeatedly, just to ensure that our clients are visiting the right places at the right time on the right days, eating hygienic &amp;amp; tasty food, staying at the best properties which are cheap and fantastic as well. We have every answer to your query pertaining to the destinations.&lt;\\/p&gt;\\r\\n\"},\"PackTypeMask\":0,\"InclMask\":null,\"DiscountType\":0,\"DiscountVal\":0,\"CancellationRules\":[],\"BuspickupLocation\":[],\"TransferData\":{\"300116\":{\"1\":{\"Sequence\":[1],\"TPInvnSysId\":[300116],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"300117\":{\"2\":{\"Sequence\":[2],\"TPInvnSysId\":[300117],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"300118\":{\"3\":{\"Sequence\":[3],\"TPInvnSysId\":[300118],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}},\"300119\":{\"4\":{\"Sequence\":[4],\"TPInvnSysId\":[300119],\"Remark\":[\"&lt;p&gt;&lt;br&gt;&lt;\\/p&gt;\"],\"NetCost\":[0],\"AirportTransport\":[\"0\"],\"HotelTransport\":[\"0\"],\"RoadType\":[\"\"]}}},\"AllowBookingType\":1,\"fixedInventory\":[]}}','Baku','Baku,Eurasia,Azerbaijan',NULL,'2099',66499,67999,3,NULL,NULL,NULL,2,'',0,'2022-11-23 00:00:00','2022-12-15 00:00:00','2022-12-15 00:00:00',3,'Azerbaijan','15','2022-11-23 13:10:53','2022-11-23 00:00:00',1,1,'1','1','0',NULL,NULL,NULL,NULL,'azerbaijan-3n-4d',NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `tb_tbb2c_packages_master` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tb_traavelplan`
--

DROP TABLE IF EXISTS `tb_traavelplan`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan` (
  `TPSysId` int NOT NULL AUTO_INCREMENT,
  `code` varchar(256) NOT NULL,
  `MasterTpSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `UserSysId` int NOT NULL,
  `CustomerSysId` int NOT NULL,
  `StartDate` date NOT NULL,
  `StartCityId` int NOT NULL,
  `StartCity` varchar(36) NOT NULL,
  `EndCityId` int NOT NULL,
  `EndCity` varchar(36) NOT NULL,
  `TotalAdult` int NOT NULL,
  `TotalChild` int NOT NULL,
  `TotalInfant` int NOT NULL,
  `StartContId` int NOT NULL,
  `EndContId` int NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `query_type` enum('1','0') NOT NULL DEFAULT '1',
  `packageName` varchar(256) NOT NULL,
  `noofNights` int NOT NULL DEFAULT '0',
  `IsCustEdit` enum('1','0') NOT NULL DEFAULT '0',
  `PlanType` int NOT NULL DEFAULT (5),
  PRIMARY KEY (`TPSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan`
--

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

--
-- Table structure for table `tb_traavelplan_destination`
--

DROP TABLE IF EXISTS `tb_traavelplan_destination`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_destination` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `Seq` int NOT NULL,
  `NoDay` int NOT NULL,
  `CitySysId` int NOT NULL,
  `destName` varchar(100) NOT NULL,
  `StartDate` date NOT NULL,
  `EndDate` date NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_destination`
--

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

--
-- Table structure for table `tb_traavelplan_hotel_selected`
--

DROP TABLE IF EXISTS `tb_traavelplan_hotel_selected`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_hotel_selected` (
  `hotelSId` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `optionNo` int NOT NULL,
  `selected_hotelId` int NOT NULL,
  `price` int NOT NULL,
  `DestinationId` int NOT NULL,
  `RoomTypeId` int NOT NULL,
  `MealPlanId` int NOT NULL,
  `Adult` int NOT NULL,
  `AdultExtraBed` int NOT NULL,
  `ChildWithBed` int NOT NULL,
  `ChildWithOutBed` int NOT NULL,
  `Infent` int NOT NULL,
  `IsSelected` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `startDate` date NOT NULL,
  `endDate` date NOT NULL,
  `noofNights` int NOT NULL,
  `destSeq` int NOT NULL,
  PRIMARY KEY (`hotelSId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_hotel_selected`
--

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

--
-- Table structure for table `tb_traavelplan_itinerary`
--

DROP TABLE IF EXISTS `tb_traavelplan_itinerary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_itinerary` (
  `it_Id` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `it_day` varchar(100) NOT NULL,
  `it_title` varchar(100) DEFAULT NULL,
  `it_description` text,
  `cityId` int DEFAULT NULL,
  `CityName` varchar(100) DEFAULT NULL,
  `contId` int DEFAULT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`it_Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_itinerary`
--

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

--
-- Table structure for table `tb_traavelplan_meals`
--

DROP TABLE IF EXISTS `tb_traavelplan_meals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_meals` (
  `mid` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `MealSysId` int NOT NULL,
  `MealName` varchar(200) DEFAULT NULL,
  `RestaurantId` int NOT NULL DEFAULT '0',
  `AreaSysId` int NOT NULL,
  `CitySysId` int NOT NULL,
  `day` int NOT NULL,
  `mealsCategory` int NOT NULL,
  `mealsType` int NOT NULL DEFAULT '0',
  `price` int NOT NULL DEFAULT '0',
  `markup` int DEFAULT NULL,
  `supplierId` int DEFAULT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `AdultCost` int NOT NULL DEFAULT '0',
  `AdultMarkup` int NOT NULL DEFAULT '0',
  `ChildCost` int NOT NULL DEFAULT '0',
  `ChildMarkup` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`mid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_meals`
--

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

--
-- Table structure for table `tb_traavelplan_sightseeings`
--

DROP TABLE IF EXISTS `tb_traavelplan_sightseeings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_sightseeings` (
  `sid` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `SSSysId` int NOT NULL,
  `gtxPkgId` int NOT NULL DEFAULT '0',
  `Title` varchar(500) NOT NULL,
  `CitySysId` int NOT NULL,
  `day` int NOT NULL,
  `Description` text,
  `Image` varchar(256) DEFAULT NULL,
  `sightseeingType` int NOT NULL,
  `priceType` int NOT NULL DEFAULT '0',
  `price` int NOT NULL DEFAULT '0',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`sid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_sightseeings`
--

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

--
-- Table structure for table `tb_traavelplan_tnc`
--

DROP TABLE IF EXISTS `tb_traavelplan_tnc`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_tnc` (
  `tncId` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `inclusion` text NOT NULL,
  `exclusion` text NOT NULL,
  `tnc` text NOT NULL,
  `travel_basics` text NOT NULL,
  `booking_term` text NOT NULL,
  `why_choose_us` text NOT NULL,
  `cancellation_policy` text NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsmarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`tncId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_tnc`
--

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

--
-- Table structure for table `tb_traavelplan_tnc_master`
--

DROP TABLE IF EXISTS `tb_traavelplan_tnc_master`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_tnc_master` (
  `travTncId` int NOT NULL AUTO_INCREMENT,
  `agencySysId` int NOT NULL,
  `inclusion` text NOT NULL,
  `exclusion` text NOT NULL,
  `tnc` text NOT NULL,
  `travel_basics` text NOT NULL,
  `booking_term` text NOT NULL,
  `why_choose_us` text NOT NULL,
  `cancellation_policy` text NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsmarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`travTncId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_tnc_master`
--

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

--
-- Table structure for table `tb_traavelplan_vehicles`
--

DROP TABLE IF EXISTS `tb_traavelplan_vehicles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_traavelplan_vehicles` (
  `vehicleId` int NOT NULL AUTO_INCREMENT,
  `TPSysId` int NOT NULL,
  `VehName` varchar(255) NOT NULL,
  `RouteName` varchar(255) NOT NULL,
  `Capacity` int NOT NULL,
  `Noofnights` int NOT NULL,
  `count_cost` int NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `TotalAdult` int NOT NULL,
  `TotalChild` int NOT NULL,
  `TotalInfent` int NOT NULL,
  `RouteVechSysId` int NOT NULL,
  `VehicleSysId` int NOT NULL,
  `StartCitySysId` int NOT NULL,
  `DestCityId` int NOT NULL,
  `VehSysId` int NOT NULL,
  `SEQ` int NOT NULL,
  `CityName` varchar(64) NOT NULL,
  `EndCityName` varchar(64) NOT NULL,
  `RouteSysId` int NOT NULL,
  `TransType` varchar(255) NOT NULL,
  `TransTypeCat` varchar(255) NOT NULL,
  `startDate` date NOT NULL,
  `endDate` date NOT NULL,
  `selected_quantity` int NOT NULL,
  PRIMARY KEY (`vehicleId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_traavelplan_vehicles`
--

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

--
-- Table structure for table `tb_transport_route`
--

DROP TABLE IF EXISTS `tb_transport_route`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_transport_route` (
  `transport_route_id` int NOT NULL AUTO_INCREMENT,
  `RouteSysId` bigint DEFAULT NULL,
  `RouteName` varchar(250) DEFAULT NULL,
  `SupplierSysId` bigint DEFAULT NULL,
  `Title` varchar(250) DEFAULT NULL,
  `Description` varchar(500) DEFAULT NULL,
  `StartCitySysId` bigint DEFAULT NULL,
  `Noofnights` int DEFAULT NULL,
  `CityName` varchar(50) DEFAULT NULL,
  `EndCityName` varchar(50) DEFAULT NULL,
  `category` text,
  `cityIncludes` text,
  `SSIncludes` text,
  `EndCitySysId` int NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`transport_route_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_transport_route`
--

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

--
-- Table structure for table `tb_travelplan_hotel`
--

DROP TABLE IF EXISTS `tb_travelplan_hotel`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_travelplan_hotel` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `HotelId` int NOT NULL,
  `hotelName` varchar(256) NOT NULL,
  `DestinationId` int NOT NULL,
  `RoomTypeId` int NOT NULL,
  `MealPlanId` int NOT NULL,
  `Adult` int NOT NULL,
  `AdultExtraBed` int NOT NULL,
  `ChildWithBed` int NOT NULL,
  `ChildWithOutBed` int NOT NULL,
  `Infent` int NOT NULL,
  `IsSelected` enum('0','1') NOT NULL,
  `TpsysId` int NOT NULL,
  `destsysId` int NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `startDate` date NOT NULL,
  `endDate` date NOT NULL,
  `noofNights` int NOT NULL,
  `destSeq` int NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_travelplan_hotel`
--

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

--
-- Table structure for table `tb_whychooseus`
--

DROP TABLE IF EXISTS `tb_whychooseus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tb_whychooseus` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text NOT NULL,
  `status` enum('1','0') NOT NULL,
  `isDisplayOnHome` enum('1','0') NOT NULL,
  `image` varchar(200) NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tb_whychooseus`
--

LOCK TABLES `tb_whychooseus` WRITE;
/*!40000 ALTER TABLE `tb_whychooseus` DISABLE KEYS */;
INSERT INTO `tb_whychooseus` VALUES (12,'Competitive Pricing','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','12_1672386029.png','0'),(13,'Worldwide Coverage','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','13_1672400344.png','0'),(14,'Fast Booking','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','14_1672400333.png','0'),(15,'Guided Tours','Lorem ipsum dolor sit amet, consectetur adipisicing elit.','1','1','15_1672400290.png','0');
/*!40000 ALTER TABLE `tb_whychooseus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_about_agency`
--

DROP TABLE IF EXISTS `tbl_about_agency`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_about_agency` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(256) NOT NULL,
  `icon` varchar(256) NOT NULL,
  `url` varchar(500) NOT NULL,
  `tab` enum('0','1') NOT NULL DEFAULT '0',
  `isActive` enum('0','1') NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_about_agency`
--

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

--
-- Table structure for table `tbl_about_indoasia`
--

DROP TABLE IF EXISTS `tbl_about_indoasia`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_about_indoasia` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `AboutTitle` varchar(255) NOT NULL,
  `AboutImage` varchar(255) NOT NULL,
  `AboutDescription` text NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_about_indoasia`
--

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

--
-- Table structure for table `tbl_about_yit`
--

DROP TABLE IF EXISTS `tbl_about_yit`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_about_yit` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `AboutTitle` varchar(255) NOT NULL,
  `AboutImage` varchar(255) NOT NULL,
  `AboutDescription` text NOT NULL,
  `url` varchar(256) NOT NULL,
  `opt` int NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_about_yit`
--

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

--
-- Table structure for table `tbl_accolades_awards`
--

DROP TABLE IF EXISTS `tbl_accolades_awards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_accolades_awards` (
  `AwardId` int NOT NULL AUTO_INCREMENT,
  `AwardTitle` varchar(100) NOT NULL,
  `AwardImage` varchar(256) NOT NULL,
  `AwardDescription` text NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`AwardId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_accolades_awards`
--

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

--
-- Table structure for table `tbl_accreditations_client`
--

DROP TABLE IF EXISTS `tbl_accreditations_client`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_accreditations_client` (
  `ClientId` int NOT NULL AUTO_INCREMENT,
  `AccreditationsTitle` text NOT NULL,
  `AccreditationsImage` varchar(100) NOT NULL,
  `ClientImages` text NOT NULL,
  `CreateDate` datetime NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`ClientId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_accreditations_client`
--

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

--
-- Table structure for table `tbl_agent_query`
--

DROP TABLE IF EXISTS `tbl_agent_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_agent_query` (
  `queryId` int NOT NULL AUTO_INCREMENT,
  `code` text NOT NULL,
  `MasterTpSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `UserSysId` int NOT NULL,
  `StartDate` datetime NOT NULL,
  `TotalAdult` int NOT NULL,
  `TotalChild` int NOT NULL,
  `TotalInfant` int NOT NULL,
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `packageName` varchar(256) NOT NULL,
  `noofNights` int NOT NULL,
  `Destination` varchar(256) NOT NULL,
  PRIMARY KEY (`queryId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_agent_query`
--

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

--
-- Table structure for table `tbl_airline_support`
--

DROP TABLE IF EXISTS `tbl_airline_support`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_airline_support` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `airlinecode` varchar(20) NOT NULL,
  `image` varchar(256) DEFAULT NULL,
  `address1` varchar(250) DEFAULT NULL,
  `address2` varchar(250) DEFAULT NULL,
  `phoneno` varchar(50) DEFAULT NULL,
  `mobileno` varchar(50) DEFAULT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=105 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_airline_support`
--

LOCK TABLES `tbl_airline_support` WRITE;
/*!40000 ALTER TABLE `tbl_airline_support` DISABLE KEYS */;
INSERT INTO `tbl_airline_support` VALUES (32,'9H','','<p>dsfsdfs</p>\r\n','<p>dsfsdfs</p>\r\n','999988','77777777777','0','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(33,'9W','','','','','','0','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(34,'AA','','','','','','0','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(35,'AC','','','','','','0','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(36,'AF','','','','','','0','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(37,'AI','','','','','','0','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(38,'AK','','','','','','0','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(39,'AY','','','','','','0','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(40,'AZ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(41,'B3','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(42,'BA','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(43,'CO','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(44,'CX','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(45,'CZ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(46,'D7','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(47,'DL','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(48,'DN','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(49,'EK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(50,'ET','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(51,'EY','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(52,'FD','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(53,'FI','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(54,'FR','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(55,'FZ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(56,'G8','G8.png','C-1, Wadia International Centre (WIC), Pandurang Budhkar Marg, Worli, Mumbai 400 025, India','C-1, Wadia International Centre (WIC), Pandurang Budhkar Marg, Worli, Mumbai 400 025, India','022 6741 0000','022 6868 6000','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(57,'G9','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(58,'GF','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(59,'H1','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(60,'HQ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(61,'I5','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(62,'I7','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(63,'IC','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(64,'IT','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(65,'IX','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(66,'J9','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(67,'JL','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(68,'KC','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(69,'KL','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(70,'KU','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(71,'LB','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(72,'LH','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(73,'LX','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(74,'MH','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(75,'MU','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(76,'noimage','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(77,'OS','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(78,'PG','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(79,'PR','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(80,'PS','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(81,'QF','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(82,'QR','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(83,'QZ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(84,'RA','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(85,'SG','','A-74, Sweetball Business Center BAY, 108, Sector 63, Noida, Uttar Pradesh 201301','','222222222','44444444','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(86,'SK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(87,'SN','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(88,'SQ','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(89,'SU','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(90,'SV','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(91,'TG','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(92,'TK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(93,'U2','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(94,'UA','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(95,'UK','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(96,'UL','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(97,'VS','','','','','','1','0','1','2021-12-10 07:08:59','2021-12-10 07:08:59'),(98,'WY','','','','','','1','0','1','2021-12-10 07:09:00','2021-12-10 07:09:00'),(99,'Z5','','','','','','1','0','1','2021-12-10 07:09:00','2021-12-10 07:09:00'),(100,'ZS','','','','','','1','0','1','2021-12-10 07:09:00','2021-12-10 07:09:00'),(101,'6E','6E.png','indigo','indigo','01200000','0120122333','0','0','1','2021-12-10 07:15:55','2021-12-10 07:15:55'),(102,'AccesRail_1516864292','','','','','','0','0','1','2021-12-10 12:49:43','2021-12-10 12:49:43'),(103,'royal_air_cambodge','','','','','','1','0','1','2021-12-10 12:49:43','2021-12-10 12:49:43'),(104,'zuliana_de_aviacian','','','','','','1','0','1','2021-12-10 12:49:43','2021-12-10 12:49:43');
/*!40000 ALTER TABLE `tbl_airline_support` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_all_continent`
--

DROP TABLE IF EXISTS `tbl_all_continent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_all_continent` (
  `ContinentId` int NOT NULL AUTO_INCREMENT,
  `ContinentTitle` varchar(256) NOT NULL,
  `ContinentLabel` varchar(256) NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `UpdateDate` datetime NOT NULL,
  `orderOfAppearance` int NOT NULL,
  PRIMARY KEY (`ContinentId`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_all_continent`
--

LOCK TABLES `tbl_all_continent` WRITE;
/*!40000 ALTER TABLE `tbl_all_continent` DISABLE KEYS */;
INSERT INTO `tbl_all_continent` VALUES (1,'Middle East','middle-east','1','2020-01-27 17:16:14',5),(2,'Asia','asia','1','2019-10-04 11:59:03',4),(3,'Europe','europe','1','2019-04-15 17:37:27',3),(4,'India','india','1','2020-02-12 16:33:30',1),(5,'North America','north-america','1','2020-01-31 13:19:37',8),(6,'Eurasia','eurasia','1','2020-01-28 13:02:55',6),(7,'United Kingdom','united-kingdom','1','2020-01-27 17:15:48',2),(8,'Oceania','oceania','1','2020-03-19 18:24:39',7);
/*!40000 ALTER TABLE `tbl_all_continent` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_available_destination`
--

DROP TABLE IF EXISTS `tbl_available_destination`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_available_destination` (
  `id` int NOT NULL AUTO_INCREMENT,
  `source` varchar(100) NOT NULL,
  `Destination` varchar(100) DEFAULT NULL,
  `Origin` varchar(100) DEFAULT NULL,
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_available_destination`
--

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

--
-- Table structure for table `tbl_block`
--

DROP TABLE IF EXISTS `tbl_block`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_block` (
  `sid` int NOT NULL AUTO_INCREMENT,
  `block_title` varchar(255) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `block_description` longtext NOT NULL,
  `url_title` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `background_image` varchar(50) NOT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  PRIMARY KEY (`sid`),
  UNIQUE KEY `sid` (`sid`),
  KEY `parentId` (`sid`),
  KEY `headerDisplay` (`status`),
  KEY `parentIde` (`status`),
  KEY `parentIdother` (`sid`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_block`
--

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

--
-- Table structure for table `tbl_blog`
--

DROP TABLE IF EXISTS `tbl_blog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_blog` (
  `BlogId` int NOT NULL AUTO_INCREMENT,
  `BlogTitle` varchar(255) NOT NULL,
  `BlogIdentifier` varchar(256) NOT NULL,
  `BlogCity` varchar(100) NOT NULL,
  `BlogCityId` varchar(100) NOT NULL,
  `BlogDate` date NOT NULL,
  `PostedBy` varchar(255) NOT NULL,
  `BlogImage` varchar(255) NOT NULL,
  `BlogPostByImage` varchar(256) NOT NULL,
  `BlogDescription` text NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint DEFAULT '0',
  `isMarkForDel` tinyint DEFAULT '0',
  `keyword` text,
  `description` text,
  `metatag` text,
  `selectedPackages` varchar(500) NOT NULL,
  PRIMARY KEY (`BlogId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_blog`
--

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

--
-- Table structure for table `tbl_branches`
--

DROP TABLE IF EXISTS `tbl_branches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_branches` (
  `DesSysId` bigint NOT NULL AUTO_INCREMENT,
  `office_address` varchar(250) NOT NULL,
  `office_address_name` varchar(250) NOT NULL,
  `branch_mailid` varchar(25) NOT NULL,
  `address` varchar(255) NOT NULL,
  `image` varchar(200) NOT NULL,
  `website_link` varchar(100) NOT NULL,
  `toll_free_name` varchar(100) NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`DesSysId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_branches`
--

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

--
-- Table structure for table `tbl_bus_booking`
--

DROP TABLE IF EXISTS `tbl_bus_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_bus_booking` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `MasterTPSysId` int NOT NULL DEFAULT '0',
  `TPSysId` int NOT NULL DEFAULT '0',
  `PNR_Number` varchar(500) DEFAULT NULL,
  `block_ticket_number` varchar(500) DEFAULT NULL,
  `ticket_number` varchar(100) DEFAULT NULL,
  `TravelDate` date NOT NULL,
  `source` int NOT NULL DEFAULT '0',
  `destination` int NOT NULL DEFAULT '0',
  `fromCityName` varchar(100) DEFAULT NULL,
  `toCityName` varchar(100) DEFAULT NULL,
  `seat_number` varchar(250) NOT NULL,
  `BookingId` varchar(50) DEFAULT NULL,
  `APIBookingId` varchar(150) DEFAULT NULL,
  `apiTraceId` varchar(255) NOT NULL,
  `DepartureTime` time NOT NULL,
  `ArrivalTime` time NOT NULL,
  `busRoutes` varchar(100) DEFAULT NULL,
  `travels` varchar(100) DEFAULT NULL,
  `busType` varchar(200) DEFAULT NULL,
  `routeId` varchar(200) DEFAULT NULL,
  `FlightDuration` varchar(100) NOT NULL,
  `CurrencyType` int NOT NULL,
  `PublishedFare` double NOT NULL,
  `JourneyType` int NOT NULL,
  `TripType` int NOT NULL,
  `logo` varchar(250) NOT NULL,
  `Currency` varchar(5) NOT NULL,
  `BaseFare` float NOT NULL,
  `Tax` float NOT NULL,
  `Discount` float NOT NULL,
  `ServiceFee` float NOT NULL,
  `OfferedFare` double NOT NULL,
  `AgentCommisionEarned` float NOT NULL,
  `AgentCommisionEarnedGST` float NOT NULL DEFAULT '0',
  `AgencyMarkUp` float NOT NULL,
  `AgencyMarkUpGST` float NOT NULL,
  `GTXMarkUp` float NOT NULL,
  `GTXMarkUpGST` float NOT NULL,
  `ExtraMarkup` float NOT NULL DEFAULT '0',
  `ExtraMarkupOnGST` float NOT NULL DEFAULT '0',
  `bookingData` longtext,
  `status` int NOT NULL DEFAULT '0',
  `API_Response` longtext,
  `API_Booking_Data` longtext,
  `FlightQueryids` text,
  `paymentStatus` smallint NOT NULL DEFAULT '0',
  `GUID` varchar(100) DEFAULT NULL,
  `error` varchar(100) DEFAULT NULL,
  `error_Message` varchar(200) DEFAULT NULL,
  `TransactionId_credit` varchar(200) DEFAULT NULL,
  `TransactionId_debit` varchar(200) DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  `bookedby` varchar(200) DEFAULT NULL,
  `customerName` varchar(100) DEFAULT NULL,
  `CustomerDetails` varchar(250) DEFAULT NULL,
  `InvoiceNo` varchar(200) DEFAULT NULL,
  `InvoiceDate` date DEFAULT NULL,
  `address` varchar(250) DEFAULT NULL,
  `InvoiceName` varchar(150) DEFAULT NULL,
  `mailsent` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_bus_booking`
--

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

--
-- Table structure for table `tbl_bus_booking_customer`
--

DROP TABLE IF EXISTS `tbl_bus_booking_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_bus_booking_customer` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `bus_booking_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `apiTraceId` varchar(150) NOT NULL,
  `BookingId` varchar(200) DEFAULT NULL,
  `APIBookingId` varchar(200) DEFAULT NULL,
  `PNR_Number` varchar(200) DEFAULT NULL,
  `seatno` varchar(100) DEFAULT NULL,
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `AgentSysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` varchar(11) NOT NULL DEFAULT '0',
  `Gender_Id` tinyint NOT NULL DEFAULT '0',
  `Relation` varchar(255) DEFAULT NULL,
  `idType` varchar(200) DEFAULT NULL,
  `idNumber` varchar(200) DEFAULT NULL,
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) NOT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `Address` varchar(200) NOT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `passengerage` varchar(50) DEFAULT NULL,
  `countryCode` varchar(50) DEFAULT NULL,
  `BaseFare` float NOT NULL DEFAULT '0',
  `Tax` float NOT NULL DEFAULT '0',
  `AgentCommisionEarned` float NOT NULL DEFAULT '0',
  `AgentCommisionEarnedGST` float NOT NULL DEFAULT '0',
  `AgencyMarkUp` float NOT NULL DEFAULT '0',
  `AgencyMarkUpGST` float NOT NULL DEFAULT '0',
  `GTXMarkUp` float NOT NULL DEFAULT '0',
  `GTXMarkUpGST` float NOT NULL DEFAULT '0',
  `IsApproved` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COMMENT='Users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_bus_booking_customer`
--

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

--
-- Table structure for table `tbl_car_booking`
--

DROP TABLE IF EXISTS `tbl_car_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_car_booking` (
  `id` int NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `Trip_Id` varchar(255) NOT NULL,
  `TravelDate` date NOT NULL,
  `BookingId` varchar(120) NOT NULL,
  `status` varchar(50) NOT NULL,
  `API_Response` longtext NOT NULL,
  `GUID` varchar(255) NOT NULL,
  `error` varchar(150) DEFAULT NULL,
  `PaymentStatus` smallint NOT NULL,
  `error_Message` varchar(50) DEFAULT NULL,
  `email` varchar(150) DEFAULT NULL,
  `phone` varchar(50) NOT NULL,
  `customerData` text NOT NULL,
  `requestdata` text NOT NULL,
  `ticketStatus` varchar(150) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_car_booking`
--

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

--
-- Table structure for table `tbl_cashfee_detail`
--

DROP TABLE IF EXISTS `tbl_cashfee_detail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_cashfee_detail` (
  `orderId` varchar(2000) DEFAULT NULL,
  `signature` varchar(2000) DEFAULT NULL,
  `encoded_data` text,
  `id` int NOT NULL AUTO_INCREMENT,
  `GUID` varchar(255) DEFAULT NULL,
  `orderstatus` enum('0','1','2') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=89 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_cashfee_detail`
--

LOCK TABLES `tbl_cashfee_detail` WRITE;
/*!40000 ALTER TABLE `tbl_cashfee_detail` DISABLE KEYS */;
INSERT INTO `tbl_cashfee_detail` VALUES ('AEC2527E881641FB99158BC50E578B83','Fz5su/cmpAnjVO5FU70WSfJIJVTyH0oSCiaEIf8mNvI=','7ba2ecb5dc03553d903bcb888f274a47294791cf7fef6b93b2663a9737d65361d50a0b191b101ca7aa4f9d9f832a07e566d54e0715ba9161cd46a3b17dedfaac89256c8f4862f1f10ec2845577820befdd3f45f8d94fad731cab6fa3723240856b3d52ea6d4e358fc4fbe5b6b72157883bd01ff3300f55900d5394e02a2a44e26cfc40ed92a4de40b2836221ace3e015886eb02d4cfe4f00ef2ea74d540d5873a7a7a6d925448bf963e0fa7cdab26a3f3548bcfa47deb28eac891b8faa21f30809e381ea38728a6b2b0799964546b6cd66f38a82832cf2f0effeacd272e3e05c6ed823d545b12ae1ca7af927acc1a2186043082c62272f7076fb2a392072aa5f',1,'7613B81E8C31473F85544ED1C5087DD5','0'),('FA8C468BE6174BB5A288C94A336BEBD5','HcoX7r1Qxki7GEnlD+F/mWu2jb/mrAo/5mBfEOW0Vk8=','43105addc998c3374d3a3fe827621456db112a1a11620f7d8846d83d5812e387963838a054ecd4aa2be6a3b0239d87be4a89abf7799ce9045614712b4a099193d350eb5b490bab31829210e33e7629a167c5a7b2b30acdf823cb8c79ddd3a9f394ff42914bf8271684be78106178fd3e56f2c12c5328a8f5f88d40eedf97ff0ea5d069467c86cd802af4d028c7d908cae78b0581888565dff1cce03187225e25da62b734117282dbadb7fb298fb32b8f9e99d5d6a363750f433e18ee87be3c11d6579889ab189f65e1bb1e16da6a8fa50430151fcb251fb587ccc2c2718d9cbb6d40c09c727fee1da520567843704e0747c2e935f6882dac6d8839eb39da840b',2,'D383A4FF3B894BF685A75174D4121CA2','0'),('CC3F31FF425B4C9D9A50C1435E52FBDB','bXrxyzQ1skN8hh1HXBpqFSjUJNi2AN4SU19qz8HTNVc=','8a2714de4cd83269befce70c83c571728c12fe95546c5c2bb29411a913182b0ff1537c76afac1f253a2c93dbabe51a09dcee067743ee8ecd0bc49d40d078e64b1f600e1e9ed57340b411568f78d4372c71293cfc9a45a2edaaca31614c9eb0f17553b829e39dc4336c9bdd55b83d090d8d7ced279db8d889da5300d46a6820f333696316fd61b1ba84b48a459ee4df04a733ef04a4ce214d2a177d54e824f6e1640ae497dc171fed321473ce0a345cd059c42ef534deedf25f9de7ed7118465285941c3a56ddfeeb9b3a4be7726dab4497d3fdcac233ef667b25dcedc4e83b366759a39b0f8f8e10df91b8812d989eb9a9504f45f398dc3786afe157152bc9fd',3,'FC6D7C1139DF41659D501DB386CF5932','0'),('8AD439E1EF724CC598FF67C82715759B','FeQpOVkJRrG/A4fcpmEx+NebGrBW0/jX79piwx3eWRQ=','7be00b3d9820d6ff7b4117db03e0506f6f192dc9dd74998e19a338a4e98e831807e68d63d19255495cb31261e152a0420b7a02c640a1ac71d28fdad35412edd2b982bd78575ce35cd6ce229e76365c099efd7ccf4c79a466944e3a2535ff7d4c4f6da936696c5d09e24d088c192fb449ce430c5a0b60da7d42742e1c9eb5d8714c25552495794c9fbcf1ee7dc9528da4b6b6c0ef5b3d3137a7a6cee0f9e6a471d26a101d3e0eb0042990762b13ddbae9a8af40c989d38c381fdec24b30826bce1b047ce956035113f5c02ecb13afd3107a35938460e806110a2e2b236e93c69708d537c9f2bd7ae3883846ace022ed1d41c9d04535bfb6348d389e2688a16e03',4,'96296AA6CF134AD4A30016F3CA8466F4','0'),('268A53B210BD4AD9BD5E95C8BC55F5C0','gyQlubn/3GyJb6Gc8ss18YRnGOh/8bL5meSvMNObqcI=','960137bdce828b5de000b6a32be62259d05a5d9c8f2912a3a292648d385edd4d5a765ffc3289b411016460cf0b72cdcb96e822f9036096e06eb5bde4602e3b2c98c16eb5e37c29d6f5c6006c5eb715f144fa393cf223911c7daaddf144e46c2cd76153454b33326bae52b8b704f0171c665197298460be9ef43d1c99a25e3a0319b18d9bbecc1de07ecc0304b15fc6336b1ae5815e71f4f463a076a295857c59f3012739fda57dd30be321cdff9bc809119fc7481e30aa853179465347a4308ce232e1ab95c1f7803e51728c0a38e78e68fda5c4cd53c3e8d2e2ff3397ecbd2409c609f5bd2a8c7d7ba7d8713f83f3d24f549876bb3c3603a5afe77c05bbd597',5,'C95495F662A147A580F94D5F7D82900E','0'),('8372E82CF0984AD6A4B7BBFEE5013C1A','navNiCHGMCkP5pgiL6yGc6JMSuXi6nrpMmO5ahh8fvE=','eaf1569c7caac6f33fe22ca8e68d00a48eb8cea7dba37104a300e402333e1686e96349441135a9a6e1c02d15e316c0937c9a2e8d6fea91e381f094e93b234b7b0441af9721e2311cc73027f22df264ba2f42e53ecf22755dd54fe0a0f434c21e2507fbc5ecb3707695ba4d4ed133e51124c828305b0399d6041d0d95f95710b82a27fdd42fef3f2c8baca1eb26a1c8426e293dae282a748923a479ea736d2b9e579ede3d94d2c76ecabdc7ebe82a6385ed4d29459906a26d2b4f59f3d2857ae6de6daca863a3dc81784c9b7dd4273b33fce2b3f855ddddee3efd53066f6357e40613afe1a4ebbb8f2b9082e5951590944b55545689d2ba08d8b3acde42f7396d',6,'E9D5F6671F3C434197BBC05D73F502E0','0'),('BCA9781192AE488E923BFC1F9B991259','LgRUhKarSyuxmq4eAlIGmOAdFRqqVHS6++vQ8jJbPc0=','2aaf315b3d61139b0caa43e939e17ac3a53d138c63b4c8938bca4f6d5a088de4305eb47cff4c83fcddee90c7695f853ee3af5e80fd31af0803279877ddedc6582b5d7fd11223a90624f955ab13fbb546691dc87b5fd802b372b579c2adbd2949006a8a21890722982f2448d10436c8669eeb89868caf47605b59db9bd764f0f950277db366d3f45f1e514f3d08ecc9dad53ee8a618f8b92aea611a6a980117b337f0fe94cfe1f72bc5c1617811fcf2b3975f467f48b62ee5316d8bb7fdcd0b81839739424bb875ad71473c23848fca83b9e172ba02381dc794567e2e6b7fe6400007770900948ab3761104ef2c0ee0e49de421b8909e5bfbcef1c1247ba1929c',7,'55D4B73D953B405FB53A83323FC27162','0'),('945067F20D67421BBC3094C09A181ADD','GL4ACAMVWKpq+mGPBZ/9mfx/l5p6J/oeROdKySsr6lM=','905fd06f80540af711c5e55ff1085cf140239999c37a6411e1864d855145a26d9f3cc80caabbbf37e1335131919eab222cfed5828ab07b200dcd86d5673f635ccdf346d98401670d12c66e5c938f2d26e74c7712c0f95c94c4286a57fed56fd557a1f9579798f744dbad448563ff71709434375c69bf2a38282384b08161c5292c5badada3b4356242755b9b56edfdbc830a09290288ee88fde0f7ba92a356fbad09892b2f28c01ef1e9613de1b14287775684aea14d3eb622d30e90efaee5c8e7518badbcde54fbbf6292ece6be956673315760fff4a499addcb4f3775bb65f48414082f79a0b3987c29a45a20d9bc3f3110e99a6fa1c63e7544ff3a0193a92',8,'B079C7BB21124607A00EA07D46301D71','0'),('7F812710CC8E42479B2A9293462E6E0A','Je1+HAZ/hV6gm9C/nrVH3F2zCxaW0OkXO6oF+QB+m7g=','42c05414e753eb11910a8d8b4910b8f9c19a4a3c811ab5acb14783833fea6095c09964bc083d2b63bdffcc110b93830a88d7b3e79fd54ecebd70cd9d4de579f4ce3721abd81898c323bfba045521106b44bfe6c2cf62222ed40e98e272d74bf6f50091ab06a0a1ab15e963b35a550c24526c19edfcb75766ec53d6a7b592e925ad038d5f70c67664477f7a7c92fa50339a302e0d328d8822f8ccd54239536ed3434eed613315e5dfad1452cd76040b9a3a7186cc96b51cb675df641c64e6f4cfc5c9b6b324d92c49594cdf2c534543532b266a24d2df03e369afea02d0349cbeb1610e97c6d5f4c760d2d33b33bd35b2fff90f2b75d3395f107ad39426af4d96',9,'F52135E61F2147489449C2F4F3318E21','0'),('E6C49AE604F24A42BD791B4A922BD637','e2/ahaasUnpoL1TVnR9azWnon1f7A/rFx+874dwL8Bc=','4fd23c658fd6ec931ae3c0e6dd533cca25bb56f712c7ef454eb3b206cbcc44fcc7ffb0df5dd6a4643eba3e4e0bdb860dbb09fb74f651d6a32dc56af218cb0d8cd8ed17bc23447080d9621c7e1dd2ef1c97120ef91649a054cc9d7c0bf1b9d696f4525cf044cddcbc5012f7bfd9f4b369536e93f287975229c1b887bcb321291ed9c4238d3c199e8e317bd95e5a734ee232083387d32e004a71b602a89e60e62223cac494d6cd616421dca318fb4366f10a236c2f3556d948a1a8fb22e47ef00fbefd82166b2029e39ea4de50a405341254df09e077d741a721d6c9f325dabeff15f813811fd04591e1346f4db13c50db1b2679744dd6fc323a81aa604207c6c6cd545d0cbf107aab682786125e03bbe6',10,'279BBB7B1CAC4EB783DC4F94290534F1','0'),('1F9EBD5D82FA42A091E55BFB459E0081','2/ln2qZiInfebPmK9QRr3IqdqJgTWbLbSSFILKGJG7M=','d28fd54aee6a2fa79e32c622574b65d1eece0fd5fa5154013e7e3b520d47f4c559fbe0a6862654a23c4fa44c21d072649b80f875d6e108c3715506760560782a96ce0941b9a742736f3c4f5d8d2174ce3626e2ddef947c988de7e5f97370ff742705e3cf57f0ca316f05c947e0d05d17b7f80db0a44bcb5e0f67ee9f79abe34cf565826407242389d08255311c2b200cd788c394049489984516ac5da49e34a520c8797885079abaaf35bc228921c044e63129ab984b24926ac5c5acde20f5f9f56cbbf5f2ae8d34b38bbed883f1154fc6e14ccd2691ef03c46d54f9bf83be7bc2a070dc117960d930df2bce3e824e67ba05f68f3df126800fc73adfcb16932c',11,'C3ECC345092D4F3DB27CE296410D4A75','0'),('AC446FCF39004E99A3B23A4B56887BD0','KVFe13QRedvyTP3v7wAcNJeB+wbitSHOEk/DmkeOC1k=','d2ee57678428f8053198118d14b99ffd602f4729ed23396c603ad9ec08182c4225d71b67f857276cd0d5b25ba04b6744694a8d1834e207d7994c9cb166f6b0578cdab9402777937fab579b1bb051ccdf96618c72efcfd8f6846d0da70157cf85b388eabc51dbd26dbfbbc97a13811e5fc7cdbca5aaac1bdfa8f5f9b6c223a5a76047629651139592d74c91a0e1261c5b39f9070a86b618d031f85408bbf98390ea902d8f4151f46e63ca242da5dd699a2f8b8f1d44b86cbb7e89ae06393b56556d31f38233cb325ad99dd50e3598846533f4814aeabf0d296dec479aa4e6109101e1cae458b9ab9de0a1583e8dc28eabf73bb2173084405de3856d56c214734a0eb95b90d2fd00f373d1aff7cb94439f',12,'92C79D2BC2EA417E854C6F39AB95E3CE','0'),('09372DDDE46C4E489FDC72A05F51CC61','Ts/rwT/sxWYgJsj9GUszzf0BEgvK3X8iiJUTt87Bpq8=','66bd117c009ae6f04832c7bac2ea83cd167de5a9049f941f71ead937d0cef3371e148a0f1611e97a1451875e442f77c5dbe3a0a77a22b4594e3788fd50aa9fc0b4e3f0f937ebf39e0615377f0eb7a9a66c117af55d393eb5fa3ea37ab126d0435686c6b2466255cf659fbad2347e963daacf2b16f7c04ed675d757b9de89779ff5d1a4801921fabf749ee79af47b7df4b335248403ebca4b6874e153ea211213e7178afbd01be480078362968ff1448d78b17c061dffcfdb41970efd838265169f4b8a67645eafd4c161e2fef953ef2efc9917078583ee1d14395b901077be3a670ade7cd9dff70256380eaeddf92932383b81cb140ea913271ee1fa4ad401836c6062391c0ecf721c43ee5ed67fabfc',13,'335E3A2F7999446F82E634B41954025D','0'),('D14CD400206A4A7F90A13294C816ADBA','DPWCrdLiQ/2RBxfvFTQmg3STN/LErnaVgVCf8Yrdy4w=','3598be31bf693a8ab006702d459fa3e92bf52ed1938b97408b520c17087c8b75370d97db4397a66b66bccbd4ed14faa1b34f1c6957e12edbf3574c4e2e9408cd5a8276ffbaed015192d4156cebb5f70c144f04a457475f9f56347e415ab8f60c6588a7944244255b9870fa180b21514cec1c132af34b6c3baa8f45020ad3b7126a9c98cdfefb4cf02e0ceb5e45d267695dcedd5c61e9abc92ca10b73ee314baf41d1fbb14c50a41cb225f14e4e094429dc1354fc6ad3a66d17b8b22392aaf4a8dcda52a5932f16d9fb6e855a513c6518572e836769ebdffbbd81aa3eb578b767fc863db112a8930986bdddadad3af1c67c7f0c14484170214983db5712fa22366697ad960f7f304d5c28ebe935b7ef7a',14,'35AEB7BA00D84A6ABFCC2844ABF74068','0'),('7DF047FEA209460EAFAA467E2A95AB7E','nOz7CbiXsx3WS3sjLdI23FXH0iUqEbJLHmJta75ZDr4=','632294895ad3812b68c8ff980279768a74e946053ddbde165ef7ef4d6257de3de6a9ff0d1b66ea8c9be9c2baa2037aba890a60a2aea5e039c5f932c3a88bd8fb3970a0df691c799bb46e630bc4f8e6cf090cbfc45c538d0364d6ed7b514b978b1a7cad32922fdc48b7cfcc2ccf800004fd6d0b2cd25eaa089b3cdceb2b27b125f756295e2184408fb6ba54be1e344d49c77718a63a3b7c4bc9faefb98e32561caec370fdbe78e141f7f95ca943edd6485b296e6b9b2a3bcd2f880669952ff5c932d1ae9f374d0c78de7473dea509674cd72a940b2293a4cda95f74008040e25f36972d676d2e1b787bfd60edc515818e96c940168c0f6592ceecf3eceebe035dc72d3975ccc02cd21095353ee141ee8c',15,'647246B515F44498AF4E667B8F10265A','0'),('6599ECA8636947FDB67569362621F2B5','T7MOHE/CuWQwvvWK5seqUXxPqwhU03Z8FVLPxfhPbW8=','96868bfc76c5d29587a57a91641b6806da9ec2f2f014d2595018a530d5f3dabca2ddb6db3037edd6e543cf2c3beb13a99cca35b253a7f72af41bcb944a7cb9c005bcb7c5829a8a84a1700ea139f78a4c310039edb8ae9eb3f9ac9cc8c1681d1d782ed432dbf995a89651e07f1c0097460c5e6d50c7e40a6c6648da380315febfc37762699c89222810c2d4dbe0946b412d6dca32317f91e93fe629db480e7ed6d80151a48bb064587fcb099826c4382a78a071128108b8ebdc74b59d73466e0192b50e6c9616234ed7ef46835b2480d899b99c4a47ad3f63b59c5c79c8707bebad9705187653812a1855a530d7f64a9a23d902b8c631af589f4f4870e3301d48cefbb760c29c998499558a9b60a3549a',16,'CAC7CF1F1C234AEAB72847B12BEB0753','0'),('F7446DD100C241238CA74C53254306BB','gd8iHKGeOebeB6QNEPMq7lhwSujfi0oqDJdSFvcyr7c=','911aa8629805f9545134f627d19939a2d38ff8393dc41a1a9a6eac4291e6e32ec759723ef5d93b2039e1bb33e9fa1774c1b6f643b824f0560996762a7730106ae89e75f4035f1b231b41d77bb1cca399ea22bca77c4ad1b36adedfe60e551119c6135d1e660e459f8b821da84350c060bdf590dce74a3edee80a7951f68608350086d6359a4dcf17fd82b5b76866a2326fe45ff1153c1686ba2a4bf0eccf4df2301ee0f26a0171c050c90116e101163509fcc81827095a08c609008624c4e5f9f557906d9f64cbe768021afe8b16f4013ef351f3549dddb44c904b66f6187d7577ad6a580bc9d12142413685b98003a67d667451523995b2a1563691d269de33afbe1a96c98390534662c599c42d0620',17,'C2004494524D431EA3B549E36C1355CD','0'),('A615A2029E0D49D79D22BD46127EB726','3p6ouTSEO1HMzwTnDppLeJvCTX8kSe16a1QCbZzy+pk=','9f7bc1e6908c161df5dc5dc171269f0a59d5dab1c6e088fbaaec3135e03f6334f0fd5e75e19bbf281147b03d152ecd8ceb43ab78876258eb1f2a7616c29a48551236d8d79b2e056c921c20f6d1a84b39013738dbaca5818b9c065af127f4be4a475fdd486ad405a72e534ed3a3935db17b026cbedb3e87476249dad7349ef3ae8eea93ddea3494e18082c8070a77db96f3a899780f75ad06aa76534d3ce0789bcd550a42d771417a29a1324a26808d58e646f925f7f24a5e065cf03fdd5ca14dc0adb8210997918b8607236dc83ba423489978180ad191d272c91232b4788963c0e7fae010d2bfd63251d409b956a79e872fd7f149feb202b6c342ce87de30f8d521d98cdf9706c7cc65e85a14e51dbc',18,'DBD2871E0AE94EB3B2CC1E1BDA313D0D','0'),('C106F02665964B64BB44468D73DBB1B6','DrHgyx/4iry4JgMFUJRns9wn6tUusdJlV780rDpSKbQ=','c8efb29c6d38d586aa8d02e87a8f47b49e2fec5eff068d50f82967bb2e28d0e7dd3ab937886e1231a066ec3cfc05fdbacf28930a4a047ae139236100ac310afcf4a8729e47f9ab2e697087b4656a6722a8bcb4c1f3b85c22c69f6cf5f97e3db8f9411d8032239133dee975aa54844c0808896b1a82a7ff8c8142268faa4a806b81f9a6b950e37a1c82a6e593f53849623a66e2778a77266255ef0ffa6235a337439910ce037b17845a46c0e5aa811dbb17d26394763235c532490d9ee720d63aa9f471fd83540fa033c9c32d12a1c86d686ec0b0c1d11cb73d46c9c559632e50bfd948876a5dd71f95c4600a6e4bc7bdf78fafa5b5373dd7f49fb07ef525471b87de3863d6e76c90dae7c99f02efac03',19,'FAC9F29707A9416BB1979A4E6FBF73EB','0'),('5ADAEE0CC1CF4246AA88C5F26780F39D','myEkhONb3TdLcrWWtGXZSqCIp8L/M+p/e18eDZx4aMw=','4a6845151eaa9eac9968bddc7f342626e64de654463fe9b8786039ac4e7afc178d0ecc20e2a60f4ec672b671a0bc9b9fd178ee1a39c3f126e9c41fbd19574cece7e610f069a97568e341994ec6931f2ccb2234fdde808f544e8efe86a4990a4158e9ced85c8e71d6f3a401d958cfc548705741bb40a5a74c6da134240e4fbc95ea09e4874f0a13a987b0f0f904a491a41640b7cfd4dae32e91d768cd50e41edfff71bd40462d0aad41ecfd305e9ca86cb335092c6f73c142a8c5b75124bb8e8323d3763d444f34f45c95d988f5bc4afdf4a3cd2545bb78d09b7daee6f88d35ab90932db3aa3e121a552108debe62c9ee997f68ba778ec8470e7d77e95fc9656689ea7db39c8325e2120dbf5242fcf49e',20,'4915DB9B6A964CB48D4674CB877304FA','0'),('9C68EC6C0ED246ECBCC3143C4781CCB3','FNYj0QushNqnihULzh8XeUzQbGT4hNt5nlS6Cz5JuNg=','7abc16a9273e49a8a659f1c4f5622571eb1b794b3be8d7741fb272cf8859e6a5df802ac2f964d625131fc575321dddd4781ad9922c487d2fc562fd44b2ccc8e0330e53ace65f7fee12f5d28ceb4bda24f22d5c609302d940658f679d2f12649fb26fc6dfe181952dae18f2357aa3087db591169f774042aef6e33f2ca21dbb5e91b482ae6e82e9d5e30394114d0d81d52a987fb02340988608ff30261b7e397d2c6ff73b4a93b175fb9a21adc18521ca7f0ebf116a87ef59d2c0c89ca5c83ac30601e13eb83cd3de4ac454d235ec493517fe6e3f7453d17b5467aa112100754df40d8165cd1ee40b51c951fa9b912784dfa4171e6d64642129da8fbf17278e15',21,'720F854F547D4427AB3A2DCC141C0305','0'),('1DC57BFDDF4A4730B4941DA75D7C751C','ossQPOGhwmQU3t8gdpTJt3Z+V5NXGH+Dy4DN7GHatEw=','e5313a472fcf95eb94363514cd52c683bab501f16bfcefebfaf196b9f6d0fb9adbd3d8cf8a06f5fc0bce5937bf086596b0b8991be9b7ac0582c18ba4b05bc385b81b57c9ae76d5226b7edd195f6f231f997282fe83f6568d5c44413fcc4f3af4dd0229c741c3d5ad363bd5d339fc27d55060127b6e901a2a548f9d7f222b1f53ced54316e5ceed23e1b59d7381501d0840a3928fb177254985635294e9be4cb9772899525cec9cec9a3f938506b90ddb254c9bdc777d34dd3b51d861d1a27dcba4952e839bd2b3154dfe0515250fe50cd1ea1e23d62e0efc15a0e74c98e1d3d5034d05817d2dc52324f71ea8f9207c9abfd93ca4aa00c7209401596db4d83fc5e89eb1e3148e05fef05b5e7d16984c1e',22,'FFD44BFE4E654B0AA9EC6FCFB5E6C7E7','0'),('A9EF9E4B635B48C49B6E39B72850E6C4','tGbtMfHLjNPsWIuRNENRw2MCqFjJ55lnzFZZwlcjnEs=','72b01a41c13f9e25e300368d2e919cdd8a3f0f49dd5903519ead395cd38771a1f71b141e38514d68054f3deb0e50ccdb61e7e90b159c715475e21ab601067178a594276aa08e04c93a5cab18c2cf03b7ff9123ec56bd40e209005b0d6cd3e500526c990aec1a3d879f66d7c4be8863676d932ac4f20947f81617d12b5c43f96b72e9f2aa5a78814a73a0c9acae7cc99fd8c0ef9ffc9c4b73e137d11f5f35a845114732939e7d26659f2a242fd6dee1e981fc0712598411a9ee0c72793a378301607d8c9d6ec131cf1b5569efc537ebaa1e72adde45daa8c361536405cd583fab1e6be379675ad03d1178c1e783ebad24079394888793d0605860e3e1199fbfbafdc3c5b4ad970822462c5da2fea28d0f',23,'9FFE920FAD464BF4924BE0993D3A9A28','0'),('3E9CE09A81AE4C118F96836D928635F6','kk9qKFW5g9WtCQaka+gtrC/b1wpL4KetXFDk08nIwFY=','8903d13830758eb4ed24827ea0f015ce5fa68f09c10235c15a59a9d7daa2126966602be87ea8fac9056d2c8e95900cc62d32b2ab438c81319ff225d553c045b289ef584b2599d85240cbab285d1a458cb78a4f35f84ba8e19a40840b823df57aa369333c7e7873321b5c7ab65180bef2b248caa074a4ac3ccf628de96fb382ccc56908fa4d0402d17cdcb6b2c8596a64a6fd5ce36ac7b00234cdc1fb05f2dbc6ff925ab932b87718bfb5a60b87dfcd3ff5a175c10b664af6d3b94879cbf8fc0e65d1ea8df8e122a5e6b03d1adcf6ec917e997182b5b8adb4face36ba3e3711e52287658f7997fef526a6c2f0102dc8df0bc7a3193f27cac36da2bbeef168f99c19e148bd3b3d05c3e82c5ce30003ba80',24,'344E92DEE749467A932D86C304D5E523','0'),('8466D2ADD20C460582A0F5B98F2FF986','BOWC4sOk0ADPsoN61VQAcYmzP/5MqPvpK7386N0cU0U=','6eeeafd3e4e6b09dc05dd4980edeee1dc494b27212e4cf29cdcde89d4fb67ff696e334bb875dbd61949a10268ee1c9465e5ac521669bab8ecc57e75b2a11de770cf5b14a5dba1df6b8723e43699d244983b193be4f860e7ff05c57a4526634f4ff483773f9571edaa1365a928ddd086ad9cb073f301cbfe152877f402606abd3bbe1043e952a4f601e9b3e726d69f771c6cf5a4603345022aa4c5924583d3e918d6c3697cbbc26c3b2ef140f394cc435672cfedd3434d15a14f085ec258f45f1c338b5f517551d5ca259afea92e7305b943e9b23339abf10219569a0a3a71a5e306c016074039d1e7ac64f7caba6b536a4d77b711c0d294724cb0665a5e0a66a',25,'36193D14C4BA4B1F867F553DA8DC1678','0'),('535C990E14F7477997B1086F0BF79F1A','QGiaAjDpyi1uoLS14RYQYR5FW76wlx4zjTO1Bd6CL08=','b349b07a5125a242c77f70a2c89f482f464b9459769874a096bb59cae07d3893b824f8cdc49e91719e8880baa538f201358fecafdc43e8b1571e70d7b161f09ea3f44ff306caccac79db0e4b10dfa261debcfa37315e4c553fbdc662b768e0b25941d0501d29d1c39751036e5037a9a7ca57cdfb5e2899a9f8cd7ed6590b18fb48856e0fb0e36abb2287b2123a8c978228213b7a4d80e882fcd8e44681f618bdbf0b1b0498af5b8ed45d068d4c388bd21db3b876818ebfb116ae8e7294a4e84192286621bd449cdb4792cf1e5a5762576a7b96ed154a6ed7ff0908a558f6bc8f5030b8b06c62d75384cdd69725b29a8315e59ff18f5357629ce69e3d68ab9b5b',26,'4CB59EAAC743493081C19604091F50E7','0'),('7EBF8AF87CE14F9288FFAF382DDCFCAC','lqoKLnnQ404KQWlEywSVDp7QTJfPsx5skCeB4cu+PN8=','a6fd750eb3f64de37af92a010249996f1a7aec01ad684448bb0842111dc146e31f22a2fd7840506d94a794638c2753b180657696607d4ec4969bb9a226cf8ec69087e47190fa31c5eb60ae11df2c68c57229a5d4c11f81f386d17052bc73b0cf16cb4d13b2d08c44a82cfbdf650e9d1b0e979229afc8ddb5d113f3de4addd4841312076a25180d68f6feb8567631423974a9dcfce447f8a53c3d4222ccb1087b542d1b2bcb889f3ffe328b953549faace4499c891dc53c8ac8b007d68a9c5adf4aa3f6dc41b1d7116a36fc774c061e33ed8d4fea7d6d4f4fe724d20d5717ce907bbfb3b2f21f1f6f5fe9b4e96271c05138e0343f8c2d8d08e1e1c8981e93ce0e',27,'F1594B57F9A64986B6EE95B6B4042EAE','0'),('B4D15D2FF0C04F0D914655C3164FA790','vE9KIqDJspUN9oItSHiu5liR3YZ0VcudXTLOvAxnRM0=','050702f0bdc46df9a32d111a70aa2735c607256f78d8060cbafb28c36cf3641663cbceb3d892fbae4340441193772a934f0976b1392e739bc5aa4e432f5592ddaeca987034e3b63a8daa4df2dda83afaeac63c45d849ae164e77ca4e7471679b6fc7b9c8480a06e013b59a7eef07fa245283e7d33acb6e1afa5589e83b8b64a1cbdc39b250fa4e6c4256cdf2022bfe1894e0c31d2027a6ec6cb20d1e493678f860b0deccf4bce5ede5f9a7a5eac7a90bcd681fbabc8c2eb15b29079a5cc440040f0d01b7020929b70cd3d40686e380cea727f5b3d1487169c8d60b187fc033f10572e9bd5446a7f1a0f6b5c05030f13b854d0e4aecf3ada6e2535e31b61a941a',28,'E69645620DC94B7FAE2AA9D80025B947','0'),('3BE51325A81F4187848AFEFE59B90FD0','Yu5yGVSX6O+TK6J/I+QwQrk4VBHUnKPDsc631ol9B+o=','33647695d5a99eb50be55d0e30cd09a6da5e20429e04171691ea3b0abc5bdc5ecd113c75c94254ce81714b1b1104f2797805606e56003ac5f8daf62a1e203055621c5fb8f2d4ec2ebd35ce8ce4c9c8a274803a8e474071c75b7e5937366a30df4b805c694fe6794e1bad0ab8113de67822808aa4fae25ae75d625f52802d3ffcc374ee5186f8687c46b00e7c816b1f5a58ee9b71ba00d01d22897315ec1b832e40ff0fac2b42cb4895de23c0de29eee2148c69cf8fa40a2e0438f50d1983558b41d533cc9e98014ab23a04adc54f897ef0f0a0f00f2636a2e014500507acebe02c90d89f0a2a61cfd3d772f9727d1e0a4caebad6728958015180af81946721cf',29,'34E207BF0A744CDEABF3BDC9A884293A','0'),('FD3D5E98631D4DD18B7A1EF087C8C698','im8t/iCOVrEJpEkjTRi7qkSY600QTY+HAPSdxaBvOSI=','6d2fddbbf52b9865bc6cc32d835d4e31522e44563c816870db740783b87cee57ab2402b63d2e1cae63c429459be4667a518945b04b8bf3ce57dd818047d70967c7a22ae6833490e05746f6be3ca64cc4d7238ce36cb834f4d2fc2ff4c0281a084af5aa6ed24505cbcf42644700e86e6e38868b7910089d88c7921a2d7f23fdd91125083c4188fbfd91ba74360585774768695233e8f87292d61743d6b1c9a8607aeba0c124fa8adefce1c17d4b890ecf591da85e4daaffdd40a4720bbddcaced461edf7d579b754920731152a56b4d7b7591b59b61df592f02cb6935871a1a61c922ff25ef975839d8cf25476fd6c3691b169148ce465f1f5355e46baea47d6e',30,'3AAA6A3D29B3427EBB417519783E07EF','0'),('83CD60E80E0E4D0DB58C832E77F97007','ROANFj7MfSEMx1jSoggz3RmRErjARzyIUna6zHJEYtw=','7f2ba94a417cb45f10e1c9ad11e6c0c3f4288ba7fc0ebfa80067f305a3f6bb100e3d709644b4c22e449cbca4bf16e46b35caef30dbd4eb795b209156cb5d07c6a79e03cc16546957398f368028e75c3e16cc3510dd9503508bc82849bde7e4dfec3217e92226fc9e1161467b412ccef34d815e9f9805ea3686bcf5bd23436f6badb543fe4d1eae33aeedda7573f5ca1d5df2067d9cf8da51beebf119eba015d665cf493431b1dc21deea470d46c195fbc6bd547f6a737c34912c4802f07b518ffd1d574a3e7c7f95cb76bccb4dcb72d5e7d5dea4fe3d66ed7a16b2367d5f8626',31,'6C9D6DB8055E40E8A6DB111F15F3C9C2','0'),('E38586F67AFF45D7BC6D560666F47861','ZJ/IcGjQ5QH0hO1KoWvfcIzlPLBi8ZQe9eDtethWsy0=','d9f85325d31c0e5fdcaadd7489a3fb3c05fa68860b443979493dc1721d6b27e66eafc157a1c9de3525c434bace4dd3007436da60212a98bf4128032a10bb45bc22ef36ee157429ca955a8e591a035607b8c60820d9be3c9714342569d613c43e0de452943945f602bf4949b5bb3e14fda3136f68b2db1d54a94f4b8dce9c7b90bd83cd7ac45fcd7db251fb20124f0571112e8aca5e3496f48f3133d45df8643ede4a150477f9be0558a7eb2803a8632985f969cfb02618acaa6762df0a5e1dfee144b1de1827ded588ef1f64e9211f893e9ba70e0084903cce60c2a4f21889d8249916a265bff4055dbd984508371014f9973069f30f6a2adff075b587429dbe',32,'8ED385413EED4C3BABD6CBE9F6269643','0'),('A02D09DEBB474FB88947F24EEAFC8E56','z3rc3zKlTb6l5EZHqdpZrf6ULWe2ykvL/YWnX8TF98w=','fd39318bd92cb20ada4a7311e1e2f7969a2cd63a7c1fa505bddf9b329b0f2f1c41fd210efdcc01b5f93ecc4b54922ac2b1d9e92ae3a80b8825675142f6ae0b7d61626bde35397dd5a6c2fbba025e6a7ebac53194f18693dd4f38d6d39d2ef1af726de8ef1579cc71a60d8faf36feae75466b4822b3a1d91e5b8ce498348e4b48c398ff9ed62ada05e00abaf19c0cdf96938422e67ea5a99aa043c64af8b7174ee39116baa6f145b0f963398f9b1aba66d2741273e2f384a18c38845ac728389a8744a0781b94f6b5f70341755909b3e5dbc70d1bd14beead2cd6ba19e801494df4c22d58cf257aca116c42be56c2803d2f33cae23102773c2a045e68edb63892',33,'A1550FD2BF3E4DD9A2AAD12223A8AC66','0'),('77932FEAFB5E43129A5A5B05B6531099','XcNeSFoq2fkHxtbICM6tHrHYcmI0U2EF6sk6je0Ks6Q=','96f13053e2be7200a54468d1d670f1051b396eb2f9db934eb8fb8680e90ac1a31b1ebcbd28af9bb1d489c1a1459a2e6a7cbbacf54229211bda3592b990294d5e5b005646c9204e56ccc19eb423a37eaba8a339bd628ee35481ae75627b71f73ee89b02f011445cfd2eef3c09c180d7e574ad94ab46a5426b440a0503b98193eec4beab8bf189a88cc25cee4aecae0929064393886744636ed36190d3d370124cce26854d150c9824927a9a9116d060d4ca0bf537eeab6da4a86e39489f65bdaa91f82f2141f2f43d1157841e927472781f41912b5f7e705f7585c053aa8103549580830d367a63808c95c03ba551b227fcf1cee8f91225d8fbe3ef696672a928ed2aba9dffbebd6d4d833582736e8737',34,'DBE00D11253A476C8645595794B021CF','0'),('83A91A5B6FE745C7B9D57A4AEE41BA6D','6pwJirCfidkj+MJmMdzs/lJ7YdtAu7Xta7ApCr0LP9Q=','0fb2b59cf0f72cfba0ac97b0a636258719017beb6e567de99fc1ab1edf78c20aa55b5d01ecf846ff35328cb2115dc1620c12e1aeeb57c0eeb6f6bdc9d9f8519e9d63cfabbf0b41ceda81b66b48ad3b2ff474f345c8110c3ed407b4494752d3759c8b4fc05c8c7d478c076fd85307f0186a408e5140547c76ea3a92818eead3d108deffa6a64aef46ef590c7bdb24e1cd6fe25c80b69334120023c8867a28e4a1a7cea20443e2fe2feb6ce439c11de8e3179901e8628a460b69cabaa1933a87516ae05f8c8453aec7150cf09de1c8b59b891842bf251bf46147c0ba092b97946b684fd3978515c95fab339cd846108c42950dd9200fac3094dc04b38cd77e1fae',35,'1D390748D6BE40959CB1109A84E36C5B','0'),('7934A0F9E5124CE6985CA899FBABD20E','r39VVjiDYbZBWE1cAMRt9bvQqKzSdICGmp0Ngjjk9bk=','b349b07a5125a242c77f70a2c89f482f464b9459769874a096bb59cae07d3893b824f8cdc49e91719e8880baa538f201358fecafdc43e8b1571e70d7b161f09ea3f44ff306caccac79db0e4b10dfa261debcfa37315e4c553fbdc662b768e0b25941d0501d29d1c39751036e5037a9a73e3ae78b3659dd8d196f598780b70cbb59127c0ab31fbd7a6a56dcd40942ea98ba1c2ce124b62791c060ef32a40498d1bca27e7a3ed8076c8306f732ceb9c3f1ccad550728e58e3f01e24eddd3cecea3ac020be3093be5e1e5f1f4c11c10444c9d711826ae4eefb33f7dc8858eefb8381fc3e530044803f3ae4e0ab898bc422a9b2dec92f0ea7b71ea3ff1a0eba65ef5',36,'DFE301A9703943228255FEDAD0457427','0'),('C3637436BA7548B7B5044A2CDD086C3F','tFTHW2IYuv4v9Lz9y3tkVAUANqlg0z4//opUbfJQoug=','06c635b81d22e9a5447a041e7ea3473a5be52a50cf633bfd77db751e6f91ae0a8db05d8e46ffe5c293bf840b9af8bc6d20466513b3fadcd94cd3003c23f47b786631fb1012a7e0eb679c402233ca8d91d54af12ffe11e741b008fc3ebbaa79254d4ef8f7b3c7c9f206e3714c0ec50cc6f7785ce433ea24db1b7f68d1ce6e0616f5c48ca373a429be97aee736c70d0ee6496ae23a0e25edb5104ec3d98708ee0fb9b0e5cfa7279d7cf00242ea669a5abea40dbf4214a004fc4983d63f75c464b63401b26ac0bd45aea1f4c54489b99d3233ece49ea65316d07aa83a696df887ff9d53d9f7d117a81055bcaeecbc2a168feb8cab8063b0e8f7c4875439e0a798e6',37,'A1DEFA75E6DC40088C806FAC6264EFE2','0'),('D537E4035CE74FD1B582D65AA9E193AF','QyHW8KFbGHKUspJyoXm3qleYt6soryJ0iRUaHdAlLCg=','9a2e71b036fcf470704d5ca949dcbdecc9f701232f82cbfaebae2f206e7d90c9fed6dce0e2c6deaefe43c3c15d6b783731025902e526e3b9aadbc49fceca066c96b2409ea1011b22922937580ec4d8ff59262e9fbecb8f5ea5eae75cf057f6841310c3148cd9336db4f40e5249d8976a77e57ace4c3040aab2c7cf7a82286cb693d8a4609e529d754e6457da40b531d1a4a1bb276596cf4a18068ea61a002aa41ef55616935df284680e951754f97105e1629a081edf6743b105076951a623c1a73e765050a4c0d434b00d7ee60ca1a3678df7fb0b04f8162de03b502fb7fd9b32865e72613d6d53ac2a174ae0ea90c2c926cbd62704a8064cf92661a8c4da82',38,'A6AF338893B04EF098CD99FCD6E33669','0'),('8B6929B91F1E4C0D8D322A9F2815E524','F2VhCq3AMx1vXxkCnypKjYydQBY2GZVWe4N1ESjPFDM=','f3804a363d69f60b40526cffb0d6d82c84e87a9cb447e1cfee34f8c0b6a47b17d10e2e6b413365b4a48d0e2fd2a664a586b04e41164f8613834516dbea45bece0044a2083333ad0d503f6c74d728417f6948375a31182bb1033246b95c77a733103121f464cba814abe02b595d645f54a6722dcb778e5c1f6138fd9a4acfffe28e56583b4335dc2a571aae529a9798cbdf009ddede147ace5e84f242599a8e41b6a6124f3353fc1bf73abe4ef50e3a9e7b3f5a79a952977ea1df25b57fad44d120964fb36e3a53ed7703e38d180586f7b308e5b77d1ccc8a6891dbe4b94fb72825ef9ed92de209a462e5f751b6dd2bc56308c9b46972fb6337350493559e0bb4',39,'89C719B3D3F2487D8A819964467C3C0B','0'),('D013C831DB754AE8BF27337FDC31EC91','a9U9goTTMXC9cdY1B1if2N2W+4S0LUa37OKdRD4ckkE=','783711c4abc377d355509fbcbbdd4ae1430f7571f307447f7dc6ea1be38705b7ee42ca3132b3f9b23822ef11531ef28f6300c57c7afed3a4062ae7ce12ca2adcbf75f2807563af88e51c2ebb244979ef19faa821342e486c1a5d9b04f834dcbd2b91a20b4d78538b1fc4956fc6f2d96b2d2c958043258dfcb43176febb66c79cc12e9fffb3950cbb4c6612826b6e20e546060f03e0f1457f754019ee27922796b509371fde96faf43bca53e7cc73a85f75d2b838baa1d34be2a50b2fdeecf62865bd89163c23545fd86c499e6905647eba26cd272640c02c2fd0490443f9675139abf6631ae84fcab3a94b4816f5c5122ff6b61928bc5bbfacfec854f2068d02',40,'99761605AADF47FE92217AEB90BF27B5','0'),('ED9FD21F87104551A990790DE3FB4924','Kxn8X9FT8cQEuKVOkc+epooHakMJ8KsX4RbY8KUBT2U=','570b07715ffe6263a7156ca0d7f283ea8e56a9d8061ee266e28067580cd6f6e3098043133739160a3be76a6e6f89e99510eb06398b91f1891414ffe92319236464de913d8b9299ea166ed9be95fd8775485bc3d3a47d6d69f9fa1160df33b6d6182e4760641e4e7a89c3154c2063d13dec0bd20fe18e439c871da69249344867a003545d63deddfd4d3a0a8da4393b740af628f99b977f61845f8b5effb36409eaa8551131e9e3626589e8eb353cd6a0602fd74b3eaa4d4da969748a7557a52cbb5b6d822cd62091bf442f4ec08283e8421942ef2ca5f2ab2e53fce4ebb2ce03cecfdb664886e076ba6f797ee7a3b08f4d94d10e17b55ec7e2c942e8ea4cbd32',41,'2FC16AAD4F2043539C6ACD3EF7A6CC2F','0'),('9671E2560E2F472F989D5D71C696B16E','UyKIXIiuEHnykrF4KzxMjVox6DfG2y6cH4V1M6cBxUk=','b349b07a5125a242c77f70a2c89f482f464b9459769874a096bb59cae07d3893b824f8cdc49e91719e8880baa538f201358fecafdc43e8b1571e70d7b161f09ea3f44ff306caccac79db0e4b10dfa261debcfa37315e4c553fbdc662b768e0b25941d0501d29d1c39751036e5037a9a73ec3d28b2aa723fca7a2d806d6261a5183ec5f70cc73dc49e93389a5655958354dc1ee620fe163596c7fb436663c582d5f951b275af274ac09775a847448d48b7c42946caf92ee32acb3c9fe22d5fd86f410d300b03827b8209224e6d8501aeefe35b52c52fcfa0560f618d6209490f1e77b30e55395faef38fd7b8d10a12d271415d2aaab39212eb939dedc5cb53118',42,'011DD93EEE564A7E933142F07CCB4F49','0'),('9259EB3089A94EB3AEF9B228CB51CECB','S0fwgdbqgmuWC2oOZJhBZDJnvWeifCBICiTTmWNfcGM=','999a09c4e07b53a0c68abdb8e4318c5d2228b12f6cc1633b5cf07d6cbefccdde3cfa401e6a69a3d0f504e4dcc044c4c8399a439574648669cb2720f5d88d9cf60f1e0a8dcdfe85295210c082a12d21b315ddf5e1743492fc43c657abe7b889371e2fc81ac72b3912d917528ef1019fe08e88c475491882b790d6ea92c72834580000adb5e761804b5437cee8fe69fb851af6d26b4fc0574717d42d482784818f8902cfec82971d7d6145ba59d38533392463d81fe67cd80671b96944e5e8c7b69b8e13401a1819750b2033fddeb8b898bccb9503744a9be1f6918bc9e9d18c652e9749a11bb70508eaa6becfec27b25829bc96a188e31ea6c60e3710403fa269',43,'E84BF9E9C1044DBD9AAC7D1BEDDBEC01','0'),('510130189CE944D1A661DC8E2A05A34E','4Zjgnqp/8eobaZwHvH4Wp8NvZGuvXAwviHFuxa/IeTE=','bbbda5086d48a5544587d1a42708f2775e22c5a85680fcb02fc675ffc6aff509045e42f5b6e4bd278bd437087e58b040fc8de429a3379e5254146d99c77a767af8e473eb0d852e329c36e6df3ee4ec651f0581f3c3188f795e61b4a9bb29dd27e7bc215975eb2c8c7368e5fdc4535241fd350aeb8646f5374e0da618a1e6d4bf58759ada55039ed2a702826c6ef65f5fa71ed1c87ae0510c3914a171f41042cf4b7854e53eb4da0d17b3b8d71bcd14007dff5cfc65a184969bb8df47bf7eae8bb3d1c0ce912879a531284b01bfe1045591d98f3ce4c82ab6de85486a511bbc7cb1caa6791868f084c2acf1678b5ccd24eeeb0a75e2cfb5e941bff1deca405496',44,'1ED3CADDDC5A45468733EED8E4CB62B0','0'),('7AFDCB8768C7421293DB62D4E4B0C7B0','hqXHIMgm/2XJ1vACEnzia+ch31vI5yyziS7vyXMIzV4=','6ba83e0ebbb6cdf96f3f617bdd5f4a4705398d787ab65c5881d6572667210aa09ecc1dc5e01defb9c7055f296219998af1fdd7bbd2fe66c3f98104e6f8fdde598539cea28be2a71bd0e0b49aa84b162219b2a72ef41cad9a08246bba27f334bb620b8e4de9ce7edf40601ba443d6f363371ed36453b10a098fe90678a91aff23b0d1638245ac428990fe3ea5931cf7864436dc0c3cbb1b57bf5efc841138ff334f1cf17fb17c66409ff5f2db86b03c927643bd81ad5f271c521bdfb4099caefddff3da9957c4b8952731d33c6c7db3e75b2ed0928d1cef567f06c20bb186bdd9edb35f87651312e99bf6b6e6e1607c88068aa8f886e127f0a2a02ca66a976d68',45,'88995591941F484DA85E56493F9FB213','0'),('22B3D858F532432EA47901095483699D','cn/FNhTlBjjqLdNldT4O5GeW2yme4dJ56vWgdx5qrGY=','fcd3cc26ea27c8340231a3d736b4cbf00cdb7928fb599003ff31d5250a68515b51521849dd6d60f1487de24236124288d377bdccfea2067473436b9752bdc78dd9c5bd6ae44392c09a0e59bd90612f9674a99f45bad3591f2c22f03f53a8a50a814a915ff041a1fbcdede2ed3efb66f1535c54eaca5ea9a343e7ff285c27716e7935dcc094ee73d0c0ee1ae52fa83a2d76423f76b4b9ff69a3a45a5830796621c9a74d53d01f02026e335964969a8a950fa46715241c79b7bcb837f347a23b81646b044e8e3b5ab285c9aeafffc8dd52b7505226a086af59acb72f932516602f5e39d44c9f8bfda41af3f0209d05674ec45299042e4a486b097a07d7697c9352927937063bd92f27e725695ce2c2909f',46,'D113E38F7DD54E88B3F7A358A1D3B466','0'),('38053FDF256847E1BFCEBF2E0C2AF689','ehOEAKd5JZEKvY79NX8UMLOY09+Oee7jI4qgETVfe+Y=','f3ca0a100e7bc91a672635e36c913737a26238d56d906f51ad251b0573919c06c6473db65e14264e8f498b98605478c7641df0021f23116bf457504f903705715c06a63af60ca15e3b6fcc1622838275b234756a3cf61bf7573301e59464103ede6e4f32713fbb5b2f544a6b205e5573a14044a3fb90a47683ba0031241bdece425264bc2590fb6b060ba7d106e9eb99e152270e87163ff4f7b6d21180c5167cffb56a604ee21660eff3903d5a72ce36dfbbac8cde70d68e10d935a2f9bc80e0b2b6f9e47da401530b5ab8b9b59970201c64863cb79d24f5ea24e9e5bb2583ea9da7759aae8f410ddb034cdf3059033a3c95e24f3cb39c401bf115355e8e61f7',47,'D317A38914D2419D9747A93B4EC9B243','0'),('1ED1568A1FB4427E8E4507604240076F','OqSSa/fX3WZP32eBtMEsprFjxLocGBRsCBWF9OtAWRk=','197e7fd01cec959ccb179465abe55e87aff92245dbe73598f57bd0fc65ab0f06a454937c3ecc180db51df3abda09f6341af2713d47fe24b087f7a1c1510ccb4e900d6e70377fd79cc86a70bc577acba9a76dfe84a0b888d26d88681136546399691521ea3014b40a2ebe2ea04a89b6f7a3ec329b457200b08d8514081cd8dfec156ca5bd5513b6664f12b94b7ab7a1f77b55b46c4bd8152fa5456d633f0b345084aa48b343ffd946c3301ec1b310b7e8bd46cc4562e326ac4961423ca48550f8f379772c49461c5332ef3fa5275c8aef3f4121de2ff172ec67fceced78406be41cdbf9b719fa857b15385ed62d758cba8f65e4236a6d7cf0478d302d31a59460',48,'831D992748C6475BA54B4DF5E7A2251A','0'),('B52B8AB6B114409EAAB4B088B0CCBB0F','uobKBz+2i4chktMKEXE0F40Zc5SDPIxgGL1c6u9PkXA=','b349b07a5125a242c77f70a2c89f482f464b9459769874a096bb59cae07d3893b824f8cdc49e91719e8880baa538f201358fecafdc43e8b1571e70d7b161f09ea3f44ff306caccac79db0e4b10dfa261debcfa37315e4c553fbdc662b768e0b25941d0501d29d1c39751036e5037a9a7449d4a3be752b5eb27a3ea040e39cdd260b61a12c5628a179606e44eb54a38cb0d235babdb7a7f37419cb752dc451db694aedbcc84e13c543c08b80276a71f1f01828afc60a621eafa9074643c0b115e780a3fc35674b487db2b2b8485a52f29c24669c5c8848e0d575347a3165b4fe5bce2dc4d76e48a85251945d50b4670ad9720b335ffff5a688bcd68b2766b360e',49,'5998528CB7704021B7FCC769C6432BB9','0'),('F1AF452609CC4B0DB01039A2D4FC7704','HyxDmvccIDpVoEGnAlkSpRaPFuwVSyH6kKMwP707yRg=','139a5755c67c9dae82e710f70dc1a5848d2392d8def98a2a0b60d714b072333ffc7c657c4f7210a6c77c132aefefc7fdcc24ad5e8f079326e59ef9b8aa26bbf588d84ac8f0d3fa7dbb58e9f9475079ab950434532212c08b7cb13c6ea8413e524a73b75785643694770dd808b4f13a4749a7ef6c65cc78e84ee8a40741c9f1ff6821520e5f71f4cfe0efadc5856d923ac345c1f349c1bfba671fda5e1d6732f1204c2683a5894a63f66d0ebd4dd8bc01003e443794a6a991c12225ef8e03494e20f85ad73710ae4b2312be7ca89d0f72845d7be1626f10e5297e44f522654390d5b3b35ba2ea72884ce0a452f8455d4f300989879f58c1d345148533a6fedcda',50,'F92479D0DB37446081E401098E935940','0'),('37D6CC89DB90445FADC7BAB00A4585AE','hMdRKWdrtDjTL1HGNjmx68NJOkxUpoqvPgM65nnaXtE=','b349b07a5125a242c77f70a2c89f482f464b9459769874a096bb59cae07d3893b824f8cdc49e91719e8880baa538f201358fecafdc43e8b1571e70d7b161f09ea3f44ff306caccac79db0e4b10dfa261debcfa37315e4c553fbdc662b768e0b25941d0501d29d1c39751036e5037a9a7449d4a3be752b5eb27a3ea040e39cdd2b78ac8ebde36cceeda62d2a21e0eb5012de68f13c22c9e7a6f4faec31a833baf4b4b59dab08fa5628fd50f822afeea3724b7c88a62cd61b0568ed3ed4e6745153e6b5a9ace337e8e5afe9fc151e8555f3d51790d36f480caf5bc61c0d81d53e0c99265078909790dd2ddfc0762caece307e49476467580482a4b59b3fe67cc23',51,'DAE7800CA8C24FFCAC2C71467D04FF28','0'),('7A2605EC74F04C0883152FEF8FFDD051','is1jpgATpVKwxX6JeWPzpY5/RjDIT1wd+Gn1tCO6YW4=','9ebfb202c88e343392b91f56f4a1c46727e014c34dc1a5a045a5b19966e22ac3669db1fc24a92abfb8ac2284c4a0a59deaae40fe7156922bb90e20aac382ab505d02e217f6866840d9b87cbd9b728a400344285b2ac54f81ae0a24af49c3c18f509e58148064cb5c60bb838cf200be60a2212a4f4a715792c2e167085c72566a045ee2f3b166da83a353d7a89c14824fac2920eaa52fdac1394e71e7263217a21456116f646c04346fb944b54f72acc15d79a4d4487823e6376063edad1b119432a639a057026b6a68a621327f044cb9009d33f3d954273ac61d7db70168d65d6e067afe91492bf0b3761002d733afc71024f0d1e9782c25acb7d96a422b0619',52,'0423D46D46EA4AC28DE53C8F28C13873','0'),('1AA7D3EC16CD48F78E28EE161B7A0F85','wUteYkJlssNUrW0PCh0CqX6+nHpId+K8IbOCO556bsE=','806bfb6e152cc8157ebcffa18ab10928b30ee73b771486379b11875cb034121510579044c7d2b5344095696bbb48d3d3cd0bcb940fd6a328746a790a4d959ce0d0879292b3a365ae20c1f9b84d78a43fa0e68be3e12baf4ee3152713ed527ea6892fe384e4d24317638bfe9965a8d0225bf57aa17bf031ad7e653ef9d5803907e071ba79c2ee6bd6ed33ccf03b95896e01ea5794cc09ed11519ca4cb315195587ae662d9d5420f7b9924566c0f5e9b80b1ef690d174e5973989fcd7cee5ab4b1297c51002c19b5802c686cec89571fd136f1d95ee1e7ef845ea0a6da4ddc22e159e4c83d6e97f86c6c40653aac3b1cbaf465b49b442d0a90d31186924fe6c07a',53,'5345EF5AFF4D4B8382EFF541A0BB2D10','0'),('900190A205E44197AC8888530B7CF8E6','ACcc5Q/ZfDlsiw0RveV/Tc+Up/uohLy7STIHIzGp6+A=','9efef1318ba499ff7da64f9034f398551858a2669601cc795da03704a560540edec57fac5bc33d80a69858a97d6e9a2b14568e725ed00fe7a188552d5e2c45e216d1341a2f69bfc6b7700e7cbe3eebadcd39ea675ef39fab6ed0f7b0b3ec94c510901d9a827f658a021c4b1e490b8b38570c49e1ea1633c8f735b58910e0c32e756f0a1efcdf19c7998be9d3c148e8e8ce8867d58fba7f53df8d61a9379f55bb9f40f9edd7f6b2026c19bb0bc26389c4f9f2dfc95f6a2964cfa9e0ef92dc022b87a832fe7e3e06dc18483f8ef8fd8a5d06e1381b23fa6b51d9d2021fef835fec820ccbccc4bad9f191eda76eddef2d1aa0e4ad0a6c9b754f2f300d44c52ac562',54,'E2721C962E9A49A99120D89DFF3E762B','0'),('AF589686A8D4475B8D4D0AB10BD342F8','QRNUY6+7ZZQ3Xnqs33ZegaWsa4xTl9xLk6BVGV6DmiM=','534bc5e127d63fff4e0dde339ba08ae916a1be1e0c5449e6629364a17a571e7ac9e944f15dc1a11c01f4978bb46e655d146e48e2231108b37faf21ddd061ba84ff16c6b3b8ac18b2148968b77c8d79cb3af2699c92f465ff11bdbc682e0fc97da6ad3b7c388d817810bd4f497d5219babe6bc47265c45ced87d7fa62d7164bfae0ba83687a5dcaff5e545c41d18e6201aec2688a47b773b2cb7a021d86d535e3eed3c18704b471eadef58279ddd50d8822b7e110f7ce25c552523f36081b50e48fcfc1a36253e8fc7e609997808c55013c0a8d80511b3613899d28b4253dce6c1ba7bae8067bf01ab90a70127a8277b15b4896d80b4268bd2a6f8b152dda0d824d2225a4d7bcb1b4b425cf5848cfe740',55,'8CE24209F143408EB07638C3C884A2C0','0'),('575F19E0D32C46DBB51CA94F5C4E3AD2','l6rR5UhCAQ8/cxjbO4dHbkNXBvqe0cy5rE1s9KTuP/s=','029f6e9566b529ac49b8fc453a9da2f4e73012193167679c8c120cc41727612d5953a41ef00c2d36ff76990c64a4fed721989c861891189025f0fbf9b43b91611052d75366f8817d678d8d78d629d29aec5368ca7e77256ea7d922d9b308a9ba96c7c988e23da9b1e5263b33349d07ffbe55560f46b0615261f5b509e85cb4bce8b77df279823261cbd7a3db6460cfc7bc9e2839c1971fe71fec3d0427d5659c67055d4ef04b6e4271599cf22f4858a9c8e5332a767b280e0793f22873773ad37fac6f5928c0e2c14d05a53d25c9d2b5317d402614a88807913ecd3d3ece3d6d7dda9342d1e32bb86b062c34e12cd6bfaad9e4c572a631e84f32d21a683b7113',56,'08B86AE0C5084502BAC6AD5F6522670D','0'),('30F46C1005024A078AF0B1E93055AD06','nKNX+foteX6JO78/aSqoryaWLHblRHqCin3JwS9cNhw=','e93351201fb76c5c63fd7c8126f8b228bf413c496fcb1d47aecbe794e4cec2be1f86d66aec4ee305aa3141f14e7428fc762823b6480ea9138b9b1047f4a28ef0634050c1ab52677059a615873de81e9d658e8528957b4c3cd722afa4cc87e15f6bc7f6e93388375f8421c3e4c17f589102e5cd9f1499e4d52c0f47ca8b3696d6557085303b47572315a411387738200c12a97534f0bb94cc8bd21f409d9b5ae1295cc9bc40d1bb3097670f73a90ff8a3ced9665a7e5dd6a3be54192f0dc17d1738a2e6092d38119012733ba58b9b2276dd2d32cbad2ee328aa37516cf4714283f5818d5b2c024b510ab6fa39241af6863d094235c0d9b9fd5779d0572a9ba5ed',57,'42D263EADB984C5CBE1A5B5E8C6D6839','0'),('52E3E2A5230940C1A1ACB31FD1BF37D1','6JcxuNFh2usLqOtGz/59tbOdlMamFYB9Ti03aRiTkhg=','ed1643344b7ed45b0d33b20dd37980627b8a93cb8636b116de171d015de3bea10d35a9ca0f4b24fa733e5c2f07edb49e32744979d1aefd7601ceb09f8b9421a76ec649ab314dc1e20a078898929cfcf4738dbaec62863e8fa76c0d40e7023102da81a435c2a1822a18eca356cb1b5ca5f926a6e1d158ae779e24065879ca3c8c084debe779051c6cb082c97d4352856898c1a09d7f18d540b983686a105497e2960700efbfa6c9791c2036d4abda3837e8bef5e8f9ef6863bf4581d9d7653586ec3a1c9700065c2d2e36191e7f1d0758153861aca0f24217dd76869c8b2eacbe10963fe76f089515d5f346cac535eb2243ee8ee852edd533a1cb4a49e87e9cfae23c7a81c4648ea184f933a9628a3f20',58,'AD57D84884EB4EB9B20CE48FA52D772B','0'),('05A3792E38BC4375A0C4EE12CDE29F82','jceVpOzOGfCTbGlNOcYdf7rMAquuMrpbqOKVFLhTVJ8=','00be22b1181fce8b3966e3a167c59e69bcaa2882c3b9aa2edc1ba253c89fc3c44f2211a80b47f3e528fe77e6486a230a6b3b3d4de7b264e90fd58234f8e566f55599b15de39d3b5d24e89a86bddc638134d953a869ab7813b1261fa22b63900debe59668c6ec9bc546c8e09103f10b646d1e0482b5f46e4f9199d4e4c7500109deb476fb6c6d28a2d1403719d46699754b22d4c39204a15fa318ef3168005411399aa9b697b8e9dcf7e713a96f0cced78a4d1ba81c32cd85b00aa924895ca9788cd0733ce744c9942a1797bf800211e9c4ea8629bcab13a337e36352d346af34be3b0bae0a55e7734293a00ea2c6757bd2fbe2c5c9134aa1189af53c300a3cf1',59,'39684639413D4C87BFDFB76A1CA2D134','0'),('EA676BAC92E24AB696DDC71AD4782AF9','nKk4R4myIlJJTb0HW/5f93uumqhXvaSJnXPPKTNIh4U=','990425a9ad12bab9968f955dfe1d1037e135442370d4bcb284b241a8474c2e298989ce2c099dc8cfb1aa8a7557869f001ee3992f73ac8c542f80b31641a1df77a4a45ce850606274331e83eb188d5e07e1cdb92c531ff20605d6dd357f7bbd6e804df0cbb2d9672856069cc9be7809c0997a5e868948a09e376a5d2e5dacd184a0be92963fa6efce19b1eab4fa7d0e253d0268b60e4f3d794ec9a7ead61688a8f89a3e6946b4dca953171a7b80d3421855c78092aa1d9cb7688cc9dbd57a2a28a395ebc2131e33f02ee8d8f493ae82950369308e72182698d790b38686838a37a4746034b1c95b0472c00b16f6547d8283010d11f49c100018a92f0129834283',60,'9AF721DB5218479BAE02F8A57404A483','0'),('BEF07909804E44968CCE39F6854FC2CA','Ao4Rwu2XKfvTpXgETr2XSxNz0OTgdIww3RwQ6hZRXlw=','990425a9ad12bab9968f955dfe1d1037e135442370d4bcb284b241a8474c2e298989ce2c099dc8cfb1aa8a7557869f001ee3992f73ac8c542f80b31641a1df77a4a45ce850606274331e83eb188d5e07e1cdb92c531ff20605d6dd357f7bbd6e804df0cbb2d9672856069cc9be7809c0fe449f539e68306c1d0f90ebe6f3477c5ede120c323354ce357b18e2651ed2192c15b8ed5fbcb537c7fd3c061f4bf29f55049d450f3e75eb44f293c7a9d84c64819e829be2e00090f8708944367a34ae29a99334a88943fabd3fe0ab4067da7884451e847ac660ac8b9f91d0a52636db023fc98cabc405812ef3ae7439e0a9c4e3f92612a0f6e9e5e2fb0d70b1949d7c',61,'5A8D138B697143A1B0E66882CD0787A2','0'),('6074A79543874A3989B51D9776AF3A31','YaS9T39+DDGNpzejsgaxLNTgKLt7s0FlLN9+MI/i480=','7f2ba94a417cb45f10e1c9ad11e6c0c3f4288ba7fc0ebfa80067f305a3f6bb100e3d709644b4c22e449cbca4bf16e46b35caef30dbd4eb795b209156cb5d07c6a79e03cc16546957398f368028e75c3e16cc3510dd9503508bc82849bde7e4dfec3217e92226fc9e1161467b412ccef34d815e9f9805ea3686bcf5bd23436f6bb652f485e880c452506b3b23a5483b8ee40818d1179a3f16776c4f773f64ca06ad6fd107a606f3938bc0d66e3c05adee9f5dd43f214321cb117a175aee47743db22affcbe048e12b6b0dc5a5a69e3a6bcd10c6d5b4398daff1d6542429db8d63',62,'C4CC2C5422284A65BE47745D0082AC0E','0'),('5089E6062DB24EE6BE720C82387690C6','j9OVdahjnvinHwBMwdramRcboOv19g8p32AGhWMEHKw=','7db75297bac100b45fcb90ec30fec1434064bb5d232a51657a1e1b61c0f5f9ca7b0b1426c6e3450a833d440c997de9b16a5e51874e57153c569c4f3b8553ecbb55c3bf235f104cf1e8e77874edf1ea66bab23004d08d83d227d0f68eede19cd0c04d156479a8b8224ccb6abac01119de3e18914b7b63f3cd2d043b959056761785036b9bd6b2f15c8b60e249a68ea0920390bc27176e6310ad38be3370fe32936d6c12fd4eff19fd646dde37c17e5e2b75d27f83828f24e2b62bdffae4fa94665f1a669987f29fae5fba6584119650e0c503e51a7b92cb875bdac73cdd7659baa015b0eb944da40036e226e9e2bff6840d512e251842c53c4a59eb9c83c1be03c8aa77657dce360f7d62bf12f3bc2732',63,'71D019400F0C4A35A2F1EB83031DBB8D','0'),('34751946447A4198BA814FCC467B54B6','hZgQ6RjuiYs161OQ2SyYFXJSoQtXaOn2/Dqf5ermd1U=','af7ab42eefbaf58a697fcb458188ab22c5812ce470cbfe0dfe871b2e98a172fefb241aefc3a9705e0da1b4c40ddc97a6d1da3ab4568b12f105c2dbedf660ec5d2b3fc422a8e6f0d6006280331dda47f39fb795e695411c4bd764258e3ef0684e76b44771b853db388fd5b8c6883e076661c7b400503b63f5e4fe19a48810134ba3c5508b2716d8ad23441ef201146d96528f08bbc52e94536433420ce9accfcf3de6afcdb3f54dbaaa90b4dd0516cdb87c6d22777d5cee14a14cdc73d75e3934295b2fd6ef4be308cdd0973cafbe7040a2a999d534369563345fac47a91ef6687d4c714829e7b7fa2427cfddcfd16b6a7e1dd510811867efc720e4628a8f3a8e',64,'D80D451BDE2545CFB0EEA6A2ECE28BED','0'),('AEF51872834148499517DFC0AF501B46','LeLLDbOzx/iaQMiG8D1oU0EflqiDr1eqF7V6uV1k7ts=','59b566c5c5aed28fa73eacf2f79028fd3b9fe89d4a1c7bfbde1de076f2a66bb03f0339f90f3b05c5efae216c97e82e42496ede102d4e2c63e27913ae1d7452bc19ed4d1396f41b226160b02234782f3673fc7ae8e23a267e0643ac7f2509e5d29aa554398ae93ab77075565f21a75b5c010c5a9786c99168efb4840b0ae62a31b56d84d6809b418d34084d74df80dc2c0e4591e5189bc5041aa131ff7b8522c5f8997fa9714237dbc3e55371e0b9451aa16a8091aa127d928b10b919be10a4a374ab3b7eee1656c5306afd4ae2f90fb7b97cc12a17f215dd17959ff853989647a24a81f3836877d92ac87ffe7bb7d6320cbca02339271f6b130c5e01b22ec282',65,'DD23A6309AFC42549AEB0DE50C52AC1C','0'),('857F9594E80B4F43B5042367879A2B33','M/yGGtCaGNUTsbELu9CT7s4BT7Qsye6Ab6p8A5wgq5E=','97262017a0f4541561f838da3378b950a8c5ac200845c8af445e6030edce56dacc7f96119942f49794101a5c56bd7aa74f61713ef1e97ce7221eb3650ba2885ed0b53159c09d3f1c308ab3c7cb69f2f3a8febf0037d04787dc6aa45bc093f2b356d1012cf2117a8dbbda6f524f9c323e7aba85463490534375cd47f85bb19f40647365ed41669494bca0f60ded06ebfcffc71b5d3aed3e5e845553fa037a68f68d27d77a2e00b9527811398370620711291aeb9a9e0d4c7039aa28ac6265ef39cbf6cd5476bd62aed7e9401c3332ba4732ac804702cba84153a84c0d77ce3d5ce0428344a1ad5ec8eaa746d20fc2062cc189750dd85110afb90d16d1387696b7',66,'6806B9C88E8D45E49D842E907FD56A34','0'),('A696C5B7A00B45C9A487C5006A6B23A5','CDW4z6ewB2YHv91FTuMah2SJNhaPm/A91f/sO6FDlt8=','990425a9ad12bab9968f955dfe1d1037e135442370d4bcb284b241a8474c2e298989ce2c099dc8cfb1aa8a7557869f001ee3992f73ac8c542f80b31641a1df77a4a45ce850606274331e83eb188d5e07e1cdb92c531ff20605d6dd357f7bbd6e804df0cbb2d9672856069cc9be7809c03367915c1a45ca49a5aeb94b535a0e16226fb7b70b4c69ffa7900268360f284ff77419257cd19a78b5680ec76c8a2480698d1980b21376bdeddff690b02efc2bce52a1adefda165b5aff1e00204b3eef12f15ecd50a4f0410af33527a4332297fd5128855ec0c91589bee502167b813734c4b385354dccc925893738ac718f2239fed7d83f7f5a254863ec1cbee000da',67,'6CF995D40239454B8FA23D852CFF39BC','0'),('4A04EEC366B142619508B2F8A93853FD','wMssviCIa54w578btgzM7RTQ2GhubtopsH+OvjKA9W0=','990425a9ad12bab9968f955dfe1d1037e135442370d4bcb284b241a8474c2e298989ce2c099dc8cfb1aa8a7557869f001ee3992f73ac8c542f80b31641a1df77a4a45ce850606274331e83eb188d5e07e1cdb92c531ff20605d6dd357f7bbd6e804df0cbb2d9672856069cc9be7809c0cbfdd4e7ec854926199b2538259c6b9ed0c530404826ac2b5243991a3f02fc031a4439af5b162ce5e5b795650357c7f62b1736e34b528c3c7cbc4bc93deb4526e9288a377064522a60342c235a99bbf47725ab6b441d1114d17254c2a5896031d7642cfe645a9306f9ee4f7971d423be593f0da9590f1ee28254fb22892eaa8443a9e0632777a230bd1b479803aaefcb',68,'923FA79E117D471B88D664379E912936','0'),('DF5FF2DC9F2648D8AE5B1E9C818C84D7','g0LNffv9VuDCZdWEoIxH45dHTav1ygY1XAtHg9rCGfI=','b398ded8abd01c001902e604b827c84e463da68fc86a580add757375f2300dd58b5349e3f9cb751602d91ca23af8d5a6b8106afcfd661ce2dbb9a2f6e64f6b182ab07afa4071d3ae5a0cb701e4f6f71da0b3fe397b51301f9ae0ca8a79e8d50e57c2bfb127256a57f2253a225280dfd34e6561512bf16d05816ec8e85d393f47cdffc9685da76aa1c8486c2a6223d5642e18811dcfc5c7a666ffc185b000e41af2cead25bce8cb5532e706893777a0b77a94a05be3af24ddddc5963a60163b79e1c9e18519e1fac111b71e9ed4d7b8dd229451e5b25d6ce40b986baaf0610b625635cbd89fbb9ad37d81d78fc26097956898e01a1af11ba6fcc90fccb8238964a8208a92c4ca5cda1e8773da283f0093',69,'522027F691444A64BE87DCE85E2D5AC1','0'),('8FBEEB8965C84F8EB8A9CB4ABD96719F','djIANYf21A7fPA453SHPh2J7mCMdXcP/gRW+pO9lx4E=','7fde81c045c63f94206991d047f5b43fab574e6d48b1b2106cb135322f725cb176c3c10f69ec55dcf1c4520ae5c80ab479f877486eaaaa2a4e69220f734736514b4aa0ee7b178f8d5d8dc8241a08be9bba3772b3d96ec4bd1e7aa60b2b29b485414763277775457593bc63b66143322756dcc227c331e107a5930e18fa4b2c2c85f5a78ab58e409089b54a63e8dbffbeb5176dc83e1946bd99bae0c8327849245c5cd9e2eb39bd82204cb673bcaac3056efe4a00c77a94161380b2c32aa2b3eea1682d6996e20a697dd6bd8177fe4a7c852588d83e3d13ad3542b45a8f6640d53ae5892ff9dac6fe6d505afd92f665922afcc06294f5172372428f3fa4b9a059',70,'3255571DB96749B5B9C5F975384C42C2','0'),('C076DD0FE6B447248CA426EBCE19AA86','XBDUv+osuW8OBsGpFXvECc6vijaQguLZfrP9oUC1liA=','f1f886ab7c09af7ad4abf3e3de49ea03bea973df8f86c70d6fbef260e49568cd86fbc12a191e69e8a4993a3df11f8a22a109fba6a96dfdaa26fe85bcbbac516a493c640226b249c55b1271b3490f196cfeff2f9408b8ba7a5db25e64a7eaa99c135e9cd11fd6f11c08746e60f7274122828d98e854062c3d21d85ecaa2b624ee6565fedd5851ada2af41d73831bc371eb7f5f1b694529019594f589ad629eb30594bc256acd8b07d093184596ce5fe2edb186dd88addb9d0e01a5763f4596e9ee690a03631705608990098d2d6e1b63a599d2702125ec6926be3f989dd5400772ace7d9258cf573350fd9ab53c8ceaecf2af4509fdb2aa8f3fd6d55ee7c281ce',71,'6368AB9607A040DEB8F0D014CD9E93A0','0'),('57936CF873ED4C549C748C4D0D234479','8/7gNcDnARylPZuO7cSZbq4AQAVwrqgwKUIBkBal4Eg=','6192eda0e4aa0dd22d3215066866aad9002e083d40ee437ec2cc8a128d699fbb47c2a14a85d0a7f242f199af41ca759816cc06dfad3b4d9f19e6a687407d20fc3d0ad775f17d2a73ae146c91d2e2d5fdcb1e092d0d3b65e79d1d8c9245f59d9861b4ce47962ebb25e40fbe9a65bf3bc4058dc15d98cc977ec8b7b40729406910b233537d96396347c9819c19bd83239416e293cb0b5e77ae8dfc5b569231dd44acd0e2e5ad0ac3f9535389843a8a137e2ac19df72b484f77beaa678afb563fbfdeea1db03cc17533f2af84bfa464fc730117072d34562d3dd9e344b271ad3dd3df408bce8d50af0c6776c2a5a1fee812aa2cb2e0089d2886ecadbf88391f1105',72,'BF90BC11224F4B728CA72DEB7ED14A50','0'),('821108E147B647E1A86A426EEE6D5A8C','LDqtA0+cUDqXxwL3BJwvaLHtmLkiR6nn5f7s4VN6MrI=','9cd52bf6916df0bf9ed3928a15cc70ac0e0d561020b87f1f7240db8a498b82db87ed90af19e31b6ecc339ef8d46b8299e11d9957b2b18f76a283de0940fd334de455c1e014debddc78721bec404fc10a8deebaf12eb6c779cbbe7daab2dd15afd54283ac811043c3e3e9dd3c8713c10b44e6cf8a576bab90efe4c16f6edd23b23f115273cbfaaeec7493b4eed0aa5cc4fdc053595e3e6ea0726ad70f6e3fea550da150ef9aa3d86306e3b8c3e92c596fb9be60fc0d459543acf4318087d63595cbce054f9ce3321077d538a77a40ee429efbb42e3c79022d5afab77573fcd0a2e21d525554de090390553108f07e94cb16cc620f3987afa0999f68b3755f4d2d',73,'512B41E4C64446549D08D3F3AF86E639','0'),('857885BB72CF4077898782064FB9F05D','44wEtSzgECTVNSVonqjKsiDxmFJsdeOwC/IYKI2aTpg=','d64520a471345395a3e8e3fae3ba32af042833583e345f57fa6725f1025b95f99438b116c651c35cffb264c1e17f65816c3200f034fc5428eb55427cec0779c60b7a626337fa615f26279a0a78eaf97473cb2bcec214ff707514fdd76c025e325aba323a1fad6011da6f4e55caed4fd5a89805ce7c0a21a79e5543e05f731d7bd2cbb14d3e32ef687300b04622ae4445048145fed15d5fd8338b3abc3340a45e10f280177d1512403f1c3233889ba0f59565e671a2f982a79878873294bdac5a47e3d2ce62e83854f0ba0ff534d8ba3b7548c9c9b68b691ccbcaf99d2613ff4cb64911017e07214ee24a3ec3034fdb0f5a678e35e2af5a7768f1ffaa8e0269e2',74,'0C4C17C39BEB4C6B99F5D924791C7B43','0'),('659555033AB745F9AC4115541E260D83','FxayxU6QnFkvQJLndXLHGfP9FkPbhjvTJ8dZxSHP/cs=','c0719d5225a44481ebe578332cef9a1104338d2f89714d4a8bd79b0392618501f0fc0f36010f48fc57e8227a19bdd4c2d0ff8bdeb937d30b719d25c8ab746fe371a4a0721e9e94b983a86b2cbf875aec033d622a735177babc266f9095f4782e4b6ffde202e295c35ed7cc2857cb1b602942a00b53c18213ed0c3ff8597623271cb2ad5c359dfcdc80e36020676477c9d3f5ec2950691ed6023f0c0817b8edf9136ba6e1fb536d2fd491f5cbc337f865204cf9f54e993137cbd29928878fb27a1979c7054c3955ba205f84aa45b8b3d0343071a7a443d8a8001a1fa9681ea013b5c03f6a2b1c181a4b88539036507b137fabc64dd5e598680d74ae37848d930449270556b5d7b5e6066424c709fbfc77',75,'805EA60778344994B02418A28693424D','0'),('FEC336226D284B2498141E34796923DB','NPOa9b+R1FfAAOSLzNlQ3tk03MIQr1Czcch6ZHU3L1I=','990425a9ad12bab9968f955dfe1d1037e135442370d4bcb284b241a8474c2e298989ce2c099dc8cfb1aa8a7557869f001ee3992f73ac8c542f80b31641a1df77a4a45ce850606274331e83eb188d5e0727784074a9c6a80548522dad2ab81b1b85d195c172beb8135924870c83aba63a37a1ee57547db24481f64f2c7c1a4c8cdf70cea569b1b3f89e6a81702c38188cf8167afe977b057629d10e13e61051077f3caf6760df868a9ca2122e419b7d4c750a81342eca9274d4c6ba19ed52b376d35f2c4152e5258d1b8c108ffe0d2e5353a612e01c55044f39c6f4fe4d1174113d7fd143e69612a920d8221baac44a433ffe5ff954fb804d0a5bdaea6f8bdf2aa6e5c55b6b4cf23a48b56cf0ac4827d25865559d446b08a8eae0f92475a478187c31c6ed8605e74ffdf2c6e83a54c41e',76,'75478A35F843410587457E76D86D9E86','0'),('15D54F6CA12540A1A2C338B174ED0713','uvZXzwIDDQ6M6j/Nc79PwARKlIm5/hETCHDwjjXyoNo=','990425a9ad12bab9968f955dfe1d1037e135442370d4bcb284b241a8474c2e298989ce2c099dc8cfb1aa8a7557869f001ee3992f73ac8c542f80b31641a1df77a4a45ce850606274331e83eb188d5e0727784074a9c6a80548522dad2ab81b1b85d195c172beb8135924870c83aba63a37a1ee57547db24481f64f2c7c1a4c8c8385ff31675ffb5048d4d2fb46c0608fc25357bc7de08376be4d23b5dfb183e3c4dff2e28bd99d9f4eb1dd73cac3dacbd64a7a084cf1a404563c2e50fdf90a2be2105711372f5e92fcd1d48042aa9af0d3e6e7f205f5100b5513517753bac2880a6e8963e663ceb284e575b308eef51def98df3df684f5fd50433e450bc0015c6c7231cc613eff21a3a155936c948a336b71a75bd8f78eef64a7f3cccd6d750fd9a279f8d33a9b20d4071a7509974a27',77,'033FD46A04FE414FBB651B4E92FB7AAA','0'),('183E70CF11BC46BD9D1B5A44CDCE6DF8','LK2SeLOcn9NuL/FuBLpzgRW9FnPWK7vzgr+h7kGsmPM=','59b822e85d9e579228ab7f430c78814cc86b18fbb40b28a370e717044e38d4ae925fdc9965f5eaad015c4643625fbdc17f1c315aa1738661f167c2fefc1ae5bf32d5c4b301969faa2ac50246be593787cb6b72ca3dd558bad1fec341324f5ffa02f43599dc85de49c271975d973406a1c1eb0c2cd43971c38b97f749fd39ca2439599e2b4b009249fd3b35c6fdffd289cc0bb69acf14f265debd39fae358eae8abb665ccdcc0a84206fee265fd1a9eac6791ed6b011fcaeaea9d294a8a69bb9b709375c1cd40fac63518659c77a4431475ed7f41ec935115e3b2f2006b473c2d1e8758017273474e47b2ce9a59702568e078ca0bbee4c49ca254bfb8e27f00fd',78,'09D4AC3E758E418B964B1D22AB2F1589','0'),('7EF5E247653D4AEA9156D5C0C08E1339','YZgb4D9qKLlwhuvsJYcVH9o1s77W8Xyao8erheBzGdU=','9e121b374eeb2cd5199c5f69d680dcb447647de9eef0f8bb88c87403a0e98327dcd53239db4842acf631b395f2a9e18cc1b10d4a5e52d1e238e31d3c509e45e624422aa66baa18a22522c8dc4aaaa6303de14e418f2160c641ad5e3cbd98637070e138e3325eb7507a4011d3087b994a0e6357a13c1ad10fbe4772d7db7edd8811d48fcc0996883ea6334bff9b9281845708a07f4e0da4e69a54cc2243cf24325808258f021046cbcb2304227f085f614cf2946d6a2917b3f58f9537bd1cd2391bab4bf1075723d8cb59ac2bf4fa981dbbcd2f423c5c2c7b8ad1590bf553e85e790db8c34b4b233df9fee9d1aa2eefdd68b571f7b9f5e95699e10e759ce3dc137df65ff58108842596bf21e608500356',79,'8C068E8FF6B64A2D89B5DD0D41D0E419','0'),('9FB64B08478C47EB8ADAB37FBCAA3E7E','yhC7VJEyRDl0Sw8kd6vFAUedwrlPJwjZ8xXn4d/P0Dw=','b233c6b99e76bb4ecad84d95e6fa216099ed48ae61dcfdb871e72878df5bd1234cf85fd96cc6c87d6bccdf7c7b51a24eb3200372c03ea47217175f339c07251af6d05150947e6b7ddc419060349633b3df0041ddfefcbd60c056b9f75c7187d90b273fc8cd82887515bf7527f7fb34a868ca032ecec925abf5dc0676483be3565255a07cb34e9b92f4e57e66c40117128d44c3ab51df88ff6899e2542713de0a0b6c7a4650e4f5cf2f21e88a8600e0f1d5526e6a1b3957f084e6bf81d2158bfc01077ff3fc87a031de4da4ba9a329eb9eeb733374fe4764fe1ec9409c31760fd85284812f15b7e84088e8a271b2c78c53afdc96357374b60a97460c84c742044',80,'E70F4155F9BA48769FCB7F8DCC99F6D4','0'),('25A90960518C4BE5BBEEFCF0F68C8A74','/lcBChHcAvtqNgBJQHTzANxl1c0qmn75hWhpRjJBojo=','66db834cb4c06b86b021a3189b027cf1003472f2a4701067898a5a02f4acac0f542ffab54d83115367784f4190ebf64d606aeb427e10feef12aff8d4f2b451a4ca66b31406796e3e07c21d6f6d15f945c4eb772f2b4151b112dd15bb470e7e4c6dea5d7ca19718c4fc478aaeb15c1a5cd758a47926ec5d4640b6f74b9d7231a75b0338983e54604cde7f4277ce201b77e0dc46e20dce4937b4224de5054c0898f1a064f51ddaa7d6f95b6065a391a67bf70b6aada86051eb134eddd46a40389aff68bd61f66acfbc76a83f610d19665b4691e0698ee5cea06898b211cab91156dcd8e4884b334d550e9a6a9186e43df915b9e592433035ae988d0093d0c07db8',81,'6260931F6B9C4CED994D2446A1A4EE6B','0'),('C9C44854965649EAA5C3D58B0EBCA22B','l2l2aeFxwN0CLbgvvSLDOD8Mk8RZMXHaW6jHVdcDwzQ=','0062527b22e5436230e85779ef1b88b75366ace016595ae34d269e03abed6466cc33acc73616b8e52624b138b7fa9825579044af2b1aec68a79159dbc0844e8fe141d6d4c6b305984143de68a9ee8e0ff9863e79af3d0ac8c9b3f63d8beacdcfbedabc65aa453fcfea935dd7e9aa62e7ee4e1e7f2ce084ec4481951c251e7c8bc20ef8bf4726b2f006f8bb5c90caa86e327df5dd74d9be0ec77ff7ebea6d84075bc3ae63dd36bb3a9c28e73f6ec79afacc8e1fba9470abc34965dd53a9f27890e71c449221dfb3b8c12d9c2743639c6d88f990e3b6c881768972769c90f1b5bd6273a1450d8767b4eb8d4b52d98a789ea698f4d05145c6e2f6dd930b54c7fca1',82,'C30104F8B5EF425B9AB9525D9E245ABF','0'),('D1CD8D244ADD46C9A6AFA7481F3525FE','TPlWtysQ9ZxNQ6tSe8/C0DIxs2S164p6eKPXyyImfM0=','399b03ed119f18667fb063dd8ee7ec52c29a9264ba8d52a7c676781bb2b8fcd82153cd34422cf2680de89f5962f5374eb7ff15a06a72218c1bba857f5e68ced78400fea5c0b4dcd673926cf8d5f979709535857a2777ff6cc39216a2c872e3e0b1ead270e280fcfd1c034e13ac00b4ac305d219287a9128d881af40a66320c6c8a53b9f0b1976156c1ea1e6db0300777dabdb34faf12c7001e8225082e57219d344b116ba62465644f19f73ddd7b163cd5c52408e5f7136e3cebaaf20d42847e18bd72874def104062b265cb8b7509ccf2a6c8f52bdcb1e14b543196f281a34d2a4b0a0e25086a2af20fd23b2922387e85246c78703dfddcd018c54df3c8b065',83,'42F19FE9089649F2B3811449F6F13C88','0'),('7795ACEB520F4DA2B7CADE6EC0D7103A','tei1kI3kF8BSnLA+gSTTlh0m027S6R3HaKn9vKx4tSU=','b349b07a5125a242c77f70a2c89f482f464b9459769874a096bb59cae07d3893b824f8cdc49e91719e8880baa538f201358fecafdc43e8b1571e70d7b161f09ea3f44ff306caccac79db0e4b10dfa261debcfa37315e4c553fbdc662b768e0b25941d0501d29d1c39751036e5037a9a765e1be41bdfc09013dfc4a471d9db68b9e7f378f1d9064888410a9d5a3438558a1e2078327dc659929e025cff6736966fc66c0cbaa5f1169321a043deb6cf67739e6c32c10a83b0bd1854ea6a996385d5a6d24da0dff7813ae9292d559e17c83e34fa3b3554e7f7799b46086626822ddcbf31ed7d0c23101252336d7ebb948c09cbd491212f720cb437d90f1e0cde11a',84,'C2BE9183E442416CA8BF1B6AB6F04EE0','0'),('E74A7263A6514D6A920CDFDEFB41AB22','DrpwsjUF+KxZDNIVYzY74PCkOIhYqvuJl69Scwu5sKo=','b91ba19267a3729e61a11e05f4aabd5a315e144e5f24f5fd50a2723e0ecefcdf4aa11f9b0eb36eeabde0bca8004a9f954f6ecd1e182c4ac89582f3e460273a4a3831d3c3096571e6afa83c4367a6956a0bf00822639843c2bc0b9b6035bdb232e0b22f870ad41d83274c5d207458d57831b37c8e32cb18eb170c38b2718872c8d645cc0b2a78c0634e1144533e480d9f65c84ae28c3ae5396c1d590e334cfa5103020df39105fb8ee87af87389b122752ca80c51c8b740d7772c10a468ba15471c9c42826584b68dedefffc9ca516a4d2d87103eeb68b12971632e5b95fe4977edb9777b438ee5fd6732b0ac92d1b522a9d75562df51a137cd522427e7fd5eac',85,'5FB19DB664F24C9890905CC62DA67242','0'),('7D6C7BBE19B94BBA902DD1A17F626858','CBkLqSQeDI7OZ29MLWJb8yADgrSfYJLvDRUmgS9btfY=','e9bff249caa4375d3b04c7e04d8ae8f331100a71909fdb3a1d5eb78ba83dc938933160b4a84a72f9a1ec3f4c2288fe34308e4a44c4d7c9769728a19bc337a62cb1585ffe563c6bd4e37eb0dbb59d4fc87a7960bd98cf4180cfa5ae5b0228dec828f69cad125cff0b8fc509b2f248b32b4d6b8c26cafbcd31140d0542d7dbe4fb1b25136459b27b7faebb082111946af1624750fef8414018cca6daa1bcc935bc612b29bf3f8a061fceaf225e191feac601b8e3647a92315ceb4dd2658b110c96b5dbc48ad94a3461665bd581c086609d163fb62cb9c440d411b4aa592f4f4c7ff7e9f44bad65af3b6c1334c9679f1c177a3925fa3288df794c42da8a4353de48',86,'295BF2E4FD6D481AA876E14AA72FD0C9','0'),('5D1EF38C409F4145B141253E943FADF0','izjQzQU+Ouza89R74cOYWu6mhsjp6wMQfRxcw49fB18=','771f95e039e8eebb211743044d138276310a3afc71738d73d8b67163e11a8c46df7deed1816369e34c8c3388c0522672a5a3f5befc6964eaab6747e6c2033633695a4b0866d8ebed223cece7b962eb1daca9dc53fbeeff4d1a27475e044d3cc08cc174276ad78a50b7988c2618332d792f5b14db173e492875ad868ef4f87fefe4eb8f845c89dbe583de316586c57b50b63267bcbe1ab5953151203ff52f069d3c8b69ca1523aa56442752eb5edac643fe47991aa8963d395aca7a645cdac9b0db17f070ef54e46c14055da71447b04534c98bb3e81b6c3f5b3b5556abd6ba5c57975081eda8cb0a2bec6b8e2cb408a824440a304bb78d5698b0982d2ac25e3d',87,'07C8D05FB18C4D42A40AD35E8958391E','0'),('6982738049124A8E95B8B263FEAB8E91','zzQSHq9PlPAiYJ+OPJ0EEklOki4Lvu8N5PhAgwGcHQc=','a6e5a99cc4be824edf6eced98fae6af6b95f722cfed94919ec89ad8c04a0795bd35ab97f7994420852b6a674033490dfbc21a8050f30b681b5d51674e1e6760c429d2e8b323029a3bf51f8e2f3edd5ec49af1e3a876f9aa2421095b7f6c7072d9ba44e53798cec875571a11fe99d114aff002857907be0dcd9d8a0306fce228f4a49acb042e3065f5746e4dfd35dec82cc745d77883bd9d86ce85d115de24c2f18dad76b144f5d8cc9e22d5d0bf77e55a0aef5fc4f8579e27d444120d8fc6fc358ad48c69b15aeccc43a717ba7b04e3dc07e8eb8051a7da4679663f8971e4ec2837b5a262463ac95af97779812352a98fec47fe3681a36348d84664958c4edd3',88,'512A9100856E4B649B91A2D1073B47C6','0');
/*!40000 ALTER TABLE `tbl_cashfee_detail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_comments`
--

DROP TABLE IF EXISTS `tbl_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_comments` (
  `commentId` int NOT NULL AUTO_INCREMENT,
  `blogId` int NOT NULL,
  `name` varchar(55) NOT NULL,
  `emailId` varchar(55) NOT NULL,
  `website` varchar(256) NOT NULL,
  `comment` text NOT NULL,
  `status` tinyint NOT NULL,
  `createDate` datetime NOT NULL,
  PRIMARY KEY (`commentId`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_comments`
--

LOCK TABLES `tbl_comments` WRITE;
/*!40000 ALTER TABLE `tbl_comments` DISABLE KEYS */;
INSERT INTO `tbl_comments` VALUES (1,2,'helloGTX','vijay@catpl.co.in','934343333','this is for testing',1,'2018-07-06 18:06:21'),(2,1,'Utilitiesss','nikita@catpl.co.in','934343333','tet ddd',1,'2018-07-06 18:14:20'),(3,18,'dgdfgdf','myindianholidays@gmail.com','dfgdfg','dfgdfg',1,'2018-08-14 16:45:03'),(4,18,'mangal','mangal@catpl.co.in','google.com','test message',1,'2018-08-14 17:09:32');
/*!40000 ALTER TABLE `tbl_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_committees_members`
--

DROP TABLE IF EXISTS `tbl_committees_members`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_committees_members` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(500) NOT NULL,
  `designation` varchar(256) NOT NULL,
  `companyName` varchar(500) NOT NULL,
  `email` varchar(50) NOT NULL,
  `phone` varchar(50) NOT NULL,
  `address` text NOT NULL,
  `pageType` int NOT NULL,
  `image` varchar(500) NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_committees_members`
--

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

--
-- Table structure for table `tbl_common_box`
--

DROP TABLE IF EXISTS `tbl_common_box`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_common_box` (
  `common_id` int NOT NULL AUTO_INCREMENT,
  `home_content_script` varchar(1000) NOT NULL,
  `common_content_header_1` text NOT NULL,
  `common_content_footer_1` text NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `metaTitle` varchar(500) NOT NULL,
  `Keyword` varchar(500) NOT NULL,
  `Description` varchar(500) NOT NULL,
  `common_content_header_2` text NOT NULL,
  `common_content_header_3` text NOT NULL,
  `common_content_footer_2` text NOT NULL,
  `common_content_footer_3` text NOT NULL,
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  `Title` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`common_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_common_box`
--

LOCK TABLES `tbl_common_box` WRITE;
/*!40000 ALTER TABLE `tbl_common_box` DISABLE KEYS */;
INSERT INTO `tbl_common_box` VALUES (1,'<!-- Google Tag Manager -->\r\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\r\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\r\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\r\n\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\r\n})(window,document,\'script\',\'dataLayer\',\'GTM-MXCG49D\');</script>\r\n<!-- End Google Tag Manager -->','<!-- Google Tag Manager -->\r\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\r\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\r\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\r\n\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\r\n})(window,document,\'script\',\'dataLayer\',\'GTM-MXCG49D\');</script>\r\n<!-- End Google Tag Manager -->','<!-- Google Tag Manager (noscript) -->\r\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-MXCG49D\"\r\nheight=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\r\n<!-- End Google Tag Manager (noscript) -->','1','SVEZZ – Find Cheapticket, Best Tour Packages & Hotels Offers at One Place ','Flights, Best Flights Deals, Book Flights, Holidays, Svezz, Hotels, Book Cheap Hotels, Best deals in Hotels, International Packages, Domestic Packages, Summer Holiday Packages, Best Holiday Tours & Cheap Packages.','SVEZZ, a leading travel portal with cheap round trip flights, domestic & international flights. Get best deals for holiday package, hotel booking online','<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=G-HGRXYGSXQ3\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'G-HGRXYGSXQ3\');\r\n</script>','<!-- Meta Pixel Code -->\r\n<script>\r\n!function(f,b,e,v,n,t,s)\r\n{if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\nn.callMethod.apply(n,arguments):n.queue.push(arguments)};\r\nif(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\'2.0\';\r\nn.queue=[];t=b.createElement(e);t.async=!0;\r\nt.src=v;s=b.getElementsByTagName(e)[0];\r\ns.parentNode.insertBefore(t,s)}(window, document,\'script\',\r\n\'https://connect.facebook.net/en_US/fbevents.js\');\r\nfbq(\'init\', \'1483800395405649\');\r\nfbq(\'track\', \'PageView\');\r\n</script>\r\n<noscript><img height=\"1\" width=\"1\" style=\"display:none\"\r\nsrc=\"https://www.facebook.com/tr?id=1483800395405649&ev=PageView&noscript=1\"\r\n/></noscript>\r\n<!-- End Meta Pixel Code -->','','','0',NULL),(2,'<!-- Google Tag Manager -->\r\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\r\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\r\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\r\n\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\r\n})(window,document,\'script\',\'dataLayer\',\'GTM-MXCG49D\');</script>\r\n<!-- End Google Tag Manager -->','<!-- Google Tag Manager -->\r\n<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({\'gtm.start\':\r\nnew Date().getTime(),event:\'gtm.js\'});var f=d.getElementsByTagName(s)[0],\r\nj=d.createElement(s),dl=l!=\'dataLayer\'?\'&l=\'+l:\'\';j.async=true;j.src=\r\n\'https://www.googletagmanager.com/gtm.js?id=\'+i+dl;f.parentNode.insertBefore(j,f);\r\n})(window,document,\'script\',\'dataLayer\',\'GTM-MXCG49D\');</script>\r\n<!-- End Google Tag Manager -->','<!-- Google Tag Manager (noscript) -->\r\n<noscript><iframe src=\"https://www.googletagmanager.com/ns.html?id=GTM-MXCG49D\"\r\nheight=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"></iframe></noscript>\r\n<!-- End Google Tag Manager (noscript) -->','1','SVEZZ – Find Cheapticket, Best Tour Packages & Hotels Offers at One Place ','Flights, Best Flights Deals, Book Flights, Holidays, Svezz, Hotels, Book Cheap Hotels, Best deals in Hotels, International Packages, Domestic Packages, Summer Holiday Packages, Best Holiday Tours & Cheap Packages.','SVEZZ, a leading travel portal with cheap round trip flights, domestic & international flights. Get best deals for holiday package, hotel booking online','<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=G-HGRXYGSXQ3\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n\r\n  gtag(\'config\', \'G-HGRXYGSXQ3\');\r\n</script>','<!-- Meta Pixel Code -->\r\n<script>\r\n!function(f,b,e,v,n,t,s)\r\n{if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\nn.callMethod.apply(n,arguments):n.queue.push(arguments)};\r\nif(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\'2.0\';\r\nn.queue=[];t=b.createElement(e);t.async=!0;\r\nt.src=v;s=b.getElementsByTagName(e)[0];\r\ns.parentNode.insertBefore(t,s)}(window, document,\'script\',\r\n\'https://connect.facebook.net/en_US/fbevents.js\');\r\nfbq(\'init\', \'1483800395405649\');\r\nfbq(\'track\', \'PageView\');\r\n</script>\r\n<noscript><img height=\"1\" width=\"1\" style=\"display:none\"\r\nsrc=\"https://www.facebook.com/tr?id=1483800395405649&ev=PageView&noscript=1\"\r\n/></noscript>\r\n<!-- End Meta Pixel Code -->','','','1',NULL);
/*!40000 ALTER TABLE `tbl_common_box` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_contactus`
--

DROP TABLE IF EXISTS `tbl_contactus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_contactus` (
  `sid` bigint NOT NULL AUTO_INCREMENT,
  `name` varchar(16) NOT NULL,
  `email` varchar(32) NOT NULL,
  `website` varchar(64) NOT NULL,
  `subject` varchar(64) NOT NULL,
  `message` text NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`sid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_contactus`
--

LOCK TABLES `tbl_contactus` WRITE;
/*!40000 ALTER TABLE `tbl_contactus` DISABLE KEYS */;
INSERT INTO `tbl_contactus` VALUES (1,'Prashant','prashant.gupta11687@gmail.com','google.com','Mobile App Devel','test','1'),(2,'ranvir','ranvir@catpl.co.in','google search','test subject','theisa la dsfjk lakdjfl kjsadlkfj laskdjfl sadf asdf sadf','1');
/*!40000 ALTER TABLE `tbl_contactus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_countries`
--

DROP TABLE IF EXISTS `tbl_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_countries` (
  `contSysId` int NOT NULL AUTO_INCREMENT,
  `title` varchar(256) NOT NULL,
  `seotitle` varchar(256) NOT NULL,
  `label` varchar(256) NOT NULL,
  `countryId` int NOT NULL,
  `image` varchar(256) NOT NULL,
  `region_id` int NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `CreateDate` datetime NOT NULL,
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `sightseeingIds` text,
  `description` text,
  `otherDescription` text,
  `similarDestinations` varchar(256) DEFAULT NULL,
  `FAQ` text,
  `whyUseUs` text,
  `topTravelBlog` text,
  `metaTitle` varchar(500) DEFAULT NULL,
  `metaKeyword` text,
  `metaDescription` text,
  `meta_header` varchar(2000) DEFAULT NULL,
  `meta_footer` varchar(2000) DEFAULT NULL,
  `bannerImage` varchar(256) DEFAULT NULL,
  `popularPackages` varchar(500) DEFAULT NULL,
  `displayOnHeader` enum('0','1') NOT NULL DEFAULT '0',
  `displayOnHome` enum('0','1') NOT NULL DEFAULT '0',
  `displayOnFooter` enum('0','1') NOT NULL DEFAULT '0',
  `startingPrice` varchar(256) DEFAULT NULL,
  `DestDescription` varchar(500) DEFAULT NULL,
  `destinationImage` varchar(256) DEFAULT NULL,
  `packageListTitle` varchar(500) DEFAULT NULL,
  `packageListKeyword` varchar(500) DEFAULT NULL,
  `packageListDescription` varchar(500) DEFAULT NULL,
  `package_list_header` text,
  `package_list_footer` text,
  `displayOnVisa` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`contSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_countries`
--

LOCK TABLES `tbl_countries` WRITE;
/*!40000 ALTER TABLE `tbl_countries` DISABLE KEYS */;
INSERT INTO `tbl_countries` VALUES (1,'UNITED KINGDOM','united-kingdom','UNITED KINGDOM',469,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(2,'United Arab Emirates','united-arab-emirates','United Arab Emirates',228,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(3,'Turkey','turkey','Turkey',222,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(4,'Switzerland','switzerland','Switzerland',210,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(5,'Netherlands','netherlands','Netherlands',154,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(6,'Italy','italy','Italy',107,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(7,'Ireland','ireland','Ireland',105,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(8,'India','india','India',101,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(9,'Germany','germany','Germany',83,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(10,'France','france','France',76,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(11,'Belgium','belgium','Belgium',21,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(12,'Austria','austria','Austria',14,'',0,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(13,'Saudi Arabia','saudi-arabia','Saudi Arabia',186,'',0,'2022-05-24 15:02:25','2022-05-24 15:02:25','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(14,'Nepal','nepal','Nepal',153,'',0,'2022-05-24 17:12:23','2022-05-24 17:12:23','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(15,'Singapore','singapore','Singapore',190,'',0,'2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(16,'Maldives','maldives','Maldives',133,'',0,'2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(17,'Czech Republic','czech-republic','Czech Republic',58,'',0,'2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(18,'Thailand','thailand','Thailand',215,'',0,'2022-07-18 13:54:26','2022-07-18 13:54:26','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0),(19,'Azerbaijan','azerbaijan','Azerbaijan',15,'',0,'2022-09-09 18:01:21','2022-09-09 18:01:21','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `tbl_countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_coupon`
--

DROP TABLE IF EXISTS `tbl_coupon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_coupon` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `codeName` varchar(255) NOT NULL,
  `discountAmount` varchar(255) NOT NULL,
  `expiryDate` date NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_coupon`
--

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

--
-- Table structure for table `tbl_currency`
--

DROP TABLE IF EXISTS `tbl_currency`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_currency` (
  `id` int NOT NULL AUTO_INCREMENT,
  `CurrencyId` int NOT NULL,
  `Title` varchar(100) NOT NULL,
  `defaultCurrency` enum('0','1') NOT NULL DEFAULT '0',
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_currency`
--

LOCK TABLES `tbl_currency` WRITE;
/*!40000 ALTER TABLE `tbl_currency` DISABLE KEYS */;
INSERT INTO `tbl_currency` VALUES (1,1,'INR','0','1'),(2,2,'USD','1','1'),(3,3,'AUD','0','1'),(4,8,'CNY','0','1'),(5,11,'GBP','0','1'),(6,17,'JPY','0','1'),(7,28,'SGD','0','1'),(8,29,'THB','0','1'),(9,32,'EUR','0','1'),(10,33,'AED','0','1'),(11,83,'KES','0','1');
/*!40000 ALTER TABLE `tbl_currency` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_currency_rate`
--

DROP TABLE IF EXISTS `tbl_currency_rate`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_currency_rate` (
  `cid` int NOT NULL AUTO_INCREMENT,
  `FCurrencyType` int NOT NULL,
  `TCurrencyType` int NOT NULL,
  `Rate` double NOT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`cid`)
) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_currency_rate`
--

LOCK TABLES `tbl_currency_rate` WRITE;
/*!40000 ALTER TABLE `tbl_currency_rate` DISABLE KEYS */;
INSERT INTO `tbl_currency_rate` VALUES (1,1,1,1,'1'),(2,1,2,0.012932,'1'),(3,1,3,0.021642,'1'),(4,1,8,0.091337,'1'),(5,1,11,0.010969,'1'),(6,1,17,1.43793,'1'),(7,1,28,0.018702,'1'),(8,1,29,0.423793,'1'),(9,1,32,0.01197,'1'),(10,1,33,0.0475,'1'),(11,2,1,77.33024,'1'),(12,2,2,1,'1'),(13,2,3,1.673556,'1'),(14,2,8,7.063105,'1'),(15,2,11,0.848251,'1'),(16,2,17,111.195507,'1'),(17,2,28,1.44625,'1'),(18,2,29,32.772004,'1'),(19,2,32,0.92568,'1'),(20,2,33,3.673203,'1'),(21,3,1,46.207137,'1'),(22,3,2,0.59753,'1'),(23,3,3,1,'1'),(24,3,8,4.220417,'1'),(25,3,11,0.506855,'1'),(26,3,17,66.442649,'1'),(27,3,28,0.864178,'1'),(28,3,29,19.582255,'1'),(29,3,32,0.553122,'1'),(30,3,33,2.194849,'1'),(31,8,1,10.948476,'1'),(32,8,2,0.141581,'1'),(33,8,3,0.236943,'1'),(34,8,8,1,'1'),(35,8,11,0.120096,'1'),(36,8,17,15.743147,'1'),(37,8,28,0.204761,'1'),(38,8,29,4.639886,'1'),(39,8,32,0.131058,'1'),(40,8,33,0.520055,'1'),(41,11,1,91.16439,'1'),(42,11,2,1.178897,'1'),(43,11,3,1.97295,'1'),(44,11,8,8.326674,'1'),(45,11,11,1,'1'),(46,11,17,131.088052,'1'),(47,11,28,1.70498,'1'),(48,11,29,38.634818,'1'),(49,11,32,1.091281,'1'),(50,11,33,4.330328,'1'),(51,17,1,0.695444,'1'),(52,17,2,0.008993,'1'),(53,17,3,0.015051,'1'),(54,17,8,0.06352,'1'),(55,17,11,0.007628,'1'),(56,17,17,1,'1'),(57,17,28,0.013006,'1'),(58,17,29,0.294724,'1'),(59,17,32,0.008325,'1'),(60,17,33,0.033034,'1'),(61,28,1,53.469486,'1'),(62,28,2,0.691443,'1'),(63,28,3,1.157169,'1'),(64,28,8,4.883738,'1'),(65,28,11,0.586517,'1'),(66,28,17,76.885402,'1'),(67,28,28,1,'1'),(68,28,29,22.659987,'1'),(69,28,32,0.640055,'1'),(70,28,33,2.539812,'1'),(71,29,1,2.359643,'1'),(72,29,2,0.030514,'1'),(73,29,3,0.051067,'1'),(74,29,8,0.215523,'1'),(75,29,11,0.025883,'1'),(76,29,17,3.393003,'1'),(77,29,28,0.044131,'1'),(78,29,29,1,'1'),(79,29,32,0.028246,'1'),(80,29,33,0.112084,'1'),(81,32,1,83.538853,'1'),(82,32,2,1.080287,'1'),(83,32,3,1.807921,'1'),(84,32,8,7.630181,'1'),(85,32,11,0.916354,'1'),(86,32,17,120.123061,'1'),(87,32,28,1.562365,'1'),(88,32,29,35.40317,'1'),(89,32,32,1,'1'),(90,32,33,3.968113,'1'),(91,33,1,21.052539,'1'),(92,33,2,0.272242,'1'),(93,33,3,0.455612,'1'),(94,33,8,1.922874,'1'),(95,33,11,0.230929,'1'),(96,33,17,30.272087,'1'),(97,33,28,0.39373,'1'),(98,33,29,8.921916,'1'),(99,33,32,0.252009,'1'),(100,33,33,1,'1'),(101,83,1,0.71,'1'),(102,1,83,1.41,'1');
/*!40000 ALTER TABLE `tbl_currency_rate` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_customer`
--

DROP TABLE IF EXISTS `tbl_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_customer` (
  `CustomerSysId` int unsigned NOT NULL AUTO_INCREMENT,
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `MasterAgencySysId` int NOT NULL DEFAULT '0',
  `AgentSysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` varchar(100) NOT NULL DEFAULT '0',
  `Gender_Id` tinyint NOT NULL DEFAULT '0',
  `Relation` varchar(255) DEFAULT NULL,
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) DEFAULT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `IsPswExpire` int NOT NULL DEFAULT '0',
  `CreatedByUserSysId` int NOT NULL DEFAULT '0',
  `DOB` date DEFAULT NULL,
  `PassportNo` varchar(100) DEFAULT NULL,
  `PassportNation` varchar(50) DEFAULT NULL,
  `PassportExpiry` date DEFAULT NULL,
  `passporIssue` date DEFAULT NULL,
  `MarriageAnniversary` date DEFAULT NULL,
  `Address` varchar(200) DEFAULT NULL,
  `CityTitle` varchar(100) DEFAULT NULL,
  `CitySysId` varchar(255) DEFAULT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `StateOrZoneSysId` int NOT NULL DEFAULT '0',
  `CountrySysId` varchar(255) DEFAULT NULL,
  `countryName` varchar(150) DEFAULT NULL,
  `countryCode` varchar(50) DEFAULT NULL,
  `companyname` varchar(100) DEFAULT NULL,
  `gstnnumber` varchar(100) DEFAULT NULL,
  `gstaddress` varchar(255) DEFAULT NULL,
  `gstcity` varchar(100) DEFAULT NULL,
  `gststate` varchar(100) DEFAULT NULL,
  `gstpincode` varchar(10) DEFAULT NULL,
  `gstemail` varchar(150) DEFAULT NULL,
  `gstphone` varchar(100) DEFAULT NULL,
  `panno` varchar(50) DEFAULT NULL,
  `RegisterDate` date DEFAULT NULL,
  `IsApproved` enum('1','0') NOT NULL DEFAULT '0',
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `apiTraceId` varchar(200) DEFAULT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `fbid` varchar(150) DEFAULT NULL,
  `passengerage` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`CustomerSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_customer`
--

LOCK TABLES `tbl_customer` WRITE;
/*!40000 ALTER TABLE `tbl_customer` DISABLE KEYS */;
INSERT INTO `tbl_customer` VALUES (1,0,12761,12577,0,'prince9716630144@gmail.com','1',0,'0','9716630144','sohan','lal','',0,12761,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-05-25','0','1','a8bc3-1049d-f9d0a-81b9b',NULL,'2022-05-25 18:28:59','2022-05-25 18:28:59','0',NULL,NULL),(4,208753,12577,0,0,'amith.c.shetty@gmail.com','1',0,'0','8105807501','AMITH','SHETTY','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91','','','','undefined','','undefined',NULL,NULL,NULL,'2022-07-19','0','1',NULL,NULL,NULL,'2022-07-19 22:38:54','0',NULL,NULL),(5,213179,12577,0,0,'admccsu@gmail.com','1',0,NULL,'8126684482','fds','dfsdfs','f039eb446cc0bd7c5ad12b7a0e2a1dae',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL,NULL),(10,214169,12577,0,0,'komal@hellogtx.com','3',0,'0','9999977655','Komal','Test','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-07','0','1','fdab1-f0e09-ba5f6-4dfa6',NULL,'2022-07-07 12:15:21','2022-07-07 12:15:21','0',NULL,NULL),(11,214170,12577,0,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-07','0','1','bde17-05e94-739f9-c4190',NULL,'2022-07-07 14:33:15','2022-07-07 14:33:15','0',NULL,NULL),(12,214171,12577,0,0,'bharatbhanushali21@gmail.com','1',0,'0','9930301095','Bharat ','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-07','0','1','6c858-644be-0d764-9a961',NULL,'2022-07-07 19:37:13','2022-07-07 19:37:13','0',NULL,NULL),(13,216129,12577,0,0,'nehakumari@catpl.co.in','3',0,'0','8923963627','neha','kannojia','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-20','0','1','45d95-b117e-3ca28-0f8ed',NULL,'2022-07-07 20:07:52','2022-07-20 15:44:24','0',NULL,NULL),(14,202990,12577,0,0,'mybharatyatra@gmail.com','2',0,'0','9560102821','NAMRATA','NIGAM','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-08','0','1','b2dc9-5ee86-6da33-f7b6b',NULL,'2022-07-08 19:28:21','2022-07-08 19:28:21','0',NULL,NULL),(15,216027,12577,0,0,'navratan@catpl.co.in','1',0,'0','9997513572','Navratan','Singh','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-12','0','1','49fd8-fa47d-c7f90-78838',NULL,'2022-07-12 18:17:11','2022-07-12 18:17:11','0',NULL,NULL),(16,216129,12577,0,0,'nehakumari@catpl.co.in','3',0,'0','8923963627','neha','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-20','2019-07-20',NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-14','0','1','e2db5-a786d-a857a-db53e',NULL,'2022-07-13 11:47:38','2022-07-14 13:15:39','0',NULL,NULL),(17,214169,12577,0,0,'komal@hellogtx.com','2',0,'0','8595077740','Komal','Malhotra','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','5eaad-a2e4d-73954-6c859',NULL,'2022-07-13 17:23:59','2022-07-13 17:23:59','0',NULL,NULL),(18,216297,12577,0,0,'sibo.sarso@gmail.com','1',0,'0','8447455883','Mohammad','sabir','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','5ceae-66b41-62173-aec79',NULL,'2022-07-13 18:52:09','2022-07-13 18:59:25','0',NULL,NULL),(19,214674,12577,0,0,'jordankarpathy@gmail.com','1',0,'0','9660614455','Chinmay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','79abf-a3edb-821fc-be954',NULL,'2022-07-13 21:16:55','2022-07-13 21:16:55','0',NULL,NULL),(20,198799,12728,12577,0,'komalmalhotra0101@gmail.com','1',0,'0','9999977655','Mohammad','sabir','',0,12728,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-08','0','1','230ce-63b00-d965f-e230b',NULL,'2022-07-18 18:01:53','2022-11-08 11:04:11','0',NULL,NULL),(22,217550,12577,0,0,'mpiboxes@gmail.com','1',0,'0','9820918128','Arjun','Gori','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-19','0','1','c8622-16314-94fb7-65f98',NULL,'2022-07-19 12:14:24','2022-07-19 12:14:24','0',NULL,NULL),(23,217777,12577,0,0,'J.SUNNY27@GMAIL.COM','1',0,NULL,'9967303010','SUNNY','JOSHI','f91f5fe91d83ded3ec61178532caeda4',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL,NULL),(24,214171,12577,0,0,'bharatbhanushali21@gmail.com','1',0,'0','8422931095','bharat','bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-20','0','1','5e392-46cec-16db0-d700b',NULL,'2022-07-20 13:04:04','2022-07-20 13:04:04','0',NULL,NULL),(25,217861,12577,0,0,'bharat@svezz.com','1',0,'0','9702278610','RAJKUMAR','VARMA','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-20','0','1','25ca0-44bad-fc267-ff71d',NULL,'2022-07-20 13:30:47','2022-07-20 13:30:47','0',NULL,NULL),(26,217861,12577,0,0,'bharat@svezz.com','1',0,'0','9930301095','RAJKUMAR','VARMA','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-20','0','1','38063-a3741-a653e-e5a4f',NULL,'2022-07-20 13:56:17','2022-07-20 13:56:17','0',NULL,NULL),(27,220916,12577,0,0,'email2vs@gmail.com','1',0,'0','9811643365','Vishal','Singh','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-01','0','1','21347-cf9ba-9b82e-20671',NULL,'2022-08-01 15:52:50','2022-08-01 15:52:50','0',NULL,NULL),(28,221323,12577,0,0,'samaniageeta@gmail.com','2',0,'0','09873463822','Megha','Paghda','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-02','0','1','f9920-03ab5-b23c8-b2e02',NULL,'2022-08-02 18:41:10','2022-08-02 18:41:10','0',NULL,NULL),(29,221337,12577,0,0,'samaniamohit@gmail.com','2',0,'0','7011644515','Megha ','Mandar pagade ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-28','0','1','f2ecf-89979-9b737-31e50',NULL,'2022-08-02 18:55:06','2022-10-28 17:24:07','0',NULL,NULL),(30,223018,12577,0,0,'nikhil.dugar@outlook.com','1',0,'0','9783576789','Narendra kumar ','Dugar','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-06','0','1','06634-e300f-1e490-9a566',NULL,'2022-08-06 18:30:30','2022-08-06 18:30:30','0',NULL,NULL),(31,223706,12577,0,0,'webcommunication1234@gmail.com','1',0,NULL,'8083893087','DEV KUMAR','SAHA','e557fb7377edaca5d16a5356e58ee89e',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL,NULL),(32,223781,12577,0,0,'er.azimulbiswas@gmail.com','1',0,NULL,'9543933171','Md azimul ','biswas','c3b29827996341351e8152004e5d9446',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL,NULL),(33,223814,12577,0,0,'saikhibrahim12@gmail.com','1',0,NULL,'8167441033','IBRAHIM','SAIKH','23c9536d267e274a1c848d08fd5250c0',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL,NULL),(35,224459,12577,0,0,'rahulkumar@gmail.com','1',0,'0','7478747899','RAHUL','KUMAR','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-11','0','1','41a3a-36d88-d14b6-2f14b',NULL,'2022-08-11 10:32:24','2022-08-11 10:32:24','0',NULL,NULL),(36,224463,12577,0,0,'psujoy@gmail.com','1',0,'0','9767334589','Sujoy','Paul','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-11','0','1','ecfdb-01a14-737d7-a7662',NULL,'2022-08-11 10:45:27','2022-08-11 10:45:27','0',NULL,NULL),(37,224506,12577,0,0,'helppower@gmail.com','1',0,NULL,'9768860440','Ravish','Dongre','f91e15dbec69fc40f81f0876e7009648',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL,NULL),(38,225017,12577,0,0,'ashik.sardar11@gmail.com','1',0,NULL,'6294222230','ASHIKUJJAMAN ','SARDAR','aeaf3af239d636cc739011465694d8be',0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,NULL,'+91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0','1',NULL,NULL,NULL,NULL,'0',NULL,NULL),(39,225245,12577,0,0,'vyas.harshad@ymail.com','1',0,'0','9879457702','Harshad ','Vyas ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-14','0','1','eef9e-39902-4d7d4-fb4d8',NULL,'2022-08-14 13:16:10','2022-08-14 13:16:10','0',NULL,NULL),(40,226511,12577,0,0,'narwalveer@gmail.com','1',0,'0','8307741492','Karmveer','Karmveer','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-18','0','1','8d65a-23fba-f2ef2-ba890',NULL,'2022-08-18 13:26:53','2022-08-18 13:26:53','0',NULL,NULL),(41,226795,12577,0,0,'ashishbaid.1994@yahoo.in','1',0,'0','8955465384','Bimal kumar ','Baid','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-19','0','1','d4375-89284-90228-9c8b1',NULL,'2022-08-19 09:37:22','2022-08-19 09:37:22','0',NULL,NULL),(43,226796,12577,0,0,'tripllvgvailor@outlook.com','1',0,'0','7699017380','Nikhb','Ja','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-19','0','1','3cf3b-3261b-008b9-58a00',NULL,'2022-08-19 09:45:19','2022-08-19 09:45:19','0',NULL,NULL),(44,226809,12577,0,0,'m.s.samania@gmail.com','2',0,'0','83778144563','geeta','samania','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-19','0','1','4d243-0055d-55299-aa194',NULL,'2022-08-19 10:25:51','2022-08-19 10:25:51','0',NULL,NULL),(45,227507,12577,0,0,'arnavkarn@hotmail.com','1',0,'0','9869558770','UPENDRA KUMAR ','KARN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-20','0','1','e7403-2bd0d-da555-5cacf',NULL,'2022-08-20 23:56:14','2022-08-20 23:56:14','0',NULL,NULL),(46,227575,12577,0,0,'atulkarn@hotmail.com','1',0,'0','7506645196','UPENDRA KUMAR ','KARN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-21','0','1','90697-b1ab0-17302-7aefd',NULL,'2022-08-21 13:29:49','2022-08-21 13:29:49','0',NULL,NULL),(47,229600,12577,0,0,'das2techconsultancy@gmail.com','1',0,'0','7085589052','Raju','Das','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-25','0','1','2271d-51f78-4f9da-b9ae6',NULL,'2022-08-25 21:16:13','2022-08-25 21:16:13','0',NULL,NULL),(48,229600,12577,0,0,'das2techconsultancy@gmail.com','1',0,'0','7003083313','Goutam','Das','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-25','0','1','bbe72-9cc7f-dd56e-57d93',NULL,'2022-08-25 21:35:16','2022-08-25 21:35:16','0',NULL,NULL),(49,0,16498,12577,0,'am0856754@gmail.com','1',0,'0','9137879250','gaurav','gupta','',0,16498,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-26','0','1','27756-47023-244eb-9a768',NULL,'2022-08-26 18:16:26','2022-08-26 18:16:26','0',NULL,NULL),(50,0,13985,12577,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','Ajay','Khatri','',0,13985,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-29','0','1','a9dd3-5f6de-aceef-6ab3c',NULL,'2022-08-26 19:54:08','2022-08-29 14:13:38','0',NULL,NULL),(51,230782,12577,0,0,'arb@gmail.com','1',0,'0','9485994885','Akshat','Sharma','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-28','0','1','754b3-9725a-b7852-a53f4',NULL,'2022-08-28 20:21:21','2022-08-28 20:21:21','0',NULL,NULL),(52,230824,12577,0,0,'itskamalraja@gmail.com','1',0,'0','9091776621','ABID MOHMMAD ','HASRUDDIN ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-09','0','1',NULL,NULL,NULL,'2022-11-09 23:35:06','0',NULL,NULL),(53,231930,12577,0,0,'barnali.saha.09@gmail.com','1',0,'0','7908364416','Bapi','Saha','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-30','0','1','7f281-8e915-1c6f3-0339f',NULL,'2022-08-30 21:30:39','2022-08-30 21:30:39','0',NULL,NULL),(54,236638,12577,0,0,'nancysrivastava1996@gmail.com','2',0,'0','7091458187','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-07','0','1','ac10d-9538b-eeecc-5a4b5',NULL,'2022-09-07 22:04:48','2022-09-07 22:04:48','0',NULL,NULL),(55,236662,12577,0,0,'ritasriwastaw1996@gmail.com','3',0,'0','7091458187','Nancy ','Srivastava ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-07','0','1','4d5e0-f9125-67203-c3b4a',NULL,'2022-09-07 22:59:41','2022-09-07 22:59:41','0',NULL,NULL),(56,0,19895,12577,0,'info@mybharatyatra.com','1',0,'0','8422931095','BHARAT B','BHANUSHALI','',0,19895,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-09','0','1','b261a-d079d-56ee3-02acb',NULL,'2022-09-09 16:24:30','2022-09-09 16:24:30','0',NULL,NULL),(57,241013,12577,0,0,'abc@gmail.com','1',0,'0','7364773884','ABC','XYZ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-13','0','1','fa72d-5cc26-d70e4-eb167',NULL,'2022-09-13 23:42:57','2022-09-13 23:42:57','0',NULL,NULL),(58,241283,12577,0,0,'niteshranjan1992@gmail.com','1',0,'0','9691557224','Nitesh','Ranjan','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-14','0','1','5fab4-08094-b457e-34cad',NULL,'2022-09-14 14:39:12','2022-09-14 14:39:12','0',NULL,NULL),(59,241372,12577,0,0,'udaynandu2605@gmail.com','1',0,'0','9819119819','Uday','Nandu','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-14','0','1','939ae-6eaf6-45294-42650',NULL,'2022-09-14 15:58:17','2022-09-14 15:58:17','0',NULL,NULL),(60,241617,12577,0,0,'jijoekn@gmail.com','1',0,'0','8590364326','Thomas ','Jijo','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-15','0','1','65750-0d4ed-ad54a-0c703',NULL,'2022-09-15 02:26:06','2022-09-15 02:26:06','0',NULL,NULL),(61,243296,12577,0,0,'shoumo_gh@yahoo.com','1',0,'0','9833484620','Saumya ','Ghosh ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-17','0','1','515f9-9e2dc-fd925-03b9c',NULL,'2022-09-17 21:33:50','2022-09-17 21:33:50','0',NULL,NULL),(62,250443,12577,0,0,'amkhan5525@gmail.com','1',0,'0','8794444262','Amir','Khan','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-02','0','1','d40a6-aa15e-2d378-bdf46',NULL,'2022-10-02 15:44:26','2022-10-02 15:44:26','0',NULL,NULL),(63,271986,12577,0,0,'sagarpentadmd@gmail.com','1',0,'0','9850419423','Sagar','Penta','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-31','0','1','1ed3c-e0ff5-6869a-3d8d2',NULL,'2022-10-31 15:30:47','2022-10-31 15:30:47','0',NULL,NULL),(64,281860,12577,0,0,'souravchhabra546@gmail.com','3',0,'0','7777053337','Pooja','Sharma','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-17','0','1','3da02-01be0-16999-3c6cd',NULL,'2022-11-17 04:14:39','2022-11-17 04:14:39','0',NULL,NULL),(65,289966,12577,0,0,'bhavindelink@yahoo.co.in','1',0,'0','9930407978','Bhavin','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-29','0','1','c78b3-4f8b9-7408f-2e465',NULL,'2022-11-29 22:06:36','2022-11-29 22:06:36','0',NULL,NULL),(66,374281,12577,0,0,'Shahidmgm07@gmail.com','1',0,'0','7515895182','Shahid ','Ahmad ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-04-15','0','1','a02eb-7af4c-a1d25-6fffe',NULL,'2023-04-15 13:29:58','2023-04-15 13:29:58','0',NULL,NULL),(67,205552,12577,0,0,'kumar.saujanya@gmail.com','1',0,'0','9699883388','SAUJANYA ','KUMAR','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-04-18','0','1','53b3f-d49b9-326ca-4e88f',NULL,'2023-04-18 12:56:11','2023-04-18 12:56:11','0',NULL,NULL),(68,378843,12577,0,0,'ajaykhatri@svezz.com','1',0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-04-21','0','1','8125e-f2ed6-81244-2d927',NULL,'2023-04-21 13:07:38','2023-04-21 13:07:38','0',NULL,NULL),(69,193691,12577,0,0,'ajaykhatri8786@gmail.com','1',0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-05-13','0','1','4d600-05ae5-ffda4-59d8e',NULL,'2023-05-13 09:28:57','2023-05-13 09:28:57','0',NULL,NULL),(70,411891,12577,0,0,'bansi.gohil47@gmail.com','3',0,'0','08980257320','BANSI','GOHEL','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-06-03','0','1','1375e-3ad5d-14710-ec78a',NULL,'2023-06-03 10:45:06','2023-06-03 10:45:06','0',NULL,NULL);
/*!40000 ALTER TABLE `tbl_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_customer_member`
--

DROP TABLE IF EXISTS `tbl_customer_member`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_customer_member` (
  `CustomerMemberSysId` int unsigned NOT NULL AUTO_INCREMENT,
  `CustomerSysId` int NOT NULL COMMENT 'tbl_customer reference primary id',
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `MasterAgencySysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` varchar(100) NOT NULL DEFAULT '0',
  `Gender_Id` tinyint NOT NULL DEFAULT '0',
  `Relation` varchar(255) DEFAULT NULL,
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) NOT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `IsPswExpire` int NOT NULL DEFAULT '0',
  `CreatedByUserSysId` int NOT NULL DEFAULT '0',
  `DOB` date DEFAULT NULL,
  `PassportNo` varchar(100) DEFAULT NULL,
  `PassportNation` varchar(50) DEFAULT NULL,
  `PassportExpiry` date DEFAULT NULL,
  `passporIssue` date DEFAULT NULL,
  `Address` varchar(200) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `CityTitle` varchar(100) DEFAULT NULL,
  `CitySysId` varchar(255) DEFAULT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `StateOrZoneSysId` int NOT NULL DEFAULT '0',
  `CountrySysId` varchar(255) DEFAULT NULL,
  `countryName` varchar(150) DEFAULT NULL,
  `countryCode` varchar(50) DEFAULT NULL,
  `panno` varchar(100) DEFAULT NULL,
  `companyname` varchar(100) DEFAULT NULL,
  `gstnnumber` varchar(100) DEFAULT NULL,
  `gstaddress` varchar(250) DEFAULT NULL,
  `gstcity` varchar(100) DEFAULT NULL,
  `gststate` varchar(100) DEFAULT NULL,
  `gstpincode` varchar(10) DEFAULT NULL,
  `RegisterDate` date DEFAULT NULL,
  `IsApproved` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `apiTraceId` varchar(200) DEFAULT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`CustomerMemberSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_customer_member`
--

LOCK TABLES `tbl_customer_member` WRITE;
/*!40000 ALTER TABLE `tbl_customer_member` DISABLE KEYS */;
INSERT INTO `tbl_customer_member` VALUES (3,11,214170,12577,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-07','0','1','fb658-42ab6-b967a-b9b8a',NULL,'2022-07-07 18:18:49','2022-07-07 18:18:49','0'),(4,11,214170,12577,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-07','0','1','00bce-5e0c2-fd03b-044ae',NULL,'2022-07-07 19:41:35','2022-07-07 19:41:35','0'),(5,14,202990,12577,0,'mybharatyatra@gmail.com','2',0,'0','9560102821','NAMRATA','NIGAM','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-08','0','1','450ac-ecfe5-ad96d-731bf',NULL,'2022-07-08 19:46:35','2022-07-08 19:46:35','0'),(6,11,214170,12577,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','Param Karmanya','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-08','0','1','3836b-a0cde-49fcb-94bab',NULL,'2022-07-08 19:55:04','2022-07-08 19:55:04','0'),(7,11,214170,12577,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','Param Karmanya','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-08','0','1','d0abb-2f7e4-5fef2-ada57',NULL,'2022-07-08 19:56:36','2022-07-08 19:56:36','0'),(8,11,214170,12577,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-11','0','1','5b7cc-276fc-0a05c-a8aa8',NULL,'2022-07-11 12:04:32','2022-07-11 12:04:32','0'),(12,16,216129,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','ritu','kannojia','',0,12577,'1960-06-27','86556986465498789','IN','2023-03-21','2018-07-20','','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','40604-91975-b03f5-43aca',NULL,'2022-07-13 12:16:35','2022-07-13 18:27:07','0'),(13,16,0,12577,0,'nehakumari@catpl.co.in','3',0,'0','8923963627','kirti','kannojia','',0,12577,'1955-07-28','5645645646545','IN','2023-03-21','2018-07-20','','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','40604-91975-b03f5-43aca',NULL,'2022-07-13 12:16:35','2022-07-13 18:27:07','0'),(14,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','niya','kannojia','',0,12577,'2010-08-18','8756434684556','IN','2023-03-21','2018-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','40604-91975-b03f5-43aca',NULL,'2022-07-13 12:16:35','2022-07-13 18:27:07','0'),(15,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','niti','kannojia','',0,12577,'2013-08-09','897564545678456','IN','2023-03-21','2018-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','40604-91975-b03f5-43aca',NULL,'2022-07-13 12:16:35','2022-07-13 18:27:07','0'),(21,16,216129,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','pyal','kannojia','',0,12577,'2013-07-11','86556986465498789','IN','2023-03-21','2019-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','62a50-3fce4-41b48-07129',NULL,'2022-07-13 12:28:53','2022-07-13 16:40:09','0'),(22,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','chiya','kannojia','',0,12577,'2015-07-10','9856646864545648','IN','2023-03-21','2019-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','62a50-3fce4-41b48-07129',NULL,'2022-07-13 12:28:53','2022-07-13 16:40:09','0'),(23,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','piya','kannojia','',0,12577,'2016-07-12','8756434684556','IN','2023-03-21','2020-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','62a50-3fce4-41b48-07129',NULL,'2022-07-13 12:28:53','2022-07-13 16:40:09','0'),(24,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','niti','kannojia','',0,12577,'2012-07-11','897564545678456','IN','2023-03-21','2012-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','62a50-3fce4-41b48-07129',NULL,'2022-07-13 12:28:53','2022-07-13 12:28:53','0'),(25,16,216129,12577,0,'nehakumari@catpl.co.in','3',0,'0','8923963627','neha','kannojia','',0,12577,'1982-07-29','86556986465498789','IN','2023-03-21','2019-07-20','','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','6812b-610e4-a3fa5-b8a93',NULL,'2022-07-13 12:46:44','2022-07-13 12:46:44','0'),(26,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','nehu','kannojia','',0,12577,NULL,'2548784548789746','IN','2023-03-21','2019-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','6812b-610e4-a3fa5-b8a93',NULL,'2022-07-13 12:46:44','2022-07-13 15:37:43','0'),(27,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','rishi','kannojia','',0,12577,'2021-08-02','8756434684556','IN','2024-07-21','2019-07-20','','0','0',3,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','6812b-610e4-a3fa5-b8a93',NULL,'2022-07-13 12:46:44','2022-07-13 16:40:09','0'),(28,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','niti','kannojia','',0,12577,'2016-07-15','897564545678456','IN','2024-03-21','2018-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','6812b-610e4-a3fa5-b8a93',NULL,'2022-07-13 12:46:44','2022-07-13 12:46:44','0'),(29,16,0,12577,0,'nehakumari@catpl.co.in','1',0,'0','8923963627','niya','kannojia','',0,12577,'2017-07-15','35487854878548','IN','2023-03-21','2019-07-20','','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','6812b-610e4-a3fa5-b8a93',NULL,'2022-07-13 12:46:44','2022-07-13 12:46:44','0'),(30,17,214169,12577,0,'komal@hellogtx.com','2',0,'0','8595077740','Komal','Malhotra','',0,12577,'1947-07-26','test','IN','2022-07-26','2022-07-23','','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','cee11-d017b-ef198-24085',NULL,'2022-07-13 17:28:19','2022-07-13 17:28:19','0'),(31,17,214169,12577,0,'komal@hellogtx.com','2',0,'0','8595077740','Komal','Malhotra','',0,12577,NULL,'test','IN','2022-07-31','2022-07-03','','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','b677e-9fcd6-f6662-d3604',NULL,'2022-07-13 17:31:48','2022-07-13 17:31:48','0'),(32,13,205552,12577,0,'kumar.saujanya@gmail.com','1',0,'0','9699883388','Saujanya ','Kumar ','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-13','0','1','779d8-25bad-dc37a-ceb6b',NULL,'2022-07-13 21:10:21','2022-07-13 21:10:21','0'),(35,22,0,12577,0,'mpiboxes@gmail.com','2',0,'0','9820918128','Darshna','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-19','0','1','c8622-16314-94fb7-65f98',NULL,'2022-07-19 12:14:24','2022-07-19 12:14:24','0'),(36,22,0,12577,0,'mpiboxes@gmail.com','1',0,'0','9820918128','Ditya','Gori','',0,12577,'2021-05-08',NULL,NULL,NULL,NULL,'','0','0',3,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-19','0','1','c8622-16314-94fb7-65f98',NULL,'2022-07-19 12:14:24','2022-07-19 12:14:24','0'),(37,24,0,12577,0,'helppower@gmail.com','2',0,'0','9768860440','sabhanaz  mohamad s','shiekh','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-14','0','1','5e392-46cec-16db0-d700b',NULL,'2022-07-20 13:04:04','2022-08-14 11:29:49','0'),(38,24,0,12577,0,'bharatbhanushali21@gmail.com','1',0,'0','8422931095','bhavya','bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-20','0','1','5e392-46cec-16db0-d700b',NULL,'2022-07-20 13:04:04','2022-07-20 13:04:04','0'),(39,26,217861,12577,0,'bharat@svezz.com','1',0,'0','9930301095','RAJKUMAR','VARMA','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-20','0','1','f0372-a1b0e-2a7df-12fb0',NULL,'2022-07-20 15:03:47','2022-07-20 15:03:47','0'),(40,11,214170,12577,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','AJAY','KHATRI','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-06','0','1','30541-221d9-5639f-e75bb',NULL,'2022-08-06 16:38:15','2022-08-06 16:38:15','0'),(44,37,224506,12577,0,'helppower@gmail.com','1',0,'0','9768860440','lokhandwala moiz','shabbir','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-14','0','1','abca5-ec992-96bf6-934fe',NULL,'2022-08-14 11:29:49','2022-08-14 11:29:49','0'),(45,37,224506,12577,0,'helppower@gmail.com','1',0,'0','9768860440','NADEEM FEROZ','KHAN','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-15','0','1','644e6-ef528-65f97-09b86',NULL,'2022-08-15 12:02:58','2022-08-15 12:02:58','0'),(46,40,226511,12577,0,'narwalveer@gmail.com','1',0,'0','8307741492','Karmveer','Karmveer','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-18','0','1','89d33-0b3e4-09b94-2c6ca',NULL,'2022-08-18 13:34:22','2022-08-18 13:34:22','0'),(47,44,0,12577,0,'m.s.samania@gmail.com','2',0,'0','83778144563','megha','pagade','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-19','0','1','4d243-0055d-55299-aa194',NULL,'2022-08-19 10:25:51','2022-08-19 10:25:51','0'),(48,4,208753,12577,0,'amith.c.shetty@gmail.com','1',0,'0','8105807501','AMITH','C SHETTY','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-21','0','1','ababa-8b8bd-b98e8-bd1c9',NULL,'2022-08-21 10:00:16','2022-08-21 10:00:16','0'),(49,30,223018,12577,0,'nikhil.dugar@outlook.com','1',0,'0','9783576789','Narendra kumar','Dugar','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-22','0','1','9354e-06eb7-177ad-3d2f2',NULL,'2022-08-22 06:39:36','2022-08-22 06:39:36','0'),(50,47,0,12577,0,'das2techconsultancy@gmail.com','1',0,'0','7085589052','Amir','Khan','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-25','0','1','2271d-51f78-4f9da-b9ae6',NULL,'2022-08-25 21:16:13','2022-08-25 21:16:13','0'),(51,11,214170,12577,0,'AJAYKHATRI5775@GMAIL.COM','1',0,'0','9829015180','AJAY ','KHATRI','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-30','0','1','906a0-a203e-b4e8d-20ef4',NULL,'2022-08-30 13:28:45','2022-08-30 13:28:45','0'),(52,55,236662,12577,0,'ritasriwastaw1996@gmail.com','2',0,'0','7091458187','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-07','0','1','da6b1-a9d9e-d1b70-52911',NULL,'2022-09-07 23:11:39','2022-09-07 23:11:39','0'),(53,55,236662,12577,0,'ritasriwastaw1996@gmail.com','3',0,'0','7091458187','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-07','0','1','a9ad5-a8f3b-b551c-bed5c',NULL,'2022-09-07 23:24:41','2022-09-07 23:24:41','0'),(54,55,236662,12577,0,'ritasriwastaw1996@gmail.com','3',0,'0','7091458187','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-08','0','1','6740c-5fc64-868ab-54c1a',NULL,'2022-09-08 00:21:32','2022-09-08 00:21:32','0'),(55,52,230824,12577,0,'itskamalraja@gmail.com','3',0,'0','9091776621','Rani','Begun','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-08','0','1','ceb01-1c8ff-5b7e3-635bd',NULL,'2022-09-08 23:52:42','2022-09-08 23:52:42','0'),(56,58,0,12577,0,'niteshranjan1992@gmail.com','2',0,'0','9691557224','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-14','0','1','5fab4-08094-b457e-34cad',NULL,'2022-09-14 14:39:12','2022-09-14 14:39:12','0'),(57,59,241372,12577,0,'udaynandu2605@gmail.com','1',0,'0','9819119819','Uday ','Nandu','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-14','0','1','eeeb5-8818d-c5af2-20656',NULL,'2022-09-14 16:23:59','2022-09-14 16:23:59','0'),(58,59,241372,12577,0,'udaynandu2605@gmail.com','1',0,'0','9819119819','Uday','Nandu','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-14','0','1','a85a2-bb5a5-f28a7-5eb72',NULL,'2022-09-14 16:54:21','2022-09-14 16:54:21','0'),(59,59,241372,12577,0,'udaynandu2605@gmail.com','1',0,'0','9819119819','Vilesh','Thakkar','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-14','0','1','85831-7301b-0c518-baedd',NULL,'2022-09-14 16:57:50','2022-09-14 16:57:50','0'),(60,59,0,12577,0,'udaynandu2605@gmail.com','1',0,'0','9819119819','Uday','Nandu','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-14','0','1','85831-7301b-0c518-baedd',NULL,'2022-09-14 16:57:50','2022-09-14 16:57:50','0'),(61,47,229600,12577,0,'das2techconsultancy@gmail.com','1',0,'0','7085589052','RAJU','DAS','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-16','0','1','d07b8-f08d5-9102d-5cb60',NULL,'2022-09-16 09:02:11','2022-09-16 09:02:11','0'),(62,47,0,12577,0,'das2techconsultancy@gmail.com','1',0,'0','7085589052','AMIR','KHAN','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-16','0','1','d07b8-f08d5-9102d-5cb60',NULL,'2022-09-16 09:02:11','2022-09-16 09:02:11','0'),(63,11,0,12577,0,'ajaykhatri5775@gmail.com','1',0,'0','9829015180','AJAY','KHATRI','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-17','0','1','fab5e-fc7b1-cc788-883c8',NULL,'2022-09-17 14:06:42','2022-09-17 14:06:42','0'),(64,47,0,12577,0,'das2techconsultancy@gmail.com','1',0,'0','7085589052','RAJU','DAS','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-20','0','1','a9f4b-c6b6f-3fef5-8f0b1',NULL,'2022-09-20 09:09:29','2022-09-20 09:09:29','0'),(65,47,0,12577,0,'das2techconsultancy@gmail.com','1',0,'0','7085589052','AMIR','KHAN','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-20','0','1','a9f4b-c6b6f-3fef5-8f0b1',NULL,'2022-09-20 09:09:29','2022-09-20 09:09:29','0'),(66,20,0,12728,0,'komalmalhotra0101@gmail.com','1',0,'9','9999977655','neha','kannojia',NULL,0,12728,NULL,NULL,NULL,NULL,NULL,'sec 15','Noida','19543',1,0,'101',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-10','0','1','eae89-677b0-2b5c2-a45d7',NULL,'2022-10-07 16:48:54','2022-10-10 17:03:13','0'),(67,63,0,12577,0,'sagarpentadmd@gmail.com','3',0,'0','9850419423','Sayali','Akula','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-31','0','1','1ed3c-e0ff5-6869a-3d8d2',NULL,'2022-10-31 15:30:47','2022-10-31 15:30:47','0'),(68,17,0,12577,0,'komal@hellogtx.com','3',0,'1','8595077740','Komal','test','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-01','0','1','c5192-82d19-619f3-f8333',NULL,'2022-11-01 11:57:38','2022-11-01 11:57:38','0'),(71,52,0,12577,0,'itskamalraja@gmail.com','1',0,'1','9091776621','ABID MOHMMAD ','HASRUDDIN ','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-09','0','1','52157-3174b-d7111-555ae',NULL,'2022-11-09 23:39:01','2022-11-09 23:39:01','0'),(72,52,0,12577,0,'itskamalraja@gmail.com','2',0,'1','9091776621','PARVIN ','KHATUN','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-09','0','1','6eb3e-e4977-74dfb-4c520',NULL,'2022-11-09 23:43:51','2022-11-09 23:43:51','0'),(73,52,0,12577,0,'itskamalraja@gmail.com','2',0,'1','9091776621','PARVIN ','KHATUN','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-09','0','1','c58b8-59449-13c3c-eeff3',NULL,'2022-11-09 23:48:00','2022-11-09 23:48:00','0'),(74,65,0,12577,0,'bhavindelink@yahoo.co.in','1',0,'1','9930407978','Bhavin','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-29','0','1','9b30e-d3aa9-5a329-8297f',NULL,'2022-11-29 22:09:11','2022-11-29 22:09:11','0'),(75,65,0,12577,0,'bhavindelink@yahoo.co.in','2',0,'0','9930407978','Pooja','Thakkar','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-29','0','1','9b30e-d3aa9-5a329-8297f',NULL,'2022-11-29 22:09:11','2022-11-29 22:09:11','0'),(76,65,0,12577,0,'bhavindelink@yahoo.co.in','2',0,'9','9930407978','Meevan ','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',2,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-29','0','1','9b30e-d3aa9-5a329-8297f',NULL,'2022-11-29 22:09:11','2022-11-29 22:09:11','0'),(77,66,0,12577,0,'Shahidmgm07@gmail.com','1',0,'1','7515895182','Shahid ','Ahmad ','',0,12577,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0',NULL,'91',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-04-16','0','1','ba08d-c2c68-8eff0-e0d0e',NULL,'2023-04-16 15:06:48','2023-04-16 15:06:48','0');
/*!40000 ALTER TABLE `tbl_customer_member` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_enquiry`
--

DROP TABLE IF EXISTS `tbl_enquiry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_enquiry` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `name` varchar(16) NOT NULL,
  `email` varchar(32) NOT NULL,
  `phone` varchar(15) NOT NULL,
  `date` varchar(64) NOT NULL,
  `message` text NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_enquiry`
--

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

--
-- Table structure for table `tbl_events`
--

DROP TABLE IF EXISTS `tbl_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_events` (
  `id` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(500) NOT NULL,
  `fromDate` datetime NOT NULL,
  `toDate` datetime NOT NULL,
  `description` text NOT NULL,
  `venue` varchar(256) NOT NULL,
  `city` varchar(256) NOT NULL,
  `state` varchar(256) NOT NULL,
  `country` varchar(256) NOT NULL,
  `images` text NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `mainImage` varchar(256) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_events`
--

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

--
-- Table structure for table `tbl_explore_icon`
--

DROP TABLE IF EXISTS `tbl_explore_icon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_explore_icon` (
  `id` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(255) NOT NULL,
  `label` varchar(255) NOT NULL,
  `Icon` varchar(255) NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `destination` varchar(500) NOT NULL,
  `exploreImage1` varchar(255) NOT NULL,
  `exploreImage2` varchar(255) NOT NULL,
  `exploreImage3` varchar(255) NOT NULL,
  `exploreImage4` varchar(255) NOT NULL,
  `exploreImage5` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_explore_icon`
--

LOCK TABLES `tbl_explore_icon` WRITE;
/*!40000 ALTER TABLE `tbl_explore_icon` DISABLE KEYS */;
INSERT INTO `tbl_explore_icon` VALUES (17,'Adventure','','1582539303.jpg',1,'[\"56\",\"34\",\"31\",\"4\"]','1577959958.jpg','1577958147.jpg','1577964495.jpg','1577965002.jpg','1577965204.jpg'),(18,'Group Tours','','1582549345.jpg',1,'[\"77\",\"76\",\"75\",\"74\",\"73\",\"71\",\"70\",\"44\",\"43\"]','1577183534.jpg','','','1577183598.jpg',''),(19,'Leisure','','1575447286.png',1,'[\"106\",\"97\",\"87\",\"76\"]','1577183781.jpg','','1577183731.jpg','','1577183827.jpg'),(20,'Honeymoon','','1575447160.png',1,'[\"122\",\"85\",\"55\",\"50\"]','1577183476.jpg','','','1577183500.jpg',''),(21,'Family','','1575447106.png',1,'[\"165\",\"72\",\"62\",\"5\"]','','','','','1577183444.jpg'),(22,'Beach','','1582539114.jpg',1,'[\"121\",\"90\",\"67\",\"18\"]','1577183343.jpg','','','',''),(23,'Weekend','','1575447218.png',1,'[\"168\",\"167\",\"166\",\"164\",\"163\",\"162\",\"157\"]','1577183649.jpg','','','','1577183673.jpg');
/*!40000 ALTER TABLE `tbl_explore_icon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_feedback`
--

DROP TABLE IF EXISTS `tbl_feedback`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_feedback` (
  `FeedbackId` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `GtxRefId` int NOT NULL,
  `AgentSysId` int DEFAULT NULL,
  `Salutation` int DEFAULT NULL,
  `Name` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `EmailId` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `CountryCode` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `MobileNo` varchar(50) DEFAULT NULL,
  `Destination` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `DestinationId` int DEFAULT NULL,
  `TravelMonth` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `ReviewStarValue` int DEFAULT NULL,
  `ReviewTitle` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `Review` longtext CHARACTER SET utf32 COLLATE utf32_swedish_ci,
  `TripImage` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `displayOnHome` enum('1','0') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '0',
  `isActive` enum('1','0') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '1',
  `isMarkForDel` enum('1','0') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '0',
  PRIMARY KEY (`FeedbackId`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_feedback`
--

LOCK TABLES `tbl_feedback` WRITE;
/*!40000 ALTER TABLE `tbl_feedback` DISABLE KEYS */;
INSERT INTO `tbl_feedback` VALUES (5,12577,1088,0,1,'Rohit  Aggarwal','rohit.aggarwal@gmail.com','+91','9876435625','',0,'',5,'Awesome Experience','Many thanks for organizing such a wonderful tour for us.','','1','1','0');
/*!40000 ALTER TABLE `tbl_feedback` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_festival`
--

DROP TABLE IF EXISTS `tbl_festival`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_festival` (
  `sid` int unsigned NOT NULL AUTO_INCREMENT,
  `page_title` varchar(255) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `page_description` longtext NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_keywords` varchar(255) NOT NULL,
  `meta_description` text NOT NULL,
  `background_image` varchar(50) NOT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  `map_destination` varchar(256) NOT NULL,
  `map_destination_id` varchar(256) NOT NULL,
  `selectedPackages` text NOT NULL,
  PRIMARY KEY (`sid`),
  KEY `parentId` (`sid`),
  KEY `headerDisplay` (`status`),
  KEY `parentIde` (`status`),
  KEY `parentIdother` (`sid`,`status`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_festival`
--

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

--
-- Table structure for table `tbl_flight`
--

DROP TABLE IF EXISTS `tbl_flight`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight` (
  `aboutId` int NOT NULL AUTO_INCREMENT,
  `label` varchar(255) NOT NULL,
  `city_json` text NOT NULL,
  `order_by` int NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`aboutId`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight`
--

LOCK TABLES `tbl_flight` WRITE;
/*!40000 ALTER TABLE `tbl_flight` DISABLE KEYS */;
INSERT INTO `tbl_flight` VALUES (1,'Delhi(DEL)','{\"AirportCode\":\"DEL\",\"CityID\":7701,\"ContSysId\":101,\"ICAO\":\"DEL\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Delhi\",\"ContName\":\"India\",\"label\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"labelWithSynonyms\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India, DELHI\",\"value\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"}',1,1,0,'1'),(2,'Mumbai(BOM)','{\"AirportCode\":\"BOM\",\"CityID\":18676,\"ContSysId\":101,\"ICAO\":\"BOM\",\"CountryCode\":\"IN\",\"DO\":0,\"cn\":\"Mumbai\",\"ContName\":\"India\",\"label\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"labelWithSynonyms\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India, \",\"value\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"}',2,1,0,'1');
/*!40000 ALTER TABLE `tbl_flight` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_flight_airport_code`
--

DROP TABLE IF EXISTS `tbl_flight_airport_code`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight_airport_code` (
  `AirId` int NOT NULL AUTO_INCREMENT,
  `CountryCode` varchar(256) NOT NULL,
  `AirportCode` varchar(256) NOT NULL,
  `CityID` int NOT NULL,
  `ContSysId` int NOT NULL,
  `AirportName` varchar(256) NOT NULL,
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`AirId`)
) ENGINE=InnoDB AUTO_INCREMENT=4294 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight_airport_code`
--

LOCK TABLES `tbl_flight_airport_code` WRITE;
/*!40000 ALTER TABLE `tbl_flight_airport_code` DISABLE KEYS */;
INSERT INTO `tbl_flight_airport_code` VALUES (1,'','ZMH',6,39,'108 Mile Ranch, South Cariboo Regional Airport (ZMH)','1','0'),(2,'','AAH',19,83,'Aachen, Merzbrück Airport (AAH)','1','0'),(3,'DK','AAL',21,59,'Aalborg, DK - Aalborg Airport (AAL)','1','0'),(4,'NO','AES',24,164,'Aalesund, NO - Alesund Airport Vigra (AES)','1','0'),(5,'DK','AAR',31,59,'Aarhus, DK - Aarhus Airport (AAR)','1','0'),(6,'','ABF',36,114,'Abaiang, Abaiang Atoll Airport (ABF)','1','0'),(7,'RU','ABA',37,181,'Abakan, RU - Abakan Intl Airport (ABA)','1','0'),(8,'FR','XAB',47,76,'Abbeville, FR - Abbeville - Buigny-Saint-Maclou (XAB)','1','0'),(9,'CA','YXX',54,39,'Abbotsford, CA - Abbotsford Intl Airport (YXX)','1','0'),(10,'','AEA',62,114,'Abemama, Abemama Atoll Airport (AEA)','1','0'),(11,'US','ABR',68,231,'Aberdeen, US - Aberdeen Regional Airport (ABR)','1','0'),(12,'GB','ABZ',69,482,'Aberdeen, GB - Dyce Airport (ABZ)','1','0'),(13,'SA','AHB',86,186,'Abha, SA - Abha Airport (AHB)','1','0'),(14,'US','ABI',87,231,'Abilene, US - Abilene Regional Airport (ABI)','1','0'),(15,'AE','AAN',105,228,'Abu Dhabi, AE - Al Ain Airport (AAN)','1','0'),(16,'AE','AUH',105,228,'Abu Dhabi, AE - Abu Dhabi Intl Airport (AUH)','1','0'),(17,'AE','AZI',105,228,'Abu Dhabi, AE - Bateen Airport (AZI)','1','0'),(18,'AE','DHF',105,228,'Abu Dhabi, AE - Al Dhafra (DHF)','1','0'),(19,'AE','ZVJ',105,228,'Abu Dhabi, AE - Abu Dhabi Bus Station Airport (ZVJ)','1','0'),(20,'EG','ABS',106,65,'Abu Simbel, EG - Abu Simbel Airport (ABS)','1','0'),(21,'NG','ABV',107,160,'Abuja, NG - Abuja Intl Airport (ABV)','1','0'),(22,'','ACD',112,49,'Acandi, Alcides Fernández Airport (ACD)','1','0'),(23,'MX','ACA',113,141,'Acapulco, MX - Gen Juan N. Alvarez Intl Airport (ACA)','1','0'),(24,'','AGV',114,235,'Acarigua, Oswaldo Guevara Mujica Airport (AGV)','1','0'),(25,'GH','ACC',119,84,'Accra, GH - Kotoka Airport (ACC)','1','0'),(26,'','ADT',158,231,'Ada, Ada Municipal Airport (ADT)','1','0'),(27,'US','ADK',161,231,'Adak Island, US - Adak Island Airport (ADK)','1','0'),(28,'TR','ADA',168,222,'Adana, TR - Adana Airport (ADA)','1','0'),(29,'','UAB',168,222,'Adana, Incirlik Air Base (UAB)','1','0'),(30,'ET','ADD',172,70,'Addis Ababa, ET - Bole Intl Airport (ADD)','1','0'),(31,'US','ADS',173,231,'Addison, US - Addison Airport (ADS)','1','0'),(32,'AU','ADL',179,13,'Adelaide, AU - Adelaide Airport (ADL)','1','0'),(33,'YE','ADE',189,240,'Aden, YE - Aden Intl Airport (ADE)','1','0'),(34,'TR','ADF',194,222,'Adiyaman, TR - Adiyaman Airport (ADF)','1','0'),(35,'DZ','AZR',201,3,'Adrar, DZ - Touat Cheikh Sidi Mohamed Belkebir Airport (AZR)','1','0'),(36,'','AFO',221,231,'Afton, Afton Municipal Airport (AFO)','1','0'),(37,'','NRI',221,231,'Afton, Grand Lake Regional Airport (NRI)','1','0'),(38,'TR','AFY',222,222,'Afyon, TR - Afyon (AFY)','1','0'),(39,'MA','AGA',225,148,'Agadir, MA - Al Massira Airport (AGA)','1','0'),(40,'IN','IXA',229,101,'Agartala, IN - Agartala Airport (IXA)','1','0'),(41,'FR','AGF',240,76,'Agen, FR - La Garenne Airport (AGF)','1','0'),(42,'','AGZ',244,195,'Aggeneys, Aggeneys Airport (AGZ)','1','0'),(43,'IN','AGR',266,101,'Agra, IN - Agra Airport (AGR)','1','0'),(44,'TR','AJI',269,222,'Agri, TR - Agri Airport (AJI)','1','0'),(45,'GR','AGQ',272,86,'Agrinio, GR - Agrinion (AGQ)','1','0'),(46,'PR','BQN',279,176,'Aguadilla, PR - Rafael Hernandez Airport (BQN)','1','0'),(47,'MX','AGU',285,141,'Aguascalientes, MX - Lic. Jesus Teran Peredo Intl Airport (AGU)','1','0'),(48,'JP','AGJ',290,110,'Aguni, JP - Aguni Airport (AGJ)','1','0'),(49,'IN','AMD',296,101,'Ahmedabad, IN - Ahmedabad Airport (AMD)','1','0'),(50,'US','AIK',323,231,'Aiken, US - Aiken Municipal (AIK)','1','0'),(51,'','AIM',325,136,'Ailuk, Ailuk Airport (AIM)','1','0'),(52,'','ANW',336,231,'Ainsworth, Ainsworth Regional Airport (ANW)','1','0'),(53,'CK','AIT',354,53,'Aitutaki, CK - Aitutaki Airport (AIT)','1','0'),(54,'FR','QXB',356,76,'Aix-en-provence, FR - Aix-En-Provence Airport (QXB)','1','0'),(55,'IN','AJL',360,101,'Aizawl, IN - Lengpui Airport (AJL)','1','0'),(56,'FR','AJA',363,76,'Ajaccio, FR - Campo Dell Oro Airport (AJA)','1','0'),(57,'US','AKK',382,231,'Akhiok, US - Akhiok Airport (AKK)','1','0'),(58,'US','KKI',385,231,'Akiachak, US - Akiachak Airport (KKI)','1','0'),(59,'US','AKI',386,231,'Akiak, US - Akiak Airport (AKI)','1','0'),(60,'','AKE',387,80,'Akieni, Akieni Airport (AKE)','1','0'),(61,'JP','AXT',390,110,'Akita, JP - Akita Airport (AXT)','1','0'),(62,'CA','LAK',396,39,'Aklavik, CA - Freddie Carmichael Airport (LAK)','1','0'),(63,'','AKD',34309,101,'Akola, Akola Airport (AKD)','1','0'),(64,'','AKC',399,231,'Akron, Akron Fulton International Airport (AKC)','1','0'),(65,'','AKO',399,231,'Akron, Colorado Plains Regional Airport (AKO)','1','0'),(66,'CN','AKU',403,46,'Aksu, CN - Aksu Airport (AKU)','1','0'),(67,'KZ','SCO',404,112,'Aktau, KZ - Aktau Airport (SCO)','1','0'),(68,'KZ','AKX',405,112,'Aktobe, KZ - Aktobe Airport (AKX)','1','0'),(69,'CA','AKV',406,39,'Akulivik, CA - Akulivik Airport (AKV)','1','0'),(70,'IS','AEY',408,100,'Akureyri, IS - Akureyri Airport (AEY)','1','0'),(71,'US','KQA',409,231,'Akutan, US - Akutan Airport (KQA)','1','0'),(72,'JO','AQJ',413,111,'Al Aqaba, JO - Aqaba Airport (AQJ)','1','0'),(73,'EG','AAC',415,65,'Al Arish, EG - Al Arish Airport (AAC)','1','0'),(74,'YE','AAY',416,240,'Al Ghaydah, YE - Al Ghaydah Airport (AAY)','1','0'),(75,'MA','AHU',417,148,'Al Hoceima, MA - Al Hoceima Airport (AHU)','1','0'),(76,'US','AUK',426,231,'Alakanuk, US - Alakanuk Airport (AUK)','1','0'),(77,'US','ALM',429,231,'Alamogordo, US - White Sands Regional Airport (ALM)','1','0'),(78,'','XAL',430,141,'Alamos, Álamos Airport (XAL)','1','0'),(79,'US','ALS',431,231,'Alamosa, US - San Luis Valley Regional Airport/Bergman Field (ALS)','1','0'),(80,'ES','ABC',448,199,'Albacete, ES - Albacete Airport (ABC)','1','0'),(81,'SA','ABT',449,186,'Al-baha, SA - Al-Aqiq Airport (ABT)','1','0'),(82,'US','ABY',453,231,'Albany, US - Southwest Georgia Regional Airport (ABY)','1','0'),(83,'US','ALB',453,231,'Albany, US - Albany Intl Airport (ALB)','1','0'),(84,'AU','ALH',454,13,'Albany, AU - Albany Airport (ALH)','1','0'),(85,'IT','ALL',465,107,'Albenga, IT - Clemente Panero Intl Airport (ALL)','1','0'),(86,'','BYF',473,76,'Albert, Albert – Picardie Airport (BYF)','1','0'),(87,'US','AEL',474,231,'Albert Lea, US - Albert Lea Municipal (AEL)','1','0'),(88,'FR','LBI',484,76,'Albi, FR - Le Sequestre (LBI)','1','0'),(89,'','BUK',501,240,'Albuq, Albuq Airport (BUK)','1','0'),(90,'US','ABQ',502,231,'Albuquerque, US - Albuquerque Intl Sunport Airport (ABQ)','1','0'),(91,'AU','ABX',504,13,'Albury, AU - Albury Airport (ABX)','1','0'),(92,'GB','ACI',540,482,'Alderney, GB - Alderney Airport (ACI)','1','0'),(93,'US','WKK',551,231,'Aleknagik, US - Aleknagik Airport (WKK)','1','0'),(94,'','ALT',556,175,'Alenquer, Alenquer Airport (ALT)','1','0'),(95,'SY','ALP',559,211,'Aleppo, SY - Nejrab Airport (ALP)','1','0'),(96,'','YAL',561,39,'Alert Bay, Alert Bay Airport (YAL)','1','0'),(97,'','ALJ',567,195,'Alexander Bay, Alexander Bay Airport (ALJ)','1','0'),(98,'NZ','ALR',571,157,'Alexandra, NZ - Alexandra (ALR)','1','0'),(99,'US','AEX',572,231,'Alexandria, US - Alexandria Intl Airport (AEX)','1','0'),(100,'US','ESF',572,231,'Alexandria, US - Esler Regional (ESF)','1','0'),(101,'EG','ALY',574,65,'Alexandria, EG - Alexandria Airport (ALY)','1','0'),(102,'EG','HBE',574,65,'Alexandria, EG - Borg El Arab Airport (HBE)','1','0'),(103,'GR','AXD',576,86,'Alexandroupoli, GR - Alexandroupolis Airport (AXD)','1','0'),(104,'AE','FJR',597,228,'Al-fujairah, AE - Fujairah Intl Airport (FJR)','1','0'),(105,'IT','AHO',605,107,'Alghero, IT - Fertilia Airport (AHO)','1','0'),(106,'DZ','ALG',606,3,'Algiers, DZ - Houari Boumediene Airport (ALG)','1','0'),(107,'','AXG',610,231,'Algona, Algona Municipal Airport (AXG)','1','0'),(108,'ES','ALC',622,199,'Alicante, ES - Alicante Airport (ALC)','1','0'),(109,'US','ALI',628,231,'Alice, US - Alice International (ALI)','1','0'),(110,'AU','ASP',630,13,'Alice Springs, AU - Alice Springs Airport (ASP)','1','0'),(111,'','AIV',633,231,'Aliceville, George Downer Airport (AIV)','1','0'),(112,'US','ALZ',647,231,'Alitak, US - Alitak Seaplane Base (ALZ)','1','0'),(113,'IN','IXD',650,101,'Allahabad, IN - Allahabad Airport (IXD)','1','0'),(114,'US','AET',651,231,'Allakaket, US - Allakaket Airport (AET)','1','0'),(115,'','ADY',656,195,'Alldays, Alldays Airport (ADY)','1','0'),(116,'US','ABE',669,231,'Allentown, US - Lehigh Valley Intl Airport (ABE)','1','0'),(117,'US','AIA',681,231,'Alliance, US - Alliance Municipal Airport (AIA)','1','0'),(118,'CA','YTF',691,39,'Alma, CA - Alma Airport (YTF)','1','0'),(119,'KZ','ALA',698,112,'Almaty, KZ - Almaty Airport (ALA)','1','0'),(120,'','BXJ',698,112,'Almaty, Boraldai Airport (BXJ)','1','0'),(121,'ES','LEI',707,199,'Almeria, ES - Almeria Airport (LEI)','1','0'),(122,'','IXV',732,101,'Along, Along Airport (IXV)','1','0'),(123,'ID','ARD',736,102,'Alor, ID - Alor Island Airport (ARD)','1','0'),(124,'PG','GUR',739,170,'Alotau, PG - Gurney Airport (GUR)','1','0'),(125,'','AHZ',746,76,'Alpe D Huez, Alpe d\'Huez Airport (AHZ)','1','0'),(126,'US','APN',749,231,'Alpena, US - Alpena County Regional Airport (APN)','1','0'),(127,'','ABH',752,13,'Alpha, Alpha Airport (ABH)','1','0'),(128,'','ALE',759,231,'Alpine, Alpine–Casparis Municipal Airport (ALE)','1','0'),(129,'NO','ALF',775,164,'Alta, NO - Alta Airport (ALF)','1','0'),(130,'BR','ATM',782,30,'Altamira, BR - Altamira Airport (ATM)','1','0'),(131,'CN','AAT',790,46,'Altay, CN - Altay Airport (AAT)','1','0'),(132,'CH','ACH',801,210,'Altenrhein, CH - St. Gallen-Altenrhein Airport (ACH)','1','0'),(133,'','AWN',821,13,'Alton Downs, Alton Downs Airport (AWN)','1','0'),(134,'US','AXS',830,231,'Altus, US - Altus/Quartz Mountain Regional (AXS)','1','0'),(135,'US','LTS',830,231,'Altus, US - Altus Air Force Base (LTS)','1','0'),(136,'','AHI',868,102,'Amahai, Amahai Airport (AHI)','1','0'),(137,'','AXJ',869,110,'Amakusa, Amakusa Airfield (AXJ)','1','0'),(138,'','AFI',871,107,'Amalfi, Amalfi Airport (AFI)','1','0'),(139,'US','AMA',881,231,'Amarillo, US - Rick Husband Amarillo Intl Airport (AMA)','1','0'),(140,'MG','IVA',888,130,'Ambanja, MG - Ampapamena (IVA)','1','0'),(141,'','AMY',890,130,'Ambatomainty, Ambatomainty Airport (AMY)','1','0'),(142,'','WAM',891,130,'Ambatondrazaka, Ambatondrazaka Airport (WAM)','1','0'),(143,'BZ','SPR',893,22,'Ambergris Caye, BZ - Ambergris Cay Airport (SPR)','1','0'),(144,'US','ABL',900,231,'Ambler, US - Ambler Airport (ABL)','1','0'),(145,'ID','AMQ',904,102,'Ambon, ID - Pattimura Airport (AMQ)','1','0'),(146,'KE','ASV',905,113,'Amboseli National Park, KE - Amboseli Airport (ASV)','1','0'),(147,'RU','AMV',907,181,'Amderma, RU - Amderma Airport (AMV)','1','0'),(148,'','RCN',920,13,'American River, American River Airport (RCN)','1','0'),(149,'','AHH',926,231,'Amery, Amery Municipal Airport (AHH)','1','0'),(150,'US','AMW',927,231,'Ames, US - Ames Municipal (AMW)','1','0'),(151,'JO','ADJ',944,111,'Amman, JO - Amman Civil Airport (ADJ)','1','0'),(152,'JO','AMM',944,111,'Amman, JO - Queen Alia Intl Airport (AMM)','1','0'),(153,'','YEY',958,39,'Amos, Amos/Magny Airport (YEY)','1','0'),(154,'','AMP',964,130,'Ampanihy, Ampanihy Airport (AMP)','1','0'),(155,'IN','ATQ',974,101,'Amritsar, IN - Amritsar Airport (ATQ)','1','0'),(156,'NL','AMS',979,154,'Amsterdam, NL - Schiphol Airport (AMS)','1','0'),(157,'PF','AAA',980,78,'Anaa, PF - Anaa Airport (AAA)','1','0'),(158,'','AAO',982,235,'Anaco, Anaco Airport (AAO)','1','0'),(159,'','OTS',984,231,'Anacortes, Anacortes Airport (OTS)','1','0'),(160,'CA','YAA',991,39,'Anahim Lake, CA - Anahim Lake Airport (YAA)','1','0'),(161,'US','AKP',993,231,'Anaktuvuk Pass, US - Anaktuvuk Pass Airport (AKP)','1','0'),(162,'','HVA',994,130,'Analalava, Analalava Airport (HVA)','1','0'),(163,'RU','AAQ',999,181,'Anapa, RU - Anapa Airport (AAQ)','1','0'),(164,'US','ANC',1012,231,'Anchorage, US - Ted Stevens Anchorage Intl Airport (ANC)','1','0'),(165,'US','FRN',1012,231,'Anchorage, US - Bryant Army Heliport/Bryant AAF (FRN)','1','0'),(166,'US','MRI',1012,231,'Anchorage, US - Merrill Field (MRI)','1','0'),(167,'IT','AOI',1014,107,'Ancona, IT - Falconara Airport (AOI)','1','0'),(168,'CL','ZUD',1015,45,'Ancud, CL - Ancud (ZUD)','1','0'),(169,'','ZWA',1019,130,'Andapa, Andapa Airport (ZWA)','1','0'),(170,'NO','ANX',1021,164,'Andenes, NO - Andenes Andoya Airport (ANX)','1','0'),(171,'US','AID',1025,231,'Anderson, US - Anderson Municipal (Darlington Field) (AID)','1','0'),(172,'','ADR',1039,231,'Andrews, Robert F. Swinnie Airport (ADR)','1','0'),(173,'FR','EBU',1041,76,'Andrezieux-boutheon, FR - Boutheon Airport (EBU)','1','0'),(174,'','WAD',1042,130,'Andriamena, Andriamena Airport (WAD)','1','0'),(175,'BS','ASD',1046,16,'Andros Island, BS - Andros Town Airport (ASD)','1','0'),(176,'','NGD',1049,32,'Anegada Island, Auguste George Airport (NGD)','1','0'),(177,'US','AXX',1052,231,'Angel Fire, US - Angel Fire (AXX)','1','0'),(178,'FR','ANE',1060,76,'Angers, FR - Angers - Loire Airport (ANE)','1','0'),(179,'','AGD',1063,102,'Anggi, Anggi Airport (AGD)','1','0'),(180,'','LJN',1071,231,'Angleton, Texas Gulf Coast Regional Airport (LJN)','1','0'),(181,'US','AGN',1074,231,'Angoon, US - Angoon Seaplane Base (AGN)','1','0'),(182,'FR','ANG',1075,76,'Angouleme, FR - Cognac Intl Airport (ANG)','1','0'),(183,'AI','AXA',1080,7,'Anguilla, AI - Anguilla Airport (AXA)','1','0'),(184,'US','ANI',1085,231,'Aniak, US - Aniak Airport (ANI)','1','0'),(185,'VU','AWD',1088,233,'Aniwa, VU - Aniwa Airport (AWD)','1','0'),(186,'KM','AJN',1094,50,'Anjouan, KM - Ouani Airport (AJN)','1','0'),(187,'CN','AKA',1097,46,'Ankang, CN - Ankang Wulipu Airport (AKA)','1','0'),(188,'TR','ESB',1098,222,'Ankara, TR - Esenboga Airport (ESB)','1','0'),(189,'','JVA',1099,130,'Ankavandra, Ankavandra Airport (JVA)','1','0'),(190,'','WAK',1100,130,'Ankazoabo, Ankazoabo Airport (WAK)','1','0'),(191,'US','IKV',1101,231,'Ankeny, US - Ankeny Regional (IKV)','1','0'),(192,'','ARB',1105,231,'Ann Arbor, Ann Arbor Municipal Airport (ARB)','1','0'),(193,'DZ','AAE',1108,3,'Annaba, DZ - Rabah Bitat Airport (AAE)','1','0'),(194,'FR','NCY',1119,76,'Annecy, FR - Annecy Airport (NCY)','1','0'),(195,'FR','QNJ',1121,76,'Annemasse, FR - Annemasse (QNJ)','1','0'),(196,'US','ANB',1124,231,'Anniston, US - Anniston Metropolitan (ANB)','1','0'),(197,'CN','AQG',1132,46,'Anqing, CN - Anqing Tianzhushan Airport (AQG)','1','0'),(198,'','AOG',1141,46,'Anshan, Anshan Teng\'ao Airport (AOG)','1','0'),(199,'','AVA',1142,46,'Anshun, Anshun Huangguoshu Airport (AVA)','1','0'),(200,'MG','ANM',1150,130,'Antalaha, MG - Antsirabato Airport (ANM)','1','0'),(201,'TR','AYT',1151,222,'Antalya, TR - Antalya Airport (AYT)','1','0'),(202,'MG','TNR',1152,130,'Antananarivo, MG - Ivato Airport (TNR)','1','0'),(203,'','ANY',1157,231,'Anthony, Anthony Municipal Airport (ANY)','1','0'),(204,'AG','ANU',1163,9,'Antigua, AG - V C Bird Intl Airport (ANU)','1','0'),(205,'','ARO',1175,49,'Antioquia, Arboletes Airport (ARO)','1','0'),(206,'','ATE',1177,231,'Antlers, Antlers Municipal Airport (ATE)','1','0'),(207,'CL','ANF',1178,45,'Antofagasta, CL - Cerro Moreno Intl Airport (ANF)','1','0'),(208,'CL','TOQ',1178,45,'Antofagasta, CL - Barriles (TOQ)','1','0'),(209,'','WAQ',1185,130,'Antsalova, Antsalova Airport (WAQ)','1','0'),(210,'','ATJ',1186,130,'Antsirabe, Antsirabe Airport (ATJ)','1','0'),(211,'','AMB',1187,130,'Antsiranana, Ambilobe Airport (AMB)','1','0'),(212,'MG','DIE',1187,130,'Antsiranana, MG - Arrachart Airport (DIE)','1','0'),(213,'','WAI',1188,130,'Antsohihy, Ambalabe Airport (WAI)','1','0'),(214,'BE','ANR',1189,21,'Antwerp, BE - Antwerp Intl Airport (Deurne) (ANR)','1','0'),(215,'US','ACJ',1190,200,'Anuradhapura, US - Anuradhapura (ACJ)','1','0'),(216,'LK','ADP',1190,200,'Anuradhapura, LK - Anuradhapura (ADP)','1','0'),(217,'US','ANV',1191,231,'Anvik, US - Anvik Airport (ANV)','1','0'),(218,'','AYN',1193,46,'Anyang, Anyang Airport (AYN)','1','0'),(219,'JP','AOJ',1201,110,'Aomori, JP - Aomori Airport (AOJ)','1','0'),(220,'IT','AOT',1203,107,'Aosta, IT - Aosta Valley Airport (AOT)','1','0'),(221,'','AAF',1208,231,'Apalachicola, Apalachicola Regional Airport (AAF)','1','0'),(222,'US','AAS',1210,102,'Apalapsili, US - Apalapsili (AAS)','1','0'),(223,'CO','APO',1211,49,'Apartado, CO - Antonio Roldan Betancourt Airport (APO)','1','0'),(224,'PF','APK',1212,78,'Apataki, PF - Apataki Airport (APK)','1','0'),(225,'WS','APW',1219,183,'Apia, WS - Faleolo Airport (APW)','1','0'),(226,'US','APV',1234,231,'Apple Valley, US - Apple Valley (APV)','1','0'),(227,'US','ATW',1238,231,'Appleton, US - Outagamie County Regional Airport (ATW)','1','0'),(228,'BR','APU',1246,30,'Apucarana, BR - Apucarana (APU)','1','0'),(229,'BR','AJU',1255,30,'Aracaju, BR - Santa Maria Airport (AJU)','1','0'),(230,'RO','ARW',1260,179,'Arad, RO - Arad Intl Airport (ARW)','1','0'),(231,'BR','AUX',1262,30,'Araguaina, BR - Araguaina Airport (AUX)','1','0'),(232,'','AXC',1266,13,'Aramac, Aramac Airport (AXC)','1','0'),(233,'','AAK',1275,114,'Aranuka, Aranuka Airport (AAK)','1','0'),(234,'BR','APX',1277,30,'Arapongas, BR - Arapongas (APX)','1','0'),(235,'SA','RAE',1278,186,'Arar, SA - Arar Airport (RAE)','1','0'),(236,'BR','AQA',1279,30,'Araraquara, BR - Bartolomeu de Gusmao State Airport (AQA)','1','0'),(237,'AU','ARY',1280,13,'Ararat, AU - Ararat (ARY)','1','0'),(238,'CO','AUC',1281,49,'Arauca, CO - Santiago Perez Quiroz Airport (AUC)','1','0'),(239,'BR','AAX',1283,30,'Araxa, BR - Araxa Airport (AAX)','1','0'),(240,'ET','AMH',1284,70,'Arba Mintch, ET - Arba Mintch Airport (AMH)','1','0'),(241,'','NLN',1305,231,'Arcata, Kneeland Airport (NLN)','1','0'),(242,'CA','YAB',1325,39,'Arctic Bay, CA - Arctic Bay Airport (YAB)','1','0'),(243,'US','ARC',1326,231,'Arctic Village, US - Arctic Village Airport (ARC)','1','0'),(244,'','AHD',1345,105,'Ardmore, Ardmore Downtown Executive Airport (AHD)','1','0'),(245,'US','ADM',1347,231,'Ardmore, US - Ardmore Municipal (ADM)','1','0'),(246,'','ARE',1357,176,'Arecibo, Antonio (Nery) Juarbe Pol Airport (ARE)','1','0'),(247,'PE','AQP',1368,172,'Arequipa, PE - Rodriguez Ballon Intl Airport (AQP)','1','0'),(248,'','ACM',1401,45,'Arica, Arica Airport (ACM)','1','0'),(249,'CL','ARI',1401,45,'Arica, CL - Chacalluta Airport (ARI)','1','0'),(250,'RU','ARH',1421,181,'Arkhangelsk, RU - Arkhangelsk Airport (ARH)','1','0'),(251,'CO','AXM',1440,49,'Armenia, CO - El Eden Intl Airport (AXM)','1','0'),(252,'AU','ARM',1444,13,'Armidale, AU - Armidale Airport (ARM)','1','0'),(253,'','AON',1475,107,'Arona, Arona Airport (AON)','1','0'),(254,'','AIS',1477,114,'Arorae Island, Arorae Island Airport (AIS)','1','0'),(255,'','AAB',1485,13,'Arrabury, Arrabury Airport (AAB)','1','0'),(256,'','ATS',1513,231,'Artesia, Artesia Municipal Airport (ATS)','1','0'),(257,'BS','ATC',1517,16,'Arthurs Town, BS - Arthur`s Town Airport (ATC)','1','0'),(258,'UY','ATI',1520,230,'Artigas, UY - Artigas International (ATI)','1','0'),(259,'UG','RUA',1526,226,'Arua, UG - Arua Airport (RUA)','1','0'),(260,'AW','AUA',1527,12,'Aruba, AW - Queen Beatrix Intl Airport (AUA)','1','0'),(261,'TZ','ARK',1533,214,'Arusha, TZ - Arusha Airport (ARK)','1','0'),(262,'PF','AXR',1535,78,'Arutua, PF - Arutua Airport (AXR)','1','0'),(263,'CA','YEK',1538,39,'Arviat, CA - Arviat Airport (YEK)','1','0'),(264,'SE','AJR',1539,209,'Arvidsjaur, SE - Arvidsjaur Airport (AJR)','1','0'),(265,'WS','AAU',1554,183,'Asau, WS - Asau Airport (AAU)','1','0'),(266,'','ALK',1571,70,'Asela, Asella Airport (ALK)','1','0'),(267,'','ASG',1582,482,'Ashburton, Ashburton Aerodrome (ASG)','1','0'),(268,'TM','ASB',1595,223,'Ashgabat, TM - Ashgabat Airport (ASB)','1','0'),(269,'','AHM',1602,231,'Ashland, Ashland Municipal Airport (AHM)','1','0'),(270,'','ASX',1602,231,'Ashland, John F. Kennedy Memorial Airport (ASX)','1','0'),(271,'US','HTS',1602,231,'Ashland, US - Tri-State Airport/Milton J. Ferguson Field (HTS)','1','0'),(272,'','JFN',1604,231,'Ashtabula, Northeast Ohio Regional Airport (JFN)','1','0'),(273,'ER','ASM',1616,68,'Asmara, ER - Yohannes IV Intl Airport (ASM)','1','0'),(274,'ET','ASO',1622,70,'Asosa, ET - Asosa Airport (ASO)','1','0'),(275,'US','ASE',1624,231,'Aspen, US - Pitkin County Airport/Sardy Field (ASE)','1','0'),(276,'EG','ATZ',1645,65,'Assiut, EG - Assiut Airport (ATZ)','1','0'),(277,'KZ','TSE',1650,112,'Astana, KZ - Astana Airport (TSE)','1','0'),(278,'RU','ASF',1658,181,'Astrakhan, RU - Astrakhan Airport (ASF)','1','0'),(279,'ES','OVD',1660,199,'Asturias, ES - Asturias Airport (OVD)','1','0'),(280,'GR','JTY',1661,86,'Astypalaia, GR - Astypalea Island Airport (JTY)','1','0'),(281,'PY','ASU',1663,171,'Asuncion, PY - Silvio Pettirossi Intl Airport (ASU)','1','0'),(282,'EG','ASW',1664,65,'Aswan, EG - Aswan Airport (ASW)','1','0'),(283,'','ABU',1665,102,'Atambua, Haliwen Airport (ABU)','1','0'),(284,'YE','AXK',1667,240,'Ataq, YE - Ataq Airport (AXK)','1','0'),(285,'GR','ATH',1680,86,'Athens, GR - Athens Intl Airport (ATH)','1','0'),(286,'','ATO',1680,86,'Athens, Ohio University Airport (ATO)','1','0'),(287,'US','AHN',1681,231,'Athens, US - Athens/Ben Epps Airport (AHN)','1','0'),(288,'','YIB',1696,39,'Atikokan, Atikokan Municipal Airport (YIB)','1','0'),(289,'US','AKB',1700,231,'Atka, US - Atka Airport (AKB)','1','0'),(290,'US','ATL',1704,231,'Atlanta, US - Hartsfield-Jackson Atlanta Intl Airport (ATL)','1','0'),(291,'US','ACY',1706,231,'Atlantic, US - Atlantic City Intl Airport (ACY)','1','0'),(292,'US','AIY',1706,231,'Atlantic, US - Atlantic City Muni Bader Fld (AIY)','1','0'),(293,'US','ATT',1711,231,'Atmautluak, US - Atmautluak Airport (ATT)','1','0'),(294,'US','ATK',1716,231,'Atqasuk, US - Atqasuk Edward Burnell Sr Memorial Airport (ATK)','1','0'),(295,'CA','YAT',1723,39,'Attawapiskat, CA - Attawapiskat Airport (YAT)','1','0'),(296,'PF','AUQ',1732,78,'Atuona, PF - Hiva Oa-Atuona Airport (AUQ)','1','0'),(297,'KZ','GUW',1735,112,'Atyrau, KZ - Atyrau Airport (GUW)','1','0'),(298,'US','LEW',1746,231,'Auburn, US - Auburn/Lewiston Municipal (LEW)','1','0'),(299,'NZ','AKL',1751,157,'Auckland, NZ - Auckland Intl Airport (AKL)','1','0'),(300,'NZ','AMZ',1751,157,'Auckland, NZ - Ardmore (AMZ)','1','0'),(301,'DE','AGB',1764,83,'Augsburg, DE - Augsburg Airport (AGB)','1','0'),(302,'US','AGS',1766,231,'Augusta, US - Augusta Regional Airport at Bush Field (AGS)','1','0'),(303,'US','AUG',1766,231,'Augusta, US - Augusta State Airport (AUG)','1','0'),(304,'US','DNL',1766,231,'Augusta, US - Daniel Field (DNL)','1','0'),(305,'AU','PUG',1768,13,'Augusta, AU - Port Augusta Airport (PUG)','1','0'),(306,'SB','AKS',1772,193,'Auki, SB - Auki Gwaunaru`u Airport (AKS)','1','0'),(307,'FR','CFE',1777,76,'Aulnat, FR - Aulnat Airport (CFE)','1','0'),(308,'CA','YPJ',1786,39,'Aupaluk, CA - Aupaluk Airport (YPJ)','1','0'),(309,'','AUL',1788,136,'Aur, Aur Airport (AUL)','1','0'),(310,'IN','IXU',1790,101,'Aurangabad, IN - Chikkalthana Airport (IXU)','1','0'),(311,'FR','AUR',1795,76,'Aurillac, FR - Tronquieres Airport (AUR)','1','0'),(312,'','AUZ',1801,231,'Aurora, Aurora Municipal Airport (AUZ)','1','0'),(313,'','BFK',1801,231,'Aurora, Buckley Air Force Base (BFK)','1','0'),(314,'US','BKF',1801,231,'Aurora, US - Buckley Air Force Base (BKF)','1','0'),(315,'','LDO',1801,231,'Aurora, Laduani Airstrip (LDO)','1','0'),(316,'US','UAO',1801,231,'Aurora, US - Aurora State (UAO)','1','0'),(317,'AU','AUU',1803,13,'Aurukun Mission, AU - Aurukun Airport (AUU)','1','0'),(318,'','ASQ',1809,231,'Austin, Austin Airport (ASQ)','1','0'),(319,'US','AUM',1809,231,'Austin, US - Austin Municipal (AUM)','1','0'),(320,'US','AUS',1809,231,'Austin, US - Bergstrom Intl Airport (AUS)','1','0'),(321,'FR','AUF',1816,76,'Auxerre, FR - Auxerre - Branches (AUF)','1','0'),(322,'US','AOV',1820,231,'Ava, US - Ava Bill Martin Memorial (AOV)','1','0'),(323,'AU','AVV',1824,13,'Avalon, AU - Avalon Airport (AVV)','1','0'),(324,'IT','AVB',1855,107,'Aviano, IT - Aviano Air Base (AVB)','1','0'),(325,'','AVU',1886,193,'Avu Avu, Avu Avu Airport (AVU)','1','0'),(326,'ET','AWH',1889,70,'Awareh, ET - Awareh Airport (AWH)','1','0'),(327,'ET','AXU',1896,70,'Axum, ET - Axum Airport (AXU)','1','0'),(328,'','AYC',1897,172,'Ayacucho, Ayacucho Airport (AYC)','1','0'),(329,'PE','AYP',1897,172,'Ayacucho, PE - Coronel FAP Alfredo Mendivil Duarte Airport (AYP)','1','0'),(330,'','AYW',1902,102,'Ayawasi, Ayawasi Airport (AYW)','1','0'),(331,'','CII',1903,222,'Aydin, Aydın Airport (CII)','1','0'),(332,'AU','AYR',1919,13,'Ayr, AU - Ayr (AYR)','1','0'),(333,'ID','BXB',1960,102,'Babo, ID - Babo Airport (BXB)','1','0'),(334,'PH','BCD',1974,173,'Bacolod, PH - Bacolod Airport (BCD)','1','0'),(335,'ES','BJZ',1981,199,'Badajoz, ES - Badajoz Airport (BJZ)','1','0'),(336,'','BXD',1988,102,'Bade, Bade Airport (BXD)','1','0'),(337,'DE','ZCC',1992,83,'Baden-baden, DE - Baden Oos (ZCC)','1','0'),(338,'','BDN',1998,166,'Badin, Talhar Airport (BDN)','1','0'),(339,'','BDD',2003,13,'Badu Island, Badu Island Airport (BDD)','1','0'),(340,'','BFX',2007,38,'Bafoussam, Bafoussam Airport (BFX)','1','0'),(341,'','BQI',2009,151,'Bagani, Bagani Airport (BQI)','1','0'),(342,'','BGT',2011,231,'Bagdad, Bagdad Airport (BGT)','1','0'),(343,'IN','IXB',2012,101,'Bagdogra, IN - Bagdogra Airport (IXB)','1','0'),(344,'IQ','BGW',2017,104,'Baghdad, IQ - Baghdad Intl Airport (BGW)','1','0'),(345,'IQ','SDA',2017,104,'Baghdad, IQ - Baghdad International Apt (SDA)','1','0'),(346,'','TQD',2017,104,'Baghdad, Al-Taqaddum Air Base (TQD)','1','0'),(347,'CA','YBG',2035,39,'Bagotville, CA - Bagotville Airport (YBG)','1','0'),(348,'PH','BAG',2037,173,'Baguio, PH - Baguio Airport (BAG)','1','0'),(349,'ET','BJR',2041,70,'Bahar Dar, ET - Bahar Dar Airport (BJR)','1','0'),(350,'PK','BHV',2044,166,'Bahawalpur, PK - Bahawalpur Airport (BHV)','1','0'),(351,'AR','BHI',2045,10,'Bahia Blanca, AR - Comandante Espora/Bahia Blanca Airport (BHI)','1','0'),(352,'EC','BHA',2047,64,'Bahia De Caraquez, EC - Los Perales (BHA)','1','0'),(353,'CO','BSC',2050,49,'Bahia Solano, CO - Jose Celestino Mutis Airport (BSC)','1','0'),(354,'RO','BAY',2056,179,'Baia Mare, RO - Baia Mare Airport (BAY)','1','0'),(355,'CA','YBC',2059,39,'Baie Comeau, CA - Baie-Comeau Airport (YBC)','1','0'),(356,'CA','YBJ',34656,39,'Baie Johan Beetz, CA - Baie-Johan-Beetz Seaplane Base (YBJ)','1','0'),(357,'AU','BSJ',2079,13,'Bairnsdale, AU - Bairnsdale (BSJ)','1','0'),(358,'','NBS',2081,46,'Baishan, Changbaishan Airport (NBS)','1','0'),(359,'','BJW',2090,102,'Bajawa, Bajawa Soa Airport (BJW)','1','0'),(360,'','BXE',2093,187,'Bakel, Bakel Airport (BXE)','1','0'),(361,'US','BKE',2094,231,'Baker, US - Baker City Municipal (BKE)','1','0'),(362,'CA','YBK',2095,39,'Baker Lake, CA - Baker Lake Airport (YBK)','1','0'),(363,'US','BFL',2096,231,'Bakersfield, US - Meadows Field Airport (BFL)','1','0'),(364,'IS','BJD',2098,100,'Bakkafjordur, IS - Bakkafjörður Airport (BJD)','1','0'),(365,'AZ','GYD',2099,15,'Baku, AZ - Heydar Aliyev Intl Airport (GYD)','1','0'),(366,'','ZXT',2099,15,'Baku, Zabrat Airport (ZXT)','1','0'),(367,'','BWO',2103,181,'Balakovo, Balakovo Airport (BWO)','1','0'),(368,'US','MLJ',2129,231,'Baldwin, US - Baldwin County (MLJ)','1','0'),(369,'','BAJ',2136,102,'Bali, Bali Airport (BAJ)','1','0'),(370,'','BLC',2136,102,'Bali, Bali Airport (BLC)','1','0'),(371,'ID','BPN',2141,102,'Balikpapan, ID - Sepinggan Airport (BPN)','1','0'),(372,'','BKN',2146,223,'Balkanabat, Balkanabat Airport (BKN)','1','0'),(373,'AU','BNK',2162,13,'Ballina, AU - Ballina Airport (BNK)','1','0'),(374,'','BZD',2202,13,'Balranald, Balranald Airport (BZD)','1','0'),(375,'','BZY',2207,144,'Balti City, Bălți International Airport (BZY)','1','0'),(376,'US','BWI',2211,231,'Baltimore, US - Baltimore/Washington Intl Thurgood Marshall Apt (BWI)','1','0'),(377,'DE','BMR',2212,83,'Baltrum, DE - Baltrum (BMR)','1','0'),(378,'','RGH',2213,101,'Balurghat, Balurghat Airport (RGH)','1','0'),(379,'AU','ABM',2217,13,'Bamaga, AU - Northern Peninsula Airport (ABM)','1','0'),(380,'ML','BKO',2218,134,'Bamako, ML - Bamako Airport (BKO)','1','0'),(381,'US','BMQ',2226,113,'Bamburi, US - Bamburi (BMQ)','1','0'),(382,'','BPC',2227,38,'Bamenda, Bamenda Airport (BPC)','1','0'),(383,'','NAF',2232,102,'Banaina, Banaina Airport (NAF)','1','0'),(384,'ID','BTJ',2242,102,'Banda Aceh, ID - Sultan Iskandar Muda Airport (BTJ)','1','0'),(385,'ID','TKG',2245,102,'Bandar Lampung, ID - Radin Inten II Airport (TKG)','1','0'),(386,'','BDY',2255,231,'Bandon, Bandon State Airport (BDY)','1','0'),(387,'','FDU',2256,74,'Bandundu, Bandundu Airport (FDU)','1','0'),(388,'ID','BDO',2257,102,'Bandung, ID - Husein Sastranegara Intl Airport (BDO)','1','0'),(389,'','YBA',2258,482,'Banff, Banff Airport (YBA)','1','0'),(390,'IN','BLR',2262,101,'Bangalore, IN - Bangalore Airport (BLR)','1','0'),(391,'TH','BKK',2266,215,'Bangkok, TH - Bangkok Intl Airport (BKK)','1','0'),(392,'TH','DMK',2266,215,'Bangkok, TH - Don Mueang Intl Airport (DMK)','1','0'),(393,'US','BGR',2268,231,'Bangor, US - Bangor Intl Airport (BGR)','1','0'),(394,'BA','BNX',2271,27,'Banja Luka, BA - Banja Luka Intl Airport (BNX)','1','0'),(395,'ID','BDJ',2272,102,'Banjarmasin, ID - Syamsudin Noor Airport (BDJ)','1','0'),(396,'GM','BJL',2273,81,'Banjul, GM - Yundum Intl Airport (BJL)','1','0'),(397,'AU','BWU',2275,13,'Bankstown, AU - Bankstown (BWU)','1','0'),(398,'US','BNG',2279,231,'Banning, US - Banning Municipal (BNG)','1','0'),(399,'','BNP',2281,166,'Bannu, Bannu Airport (BNP)','1','0'),(400,'IE','BYT',2290,105,'Bantry, IE - Bantry (BYT)','1','0'),(401,'','BWX',2296,102,'Banyuwangi, Blimbingsari Airport (BWX)','1','0'),(402,'CN','BSD',2303,46,'Baoshan, CN - Baoshan Airport (BSD)','1','0'),(403,'CN','BAV',2305,46,'Baotou, CN - Batou Erliban Airport (BAV)','1','0'),(404,'','BCA',2313,56,'Baracoa, Gustavo Rizo Airport (BCA)','1','0'),(405,'','VEV',2318,193,'Barakoma, Barakoma Airport (VEV)','1','0'),(406,'FR','QYR',2339,76,'Barberey-saint-sulpice, FR - Barberey (QYR)','1','0'),(407,'','BBQ',2350,9,'Barbuda, Barbuda Codrington Airport (BBQ)','1','0'),(408,'AU','BCI',2351,13,'Barcaldine, AU - Barcaldine Airport (BCI)','1','0'),(409,'ES','BCN',2352,199,'Barcelona, ES - Barcelona El Prat Airport (BCN)','1','0'),(410,'VE','BLA',2353,235,'Barcelona, VE - Anzoategui Airport (BLA)','1','0'),(411,'FR','BAE',2354,76,'Barcelonnette, FR - Barcelonnette - Saint-Pons (BAE)','1','0'),(412,'NO','BDU',2367,164,'Bardufoss, NO - Bardufoss Airport (BDU)','1','0'),(413,'','BEK',2370,101,'Bareilly, Bareilly Airport (BEK)','1','0'),(414,'IT','BRI',2379,107,'Bari, IT - Karol Wojtyla Airport (BRI)','1','0'),(415,'AR','BRC',2381,10,'Bariloche, AR - Teniente Luis Candelaria Intl Airport (BRC)','1','0'),(416,'VE','BNS',2382,235,'Barinas, VE - Barinas Airport (BNS)','1','0'),(417,'MY','BBN',2384,132,'Bario, MY - Bario Airport (BBN)','1','0'),(418,'RU','BAX',2405,181,'Barnaul, RU - Barnaul Airport (BAX)','1','0'),(419,'US','BNL',2421,231,'Barnwell, US - Barnwell Regional (BNL)','1','0'),(420,'','RRI',2426,193,'Barora Island, Barora Airport (RRI)','1','0'),(421,'VE','BRM',2429,235,'Barquisimeto, VE - Barquisimeto Airport (BRM)','1','0'),(422,'','BQQ',2430,175,'Barra, Barra Airport (BQQ)','1','0'),(423,'GB','BRR',2431,482,'Barra, GB - Barra Airport (BRR)','1','0'),(424,'CO','EJA',2436,49,'Barrancabermeja, CO - Yariguies Airport (EJA)','1','0'),(425,'CO','BAQ',2440,49,'Barranquilla, CO - Cortissoz Airport (BAQ)','1','0'),(426,'BR','BRA',2442,30,'Barreiras, BR - Barreiras Airport (BRA)','1','0'),(427,'','BRB',2443,30,'Barreirinhas, Barreirinhas Airport (BRB)','1','0'),(428,'','YLK',2446,39,'Barrie, Lake Simcoe Regional Airport (YLK)','1','0'),(429,'US','BRW',2453,231,'Barrow, US - Wiley Post-Will Rogers Memoria Airport (BRW)','1','0'),(430,'','BWB',2454,13,'Barrow Island, Barrow Island Airport (BWB)','1','0'),(431,'','BYS',2460,231,'Barstow, Bicycle Lake Army Airfield (BYS)','1','0'),(432,'DE','BBH',2463,83,'Barth, DE - Barth (BBH)','1','0'),(433,'US','BVO',2466,231,'Bartlesville, US - Bartlesville Municipal (BVO)','1','0'),(434,'US','BOW',2474,231,'Bartow, US - Bartow Municipal (BOW)','1','0'),(435,'','BSU',2482,74,'Basankusu, Basankusu Airport (BSU)','1','0'),(436,'PH','BSO',2485,173,'Basco, PH - Basco Airport (BSO)','1','0'),(437,'','BBR',2506,89,'Basse-terre, Baillif Airport (BBR)','1','0'),(438,'FR','BIA',2513,76,'Bastia, FR - Poretta Airport (BIA)','1','0'),(439,'US','BVX',2530,231,'Batesville, US - Batesville Regional (BVX)','1','0'),(440,'AU','BHS',2534,13,'Bathurst, AU - Bathurst Airport (BHS)','1','0'),(441,'CA','ZBF',2535,39,'Bathurst, CA - Bathurst Airport (ZBF)','1','0'),(442,'TR','BAL',2537,222,'Batman, TR - Batman Airport (BAL)','1','0'),(443,'US','BTR',2538,231,'Baton Rouge, US - Baton Rouge Metropolitan Airport / Ryan Field (BTR)','1','0'),(444,'','OUR',2539,38,'Batouri, Batouri Airport (OUR)','1','0'),(445,'NO','BJF',2541,164,'Batsfjord, NO - Batsfjord Airport (BJF)','1','0'),(446,'KH','BBM',2543,37,'Battambang, KH - Battambang (BBM)','1','0'),(447,'US','BTL',2549,231,'Battle Creek, US - W K Kellogg (BTL)','1','0'),(448,'GE','BUS',2556,82,'Batumi, GE - Batumi Airport (BUS)','1','0'),(449,'','BDE',2559,231,'Baudette, Baudette International Airport (BDE)','1','0'),(450,'BR','BAU',2564,30,'Bauru, BR - Bauru Airport (BAU)','1','0'),(451,'BR','JTC',2564,30,'Bauru, BR - Bauru-Arealva Airport (JTC)','1','0'),(452,'','BBC',30577,231,'Bay City, Bay City Municipal Airport (BBC)','1','0'),(453,'US','HPY',2597,231,'Baytown, US - Baytown (HPY)','1','0'),(454,'','BZB',2602,149,'Bazaruto, Bazaruto Island Airport (BZB)','1','0'),(455,'','WBE',2615,130,'Bealanana, Ankaizina Airport (WBE)','1','0'),(456,'CA','XBE',2623,39,'Bearskin Lake, CA - Bearskin Lake Airport (XBE)','1','0'),(457,'US','BIE',2625,231,'Beatrice, US - Beatrice Municipal (BIE)','1','0'),(458,'US','BTY',2627,231,'Beatty, US - Beatty (BTY)','1','0'),(459,'','BFT',2632,231,'Beaufort, Beaufort County Airport (BFT)','1','0'),(460,'US','BMT',2646,231,'Beaumont, US - Beaumont Municipal (BMT)','1','0'),(461,'US','BPT',2646,231,'Beaumont, US - Southeast Texas Regional Airport (BPT)','1','0'),(462,'FR','BVA',2657,76,'Beauvais, FR - Beauvais-Tille Airport (BVA)','1','0'),(463,'US','WBQ',2660,231,'Beaver, US - Beaver Airport (WBQ)','1','0'),(464,'CA','YXQ',2661,39,'Beaver Creek, CA - Beaver Creek (YXQ)','1','0'),(465,'DZ','CBH',2672,3,'Bechar, DZ - Boudghene Ben Ali Lotfi Airport (CBH)','1','0'),(466,'US','BKW',2677,231,'Beckley, US - Raleigh County Memorial Airport (BKW)','1','0'),(467,'US','HMZ',2683,231,'Bedford, US - Bedford County (HMZ)','1','0'),(468,'AU','BEU',2691,13,'Bedourie, AU - Bedourie Airport (BEU)','1','0'),(469,'VG','EIS',2698,32,'Beef Island, VG - Beef Island Airport (EIS)','1','0'),(470,'','BEV',2704,106,'Beersheba, Beersheba Airport (BEV)','1','0'),(471,'','NIR',2710,231,'Beeville, Chase Field Industrial Complex (NIR)','1','0'),(472,'ET','BEI',2720,70,'Beica, ET - Beica Airport (BEI)','1','0'),(473,'LY','LAQ',2721,123,'Beida, LY - Al Abraq Intl Airport (LAQ)','1','0'),(474,'CN','BHY',2724,46,'Beihai, CN - Beihai Fucheng Airport (BHY)','1','0'),(475,'','BHN',2725,240,'Beihan, Beihan Airport (BHN)','1','0'),(476,'CN','NAY',2726,46,'Beijing, CN - Beijing Nanyuan Airport (NAY)','1','0'),(477,'CN','PEK',2726,46,'Beijing, CN - Beijing Capital Intl Airport (PEK)','1','0'),(478,'MZ','BEW',2730,149,'Beira, MZ - Beira Airport (BEW)','1','0'),(479,'LB','BEY',2732,120,'Beirut, LB - Beirut Intl Airport (BEY)','1','0'),(480,'PT','BYJ',2741,175,'Beja, PT - Beja Airport (BYJ)','1','0'),(481,'DZ','BJA',2742,3,'Bejaia, DZ - Soummam - Abane Ramdane Airport (BJA)','1','0'),(482,'','OVA',2749,130,'Bekily, Bekily Airport (OVA)','1','0'),(483,'MY','BLG',2753,132,'Belaga, MY - Belaga Airport (BLG)','1','0'),(484,'BR','BEL',2762,30,'Belem, BR - Val De Caes Intl Airport (BEL)','1','0'),(485,'FR','BOR',2772,76,'Belfort, FR - Fontaine Airport (BOR)','1','0'),(486,'IN','IXG',2774,101,'Belgaum, IN - Belgaum Airport (IXG)','1','0'),(487,'RU','EGO',2780,181,'Belgorod, RU - Belgorod Airport (EGO)','1','0'),(488,'YU','BEG',2782,241,'Belgrade, YU - Nikola Tesla Airport (BEG)','1','0'),(489,'BZ','TZA',2791,22,'Belize, BZ - Belize City Municipal Airport (TZA)','1','0'),(490,'','YSX',2793,39,'Bella Bella, Bella Bella/Shearwater Water Aerodrome (YSX)','1','0'),(491,'US','ACB',2799,231,'Bellaire, US - Antrim County (ACB)','1','0'),(492,'','BEP',2802,101,'Bellary, Bellary Airport (BEP)','1','0'),(493,'','BLP',2804,172,'Bellavista, Huallaga Airport (BLP)','1','0'),(494,'','BCS',2806,231,'Belle Chasse, Southern Seaplane Airport (BCS)','1','0'),(495,'US','RPB',2825,231,'Belleville, US - Belleville Municipal (RPB)','1','0'),(496,'US','BLI',2837,231,'Bellingham, US - Bellingham Intl Airport (BLI)','1','0'),(497,'SB','BNY',2843,193,'Bellona Island, SB - Anua Airport (BNY)','1','0'),(498,'IT','BLX',2851,107,'Belluno, IT - Belluno (BLX)','1','0'),(499,'BR','CNF',2859,30,'Belo Horizonte, BR - Tancredo Neves/Confins Intl Airport (CNF)','1','0'),(500,'BR','PLU',2859,30,'Belo Horizonte, BR - Belohorizonte - Pamphula Airport (PLU)','1','0'),(501,'','BBP',2880,482,'Bembridge, Bembridge Airport (BBP)','1','0'),(502,'US','BJI',2881,231,'Bemidji, US - Bemidji Regional Airport (BJI)','1','0'),(503,'AU','BLN',2887,13,'Benalla, AU - Benalla (BLN)','1','0'),(504,'GB','BEB',2894,482,'Benbecula, GB - Benbecula Airport (BEB)','1','0'),(505,'US','BXG',2898,13,'Bendigo, US - Bendigo (BXG)','1','0'),(506,'','BFU',2907,46,'Bengbu, Bengbu Airport (BFU)','1','0'),(507,'LY','BEN',2908,123,'Benghazi, LY - Benina Intl Airport (BEN)','1','0'),(508,'ID','BKS',2909,102,'Bengkulu, ID - Fatmawati Soekarno Airport (BKS)','1','0'),(509,'','BUG',2911,6,'Benguela, Benguela Airport (BUG)','1','0'),(510,'','BNC',2913,74,'Beni, Beni Airport (BNC)','1','0'),(511,'','BEM',2914,148,'Beni Mellal, Beni Mellal Airport (BEM)','1','0'),(512,'','BTN',2928,231,'Bennettsville, Marlboro County Jetport (BTN)','1','0'),(513,'','BBB',2939,231,'Benson, Benson Municipal Airport (BBB)','1','0'),(514,'','BGV',2944,30,'Bento Goncalves, Bento Gonçalves Airport (BGV)','1','0'),(515,'LK','BJT',2949,200,'Bentota, LK - Bentota River Waterdrome (BJT)','1','0'),(516,'ID','BEJ',2957,102,'Berau, ID - Kalimaru-Hero (Berau) Airport (BEJ)','1','0'),(517,'CA','YBV',2968,39,'Berens River, CA - Berens River Airport (YBV)','1','0'),(518,'IT','BGY',2976,107,'Bergamo, IT - Bergamo-Orio al Serio Airport (BGY)','1','0'),(519,'NO','BGO',2980,164,'Bergen, NO - Bergen Airport Flesland (BGO)','1','0'),(520,'FR','EGC',2983,76,'Bergerac, FR - Bergerac Airport (EGC)','1','0'),(521,'NO','BVG',3003,164,'Berlevag, NO - Berlevag Airport (BVG)','1','0'),(522,'DE','BER',3005,83,'Berlin, DE - Berlin Brandenburg Airport (BER)','1','0'),(523,'DE','SXF',3005,83,'Berlin, DE - Schoenefeld Airport (SXF)','1','0'),(524,'DE','THF',3005,83,'Berlin, DE - Berlin-Tempelhof (THF)','1','0'),(525,'DE','TXL',3005,83,'Berlin, DE - Tegel Airport (TXL)','1','0'),(526,'BM','BDA',3009,24,'Bermuda, BM - Kindley Field Airport (BDA)','1','0'),(527,'US','UDD',3010,231,'Bermuda Dunes, US - Bermuda Dunes (UDD)','1','0'),(528,'CH','BRN',3012,210,'Bern, CH - Belp Airport (BRN)','1','0'),(529,'','WBO',3028,130,'Beroroha, Antsoa Airport (WBO)','1','0'),(530,'','BTA',3045,38,'Bertoua, Bertoua Airport (BTA)','1','0'),(531,'KI','BEZ',3048,114,'Beru, KI - Beru Island Airport (BEZ)','1','0'),(532,'','BPY',3056,130,'Besalampy, Besalampy Airport (BPY)','1','0'),(533,'US','EKY',3063,231,'Bessemer, US - Bessemer (EKY)','1','0'),(534,'US','BET',3077,231,'Bethel, US - Bethel Airport (BET)','1','0'),(535,'','JBT',3077,231,'Bethel, Bethel Seaplane Base (JBT)','1','0'),(536,'','BKU',3083,130,'Betioky, Betioky Airport (BKU)','1','0'),(537,'US','BTT',3088,231,'Bettles, US - Bettles Airport (BTT)','1','0'),(538,'US','BVY',3104,231,'Beverly, US - Beverly Municipal (BVY)','1','0'),(539,'FR','BZR',3122,76,'Beziers, FR - Cap d`Agde Airport (BZR)','1','0'),(540,'NP','BDP',3124,153,'Bhadrapur, NP - Bhadrapur Airport (BDP)','1','0'),(541,'MM','BMO',3128,150,'Bhamo, MM - Bhamo (Banmaw) Airport (BMO)','1','0'),(542,'NP','BHR',3129,153,'Bharatpur, NP - Bharatpur Airport (BHR)','1','0'),(543,'','BUP',3132,101,'Bhatinda, Bathinda Airport (BUP)','1','0'),(544,'IN','BHU',3133,101,'Bhavnagar, IN - Bhavnagar Airport (BHU)','1','0'),(545,'','BHP',34421,101,'Bhojpur, Bhojpur Airport (BHP)','1','0'),(546,'IN','BHO',3139,101,'Bhopal, IN - Bhopal Airport (BHO)','1','0'),(547,'IN','BBI',3141,101,'Bhubaneswar, IN - Bhubaneswar Airport (BBI)','1','0'),(548,'IN','BHJ',3142,101,'Bhuj, IN - Bhuj Airport (BHJ)','1','0'),(549,'PK','BHC',3143,166,'Bhurban, PK - Bhurban Heliport (BHC)','1','0'),(550,'ID','BIK',3145,102,'Biak, ID - Mokmer Airport (BIK)','1','0'),(551,'FR','BIQ',3153,76,'Biarritz, FR - Biarritz-Anglet-Bayonne Airport (BIQ)','1','0'),(552,'','BCZ',3168,13,'Bickerton Island, Bickerton Island Airport (BCZ)','1','0'),(553,'','BFE',3182,83,'Bielefeld, Bielefeld Airport (BFE)','1','0'),(554,'CA','YAX',3196,39,'Big Trout Lake, CA - Angling Lake Airport (YAX)','1','0'),(555,'IN','BKB',3209,101,'Bikaner, IN - Bikaner (BKB)','1','0'),(556,'','BII',3210,136,'Bikini Atoll, Bikini Atoll Airport (BII)','1','0'),(557,'IN','PAB',3212,101,'Bilaspur, IN - Bilaspur (PAB)','1','0'),(558,'ES','BIO',3213,199,'Bilbao, ES - Bilbao Airport (BIO)','1','0'),(559,'','BIU',3217,100,'Bildudalur, Bíldudalur Airport (BIU)','1','0'),(560,'US','BIL',3223,231,'Billings, US - Billings Logan Intl Airport (BIL)','1','0'),(561,'DK','BLL',3228,59,'Billund, DK - Billund Airport (BLL)','1','0'),(562,'ID','BMU',3232,102,'Bima, ID - Muhammad Salahuddin Airport (BMU)','1','0'),(563,'BS','BIM',3233,16,'Bimini, BS - South Bimini Airport (BIM)','1','0'),(564,'BS','NSB',3233,16,'Bimini, BS - Bimini North Seaplane Base Airport (NSB)','1','0'),(565,'DE','BYU',3236,83,'Bindlach, DE - Bindlacher Berg (BYU)','1','0'),(566,'US','BGM',3243,231,'Binghamton, US - Greater Binghamton Airport/Edwin A Link Field (BGM)','1','0'),(567,'MY','BTU',3253,132,'Bintulu, MY - Bintulu Airport (BTU)','1','0'),(568,'NP','BIR',3261,153,'Biratnagar, NP - Biratnagar Airport (BIR)','1','0'),(569,'US','KBC',3263,231,'Birch Creek, US - Birch Creek Airport (KBC)','1','0'),(570,'SC','BDI',3266,188,'Bird Island, SC - Bird Island Airport (BDI)','1','0'),(571,'','BTX',3270,13,'Birdsville, Betoota Airport (BTX)','1','0'),(572,'AU','BVI',3270,13,'Birdsville, AU - Birdsville Airport (BVI)','1','0'),(573,'GB','BHX',3279,482,'Birmingham, GB - Birmingham Airport (BHX)','1','0'),(574,'US','BHM',3280,231,'Birmingham, US - Shuttlesworth Intl Airport (BHM)','1','0'),(575,'','BSQ',3287,231,'Bisbee, Bisbee Municipal Airport (BSQ)','1','0'),(576,'US','DUG',3287,231,'Bisbee, US - Bisbee-Douglas International (DUG)','1','0'),(577,'SA','BHH',3293,186,'Bisha, SA - Bisha Airport (BHH)','1','0'),(578,'KG','FRU',3294,117,'Bishkek, KG - Bishkek Airport (FRU)','1','0'),(579,'','BIY',3295,195,'Bisho, Bhisho Airport (BIY)','1','0'),(580,'US','BIH',3296,231,'Bishop, US - Eastern Sierra Regional (BIH)','1','0'),(581,'DZ','BSK',3307,3,'Biskra, DZ - Biskra Ouakda Airport (BSK)','1','0'),(582,'','BPH',3308,173,'Bislig, Bislig Airport (BPH)','1','0'),(583,'US','BIS',3309,231,'Bismarck, US - Bismarck Municipal Airport (BIS)','1','0'),(584,'GW','OXB',3311,93,'Bissau, GW - Bissau Airport (OXB)','1','0'),(585,'','BMM',3315,80,'Bitam, Bitam Airport (BMM)','1','0'),(586,'','BBJ',3316,83,'Bitburg, Bitburg Airport (BBJ)','1','0'),(587,'CA','YBI',34664,39,'Black Tickle, CA - Black Tickle Airport (YBI)','1','0'),(588,'AU','BKQ',3342,13,'Blackall, AU - Blackall Airport (BKQ)','1','0'),(589,'GB','BLK',3354,482,'Blackpool, GB - Blackpool Airport (BLK)','1','0'),(590,'','BKT',3359,231,'Blackstone, Blackstone Army Airfield (BKT)','1','0'),(591,'AU','BLT',3362,13,'Blackwater, AU - Blackwater Airport (BLT)','1','0'),(592,'','BWL',3364,231,'Blackwell, Blackwell–Tonkawa Municipal Airport (BWL)','1','0'),(593,'CA','YBX',3392,39,'Blanc Sablon, CA - Lourdes-de-Blanc-Sablon Airport (YBX)','1','0'),(594,'US','BDG',3401,231,'Blanding, US - Blanding Municipal (BDG)','1','0'),(595,'MW','BLZ',3408,131,'Blantyre, MW - Chileka Airport (BLZ)','1','0'),(596,'NZ','BHE',3422,157,'Blenheim, NZ - Woodbourne Airport (BHE)','1','0'),(597,'US','BID',3429,231,'Block Island, US - Block Island State (BID)','1','0'),(598,'ZA','BFN',3431,195,'Bloemfontein, ZA - Bloemfontein Intl Airport (BFN)','1','0'),(599,'','YDV',3438,39,'Bloodvein, Bloodvein River Airport (YDV)','1','0'),(600,'','BFC',3440,13,'Bloomfield, Bloomfield Airport (BFC)','1','0'),(601,'US','BMG',3444,231,'Bloomington, US - Monroe County Airport (BMG)','1','0'),(602,'US','ISZ',3456,231,'Blue Ash, US - Blue Ash (ISZ)','1','0'),(603,'US','BLF',3461,231,'Bluefield, US - Mercer County Airport (BLF)','1','0'),(604,'BR','BNU',3467,30,'Blumenau, BR - Blumenau (BNU)','1','0'),(605,'US','BLH',3470,231,'Blythe, US - Blythe (BLH)','1','0'),(606,'US','BYH',3471,231,'Blytheville, US - Arkansas International (BYH)','1','0'),(607,'US','HKA',3471,231,'Blytheville, US - Blytheville Municipal (HKA)','1','0'),(608,'BR','BVB',3476,30,'Boa Vista, BR - Boa Vista Airport (BVB)','1','0'),(609,'CV','BVC',3477,41,'Boa Vista, CV - Boa Vista Airport (BVC)','1','0'),(610,'BF','BOY',3491,35,'Bobo Dioulasso, BF - Bobo Dioulasso Airport (BOY)','1','0'),(611,'PA','BOC',3501,169,'Bocas Del Toro, PA - Bocas del Toro (Isla Colon) Intl Airport (BOC)','1','0'),(612,'NO','BOO',3520,164,'Bodo, NO - Bodo Airport (BOO)','1','0'),(613,'TR','BJV',3521,222,'Bodrum, TR - Milas Airport (BJV)','1','0'),(614,'','BNB',3534,74,'Boende, Boende Airport (BNB)','1','0'),(615,'CO','BOG',3547,49,'Bogota, CO - Eldorado Intl Airport (BOG)','1','0'),(616,'','GIC',3559,13,'Boigu Island, Boigu Island Airport (GIC)','1','0'),(617,'US','BOI',3566,231,'Boise, US - Boise Air Terminal/Gowen Field (BOI)','1','0'),(618,'','BUI',3575,102,'Bokondini, Bokondini Airport (BUI)','1','0'),(619,'','OTC',3578,55,'Bol, Bol-Bérim Airport (OTC)','1','0'),(620,'','BPL',3582,75,'Bole, Bole Alashankou Airport (BPL)','1','0'),(621,'IT','BLQ',3600,107,'Bologna, IT - Guglielmo Marconi Airport (BLQ)','1','0'),(622,'IT','BZO',3615,107,'Bolzano, IT - Bolzano Dolomiti Airport (BZO)','1','0'),(623,'','BOA',3617,74,'Boma, Boma Airport (BOA)','1','0'),(624,'AN','BON',3625,155,'Bonaire, AN - Flamingo Intl Airport (BON)','1','0'),(625,'CA','YVB',3630,39,'Bonaventure, CA - Bonaventure Airport (YVB)','1','0'),(626,'BR','BYO',3647,30,'Bonito, BR - Bonito Airport (BYO)','1','0'),(627,'','YBY',3663,39,'Bonnyville, Bonnyville Airport (YBY)','1','0'),(628,'','BXT',3669,102,'Bontang, PT Badak Bontang Airport (BXT)','1','0'),(629,'US','BNW',3676,231,'Boone, US - Boone Municipal (BNW)','1','0'),(630,'PF','BOB',3686,78,'Bora Bora, PF - Motu Mute Airport (BOB)','1','0'),(631,'','RBB',3689,30,'Borba, Borba Airport (RBB)','1','0'),(632,'FR','BOD',30598,76,'Bordeaux, FR - Merignac Airport (BOD)','1','0'),(633,'DZ','BMW',3694,3,'Bordj Badji Mokhtar, DZ - Bordj Mokhtar Airport (BMW)','1','0'),(634,'IS','BGJ',3698,100,'Borgarfjordur Eystri, IS - Borgarfjörður Airport (BGJ)','1','0'),(635,'DE','BMK',3713,83,'Borkum, DE - Borkum (BMK)','1','0'),(636,'SE','BLE',3714,209,'Borlange, SE - Dala Airport (BLE)','1','0'),(637,'','BXS',3728,231,'Borrego Springs, Borrego Valley Airport (BXS)','1','0'),(638,'','BOX',3731,13,'Borroloola, Borroloola Airport (BOX)','1','0'),(639,'US','BOS',3759,231,'Boston, US - Gen Edward Logan Intl Airport (BOS)','1','0'),(640,'BR','QCJ',3774,30,'Botucatu, BR - Botucatu (QCJ)','1','0'),(641,'','BUJ',3775,3,'Bou Saada, Bou Saada Airport (BUJ)','1','0'),(642,'US','BLD',3794,231,'Boulder, US - Boulder City Municipal Airport (BLD)','1','0'),(643,'','WBU',3794,231,'Boulder, Boulder Municipal Airport (WBU)','1','0'),(644,'AU','BQL',3797,13,'Boulia, AU - Boulia Airport (BQL)','1','0'),(645,'','BYA',3804,231,'Boundary, Boundary Airport (BYA)','1','0'),(646,'','BOE',3805,51,'Boundji, Boundji Airport (BOE)','1','0'),(647,'FR','BOU',3821,76,'Bourges, FR - Bourges (BOU)','1','0'),(648,'AU','BRK',3831,13,'Bourke, AU - Bourke (BRK)','1','0'),(649,'GB','BOH',3834,482,'Bournemouth, GB - Bournemouth Airport (BOH)','1','0'),(650,'AU','ZBO',3858,13,'Bowen, AU - Bowen (ZBO)','1','0'),(651,'US','APH',3861,231,'Bowling Green, US - A.P. Hill Army Airfield (APH)','1','0'),(652,'US','BWG',3861,231,'Bowling Green, US - Bowling Green-Warren County Regional (BWG)','1','0'),(653,'','BWM',3862,231,'Bowman, Bowman Municipal Airport (BWM)','1','0'),(654,'US','BXC',3872,231,'Boxborough, US - Boxborough Airport (BXC)','1','0'),(655,'US','BZN',3880,231,'Bozeman, US - Gallatin Field (BZN)','1','0'),(656,'HR','BWK',3887,55,'Brac, HR - Bol Airport (BWK)','1','0'),(657,'','BDF',3902,231,'Bradford, Rinkenberger RLA Airport (BDF)','1','0'),(658,'US','BFD',3902,231,'Bradford, US - Bradford Regional Airport (BFD)','1','0'),(659,'PT','BGZ',3912,175,'Braga, PT - Braga (BGZ)','1','0'),(660,'PT','BGC',3913,175,'Braganca, PT - Braganca (BGC)','1','0'),(661,'US','BRD',3917,231,'Brainerd, US - Brainerd Lakes Regional Airport (BRD)','1','0'),(662,'CA','YBR',3945,39,'Brandon, CA - Brandon Municipal Airport (YBR)','1','0'),(663,'US','BKG',3952,231,'Branson, US - Branson Airport (BKG)','1','0'),(664,'CA','YFD',3953,39,'Brantford, CA - Brantford (YFD)','1','0'),(665,'BR','BSB',3961,30,'Brasilia, BR - Brasilia Intl Airport (BSB)','1','0'),(666,'SK','BTS',3968,191,'Bratislava, SK - Ivanka Airport (BTS)','1','0'),(667,'RU','BTK',3969,181,'Bratsk, RU - Bratsk Airport (BTK)','1','0'),(668,'DE','BWE',3975,83,'Braunschweig, DE - Braunschweig Wolfsburg Airport (BWE)','1','0'),(669,'US','BWC',3980,231,'Brawley, US - Brawley Municipal (BWC)','1','0'),(670,'CG','BZV',3986,51,'Brazzaville, CG - Maya Maya Airport (BZV)','1','0'),(671,'IS','BXV',4006,100,'Breiddalsvik, IS - Breiddalsvik (BXV)','1','0'),(672,'DE','BRE',4018,83,'Bremen, DE - Bremen Airport (BRE)','1','0'),(673,'DE','BRV',4021,83,'Bremerhaven, DE - Bremerhaven Airport (BRV)','1','0'),(674,'US','PWT',4022,231,'Bremerton, US - Bremerton National (PWT)','1','0'),(675,'FR','BES',4039,76,'Brest, FR - Guipavas Airport (BES)','1','0'),(676,'BY','BQT',4040,20,'Brest, BY - Brest Airport (BQT)','1','0'),(677,'US','KTS',4055,231,'Brevig Mission, US - Brevig Mission Airport (KTS)','1','0'),(678,'','BWQ',4059,13,'Brewarrina, Brewarrina Airport (BWQ)','1','0'),(679,'US','BDR',4080,231,'Bridgeport, US - Igor I. Sikorsky Memorial Airport (BDR)','1','0'),(680,'US','XBP',4080,231,'Bridgeport, US - Bridgeport Municipal (XBP)','1','0'),(681,'BB','BGI',4085,19,'Bridgetown, BB - Grantley Adams Intl Airport (BGI)','1','0'),(682,'US','BMC',4108,231,'Brigham City, US - Brigham City (BMC)','1','0'),(683,'','BRJ',4110,13,'Bright, Bright Airport (BRJ)','1','0'),(684,'IT','BDS',4122,107,'Brindisi, IT - Casale Airport (BDS)','1','0'),(685,'AU','BNE',4135,13,'Brisbane, AU - Brisbane Airport (BNE)','1','0'),(686,'AU','HLT',4139,13,'Brisbane-hamilton, AU - Hamilton Airport (HLT)','1','0'),(687,'AU','HTI',4139,13,'Brisbane-hamilton, AU - Hamilton Island Airport (HTI)','1','0'),(688,'GB','BRS',4147,482,'Bristol, GB - Lulsgate Airport (BRS)','1','0'),(689,'CA','QBC',4148,39,'British Columbia, CA - Bella Coola Airport (QBC)','1','0'),(690,'','XBB',4148,39,'British Columbia, Blubber Bay Seaplane Base (XBB)','1','0'),(691,'','YBH',4148,39,'British Columbia, Bull Harbour Waterdrome (YBH)','1','0'),(692,'','YBO',4148,39,'British Columbia, Bob Quinn Lake Airport (YBO)','1','0'),(693,'CA','YBW',4148,39,'British Columbia, CA - Bedwell Harbour Water Aerodrome (YBW)','1','0'),(694,'','ZAA',4148,39,'British Columbia, Alice Arm/Silver City Water Aerodrome (ZAA)','1','0'),(695,'FR','BVE',4151,76,'Brive-la-gaillarde, FR - Brive - Dordogne Valley Airport (BVE)','1','0'),(696,'CZ','BRQ',4157,58,'Brno, CZ - Turany Airport (BRQ)','1','0'),(697,'','BDX',4164,231,'Broadus, Broadus Airport (BDX)','1','0'),(698,'CA','YBT',4172,39,'Brochet, CA - Brochet Airport (YBT)','1','0'),(699,'','XBR',4176,39,'Brockville, Brockville Regional Tackaberry Airport (XBR)','1','0'),(700,'AU','BHQ',4185,13,'Broken Hill, AU - Broken Hill Airport (BHQ)','1','0'),(701,'CA','ZBM',4191,39,'Bromont, CA - Bromont (ZBM)','1','0'),(702,'FR','LYN',4195,76,'Bron, FR - Bron (LYN)','1','0'),(703,'NO','BNN',4201,164,'Bronnoysund, NO - Bronnoysund Airport Bronnoy (BNN)','1','0'),(704,'US','BKX',4211,231,'Brookings, US - Brookings Regional Airport (BKX)','1','0'),(705,'US','BOK',4211,231,'Brookings, US - Brookings (BOK)','1','0'),(706,'AU','BME',4230,13,'Broome, AU - Broome Airport (BME)','1','0'),(707,'CA','YVM',4243,39,'Broughton Island, CA - Broughton Island / Qikiqtarjuaq Airport (YVM)','1','0'),(708,'US','BWD',4253,231,'Brownwood, US - Brownwood Regional Airport (BWD)','1','0'),(709,'BN','BWN',4283,33,'Brunei, BN - Brunei Intl Airport (BWN)','1','0'),(710,'US','BQK',4295,231,'Brunswick, US - Brunswick Golden Isles Airport (BQK)','1','0'),(711,'BE','BRU',4304,21,'Brussels, BE - Brussels National Airport (BRU)','1','0'),(712,'US','BCE',4311,231,'Bryce Canyon, US - Bryce Canyon (BCE)','1','0'),(713,'CL','BQE',4319,93,'Bubaque, CL - Bubaque (BQE)','1','0'),(714,'CO','BGA',4324,49,'Bucaramanga, CO - Palo Negro Airport (BGA)','1','0'),(715,'','UCN',4328,231,'Buchanan, Buchanan Airport (UCN)','1','0'),(716,'RO','BBU',4329,179,'Bucharest, RO - Aurel Vlaicu (Baneasa) Intl Airport (BBU)','1','0'),(717,'RO','OTP',4329,179,'Bucharest, RO - Henri Coanda (Otopeni) Intl Airport (OTP)','1','0'),(718,'US','BXK',4338,231,'Buckeye, US - Buckeye Municipal (BXK)','1','0'),(719,'US','BKC',4351,231,'Buckland, US - Buckland Airport (BKC)','1','0'),(720,'HU','BUD',4361,99,'Budapest, HU - Ferenc Liszt Intl Airport (BUD)','1','0'),(721,'CO','BUN',4383,49,'Buenaventura, CO - Gerardo Tobar Lopez Airport (BUN)','1','0'),(722,'AR','AEP',4386,10,'Buenos Aires, AR - Jorge Newbery Airport (AEP)','1','0'),(723,'','BAI',4386,10,'Buenos Aires, Buenos Aires Airport (BAI)','1','0'),(724,'AR','EZE',4386,10,'Buenos Aires, AR - Ministro Pistarini (Ezeiza) Intl Airport (EZE)','1','0'),(725,'','YVT',4391,39,'Buffalo Narrows, Buffalo Narrows Airport (YVT)','1','0'),(726,'RU','UUA',4397,181,'Bugulma, RU - Bulgulma Airport (UUA)','1','0'),(727,'BI','BJM',4405,36,'Bujumbura, BI - Bujumbura Airport (BJM)','1','0'),(728,'UZ','BHK',4410,232,'Bukhara, UZ - Bukhara Airport (BHK)','1','0'),(729,'TZ','BKZ',4414,214,'Bukoba, TZ - Bukoba Airport (BKZ)','1','0'),(730,'ZW','BUQ',4418,243,'Bulawayo, ZW - Joshua Mqabuko Nkomo Intl Airport (BUQ)','1','0'),(731,'','BMB',4426,74,'Bumba, Bumba Airport (BMB)','1','0'),(732,'','BUY',4428,13,'Bunbury, Bunbury Airport (BUY)','1','0'),(733,'AU','BDB',4431,13,'Bundaberg, AU - Bundaberg Airport (BDB)','1','0'),(734,'','BNT',4434,101,'Bundi, Bundi Airport (BNT)','1','0'),(735,'CH','BXO',4448,210,'Buochs, CH - Buochs (BXO)','1','0'),(736,'','UOL',4449,102,'Buol, Pogogul Airport (UOL)','1','0'),(737,'VN','BMV',4450,236,'Buon Ma Thuot, VN - Ban Me Thuot Airport (BMV)','1','0'),(738,'','RMB',4455,165,'Buraimi, Buraimi Airport (RMB)','1','0'),(739,'US','BUR',4460,231,'Burbank, US - Bob Hope Airport (BUR)','1','0'),(740,'FJ','LEV',4466,74,'Bureta, FJ - Levuka Airfield (LEV)','1','0'),(741,'BG','BOJ',4468,34,'Burgas, BG - Burgas Airport (BOJ)','1','0'),(742,'ES','RGS',4481,199,'Burgos, ES - Burgos (Villafria) Airport (RGS)','1','0'),(743,'AU','BUC',4496,13,'Burketown, AU - Burketown Airport (BUC)','1','0'),(744,'US','BYI',4503,231,'Burley, US - Burley Municipal (BYI)','1','0'),(745,'US','BBF',4505,231,'Burlington, US - Burlington Airport (BBF)','1','0'),(746,'US','BRL',4505,231,'Burlington, US - Southwest Iowa Regional Airport (BRL)','1','0'),(747,'','MVW',4505,231,'Burlington, Skagit Regional Airport (MVW)','1','0'),(748,'AU','BWT',4512,13,'Burnie, AU - Burnie Airport (BWT)','1','0'),(749,'','BNO',4514,231,'Burns, Burns Municipal Airport (BNO)','1','0'),(750,'','YPZ',4515,39,'Burns Lake, Burns Lake Airport (YPZ)','1','0'),(751,'TR','BTZ',4527,222,'Bursa, TR - BURSA Airport (BTZ)','1','0'),(752,'','YDB',4535,39,'Burwash Landing, Burwash Airport (YDB)','1','0'),(753,'','BUB',4536,231,'Burwell, Cram Field (BUB)','1','0'),(754,'','BEQ',30611,482,'Bury St Edmunds, RAF Honington (BEQ)','1','0'),(755,'AU','BQB',4552,13,'Busselton, AU - Busselton Regional Airport (BQB)','1','0'),(756,'','BZU',4566,74,'Buta, Buta Zega Airport (BZU)','1','0'),(757,'','BBG',4567,114,'Butaritari, Butaritari Atoll Airport (BBG)','1','0'),(758,'US','BTP',4570,231,'Butler, US - Butler County (K.W. Scholter Field) (BTP)','1','0'),(759,'','BUM',4570,231,'Butler, Butler Memorial Airport (BUM)','1','0'),(760,'PH','BXU',4573,173,'Butuan, PH - Butuan Airport (BXU)','1','0'),(761,'PL','BZG',4587,174,'Bydgoszcz, PL - Bydgoszcz Airport (BZG)','1','0'),(762,'','CBS',4610,235,'Cabimas, Oro Negro Airport (CBS)','1','0'),(763,'AO','CAB',4611,6,'Cabinda, AO - Cabinda Airport (CAB)','1','0'),(764,'MX','CSL',4619,141,'Cabo San Lucas, MX - Cabo San Lucas Intl Airport (CSL)','1','0'),(765,'US','TVB',4620,231,'Cabool, US - Cabool Memorial (TVB)','1','0'),(766,'','YZA',4637,39,'Cache Creek, Cache Creek Airport (YZA)','1','0'),(767,'FR','CFR',4661,76,'Caen, FR - Carpiquet Airport (CFR)','1','0'),(768,'PH','CGY',4667,173,'Cagayan De Oro, PH - Laguindingan Airport (CGY)','1','0'),(769,'IT','CAG',4669,107,'Cagliari, IT - Elmas Airport (CAG)','1','0'),(770,'AU','CNS',4693,13,'Cairns, AU - Cairns Intl Airport (CNS)','1','0'),(771,'US','CIR',4700,231,'Cairo, US - Cairo Regional (CIR)','1','0'),(772,'EG','CAI',4701,65,'Cairo, EG - Cairo Intl Airport (CAI)','1','0'),(773,'PE','CJA',4704,172,'Cajamarca, PE - Cajamarca Airport (CJA)','1','0'),(774,'NG','CBQ',4708,160,'Calabar, NG - Margaret Ekpo Intl Airport (CBQ)','1','0'),(775,'','CLZ',4713,235,'Calabozo, Calabozo Airport (CLZ)','1','0'),(776,'FR','CQF',4722,76,'Calais, FR - Calais - Dunkerque (CQF)','1','0'),(777,'CL','CJC',4724,45,'Calama, CL - El Loa Airport (CJC)','1','0'),(778,'PH','CYP',4743,173,'Calbayog, PH - Calbayog Airport (CYP)','1','0'),(779,'US','EUL',4763,231,'Caldwell, US - Caldwell Industrial (EUL)','1','0'),(780,'US','CXL',4774,231,'Calexico, US - Calexico International (CXL)','1','0'),(781,'CA','YYC',4775,39,'Calgary, CA - Calgary Intl Airport (YYC)','1','0'),(782,'IN','CCJ',4782,101,'Calicut, IN - Calicut Airport (CCJ)','1','0'),(783,'','AHC',4783,231,'California, Amedee Army Airfield (AHC)','1','0'),(784,'US','AUN',4783,231,'California, US - Auburn Municipal (AUN)','1','0'),(785,'AU','CUD',4804,13,'Caloundra, AU - Caloundra (CUD)','1','0'),(786,'','CTO',4817,231,'Calverton, Calverton Executive Airpark (CTO)','1','0'),(787,'FR','CLY',4818,76,'Calvi, FR - Calvi Airport (CLY)','1','0'),(788,'CU','CMW',4826,56,'Camaguey, CU - Ignacio Agramonte Intl Airport (CMW)','1','0'),(789,'US','CGE',4850,231,'Cambridge, US - Cambridge-Dorchester (CGE)','1','0'),(790,'CA','YCB',4851,39,'Cambridge, CA - Cambridge Bay Airport (YCB)','1','0'),(791,'GB','CBG',4852,482,'Cambridge, GB - Cambridge Airport (CBG)','1','0'),(792,'','CDH',4857,231,'Camden, Harrell Field (CDH)','1','0'),(793,'AU','CDU',4859,13,'Camden Park, AU - Camden (CDU)','1','0'),(794,'US','BRO',4864,231,'Cameron, US - Brownsville/South Padre Island Intl Airport (BRO)','1','0'),(795,'US','EZZ',4864,231,'Cameron, US - Cameron Memorial (EZZ)','1','0'),(796,'PH','CGM',4870,173,'Camiguin, PH - Camiguin Airport (CGM)','1','0'),(797,'US','CXU',4871,231,'Camilla, US - Camilla-Mitchell County (CXU)','1','0'),(798,'','CAM',4875,26,'Camiri, Camiri Airport (CAM)','1','0'),(799,'','CMC',4878,30,'Camocim, Camocim Airport (CMC)','1','0'),(800,'US','VOK',30650,231,'Camp Douglas, US - Volk Field (VOK)','1','0'),(801,'US','ADW',30654,231,'Camp Springs, US - Andrews Air Force Base (ADW)','1','0'),(802,'CA','YBL',4889,39,'Campbell River, CA - Campbell River Airport (YBL)','1','0'),(803,'CA','YHH',4889,39,'Campbell River, CA - Campbell River Harbor Airport (YHH)','1','0'),(804,'GB','CAL',4898,482,'Campbeltown, GB - Campbeltown Airport (CAL)','1','0'),(805,'MX','CPE',4899,141,'Campeche, MX - Ing. Alberto Acuna Ongay Intl Airport (CPE)','1','0'),(806,'BR','CPV',4909,30,'Campina Grande, BR - Campina Grande Airport (CPV)','1','0'),(807,'BR','CPQ',4910,30,'Campinas, BR - Campinas Airport (CPQ)','1','0'),(808,'VN','VCA',4938,236,'Can Tho, VN - Can Tho (Tra Noc) Intl Airport (VCA)','1','0'),(809,'TR','CKZ',4948,222,'Canakkale, TR - Canakkale Airport (CKZ)','1','0'),(810,'AU','CBR',4959,13,'Canberra, AU - Canberra Intl Airport (CBR)','1','0'),(811,'MX','CUN',4963,141,'Cancun, MX - Cancun Intl Airport (CUN)','1','0'),(812,'','CDL',4977,231,'Candle, Candle 2 Airport (CDL)','1','0'),(813,'VC','CIW',5025,204,'Canouan Island, VC - Canouan Island Airport (CIW)','1','0'),(814,'','CTK',5038,231,'Canton, Canton Municipal Airport (CTK)','1','0'),(815,'CA','YTE',5065,39,'Cape Dorset, CA - Cape Dorset Airport (YTE)','1','0'),(816,'ZA','CPT',5069,195,'Cape Town, ZA - Cape Town Intl Airport (CPT)','1','0'),(817,'','CBD',5108,101,'Car Nicobar, Car Nicobar Air Force Base (CBD)','1','0'),(818,'VE','CCS',5115,235,'Caracas, VE - Simon Bolivar Intl Airport (CCS)','1','0'),(819,'BR','CKS',5117,30,'Carajas, BR - Carajas Airport (CKS)','1','0'),(820,'RO','CSB',5122,179,'Caransebes, RO - Caransebeș Airport (CSB)','1','0'),(821,'','CAF',5127,30,'Carauari, Carauari Airport (CAF)','1','0'),(822,'','CRQ',5129,30,'Caravelas, Caravelas Airport (CRQ)','1','0'),(823,'FR','CCF',5136,76,'Carcassonne, FR - Carcassonne Airport (CCF)','1','0'),(824,'GB','CWL',5145,482,'Cardiff, GB - Cardiff Airport (CWL)','1','0'),(825,'GB','CAX',5175,482,'Carlisle, GB - Carlisle (CAX)','1','0'),(826,'US','CLD',5180,231,'Carlsbad, US - McClellan-Palomar Airport (CLD)','1','0'),(827,'US','CNM',5180,231,'Carlsbad, US - Carlsbad City Air Terminal (CNM)','1','0'),(828,'AU','CVQ',5199,13,'Carnarvon, AU - Carnarvon Airport (CVQ)','1','0'),(829,'','TZC',5213,231,'Caro, Tuscola Area Airport (TZC)','1','0'),(830,'GD','CRU',5239,88,'Carriacou Island, GD - Carriacou Airport (CRU)','1','0'),(831,'','CZT',5251,231,'Carrizo Springs, Dimmit County Airport (CZT)','1','0'),(832,'','CIN',5254,231,'Carroll, Arthur N. Neu Airport (CIN)','1','0'),(833,'CO','CTG',5265,49,'Cartagena, CO - Rafael Nunez Intl Airport (CTG)','1','0'),(834,'','YRF',5274,39,'Cartwright, Cartwright Airport (YRF)','1','0'),(835,'VE','CUP',5276,235,'Carupano, VE - General José Francisco Bermúdez Airport (CUP)','1','0'),(836,'MA','CAS',5285,148,'Casablanca, MA - Anfa (CAS)','1','0'),(837,'MA','CMN',5285,148,'Casablanca, MA - Mohamed V Airport (CMN)','1','0'),(838,'','GMD',5285,148,'Casablanca, Ben Slimane Airport (GMD)','1','0'),(839,'','ICS',5303,231,'Cascade, Cascade Airport (ICS)','1','0'),(840,'BR','CAC',5306,30,'Cascavel, BR - Cascavel Airport (CAC)','1','0'),(841,'AU','CSI',5325,13,'Casino, AU - Casino (CSI)','1','0'),(842,'US','CPR',5333,231,'Casper, US - Natrona County Intl Airport (CPR)','1','0'),(843,'US','AIO',5335,231,'Cass City, US - Atlantic Municipal (AIO)','1','0'),(844,'','CST',5356,74,'Castaway Island, Castaway Island Seaplane Base (CST)','1','0'),(845,'CA','YCG',5425,39,'Castlegar, CA - West Kootenay Regional Airport (YCG)','1','0'),(846,'CA','YAC',30695,39,'Cat Lake, CA - Cat Lake Airport (YAC)','1','0'),(847,'AR','CTC',5450,10,'Catamarca, AR - Coronel Felipe Varela Intl Airport (CTC)','1','0'),(848,'IT','CTA',5451,107,'Catania, IT - Fontanarossa Airport (CTA)','1','0'),(849,'','CAQ',5472,49,'Caucasia, Juan H. White Airport (CAQ)','1','0'),(850,'BR','CXJ',5513,30,'Caxias Do Sul, BR - Caxias Do Sul Airport (CXJ)','1','0'),(851,'GF','CAY',5516,77,'Cayenne, GF - Felix Eboue Airport (CAY)','1','0'),(852,'PH','CEB',5538,173,'Cebu, PH - Cebu Airport (CEB)','1','0'),(853,'AU','CED',5553,13,'Ceduna, AU - Ceduna Airport (CED)','1','0'),(854,'','NRR',5559,176,'Ceiba, José Aponte de la Torre Airport (NRR)','1','0'),(855,'','YCE',5604,231,'Centralia, Centralia/James T. Field Memorial Aerodrome (YCE)','1','0'),(856,'','CRR',5618,231,'Ceres, Ceres Airport (CRR)','1','0'),(857,'AU','CES',5661,13,'Cessnock, AU - Cessnock (CES)','1','0'),(858,'US','CDR',5685,231,'Chadron, US - Chadron Municipal Airport (CDR)','1','0'),(859,'US','CIK',5705,231,'Chalkyitsik, US - Chalkyitsik Airport (CIK)','1','0'),(860,'','CHL',5709,231,'Challis, Challis Airport (CHL)','1','0'),(861,'FR','CMF',5725,76,'Chambery, FR - Chambery Airport (CMF)','1','0'),(862,'US','CMI',5743,231,'Champaign, US - University of Illinois-Willard Airport (CMI)','1','0'),(863,'IN','IXC',5765,101,'Chandigarh, IN - Chandigarh Airport (IXC)','1','0'),(864,'US','SLJ',5767,231,'Chandler, US - Hagler Army Airfield (SLJ)','1','0'),(865,'CN','CGQ',5771,46,'Changchun, CN - Changchun Longjia Intl Airport (CGQ)','1','0'),(866,'CN','CSX',5781,46,'Changsha, CN - Changsha Huanghua Intl Airport (CSX)','1','0'),(867,'CN','CIH',5786,46,'Changzhi, CN - Changzhi Wangcun Airport (CIH)','1','0'),(868,'CN','CZX',5787,46,'Changzhou, CN - Changzhou Benniu Airport (CZX)','1','0'),(869,'GR','CHQ',5790,86,'Chania, GR - Chania Airport (CHQ)','1','0'),(870,'BR','XAP',5815,30,'Chapeco, BR - Chapeco Airport (XAP)','1','0'),(871,'','YLD',5821,39,'Chapleau, Chapleau Airport (YLD)','1','0'),(872,'BE','CRL',5844,21,'Charleroi, BE - Brussels South Charleroi Airport (CRL)','1','0'),(873,'US','CRW',5846,231,'Charleston, US - Yeager Airport (CRW)','1','0'),(874,'AU','CTL',5854,13,'Charleville, AU - Charleville Airport (CTL)','1','0'),(875,'CA','YCL',5858,39,'Charlo, CA - Charlo Airport (YCL)','1','0'),(876,'US','CLT',5859,231,'Charlotte, US - Charlotte Douglas Intl Airport (CLT)','1','0'),(877,'','QWG',5859,231,'Charlotte, Wilgrove Air Park (QWG)','1','0'),(878,'US','CHO',5863,231,'Charlottesville, US - Albemarle Airport (CHO)','1','0'),(879,'','YHG',5864,39,'Charlottetown, Charlottetown Airport (YHG)','1','0'),(880,'CA','YYG',5864,39,'Charlottetown, CA - Charlottetown Airport (YYG)','1','0'),(881,'FR','CHR',5913,76,'Chateauroux, FR - Deols (CHR)','1','0'),(882,'','CYM',5925,231,'Chatham, Chatham Seaplane Base (CYM)','1','0'),(883,'US','CHA',5936,231,'Chattanooga, US - Lovell Field / Chattanooga Metropolitan Airport (CHA)','1','0'),(884,'','TIL',5961,482,'Cheadle, Cheadle Airport (TIL)','1','0'),(885,'US','BUF',5969,231,'Cheektowaga, US - Buffalo Niagara Intl Airport (BUF)','1','0'),(886,'RU','CEK',5986,181,'Chelyabinsk, RU - Chelyabinsk Airport (CEK)','1','0'),(887,'CN','CTU',5998,46,'Chengdu, CN - Chengdu Shuangliu Intl Airport (CTU)','1','0'),(888,'IN','MAA',6000,101,'Chennai, IN - Chennai (Madras) - Meenambakkam Airport (MAA)','1','0'),(889,'','HCW',6013,231,'Cheraw, Cheraw Municipal Airport (HCW)','1','0'),(890,'FR','CER',6014,76,'Cherbourg, FR - Cherbourg - Maupertus (CER)','1','0'),(891,'','CKC',6019,227,'Cherkasy, Cherkasy International Airport (CKC)','1','0'),(892,'','CKA',6023,231,'Cherokee, Kegelman Air Force Auxiliary Field (CKA)','1','0'),(893,'US','CKK',6023,231,'Cherokee, US - Sharp County Regional Airport (CKK)','1','0'),(894,'MX','CTM',6054,141,'Chetumal, MX - Chetumal Intl Airport (CTM)','1','0'),(895,'','YCQ',6055,39,'Chetwynd, Chetwynd Airport (YCQ)','1','0'),(896,'US','VAK',6057,231,'Chevak, US - Chevak Airport (VAK)','1','0'),(897,'US','CYS',6067,231,'Cheyenne, US - Cheyenne Regional Airport / Jerry Olsen Field (CYS)','1','0'),(898,'TH','CNX',30567,215,'Chiang Mai, TH - Chiang Mai Intl Airport (CNX)','1','0'),(899,'TH','CEI',34239,215,'Chiang Rai, TH - Chiang Rai Airport (CEI)','1','0'),(900,'MX','TGZ',6077,141,'Chiapa De Corzo, MX - Angel Albino Corzo Intl Airport (TGZ)','1','0'),(901,'CA','YMT',6086,39,'Chibougamau, CA - Chibougamau/Chapais Airport (YMT)','1','0'),(902,'US','MDW',6087,231,'Chicago, US - Midway Intl Airport (MDW)','1','0'),(903,'US','ORD',6087,231,'Chicago, US - O`Hare Intl Airport (ORD)','1','0'),(904,'','CKX',6095,231,'Chicken, Chicken Airport (CKX)','1','0'),(905,'PE','CIX',6097,172,'Chiclayo, PE - Capitan FAP Jose A. Quinones Gonzalez Airport (CIX)','1','0'),(906,'US','CEF',6100,231,'Chicopee, US - Westover ARB/Westover Metropolitan (CEF)','1','0'),(907,'CN','CIF',6109,46,'Chifeng, CN - Chifeng Airport (CIF)','1','0'),(908,'CO','IGO',6111,49,'Chigorodo, CO - Jaime Ortíz Betancur Airport (IGO)','1','0'),(909,'MX','CJS',6112,141,'Chihuahua, MX - Abraham Gonzalez Intl Airport (CJS)','1','0'),(910,'MX','CUU',6112,141,'Chihuahua, MX - Gen Roberto Fierro Villalobos Intl Airport (CUU)','1','0'),(911,'','CHB',6114,166,'Chilas, Chilas Airport (CHB)','1','0'),(912,'','LLG',6121,13,'Chillagoe, Chillagoe Airport (LLG)','1','0'),(913,'','CHZ',6130,231,'Chiloquin, Chiloquin State Airport (CHZ)','1','0'),(914,'KZ','CIT',6134,112,'Chimkent, KZ - Shymkent Airport (CIT)','1','0'),(915,'','CGJ',6147,242,'Chingola, Kasompe Airport (CGJ)','1','0'),(916,'US','CNO',6151,231,'Chino, US - Chino (CNO)','1','0'),(917,'GR','JKH',6156,86,'Chios, GR - Chios Airport (JKH)','1','0'),(918,'ZM','CIP',6157,242,'Chipata, ZM - Chipata Airport (CIP)','1','0'),(919,'','BFO',6168,243,'Chiredzi, Buffalo Range Airport (BFO)','1','0'),(920,'','CZN',6175,231,'Chisana, Chisana Airport (CZN)','1','0'),(921,'CA','YKU',6176,39,'Chisasibi, CA - Chisasibi Airport (YKU)','1','0'),(922,'MD','KIV',6178,144,'Chisinau, MD - Chisinau Airport (KIV)','1','0'),(923,'RU','HTA',6182,181,'Chita, RU - Chita Kadala Airport (HTA)','1','0'),(924,'BD','CGP',6188,18,'Chittagong, BD - Shah Amanat Intl Airport (CGP)','1','0'),(925,'','JUH',6202,46,'Chizhou, Chizhou Jiuhuashan Airport (JUH)','1','0'),(926,'','CFK',6203,3,'Chlef, Chlef International Airport (CFK)','1','0'),(927,'SB','CHY',6209,193,'Choiseul Bay, SB - Choiseul Bay Airport (CHY)','1','0'),(928,'CN','CKG',6225,46,'Chongqing, CN - Chongqing Jiangbei Intl Airport (CKG)','1','0'),(929,'','HOS',6234,10,'Chos Malal, Chos Malal Airport (HOS)','1','0'),(930,'NZ','CHC',6244,157,'Christchurch, NZ - Christchurch Intl Airport (CHC)','1','0'),(931,'GL','JCH',6250,87,'Christianshaab, GL - Qasigiannguit Heliport (JCH)','1','0'),(932,'US','CHU',6255,231,'Chuathbaluk, US - Chuathbaluk Airport (CHU)','1','0'),(933,'BS','CCZ',6256,16,'Chub Cay, BS - Chub Cay Intl Airport (CCZ)','1','0'),(934,'','ARR',6259,10,'Chubut, Alto Río Senguer Airport (ARR)','1','0'),(935,'AR','REL',6259,10,'Chubut, AR - Almirante Marcos Zar Airport (REL)','1','0'),(936,'TH','CJM',6268,215,'Chumphon, TH - Chumphon Airport (CJM)','1','0'),(937,'','JWO',6275,197,'Chungju, Jungwon Air Base (JWO)','1','0'),(938,'CA','YYQ',6284,39,'Churchill, CA - Churchill Airport (YYQ)','1','0'),(939,'FJ','ICI',6295,74,'Cicia, FJ - Cicia Airport (ICI)','1','0'),(940,'CU','AVI',6300,56,'Ciego De Avila, CU - Máximo Gómez Airport (AVI)','1','0'),(941,'ID','CXP',6310,102,'Cilacap, ID - Tunggul Wulung Airport (CXP)','1','0'),(942,'US','CVG',6318,231,'Cincinnati, US - Cincinnati/Northern Kentucky Intl Airport (CVG)','1','0'),(943,'US','IRC',6333,231,'Circle, US - Circle Airport (IRC)','1','0'),(944,'ID','CBN',6335,102,'Cirebon, ID - Penggung Airport (CBN)','1','0'),(945,'VE','CBL',6354,235,'Ciudad Bolivar, VE - Ciudad Bolivar (CBL)','1','0'),(946,'US','CKB',6410,231,'Clarksburg, US - North Central West Virginia Airport (CKB)','1','0'),(947,'','CMQ',6460,13,'Clermont, Clermont Airport (CMQ)','1','0'),(948,'','CVC',6468,13,'Cleve, Cleve Airport (CVC)','1','0'),(949,'US','BKL',6470,231,'Cleveland, US - Burke Lakefront (BKL)','1','0'),(950,'US','CGF',6470,231,'Cleveland, US - Cuyahoga County (CGF)','1','0'),(951,'US','CLE',6470,231,'Cleveland, US - Hopkins Intl Airport (CLE)','1','0'),(952,'','CFT',6479,231,'Clifton, Greenlee County Airport (CFT)','1','0'),(953,'','CTZ',6484,231,'Clinton, Clinton–Sampson County Airport (CTZ)','1','0'),(954,'AU','CNJ',6495,13,'Cloncurry, AU - Cloncurry Airport (CNJ)','1','0'),(955,'US','CVN',6508,231,'Clovis, US - Clovis Municipal Airport (CVN)','1','0'),(956,'RO','CLJ',6511,179,'Cluj, RO - Napoca Intl Airport (CLJ)','1','0'),(957,'','CZY',6515,76,'Cluny, Cluny Airport (CZY)','1','0'),(958,'CA','YCY',6521,39,'Clyde River, CA - Clyde River Airport (YCY)','1','0'),(959,'','CLG',6526,231,'Coalinga, New Coalinga Municipal Airport (CLG)','1','0'),(960,'','CTH',6533,231,'Coatesville, Chester County G. O. Carlson Airport (CTH)','1','0'),(961,'AU','CAZ',6538,13,'Cobar, AU - Cobar Airport (CAZ)','1','0'),(962,'BO','CIJ',6545,26,'Cobija, BO - Captain Anibal Arab Airport (CIJ)','1','0'),(963,'EC','OCC',6553,64,'Coca, EC - Francisco de Orellana Airport (OCC)','1','0'),(964,'BO','CBB',6556,26,'Cochabamba, BO - Jorge Wilstermann Intl Airport (CBB)','1','0'),(965,'','ICC',6558,235,'Coche Island, Andrés Miguel Salazar Marcano Airport (ICC)','1','0'),(966,'','LGR',6564,45,'Cochrane, Cochrane Airfield (LGR)','1','0'),(967,'CA','YCN',6565,39,'Cochrane, CA - Cochrane (YCN)','1','0'),(968,'US','COD',6585,231,'Cody, US - Yellowstone Regional Airport (COD)','1','0'),(969,'AU','CUQ',6587,13,'Coen, AU - Coen Airport (CUQ)','1','0'),(970,'US','COE',6588,231,'Coeur D\'alene, US - Coeur d`Alene Air Terminal (COE)','1','0'),(971,'AU','CFS',6592,13,'Coffs Harbour, AU - Coffs Harbour Airport (CFS)','1','0'),(972,'IN','CJB',6609,101,'Coimbatore, IN - Peelamedu Airport (CJB)','1','0'),(973,'','XCO',6615,13,'Colac, Colac Airport (XCO)','1','0'),(974,'US','CDB',6626,231,'Cold Bay, US - Cold Bay Airport (CDB)','1','0'),(975,'US','OEB',6631,231,'Coldwater, US - Branch County Memorial (OEB)','1','0'),(976,'MX','CLQ',6643,141,'Colima, MX - Lic Miguel de la Madrid Airport (CLQ)','1','0'),(977,'','KCE',6669,13,'Collinsville, Collinsville Airport (KCE)','1','0'),(978,'FR','CMR',6675,76,'Colmar, FR - Houssen Airport (CMR)','1','0'),(979,'DE','CGN',6679,83,'Cologne, DE - Cologne Bonn Airport (CGN)','1','0'),(980,'','BYV',6689,200,'Colombo, Beira Lake Seaplane Base (BYV)','1','0'),(981,'','DGM',6689,200,'Colombo, Dandugama Seaplane Base (DGM)','1','0'),(982,'','KEZ',6689,200,'Colombo, Kelani River-Peliyagoda Waterdrome (KEZ)','1','0'),(983,'PA','ONX',6692,169,'Colon, PA - Enrique Adolfo Jimenez Airport (ONX)','1','0'),(984,'UY','CYR',6695,230,'Colonia, UY - Laguna de Los Patos International (CYR)','1','0'),(985,'US','CAE',6707,231,'Columbia, US - Columbia Metropolitan Airport (CAE)','1','0'),(986,'','COA',6707,231,'Columbia, Columbia Airport (COA)','1','0'),(987,'US','COU',6707,231,'Columbia, US - Columbia Regional Airport (COU)','1','0'),(988,'US','CMH',6709,231,'Columbus, US - Port Columbus Intl Airport (CMH)','1','0'),(989,'US','CSG',6709,231,'Columbus, US - Columbus Metropolitan Airport (CSG)','1','0'),(990,'','CUS',6709,231,'Columbus, Columbus Municipal Airport (CUS)','1','0'),(991,'US','GTR',6709,231,'Columbus, US - Golden Triangle Regional Airport (GTR)','1','0'),(992,'US','LCK',6709,231,'Columbus, US - Rickenbacker Intl Airport (LCK)','1','0'),(993,'US','OSU',6709,231,'Columbus, US - Ohio State University (OSU)','1','0'),(994,'CA','YCK',6713,39,'Colville Lake, CA - Tommy Cochon Aerodrome (YCK)','1','0'),(995,'','XPL',6725,97,'Comayagua, Soto Cano Air Base (XPL)','1','0'),(996,'','CIY',6738,107,'Comiso, Comiso Airport (CIY)','1','0'),(997,'CA','YQQ',6747,39,'Comox, CA - Comox Airport (YQQ)','1','0'),(998,'US','CPM',6754,231,'Compton, US - Compton/Woodley (CPM)','1','0'),(999,'GN','CKY',6759,92,'Conakry, GN - Conakry Airport (CKY)','1','0'),(1000,'CL','CCP',6764,45,'Concepcion, CL - Carriel Sur Airport (CCP)','1','0'),(1001,'US','CCR',6771,231,'Concord, US - Buchanan Field (CCR)','1','0'),(1002,'US','CON',6771,231,'Concord, US - Concord Municipal (CON)','1','0'),(1003,'','USA',6771,231,'Concord, Concord Regional Airport (USA)','1','0'),(1004,'US','CNK',6774,231,'Concordia, US - Blosser Municipal (CNK)','1','0'),(1005,'AR','COC',6775,10,'Concordia, AR - Concordia (Comodoro Pierrestegui) (COC)','1','0'),(1006,'','CBX',6787,13,'Condobolin, Condobolin Airport (CBX)','1','0'),(1007,'','COG',6790,49,'Condoto, Mandinga Airport (COG)','1','0'),(1008,'RO','CND',6828,179,'Constanta, RO - Mihail Kogalniceanu Intl Airport (CND)','1','0'),(1009,'DZ','CZL',6832,3,'Constantine, DZ - Mohamed Boudiaf Intl Airport (CZL)','1','0'),(1010,'PA','OTD',6836,169,'Contadora, PA - Contadora Airport (OTD)','1','0'),(1011,'AU','CPD',6851,13,'Coober Pedy, AU - Coober Pedy Airport (CPD)','1','0'),(1012,'IN','COH',34349,101,'Cooch Behar, IN - Cooch Behar Airport (COH)','1','0'),(1013,'AU','CDA',6854,13,'Cooinda, AU - Cooinda (CDA)','1','0'),(1014,'AU','CTN',6860,13,'Cooktown, AU - Cooktown Airport (CTN)','1','0'),(1015,'AU','COJ',6868,13,'Coonabarabran, AU - Coonabarabran (COJ)','1','0'),(1016,'','CNB',6869,13,'Coonamble, Coonamble Airport (CNB)','1','0'),(1017,'','JLA',6873,231,'Cooper Landing, Quartz Creek Airport (JLA)','1','0'),(1018,'','COP',6876,231,'Cooperstown, Cooperstown-Westville Airport (COP)','1','0'),(1019,'','CMD',6883,13,'Cootamundra, Cootamundra Airport (CMD)','1','0'),(1020,'DK','CPH',6889,59,'Copenhagen, DK - Copenhagen Airport Kastrup (CPH)','1','0'),(1021,'DK','RKE',6889,59,'Copenhagen, DK - Copenhagen Airport Roskilde (RKE)','1','0'),(1022,'CL','CPO',6891,45,'Copiapo, CL - Desierto de Atacama Airport (CPO)','1','0'),(1023,'','CZC',6896,231,'Copper Center, Copper Center 2 Airport (CZC)','1','0'),(1024,'CA','YCO',6898,39,'Coppermine, CA - Kugluktuk Coppermine Airport (YCO)','1','0'),(1025,'','COW',6904,45,'Coquimbo, Coquimbo Airport (COW)','1','0'),(1026,'CA','YZS',6909,39,'Coral Harbour, CA - Coral Harbour Airport (YZS)','1','0'),(1027,'AR','COR',6932,10,'Cordoba, AR - Ing. Aer. Ambrosio L. V. Taravella Intl Airport (COR)','1','0'),(1028,'','BSW',6935,231,'Cordova, Boswell Bay Airport (BSW)','1','0'),(1029,'US','CDV',6935,231,'Cordova, US - Merle K (Mudhole) Smith Airport (CDV)','1','0'),(1030,'','CKU',6935,231,'Cordova, Cordova Municipal Airport (CKU)','1','0'),(1031,'','CRX',6958,231,'Corinth, Roscoe Turner Airport (CRX)','1','0'),(1032,'IE','ORK',6960,105,'Cork, IE - Cork Airport (ORK)','1','0'),(1033,'VE','CZE',6985,235,'Coro, VE - Coro Airport (CZE)','1','0'),(1034,'','DUF',6987,231,'Corolla, Pine Island Airport (DUF)','1','0'),(1035,'','CMV',6988,157,'Coromandel, Coromandel Aerodrome (CMV)','1','0'),(1036,'','XCN',6989,173,'Coron, Coron Airport (XCN)','1','0'),(1037,'AU','CWW',6992,13,'Corowa, AU - Corowa (CWW)','1','0'),(1038,'BZ','CZH',6993,22,'Corozal, BZ - Corozal Airport (CZH)','1','0'),(1039,'US','CRP',6995,231,'Corpus Christi, US - Corpus Christi Intl Airport (CRP)','1','0'),(1040,'','CUX',6995,231,'Corpus Christi, Cuddihy Field (CUX)','1','0'),(1041,'AR','CNQ',7004,10,'Corrientes, AR - Dr Fernando Piragine Niveyro Intl Airport (CNQ)','1','0'),(1042,'','CYG',7006,13,'Corryong, Corryong Airport (CYG)','1','0'),(1043,'US','CEZ',7020,231,'Cortez, US - Cortez Municipal Airport (CEZ)','1','0'),(1044,'','CTX',7023,231,'Cortland, Cortland County Airport (CTX)','1','0'),(1045,'BR','CMG',7028,30,'Corumba, BR - Corumba Intl Airport (CMG)','1','0'),(1046,'PH','CBO',7053,173,'Cotabato, PH - Cotabato Airport (CBO)','1','0'),(1047,'BJ','COO',7059,23,'Cotonou, BJ - Cotonou Airport (COO)','1','0'),(1048,'','CTW',7070,231,'Cottonwood, Cottonwood Airport (CTW)','1','0'),(1049,'','COT',7071,231,'Cotulla, Cotulla–La Salle County Airport (COT)','1','0'),(1050,'','CIL',7081,231,'Council, Council Airport (CIL)','1','0'),(1051,'FR','CVF',7094,76,'Courchevel, FR - Courchevel (CVF)','1','0'),(1052,'AU','CWT',7127,13,'Cowra, AU - Cowra (CWT)','1','0'),(1053,'BD','CXB',7129,18,'Cox\'s Bazar, BD - Cox`s Bazar Airport (CXB)','1','0'),(1054,'CL','GXQ',7131,45,'Coyhaique, CL - Teniente Vidal (GXQ)','1','0'),(1055,'MX','CZM',7134,141,'Cozumel, MX - Cozumel Intl Airport (CZM)','1','0'),(1056,'','CDO',7137,195,'Cradock, Cradock Airport (CDO)','1','0'),(1057,'','CIG',7140,231,'Craig, Craig–Moffat Airport (CIG)','1','0'),(1058,'VU','CCV',7141,233,'Craig Cove, VU - Craig Cove Airport (CCV)','1','0'),(1059,'CA','YXC',7157,39,'Cranbrook, CA - Canadian Rockies Intl Airport (YXC)','1','0'),(1060,'','CCG',7161,231,'Crane, Crane County Airport (CCG)','1','0'),(1061,'','CSE',7209,231,'Crested Butte, Buckhorn Ranch Airport (CSE)','1','0'),(1062,'','CFQ',7211,231,'Creston, Creston Aerodrome (CFQ)','1','0'),(1063,'US','CEW',7213,231,'Crestview, US - Bob Sikes (CEW)','1','0'),(1064,'US','CKD',7273,231,'Crooked Creek, US - Crooked Creek Airport (CKD)','1','0'),(1065,'','CKN',7276,231,'Crookston, Crookston Municipal Airport (CKN)','1','0'),(1066,'CA','YCR',34675,39,'Cross Lake, CA - Charlie Sinclair Memorial Airport (YCR)','1','0'),(1067,'','CRT',7282,231,'Crossett, Z. M. Jack Stell Field (CRT)','1','0'),(1068,'IT','CRV',7289,107,'Crotone, IT - Sant`Anna Airport (CRV)','1','0'),(1069,'','CDQ',7301,482,'Croydon, Croydon Airport (CDQ)','1','0'),(1070,'BR','CZS',7313,30,'Cruzeiro Do Sul, BR - Campo Intl Airport (CZS)','1','0'),(1071,'CO','CUC',7333,49,'Cucuta, CO - Camilo Daza Airport (CUC)','1','0'),(1072,'IN','CDP',7335,101,'Cuddapah, IN - Kadapa Airport (CDP)','1','0'),(1073,'','CUY',7339,13,'Cue, Cue Airport (CUY)','1','0'),(1074,'EC','CUE',7340,64,'Cuenca, EC - Mariscal Lamar Airport (CUE)','1','0'),(1075,'BR','CGB',7344,30,'Cuiaba, BR - Marechal Rondon Airport (CGB)','1','0'),(1076,'US','CPX',7351,176,'Culebra, US - Benjamin Rivera Noriega Airport (CPX)','1','0'),(1077,'MX','CUL',7352,141,'Culiacan, MX - Federal de Bachigualato Intl Airport (CUL)','1','0'),(1078,'VE','CUM',7369,235,'Cumana, VE - Antonio Jose de Sucre Airport (CUM)','1','0'),(1079,'US','CBE',7370,231,'Cumberland, US - Greater Cumberland Regional (CBE)','1','0'),(1080,'IT','CUF',7375,107,'Cuneo, IT - Levaldigi Airport (CUF)','1','0'),(1081,'AU','CMA',7378,13,'Cunnamulla, AU - Cunnamulla Airport (CMA)','1','0'),(1082,'AN','CUR',7386,155,'Curacao, AN - Hato Airport (CUR)','1','0'),(1083,'','BFH',7391,30,'Curitiba, Bacacheri Airport (BFH)','1','0'),(1084,'','CUH',7405,231,'Cushing, Cushing Municipal Airport (CUH)','1','0'),(1085,'','BBW',7406,231,'Custer, Broken Bow Municipal Airport (BBW)','1','0'),(1086,'','CTB',30739,231,'Cut Bank, Cut Bank Municipal Airport (CTB)','1','0'),(1087,'AR','CUT',7412,10,'Cutral, AR - Cutral Có Airport (CUT)','1','0'),(1088,'','FCN',7416,83,'Cuxhaven, Nordholz Naval Airbase (FCN)','1','0'),(1089,'','CYU',7418,173,'Cuyo, Cuyo Airport (CYU)','1','0'),(1090,'PE','CUZ',7420,172,'Cuzco, PE - Velazco Astete Airport (CUZ)','1','0'),(1091,'VN','DAD',30741,236,'Da Nang, VN - Da Nang Airport (DAD)','1','0'),(1092,'','DTE',7440,173,'Daet, Bagasbas Airport (DTE)','1','0'),(1093,'','DGN',7448,231,'Dahlgren, Naval Surface Warfare Center Dahlgren Division (DGN)','1','0'),(1094,'SN','DKR',7460,187,'Dakar, SN - Yoff Airport (DKR)','1','0'),(1095,'MA','VIL',7461,148,'Dakhla, MA - Dakhla Airport (VIL)','1','0'),(1096,'','DAK',7462,65,'Dakhla Oasis, Dakhla Oasis Airport (DAK)','1','0'),(1097,'TR','DLM',7464,222,'Dalaman, TR - Dalaman Airport (DLM)','1','0'),(1098,'VN','DLI',7467,236,'Dalat, VN - Dalat Airport (DLI)','1','0'),(1099,'','DBY',7470,13,'Dalby, Dalby Airport (DBY)','1','0'),(1100,'US','OZR',7474,231,'Daleville, US - Cairns Army Airfield (Fort Rucker) (OZR)','1','0'),(1101,'US','DHT',7476,231,'Dalhart, US - Dalhart Municipal (DHT)','1','0'),(1102,'CN','DLC',7480,46,'Dalian, CN - Dalian Zhoushuizi Intl Airport (DLC)','1','0'),(1103,'US','DAL',7485,231,'Dallas, US - Dallas Love Field (DAL)','1','0'),(1104,'US','DFW',7485,231,'Dallas, US - Dallas/Fort Worth Intl Airport (DFW)','1','0'),(1105,'IN','NMB',7500,101,'Daman, IN - Daman (NMB)','1','0'),(1106,'SY','DAM',7504,211,'Damascus, SY - Damascus Intl Airport (DAM)','1','0'),(1107,'','DBU',7506,200,'Dambulla, Dambulu Oya Tank Seaplane Base (DBU)','1','0'),(1108,'','GIU',7506,200,'Dambulla, Sigiriya Airport (GIU)','1','0'),(1109,'SA','DMM',7508,186,'Dammam, SA - Damman King Fahad Airport (DMM)','1','0'),(1110,'SA','DMS',7508,186,'Dammam, SA - DAMMAM Airport (DMS)','1','0'),(1111,'BZ','DGA',7529,22,'Dangriga, BZ - Dangriga Airport (DGA)','1','0'),(1112,'US','DAN',7539,231,'Danville, US - Danville Regional (DAN)','1','0'),(1113,'','DQA',7544,46,'Daqing, Daqing Sartu Airport (DQA)','1','0'),(1114,'TZ','DAR',7545,214,'Dar Es Salaam, TZ - Dar Es Salaam Airport (DAR)','1','0'),(1115,'','DGR',7553,157,'Dargaville, Dargaville Aerodrome (DGR)','1','0'),(1116,'','NLF',7564,13,'Darnley Island, Darnley Island Airport (NLF)','1','0'),(1117,'AU','DRW',7574,13,'Darwin, AU - Darwin Intl Airport (DRW)','1','0'),(1118,'ID','DTD',7583,102,'Datadawai, ID - Datadawai Airport (DTD)','1','0'),(1119,'','DAH',7588,240,'Dathina, Dathina Airport (DAH)','1','0'),(1120,'','DGP',7591,119,'Daugavpils, Daugavpils International Airport (DGP)','1','0'),(1121,'CA','YDN',7594,39,'Dauphin, CA - Lt Col W G Barker VC Airport (YDN)','1','0'),(1122,'PH','DVO',7597,173,'Davao, PH - Francisco Bangoy Intl Airport (DVO)','1','0'),(1123,'PA','DAV',7603,169,'David, PA - Enrique Malek Intl Airport (DAV)','1','0'),(1124,'CA','YDA',7617,39,'Dawson City, CA - Dawson City Airport (YDA)','1','0'),(1125,'CA','YDQ',34676,39,'Dawson Creek, CA - Dawson Creek Airport (YDQ)','1','0'),(1126,'US','DAY',7627,231,'Dayton, US - James M Cox Dayton Intl Airport (DAY)','1','0'),(1127,'US','MGY',7627,231,'Dayton, US - Wright Brothers Airport (MGY)','1','0'),(1128,'','DZU',7632,46,'Dazu, Dazu Air Base (DZU)','1','0'),(1129,'BS','LGI',7637,16,'Deadmans Cay, BS - Deadmans Cay Airport (LGI)','1','0'),(1130,'','YDL',7643,39,'Dease Lake, Dease Lake Airport (YDL)','1','0'),(1131,'','DTH',7644,231,'Death Valley, Furnace Creek Airport (DTH)','1','0'),(1132,'FR','DOL',7645,76,'Deauville, FR - Deauville Airport (DOL)','1','0'),(1133,'ET','DBM',7650,70,'Debra Marcos, ET - Debre Marcos Airport (DBM)','1','0'),(1134,'HU','DEB',7651,99,'Debrecen, HU - Debrechen Intl Airport (DEB)','1','0'),(1135,'US','DEC',7653,231,'Decatur, US - Decatur Airport (DEC)','1','0'),(1136,'','DEH',7658,231,'Decorah, Decorah Municipal Airport (DEH)','1','0'),(1137,'CA','YDF',7664,39,'Deer Lake, CA - Deer Lake Regional Airport (YDF)','1','0'),(1138,'CA','YVZ',7664,39,'Deer Lake, CA - Deer Lake Airport (YVZ)','1','0'),(1139,'US','DRG',7667,231,'Deering, US - Deering Airport (DRG)','1','0'),(1140,'IN','DED',7680,101,'Dehradun, IN - Jolly Grant Airport (DED)','1','0'),(1141,'SY','DEZ',7685,211,'Deirezzor, SY - Deir ez-Zor Airport (DEZ)','1','0'),(1142,'IN','DEL',7701,101,'Delhi, IN - Indira Gandhi Intl Airport (DEL)','1','0'),(1143,'','DTA',7716,39,'Delta, Delta Municipal Airport (DTA)','1','0'),(1144,'','DDN',7718,13,'Delta Downs, Delta Downs Airport (DDN)','1','0'),(1145,'ET','DEM',7722,70,'Dembidollo, ET - Dembidollo Airport (DEM)','1','0'),(1146,'','DNM',7732,482,'Denham, Denham Airport (DNM)','1','0'),(1147,'AU','DNQ',7736,13,'Deniliquin, AU - Deniliquin (DNQ)','1','0'),(1148,'','DEI',7737,188,'Denis Island, Denis Island Airport (DEI)','1','0'),(1149,'','DNS',7738,231,'Denison, Denison Municipal Airport (DNS)','1','0'),(1150,'TR','DNZ',7739,222,'Denizli, TR - Denizli Airport (DNZ)','1','0'),(1151,'US','DEN',7748,231,'Denver, US - Denver Intl Airport (DEN)','1','0'),(1152,'','DCN',7759,482,'Derby, RAAF Base Curtin (DCN)','1','0'),(1153,'AU','DRB',7760,13,'Derby, AU - Derby Airport (DRB)','1','0'),(1154,'US','DRI',7764,231,'Deridder, US - Beauregard Regional (DRI)','1','0'),(1155,'','DNF',7766,123,'Derna, Martuba Air Base (DNF)','1','0'),(1156,'US','DSM',7773,231,'Des Moines, US - Des Moines Intl Airport (DSM)','1','0'),(1157,'','DES',7785,188,'Desroches Island, Desroches Airport (DES)','1','0'),(1158,'ET','DSE',7787,70,'Dessie, ET - Dessie Airport (DSE)','1','0'),(1159,'','DSI',7788,231,'Destin, Destin Executive Airport (DSI)','1','0'),(1160,'US','DET',7792,231,'Detroit, US - Coleman A. Young International (DET)','1','0'),(1161,'US','DTW',7792,231,'Detroit, US - Detroit Metropolitan Wayne County Airport (DTW)','1','0'),(1162,'US','YIP',7792,231,'Detroit, US - Willow Run Airport (YIP)','1','0'),(1163,'AU','DPO',7811,13,'Devonport, AU - Devonport Airport (DPO)','1','0'),(1164,'SA','DHA',7819,186,'Dhahran, SA - Dhahran Intl Airport (DHA)','1','0'),(1165,'BD','BZL',7820,18,'Dhaka, BD - Barisal Airport (BZL)','1','0'),(1166,'BD','DAC',7820,18,'Dhaka, BD - Hazrat Shahjalal Intl Airport (DAC)','1','0'),(1167,'','DBD',7821,101,'Dhanbad, Dhanbad Airport (DBD)','1','0'),(1168,'OM','BYB',7848,165,'Dibaa, OM - Dibba Airport (BYB)','1','0'),(1169,'IN','DIB',7852,101,'Dibrugarh, IN - Dibrugarh Airport (DIB)','1','0'),(1170,'','YDG',7887,39,'Digby, Digby/Annapolis Regional Airport (YDG)','1','0'),(1171,'FR','DIJ',7892,76,'Dijon, FR - Longvic Airport (DIJ)','1','0'),(1172,'ID','DIL',7901,102,'Dili, ID - Presidente Nicolau Lobato Intl Airport (DIL)','1','0'),(1173,'US','DLG',7905,231,'Dillingham, US - Dillingham Airport (DLG)','1','0'),(1174,'VU','DLY',7907,233,'Dillons Bay, VU - Dillon`s Bay Airport (DLY)','1','0'),(1175,'IN','DMU',7912,101,'Dimapur, IN - Dimapur Airport (DMU)','1','0'),(1176,'FR','DNR',7918,76,'Dinard, FR - Dinard - Saint Malo Airport (DNR)','1','0'),(1177,'ET','DIR',7936,70,'Dire Dawa, ET - Dire Dawa Airport (DIR)','1','0'),(1178,'IN','DIU',7951,101,'Diu, IN - Diu Airport (DIU)','1','0'),(1179,'TR','DIY',7961,222,'Diyarbakir, TR - Diyarbakir Airport (DIY)','1','0'),(1180,'DZ','DJG',7963,3,'Djanet, DZ - Djanet Tiska (DJG)','1','0'),(1181,'TN','DJE',7965,220,'Djerba, TN - Melita Airport (DJE)','1','0'),(1182,'DJ','JIB',7966,60,'Djibouti, DJ - Ambouli Intl Airport (JIB)','1','0'),(1183,'UA','DNK',7970,227,'Dnepropetrovsk, UA - Dnepropetrovsk Airport (DNK)','1','0'),(1184,'US','DDC',7983,231,'Dodge City, US - Dodge City Regional Airport (DDC)','1','0'),(1185,'TZ','DOD',7985,214,'Dodoma, TZ - Dodoma Airport (DOD)','1','0'),(1186,'QA','DOH',7993,177,'Doha, QA - Doha Intl Airport (DOH)','1','0'),(1187,'','XJD',7993,177,'Doha, Al Udeid Air Base (XJD)','1','0'),(1188,'CA','YDO',7996,39,'Dolbeau, CA - Dolbeau-St-Felicien (YDO)','1','0'),(1189,'FR','DLE',7999,76,'Dole, FR - Dole - Jura Airport (DLE)','1','0'),(1190,'US','DLO',8010,231,'Dolomi, US - Delano Municipal (DLO)','1','0'),(1191,'','DOP',8013,153,'Dolpa, Dolpa Airport (DOP)','1','0'),(1192,'','CBJ',8027,61,'Dominican Republic, Cabo Rojo Airport (CBJ)','1','0'),(1193,'IE','CFN',8047,105,'Donegal, IE - Donegal Airport (CFN)','1','0'),(1194,'UA','DOK',8048,227,'Donetsk, UA - Donetsk Airport (DOK)','1','0'),(1195,'','YOE',8064,231,'Donnelly, Donnelly Airport (YOE)','1','0'),(1196,'AU','DMD',8074,13,'Doomadgee Mission, AU - Doomadgee Airport (DMD)','1','0'),(1197,'US','DOF',8080,231,'Dora Bay, US - Dora Bay Airport (DOF)','1','0'),(1198,'','DOC',8097,482,'Dornoch, Dornoch Airport (DOC)','1','0'),(1199,'DE','DTM',8105,83,'Dortmund, DE - Wickede Airport (DTM)','1','0'),(1200,'US','DHN',8112,231,'Dothan, US - Dothan Regional Airport (DHN)','1','0'),(1201,'CM','DLA',8114,38,'Douala, CM - Douala Airport (DLA)','1','0'),(1202,'','DGL',8119,105,'Douglas, Douglas Municipal Airport (DGL)','1','0'),(1203,'','YDC',8169,39,'Drayton Valley, Drayton Valley Industrial Airport (YDC)','1','0'),(1204,'DE','DRS',8178,83,'Dresden, DE - Dresden Airport (DRS)','1','0'),(1205,'','DRE',8202,231,'Drummond Island, Drummond Island Airport (DRE)','1','0'),(1206,'CA','YHD',8214,39,'Dryden, CA - Dryden Regional Airport (YHD)','1','0'),(1207,'','DSC',8217,38,'Dschang, Dschang Airport (DSC)','1','0'),(1208,'','DCG',8219,228,'Dubai, Dubai Creek Seaplane Base (DCG)','1','0'),(1209,'','DJH',8219,228,'Dubai, Jebel Ali Seaplane Base (DJH)','1','0'),(1210,'AE','DXB',8219,228,'Dubai, AE - Dubai Intl Airport (DXB)','1','0'),(1211,'','NHD',8219,228,'Dubai, Al Minhad Air Base (NHD)','1','0'),(1212,'AE','XNB',8219,228,'Dubai, AE - Dubai Bus Station Airport (XNB)','1','0'),(1213,'AE','ZXZ',8219,228,'Dubai, AE - Jumeirah Beach Airport (ZXZ)','1','0'),(1214,'AU','DBO',8220,13,'Dubbo, AU - Dubbo Airport (DBO)','1','0'),(1215,'IE','DUB',8222,105,'Dublin, IE - Dublin Airport (DUB)','1','0'),(1216,'','DBS',8230,231,'Dubois, Dubois Municipal Airport (DBS)','1','0'),(1217,'US','DUJ',8230,231,'Dubois, US - DuBois Regional Airport (DUJ)','1','0'),(1218,'HR','DBV',8231,55,'Dubrovnik, HR - Dubrovnik Airport (DBV)','1','0'),(1219,'US','DBQ',8232,231,'Dubuque, US - Dubuque Regional Airport (DBQ)','1','0'),(1220,'US','DLH',8266,231,'Duluth, US - Duluth Intl Airport (DLH)','1','0'),(1221,'PH','DGT',8270,173,'Dumaguete, PH - Dumaguete Airport (DGT)','1','0'),(1222,'','DUM',8271,102,'Dumai, Pinang Kampai Airport (DUM)','1','0'),(1223,'','DNB',8283,231,'Dunbar, Dunbar Airport (DNB)','1','0'),(1224,'','DUQ',8289,39,'Duncan, Duncan Airport (DUQ)','1','0'),(1225,'GB','DND',8300,482,'Dundee, GB - Dundee Airport (DND)','1','0'),(1226,'','DUE',8301,6,'Dundo, Dundo Airport (DUE)','1','0'),(1227,'NZ','DUD',8306,157,'Dunedin, NZ - Dunedin Airport (DUD)','1','0'),(1228,'CN','DNH',8315,46,'Dunhuang, CN - Dunhuang Airport (DNH)','1','0'),(1229,'AU','DKI',8317,13,'Dunk Island, AU - Dunk Island Airport (DKI)','1','0'),(1230,'BR','CGR',8346,30,'Duque De Caxias, BR - Campo Grande Airport (CGR)','1','0'),(1231,'','AMK',8348,199,'Durango, Animas Air Park (AMK)','1','0'),(1232,'MX','DGO',8349,141,'Durango, MX - Gen Guadalupe Victoria Intl Airport (DGO)','1','0'),(1233,'US','DRO',8350,231,'Durango, US - La Plata County Airport (DRO)','1','0'),(1234,'ZA','DUR',8355,195,'Durban, ZA - King Shaka Intl (La Mercy) Airport (DUR)','1','0'),(1235,'ZA','VIR',8355,195,'Durban, ZA - Virginia Airport (VIR)','1','0'),(1236,'','RDP',8361,101,'Durgapur, Kazi Nazrul Islam Airport (RDP)','1','0'),(1237,'','DHD',8364,13,'Durham Downs, Durham Downs Airport (DHD)','1','0'),(1238,'','DRR',8368,13,'Durrie, Durrie Airport (DRR)','1','0'),(1239,'TJ','DYU',8370,213,'Dushanbe, TJ - Dushanbe Airport (DYU)','1','0'),(1240,'DE','DUS',8372,83,'Dusseldorf, DE - Dusseldorf Intl Airport (DUS)','1','0'),(1241,'DE','NRN',8372,83,'Dusseldorf, DE - Weeze Niederrhein Airport (NRN)','1','0'),(1242,'','DYA',8389,13,'Dysart, Dysart Airport (DYA)','1','0'),(1243,'YT','DZA',8390,140,'Dzaoudzi, YT - Dzaoudzi Pamandzi Intl Airport (DZA)','1','0'),(1244,'CA','YXR',8409,39,'Earlton, CA - Earlton (YXR)','1','0'),(1245,'US','HTO',30817,231,'East Hampton, US - East Hampton (HTO)','1','0'),(1246,'','ESP',30850,231,'East Stroudsburg, Stroudsburg–Pocono Airport (ESP)','1','0'),(1247,'CL','IPC',8428,45,'Easter Island, CL - Easter Island Airport (IPC)','1','0'),(1248,'US','ESD',8449,231,'Eastsound, US - Orcas Island Airport (ESD)','1','0'),(1249,'US','EAU',30861,231,'Eau Claire, US - Chippewa Valley Regional Airport (EAU)','1','0'),(1250,'AU','ECH',8482,13,'Echuca, AU - Echuca (ECH)','1','0'),(1251,'GB','EOI',8493,482,'Eday, GB - Eday Airport (EOI)','1','0'),(1252,'GB','EDI',8520,482,'Edinburgh, GB - Edinburgh International Airport (EDI)','1','0'),(1253,'CA','YEG',8528,39,'Edmonton, CA - Edmonton Intl Airport (YEG)','1','0'),(1254,'CA','YXD',8528,39,'Edmonton, CA - Edmonton City Centre Airport (Blatchford Field) Airport (YXD)','1','0'),(1255,'AU','EDR',8537,13,'Edward River, AU - Edward River Airport (EDR)','1','0'),(1256,'US','EEK',30863,231,'Eek, US - Eek Airport (EEK)','1','0'),(1257,'US','EGX',8547,231,'Egegik, US - Egegik Airport (EGX)','1','0'),(1258,'IS','EGS',8555,100,'Egilsstadir, IS - Egilsstadir Airport (EGS)','1','0'),(1259,'NL','EIN',8590,154,'Eindhoven, NL - Eindhoven Airport (EIN)','1','0'),(1260,'US','KKU',8608,231,'Ekuk, US - Ekuk Airport (KKU)','1','0'),(1261,'US','KEK',8609,231,'Ekwok, US - Ekwok Airport (KEK)','1','0'),(1262,'','DBB',30866,65,'El \'Alamein, Al Alamain International Airport (DBB)','1','0'),(1263,'','EBG',8610,49,'El Bagre, El Bagre Airport (EBG)','1','0'),(1264,'AR','EHL',30871,10,'El Bolson, AR - El Bolson (EHL)','1','0'),(1265,'US','IPL',30880,231,'El Centro, US - Imperial County Airport (IPL)','1','0'),(1266,'','EDK',30887,231,'El Dorado, Captain Jack Thomas/El Dorado Airport (EDK)','1','0'),(1267,'','EOR',30887,231,'El Dorado, El Dorado Airport (EOR)','1','0'),(1268,'DZ','ELG',8611,3,'El Golea, DZ - El Golea Airport (ELG)','1','0'),(1269,'','EMY',30903,65,'El Minya, El Minya Airport (EMY)','1','0'),(1270,'','ENI',30908,173,'El Nido, El Nido Airport (ENI)','1','0'),(1271,'US','BIF',30910,231,'El Paso, US - Biggs Army Airfield (BIF)','1','0'),(1272,'US','ELP',30910,231,'El Paso, US - El Paso Intl Airport (ELP)','1','0'),(1273,'TR','EZS',8617,222,'Elazig, TR - Elazig Airport (EZS)','1','0'),(1274,'AU','ELC',8623,13,'Elcho Island, AU - Elcho Island Airport (ELC)','1','0'),(1275,'','GCD',8631,231,'Electric City, Grand Coulee Dam Airport (GCD)','1','0'),(1276,'US','ELI',8646,231,'Elim, US - Elim Airport (ELI)','1','0'),(1277,'','MOS',8646,231,'Elim, Moses Point Airport (MOS)','1','0'),(1278,'GR','PYR',8651,86,'Elis, GR - Andravida (PYR)','1','0'),(1279,'US','EKX',8656,231,'Elizabethtown, US - Addington Field/Elizabethtown Regional (EKX)','1','0'),(1280,'','EKI',8661,231,'Elkhart, Elkhart Municipal Airport (EKI)','1','0'),(1281,'US','EKN',8664,231,'Elkins, US - Elkins-Randolph Co.-Jennings Randolph Field (EKN)','1','0'),(1282,'US','EKO',8666,231,'Elko, US - Elko Regional Airport (EKO)','1','0'),(1283,'US','ELN',8673,231,'Ellensburg, US - Bowers Field (ELN)','1','0'),(1284,'','YEL',8683,39,'Elliot Lake, Elliot Lake Municipal Airport (YEL)','1','0'),(1285,'','ELL',8685,195,'Ellisras, Ellisras Airport (ELL)','1','0'),(1286,'US','ELM',8696,231,'Elmira, US - Corning Regional Airport (ELM)','1','0'),(1287,'VU','EAE',8723,233,'Emae, VU - Siwo Airport (EAE)','1','0'),(1288,'DE','EME',8728,83,'Emden, DE - Emden (EME)','1','0'),(1289,'AU','EMD',8733,13,'Emerald, AU - Emerald Airport (EMD)','1','0'),(1290,'','EML',8740,154,'Emmen, Emmen Air Base (EML)','1','0'),(1291,'US','EMK',8747,231,'Emmonak, US - Emmonak Airport (EMK)','1','0'),(1292,'','EWI',8757,102,'Enarotali, Enarotali Airport (EWI)','1','0'),(1293,'','ENO',8761,171,'Encarnacion, Teniente Amin Ayub Gonzalez Airport (ENO)','1','0'),(1294,'ID','ENE',8764,102,'Ende, ID - H. Hasan Aroeboesman Airport (ENE)','1','0'),(1295,'TN','NBE',8769,220,'Enfidha, TN - Hammamet  Intl Airport (NBE)','1','0'),(1296,'US','WDG',8789,231,'Enid, US - Enid Woodring Regional Airport (WDG)','1','0'),(1297,'FI','ENF',8809,75,'Enontekio, FI - Enontekio Airport (ENF)','1','0'),(1298,'NL','ENS',8810,154,'Enschede, NL - Twente-Enschede (ENS)','1','0'),(1299,'UG','EBB',8817,226,'Entebbe, UG - Entebbe/Kampala Intl Airport (EBB)','1','0'),(1300,'','ETS',8818,231,'Enterprise, Enterprise Municipal Airport (ETS)','1','0'),(1301,'FR','EPL',8836,76,'Epinal, FR - Mirecourt Airport (EPL)','1','0'),(1302,'IQ','EBL',8855,104,'Erbil, IQ - Erbil Intl Airport (EBL)','1','0'),(1303,'DE','ERF',8871,83,'Erfurt, DE - Erfurt-Weimar Airport (ERF)','1','0'),(1304,'US','ERI',8878,231,'Erie, US - Erie Intl Airport/Tom Ridge Field (ERI)','1','0'),(1305,'','EDD',8884,13,'Erldunda, Erldunda Airport (EDD)','1','0'),(1306,'MA','ERH',8896,148,'Errachidia, MA - Moulay Ali Cherif Airport (ERH)','1','0'),(1307,'TR','ERZ',8906,222,'Erzurum, TR - Erzurum Airport (ERZ)','1','0'),(1308,'DK','EBJ',8907,59,'Esbjerg, DK - Esbjerg Airport (EBJ)','1','0'),(1309,'US','ESC',8912,231,'Escanaba, US - Delta County Airport (ESC)','1','0'),(1310,'EC','ESM',8938,64,'Esmeraldas, EC - General Rivadeneira Airport (ESM)','1','0'),(1311,'AU','EPR',8946,13,'Esperance, AU - Esperance Airport (EPR)','1','0'),(1312,'VU','SON',8951,233,'Espiritu Santo, VU - Pekoa Airport (SON)','1','0'),(1313,'AR','EQS',8957,10,'Esquel, AR - Esquel Airport (EQS)','1','0'),(1314,'DE','ESS',8964,83,'Essen, DE - Essen Airport (ESS)','1','0'),(1315,'US','EUG',9034,231,'Eugene, US - Eugene Airport/Mahlon Sweet Field (EUG)','1','0'),(1316,'','UCE',9039,231,'Eunice, Eunice Airport (UCE)','1','0'),(1317,'','EUE',9043,231,'Eureka, Eureka Airport (EUE)','1','0'),(1318,'','YEU',9043,231,'Eureka, Eureka Aerodrome (YEU)','1','0'),(1319,'US','EVV',9054,231,'Evansville, US - Evansville Regional Airport (EVV)','1','0'),(1320,'US','PAE',9060,231,'Everett, US - Paine Field / Snohomish County Airport (PAE)','1','0'),(1321,'','EWO',9078,51,'Ewo, Ewo Airport (EWO)','1','0'),(1322,'GB','EXT',9081,482,'Exeter, GB - Exeter Airport (EXT)','1','0'),(1323,'','EXM',9087,482,'Exmouth, Exmouth Airport (EXM)','1','0'),(1324,'NO','VDB',9125,164,'Fagernes, NO - Fagernes Airport Leirin (VDB)','1','0'),(1325,'','FIE',9134,482,'Fair Isle, Fair Isle Airport (FIE)','1','0'),(1326,'','BIG',9135,231,'Fairbanks, Allen Army Airfield (BIG)','1','0'),(1327,'US','FAI',9135,231,'Fairbanks, US - Fairbanks Intl Airport (FAI)','1','0'),(1328,'','FBK',9135,231,'Fairbanks, Ladd Army Airfield (FBK)','1','0'),(1329,'','FBY',9138,231,'Fairbury, Fairbury Municipal Airport (FBY)','1','0'),(1330,'','FFL',9140,231,'Fairfield, Fairfield Municipal Airport (FFL)','1','0'),(1331,'US','FRM',9150,231,'Fairmont, US - Fairmont Municipal (FRM)','1','0'),(1332,'','ZFW',9154,231,'Fairview, Fairview Airport (ZFW)','1','0'),(1333,'PK','LYP',9156,166,'Faisalabad, PK - Faisalabad Airport (LYP)','1','0'),(1334,'PR','FAJ',9161,176,'Fajardo, PR - Diego Jimenez Torres Airport (FAJ)','1','0'),(1335,'','FHZ',9162,78,'Fakahina, Fakahina Airport (FHZ)','1','0'),(1336,'PF','FAV',9163,78,'Fakarava, PF - Fakarava Airport (FAV)','1','0'),(1337,'','FAK',9197,231,'False Island, False Island Seaplane Base (FAK)','1','0'),(1338,'','FGU',9206,78,'Fangatau, Fangatau Airport (FGU)','1','0'),(1339,'','RVA',9217,130,'Farafangana, Farafangana Airport (RVA)','1','0'),(1340,'US','FAR',9226,231,'Fargo, US - Hector Intl Airport (FAR)','1','0'),(1341,'US','FRG',9233,231,'Farmingdale, US - Republic (FRG)','1','0'),(1342,'US','FMN',9234,231,'Farmington, US - Four Corners Regional Airport (FMN)','1','0'),(1343,'PT','FAO',9241,175,'Faro, PT - Faro Airport (FAO)','1','0'),(1344,'','ZFA',9241,175,'Faro, Faro Airport (ZFA)','1','0'),(1345,'','FEC',9298,30,'Feira De Santana, Feira de Santana Airport (FEC)','1','0'),(1346,'SB','FRE',9333,193,'Fera Island, SB - Fera Airport (FRE)','1','0'),(1347,'UZ','FEG',9339,232,'Fergana, UZ - Fergana Airport (FEG)','1','0'),(1348,'','FEA',9382,482,'Fetlar, Fetlar Airport (FEA)','1','0'),(1349,'MA','FEZ',9389,148,'Fez, MA - Fez Airport (FEZ)','1','0'),(1350,'','WFI',9390,130,'Fianarantsoa, Fianarantsoa Airport (WFI)','1','0'),(1351,'','FCB',9392,195,'Ficksburg, Ficksburg Airport (FCB)','1','0'),(1352,'FR','FSC',9405,76,'Figari, FR - Figari Airport (FSC)','1','0'),(1353,'','FNH',9425,70,'Fincha, Fincha Airport (FNH)','1','0'),(1354,'US','FLG',9498,231,'Flagstaff, US - Flagstaff Pulliam Airport (FLG)','1','0'),(1355,'','FLT',9504,231,'Flat, Flat Airport (FLT)','1','0'),(1356,'','FLI',9506,100,'Flateyri, Holt Airport (FLI)','1','0'),(1357,'US','AVL',9517,231,'Fletcher, US - Asheville Regional Airport (AVL)','1','0'),(1358,'CA','YFO',9529,39,'Flin Flon, CA - Flin Flon Airport (YFO)','1','0'),(1359,'AU','FLS',9530,13,'Flinders, AU - Flinders Island Airport (FLS)','1','0'),(1360,'US','FNT',9531,231,'Flint, US - Bishop Intl Airport (FNT)','1','0'),(1361,'US','FLO',9543,231,'Florence, US - Florence Regional Airport (FLO)','1','0'),(1362,'','FMU',9543,231,'Florence, Florence Municipal Airport (FMU)','1','0'),(1363,'IT','FLR',9544,107,'Florence, IT - Amerigo Vespucci Airport (FLR)','1','0'),(1364,'GT','FRS',9552,91,'Flores, GT - Mundo Maya Intl Airport (FRS)','1','0'),(1365,'BR','FLN',9556,30,'Florianopolis, BR - Hercilio Luz Airport (FLN)','1','0'),(1366,'NO','FRO',9564,164,'Floro, NO - Floro Airport (FRO)','1','0'),(1367,'','NHX',9595,231,'Foley, NOLF Barin (NHX)','1','0'),(1368,'CA','ZFD',9609,39,'Fond Du Lac, CA - Fond-du-Lac Airport (ZFD)','1','0'),(1369,'','YFG',9617,76,'Fontanges, Fontanges Airport (YFG)','1','0'),(1370,'','FRB',9640,13,'Forbes, Forbes Airport (FRB)','1','0'),(1371,'NO','FDE',9647,164,'Forde, NO - Forde Airport Bringeland (FDE)','1','0'),(1372,'','YFE',9657,39,'Forestville, Forestville Airport (YFE)','1','0'),(1373,'','UIL',9667,231,'Forks, Quillayute Airport (UIL)','1','0'),(1374,'IT','FRL',9668,107,'Forli, IT - Luigi Ridolfi Airport (FRL)','1','0'),(1375,'AR','FMA',9676,10,'Formosa, AR - El Pucu / Formosa Intl Airport (FMA)','1','0'),(1376,'','LLS',9676,10,'Formosa, Alférez Armando Rodríguez Airport (LLS)','1','0'),(1377,'','FOS',9683,13,'Forrest, Forrest Airport (FOS)','1','0'),(1378,'CA','YFA',9691,39,'Fort Albany, CA - Fort Albany Airport (YFA)','1','0'),(1379,'','FOB',30979,231,'Fort Bragg, Fort Bragg Airport (FOB)','1','0'),(1380,'','FBR',30980,231,'Fort Bridger, Fort Bridger Airport (FBR)','1','0'),(1381,'CA','YPY',34681,39,'Fort Chipewyan, CA - Fort Chipewyan Airport (YPY)','1','0'),(1382,'US','FOD',30987,231,'Fort Dodge, US - Fort Dodge Regional Airport (FOD)','1','0'),(1383,'CA','YAG',34683,39,'Fort Frances, CA - Fort Frances Municipal Airport (YAG)','1','0'),(1384,'CA','YGH',34684,39,'Fort Good Hope, CA - Fort Good Hope Airport (YGH)','1','0'),(1385,'CA','YFH',34685,39,'Fort Hope, CA - Fort Hope Airport (YFH)','1','0'),(1386,'US','FHU',30991,231,'Fort Huachuca, US - Sierra Vista Municipal Airport (FHU)','1','0'),(1387,'US','FLL',30993,231,'Fort Lauderdale, US - Hollywood Intl Airport (FLL)','1','0'),(1388,'','FMS',31001,231,'Fort Madison, Fort Madison Municipal Airport (FMS)','1','0'),(1389,'CA','YMM',34688,39,'Fort Mcmurray, CA - Fort McMurray Airport (YMM)','1','0'),(1390,'US','FMY',31009,231,'Fort Myers, US - Page Field (FMY)','1','0'),(1391,'US','RSW',31009,231,'Fort Myers, US - Southwest Florida Intl Airport (RSW)','1','0'),(1392,'CA','ZFN',34690,39,'Fort Norman, CA - Tulita Airport (ZFN)','1','0'),(1393,'US','FPR',31015,231,'Fort Pierce, US - St Lucie County Intl Airport (FPR)','1','0'),(1394,'CA','YFR',34692,39,'Fort Resolution, CA - Fort Resolution Airport (YFR)','1','0'),(1395,'US','FSM',31021,231,'Fort Smith, US - Ft. Smith Regional Airport (FSM)','1','0'),(1396,'CA','YSM',34695,39,'Fort Smith, CA - Fort Smith (YSM)','1','0'),(1397,'','FSU',31024,231,'Fort Sumner, Fort Sumner Municipal Airport (FSU)','1','0'),(1398,'US','FWA',31029,231,'Fort Wayne, US - Fort Wayne Intl Airport (FWA)','1','0'),(1399,'','FWH',31031,231,'Fort Worth, NAS Fort Worth JRB (FWH)','1','0'),(1400,'BR','FOR',9694,30,'Fortaleza, BR - Pinto Martins Airport (FOR)','1','0'),(1401,'','FOU',9718,80,'Fougamou, Fougamou Airport (FOU)','1','0'),(1402,'BR','FRC',9750,30,'Franca, BR - Franca (FRC)','1','0'),(1403,'','MVB',9753,80,'Franceville, M\'Vengue El Hadj Omar Bongo Ondimba International Airport (MVB)','1','0'),(1404,'BW','FRW',9754,28,'Francistown, BW - Francistown Airport (FRW)','1','0'),(1405,'DE','FRA',9764,83,'Frankfurt, DE - Frankfurt am Main Airport (FRA)','1','0'),(1406,'DE','HHN',9764,83,'Frankfurt, DE - Frankfurt-Hahn Airport (HHN)','1','0'),(1407,'US','FKL',9765,231,'Franklin, US - Venango Regional Airport (FKL)','1','0'),(1408,'CA','YFC',9796,39,'Fredericton, CA - Fredericton Intl Airport (YFC)','1','0'),(1409,'GL','JFR',9799,87,'Frederikshaab, GL - Paamiut Airport (JFR)','1','0'),(1410,'US','FEP',9813,231,'Freeport, US - Albertus (FEP)','1','0'),(1411,'BS','FPO',9814,16,'Freeport, BS - Freeport Intl Airport (FPO)','1','0'),(1412,'SL','FNA',9816,189,'Freetown, SL - Lungi Intl Airport (FNA)','1','0'),(1413,'SL','HGS',9816,189,'Freetown, SL - Hastings Airport (HGS)','1','0'),(1414,'US','FAT',9848,231,'Fresno, US - Fresno Yosemite Intl Airport (FAT)','1','0'),(1415,'US','FRD',9855,231,'Friday Harbor, US - Friday Harbor Airport (FRD)','1','0'),(1416,'DE','FDH',9865,83,'Friedrichshafen, DE - Bodensee Airport (FDH)','1','0'),(1417,'','HNC',9878,231,'Frisco, Billy Mitchell Airport (HNC)','1','0'),(1418,'','FRT',9898,45,'Frutillar, Frutillar Airport (FRT)','1','0'),(1419,'','FRY',9901,231,'Fryeburg, Eastern Slopes Regional Airport (FRY)','1','0'),(1420,'ES','FUE',9929,199,'Fuerteventura, ES - Fuerteventura Airport (FUE)','1','0'),(1421,'JP','FUJ',9944,110,'Fukue, JP - Goto-Fukue Airport (FUJ)','1','0'),(1422,'JP','FUK',9946,110,'Fukuoka, JP - Fukuoka Airport (FUK)','1','0'),(1423,'US','FUL',9953,231,'Fullerton, US - Fullerton Municipal (FUL)','1','0'),(1424,'PT','FNC',9963,175,'Funchal, PT - Madeira Funchal Airport (FNC)','1','0'),(1425,'VU','FTA',9988,233,'Futuna Island, VU - Futuna Airport (FTA)','1','0'),(1426,'','FYN',9992,46,'Fuyun, Fuyun Koktokay Airport (FYN)','1','0'),(1427,'CN','FOC',9994,46,'Fuzhou, CN - Fuzhou Changle Intl Airport (FOC)','1','0'),(1428,'BW','GBE',10001,28,'Gaborone, BW - Sir Seretse Khama Intl Airport (GBE)','1','0'),(1429,'','SYF',10002,39,'Gabriola Island, Silva Bay Seaplane Base (SYF)','1','0'),(1430,'US','GAD',10006,231,'Gadsden, US - Northeast Alabama Regional (GAD)','1','0'),(1431,'','GAG',10010,231,'Gage, Gage Airport (GAG)','1','0'),(1432,'US','GNV',10020,231,'Gainesville, US - Gainesville Regional Airport (GNV)','1','0'),(1433,'US','GAL',10046,231,'Galena, US - Edward G Pitka Sr Airport (GAL)','1','0'),(1434,'','YMF',10052,39,'Galiano Island, Montague Harbour Water Aerodrome (YMF)','1','0'),(1435,'SE','GEV',10066,209,'Gallivare, SE - Gallivare Airport (GEV)','1','0'),(1436,'US','GUP',10069,231,'Gallup, US - Gallup Municipal (GUP)','1','0'),(1437,'US','GLS',10074,231,'Galveston, US - Scholes International at Galveston (GLS)','1','0'),(1438,'','GAX',10079,80,'Gamba, Gamba Airport (GAX)','1','0'),(1439,'ET','GMB',10084,70,'Gambela, ET - Gambela Airport (GMB)','1','0'),(1440,'US','GAM',10085,231,'Gambell, US - Gambell Airport (GAM)','1','0'),(1441,'CA','YQX',10097,39,'Gander, CA - Gander Intl Airport (YQX)','1','0'),(1442,'CN','KOW',10111,46,'Ganzhou, CN - Ganzhou Huangjin Airport (KOW)','1','0'),(1443,'','XGA',10114,35,'Gaoua, Gaoua Airport (XGA)','1','0'),(1444,'US','GCK',31039,231,'Garden City, US - Garden City Regional Airport (GCK)','1','0'),(1445,'CM','GOU',10165,38,'Garoua, CM - Garoua Intl Airport (GOU)','1','0'),(1446,'CA','YGP',10185,39,'Gaspe, CA - Michel Pouliot Gaspe Airport (YGP)','1','0'),(1447,'SA','ELQ',10188,186,'Gassim, SA - Gassim Airport (ELQ)','1','0'),(1448,'CA','YND',10198,39,'Gatineau, CA - Gatineau Ottawa Executive Airport (YND)','1','0'),(1449,'','GAH',10227,13,'Gayndah, Gayndah Airport (GAH)','1','0'),(1450,'TR','GZT',10229,222,'Gaziantep, TR - Sazgin Airport (GZT)','1','0'),(1451,'','BDT',10232,74,'Gbadolite, Gbadolite Airport (BDT)','1','0'),(1452,'PL','GDN',10233,174,'Gdansk, PL - Rebiechowo Airport (GDN)','1','0'),(1453,'','GEB',10236,102,'Gebe, Gebe Airport (GEB)','1','0'),(1454,'','GLC',10253,70,'Geladi, Geladi Airport (GLC)','1','0'),(1455,'ET','ETE',10269,70,'Genda Wuha, ET - Genda Wuha Airport (ETE)','1','0'),(1456,'AR','GNR',10271,10,'General Roca, AR - Dr. Arturo Umberto Illia (GNR)','1','0'),(1457,'CH','GVA',10276,210,'Geneva, CH - Geneva (Cointrin) Intl Airport (GVA)','1','0'),(1458,'IT','GOA',10282,107,'Genoa, IT - Cristoforo Colombo Airport (GOA)','1','0'),(1459,'ZA','GRJ',10294,195,'George, ZA - George Airport (GRJ)','1','0'),(1460,'','GEE',10295,132,'George Town, George Town Aerodrome (GEE)','1','0'),(1461,'BS','GGT',10297,16,'George Town, BS - George Town - Exuma Island Airport (GGT)','1','0'),(1462,'','GTT',10300,39,'Georgetown, Georgetown Airport (GTT)','1','0'),(1463,'GY','GEO',10304,94,'Georgetown, GY - Timehri Airport (GEO)','1','0'),(1464,'CA','YGQ',10313,39,'Geraldton, CA - Greenstone Regional Airport (YGQ)','1','0'),(1465,'AU','GET',10314,13,'Geraldton, AU - Geraldton Airport (GET)','1','0'),(1466,'AU','GEX',10314,13,'Geraldton, AU - Geelong Airport (closed) (GEX)','1','0'),(1467,'ES','GRO',10344,199,'Gerona, ES - Girona-Costa Brava Airport (GRO)','1','0'),(1468,'CA','ZGS',10357,39,'Gethsemani, CA - La Romaine Airport (ZGS)','1','0'),(1469,'','GTY',10358,231,'Gettysburg, Gettysburg Regional Airport (GTY)','1','0'),(1470,'LY','LTD',10365,123,'Ghadames, LY - Ghadames Airport (LTD)','1','0'),(1471,'','GNZ',10369,28,'Ghanzi, Ghanzi Airport (GNZ)','1','0'),(1472,'DZ','GHA',10370,3,'Ghardaia, DZ - Noumerat-Moufdi Zakaria Airport (GHA)','1','0'),(1473,'LY','GHT',10371,123,'Ghat, LY - Ghat Airport (GHT)','1','0'),(1474,'GI','GIB',10389,85,'Gibraltar, GI - North Front Airport (GIB)','1','0'),(1475,'CA','YGX',10419,39,'Gillam, CA - Gillam Airport (YGX)','1','0'),(1476,'US','GCC',10423,231,'Gillette, US - Campbell County Airport (GCC)','1','0'),(1477,'','AQY',10452,231,'Girdwood, Girdwood Airport (AQY)','1','0'),(1478,'NZ','GIS',10457,157,'Gisborne, NZ - Gisborne Airport (GIS)','1','0'),(1479,'','GYI',10459,508,'Gisenyi, Gisenyi Airport (GYI)','1','0'),(1480,'','GIY',10472,195,'Giyani, Giyani Airport (GIY)','1','0'),(1481,'SA','GIZ',10474,186,'Gizan, SA - Gizan Airport (GIZ)','1','0'),(1482,'SB','GZO',10475,193,'Gizo, SB - Nusatupe Airport (GZO)','1','0'),(1483,'CA','YHK',10480,39,'Gjoa Haven, CA - Gjoa Haven Airport (YHK)','1','0'),(1484,'AU','GLT',10488,13,'Gladstone, AU - Gladstone Airport (GLT)','1','0'),(1485,'US','GDV',10515,231,'Glendive, US - Dawson Community Airport (GDV)','1','0'),(1486,'','GLG',10525,13,'Glengyle, Glengyle Airport (GLG)','1','0'),(1487,'','GLB',10551,231,'Globe, San Carlos Apache Airport (GLB)','1','0'),(1488,'GB','GLO',10561,482,'Gloucester, GB - Gloucestershire Airport (GLO)','1','0'),(1489,'IN','GOI',10576,101,'Goa, IN - Dabolim Airport (GOI)','1','0'),(1490,'ET','GOB',10578,70,'Goba, ET - Goba Airport (GOB)','1','0'),(1491,'','GGS',10579,10,'Gobernador Gregores, Gobernador Gregores Airport (GGS)','1','0'),(1492,'GL','JGO',10592,87,'Godhavn, GL - Qeqertarsuaq Heliport (JGO)','1','0'),(1493,'CA','YGO',10594,39,'Gods Narrows, CA - Gods Lake Narrows Airport (YGO)','1','0'),(1494,'CA','ZGI',34706,39,'Gods River, CA - Gods River Airport (ZGI)','1','0'),(1495,'BR','GYN',10607,30,'Goiania, BR - Santa Genoveva Airport (GYN)','1','0'),(1496,'','GLL',10610,164,'Gol, Gol Airport, Klanten (GLL)','1','0'),(1497,'CR','GLF',10635,54,'Golfito, CR - Golfito Airport (GLF)','1','0'),(1498,'US','GLV',10640,231,'Golovin, US - Golovin Airport (GLV)','1','0'),(1499,'BY','GME',10645,20,'Gomel, BY - Gomel Airport (GME)','1','0'),(1500,'ET','GDQ',10650,70,'Gondar, ET - Gondar Airport (GDQ)','1','0'),(1501,'','GNG',10666,231,'Gooding, Gooding Municipal Airport (GNG)','1','0'),(1502,'US','GLD',10667,231,'Goodland, US - Goodland Municipal (Renner Field) (GLD)','1','0'),(1503,'US','GYR',10673,231,'Goodyear, US - Phoenix Goodyear (GYR)','1','0'),(1504,'','GOO',10677,13,'Goondiwindi, Goondiwindi Airport (GOO)','1','0'),(1505,'','GOC',10684,110,'Gora, Gora Airport (GOC)','1','0'),(1506,'IN','GOP',10685,101,'Gorakhpur, IN - Gorakhpur Airport (GOP)','1','0'),(1507,'','GRN',10688,231,'Gordon, Gordon Municipal Airport (GRN)','1','0'),(1508,'ET','GOR',10693,70,'Gore, ET - Gore Airport (GOR)','1','0'),(1509,'','YZE',10694,39,'Gore Bay, Gore Bay-Manitoulin Airport (YZE)','1','0'),(1510,'BG','GOZ',10711,34,'Gorna Orechovitsa, BG - Gorna Oryahovitsa Airport (GOZ)','1','0'),(1511,'PG','GKA',10713,170,'Goroka, PG - Goroka Airport (GKA)','1','0'),(1512,'','XGG',10715,35,'Gorom-gorom, Gorom Gorom Airport (XGG)','1','0'),(1513,'ID','GTO',10716,102,'Gorontalo, ID - Jalaluddin Airport (GTO)','1','0'),(1514,'','GOS',10721,13,'Gosford, Gosford Airport (GOS)','1','0'),(1515,'SE','GOT',10734,209,'Gothenburg, SE - Landvetter Airport (GOT)','1','0'),(1516,'SE','GSE',10734,209,'Gothenburg, SE - Gothenburg City Airport (GSE)','1','0'),(1517,'AU','GUL',10744,13,'Goulburn, AU - Goulburn (GUL)','1','0'),(1518,'BS','GHB',10763,16,'Governors Harbour, BS - Governors Harbour - Eleuthera Airport (GHB)','1','0'),(1519,'','OYA',10764,10,'Goya, Goya Airport (OYA)','1','0'),(1520,'','AHS',10780,97,'Gracias, Ahuas Airport (AHS)','1','0'),(1521,'','GAC',10780,97,'Gracias, Gracias Airport (GAC)','1','0'),(1522,'PT','GRW',10781,175,'Graciosa Island, PT - Graciosa Airport (GRW)','1','0'),(1523,'AU','GFN',10794,13,'Grafton, AU - Grafton Airport (GFN)','1','0'),(1524,'ES','GRX',10810,199,'Granada, ES - Federico Garcia Lorca Granada-Jaen Airport (GRX)','1','0'),(1525,'US','GCN',31054,231,'Grand Canyon, US - Grand Canyon National Park Airport (GCN)','1','0'),(1526,'','VLE',31054,231,'Grand Canyon, Valle Airport (VLE)','1','0'),(1527,'US','GFK',31060,231,'Grand Forks, US - Grand Forks Intl Airport (GFK)','1','0'),(1528,'US','GRI',31062,231,'Grand Island, US - Central Nebraska Regional Airport (GRI)','1','0'),(1529,'US','GJT',31064,231,'Grand Junction, US - Grand Junction Regional Airport (GJT)','1','0'),(1530,'','GRM',31067,231,'Grand Marais, Grand Marais/Cook County Airport (GRM)','1','0'),(1531,'US','GPZ',31072,231,'Grand Rapids, US - Grand Rapids-Itasca County Airport (GPZ)','1','0'),(1532,'US','GRR',31072,231,'Grand Rapids, US - Gerald R. Ford Intl Airport (GRR)','1','0'),(1533,'','GBJ',10828,89,'Grand-bourg, Marie-Galante Airport (GBJ)','1','0'),(1534,'','YGC',10832,39,'Grande Cache, Grande Cache Airport (YGC)','1','0'),(1535,'CA','YQU',34714,39,'Grande Prairie, CA - Grande Prairie Airport (YQU)','1','0'),(1536,'','IDH',10849,231,'Grangeville, Idaho County Airport (IDH)','1','0'),(1537,'US','KGX',10891,231,'Grayling, US - Grayling Airport (KGX)','1','0'),(1538,'US','GRB',31077,231,'Green Bay, US - Austin Straubel Intl Airport (GRB)','1','0'),(1539,'TW','GNI',10916,212,'Green Island, TW - Lyudao (Green Island) Airport (GNI)','1','0'),(1540,'','GVI',31082,231,'Green River, Green River Airport (GVI)','1','0'),(1541,'','RVR',31082,231,'Green River, Green River Municipal Airport (RVR)','1','0'),(1542,'US','GSO',10935,231,'Greensboro, US - Piedmont Triad Intl Airport (GSO)','1','0'),(1543,'US','INT',10935,231,'Greensboro, US - Smith Reynolds Airport (INT)','1','0'),(1544,'','GDC',10941,231,'Greenville, Donaldson Center Airport (GDC)','1','0'),(1545,'US','GLH',10941,231,'Greenville, US - Mid Delta Regional Airport (GLH)','1','0'),(1546,'US','GSP',10941,231,'Greenville, US - Greenville Spartanburg Intl Airport (GSP)','1','0'),(1547,'US','PGV',10941,231,'Greenville, US - Pitt Greenville Airport (PGV)','1','0'),(1548,'','SNI',10941,231,'Greenville, Greenville/Sinoe Airport (SNI)','1','0'),(1549,'GD','GND',10957,88,'Grenada, GD - Point Saline Intl Airport (GND)','1','0'),(1550,'FR','GNB',10960,76,'Grenoble, FR - St Geoirs Airport (GNB)','1','0'),(1551,'US','GEY',10979,231,'Greybull, US - South Big Horn County (GEY)','1','0'),(1552,'','GMN',10981,157,'Greymouth, Greymouth Airport (GMN)','1','0'),(1553,'AU','GFF',10989,13,'Griffith, AU - Griffith Airport (GFF)','1','0'),(1554,'IS','GRY',10999,100,'Grimsey, IS - Grimsey Airport (GRY)','1','0'),(1555,'CA','YGZ',11009,39,'Grise Fiord, CA - Grise Fiord Airport (YGZ)','1','0'),(1556,'NL','GRQ',11025,154,'Groningen, NL - Groningen Airport Eelde (GRQ)','1','0'),(1557,'AU','GTE',11030,13,'Groote Eylandt, AU - Groote Eylandt Airport (GTE)','1','0'),(1558,'US','GON',11052,231,'Groton, US - Groton - New London Airport (GON)','1','0'),(1559,'RU','GRV',11062,181,'Groznyj, RU - Grozny Airport (GRV)','1','0'),(1560,'','GDP',11083,141,'Guadalupe, Guadalupe Airport (GDP)','1','0'),(1561,'HN','GJA',11103,97,'Guanaja, HN - Guanaja Airport (GJA)','1','0'),(1562,'CN','ZUI',11106,46,'Guangdong, CN - GUANGDONG Airport (ZUI)','1','0'),(1563,'','GHN',11107,46,'Guanghan, Guanghan Airport (GHN)','1','0'),(1564,'CN','CAN',11108,46,'Guangzhou, CN - Guangzhou Baiyun Intl Airport (CAN)','1','0'),(1565,'CO','GPI',11114,49,'Guapi, CO - Juan Casiano Solis Airport (GPI)','1','0'),(1566,'','GUZ',11117,30,'Guarapari, Guarapari Airport (GUZ)','1','0'),(1567,'EC','GYE',11135,64,'Guayaquil, EC - Jose Joaquin de Olmedo Intl Airport (GYE)','1','0'),(1568,'BO','GYA',11136,26,'Guayaramerin, BO - Guayaramerin Airport (GYA)','1','0'),(1569,'MX','GYM',11138,141,'Guaymas, MX - Gen Jose Maria Yanez Intl Airport (GYM)','1','0'),(1570,'GB','GCI',11156,482,'Guernsey, GB - Guernsey Airport (GCI)','1','0'),(1571,'CN','KWL',11177,46,'Guilin, CN - Guilin Liangjiang Intl Airport (KWL)','1','0'),(1572,'CN','KWE',11190,46,'Guiyang, CN - Guiyang Longdongbao Intl Airport (KWE)','1','0'),(1573,'','BFJ',11191,46,'Guizhou, Bijie Feixiong Airport (BFJ)','1','0'),(1574,'','ULU',11200,226,'Gulu, Gulu Airport (ULU)','1','0'),(1575,'','GUX',11209,101,'Guna, Guna Airport (GUX)','1','0'),(1576,'','GUH',11215,13,'Gunnedah, Gunnedah Airport (GUH)','1','0'),(1577,'US','GUC',11216,231,'Gunnison, US - Crested Butte Regional Airport (GUC)','1','0'),(1578,'MY','MZV',11219,132,'Gunung Mulu National Park, MY - Mulu Airport (MZV)','1','0'),(1579,'SA','URY',11223,186,'Gurayat, SA - Gurayat Airport (URY)','1','0'),(1580,'','GRP',11228,30,'Gurupi, Gurupi Airport (GRP)','1','0'),(1581,'','BQV',11233,231,'Gustavus, Bartlett Cove Seaplane Base (BQV)','1','0'),(1582,'IN','GAU',11240,101,'Guwahati, IN - Borjhar Airport (GAU)','1','0'),(1583,'IN','GWL',11248,101,'Gwalior, IN - Gwalior Airport (GWL)','1','0'),(1584,'','GWE',11251,243,'Gweru, Thornhill Air Base (GWE)','1','0'),(1585,'AU','GYP',11259,13,'Gympie, AU - Gympie (GYP)','1','0'),(1586,'US','HGR',11310,231,'Hagerstown, US - Hagerstown Airport (HGR)','1','0'),(1587,'IL','HFA',11328,106,'Haifa, IL - Haifa Airport (HFA)','1','0'),(1588,'CN','HAK',11332,46,'Haikou, CN - Haikou Meilan Intl Airport (HAK)','1','0'),(1589,'SA','HAS',11334,186,'Hail, SA - Hail Airport (HAS)','1','0'),(1590,'CN','HLD',11335,46,'Hailar, CN - Hailar Dongshan Airport (HLD)','1','0'),(1591,'US','SUN',11336,231,'Hailey, US - Friedman Memorial Airport (SUN)','1','0'),(1592,'US','HNS',11346,231,'Haines, US - Haines Airport (HNS)','1','0'),(1593,'','YHT',11347,39,'Haines Junction, Haines Junction Airport (YHT)','1','0'),(1594,'JP','HKD',11357,110,'Hakodate, JP - Hakodate Airport (HKD)','1','0'),(1595,'CA','YAW',11381,39,'Halifax, CA - Halifax/Shearwater (YAW)','1','0'),(1596,'CA','YHZ',11381,39,'Halifax, CA - Robert Stanfield Intl Airport (YHZ)','1','0'),(1597,'CA','YUX',11384,39,'Hall Beach, CA - Hall Beach Airport (YUX)','1','0'),(1598,'AU','HCQ',11398,13,'Halls Creek, AU - Halls Creek (HCQ)','1','0'),(1599,'SE','HAD',11404,209,'Halmstad, SE - Halmstad Airport (HAD)','1','0'),(1600,'DE','HAM',11426,83,'Hamburg, DE - Hamburg-Fuhlsbuttel Airport (HAM)','1','0'),(1601,'DE','LBC',11426,83,'Hamburg, DE - Lubeck Blankensee Airport (LBC)','1','0'),(1602,'NZ','HLZ',11437,157,'Hamilton, NZ - Hamilton (New Zealand) Airport (HLZ)','1','0'),(1603,'US','HAO',11434,231,'Hamilton, US - Butler County Regional (HAO)','1','0'),(1604,'CA','YHM',11435,39,'Hamilton, CA - John Munro Hamilton Intl Airport (YHM)','1','0'),(1605,'NO','HFT',11445,164,'Hammerfest, NO - Hammerfest Airport (HFT)','1','0'),(1606,'','HPT',11454,13,'Hampton, Hampton Municipal Airport (HPT)','1','0'),(1607,'US','CMX',11469,231,'Hancock, US - Hancock County Memorial Airport (CMX)','1','0'),(1608,'VN','HAN',11487,236,'Hanoi, VN - Noi-Bai Airport (HAN)','1','0'),(1609,'ZW','HRE',11507,243,'Harare, ZW - Harare Intl Airport (HRE)','1','0'),(1610,'CN','HRB',11510,46,'Harbin, CN - Harbin Taiping Intl Airport (HRB)','1','0'),(1611,'US','HRL',11543,231,'Harlingen, US - Valley Intl Airport (HRL)','1','0'),(1612,'','CPA',11551,231,'Harper, Cape Palmas Airport (CPA)','1','0'),(1613,'','HAR',11558,231,'Harrisburg, Capital City Airport (HAR)','1','0'),(1614,'','HSB',11558,231,'Harrisburg, Harrisburg-Raleigh Airport (HSB)','1','0'),(1615,'US','MDT',11558,231,'Harrisburg, US - Harrisburg Intl Airport (MDT)','1','0'),(1616,'US','GPT',11561,231,'Harrison, US - Biloxi Intl Airport (GPT)','1','0'),(1617,'US','HRO',11561,231,'Harrison, US - Boone County Airport (HRO)','1','0'),(1618,'US','BDL',11574,231,'Hartford, US - Bradley Intl Airport (BDL)','1','0'),(1619,'US','HFD',11574,231,'Hartford, US - Brainard - Hartford (HFD)','1','0'),(1620,'','YTB',11581,39,'Hartley Bay, Hartley Bay Water Aerodrome (YTB)','1','0'),(1621,'','HKV',11598,34,'Haskovo, Haskovo Malevo Airport (HKV)','1','0'),(1622,'DZ','HME',11605,3,'Hassi Messaoud, DZ - Oued Irara-Krim Belkacem Airport (HME)','1','0'),(1623,'US','HSI',11610,231,'Hastings, US - Hastings Municipal (HSI)','1','0'),(1624,'NO','HAA',11615,164,'Hasvik, NO - Hasvik Airport (HAA)','1','0'),(1625,'TH','HDY',11617,215,'Hat Yai, TH - Hat Yai Airport (HDY)','1','0'),(1626,'JP','HTR',11622,110,'Hateruma, JP - Hateruma (HTR)','1','0'),(1627,'US','HBG',11632,231,'Hattiesburg, US - Bobby L. Chain Municipal (HBG)','1','0'),(1628,'NO','HAU',11637,164,'Haugesund, NO - Haugesund Airport Karmoy (HAU)','1','0'),(1629,'','UPB',11654,231,'Havana, Playa Baracoa Airport (UPB)','1','0'),(1630,'CU','HAV',11655,56,'Havana, CU - Jose Marti Intl Airport (HAV)','1','0'),(1631,'US','HVR',11669,231,'Havre, US - Havre City-County Airport (HVR)','1','0'),(1632,'','HWK',11689,13,'Hawker, Wilpena Pound Airport (HWK)','1','0'),(1633,'US','HHR',11703,231,'Hawthorne, US - Hawthorne Municipal (Jack Northrop Field) (HHR)','1','0'),(1634,'','HTH',11703,231,'Hawthorne, Hawthorne Industrial Airport (HTH)','1','0'),(1635,'AU','HXX',11704,13,'Hay, AU - Hay (HXX)','1','0'),(1636,'US','HDN',11706,231,'Hayden, US - Yampa Valley Regional Airport (HDN)','1','0'),(1637,'US','SBS',11706,231,'Hayden, US - Steamboat Springs (Bob Adams Field) (SBS)','1','0'),(1638,'AU','HIS',11713,13,'Hayman, AU - Hayman Island Airport (HIS)','1','0'),(1639,'US','HYS',11715,231,'Hays, US - Hays Regional Airport (HYS)','1','0'),(1640,'','HZV',11735,195,'Hazyview, Hazyview Airport (HZV)','1','0'),(1641,'','YHF',11745,39,'Hearst, Hearst (René Fontaine) Municipal Airport (YHF)','1','0'),(1642,'CN','HFE',11771,46,'Hefei, CN - Hefei Luogang Intl Airport (HFE)','1','0'),(1643,'','HEI',31109,83,'Heide, Heide–Büsum Airport (HEI)','1','0'),(1644,'US','HLN',11808,231,'Helena, US - Helena Regional Airport (HLN)','1','0'),(1645,'DE','HGL',11812,83,'Helgoland, DE - Heligoland Airport (HGL)','1','0'),(1646,'SE','AGH',11831,209,'Helsingborg, SE - Helsingborg Airport (AGH)','1','0'),(1647,'FI','HEL',11834,75,'Helsinki, FI - Vantaa Airport (HEL)','1','0'),(1648,'US','HMT',11841,231,'Hemet, US - Hemet Ryan (HMT)','1','0'),(1649,'','HNY',11854,46,'Hengyang, Hengyang Nanyue Airport (HNY)','1','0'),(1650,'','HMG',11905,83,'Hermannsburg, Hermannsburg Airport (HMG)','1','0'),(1651,'','HES',11915,482,'Hermiston, Hermiston Municipal Airport (HES)','1','0'),(1652,'MX','HMO',11920,141,'Hermosillo, MX - Gen Ignacio Pesqueira Intl Airport (HMO)','1','0'),(1653,'AU','HVB',11946,13,'Hervey Bay, AU - Hervey Bay Airport (HVB)','1','0'),(1654,'US','HIB',11984,231,'Hibbing, US - Range Regional Airport (HIB)','1','0'),(1655,'US','HKY',11985,231,'Hickory, US - Hickory Regional Airport (HKY)','1','0'),(1656,'CA','YOJ',12005,39,'High Level, CA - High Level (YOJ)','1','0'),(1657,'','HGE',12018,235,'Higuerote, Higuerote Airport (HGE)','1','0'),(1658,'','HLC',31112,231,'Hill City, Hill City Municipal Airport (HLC)','1','0'),(1659,'','HLL',12040,231,'Hillside, Hillside Airport (HLL)','1','0'),(1660,'US','ITO',31113,231,'Hilo, US - Hilo Intl Airport (ITO)','1','0'),(1661,'','YJP',12070,231,'Hinton, Hinton/Jasper-Hinton Airport (YJP)','1','0'),(1662,'','HSS',12082,34,'Hisar, Hisar Airport (HSS)','1','0'),(1663,'VN','SGN',31115,236,'Ho Chi Minh City, VN - Tan Son Nhut Airport (SGN)','1','0'),(1664,'','HBR',12102,231,'Hobart, Hobart Regional Airport (HBR)','1','0'),(1665,'AU','HBA',12103,13,'Hobart, AU - Hobart Intl Airport (HBA)','1','0'),(1666,'','HBB',12104,231,'Hobbs, Hobbs Industrial Airpark (HBB)','1','0'),(1667,'US','HOB',12104,231,'Hobbs, US - Lea County Regional Airport (HOB)','1','0'),(1668,'YE','HOD',12119,240,'Hodeidah, YE - Hodeidah Intl Airport (HOD)','1','0'),(1669,'DE','HOQ',31119,83,'Hof, DE - Plauen Airport (HOQ)','1','0'),(1670,'CN','HET',12147,46,'Hohhot, CN - Hohhot Baita Intl Airport (HET)','1','0'),(1671,'NZ','HKK',12155,157,'Hokitika, NZ - Hokitika Airport (HKK)','1','0'),(1672,'JP','AKJ',12156,110,'Hokkaido, JP - Asahikawa Airport (AKJ)','1','0'),(1673,'','HBK',12163,13,'Holbrook, Holbrook Municipal Airport (HBK)','1','0'),(1674,'','HDE',12168,231,'Holdrege, Brewster Field (HDE)','1','0'),(1675,'CU','HOG',12171,56,'Holguin, CU - Frank Pais Airport (HOG)','1','0'),(1676,'US','HYL',12180,231,'Hollis, US - Hollis Seaplane Base (HYL)','1','0'),(1677,'','HLI',12181,231,'Hollister, Hollister Municipal Airport (HLI)','1','0'),(1678,'US','HCR',12206,231,'Holy Cross, US - Holy Cross Airport (HCR)','1','0'),(1679,'GB','HLY',12207,482,'Holyhead, GB - Holyhead Railway Station (HLY)','1','0'),(1680,'US','HOM',12216,231,'Homer, US - Homer Airport (HOM)','1','0'),(1681,'US','HST',12217,231,'Homestead, US - Homestead Air Reserve Base (HST)','1','0'),(1682,'HK','HKG',12232,98,'Hong Kong, HK - Hong Kong Intl Airport (HKG)','1','0'),(1683,'SB','HIR',12236,193,'Honiara, SB - Henderson Airport (HIR)','1','0'),(1684,'NO','HVG',12239,164,'Honningsvag, NO - Honningsvag Airport Valan (HVG)','1','0'),(1685,'US','HNL',12245,231,'Honolulu, US - Honolulu Intl Airport (HNL)','1','0'),(1686,'US','MKK',12256,231,'Hoolehua, US - Molokai Airport (MKK)','1','0'),(1687,'US','HNH',12257,231,'Hoonah, US - Hoonah Airport (HNH)','1','0'),(1688,'US','HPB',12259,231,'Hooper Bay, US - Hooper Bay Airport (HPB)','1','0'),(1689,'CA','YHO',12266,39,'Hopedale, CA - Hopedale Airport (YHO)','1','0'),(1690,'','HTU',12267,13,'Hopetoun, Hopetoun Airport (HTU)','1','0'),(1691,'US','HOP',12273,231,'Hopkinsville, US - Campbell Army Airfield (HOP)','1','0'),(1692,'US','HQM',12275,231,'Hoquiam, US - Bowerman (HQM)','1','0'),(1693,'IS','HFN',12283,100,'Hornafjordur, IS - Hornafjordur (HFN)','1','0'),(1694,'','YHN',12291,39,'Hornepayne, Hornepayne Municipal Airport (YHN)','1','0'),(1695,'AU','HSM',12308,13,'Horsham, AU - Horsham (HSM)','1','0'),(1696,'US','HOT',31127,231,'Hot Springs, US - Memorial Field Airport (HOT)','1','0'),(1697,'LY','HUQ',12350,123,'Houn, LY - Hun Airport (HUQ)','1','0'),(1698,'US','AAP',12354,231,'Houston, US - ANDRAU AIRPARK Airport (AAP)','1','0'),(1699,'US','EFD',12354,231,'Houston, US - Ellington Airport (EFD)','1','0'),(1700,'US','HOU',12354,231,'Houston, US - William P. Hobby Airport (HOU)','1','0'),(1701,'US','IAH',12354,231,'Houston, US - George Bush Intercontinental Airport (IAH)','1','0'),(1702,'','HSZ',12382,212,'Hsinchu, Hsinchu Air Base (HSZ)','1','0'),(1703,'TH','HHQ',34236,215,'Hua Hin, TH - Hua Hin Airport (HHQ)','1','0'),(1704,'TW','HUN',12392,212,'Hualien, TW - Hualien Airport (HUN)','1','0'),(1705,'AO','NOV',12394,6,'Huambo, AO - Albano Machado Airport (NOV)','1','0'),(1706,'CN','HYN',12400,46,'Huangyan, CN - Taizhou (Huangyan) Luqiao Airport (HYN)','1','0'),(1707,'MX','HUX',12405,141,'Huatulco, MX - Bahias de Huatulco Intl Airport (HUX)','1','0'),(1708,'IN','HBX',12411,101,'Hubli, IN - Hubli Airport (HBX)','1','0'),(1709,'SE','HUV',12416,209,'Hudiksvall, SE - Hudiksvall Airport (HUV)','1','0'),(1710,'','HCC',12417,39,'Hudson, Columbia County Airport (HCC)','1','0'),(1711,'','YNH',12419,39,'Hudson\'s Hope, Hudson\'s Hope Airport (YNH)','1','0'),(1712,'','HUG',12423,91,'Huehuetenango, Huehuetenango Airport (HUG)','1','0'),(1713,'AU','HGD',12433,13,'Hughenden, AU - Hughenden Airport (HGD)','1','0'),(1714,'US','HUS',12434,231,'Hughes, US - Hughes Airport (HUS)','1','0'),(1715,'','HUJ',12435,231,'Hugo, Stan Stamper Municipal Airport (HUJ)','1','0'),(1716,'SE','HLF',12451,209,'Hultsfred, SE - Hultsfred - Vimmerby (HLF)','1','0'),(1717,'','HUC',12452,176,'Humacao, Humacao Airport (HUC)','1','0'),(1718,'GB','HUY',12454,482,'Humberside, GB - Humberside Airport (HUY)','1','0'),(1719,'','HUD',12457,39,'Humboldt, Humboldt Municipal Airport (HUD)','1','0'),(1720,'ET','HUE',12461,70,'Humera, ET - Humera Airport (HUE)','1','0'),(1721,'US','HSV',12494,231,'Huntsville, US - Huntsville Intl Airport / Carl T Jones Field (HSV)','1','0'),(1722,'','HTV',12494,231,'Huntsville, Huntsville Municipal Airport (HTV)','1','0'),(1723,'EG','HRG',12496,65,'Hurghada, EG - Hurghada Airport (HRG)','1','0'),(1724,'US','HON',12500,231,'Huron, US - Huron Regional Airport (HON)','1','0'),(1725,'IS','HZK',12505,100,'Husavik, IS - Husavik Airport (HZK)','1','0'),(1726,'US','HSL',12509,231,'Huslia, US - Huslia Airport (HSL)','1','0'),(1727,'','QHU',12511,59,'Husum, Husum Schwesing Airport (QHU)','1','0'),(1728,'','WKI',12529,243,'Hwange, Hwange Town Airport (WKI)','1','0'),(1729,'US','HYA',12530,231,'Hyannis, US - Barnstable Municipal Apt/Boardman-Polanco Field (HYA)','1','0'),(1730,'US','HYG',12532,231,'Hydaburg, US - Hydaburg Seaplane Base (HYG)','1','0'),(1731,'','WHD',12537,231,'Hyder, Hyder Seaplane Base (WHD)','1','0'),(1732,'IN','BPM',12538,101,'Hyderabad, IN - Begumpet Airport (BPM)','1','0'),(1733,'','HDD',12538,101,'Hyderabad, Hyderabad Airport (HDD)','1','0'),(1734,'IN','HYD',12538,101,'Hyderabad, IN - Rajiv Gandhi Intl Airport (HYD)','1','0'),(1735,'FR','TLN',12541,76,'Hyeres, FR - Toulon Airport (TLN)','1','0'),(1736,'RO','IAS',12550,179,'Iasi, RO - Iasi Intl Airport (IAS)','1','0'),(1737,'CO','IBE',12552,49,'Ibague, CO - Perales Airport (IBE)','1','0'),(1738,'ES','IBZ',12557,199,'Ibiza, ES - Ibiza Airport (IBZ)','1','0'),(1739,'','IDG',31138,231,'Ida Grove, Ida Grove Municipal Airport (IDG)','1','0'),(1740,'RU','IAA',12593,181,'Igarka, RU - Igarka Airport (IAA)','1','0'),(1741,'US','IGG',12595,231,'Igiugig, US - Igiugig Airport (IGG)','1','0'),(1742,'CA','YGT',12597,39,'Igloolik, CA - Igloolik Airport (YGT)','1','0'),(1743,'','ZUC',12599,39,'Ignace, Ignace Municipal Airport (ZUC)','1','0'),(1744,'BR','IGU',12605,30,'Iguassu Falls, BR - Cataratas Airport (IGU)','1','0'),(1745,'AR','IGR',12606,10,'Iguazu, AR - Cataratas de Iguazu Intl Airport (IGR)','1','0'),(1746,'','IHO',12608,130,'Ihosy, Ihosy Airport (IHO)','1','0'),(1747,'NC','ILP',12624,156,'Ile Des Pins, NC - Iles des Pins Airport (ILP)','1','0'),(1748,'','ILF',12628,482,'Ilford, Ilford Airport (ILF)','1','0'),(1749,'BR','IOS',12634,30,'Ilheus, BR - Eduardo Gomes Airport (IOS)','1','0'),(1750,'US','ILI',12636,231,'Iliamna, US - Iliamna Airport (ILI)','1','0'),(1751,'','IGN',12638,173,'Iligan, Maria Cristina Airport (IGN)','1','0'),(1752,'','ILA',12643,102,'Illaga, Illaga Airport (ILA)','1','0'),(1753,'DZ','VVZ',12648,3,'Illizi, DZ - Takhamalt Airport (VVZ)','1','0'),(1754,'PH','ILO',12658,173,'Iloilo, PH - Mandurriao Airport (ILO)','1','0'),(1755,'','IUL',12661,102,'Ilu, Ilu Airport (IUL)','1','0'),(1756,'BR','IMP',12677,30,'Imperatriz, BR - Imperatriz Airport (IMP)','1','0'),(1757,'','IML',12679,231,'Imperial, Imperial Municipal Airport (IML)','1','0'),(1758,'','ION',12680,51,'Impfondo, Impfondo Airport (ION)','1','0'),(1759,'IN','IMF',12681,101,'Imphal, IN - Imphal Airport (IMF)','1','0'),(1760,'DZ','IAM',31144,3,'In Amenas, DZ - In Amenas Airport (IAM)','1','0'),(1761,'','INF',31145,3,'In Guezzam, In Guezzam Airport (INF)','1','0'),(1762,'DZ','INZ',31146,3,'In Salah, DZ - In Salah Airport (INZ)','1','0'),(1763,'','INX',12685,102,'Inanwatan, Inanwatan Airport (INX)','1','0'),(1764,'','INB',12699,231,'Independence, Independence Airport (INB)','1','0'),(1765,'US','IND',31156,231,'Indianapolis, US - Indianapolis Intl Airport (IND)','1','0'),(1766,'IN','IDR',12706,101,'Indore, IN - Indore Airport (IDR)','1','0'),(1767,'','IMI',12713,136,'Ine, Ine Airport (IMI)','1','0'),(1768,'','IGS',12725,83,'Ingolstadt, Ingolstadt Manching Airport (IGS)','1','0'),(1769,'MZ','INH',12729,149,'Inhambane, MZ - Inhambane Airport (INH)','1','0'),(1770,'IE','INQ',12731,105,'Inisheer, IE - Inisheer (INQ)','1','0'),(1771,'IE','IIA',12732,105,'Inishmaan, IE - Inishmaan (IIA)','1','0'),(1772,'IE','IOR',12733,105,'Inishmore, IE - Inishmore Aerodrome (IOR)','1','0'),(1773,'','INJ',12734,13,'Injune, Injune Airport (INJ)','1','0'),(1774,'','IKP',12735,13,'Inkerman, Inkerman Airport (IKP)','1','0'),(1775,'','INM',12738,13,'Innamincka, Innamincka Airport (INM)','1','0'),(1776,'AU','IFL',12744,13,'Innisfail, AU - Innisfail (IFL)','1','0'),(1777,'AT','INN',12747,14,'Innsbruck, AT - Innsbruck Kranebitten Airport (INN)','1','0'),(1778,'','INO',12750,74,'Inongo, Inongo Airport (INO)','1','0'),(1779,'CH','ZIN',12756,210,'Interlaken, CH - Interlaken Airport (ZIN)','1','0'),(1780,'CA','YPH',12760,39,'Inukjuak, CA - Inukjuak Airport (YPH)','1','0'),(1781,'CA','YEV',12761,39,'Inuvik, CA - Inuvik (Mike Zubko) Airport (YEV)','1','0'),(1782,'NZ','IVC',12765,157,'Invercargill, NZ - Invercargill Airport (IVC)','1','0'),(1783,'AU','IVR',12767,13,'Inverell, AU - Inverell (IVR)','1','0'),(1784,'US','IYK',12779,231,'Inyokern, US - Inyokern Airport (IYK)','1','0'),(1785,'GR','IOA',12783,86,'Ioannina, GR - Ioannina Airport (IOA)','1','0'),(1786,'BR','IPN',12792,30,'Ipatinga, BR - Usiminas Airport (IPN)','1','0'),(1787,'CO','IPI',12795,49,'Ipiales, CO - San Luis Airport (IPI)','1','0'),(1788,'MY','IPH',12796,132,'Ipoh, MY - Ipoh Airport (IPH)','1','0'),(1789,'VU','IPA',12798,233,'Ipota, VU - Ipota Airport (IPA)','1','0'),(1790,'CA','YFB',12803,39,'Iqaluit, CA - Frobisher Bay Airport (YFB)','1','0'),(1791,'CL','IQQ',12804,45,'Iquique, CL - Diego Aracena Intl Airport (IQQ)','1','0'),(1792,'PE','IQT',12805,172,'Iquitos, PE - C F Secada Airport (IQT)','1','0'),(1793,'TZ','IRI',12817,214,'Iringa, TZ - Nduli Airport (IRI)','1','0'),(1794,'RU','IKT',12818,181,'Irkutsk, RU - Southeast Airport (IKT)','1','0'),(1795,'US','IWD',12822,231,'Ironwood, US - Gogebic-Iron County Airport (IWD)','1','0'),(1796,'IS','IFJ',12836,100,'Isafjordur, IS - Isafjordur Airport (IFJ)','1','0'),(1797,'IR','IFN',12846,103,'Isfahan, IR - Isfahan Airport (IFN)','1','0'),(1798,'JP','ISG',12847,110,'Ishigaki, JP - New Ishigaki Airport (ISG)','1','0'),(1799,'','ISI',12855,13,'Isisford, Isisford Airport (ISI)','1','0'),(1800,'PK','ISB',12865,166,'Islamabad, PK - Islamabad Intl Airport (ISB)','1','0'),(1801,'GB','IOM',31187,482,'Isle Of Man, GB - Ronaldsway Airport (IOM)','1','0'),(1802,'','SKL',31190,482,'Isle Of Skye, Broadford Airfield (SKL)','1','0'),(1803,'GB','ISC',12880,482,'Isles Of Scilly, GB - St Mary`s Airport (ISC)','1','0'),(1804,'GB','TSO',12880,482,'Isles Of Scilly, GB - Tresco Airport (TSO)','1','0'),(1805,'TR','IST',12905,222,'Istanbul, TR - Ataturk Intl Airport (IST)','1','0'),(1806,'TR','SAW',12905,222,'Istanbul, TR - Sabiha Gokcen Airport (SAW)','1','0'),(1807,'US','ITH',12926,231,'Ithaca, US - Tompkins County Airport (ITH)','1','0'),(1808,'FI','IVL',12936,75,'Ivalo, FI - Ivalo Airport (IVL)','1','0'),(1809,'','KIB',12937,231,'Ivanof Bay, Ivanof Bay Seaplane Base (KIB)','1','0'),(1810,'CA','YIK',12943,39,'Ivujivik, CA - Ivujivik Airport (YIK)','1','0'),(1811,'','IWK',12945,110,'Iwakuni, Marine Corps Air Station Iwakuni (IWK)','1','0'),(1812,'MX','ZIH',12951,141,'Ixtapa, MX - Ixtapa-Zihuatanejo Intl Airport (ZIH)','1','0'),(1813,'TR','ADB',12958,222,'Izmir, TR - Adnan Menderes Airport (ADB)','1','0'),(1814,'JP','IZO',12968,110,'Izumo, JP - Izumo En-Musubi Airport (IZO)','1','0'),(1815,'IN','JLR',12971,101,'Jabalpur, IN - Dumna Airport (JLR)','1','0'),(1816,'AU','JAB',12973,13,'Jabiru, AU - Jabiru (JAB)','1','0'),(1817,'','KPT',12979,231,'Jackpot, Jackpot Airport (KPT)','1','0'),(1818,'US','JAX',12982,231,'Jacksonville, US - Jacksonville Intl Airport (JAX)','1','0'),(1819,'','JKV',12982,231,'Jacksonville, Cherokee County Airport (JKV)','1','0'),(1820,'PK','JAG',12984,166,'Jacobabad, PK - Jacobabad Airport (JAG)','1','0'),(1821,'','JAQ',12985,170,'Jacquinot Bay, Jacquinot Bay Airport (JAQ)','1','0'),(1822,'','JGB',12990,101,'Jagdalpur, Jagdalpur Airport (JGB)','1','0'),(1823,'IN','JAI',12995,101,'Jaipur, IN - Jaipur Airport (JAI)','1','0'),(1824,'IN','JSA',12996,101,'Jaisalmer, IN - Jaisalmer (JSA)','1','0'),(1825,'ID','CGK',12998,102,'Jakarta, ID - Soekarno-Hatta Intl Airport (CGK)','1','0'),(1826,'ID','HLP',12998,102,'Jakarta, ID - Halim Perdanakusuma Airport (HLP)','1','0'),(1827,'ID','DJB',13014,102,'Jambi, ID - Sultan Thaha Airport (DJB)','1','0'),(1828,'','HLE',13018,195,'Jamestown, Saint Helena Airport (HLE)','1','0'),(1829,'US','JHW',13019,231,'Jamestown, US - Chautauqua County-Jamestown Airport (JHW)','1','0'),(1830,'IN','IXJ',13021,101,'Jammu, IN - Satwari Airport (IXJ)','1','0'),(1831,'IN','JGA',13022,101,'Jamnagar, IN - Govardhanpur Airport (JGA)','1','0'),(1832,'IN','IXW',13024,101,'Jamshedpur, IN - Sonari (IXW)','1','0'),(1833,'','YJA',13043,231,'Jasper, Jasper Airport (YJA)','1','0'),(1834,'ID','DJJ',13058,102,'Jayapura, ID - Sentani - Jayapura Airport (DJJ)','1','0'),(1835,'AE','DWC',13062,228,'Jebel Ali, AE - Dubai World Central - Al Maktoum Intl Airport (DWC)','1','0'),(1836,'SA','JED',13067,186,'Jeddah, SA - King Abdul Aziz Intl Airport (JED)','1','0'),(1837,'MH','JEJ',13070,136,'Jeh, MH - Jeh Airport (JEJ)','1','0'),(1838,'','JBB',13078,102,'Jember, Notohadinegoro Airport (JBB)','1','0'),(1839,'','ZJG',13087,39,'Jenpeg, Jenpeg Airport (ZJG)','1','0'),(1840,'','CHN',13089,197,'Jeonju, Jeonju Airport (CHN)','1','0'),(1841,'GB','JER',13099,482,'Jersey, GB - Jersey Airport (JER)','1','0'),(1842,'','JRS',13104,106,'Jerusalem, Atarot Airport (JRS)','1','0'),(1843,'BD','JSR',13112,18,'Jessore, BD - Jessore Airport (JSR)','1','0'),(1844,'','PYB',13120,101,'Jeypore, Jeypore Airport (PYB)','1','0'),(1845,'CN','JMU',13125,46,'Jiamusi, CN - Jiamusi Dongjiao Airport (JMU)','1','0'),(1846,'CN','JGN',13140,46,'Jiayuguan, CN - Jiayuguan Airport (JGN)','1','0'),(1847,'DZ','GJL',13142,3,'Jijel, DZ - Jijel Ferhat Abbas Airport (GJL)','1','0'),(1848,'','DBC',13145,46,'Jilin, Baicheng Chang\'an Airport (DBC)','1','0'),(1849,'ET','JIM',13149,70,'Jimma, ET - Jimma Airport (JIM)','1','0'),(1850,'CN','TNA',13150,46,'Jinan, CN - Jinan Yaoqiang Intl Airport (TNA)','1','0'),(1851,'','SHS',13159,46,'Jingzhou, Shashi Airport (SHS)','1','0'),(1852,'','JIN',13162,226,'Jinja, Jinja Airport (JIN)','1','0'),(1853,'ET','BCO',13164,70,'Jinka, ET - Baco Airport (BCO)','1','0'),(1854,'','JIW',13176,166,'Jiwani, Jiwani Airport (JIW)','1','0'),(1855,'','JXA',13177,46,'Jixi, Jixi Xingkaihu Airport (JXA)','1','0'),(1856,'BR','JPA',13181,30,'Joao Pessoa, BR - Castro Pinto Airport (JPA)','1','0'),(1857,'IN','JDH',13184,101,'Jodhpur, IN - Jodhpur Airport (JDH)','1','0'),(1858,'FI','JOE',13186,75,'Joensuu, FI - Joensuu Airport (JOE)','1','0'),(1859,'','GCJ',13189,195,'Johannesburg, Grand Central Airport (GCJ)','1','0'),(1860,'ZA','JNB',13189,195,'Johannesburg, ZA - OR Tambo Intl Airport (JNB)','1','0'),(1861,'US','JST',13199,231,'Johnstown, US - John Murtha Johnstown-Cambria County Airport (JST)','1','0'),(1862,'BR','JOI',13203,30,'Joinville, BR - Joinville - Cubatao Airport (JOI)','1','0'),(1863,'','JMO',13211,153,'Jomsom, Jomsom Airport (JMO)','1','0'),(1864,'US','JBR',13216,231,'Jonesboro, US - Jonesboro Municipal Airport (JBR)','1','0'),(1865,'SE','JKG',13220,209,'Jonkoping, SE - Axamo Airport (JKG)','1','0'),(1866,'US','JLN',13225,231,'Joplin, US - Joplin Regional Airport (JLN)','1','0'),(1867,'','JDN',13230,231,'Jordan, Jordan Airport (JDN)','1','0'),(1868,'IN','JRH',13232,101,'Jorhat, IN - Jorhat Airport (JRH)','1','0'),(1869,'SA','AJF',13246,186,'Jouf, SA - Jouf Airport (AJF)','1','0'),(1870,'US','AJO',13246,186,'Jouf, US - Aljouf (AJO)','1','0'),(1871,'PE','JJI',13258,172,'Juanjui, PE - Juanjuí Airport (JJI)','1','0'),(1872,'BR','JDO',13261,30,'Juazeiro Do Norte, BR - Orlando Bezerra de Menezes Airport (JDO)','1','0'),(1873,'DE','JUI',13270,83,'Juist, DE - Juist (JUI)','1','0'),(1874,'BR','JDF',13271,30,'Juiz De Fora, BR - Francisco Alvares de Assis (Serrinha) Airport (JDF)','1','0'),(1875,'AR','JUJ',13272,10,'Jujuy, AR - Gobernador Horacio Guzman Intl Airport (JUJ)','1','0'),(1876,'AU','JCK',13275,13,'Julia Creek, AU - Julia Creek Airport (JCK)','1','0'),(1877,'PE','JUL',13276,172,'Juliaca, PE - Inca Manco Capac Intl Airport (JUL)','1','0'),(1878,'','JUM',13285,153,'Jumla, Jumla Airport (JUM)','1','0'),(1879,'US','JNU',13290,231,'Juneau, US - Juneau Intl Airport (JNU)','1','0'),(1880,'','JUR',13300,13,'Jurien Bay, Jurien Bay Airport (JUR)','1','0'),(1881,'FI','JYV',13309,75,'Jyvaskyla, FI - Jyvaskyla Airport (JYV)','1','0'),(1882,'','KBT',13318,136,'Kaben, Kaben Airport (KBT)','1','0'),(1883,'ET','ABK',13320,70,'Kabri Dar, ET - Kabri Dar Airport (ABK)','1','0'),(1884,'US','OGG',13341,231,'Kahului, US - Kahului Airport (OGG)','1','0'),(1885,'','IXH',13346,101,'Kailashahar, Kailashahar Airport (IXH)','1','0'),(1886,'','KJH',13347,46,'Kaili, Kaili Huangping Airport (KJH)','1','0'),(1887,'ID','KNG',13350,102,'Kaimana, ID - Kaimana Airport (KNG)','1','0'),(1888,'NZ','KAT',13359,157,'Kaitaia, NZ - Kaitaia Airport (KAT)','1','0'),(1889,'FI','KAJ',13362,75,'Kajaani, FI - Kajaani Airport (KAJ)','1','0'),(1890,'US','KNK',13368,231,'Kakhonak, US - Kokhonak Airport (KNK)','1','0'),(1891,'US','BTI',13371,231,'Kaktovik, US - Barter Island Airport (BTI)','1','0'),(1892,'GR','KLX',13382,86,'Kalamata, GR - Kalamata Airport (KLX)','1','0'),(1893,'US','AZO',13383,231,'Kalamazoo, US - Kalamazoo/Battle Creek Intl Airport (AZO)','1','0'),(1894,'US','LUP',13391,231,'Kalaupapa, US - Kalaupapa Airport (LUP)','1','0'),(1895,'AU','KAX',13395,13,'Kalbarri, AU - Kalbarri (KAX)','1','0'),(1896,'PH','KLO',13400,173,'Kalibo, PH - Kalibo Airport (KLO)','1','0'),(1897,'','BTW',13402,102,'Kalimantan, Batu Licin Airport (BTW)','1','0'),(1898,'','BYQ',13402,102,'Kalimantan, Bunyu Airport (BYQ)','1','0'),(1899,'RU','KGD',13404,181,'Kaliningrad, RU - Kaliningrad Airport (KGD)','1','0'),(1900,'US','FCA',13405,231,'Kalispell, US - Glacier Park Intl Airport (FCA)','1','0'),(1901,'SE','KLR',13414,209,'Kalmar, SE - Kalmar Airport (KLR)','1','0'),(1902,'US','KLG',13424,231,'Kalskag, US - Kalskag Airport (KLG)','1','0'),(1903,'US','KAL',13425,231,'Kaltag, US - Kaltag Airport (KAL)','1','0'),(1904,'','KLF',13428,181,'Kaluga, Grabtsevo Airport (KLF)','1','0'),(1905,'','KTY',13429,200,'Kalutara, Katukurunda Airport (KTY)','1','0'),(1906,'','IXQ',13438,101,'Kamalpur, Kamalpur Airport (IXQ)','1','0'),(1907,'','KDS',13440,13,'Kamaran Downs, Kamaran Downs Airport (KDS)','1','0'),(1908,'','KDB',13445,13,'Kambalda, Kambalda Airport (KDB)','1','0'),(1909,'ID','KBX',13448,102,'Kambuaya, ID - Kambuaya Airport (KBX)','1','0'),(1910,'SY','KAC',13457,211,'Kameshli, SY - Kamishly Airport (KAC)','1','0'),(1911,'CA','YKA',13462,39,'Kamloops, CA - Kamloops Airport (YKA)','1','0'),(1912,'','KMT',13471,37,'Kampot, Kampot Airport (KMT)','1','0'),(1913,'MY','TGG',13472,132,'Kampung Setiu Lama, MY - Kuala Terengganu Airport (TGG)','1','0'),(1914,'','KNB',13474,231,'Kanab, Kanab Municipal Airport (KNB)','1','0'),(1915,'CD','KGA',13478,52,'Kananga, CD - Kananga Airport (KGA)','1','0'),(1916,'IN','IXY',13491,101,'Kandla, IN - Kandla (Gandhidham) Airport (IXY)','1','0'),(1917,'','KDW',13493,200,'Kandy, Victoria Reservoir Seaplane Base (KDW)','1','0'),(1918,'','KDZ',13493,200,'Kandy, Polgolla Reservoir Seaplane Base (KDZ)','1','0'),(1919,'','BFG',13494,231,'Kane, Bullfrog Basin Airport (BFG)','1','0'),(1920,'','NGF',13495,231,'Kaneohe, MCAS Kaneohe Bay (NGF)','1','0'),(1921,'','KNR',34385,101,'Kangan, Jam Airport (KNR)','1','0'),(1922,'GL','SFJ',13501,87,'Kangerlussuaq, GL - Kangerlussuaq Airport (SFJ)','1','0'),(1923,'CA','XGR',13502,39,'Kangiqsualujjuaq, CA - Kangiqsualujjuaq (Georges River) Airport (XGR)','1','0'),(1924,'CA','YWB',13503,39,'Kangiqsujuaq, CA - Kangiqsujuag (Wakeham Bay) Airport (YWB)','1','0'),(1925,'CA','YKG',13504,39,'Kangirsuk, CA - Kangirsuk Airport (YKG)','1','0'),(1926,'IN','DHM',13507,101,'Kangra, IN - Gaggal Airport (DHM)','1','0'),(1927,'IN','KNU',13516,101,'Kanpur, IN - Kanpur Airport (KNU)','1','0'),(1928,'TW','KHH',13522,212,'Kaohsiung, TW - Kaohsiung Intl Airport (KHH)','1','0'),(1929,'US','JHM',13526,231,'Kapalua, US - Kapalua Airport (JHM)','1','0'),(1930,'','KPI',13531,132,'Kapit, Kapit Airport (KPI)','1','0'),(1931,'CA','YYU',13542,39,'Kapuskasing, CA - Kapuskasing Airport (YYU)','1','0'),(1932,'PK','KHI',13544,166,'Karachi, PK - Quaid-E-Azam Intl Airport (KHI)','1','0'),(1933,'KZ','KGF',13545,112,'Karaganda, KZ - Sara Arka Airport (KGF)','1','0'),(1934,'ZW','KAB',13571,243,'Kariba, ZW - Kariba Airport (KAB)','1','0'),(1935,'DE','FKB',13589,83,'Karlsruhe, DE - Karlsruhe/Baden-Baden Airport (FKB)','1','0'),(1936,'SE','KSD',13590,209,'Karlstad, SE - Karlstad Airport (KSD)','1','0'),(1937,'US','KYK',13592,231,'Karluk, US - Karluk Airport (KYK)','1','0'),(1938,'','KGJ',13597,131,'Karonga, Karonga Airport (KGJ)','1','0'),(1939,'GR','AOK',13601,86,'Karpathos, GR - Karpathos Airport (AOK)','1','0'),(1940,'UZ','KSQ',13606,232,'Karshi, UZ - Karshi Airport (KSQ)','1','0'),(1941,'','KBF',13613,102,'Karubaga, Karubaga Airport (KBF)','1','0'),(1942,'','KRB',13615,13,'Karumba, Karumba Airport (KRB)','1','0'),(1943,'DK','KRP',13616,59,'Karup, DK - Karup Airport (KRP)','1','0'),(1944,'','ZKB',13622,242,'Kasaba Bay, Kasaba Bay Airport (ZKB)','1','0'),(1945,'CA','XKS',13623,39,'Kasabonika, CA - Kasabonika Airport (XKS)','1','0'),(1946,'','KAA',13625,242,'Kasama, Kasama Airport (KAA)','1','0'),(1947,'BW','BBK',13626,28,'Kasane, BW - Kasane Airport (BBK)','1','0'),(1948,'','KSE',13630,226,'Kasese, Kasese Airport (KSE)','1','0'),(1949,'CN','KHG',13632,46,'Kashi, CN - Kashi (Kashgar) Airport (KHG)','1','0'),(1950,'US','KUK',13635,231,'Kasigluk, US - Kasigluk Airport (KUK)','1','0'),(1951,'GR','KZS',13656,86,'Kastelorizo, GR - Kastelorizo Airport (KZS)','1','0'),(1952,'GR','KSO',13659,86,'Kastoria, GR - Kastoria Airport (KSO)','1','0'),(1953,'','KBQ',13664,131,'Kasungu, Kasungu Airport (KBQ)','1','0'),(1954,'NP','KTM',13672,153,'Kathmandu, NP - Tribhuvan Intl Airport (KTM)','1','0'),(1955,'PL','KTW',13682,174,'Katowice, PL - Katowice Airport (KTW)','1','0'),(1956,'ID','KAZ',13694,102,'Kau, ID - Kao Airport (KAZ)','1','0'),(1957,'LT','KUN',13712,125,'Kaunas, LT - Karmilava Airport (KUN)','1','0'),(1958,'GR','KVA',13720,86,'Kavala, GR - Kavala Airport (KVA)','1','0'),(1959,'PG','KVG',13723,170,'Kavieng, PG - Kavieng Airport (KVG)','1','0'),(1960,'','MVM',13734,231,'Kayenta, Kayenta Airport (MVM)','1','0'),(1961,'TR','ASR',13735,222,'Kayseri, TR - Kayseri Airport (ASR)','1','0'),(1962,'RU','KZN',13738,181,'Kazan, RU - Kazan Airport (KZN)','1','0'),(1963,'US','EAR',13750,231,'Kearney, US - Kearney Regional Airport (EAR)','1','0'),(1964,'','KEQ',13752,102,'Kebar, Kebar Airport (KEQ)','1','0'),(1965,'MY','AOR',13757,132,'Kedah, MY - Sultan Halim Airport (AOR)','1','0'),(1966,'SN','KGG',13761,187,'Kedougou, SN - Kédougou Airport (KGG)','1','0'),(1967,'','KMP',13768,151,'Keetmanshoop, Keetmanshoop Airport (KMP)','1','0'),(1968,'CA','ZKG',13776,39,'Kegaska, CA - Kegashka Airport (ZKG)','1','0'),(1969,'ID','KEA',13782,102,'Keisah, ID - Keisah Airport (KEA)','1','0'),(1970,'US','BKH',13787,231,'Kekaha, US - Barking Sands PMRF (BKH)','1','0'),(1971,'','LFO',13789,70,'Kelafo, Kelafo Airport (LFO)','1','0'),(1972,'ID','LLN',13792,102,'Kelila, ID - Levelland Municipal (LLN)','1','0'),(1973,'CG','KEE',13796,51,'Kelle, CG - Kelle Airport (KEE)','1','0'),(1974,'CA','YLW',13802,39,'Kelowna, CA - Kelowna Intl Airport (YLW)','1','0'),(1975,'','KES',13803,39,'Kelsey, Kelsey Airport (KES)','1','0'),(1976,'','KLS',13806,482,'Kelso, Southwest Washington Regional Airport (KLS)','1','0'),(1977,'RU','KEJ',13811,181,'Kemerovo, RU - Kemerovo Airport (KEJ)','1','0'),(1978,'','EMM',13815,231,'Kemmerer, Kemmerer Municipal Airport (EMM)','1','0'),(1979,'US','ENA',13822,231,'Kenai, US - Kenai Airport (ENA)','1','0'),(1980,'ID','KDI',13827,102,'Kendari, ID - Haluoleo (Wolter Monginsidi) Airport (KDI)','1','0'),(1981,'','KGU',13832,132,'Keningau, Keningau Airport (KGU)','1','0'),(1982,'','NNA',13833,148,'Kenitra, Kenitra Air Base (NNA)','1','0'),(1983,'','KNT',13848,231,'Kennett, Kennett Memorial Airport (KNT)','1','0'),(1984,'CA','YQK',13853,39,'Kenora, CA - Kenora Airport (YQK)','1','0'),(1985,'','KKT',13864,231,'Kentland, Kentland Municipal Airport (KKT)','1','0'),(1986,'','KRA',13876,13,'Kerang, Kerang Airport (KRA)','1','0'),(1987,'NZ','KKE',13882,157,'Kerikeri, NZ - Kerikeri Airport (KKE)','1','0'),(1988,'IR','KER',13885,103,'Kerman, IR - Kerman Airport (KER)','1','0'),(1989,'IE','KIR',31205,105,'Kerry County, IE - Kerry Airport (KIR)','1','0'),(1990,'MY','KTE',13895,132,'Kerteh, MY - Kerteh Airport (KTE)','1','0'),(1991,'','IXK',13898,101,'Keshod, Keshod Airport (IXK)','1','0'),(1992,'ID','KTG',13904,102,'Ketapang, ID - Rahadi Usman Airport (KTG)','1','0'),(1993,'','KBE',13905,231,'Ketchikan, Bell Island Hot Springs Seaplane Base (KBE)','1','0'),(1994,'US','KTN',13905,231,'Ketchikan, US - Ketchikan Intl Airport (KTN)','1','0'),(1995,'','WFB',13905,231,'Ketchikan, Ketchikan Harbor Seaplane Base (WFB)','1','0'),(1996,'','OCA',31208,231,'Key Largo, Ocean Reef Club Airport (OCA)','1','0'),(1997,'US','EYW',31209,231,'Key West, US - Key West Intl Airport (EYW)','1','0'),(1998,'RU','KHV',13927,181,'Khabarovsk, RU - Novy Airport (KHV)','1','0'),(1999,'IN','HJR',13931,101,'Khajuraho, IN - Khajuraho Airport (HJR)','1','0'),(2000,'UA','HRK',13945,227,'Kharkov, UA - Kharkov Airport (HRK)','1','0'),(2001,'SD','KRT',13946,205,'Khartoum, SD - Khartoum Airport (KRT)','1','0'),(2002,'OM','KHS',13947,165,'Khasab, OM - Khasab Airport (KHS)','1','0'),(2003,'UA','KHE',13951,227,'Kherson, UA - Kherson Intl Airport (KHE)','1','0'),(2004,'UA','HMJ',13956,227,'Khmelnitskiy, UA - Khmelnytskyi Airport (HMJ)','1','0'),(2005,'TH','KKC',34257,215,'Khon Kaen, TH - Khon Kaen Airport (KKC)','1','0'),(2006,'','KDD',13967,166,'Khuzdar, Khuzdar Airport (KDD)','1','0'),(2007,'US','IAN',13970,231,'Kiana, US - Kiana Airport (IAN)','1','0'),(2008,'DE','KEL',13980,83,'Kiel, DE - Kiel Holtenau Airport (KEL)','1','0'),(2009,'UA','IEV',13986,227,'Kiev, UA - Kiev Zhuliany Intl Airport (IEV)','1','0'),(2010,'UA','KBP',13986,227,'Kiev, UA - Borispol Airport (KBP)','1','0'),(2011,'TZ','JRO',14005,214,'Kilimanjaro, TZ - Kilimanjaro Intl Airport (JRO)','1','0'),(2012,'US','ILE',14019,231,'Killeen, US - Skylark Field (ILE)','1','0'),(2013,'','KIL',14038,214,'Kilwa, Kilwa Airport (KIL)','1','0'),(2014,'','KMM',14041,102,'Kimam, Kimam Airport (KMM)','1','0'),(2015,'ZA','KIM',14045,195,'Kimberley, ZA - Kimberley Airport (KIM)','1','0'),(2016,'','YKD',14050,482,'Kincardine, Kincardine Municipal Airport (YKD)','1','0'),(2017,'','KNJ',14055,51,'Kindamba, Kindamba Airport (KNJ)','1','0'),(2018,'','YKY',14058,39,'Kindersley, Kindersley Regional Airport (YKY)','1','0'),(2019,'CD','KND',14060,52,'Kindu, CD - Kindu Airport (KND)','1','0'),(2020,'US','BFI',31211,231,'King, US - Boeing Field / King County Intl Airport (BFI)','1','0'),(2021,'US','KVC',31213,231,'King Cove, US - King Cove Airport (KVC)','1','0'),(2022,'','KMC',14063,186,'King Khalid Military City, King Khaled Military City Airport (KMC)','1','0'),(2023,'US','AKN',31216,231,'King Salmon, US - King Salmon Airport (AKN)','1','0'),(2024,'CA','KIF',14069,39,'Kingfisher Lake, CA - Kingfisher Lake Airport (KIF)','1','0'),(2025,'US','IGM',14070,231,'Kingman, US - Kingman Airport (IGM)','1','0'),(2026,'JM','KIN',14083,109,'Kingston, JM - Norman Manley Intl Airport (KIN)','1','0'),(2027,'JM','KTP',14083,109,'Kingston, JM - Tinson Pen Aerodrome (KTP)','1','0'),(2028,'CA','YGK',14085,39,'Kingston, CA - Kingston/Norman Rogers Airport (YGK)','1','0'),(2029,'TW','KNH',14097,212,'Kinmen, TW - Kinmen (Shang Yi) Airport (KNH)','1','0'),(2030,'CD','FIH',14104,52,'Kinshasa, CD - N Djili Intl Airport (FIH)','1','0'),(2031,'','NLO',14104,52,'Kinshasa, N\'Dolo Airport (NLO)','1','0'),(2032,'US','ISO',14106,231,'Kinston, US - Kinston Regional Jetport at Stallings Field (ISO)','1','0'),(2033,'SB','IRA',14118,193,'Kirakira, SB - Ngorangora Airstrip (IRA)','1','0'),(2034,'NO','KKN',14142,164,'Kirkenes, NO - Kirkenes Airport Hoybuktmoen (KKN)','1','0'),(2035,'US','IRK',14150,231,'Kirksville, US - Kirksville Regional Airport (IRK)','1','0'),(2036,'GB','KOI',14151,482,'Kirkwall, GB - Kirkwall Airport (KOI)','1','0'),(2037,'RU','KVX',14155,181,'Kirov, RU - Pobedilovo Airport (KVX)','1','0'),(2038,'SE','KRN',14163,209,'Kiruna, SE - Kiruna Airport (KRN)','1','0'),(2039,'','KRE',14164,36,'Kirundo, Kirundo Airport (KRE)','1','0'),(2040,'','KSW',14165,106,'Kiryat Shmona, Kiryat Shmona Airport (KSW)','1','0'),(2041,'CD','FKI',14166,52,'Kisangani, CD - Bangoka Intl Airport (FKI)','1','0'),(2042,'IR','KIH',14168,103,'Kish Island, IR - Kish Intl Airport (KIH)','1','0'),(2043,'KE','KIS',14179,113,'Kisumu, KE - Kisumu Intl Airport (KIS)','1','0'),(2044,'JP','KTD',14180,110,'Kitadaito, JP - Kitadaito Airport (KTD)','1','0'),(2045,'FI','KTT',14195,75,'Kittila, FI - Kittila Airport (KTT)','1','0'),(2046,'','KIW',14198,242,'Kitwe, Southdowns Airport (KIW)','1','0'),(2047,'','KZG',14200,83,'Kitzingen, Kitzingen Airport (KZG)','1','0'),(2048,'US','KVL',14201,231,'Kivalina, US - Kivalina Airport (KVL)','1','0'),(2049,'AT','KLU',14208,14,'Klagenfurt, AT - Klagenfurt Airport (KLU)','1','0'),(2050,'US','KLW',14215,231,'Klawock, US - Klawock Airport (KLW)','1','0'),(2051,'','KLZ',14225,195,'Kleinzee, Kleinzee Airport (KLZ)','1','0'),(2052,'','YKT',14227,39,'Klemtu, Klemtu Water Aerodrome (YKT)','1','0'),(2053,'','KXE',14229,195,'Klerksdorp, Klerksdorp Airport (KXE)','1','0'),(2054,'IE','BLY',14255,105,'Knock/mayo, IE - Belmullet (BLY)','1','0'),(2055,'US','TYS',31221,231,'Knoxville, US - McGhee Tyson Airport (TYS)','1','0'),(2056,'US','OBU',14267,231,'Kobuk, US - Kobuk Wein Airport (OBU)','1','0'),(2057,'JP','KCZ',14274,110,'Kochi, JP - Kochi Ryoma Airport (KCZ)','1','0'),(2058,'IN','COK',14275,101,'Kochi, IN - Kochi Airport (COK)','1','0'),(2059,'US','ADQ',14281,231,'Kodiak, US - Kodiak Airport (ADQ)','1','0'),(2060,'US','AOS',14281,231,'Kodiak, US - Amook Bay Seaplane Base (AOS)','1','0'),(2061,'','KDK',14281,231,'Kodiak, Kodiak Municipal Airport (KDK)','1','0'),(2062,'','KKZ',14297,37,'Koh Kong, Koh Kong Airport (KKZ)','1','0'),(2063,'','OHT',14298,166,'Kohat, PAF Base Kohat (OHT)','1','0'),(2064,'','KDA',14314,187,'Kolda, Kolda North Airport (KDA)','1','0'),(2065,'','KLH',14316,101,'Kolhapur, Kolhapur Airport (KLH)','1','0'),(2066,'IN','CCU',14323,101,'Kolkata, IN - Kolkata Intl Airport (CCU)','1','0'),(2067,'','KOF',14335,195,'Komatipoort, Komatipoort Airport (KOF)','1','0'),(2068,'JP','KMQ',14336,110,'Komatsu, JP - Komatsu Airport (KMQ)','1','0'),(2069,'NC','KNQ',14347,156,'Kone, NC - Kone Airport (KNQ)','1','0'),(2070,'','KOO',14351,52,'Kongolo, Kongolo Airport (KOO)','1','0'),(2071,'TR','KYA',14368,222,'Konya, TR - Konya Airport (KYA)','1','0'),(2072,'','KOH',14369,13,'Koolatah, Koolatah Airport (KOH)','1','0'),(2073,'IS','OPA',14376,100,'Kopasker, IS - Kópasker Airport (OPA)','1','0'),(2074,'','KVU',14397,74,'Korolevu, Korolevu Seaplane Base (KVU)','1','0'),(2075,'PW','ROR',14400,167,'Koror, PW - Koror Airport (ROR)','1','0'),(2076,'GR','KGS',31227,86,'Kos, GR - Kos Airport (KGS)','1','0'),(2077,'SK','KSC',14412,191,'Kosice, SK - Kosice Airport (KSC)','1','0'),(2078,'FM','KSA',14420,143,'Kosrae, FM - Kosrae (Caroline Islands) Airport (KSA)','1','0'),(2079,'','KMW',14423,181,'Kostroma, Kostroma Airport (KMW)','1','0'),(2080,'IN','KTU',14426,101,'Kota, IN - Kota (KTU)','1','0'),(2081,'','KOD',14428,102,'Kotabangun, Kotabangun Airport (KOD)','1','0'),(2082,'US','KOT',14433,231,'Kotlik, US - Kotlik Airport (KOT)','1','0'),(2083,'US','OTZ',14441,231,'Kotzebue, US - Kotzebue Airport (OTZ)','1','0'),(2084,'','KOU',14446,80,'Koulamoutou, Koulamoutou Airport (KOU)','1','0'),(2085,'NC','KOC',14447,156,'Koumac, NC - Koumac Airport (KOC)','1','0'),(2086,'CM','KOB',14451,38,'Koutaba, CM - Koutaba Airport (KOB)','1','0'),(2087,'US','KKA',14460,231,'Koyuk, US - Koyuk Airport (KKA)','1','0'),(2088,'US','KYU',14461,231,'Koyukuk, US - Koyukuk Airport (KYU)','1','0'),(2089,'GR','KZI',14463,86,'Kozani, GR - Kozani Airport (KZI)','1','0'),(2090,'TH','KBV',14466,215,'Krabi, TH - Krabi Airport (KBV)','1','0'),(2091,'PL','KRK',14471,174,'Krakow, PL - John Paul II Intl Airport Krakow-Balice (KRK)','1','0'),(2092,'SE','KRF',14476,209,'Kramfors, SE - Kramfors Airport (KRF)','1','0'),(2093,'RU','KRR',14486,181,'Krasnodar, RU - Krasnodar Airport (KRR)','1','0'),(2094,'','KKQ',14488,181,'Krasnoselkup, Krasnoselkup Airport (KKQ)','1','0'),(2095,'','ACS',14490,181,'Krasnoyarsk, Achinsk Airport (ACS)','1','0'),(2096,'CM','KBI',14501,38,'Kribi, CM - Kribi (KBI)','1','0'),(2097,'NO','KRS',14509,164,'Kristiansand, NO - Kristiansand Airport Kjevik (KRS)','1','0'),(2098,'SE','KID',14510,209,'Kristianstad, SE - Kristianstad Airport (KID)','1','0'),(2099,'NO','KSU',14511,164,'Kristiansund, NO - Kristiansund Airport Kvernberget (KSU)','1','0'),(2100,'UA','KWG',14515,227,'Krivoy Rog, UA - Kryvyi Rih/Lozovatka Intl Airport (KWG)','1','0'),(2101,'MY','KUL',30568,132,'Kuala Lumpur, MY - Kuala Lumpur Intl Apt (KUL)','1','0'),(2102,'MY','KUA',14540,132,'Kuantan, MY - Kuantan Airport (KUA)','1','0'),(2103,'MY','KCH',14545,132,'Kuching, MY - Kuching Airport (KCH)','1','0'),(2104,'MY','KUD',14549,132,'Kudat, MY - Kudat Airport (KUD)','1','0'),(2105,'LY','AKF',14554,123,'Kufrah, LY - Kufra Airport (AKF)','1','0'),(2106,'AO','SVP',14562,6,'Kuito, AO - Kuito Airport (SVP)','1','0'),(2107,'GL','KUS',14573,87,'Kulusuk, GL - Kulusuk Airport (KUS)','1','0'),(2108,'JP','KMJ',14575,110,'Kumamoto, JP - Aso Kumamoto Airport (KMJ)','1','0'),(2109,'GH','KMS',14579,84,'Kumasi, GH - Kumasi Airport (KMS)','1','0'),(2110,'JP','UEO',14584,110,'Kumejima, JP - Kumejima Airport (UEO)','1','0'),(2111,'CN','KMG',14594,46,'Kunming, CN - Kunming Changshui International Airport (KMG)','1','0'),(2112,'FI','KUO',14600,75,'Kuopio, FI - Kuopio Airport (KUO)','1','0'),(2113,'ID','KOE',14602,102,'Kupang, ID - El Tari Airport (KOE)','1','0'),(2114,'RU','KRO',14611,181,'Kurgan, RU - Kurgan Airport (KRO)','1','0'),(2115,'','KUC',14612,114,'Kuria, Kuria Airport (KUC)','1','0'),(2116,'','KMH',14620,195,'Kuruman, Johan Pienaar Airport (KMH)','1','0'),(2117,'JP','KUH',14628,110,'Kushiro, JP - Kushiro Airport (KUH)','1','0'),(2118,'GE','KUT',14635,82,'Kutaisi, GE - Kopitnari Airport (KUT)','1','0'),(2119,'CA','YVP',14645,39,'Kuujjuaq, CA - Kuujjuaq Airport (YVP)','1','0'),(2120,'CA','YGW',14646,39,'Kuujjuarapik, CA - Kuujjuarapik Airport (YGW)','1','0'),(2121,'FI','KAO',14647,75,'Kuusamo, FI - Kuusamo Airport (KAO)','1','0'),(2122,'','XIJ',14649,116,'Kuwait, Ahmed Al Jaber Air Base (XIJ)','1','0'),(2123,'MH','KWA',14657,136,'Kwajalein, MH - Marshall Islands Airport (KWA)','1','0'),(2124,'US','KWT',14661,231,'Kwethluk, US - Kwethluk Airport (KWT)','1','0'),(2125,'US','KWK',14663,231,'Kwigillingok, US - Kwigillingok Airport (KWK)','1','0'),(2126,'RU','KYZ',14680,181,'Kyzyl, RU - Kyzyl Airport (KYZ)','1','0'),(2127,'US','LSE',31300,231,'La Crosse, US - La Crosse Municipal Airport (LSE)','1','0'),(2128,'','APB',31413,26,'La Paz, Apolo Airport (APB)','1','0'),(2129,'BO','LPB',31413,26,'La Paz, BO - El Alto Intl Airport (LPB)','1','0'),(2130,'MX','LAP',31414,141,'La Paz, MX - Manuel Marquez de Leon Intl Airport (LAP)','1','0'),(2131,'AR','LPG',31431,10,'La Plata, AR - La Plata (LPG)','1','0'),(2132,'','LPO',31437,231,'La Porte, La Porte Municipal Airport (LPO)','1','0'),(2133,'','PCO',31446,199,'La Ribera, Punta Colorada Airstrip (PCO)','1','0'),(2134,'AR','IRJ',31450,10,'La Rioja, AR - Capitan Vicente Almanados Almonacid Airport (IRJ)','1','0'),(2135,'FR','LRH',31462,76,'La Rochelle, FR - Laleu Airport (LRH)','1','0'),(2136,'DO','LRM',14688,61,'La Romana, DO - Casa De Campo Airport (LRM)','1','0'),(2137,'CA','YVC',31468,39,'La Ronge, CA - La Ronge Airport (Barber Field) (YVC)','1','0'),(2138,'CL','LSC',31484,45,'La Serena, CL - La Serena Airport (LSC)','1','0'),(2139,'CA','ZLT',31492,39,'La Tabatiere, CA - La Tabatiere Airport (ZLT)','1','0'),(2140,'','YLQ',31506,39,'La Tuque, La Tuque Airport (YLQ)','1','0'),(2141,'US','POC',31516,231,'La Verne, US - Brackett Field (POC)','1','0'),(2142,'FJ','LBS',14696,74,'Labasa, FJ - Labasa Airport (LBS)','1','0'),(2143,'US','WLB',14701,231,'Labouchere Bay, US - Labouchere Bay Airport (WLB)','1','0'),(2144,'MY','LBU',14706,132,'Labuan, MY - Labuan Airport (LBU)','1','0'),(2145,'ID','LBJ',14707,102,'Labuan Bajo, ID - Komodo Airport (LBJ)','1','0'),(2146,'','LAH',14709,102,'Labuha, Oesman Sadik Airport (LAH)','1','0'),(2147,'CA','XLB',31529,39,'Lac Brochet, CA - Lac Brochet Airport (XLB)','1','0'),(2148,'CA','YLE',31535,39,'Lac La Martre, CA - Whati Airport (YLE)','1','0'),(2149,'US','LCI',14732,231,'Laconia, US - Laconia Municipal (LCI)','1','0'),(2150,'','LYT',14742,13,'Lady Elliot Island, Lady Elliot Island Airport (LYT)','1','0'),(2151,'ZA','LAY',14745,195,'Ladysmith, ZA - Ladysmith (LAY)','1','0'),(2152,'PG','LAE',14748,170,'Lae, PG - Nadzab Airport (LAE)','1','0'),(2153,'US','LAF',14752,231,'Lafayette, US - Purdue University Airport (LAF)','1','0'),(2154,'EC','LGQ',14765,64,'Lago Agrio, EC - Lago Agrio Airport (LGQ)','1','0'),(2155,'NG','KAN',14772,160,'Lagos, NG - Aminu Intl Airport (KAN)','1','0'),(2156,'NG','LOS',14772,160,'Lagos, NG - Murtala Muhammed Airport (LOS)','1','0'),(2157,'MY','LDU',14784,132,'Lahad Datu, MY - Lahad Datu Airport (LDU)','1','0'),(2158,'PK','LHE',14793,166,'Lahore, PK - Lahore Airport (LHE)','1','0'),(2159,'DE','LHA',14794,83,'Lahr, DE - Black Forest (LHA)','1','0'),(2160,'','LBN',14811,113,'Lake Baringo, Lake Baringo Airport (LBN)','1','0'),(2161,'US','LCH',31546,231,'Lake Charles, US - Lake Charles Regional Airport (LCH)','1','0'),(2162,'','LMA',31579,231,'Lake Minchumina, Lake Minchumina Airport (LMA)','1','0'),(2163,'','LFP',14821,39,'Lakefield, Lakefield Airport (LFP)','1','0'),(2164,'','CKE',14826,231,'Lakeport, Lampson Field (CKE)','1','0'),(2165,'NO','LKL',14839,164,'Lakselv, NO - Lakselv Airport Banak (LKL)','1','0'),(2166,'ET','LLI',14844,70,'Lalibela, ET - Lalibela Airport (LLI)','1','0'),(2167,'VU','LPM',14849,233,'Lamap, VU - Malekoula Airport (LPM)','1','0'),(2168,'US','LAA',14850,231,'Lamar, US - Lamar Municipal (LAA)','1','0'),(2169,'GA','LBQ',14852,80,'Lambarene, GA - Lambaréné Airport (LBQ)','1','0'),(2170,'VU','LNB',14861,233,'Lamen Bay, VU - Lamen Bay Airport (LNB)','1','0'),(2171,'IT','SUF',14865,107,'Lamezia Terme, IT - Lamezia Terme Airport (SUF)','1','0'),(2172,'','LDN',14869,153,'Lamidanda, Lamidanda Airport (LDN)','1','0'),(2173,'TH','LPT',14878,215,'Lampang, TH - Lampang Airport (LPT)','1','0'),(2174,'IT','LMP',14881,107,'Lampedusa, IT - Lampedusa Airport (LMP)','1','0'),(2175,'KE','LAU',14889,113,'Lamu, KE - Lamu Manda Airport (LAU)','1','0'),(2176,'US','LNS',14896,231,'Lancaster, US - Lancaster Airport (LNS)','1','0'),(2177,'ID','LUV',14949,102,'Langgur, ID - Dumatubun Airport (LUV)','1','0'),(2178,'MY','LGK',14955,132,'Langkawi, MY - Langkawi Intl Airport (LGK)','1','0'),(2179,'','YLY',14956,39,'Langley, Langley Regional Airport (YLY)','1','0'),(2180,'CH','QES',14958,210,'Langnau Im Emmental, CH - Emmen (QES)','1','0'),(2181,'FR','LAI',14971,76,'Lannion, FR - Lannion Airport (LAI)','1','0'),(2182,'','LDW',14974,39,'Lansdowne, Lansdowne Airport (LDW)','1','0'),(2183,'ZA','HLA',14980,195,'Lanseria, ZA - Lanseria Intl Airport (HLA)','1','0'),(2184,'US','LAN',14982,231,'Lansing, US - Capital Region Intl Airport (LAN)','1','0'),(2185,'ES','ACE',14994,199,'Lanzarote, ES - Lanzarote (Arrecife) Airport (ACE)','1','0'),(2186,'','LHK',15003,46,'Laohekou, Laohekou Airport (LHK)','1','0'),(2187,'FI','LPP',15014,75,'Lappeenranta, FI - Lappeenranta Airport (LPP)','1','0'),(2188,'US','LAR',15021,231,'Laramie, US - Laramie Regional Airport (LAR)','1','0'),(2189,'','LKA',15022,102,'Larantuka, Gewayantana Airport (LKA)','1','0'),(2190,'US','LRD',15027,231,'Laredo, US - Laredo Intl Airport (LRD)','1','0'),(2191,'GR','LRA',15032,86,'Larisa, GR - Larisa (LRA)','1','0'),(2192,'CY','LCA',15040,57,'Larnaca, CY - Larnaca Airport (LCA)','1','0'),(2193,'US','LRU',31618,231,'Las Cruces, US - Las Cruces Intl Airport (LRU)','1','0'),(2194,'VE','LSP',15051,235,'Las Piedras, VE - Camejo Airport (LSP)','1','0'),(2195,'','HSH',31631,231,'Las Vegas, Henderson Executive Airport (HSH)','1','0'),(2196,'US','LAS',31631,231,'Las Vegas, US - McCarran Intl Airport (LAS)','1','0'),(2197,'US','LVS',31631,231,'Las Vegas, US - Las Vegas Municipal (LVS)','1','0'),(2198,'GA','LTL',15065,80,'Lastourville, GA - Lastourville Airport (LTL)','1','0'),(2199,'SY','LTK',15071,211,'Latakia, SY - Bassel al-Assad Intl Airport (LTK)','1','0'),(2200,'','LTB',15084,13,'Latrobe, Latrobe Airport (LTB)','1','0'),(2201,'US','LBE',15085,231,'Latrobe, US - Arnold Palmer Regional Airport (LBE)','1','0'),(2202,'','LTU',34313,101,'Latur, Latur Airport (LTU)','1','0'),(2203,'','LUC',15091,74,'Laucala Island, Laucala Airport (LUC)','1','0'),(2204,'','MXE',15119,231,'Laurinburg, Laurinburg–Maxton Airport (MXE)','1','0'),(2205,'','LVO',15140,13,'Laverton, Laverton Airport (LVO)','1','0'),(2206,'MY','LWY',15148,132,'Lawas, MY - Lawas Airport (LWY)','1','0'),(2207,'US','LAW',15153,231,'Lawton, US - Fort Sill Regional Airport (LAW)','1','0'),(2208,'MX','LZC',15159,141,'Lazaro Cardenas, MX - Lazaro Cardenas Airport (LZC)','1','0'),(2209,'FR','LEH',31680,76,'Le Havre, FR - Octeville Airport (LEH)','1','0'),(2210,'FR','LME',31689,76,'Le Mans, FR - Arnage (LME)','1','0'),(2211,'','LRJ',31691,231,'Le Mars, Le Mars Municipal Airport (LRJ)','1','0'),(2212,'FR','LPY',31712,76,'Le Puy, FR - Le Puy - Loudes Airport (LPY)','1','0'),(2213,'FR','LTQ',31734,76,'Le Touquet, FR - Cote d`Opale Airport (LTQ)','1','0'),(2214,'','YLR',15167,39,'Leaf Rapids, Leaf Rapids Airport (YLR)','1','0'),(2215,'US','LEB',15179,231,'Lebanon, US - Lebanon Municipal Airport (LEB)','1','0'),(2216,'US','AUO',31746,231,'Lee, US - Auburn-Opelika Robert G. Pitts (AUO)','1','0'),(2217,'PH','LGP',15220,173,'Legaspi, PH - Legaspi Airport (LGP)','1','0'),(2218,'IN','IXL',15229,101,'Leh, IN - Leh Airport (IXL)','1','0'),(2219,'','LGH',31749,13,'Leigh Creek, Leigh Creek Airport (LGH)','1','0'),(2220,'','LER',15250,13,'Leinster, Leinster Airport (LER)','1','0'),(2221,'','LKC',15261,51,'Lekana, Lekana Airport (LKC)','1','0'),(2222,'NO','LKN',15264,164,'Leknes, NO - Leknes Airport (LKN)','1','0'),(2223,'GR','LXS',15274,86,'Lemnos, GR - Lemnos Airport (LXS)','1','0'),(2224,'MX','BJX',15307,141,'Leon, MX - Guanajuato (Del Bajio) Intl Airport (BJX)','1','0'),(2225,'','LNO',15313,13,'Leonora, Leonora Airport (LNO)','1','0'),(2226,'','LHI',15322,102,'Lereh, Lereh Airport (LHI)','1','0'),(2227,'','LRB',15323,121,'Leribe, Leribe Airport (LRB)','1','0'),(2228,'GR','LRS',15329,86,'Leros, GR - Leros Airport (LRS)','1','0'),(2229,'','LSO',31804,76,'Les Sables-d\'olonne, Les Sables-d\'Olonne – Talmont Airport (LSO)','1','0'),(2230,'','LES',15344,121,'Lesobeng, Lesobeng Airport (LES)','1','0'),(2231,'CA','YQL',15359,39,'Lethbridge, CA - Lethbridge County Airport (YQL)','1','0'),(2232,'CO','LET',15360,49,'Leticia, CO - Alfredo Vasquez Cobo Airport (LET)','1','0'),(2233,'','LTR',15365,105,'Letterkenny, Letterkenny Airfield (LTR)','1','0'),(2234,'US','KLL',15385,231,'Levelock, US - Levelock Airport (KLL)','1','0'),(2235,'US','LWB',15401,231,'Lewisburg, US - Greenbrier Valley Airport (LWB)','1','0'),(2236,'US','LWT',15404,231,'Lewistown, US - Lewistown Municipal Airport (LWT)','1','0'),(2237,'','LWE',15406,102,'Lewoleba, Wonopito Airport (LWE)','1','0'),(2238,'US','LEX',15407,231,'Lexington, US - Blue Grass Airport (LEX)','1','0'),(2239,'CN','LXA',15419,46,'Lhasa, CN - Lhasa Gonggar Airport (LXA)','1','0'),(2240,'CN','LYG',15426,46,'Lianyungang, CN - Lianyungang Baitabu Airport (LYG)','1','0'),(2241,'US','LBL',15432,231,'Liberal, US - Liberal Mid-America Regional Airport (LBL)','1','0'),(2242,'GA','LBV',15440,80,'Libreville, GA - Libreville Airport (LBV)','1','0'),(2243,'MZ','VXC',15443,149,'Lichinga, MZ - Lichinga Airport (VXC)','1','0'),(2244,'SE','LDK',15457,209,'Lidkoping, SE - Lidkoping-Hovby (LDK)','1','0'),(2245,'BE','LGG',15462,21,'Liege, BE - Liege Airport (LGG)','1','0'),(2246,'NC','LIF',15480,156,'Lifou, NC - Lifou Island Airport (LIF)','1','0'),(2247,'','LHG',15484,13,'Lightning Ridge, Lightning Ridge Airport (LHG)','1','0'),(2248,'','LIX',15494,131,'Likoma Island, Likoma Airport (LIX)','1','0'),(2249,'FR','LIL',15502,76,'Lille, FR - Lesquin Airport (LIL)','1','0'),(2250,'MW','LLW',15508,131,'Lilongwe, MW - Lilongwe Intl Airport (LLW)','1','0'),(2251,'MY','LMN',15513,132,'Limbang, MY - Limbang Airport (LMN)','1','0'),(2252,'FR','LIG',15529,76,'Limoges, FR - Bellegarde Airport (LIG)','1','0'),(2253,'','BCL',15531,54,'Limon, Barra del Colorado Airport (BCL)','1','0'),(2254,'US','LNK',15547,231,'Lincoln, US - Lincoln Airport (LNK)','1','0'),(2255,'','LDC',15560,13,'Lindeman Island, Lindeman Island Airport (LDC)','1','0'),(2256,'','LDI',15567,214,'Lindi, Lindi Airport (LDI)','1','0'),(2257,'','LFQ',15574,46,'Linfen, Linfen Qiaoli Airport (LFQ)','1','0'),(2258,'SE','LPI',15584,209,'Linkoping, SE - Saab Airport (LPI)','1','0'),(2259,'','LIP',15589,30,'Lins, Lins Airport (LIP)','1','0'),(2260,'CN','LYI',15592,46,'Linyi, CN - Linyi Shubuling Airport (LYI)','1','0'),(2261,'AT','LNZ',15593,14,'Linz, AT - Blue Danube Airport (LNZ)','1','0'),(2262,'','LIQ',15608,52,'Lisala, Lisala Airport (LIQ)','1','0'),(2263,'PT','LIS',15609,175,'Lisbon, PT - Lisbon Portela Airport (LIS)','1','0'),(2264,'KY','LYB',15646,42,'Little Cayman, KY - Edward Bodden Airfield (LYB)','1','0'),(2265,'','ZGR',15648,39,'Little Grand Rapids, Little Grand Rapids Airport (ZGR)','1','0'),(2266,'CN','LZH',15653,46,'Liuzhou, CN - Luizhou Bailian Airport (LZH)','1','0'),(2267,'GB','LPL',15660,482,'Liverpool, GB - Speke Airport (LPL)','1','0'),(2268,'ZM','LVI',15669,242,'Livingstone, ZM - Livingstone Airport (LVI)','1','0'),(2269,'BR','LVB',15672,30,'Livramento, BR - Galpões Airport (LVB)','1','0'),(2270,'SI','LJU',15682,192,'Ljubljana, SI - Joze Pucnik Airport (LJU)','1','0'),(2271,'ES','ILD',15728,199,'Lleida, ES - Alguaire Airport (ILD)','1','0'),(2272,'CA','YLL',15735,39,'Lloydminster, CA - Lloydminster Airport (YLL)','1','0'),(2273,'CH','ZJI',15743,210,'Locarno, CH - Locarno Airport (ZJI)','1','0'),(2274,'AU','IRG',15755,13,'Lockhart Rivers, AU - Lockhart River Airport (IRG)','1','0'),(2275,'CD','LJA',15770,52,'Lodja, CD - Lodja Airport (LJA)','1','0'),(2276,'TH','LOE',15773,215,'Loei, TH - Loei Airport (LOE)','1','0'),(2277,'MH','LOF',15774,136,'Loen, MH - Loen Airport (LOF)','1','0'),(2278,'EC','LOH',15801,64,'Loja, EC - Camilo Ponce Enriquez Airport (LOH)','1','0'),(2279,'TG','LFW',15823,216,'Lome, TG - Lome Tokoin Airport (LFW)','1','0'),(2280,'GB','LCY',15836,482,'London, GB - London City Airport (LCY)','1','0'),(2281,'GB','LGW',15836,482,'London, GB - Gatwick Airport (LGW)','1','0'),(2282,'GB','LHR',15836,482,'London, GB - Heathrow Airport (LHR)','1','0'),(2283,'GB','LTN',15836,482,'London, GB - Luton Airport (LTN)','1','0'),(2284,'GB','STN',15836,482,'London, GB - Stansted Airport (STN)','1','0'),(2285,'CA','YXU',15837,39,'London, CA - London Intl Airport (YXU)','1','0'),(2286,'GB','LDY',15839,482,'Londonderry, GB - Londonderry Airport (LDY)','1','0'),(2287,'BR','LDB',15841,30,'Londrina, BR - Londrina Airport (LDB)','1','0'),(2288,'','LSJ',15843,16,'Long Island, Long Island Airport (LSJ)','1','0'),(2289,'MY','LGL',15845,132,'Long Lellang, MY - Long Lellang Airport (LGL)','1','0'),(2290,'','GSA',34588,132,'Long Pasia, Long Pasia Airport (GSA)','1','0'),(2291,'','LSM',34598,132,'Long Semado, Long Semado Airport (LSM)','1','0'),(2292,'MY','ODN',34599,132,'Long Seridan, MY - Long Seridan Airport (ODN)','1','0'),(2293,'','LSU',34589,132,'Long Sukang, Long Sukang Airport (LSU)','1','0'),(2294,'VU','LOD',15847,233,'Longana, VU - Longana Airport (LOD)','1','0'),(2295,'NO','LYR',15875,164,'Longyearbyen, NO - Longyearbyen Svalbard Airport (LYR)','1','0'),(2296,'VU','LNE',15878,233,'Lonorore, VU - Lonorore Airport (LNE)','1','0'),(2297,'','KKM',15888,215,'Lopburi, Khok Kathiam Air Force Base (KKM)','1','0'),(2298,'US','LPS',15889,231,'Lopez Island, US - Lopez Island Airport (LPS)','1','0'),(2299,'MX','LTO',15898,141,'Loreto, MX - Loreto Intl Airport (LTO)','1','0'),(2300,'','LRI',15904,107,'Lorica, Lorica Airport (LRI)','1','0'),(2301,'FR','LRT',15905,76,'Lorient, FR - Lann-Bihouet Airport (LRT)','1','0'),(2302,'US','LAM',31836,231,'Los Alamos, US - Los Alamos Airport (LAM)','1','0'),(2303,'US','LAX',31839,231,'Los Angeles, US - Los Angeles Intl Airport (LAX)','1','0'),(2304,'MX','LMM',31861,141,'Los Mochis, MX - Federal del Valle del Fuerte Intl Airport (LMM)','1','0'),(2305,'','LRV',15918,235,'Los Roques, Los Roques Airport (LRV)','1','0'),(2306,'CG','DIS',15929,51,'Loubomo, CG - Ngot Nzoungou Airport (DIS)','1','0'),(2307,'','LOW',15943,231,'Louisa, Louisa County Airport (LOW)','1','0'),(2308,'','LFN',15945,231,'Louisburg, Triangle North Executive Airport (LFN)','1','0'),(2309,'US','ARA',15947,231,'Louisiana, US - Acadiana Regional Airport (ARA)','1','0'),(2310,'US','BAD',15947,231,'Louisiana, US - Barksdale Air Force Base (BAD)','1','0'),(2311,'','LMS',15948,231,'Louisville, Louisville Winston County Airport (LMS)','1','0'),(2312,'US','LOU',15948,231,'Louisville, US - Bowman Field (LOU)','1','0'),(2313,'US','SDF',15948,231,'Louisville, US - Louisville Intl Airport (SDF)','1','0'),(2314,'','LOL',15972,231,'Lovelock, Derby Field (LOL)','1','0'),(2315,'AO','LAD',15997,6,'Luanda, AO - Quatro de Fevereiro Intl Airport (LAD)','1','0'),(2316,'LA','LXG',15998,118,'Luang Namtha, LA - Louangnamtha Airport (LXG)','1','0'),(2317,'AO','SDD',16000,6,'Lubango, AO - Lubango Mukanka Airport (SDD)','1','0'),(2318,'US','LBB',16003,231,'Lubbock, US - Lubbock Preston Smith Intl Airport (LBB)','1','0'),(2319,'','REE',16003,231,'Lubbock, Reese Airpark (REE)','1','0'),(2320,'','LUZ',16006,174,'Lublin, Lublin Airport (LUZ)','1','0'),(2321,'','LVR',16013,30,'Lucas Do Rio Verde, Bom Futuro Municipal Airport (LVR)','1','0'),(2322,'IN','LKO',16028,101,'Lucknow, IN - Amausi Airport (LKO)','1','0'),(2323,'NA','LUD',16031,151,'Luderitz, NA - Luderitz Airport (LUD)','1','0'),(2324,'IN','LUH',16033,101,'Ludhiana, IN - Sahnewal Airport (LUH)','1','0'),(2325,'AO','LUO',16045,6,'Luena, AO - Luena Airport (LUO)','1','0'),(2326,'US','LFK',16049,231,'Lufkin, US - Angelina County (LFK)','1','0'),(2327,'CH','LUG',34642,210,'Lugano, CH - Lugano-Agno Airport (LUG)','1','0'),(2328,'UA','VSG',16052,227,'Lugansk, UA - Lugansk Airport (VSG)','1','0'),(2329,'','LUA',16070,153,'Lukla, Tenzing-Hillary Airport (LUA)','1','0'),(2330,'SE','LLA',16073,209,'Lulea, SE - Kallax Airport (LLA)','1','0'),(2331,'US','LBT',16078,231,'Lumberton, US - Lumberton Municipal (LBT)','1','0'),(2332,'','LYK',16105,102,'Lunyuk, Lunyuk Airport (LYK)','1','0'),(2333,'CN','LYA',16114,46,'Luoyang, CN - Luoyang Beijiao Airport (LYA)','1','0'),(2334,'ZM','LUN',16120,242,'Lusaka, ZM - Lusaka Intl Airport (LUN)','1','0'),(2335,'ZA','LUJ',16124,195,'Lusikisiki, ZA - Lusikisiki Airport (LUJ)','1','0'),(2336,'','UCK',16138,227,'Lutsk, Lutsk Airport (UCK)','1','0'),(2337,'ID','LUW',16146,102,'Luwuk, ID - Syukuran Aminuddin Amir Airport (LUW)','1','0'),(2338,'LU','LUX',16149,127,'Luxembourg, LU - Findel Airport (LUX)','1','0'),(2339,'EG','LXR',16153,65,'Luxor, EG - Luxor Airport (LXR)','1','0'),(2340,'PH','NCP',16162,173,'Luzon, PH - Cubi Pt NAS Airport Airport (NCP)','1','0'),(2341,'UA','LWO',16166,227,'Lvov, UA - Lviv Airport (LWO)','1','0'),(2342,'SE','LYC',16170,209,'Lycksele, SE - Lycksele Airport (LYC)','1','0'),(2343,'GB','LYX',16171,482,'Lydd, GB - Lydd Airport (LYX)','1','0'),(2344,'US','LYH',16178,231,'Lynchburg, US - Lynchburg Regional Airport / Preston Glenn Field (LYH)','1','0'),(2345,'','LTP',16180,231,'Lyndhurst, Lyndhurst Airport (LTP)','1','0'),(2346,'','LLX',16183,231,'Lyndonville, Caledonia County Airport (LLX)','1','0'),(2347,'','YYL',16188,39,'Lynn Lake, Lynn Lake Airport (YYL)','1','0'),(2348,'','LYO',16194,231,'Lyons, Lyons–Rice County Municipal Airport (LYO)','1','0'),(2349,'NL','MST',16219,154,'Maastricht, NL - Maastricht Aachen Airport (MST)','1','0'),(2350,'','UBB',16226,13,'Mabuiag Island, Mabuiag Island Airport (UBB)','1','0'),(2351,'BR','MEA',16228,30,'Macae, BR - Benedito Lacerda Airport (MEA)','1','0'),(2352,'BR','MCP',16230,30,'Macapa, BR - Macapa Intl Airport (MCP)','1','0'),(2353,'EC','XMS',16231,64,'Macas, EC - Edmundo Carvajal Airport (XMS)','1','0'),(2354,'MO','MFM',16233,128,'Macau, MO - Macau Intl Airport (MFM)','1','0'),(2355,'BR','MCZ',16242,30,'Maceio, BR - Palmares Airport (MCZ)','1','0'),(2356,'','MCH',16246,64,'Machala, General Manuel Serrano Airport (MCH)','1','0'),(2357,'AU','BMP',16255,13,'Mackay, AU - Brampton Island Airport (BMP)','1','0'),(2358,'','MVH',16259,13,'Macksville, Macksville Airport (MVH)','1','0'),(2359,'US','MCN',16264,231,'Macon, US - Middle Georgia Regional Airport (MCN)','1','0'),(2360,'PG','MAG',16275,170,'Madang, PG - Madang Airport (MAG)','1','0'),(2361,'','DXE',16303,231,'Madison, Bruce Campbell Field (DXE)','1','0'),(2362,'','MDN',16303,231,'Madison, Madison Municipal Airport (MDN)','1','0'),(2363,'US','MSN',16303,231,'Madison, US - Dane County Regional Airport (Traux Field) (MSN)','1','0'),(2364,'','XMD',16303,231,'Madison, Madison Municipal Airport (XMD)','1','0'),(2365,'','MDJ',16311,231,'Madras, Madras Municipal Airport (MDJ)','1','0'),(2366,'ES','MAD',16314,199,'Madrid, ES - Barajas Airport (MAD)','1','0'),(2367,'IN','IXM',16319,101,'Madurai, IN - Madurai Airport (IXM)','1','0'),(2368,'TH','MAQ',34245,215,'Mae Sot, TH - Mae Sot Airport (MAQ)','1','0'),(2369,'VU','MWF',16323,233,'Maewo, VU - Naone Airport (MWF)','1','0'),(2370,'','MFC',16325,121,'Mafeteng, Mafeteng Airport (MFC)','1','0'),(2371,'RU','GDX',16331,181,'Magadan, RU - Magadan Airport (GDX)','1','0'),(2372,'','MGD',16339,10,'Magdalena, Magdalena Airport (MGD)','1','0'),(2373,'RU','MQF',16364,181,'Magnitogorsk, RU - Magnitogorsk Intl Airport (MQF)','1','0'),(2374,'','AGO',16365,231,'Magnolia, Magnolia Municipal Airport (AGO)','1','0'),(2375,'','BZM',16378,130,'Mahajanga, Bemolanga Airport (BZM)','1','0'),(2376,'MG','MJN',16378,130,'Mahajanga, MG - Amborovy-Philbert Tsiranana Airport (MJN)','1','0'),(2377,'','VVB',16379,130,'Mahanoro, Mahanoro Airport (VVB)','1','0'),(2378,'','MHA',16383,220,'Mahdia, Mahdia Airport (MHA)','1','0'),(2379,'ES','MAH',16395,199,'Mahon, ES - Menorca Airport (MAH)','1','0'),(2380,'','MNK',16400,114,'Maiana, Maiana Airport (MNK)','1','0'),(2381,'','MXT',16415,130,'Maintirano, Maintirano Airport (MXT)','1','0'),(2382,'CV','MMO',16418,41,'Maio, CV - Maio Airport (MMO)','1','0'),(2383,'','MJE',16438,136,'Majkin, Majkin Airport (MJE)','1','0'),(2384,'MH','MAJ',16443,136,'Majuro, MH - Marshall Islands Intl Airport (MAJ)','1','0'),(2385,'','KMK',16444,51,'Makabana, Makabana Airport (KMK)','1','0'),(2386,'ET','MQX',16450,70,'Makale, ET - Makale Airport (MQX)','1','0'),(2387,'PF','MKP',16457,78,'Makemo, PF - Makemo Airport (MKP)','1','0'),(2388,'RU','MCX',16460,181,'Makhachkala, RU - Makhachkala Uytash Airport (MCX)','1','0'),(2389,'CA','YMN',16464,39,'Makkovik, CA - Makkovik Airport (YMN)','1','0'),(2390,'','MKU',16465,80,'Makokou, Makokou Airport (MKU)','1','0'),(2391,'','MKJ',16466,51,'Makoua, Makoua Airport (MKJ)','1','0'),(2392,'TW','MZG',16471,212,'Makung, TW - Makung Airport (MZG)','1','0'),(2393,'','MLP',16475,173,'Malabang, Malabang Airport (MLP)','1','0'),(2394,'GQ','SSG',16477,67,'Malabo, GQ - Malabo Airport (SSG)','1','0'),(2395,'MY','MKZ',16479,132,'Malacca, MY - Malacca Airport (MKZ)','1','0'),(2396,'ES','AGP',16480,199,'Malaga, ES - Malaga Costa Del Sol Airport (AGP)','1','0'),(2397,'ID','MLG',16490,102,'Malang, ID - Abdul Rachman Saleh Airport (MLG)','1','0'),(2398,'AO','MEG',16491,6,'Malange, AO - Malanje Airport (MEG)','1','0'),(2399,'TR','MLX',16496,222,'Malatya, TR - Malatya Airport (MLX)','1','0'),(2400,'','MAW',16504,231,'Malden, Malden Regional Airport (MAW)','1','0'),(2401,'MV','MLE',16508,133,'Male, MV - Male Intl Airport (MLE)','1','0'),(2402,'KE','MYD',16519,113,'Malindi, KE - Malindi Airport (MYD)','1','0'),(2403,'SE','HMA',16550,209,'Malmo, SE - Khanty-Mansiysk Airport (HMA)','1','0'),(2404,'SE','MMX',16550,209,'Malmo, SE - Sturup Airport (MMX)','1','0'),(2405,'FJ','PTF',16554,74,'Malololailai, FJ - Malololailai Island Airport (PTF)','1','0'),(2406,'','MLK',16562,231,'Malta, Malta Airport (MLK)','1','0'),(2407,'MT','MLA',16563,135,'Malta, MT - Malta Intl Airport (MLA)','1','0'),(2408,'','MBO',16580,173,'Mamburao, Mamburao Airport (MBO)','1','0'),(2409,'','MMF',16581,38,'Mamfe, Mamfe Airport (MMF)','1','0'),(2410,'','MJU',16586,102,'Mamuju, Tampa Padang Airport (MJU)','1','0'),(2411,'','MJC',31888,482,'Man, Man Airport (MJC)','1','0'),(2412,'ID','MDC',16588,102,'Manado, ID - Sam Ratulangi Airport (MDC)','1','0'),(2413,'NI','MGA',16589,158,'Managua, NI - Managua Intl Airport (MGA)','1','0'),(2414,'','WVK',16591,130,'Manakara, Manakara Airport (WVK)','1','0'),(2415,'IN','KUU',16593,101,'Manali, IN - Kulla Manali Airport (KUU)','1','0'),(2416,'BH','BAH',16594,17,'Manama, BH - Bahrain Intl Airport (BAH)','1','0'),(2417,'MG','WMR',16595,130,'Mananara, MG - Mananara Avaratra Airport (WMR)','1','0'),(2418,'','NGX',16596,153,'Manang, Manang Airport (NGX)','1','0'),(2419,'','MNJ',16597,130,'Mananjary, Mananjary Airport (MNJ)','1','0'),(2420,'BR','MAO',16603,30,'Manaus, BR - Eduardo Gomes Intl Airport (MAO)','1','0'),(2421,'US','MHT',16607,231,'Manchester, US - Manchester Airport (MHT)','1','0'),(2422,'GB','MAN',16608,482,'Manchester, GB - Manchester Intl Airport (MAN)','1','0'),(2423,'','WMD',16612,130,'Mandabe, Mandabe Airport (WMD)','1','0'),(2424,'MM','MDL',16614,150,'Mandalay, MM - Mandalay Intl Airport (MDL)','1','0'),(2425,'','VBC',16614,150,'Mandalay, Mandalay Chanmyathazi Airport (VBC)','1','0'),(2426,'','WMA',16627,130,'Mandritsara, Mandritsara Airport (WMA)','1','0'),(2427,'IN','IXE',16637,101,'Mangalore, IN - Bajpe Airport (IXE)','1','0'),(2428,'','MAI',16645,131,'Mangochi, Mangochi Airport (MAI)','1','0'),(2429,'ID','MAL',16646,102,'Mangole, ID - Malone-Dufort (MAL)','1','0'),(2430,'BS','MAY',16648,16,'Mangrove Cay, BS - Mangrove Cay Airport (MAY)','1','0'),(2431,'US','MHK',16654,231,'Manhattan, US - Manhattan Regional Airport (MHK)','1','0'),(2432,'PF','XMH',16657,78,'Manihi, PF - Manihi Airport (XMH)','1','0'),(2433,'CK','MHX',16658,53,'Manihiki Island, CK - Manihiki Island Airport (MHX)','1','0'),(2434,'PH','MNL',16659,173,'Manila, PH - Ninoy Aquino Intl Airport (MNL)','1','0'),(2435,'','SGL',16659,173,'Manila, Danilo Atienza Air Base (SGL)','1','0'),(2436,'US','MBL',16666,231,'Manistee, US - Manistee County-Blackistee Airport (MBL)','1','0'),(2437,'','ISQ',16667,231,'Manistique, Schoolcraft County Airport (ISQ)','1','0'),(2438,'','YMG',16669,39,'Manitouwadge, Manitouwadge Airport (YMG)','1','0'),(2439,'','YEM',16670,39,'Manitowaning, Manitowaning/Manitoulin East Municipal Airport (YEM)','1','0'),(2440,'CO','MZL',16673,49,'Manizales, CO - Santaguida Airport (MZL)','1','0'),(2441,'','MJA',16674,130,'Manja, Manja Airport (MJA)','1','0'),(2442,'ID','MKW',16687,102,'Manokwari, ID - Rendani Airport (MKW)','1','0'),(2443,'','MNS',16691,242,'Mansa, Mansa Airport (MNS)','1','0'),(2444,'GB','MSE',16698,482,'Manston, GB - Manston Kent Intl Airport (MSE)','1','0'),(2445,'EC','MEC',16699,64,'Manta, EC - Eloy Alfaro Intl Airport (MEC)','1','0'),(2446,'','MEO',16705,231,'Manteo, Dare County Regional Airport (MEO)','1','0'),(2447,'','NTJ',16707,231,'Manti, Manti-Ephraim Airport (NTJ)','1','0'),(2448,'MX','ZLO',16721,141,'Manzanillo, MX - Playa de Oro Intl Airport (ZLO)','1','0'),(2449,'SZ','MTS',16724,208,'Manzini, SZ - Manzini Airport (MTS)','1','0'),(2450,'MZ','MPM',16737,149,'Maputo, MZ - Mavalane Intl Airport (MPM)','1','0'),(2451,'AR','MDQ',31894,10,'Mar Del Plata, AR - Astor Piazzola Intl Airport (MDQ)','1','0'),(2452,'BR','MAB',16739,30,'Maraba, BR - Maraba Airport (MAB)','1','0'),(2453,'VE','MAR',16740,235,'Maracaibo, VE - La Chinita Airport (MAR)','1','0'),(2454,'','MYC',16741,235,'Maracay, Mariscal Sucre Airport (MYC)','1','0'),(2455,'','MZK',16747,114,'Marakei, Marakei Airport (MZK)','1','0'),(2456,'US','MTH',16758,231,'Marathon, US - The Florida Keys Marathon Airport (MTH)','1','0'),(2457,'','YSP',16758,231,'Marathon, Marathon Aerodrome (YSP)','1','0'),(2458,'','MBB',16770,13,'Marble Bar, Marble Bar Airport (MBB)','1','0'),(2459,'','MRK',16788,231,'Marco Island, Marco Island Airport (MRK)','1','0'),(2460,'NC','MEE',16795,156,'Mare, NC - Mare Airport (MEE)','1','0'),(2461,'','MRF',16805,231,'Marfa, Marfa Municipal Airport (MRF)','1','0'),(2462,'','MQZ',16808,13,'Margaret River, Margaret River Airport (MQZ)','1','0'),(2463,'SI','MBX',16832,192,'Maribor, SI - Edvard Rusjan Airport (MBX)','1','0'),(2464,'FI','MHQ',16838,75,'Mariehamn, FI - Mariehamn Airport (MHQ)','1','0'),(2465,'BR','MII',16855,30,'Marilia, BR - Dr Gastao Vidigal Airport (MII)','1','0'),(2466,'BR','MGF',16865,30,'Maringa, BR - Maringa Airport (MGF)','1','0'),(2467,'US','MWA',16868,231,'Marion, US - Williamson County Regional Airport (MWA)','1','0'),(2468,'CA','YKZ',16875,39,'Markham, CA - Buttonville Municipal Airport (YKZ)','1','0'),(2469,'','MRP',16890,13,'Marla, Marla Airport (MRP)','1','0'),(2470,'','MXG',16892,231,'Marlborough, Marlboro Airport (MXG)','1','0'),(2471,'MG','WMN',16915,130,'Maroantsetra, MG - Maroantsetra Airport (WMN)','1','0'),(2472,'CM','MVR',16922,38,'Maroua, CM - Salak Airport (MVR)','1','0'),(2473,'US','MQT',16927,231,'Marquette, US - Sawyer Intl Airport (MQT)','1','0'),(2474,'MA','RAK',16930,148,'Marrakech, MA - Menara Airport (RAK)','1','0'),(2475,'','RRE',16932,13,'Marree, Marree Airport (RRE)','1','0'),(2476,'EG','RMF',16936,65,'Marsa Alam, EG - Marsa Alam Airport (RMF)','1','0'),(2477,'FR','MRS',16946,76,'Marseille, FR - Marignane-Provence Airport (MRS)','1','0'),(2478,'BS','MHH',16947,16,'Marsh Harbour, BS - Marsh Harbour Airport (MHH)','1','0'),(2479,'','MHL',16948,231,'Marshall, Marshall Memorial Municipal Airport (MHL)','1','0'),(2480,'','MML',16948,231,'Marshall, Southwest Minnesota Regional Airport (MML)','1','0'),(2481,'US','RMY',16948,231,'Marshall, US - Brooks Field (RMY)','1','0'),(2482,'US','AOO',16977,231,'Martinsburg, US - Blair County Airport (AOO)','1','0'),(2483,'MY','MUR',16983,132,'Marudi, MY - Marudi Airport (MUR)','1','0'),(2484,'CA','YMH',16998,39,'Mary\'s Harbour, CA - Mary`s Harbour Airport (YMH)','1','0'),(2485,'US','BAB',17001,231,'Marysville, US - Beale Air Force Base (BAB)','1','0'),(2486,'IL','MTZ',17006,106,'Masada, IL - Bar Yehuda Airfield (MTZ)','1','0'),(2487,'','MXB',17010,102,'Masamba, Andi Jemma Airport (MXB)','1','0'),(2488,'','XMI',17011,214,'Masasi, Masasi Airport (XMI)','1','0'),(2489,'LS','MSU',17023,121,'Maseru, LS - Maseru Airport (MSU)','1','0'),(2490,'IR','MHD',17025,103,'Mashad, IR - Mashad Airport (MHD)','1','0'),(2491,'OM','MSH',17034,165,'Masirah, OM - Masirah Air Base (MSH)','1','0'),(2492,'US','MSS',17048,231,'Massena, US - Massena Intl Airport-Richards Field (MSS)','1','0'),(2493,'CA','ZMT',17050,39,'Masset, CA - Masset Airport (ZMT)','1','0'),(2494,'NZ','MRO',17058,157,'Masterton, NZ - Hood Aerodrome (MRO)','1','0'),(2495,'','MVZ',17063,243,'Masvingo, Masvingo Airport (MVZ)','1','0'),(2496,'','MAT',17065,52,'Matadi, Matadi Tshimpi Airport (MAT)','1','0'),(2497,'','YNM',17067,39,'Matagami, Matagami Airport (YNM)','1','0'),(2498,'PF','MVT',17069,78,'Mataiva, PF - Mataiva Airport (MVT)','1','0'),(2499,'','MAX',17074,187,'Matam, Ouro Sogui Airport (MAX)','1','0'),(2500,'CA','YME',17079,39,'Matane, CA - Matane (YME)','1','0'),(2501,'','MSG',17107,121,'Matsaile, Matsaile Airport (MSG)','1','0'),(2502,'JP','MMJ',17111,110,'Matsumoto, JP - Shinshu-Matsumoto Airport (MMJ)','1','0'),(2503,'JP','MYJ',17115,110,'Matsuyama, JP - Matsuyama Airport (MYJ)','1','0'),(2504,'US','MTO',17122,231,'Mattoon, US - Coles County Memorial (MTO)','1','0'),(2505,'VE','MUN',17127,235,'Maturin, VE - Quiriquire Airport (MUN)','1','0'),(2506,'ID','MOF',17151,102,'Maumere, ID - Wai Oti (Maumere) Airport (MOF)','1','0'),(2507,'BW','MUB',17152,28,'Maun, BW - Maun Airport (MUB)','1','0'),(2508,'PF','MAU',17155,78,'Maupiti, PF - Maupiti Island Airport (MAU)','1','0'),(2509,'MU','MRU',17162,139,'Mauritius, MU - Mauritius - Sir S Ramgoolam Airport (MRU)','1','0'),(2510,'PR','MAZ',17183,176,'Mayaguez, PR - Eugenio Maria de Hostos Airport (MAZ)','1','0'),(2511,'','YMA',17197,39,'Mayo, Mayo Airport (YMA)','1','0'),(2512,'GA','MYB',17198,80,'Mayoumba, GA - Mayumba Airport (MYB)','1','0'),(2513,'MX','MZT',17214,141,'Mazatlan, MX - Gen Rafael Buelna Intl Airport (MZT)','1','0'),(2514,'','MBU',17224,193,'Mbambanakira, Mbambanakira Airport (MBU)','1','0'),(2515,'CD','MDK',17225,52,'Mbandaka, CD - Mbandaka Airport (MDK)','1','0'),(2516,'','MBQ',17226,226,'Mbarara, Mbarara Airport (MBQ)','1','0'),(2517,'','MBI',17228,214,'Mbeya, Mbeya Airport (MBI)','1','0'),(2518,'US','MFE',17235,231,'Mcallen, US - McAllen Miller Intl Airport (MFE)','1','0'),(2519,'','MXY',17240,231,'Mccarthy, McCarthy Airport (MXY)','1','0'),(2520,'US','MCK',17244,231,'Mccook, US - McCook Ben Nelson Regional Airport (MCK)','1','0'),(2521,'US','MCG',17253,231,'Mcgrath, US - McGrath Airport (MCG)','1','0'),(2522,'US','ACV',17262,231,'Mckinleyville, US - Arcata - Eureka Airport (ACV)','1','0'),(2523,'US','RNC',17269,231,'Mcminnville, US - Warren County Memorial (RNC)','1','0'),(2524,'','MPR',17271,231,'Mcpherson, McPherson Airport (MPR)','1','0'),(2525,'','MQW',17273,231,'Mcrae, Telfair–Wheeler Airport (MQW)','1','0'),(2526,'','YLJ',17275,39,'Meadow Lake, Meadow Lake Airport (YLJ)','1','0'),(2527,'','MEJ',17279,231,'Meadville, Port Meadville Airport (MEJ)','1','0'),(2528,'CO','MDE',17295,49,'Medellin, CO - Jose Maria Cordova Airport (MDE)','1','0'),(2529,'US','MDF',17300,231,'Medford, US - Medford (MDF)','1','0'),(2530,'US','MFR',17300,231,'Medford, US - Rogue Valley Intl-Medford Airport (MFR)','1','0'),(2531,'CA','YXH',17306,39,'Medicine Hat, CA - Medicine Hat Airport (YXH)','1','0'),(2532,'','MND',17307,186,'Medina, Medina Airport (MND)','1','0'),(2533,'','MKR',17320,13,'Meekatharra, Meekatharra Airport (MKR)','1','0'),(2534,'','MEY',17335,153,'Meghauli, Meghauli Airport (MEY)','1','0'),(2535,'NO','MEH',17338,164,'Mehamn, NO - Mehamn Airport (MEH)','1','0'),(2536,'CN','MXZ',17350,46,'Meixian, CN - Meixian Airport (MXZ)','1','0'),(2537,'GA','MKB',17354,80,'Mekambo, GA - Mékambo Airport (MKB)','1','0'),(2538,'ET','MKS',17355,70,'Mekane Selam, ET - Mekane Selam Airport (MKS)','1','0'),(2539,'','MEK',17356,148,'Meknes, Bassatine Air Base (MEK)','1','0'),(2540,'US','MYU',17357,231,'Mekoryuk, US - Mekoryuk Airport (MYU)','1','0'),(2541,'US','MLB',17362,231,'Melbourne, US - Melbourne Intl Airport (MLB)','1','0'),(2542,'ES','MLN',17372,199,'Melilla, ES - Melilla Airport (MLN)','1','0'),(2543,'JP','MMB',17407,110,'Memanbetsu, JP - Memanbetsu Airport (MMB)','1','0'),(2544,'DE','FMM',17409,83,'Memmingen, DE - Memmingen Airport (FMM)','1','0'),(2545,'US','MEM',17411,231,'Memphis, US - Memphis Intl Airport (MEM)','1','0'),(2546,'','MZX',17412,70,'Mena, Mena Airport (MZX)','1','0'),(2547,'','NDM',17421,70,'Mendi, Mendi Airport (NDM)','1','0'),(2548,'AR','MDZ',17425,10,'Mendoza, AR - Governor Francisco Gabrielli Intl Airport (MDZ)','1','0'),(2549,'AO','SPP',17444,6,'Menongue, AO - Menongue Airport (SPP)','1','0'),(2550,'ID','MKQ',17468,102,'Merauke, ID - Mopah Airport (MKQ)','1','0'),(2551,'US','MCE',17471,231,'Merced, US - Merced Regional Airport (MacReady Field) (MCE)','1','0'),(2552,'','MDX',17472,231,'Mercedes, Mercedes Airport (MDX)','1','0'),(2553,'','RDE',17478,102,'Merdey, Merdey Airport (RDE)','1','0'),(2554,'MX','MID',17484,141,'Merida, MX - Manuel Crescencio Rejon Intl Airport (MID)','1','0'),(2555,'VE','MRD',17486,235,'Merida, VE - Carnevalli Airport (MRD)','1','0'),(2556,'','YMB',17512,39,'Merritt, Merritt Airport (YMB)','1','0'),(2557,'','MEP',17517,132,'Mersing, Mersing Airport (MEP)','1','0'),(2558,'TR','MZH',17526,222,'Merzifon, TR - Amasya Merzifon Airport (MZH)','1','0'),(2559,'US','MSC',31930,231,'Mesa, US - Falcon Field Airport (MSC)','1','0'),(2560,'','MFH',17540,231,'Mesquite, Mesquite Airport (MFH)','1','0'),(2561,'','MEZ',17545,195,'Messina, Messina Airport (MEZ)','1','0'),(2562,'','ANN',17565,231,'Metlakatla, Annette Island Airport (ANN)','1','0'),(2563,'MX','MXL',17584,141,'Mexicali, MX - Gen Rodolfo Sanchez Taboada Intl Airport (MXL)','1','0'),(2564,'ZM','MFU',17602,242,'Mfuwe, ZM - Mfuwe Airport (MFU)','1','0'),(2565,'US','MIA',31932,231,'Miami, US - Miami Intl Airport (MIA)','1','0'),(2566,'','TNT',31932,231,'Miami, Dade-Collier Training and Transition Airport (TNT)','1','0'),(2567,'','ZVA',17609,130,'Miandrivazo, Miandrivazo Airport (ZVA)','1','0'),(2568,'','MWD',17611,166,'Mianwali, PAF Base M.M. Alam (MWD)','1','0'),(2569,'','MMM',17634,13,'Middlemount, Middlemount Airport (MMM)','1','0'),(2570,'US','MAF',17645,231,'Midland, US - Midland Intl Airport (MAF)','1','0'),(2571,'FI','MIK',17680,75,'Mikkeli, FI - Mikkeli (MIK)','1','0'),(2572,'US','BML',17686,231,'Milan, US - Berlin Regional (BML)','1','0'),(2573,'US','MLS',17695,231,'Miles City, US - Frank Wiley Field Airport (MLS)','1','0'),(2574,'','MLF',17697,231,'Milford, Milford Municipal Airport (MLF)','1','0'),(2575,'','MFN',17700,157,'Milford Sound, Milford Sound Airport (MFN)','1','0'),(2576,'GR','MLO',17734,86,'Milos, GR - Milos Airport (MLO)','1','0'),(2577,'US','MKE',17744,231,'Milwaukee, US - General Mitchell Intl Airport (MKE)','1','0'),(2578,'MX','MTT',17759,141,'Minatitlan, MX - Minatitlan/Coatzacoalcos National Airport (MTT)','1','0'),(2579,'RU','MRV',17772,181,'Mineralnye Vody, RU - Min Vody Airport (MRV)','1','0'),(2580,'US','MSP',17783,231,'Minneapolis, US - Minneapolis-St Paul Intl Airport (MSP)','1','0'),(2581,'US','LVN',17786,231,'Minnesota City, US - Airlake (LVN)','1','0'),(2582,'US','ARV',17788,231,'Minocqua, US - Lakeland (Noble F. Lee Memorial Field) (ARV)','1','0'),(2583,'US','MOT',17793,231,'Minot, US - Minot Intl Airport (MOT)','1','0'),(2584,'','MHP',17794,20,'Minsk, Minsk-1 Airport (MHP)','1','0'),(2585,'BY','MSQ',17794,20,'Minsk, BY - Minsk Intl Airport (MSQ)','1','0'),(2586,'US','MNT',17798,231,'Minto, US - Minto Airport (MNT)','1','0'),(2587,'','MVX',17803,80,'Minvoul, Minvoul Airport (MVX)','1','0'),(2588,'','MFS',17810,172,'Miraflores, Miraflores Airport (MFS)','1','0'),(2589,'','MJR',17812,231,'Miramar, Miramar Airport (MJR)','1','0'),(2590,'CA','YCH',17817,39,'Miramichi, CA - Miramichi (YCH)','1','0'),(2591,'MY','MYY',17832,132,'Miri, MY - Miri Airport (MYY)','1','0'),(2592,'','MPD',17836,166,'Mirpur Khas, Sindhri Airport (MPD)','1','0'),(2593,'JP','MSJ',17840,110,'Misawa, JP - Misawa Airport (MSJ)','1','0'),(2594,'US','MSO',17853,231,'Missoula, US - Missoula Intl Airport (MSO)','1','0'),(2595,'LY','MRA',17860,123,'Misurata, LY - Misurata Airport (MRA)','1','0'),(2596,'US','MHE',17863,231,'Mitchell, US - Mitchell Municipal (MHE)','1','0'),(2597,'','MTQ',17863,231,'Mitchell, Mitchell Airport (MTQ)','1','0'),(2598,'','MZC',17879,80,'Mitzic, Mitzic Airport (MZC)','1','0'),(2599,'','MIP',17880,106,'Mitzpe Ramon, Mitzpe Ramon Airport (MIP)','1','0'),(2600,'JP','MYE',17884,110,'Miyake Jima, JP - Miyakejiima Airport (MYE)','1','0'),(2601,'JP','KMI',17889,110,'Miyazaki, JP - Miyazaki Airport (KMI)','1','0'),(2602,'ET','MTF',17892,70,'Mizan Teferi, ET - Mizan Teferi Airport (MTF)','1','0'),(2603,'','MBM',17894,195,'Mkambati, Mkambati Airport (MBM)','1','0'),(2604,'','MZQ',17895,195,'Mkuze, Mkuze Airport (MZQ)','1','0'),(2605,'ZA','MBD',17898,195,'Mmabatho, ZA - Mmabatho/Mafikeng Airport (MBD)','1','0'),(2606,'NO','MQN',31953,164,'Mo I Rana, NO - Mo i Rana Airport Rossvoll (MQN)','1','0'),(2607,'US','CNY',17900,231,'Moab, US - Canyonlands Field Airport (CNY)','1','0'),(2608,'','MGX',17901,80,'Moabi, Moabi Airport (MGX)','1','0'),(2609,'FJ','MFJ',17902,74,'Moala, FJ - Moala Airport (MFJ)','1','0'),(2610,'ID','ONI',17906,102,'Moanamani, ID - Moanamani Airport (ONI)','1','0'),(2611,'','MFF',17907,80,'Moanda, Moanda Airport (MFF)','1','0'),(2612,'','MNB',17907,80,'Moanda, Muanda Airport (MNB)','1','0'),(2613,'US','MOB',17910,231,'Mobile, US - Mobile Regional Airport (MOB)','1','0'),(2614,'','MBG',17911,231,'Mobridge, Mobridge Municipal Airport (MBG)','1','0'),(2615,'US','MOD',17917,231,'Modesto, US - Modesto City-County Airport (MOD)','1','0'),(2616,'BY','MVQ',17935,20,'Mogilev, BY - Mogilev (MVQ)','1','0'),(2617,'KM','NWA',17944,50,'Moheli, KM - Mohéli Bandar Es Eslam Airport (NWA)','1','0'),(2618,'US','MHV',17958,231,'Mojave, US - Mojave (MHV)','1','0'),(2619,'','MKH',17962,121,'Mokhotlong, Mokhotlong Airport (MKH)','1','0'),(2620,'','OKU',17967,151,'Mokuti Lodge, Mokuti Lodge Airport (OKU)','1','0'),(2621,'NO','MOL',17971,164,'Molde, NO - Molde Airport Aro (MOL)','1','0'),(2622,'US','MLI',17979,231,'Moline, US - Quad City Intl Airport (MLI)','1','0'),(2623,'KE','MBA',18001,113,'Mombasa, KE - Moi Intl Airport (MBA)','1','0'),(2624,'','MIF',18018,231,'Monahans, Roy Hurd Memorial Airport (MIF)','1','0'),(2625,'TN','MIR',18021,220,'Monastir, TN - Skanes Airport (MIR)','1','0'),(2626,'JP','MBE',18024,110,'Monbetsu, JP - Okhotsk Monbetsu Airport (MBE)','1','0'),(2627,'CA','YQM',18038,39,'Moncton, CA - Greater Moncton Intl Airport (YQM)','1','0'),(2628,'','MNR',18074,242,'Mongu, Mongu Airport (MNR)','1','0'),(2629,'','MYZ',18079,131,'Monkey Bay, Monkey Bay Airport (MYZ)','1','0'),(2630,'US','MLU',18094,231,'Monroe, US - Monroe Regional Airport (MLU)','1','0'),(2631,'LR','MLW',18097,122,'Monrovia, LR - Spriggs Payne Airport (MLW)','1','0'),(2632,'LR','ROB',18097,122,'Monrovia, LR - Roberts Intl Airport (ROB)','1','0'),(2633,'CA','YYY',31957,39,'Mont Joli, CA - Mont-Joli Airport (YYY)','1','0'),(2634,'','ROF',18119,231,'Montague, Montague Airport (ROF)','1','0'),(2635,'MC','MCM',18163,145,'Monte Carlo, MC - Monaco Heliport (MCM)','1','0'),(2636,'JM','MBJ',18188,109,'Montego Bay, JM - Sangster Intl Airport (MBJ)','1','0'),(2637,'US','MRY',18216,231,'Monterey, US - Monterey Peninsula Airport (MRY)','1','0'),(2638,'CO','MTR',18217,49,'Monteria, CO - Los Garzones Airport (MTR)','1','0'),(2639,'','MOY',18222,141,'Monterrey, Monterrey Airport (MOY)','1','0'),(2640,'MX','MTY',18222,141,'Monterrey, MX - Gen Mariano Escobedo Intl Airport (MTY)','1','0'),(2641,'BR','MOC',18223,30,'Montes Claros, BR - Montes Claros Airport (MOC)','1','0'),(2642,'UY','MVD',18237,230,'Montevideo, UY - Carrasco Intl Airport (MVD)','1','0'),(2643,'FR','AVN',18243,76,'Montfavet, FR - Avignon Airport (AVN)','1','0'),(2644,'US','MGM',18252,231,'Montgomery, US - Montgomery Regional Airport / Dannelly Field (MGM)','1','0'),(2645,'','MXC',18259,76,'Monticello, Monticello Airport (MXC)','1','0'),(2646,'US','MSV',18260,231,'Monticello, US - Sullivan County International (MSV)','1','0'),(2647,'FR','MCU',18280,76,'Montlucon, FR - Montluçon – Guéret Airport (MCU)','1','0'),(2648,'FR','MPL',18300,76,'Montpellier, FR - Frejorgues Airport (MPL)','1','0'),(2649,'CA','YHU',18301,39,'Montreal, CA - Saint-Hubert Airport (YHU)','1','0'),(2650,'CA','YMX',18301,39,'Montreal, CA - Mirabel Intl Airport (YMX)','1','0'),(2651,'CA','YUL',18301,39,'Montreal, CA - Pierre Elliott Trudeau Intl Airport (YUL)','1','0'),(2652,'US','MTJ',18314,231,'Montrose, US - Montrose Regional Airport (MTJ)','1','0'),(2653,'MS','MNI',18324,147,'Montserrat, MS - John A Osborne Airport (MNI)','1','0'),(2654,'','NYW',18333,150,'Monywa, Monywa Airport (NYW)','1','0'),(2655,'','MOO',18341,13,'Moomba, Moomba Airport (MOO)','1','0'),(2656,'PF','MOZ',18346,78,'Moorea, PF - Moorea Island - Temae Airport (MOZ)','1','0'),(2657,'CA','YMO',18363,39,'Moosonee, CA - Moosonee Airport (YMO)','1','0'),(2658,'SE','MXX',18366,209,'Mora, SE - Mora Siljan Airport (MXX)','1','0'),(2659,'','TVA',18369,130,'Morafenobe, Morafenobe Airport (TVA)','1','0'),(2660,'','MWB',18388,13,'Morawa, Morawa Airport (MWB)','1','0'),(2661,'','MHY',18403,231,'Morehead, Morehead Airport (MHY)','1','0'),(2662,'MX','MLM',18405,141,'Morelia, MX - Gen Francisco J Mujica Intl Airport (MLM)','1','0'),(2663,'US','MGW',18418,231,'Morgantown, US - Morgantown Municipal Airport (MGW)','1','0'),(2664,'JP','HNA',18429,110,'Morioka, JP - Iwate-Hanamaki Airport (HNA)','1','0'),(2665,'','MXM',18446,130,'Morombe, Morombe Airport (MXM)','1','0'),(2666,'MG','MOQ',18448,130,'Morondava, MG - Morondava Airport (MOQ)','1','0'),(2667,'KM','HAH',18450,50,'Moroni, KM - Prince Said Ibrahim Intl Airport (HAH)','1','0'),(2668,'','YVA',18450,50,'Moroni, Iconi Airport (YVA)','1','0'),(2669,'ID','OTI',18451,102,'Morotai Island, ID - Pitu Airport (OTI)','1','0'),(2670,'','MOX',18456,231,'Morris, Morris Municipal Airport (MOX)','1','0'),(2671,'US','MMU',18460,231,'Morristown, US - Morristown Municipal Airport (MMU)','1','0'),(2672,'','MOR',18460,231,'Morristown, Morristown Regional Airport (MOR)','1','0'),(2673,'','BKA',18487,231,'Moscow, Bykovo Airport (BKA)','1','0'),(2674,'','OSF',18487,231,'Moscow, Ostafyevo International Airport (OSF)','1','0'),(2675,'RU','DME',18488,181,'Moscow, RU - Domodedovo Intl Airport (DME)','1','0'),(2676,'RU','SVO',18488,181,'Moscow, RU - Sheremetyevo Intl Airport (SVO)','1','0'),(2677,'RU','VKO',18488,181,'Moscow, RU - Vnukovo Intl Airport (VKO)','1','0'),(2678,'US','KMY',18493,231,'Moser Bay, US - Moser Bay Seaplane Base (KMY)','1','0'),(2679,'US','MWH',18494,231,'Moses Lake, US - Grant County Intl Airport (MWH)','1','0'),(2680,'NO','MJF',18499,164,'Mosjoen, NO - Mosjoen Airport Kjaerstad (MJF)','1','0'),(2681,'','MSX',18510,51,'Mossendjo, Mossendjo Airport (MSX)','1','0'),(2682,'BA','OMO',18515,27,'Mostar, BA - Mostar Intl Airport (OMO)','1','0'),(2683,'VU','MTV',18520,233,'Mota Lava, VU - Mota Lava Airport (MTV)','1','0'),(2684,'','MZP',18533,157,'Motueka, Motueka Aerodrome (MZP)','1','0'),(2685,'','MJL',18538,80,'Mouila, Mouila Airport (MJL)','1','0'),(2686,'PG','HGU',18555,170,'Mount Hagen, PG - Kagamuga Airport (HGU)','1','0'),(2687,'','LLY',32011,231,'Mount Holly, South Jersey Regional Airport (LLY)','1','0'),(2688,'','MMG',32025,13,'Mount Magnet, Mount Magnet Airport (MMG)','1','0'),(2689,'','MPS',32031,231,'Mount Pleasant, Mount Pleasant Regional Airport (MPS)','1','0'),(2690,'','MSD',32031,231,'Mount Pleasant, Mount Pleasant Airport (MSD)','1','0'),(2691,'','MHS',32038,231,'Mount Shasta, Dunsmuir Municipal-Mott Airport (MHS)','1','0'),(2692,'','WMH',32055,231,'Mountain Home, Ozark Regional Airport (WMH)','1','0'),(2693,'US','MOU',32061,231,'Mountain Village, US - Mountain Village Airport (MOU)','1','0'),(2694,'','MBP',18582,172,'Moyobamba, Moyobamba Airport (MBP)','1','0'),(2695,'NA','MPA',18589,151,'Mpacha, NA - Katima Mulilo Airport (MPA)','1','0'),(2696,'','DUK',18597,195,'Mtubatuba, Dukuduku Airport (DUK)','1','0'),(2697,'TZ','MYW',18599,214,'Mtwara, TZ - Mtwara Airport (MYW)','1','0'),(2698,'AU','DGE',18608,13,'Mudgee, AU - Mudgee Airport (DGE)','1','0'),(2699,'MY','MKM',18637,132,'Mukah, MY - Mukah Airport (MKM)','1','0'),(2700,'YE','RIY',18638,240,'Mukalla, YE - Riyan Mukalla Airport (RIY)','1','0'),(2701,'YE','UKR',18642,240,'Mukeiras, YE - Mukeiras Airport (UKR)','1','0'),(2702,'','LII',18664,102,'Mulia, Mulia Airport (LII)','1','0'),(2703,'','MVK',18665,13,'Mulka, Mulka Airport (MVK)','1','0'),(2704,'','ULL',18666,482,'Mull, Glenforsa Airfield (ULL)','1','0'),(2705,'PK','MUX',18674,166,'Multan, PK - Multan Airport (MUX)','1','0'),(2706,'IN','BOM',18676,101,'Mumbai, IN - Mumbai (Bombay) Intl Airport (BOM)','1','0'),(2707,'US','MIE',18681,231,'Muncie, US - Delaware County Regional Airport (MIE)','1','0'),(2708,'SB','MUA',18683,193,'Munda, SB - Munda Airport (MUA)','1','0'),(2709,'','MNE',18691,13,'Mungeranie, Mungeranie Airport (MNE)','1','0'),(2710,'DE','MUC',18694,83,'Munich, DE - Franz Josef Strauss Airport (MUC)','1','0'),(2711,'ES','MJV',32065,199,'Murcia, ES - Murcia-San Javier Airport (MJV)','1','0'),(2712,'','RMU',32065,199,'Murcia, Región de Murcia International Airport (RMU)','1','0'),(2713,'RU','MMK',18732,181,'Murmansk, RU - Murmansk Airport (MMK)','1','0'),(2714,'','RBK',18750,231,'Murrieta, French Valley Airport (RBK)','1','0'),(2715,'OM','MCT',18762,165,'Muscat, OM - Seeb Intl Airport (MCT)','1','0'),(2716,'US','MSL',18764,231,'Muscle Shoals, US - Northwest Alabama Regional Airport (MSL)','1','0'),(2717,'US','MKG',18767,231,'Muskegon, US - Muskegon County Airport (MKG)','1','0'),(2718,'CA','MSA',18770,39,'Muskrat Dam, CA - Muskrat Dam Airport (MSA)','1','0'),(2719,'','MUZ',18771,214,'Musoma, Musoma Airport (MUZ)','1','0'),(2720,'','MUF',18784,102,'Muting, Muting Airport (MUF)','1','0'),(2721,'','UTB',18786,13,'Muttaburra, Muttaburra Airport (UTB)','1','0'),(2722,'','MFG',18796,166,'Muzaffarabad, Muzaffarabad Airport (MFG)','1','0'),(2723,'','MZU',18797,101,'Muzaffarpur, Muzaffarpur Airport (MZU)','1','0'),(2724,'TZ','MWZ',18798,214,'Mwanza, TZ - Mwanza Airport (MWZ)','1','0'),(2725,'US','MYR',18816,231,'Myrtle Beach, US - Myrtle Beach Intl Airport (MYR)','1','0'),(2726,'IN','MYQ',18821,101,'Mysore, IN - Mysore Airport (MYQ)','1','0'),(2727,'GR','MJT',18826,86,'Mytilene, GR - Mytilene Airport (MJT)','1','0'),(2728,'','MZF',18830,195,'Mzamba, Wild Coast Sun Airport (MZF)','1','0'),(2729,'','ZZU',18832,131,'Mzuzu, Mzuzu Airport (ZZU)','1','0'),(2730,'RU','NBC',18842,181,'Naberevnye Chelny, RU - Begishevo Airport (NBC)','1','0'),(2731,'ID','NBX',18844,102,'Nabire, ID - Nabire Airport (NBX)','1','0'),(2732,'','NCH',18850,214,'Nachingwea, Nachingwea Airport (NCH)','1','0'),(2733,'US','OCH',18853,231,'Nacogdoches, US - A. L. Mangham Jr. Regional (OCH)','1','0'),(2734,'FJ','NAN',18855,74,'Nadi, FJ - Nadi Intl Airport (NAN)','1','0'),(2735,'MA','NDR',18857,148,'Nador, MA - Nador Airport (NDR)','1','0'),(2736,'JP','NGS',18870,110,'Nagasaki, JP - Nagasaki Airport (NGS)','1','0'),(2737,'','OMJ',18870,110,'Nagasaki, Ōmura Airport (OMJ)','1','0'),(2738,'JP','NGO',18875,110,'Nagoya, JP - Chubu Centrair Intl Airport (NGO)','1','0'),(2739,'IN','NAG',18876,101,'Nagpur, IN - Sonegaon Airport (NAG)','1','0'),(2740,'ID','NAH',18881,102,'Naha, ID - Naha Airport (NAH)','1','0'),(2741,'CA','YDP',18891,39,'Nain, CA - Nain Airport (YDP)','1','0'),(2742,'KE','NBO',18894,113,'Nairobi, KE - Jomo Kenyatta Intl Airport (NBO)','1','0'),(2743,'KE','WIL',18894,113,'Nairobi, KE - Wilson Airport (WIL)','1','0'),(2744,'JP','SHB',18903,110,'Nakashibetsu, JP - Nakashibetsu Airport (SHB)','1','0'),(2745,'TH','NAK',34261,215,'Nakhon Ratchasima, TH - Nakhon Ratchasima (NAK)','1','0'),(2746,'','NNK',18907,231,'Naknek, Naknek Airport (NNK)','1','0'),(2747,'RU','NAL',18913,181,'Nalchik, RU - Nalchik Airport (NAL)','1','0'),(2748,'','NBH',18918,13,'Nambucca Heads, Nambucca Heads Airport (NBH)','1','0'),(2749,'AO','MSZ',18921,6,'Namibe, AO - Yuri Gagarin Airport (MSZ)','1','0'),(2750,'','NAM',18922,102,'Namlea, Namlea Airport (NAM)','1','0'),(2751,'','ANO',18926,149,'Nampula, Angoche Airport (ANO)','1','0'),(2752,'MZ','APL',18926,149,'Nampula, MZ - Nampula Airport (APL)','1','0'),(2753,'','NRE',18927,102,'Namrole, Namrole Airport (NRE)','1','0'),(2754,'NO','OSY',18928,164,'Namsos, NO - Namsos Airport Hoknesora (OSY)','1','0'),(2755,'','ZNU',18929,136,'Namu, Namu Water Aerodrome (ZNU)','1','0'),(2756,'CA','YCD',18933,39,'Nanaimo, CA - Nanaimo Airport (YCD)','1','0'),(2757,'CN','KHN',18939,46,'Nanchang, CN - Nanchang Changbei Intl Airport (KHN)','1','0'),(2758,'IN','NDC',18942,101,'Nanded, IN - Shri Guru Gobind Singh Ji Airport (NDC)','1','0'),(2759,'CA','YSR',18947,39,'Nanisivik, CA - Nanisivik Airport (YSR)','1','0'),(2760,'CN','NKG',18949,46,'Nanjing, CN - Nanjing Lukou Intl Airport (NKG)','1','0'),(2761,'GL','JNN',18955,87,'Nanortalik, GL - Nanortalik Heliport (JNN)','1','0'),(2762,'FR','NTE',18962,76,'Nantes, FR - Chateau Bougon Airport (NTE)','1','0'),(2763,'US','ACK',18969,231,'Nantucket, US - Nantucket Memorial Airport (ACK)','1','0'),(2764,'KE','NYK',18975,113,'Nanyuki, KE - Nanyuki Airfield (NYK)','1','0'),(2765,'US','APC',32073,231,'Napa, US - Napa County (APC)','1','0'),(2766,'NZ','NPE',18984,157,'Napier, NZ - Napier - Hawkes Bay Airport (NPE)','1','0'),(2767,'US','APF',18986,231,'Naples, US - Naples Municipal Airport (APF)','1','0'),(2768,'IT','NAP',18987,107,'Naples, IT - Capodichino Airport (NAP)','1','0'),(2769,'','NAU',18995,78,'Napuka, Napuka Airport (NAU)','1','0'),(2770,'','NRM',18996,110,'Nara, Keibane Airport (NRM)','1','0'),(2771,'','NAC',18997,13,'Naracoorte, Naracoorte Airport (NAC)','1','0'),(2772,'TH','NAW',19002,215,'Narathiwat, TH - Narathiwat Airport (NAW)','1','0'),(2773,'CO','NAR',19008,49,'Nare, CO - Puerto Nare Airport (NAR)','1','0'),(2774,'GL','UAK',19025,87,'Narsarsuaq, GL - Narsarsuaq (UAK)','1','0'),(2775,'NO','NVK',19030,164,'Narvik, NO - Narvik Airport Framnes (NVK)','1','0'),(2776,'','ISK',19034,101,'Nashik, Ozar Airport (ISK)','1','0'),(2777,'US','ASH',19035,231,'Nashua, US - Boire Field (ASH)','1','0'),(2778,'US','BNA',19036,231,'Nashville, US - Nashville Intl Airport (BNA)','1','0'),(2779,'BR','NAT',19049,30,'Natal, BR - Augusto Severo Airport (NAT)','1','0'),(2780,'CA','YNA',19054,39,'Natashquan, CA - Natashquan Airport (YNA)','1','0'),(2781,'BR','NVT',19092,30,'Navegantes, BR - Navegantes Airport (NVT)','1','0'),(2782,'','NZC',19110,172,'Nazca, Maria Reiche Neuman Airport (NZC)','1','0'),(2783,'ZM','NLA',19115,242,'Ndola, ZM - Ndola Airport (NLA)','1','0'),(2784,'','NCI',19128,49,'Necocli, Antioquia Airport (NCI)','1','0'),(2785,'','GXG',19144,6,'Negage, Negage Airport (GXG)','1','0'),(2786,'LK','CMB',19147,200,'Negombo, LK - Bandaranaike Intl Airport (CMB)','1','0'),(2787,'JM','NEG',19151,109,'Negril, JM - Negril Aerodrome (NEG)','1','0'),(2788,'SA','EAM',19158,186,'Nejran, SA - Nejran Airport (EAM)','1','0'),(2789,'ET','NEK',19159,70,'Nekemt, ET - Nekemte Airport (NEK)','1','0'),(2790,'NZ','NSN',19168,157,'Nelson, NZ - Nelson Airport (NSN)','1','0'),(2791,'US','NLG',19170,231,'Nelson Lagoon, US - Nelson Lagoon Airport (NLG)','1','0'),(2792,'ZA','NLP',19173,195,'Nelspruit, ZA - Nelspruit Airport (NLP)','1','0'),(2793,'CA','YNS',19180,39,'Nemiscau, CA - Nemiscau Airport (YNS)','1','0'),(2794,'','ENN',19183,231,'Nenana, Nenana Municipal Airport (ENN)','1','0'),(2795,'','NPH',19192,231,'Nephi, Nephi Municipal Airport (NPH)','1','0'),(2796,'RU','NER',19206,181,'Neryungri, RU - Neryungri Airport (NER)','1','0'),(2797,'AR','CPC',19252,10,'Neuquen, AR - Aviador Carlos Campos Airport (CPC)','1','0'),(2798,'AR','NQN',19252,10,'Neuquen, AR - Presidente Peron Intl Airport (NQN)','1','0'),(2799,'US','BAM',19274,231,'Nevada, US - Battle Mountain (Lander County) (BAM)','1','0'),(2800,'FR','NVS',19275,76,'Nevers, FR - Nevers (NVS)','1','0'),(2801,'KN','NEV',19281,202,'Nevis, KN - Newcastle Airport (NEV)','1','0'),(2802,'US','EWB',32091,231,'New Bedford, US - New Bedford Regional Airport (EWB)','1','0'),(2803,'US','EWN',32093,231,'New Bern, US - Coastal Carolina Regional Airport (EWN)','1','0'),(2804,'US','HVN',32119,231,'New Haven, US - Tweed - New Haven Airport (HVN)','1','0'),(2805,'US','LFT',32124,231,'New Iberia, US - Lafayette Regional Airport (LFT)','1','0'),(2806,'US','MSY',32137,231,'New Orleans, US - Louis Armstrong New Orleans Intl Airport (MSY)','1','0'),(2807,'US','KNW',32153,231,'New Stuyahok, US - New Stuyahok Airport (KNW)','1','0'),(2808,'US','EWR',32159,231,'New York, US - Newark Liberty Intl Airport (EWR)','1','0'),(2809,'US','JFK',32159,231,'New York, US - John F Kennedy Intl Airport (JFK)','1','0'),(2810,'US','JRB',32159,231,'New York, US - Downtown Manhattan H/p Airport (JRB)','1','0'),(2811,'US','LGA',32159,231,'New York, US - LaGuardia Airport (LGA)','1','0'),(2812,'','ECS',19311,482,'Newcastle, Mondell Field (ECS)','1','0'),(2813,'GB','NCL',19311,482,'Newcastle, GB - Newcastle Airport (NCL)','1','0'),(2814,'','NCS',19311,482,'Newcastle, Newcastle Airport (NCS)','1','0'),(2815,'AU','BEO',19313,13,'Newcastle, AU - Newcastle - Belmont Airport (BEO)','1','0'),(2816,'','NPT',19345,105,'Newport, Newport State Airport (NPT)','1','0'),(2817,'','NWH',19345,105,'Newport, Parlin Field (NWH)','1','0'),(2818,'US','WWT',19352,231,'Newtok, US - Newtok Airport (WWT)','1','0'),(2819,'','NVY',19365,101,'Neyveli, Neyveli Airport (NVY)','1','0'),(2820,'','RPM',19378,13,'Ngukurr, Ngukurr Airport (RPM)','1','0'),(2821,'US','IAG',19383,231,'Niagara Falls, US - Niagara Falls Intl Airport (IAG)','1','0'),(2822,'FR','NCE',19391,76,'Nice, FR - Cote d`Azur Airport (NCE)','1','0'),(2823,'','NIC',19399,57,'Nicosia, Nicosia International Airport (NIC)','1','0'),(2824,'','NCT',19401,54,'Nicoya, Nicoya Guanacaste Airport (NCT)','1','0'),(2825,'US','NME',19443,231,'Nightmute, US - Nightmute Airport (NME)','1','0'),(2826,'JP','KIJ',19445,110,'Niigata, JP - Niigata Airport (KIJ)','1','0'),(2827,'US','NIB',19457,231,'Nikolai, US - Nikolai Airport (NIB)','1','0'),(2828,'','NIG',19463,114,'Nikunau, Nikunau Airport (NIG)','1','0'),(2829,'','NLE',19467,231,'Niles, Jerry Tyler Memorial Airport (NLE)','1','0'),(2830,'FR','FNI',19473,76,'Nimes, FR - Nimes Airport (FNI)','1','0'),(2831,'CN','NGB',19474,46,'Ningbo, CN - Ningbo Lishe Intl Airport (NGB)','1','0'),(2832,'','NIN',19478,231,'Ninilchik, Ninilchik Airport (NIN)','1','0'),(2833,'','NIO',19481,52,'Nioki, Nioki Airport (NIO)','1','0'),(2834,'YU','INI',19485,241,'Nis, YU - Constantine the Great Airport (INI)','1','0'),(2835,'TO','NTT',19499,218,'Niuatoputapu, TO - Niuatoputapu Airport (NTT)','1','0'),(2836,'RU','GOJ',19506,181,'Nizhniy Novgorod, RU - Nizhniy Novgorod Airport (GOJ)','1','0'),(2837,'','NKY',19510,51,'Nkayi, Yokangassi Airport (NKY)','1','0'),(2838,'US','WTK',19517,231,'Noatak, US - Noatak Airport (WTK)','1','0'),(2839,'US','NNL',19556,231,'Nondalton, US - Nondalton Airport (NNL)','1','0'),(2840,'','NON',19560,114,'Nonouti, Nonouti Airport (NON)','1','0'),(2841,'US','ORV',19569,231,'Noorvik, US - Noorvik Airport (ORV)','1','0'),(2842,'','NSV',19571,13,'Noosaville, Noosa Airport (NSV)','1','0'),(2843,'DE','NRD',19587,83,'Norderney, DE - Norderney Airport (NRD)','1','0'),(2844,'UK','KNF',19601,231,'Norfolk, UK - Marham RAF (KNF)','1','0'),(2845,'US','OFK',19601,231,'Norfolk, US - Karl Stefan Memorial Airport (OFK)','1','0'),(2846,'US','ORF',19601,231,'Norfolk, US - Norfolk Intl Airport (ORF)','1','0'),(2847,'NF','NLK',19603,162,'Norfolk Island, NF - Norfolk Island Airport (NLK)','1','0'),(2848,'RU','NSK',19605,181,'Norilsk, RU - Norilsk Airport (NSK)','1','0'),(2849,'CA','YVQ',34698,39,'Norman Wells, CA - Norman Wells (YVQ)','1','0'),(2850,'SE','NRK',19616,209,'Norrkoping, SE - Kungsangen Airport (NRK)','1','0'),(2851,'','NSM',19618,13,'Norseman, Norseman Airport (NSM)','1','0'),(2852,'VU','NUS',19619,233,'Norsup, VU - Norsup Airport (NUS)','1','0'),(2853,'CA','YQW',19623,39,'North Battleford, CA - North Battleford (YQW)','1','0'),(2854,'US','CAK',32195,231,'North Canton, US - Akron Canton Regional Airport (CAK)','1','0'),(2855,'BS','ELH',19628,16,'North Eleuthera, BS - North Eleuthera Airport (ELH)','1','0'),(2856,'','NCO',32240,231,'North Kingstown, Quonset State Airport (NCO)','1','0'),(2857,'US','LBF',32265,231,'North Platte, US - North Platte Regional Airport/Lee Bird Field (LBF)','1','0'),(2858,'GB','NRL',32279,482,'North Ronaldsay, GB - North Ronaldsay Airport (NRL)','1','0'),(2859,'CA','YNE',19686,39,'Norway House, CA - Norway House Airport (YNE)','1','0'),(2860,'','NQT',19704,469,'Nottingham, Nottingham Airport (NQT)','1','0'),(2861,'MR','NKC',19706,138,'Nouakchott, MR - Nouakchott Airport (NKC)','1','0'),(2862,'NC','GEA',19707,156,'Noumea, NC - Magenta Airport (GEA)','1','0'),(2863,'NC','NOU',19707,156,'Noumea, NC - Tontouta Airport (NOU)','1','0'),(2864,'','NOT',19713,231,'Novato, Marin County Airport (NOT)','1','0'),(2865,'RU','NOZ',19732,181,'Novokuznetsk, RU - Spichenkovo Airport (NOZ)','1','0'),(2866,'RU','OVB',19734,181,'Novosibirsk, RU - Tolmachevo Airport (OVB)','1','0'),(2867,'MX','NLD',19758,141,'Nuevo Laredo, MX - Quetzalcoatl Intl Airport (NLD)','1','0'),(2868,'US','NUI',19761,231,'Nuiqsut, US - Nuiqsut Airport (NUI)','1','0'),(2869,'PF','NHV',19764,78,'Nuku Hiva, PF - Nuku Hiva (NHV)','1','0'),(2870,'UZ','NCU',19767,232,'Nukus, UZ - Nukus Airport (NCU)','1','0'),(2871,'US','NUL',19769,231,'Nulato, US - Nulato Airport (NUL)','1','0'),(2872,'','NUB',19774,13,'Numbulwar, Numbulwar Airport (NUB)','1','0'),(2873,'','FOO',19775,102,'Numfoor, Kornasoren Airport (FOO)','1','0'),(2874,'US','NUP',19776,231,'Nunapitchuk, US - Nunapitchuk Airport (NUP)','1','0'),(2875,'DE','NUE',19786,83,'Nuremberg, DE - Nuremberg Airport (NUE)','1','0'),(2876,'GL','GOH',19796,87,'Nuuk, GL - Nuuk Airport (GOH)','1','0'),(2877,'','NUA',19797,200,'Nuwara Eliya, Gregory Lake Seaplane Base (NUA)','1','0'),(2878,'','ZNC',19799,231,'Nyac, Nyac Airport (ZNC)','1','0'),(2879,'','NYN',19813,13,'Nyngan, Nyngan Airport (NYN)','1','0'),(2880,'US','ODW',32327,231,'Oak Harbor, US - AJ Eisenberg Airport (ODW)','1','0'),(2881,'','ODC',19828,231,'Oakdale, Oakdale Airport (ODC)','1','0'),(2882,'US','OAK',19831,231,'Oakland, US - Metropolitan Oakland Intl Airport (OAK)','1','0'),(2883,'','ODM',19831,231,'Oakland, Garrett County Airport (ODM)','1','0'),(2884,'NZ','OAM',19842,157,'Oamaru, NZ - Oamaru Aerodrome (OAM)','1','0'),(2885,'','OBA',19844,469,'Oban, Oban Airport (OBA)','1','0'),(2886,'','OBD',19845,102,'Obano, Obano Airport (OBD)','1','0'),(2887,'DE','OBF',19872,83,'Oberpfaffenhofen, DE - Oberpfaffenhofen (OBF)','1','0'),(2888,'JP','OBO',19896,110,'Obihiro, JP - Tokachi-Obihiro Airport (OBO)','1','0'),(2889,'','OBC',19897,60,'Obock, Obock Airport (OBC)','1','0'),(2890,'','OCV',19904,49,'Ocana, Aguas Claras Airport (OCV)','1','0'),(2891,'','ZOF',19909,39,'Ocean Falls, Ocean Falls Water Aerodrome (ZOF)','1','0'),(2892,'JM','OCJ',19911,109,'Ocho Rios, JM - Ian Fleming Intl Airport (OCJ)','1','0'),(2893,'DK','ODE',19926,59,'Odense, DK - Odense Airport (ODE)','1','0'),(2894,'UA','ODS',19932,227,'Odessa, UA - Odessa Central - Tsentrainy Airport (ODS)','1','0'),(2895,'','OGA',19954,231,'Ogallala, Searle Field (OGA)','1','0'),(2896,'US','OGS',19956,231,'Ogdensburg, US - Ogdensburg Intl Airport (OGS)','1','0'),(2897,'MK','OHD',19969,129,'Ohrid, MK - Ohrid Airport (OHD)','1','0'),(2898,'','OYK',19972,30,'Oiapoque, Oiapoque Airport (OYK)','1','0'),(2899,'JP','OIT',19978,110,'Oita, JP - Oita Airport (OIT)','1','0'),(2900,'','OKQ',19983,102,'Okaba, Okaba Airport (OKQ)','1','0'),(2901,'JP','OKJ',19991,110,'Okayama, JP - Okayama Airport (OKJ)','1','0'),(2902,'JP','OKE',20006,110,'Okino Erabu, JP - Okinoerabu Airport (OKE)','1','0'),(2903,'','OKN',20011,80,'Okondja, Okondja Airport (OKN)','1','0'),(2904,'','OKG',20013,51,'Okoyo, Okoyo Airport (OKG)','1','0'),(2905,'','OKL',20015,102,'Oksibil, Gunung Bintang Airport (OKL)','1','0'),(2906,'JP','OIR',20017,110,'Okushiri, JP - Okushiri Airport (OIR)','1','0'),(2907,'','OFJ',20018,100,'Olafsfjordur, Ólafsfjörður Airport (OFJ)','1','0'),(2908,'','JCI',20023,231,'Olathe, New Century AirCenter (JCI)','1','0'),(2909,'IT','OLB',20027,107,'Olbia, IT - Costa Smeralda Airport (OLB)','1','0'),(2910,'CA','YOC',32342,39,'Old Crow, CA - Old Crow Airport (YOC)','1','0'),(2911,'','ONY',20075,231,'Olney, Olney Municipal Airport (ONY)','1','0'),(2912,'','OLO',20079,58,'Olomouc, Olomouc Airport (OLO)','1','0'),(2913,'','OLJ',20084,233,'Olpoi, Olpoi Airport (OLJ)','1','0'),(2914,'US','OLM',20092,231,'Olympia, US - Hoskins Field Airport (OLM)','1','0'),(2915,'','MIQ',32358,231,'Omaha, Millard Airport (MIQ)','1','0'),(2916,'US','OMA',32358,231,'Omaha, US - Eppley Airfield (OMA)','1','0'),(2917,'GA','OMB',20102,80,'Omboue, GA - Omboué Hospital Airport (OMB)','1','0'),(2918,'RU','OMS',20113,181,'Omsk, RU - Omsk Airport (OMS)','1','0'),(2919,'NA','OND',20122,151,'Ondangwa, NA - Ondangwa Airport (OND)','1','0'),(2920,'','ONH',20131,231,'Oneonta, Oneonta Municipal Airport (ONH)','1','0'),(2921,'','ONU',20137,74,'Ono-i-lau, Ono-i-Lau Airport (ONU)','1','0'),(2922,'','OOT',20138,114,'Onotoa, Onotoa Airport (OOT)','1','0'),(2923,'','ONS',20140,13,'Onslow, Onslow Airport (ONS)','1','0'),(2924,'US','ONT',20141,231,'Ontario, US - Ontario Intl Airport (ONT)','1','0'),(2925,'BE','OST',20151,21,'Oostende, BE - Bruges Intl Airport (OST)','1','0'),(2926,'','OPW',20177,151,'Opuwo, Opuwa Airport (OPW)','1','0'),(2927,'RO','OMR',20180,179,'Oradea, RO - Oradea Intl Airport (OMR)','1','0'),(2928,'DZ','ORN',20183,3,'Oran, DZ - Oran Es Senia Airport (ORN)','1','0'),(2929,'NA','OMD',20190,151,'Oranjemund, NA - Oranjemund Airport (OMD)','1','0'),(2930,'TW','KYD',20207,212,'Orchid Island, TW - Lanyu Airport (KYD)','1','0'),(2931,'','OGU',20215,222,'Ordu, Ordu-Giresun Airport (OGU)','1','0'),(2932,'SE','ORB',20219,209,'Orebro, SE - Bofors Airport (ORB)','1','0'),(2933,'','FNU',20246,107,'Oristano, Oristano-Fenosu Airport (FNU)','1','0'),(2934,'US','MCO',20252,231,'Orlando, US - Orlando Intl Airport (MCO)','1','0'),(2935,'US','SFB',20252,231,'Orlando, US - Orlando Sanford Intl Airport (SFB)','1','0'),(2936,'','ORW',20257,166,'Ormara, Ormara Airport (ORW)','1','0'),(2937,'SE','OER',20267,209,'Ornskoldsvik, SE - Ornskoldsvik Airport (OER)','1','0'),(2938,'CO','ORC',20268,49,'Orocue, CO - Orocue Airport (ORC)','1','0'),(2939,'','ORS',20278,13,'Orpheus Island, Orpheus Island Resort Waterport (ORS)','1','0'),(2940,'JP','KIX',32378,110,'Osaka, JP - Kansai Intl Airport (KIX)','1','0'),(2941,'','OSC',20301,231,'Oscoda, Oscoda–Wurtsmith Airport (OSC)','1','0'),(2942,'KG','OSS',20303,117,'Osh, KG - Osh Airport (OSS)','1','0'),(2943,'','OHI',20304,151,'Oshakati, Oshakati Airport (OHI)','1','0'),(2944,'CA','YOO',20305,39,'Oshawa, CA - Oshawa Airport (YOO)','1','0'),(2945,'','OKS',20306,231,'Oshkosh, Garden County Airport (OKS)','1','0'),(2946,'US','OSH',20306,231,'Oshkosh, US - Wittman Regional Airport (OSH)','1','0'),(2947,'SE','OSK',20312,209,'Oskarshamn, SE - Oskarshamn Airport (OSK)','1','0'),(2948,'NO','OSL',20314,164,'Oslo, NO - Oslo Intl Airport Gardermoen (OSL)','1','0'),(2949,'NO','RYG',20314,164,'Oslo, NO - Moss Airport Rygge (RYG)','1','0'),(2950,'NO','TRF',20314,164,'Oslo, NO - Sandefjord Airport Torp (TRF)','1','0'),(2951,'CL','ZOS',20329,45,'Osorno, CL - Osorno Airport (ZOS)','1','0'),(2952,'SE','OSD',20353,209,'Ostersund, SE - Ostersund Airport (OSD)','1','0'),(2953,'','OTJ',20386,151,'Otjiwarongo, Otjiwarongo Airport (OTJ)','1','0'),(2954,'CA','YOW',20398,39,'Ottawa, CA - Macdonald-Cartier Intl Airport (YOW)','1','0'),(2955,'CA','YRO',20398,39,'Ottawa, CA - Ottawa/Rockcliffe (YRO)','1','0'),(2956,'US','OTM',20412,231,'Ottumwa, US - Ottumwa Industrial (OTM)','1','0'),(2957,'CO','OTU',20413,49,'Otu, CO - Alberto Jaramillo Sanchez Airport (OTU)','1','0'),(2958,'BF','OUA',20415,35,'Ouagadougou, BF - Ouagadougou Airport (OUA)','1','0'),(2959,'DZ','OGX',20417,3,'Ouargla, DZ - Ain Beida Airport (OGX)','1','0'),(2960,'MA','OZZ',20418,148,'Ouarzazate, MA - Ouarzazate Airport (OZZ)','1','0'),(2961,'CG','OUE',20429,51,'Ouesso, CG - Ouésso Airport (OUE)','1','0'),(2962,'MA','OUD',20434,148,'Oujda, MA - Les Angades Airport (OUD)','1','0'),(2963,'FI','OUL',20439,75,'Oulu, FI - Oulu Airport (OUL)','1','0'),(2964,'NC','UVE',20457,156,'Ouvea, NC - Ouvea Airport (UVE)','1','0'),(2965,'','OYN',20458,13,'Ouyen, Ouyen Airport (OYN)','1','0'),(2966,'IL','VDA',20464,106,'Ovda, IL - Ovda Airport (VDA)','1','0'),(2967,'','FTX',20482,51,'Owando, Owando Airport (FTX)','1','0'),(2968,'US','OWB',20488,231,'Owensboro, US - Daviess County Airport (OWB)','1','0'),(2969,'US','OXR',20498,231,'Oxnard, US - Oxnard Airport (OXR)','1','0'),(2970,'','OYE',20500,80,'Oyem, Oyem Airport (OYE)','1','0'),(2971,'ID','AEG',20539,102,'Padang, ID - Aek Godang Airport (AEG)','1','0'),(2972,'ID','PDG',20539,102,'Padang, ID - Tabing Airport (PDG)','1','0'),(2973,'DE','PAD',20543,83,'Paderborn, DE - Paderborn/Lippstadt Airport (PAD)','1','0'),(2974,'US','PAH',20549,231,'Paducah, US - Barkley Regional Airport (PAH)','1','0'),(2975,'AS','PPG',20561,4,'Pago Pago, AS - Pago Pago (Tafuna) Intl Airport (PPG)','1','0'),(2976,'','PGO',20562,231,'Pagosa Springs, Stevens Field (PGO)','1','0'),(2977,'','RON',20581,49,'Paipa, Juan José Rondón Airport (RON)','1','0'),(2978,'LA','PKZ',20594,118,'Pakse, LA - Pakse Intl Airport (PKZ)','1','0'),(2979,'','PLF',32393,231,'Pala, Pala Airport (PLF)','1','0'),(2980,'','PCH',20596,231,'Palacios, Palacios Airport (PCH)','1','0'),(2981,'','PSX',20596,231,'Palacios, Palacios Municipal Airport (PSX)','1','0'),(2982,'LT','PLQ',20608,125,'Palanga, LT - Palanga Airport (PLQ)','1','0'),(2983,'ID','PKY',20609,102,'Palangkaraya, ID - Tjilik Riwut (Panarung) Airport (PKY)','1','0'),(2984,'ID','PLM',20621,102,'Palembang, ID - Badaruddin Ii Airport (PLM)','1','0'),(2985,'','PQM',20623,141,'Palenque, Palenque International Airport (PQM)','1','0'),(2986,'','LBH',20647,12,'Palm Beach, Palm Beach Water Airport (LBH)','1','0'),(2987,'','PLI',20648,204,'Palm Island, Palm Island Airport (PLI)','1','0'),(2988,'','PMK',20648,204,'Palm Island, Palm Island Airport (PMK)','1','0'),(2989,'ES','PMI',32395,199,'Palma De Mallorca, ES - Palma de Mallorca (Son Sant Joan) Airport (PMI)','1','0'),(2990,'CR','PMZ',20652,54,'Palmar, CR - Palmar Sur Airport (PMZ)','1','0'),(2991,'BR','PMW',20655,30,'Palmas, BR - Palmas Airport (PMW)','1','0'),(2992,'US','PAQ',20659,231,'Palmer, US - Palmer Municipal (PAQ)','1','0'),(2993,'','PMX',20659,231,'Palmer, Metropolitan Airport (PMX)','1','0'),(2994,'NZ','PMR',20664,157,'Palmerston North, NZ - Palmerston North Airport (PMR)','1','0'),(2995,'','PMS',20669,231,'Palmyra, Palmyra Airport (PMS)','1','0'),(2996,'ID','PLW',20677,102,'Palu, ID - Mutiara Airport (PLW)','1','0'),(2997,'ES','PNA',20685,199,'Pamplona, ES - Pamplona Airport (PNA)','1','0'),(2998,'US','PFN',20693,231,'Panama City, US - Bay County Intl Airport (PFN)','1','0'),(2999,'ID','PKN',20713,102,'Pangkalanbuun, ID - Iskandar Airport (PKN)','1','0'),(3000,'ID','PGK',20714,102,'Pangkalpinang, ID - Depati Amir Airport (PGK)','1','0'),(3001,'MY','PKG',20715,132,'Pangkor, MY - Pangkor Airport (PKG)','1','0'),(3002,'CA','YXP',20717,39,'Pangnirtung, CA - Pangnirtung Airport (YXP)','1','0'),(3003,'','PNU',20720,231,'Panguitch, Panguitch Municipal Airport (PNU)','1','0'),(3004,'PK','PJG',20723,166,'Panjgur, PK - Panjgur Airport (PJG)','1','0'),(3005,'IT','PNL',20735,107,'Pantelleria, IT - Pantelleria Airport (PNL)','1','0'),(3006,'IN','PGH',20739,101,'Pantnagar, IN - Pantnagar Airport (PGH)','1','0'),(3007,'','WPO',20746,231,'Paonia, North Fork Valley Airport (WPO)','1','0'),(3008,'GB','PPW',20747,482,'Papa Westray, GB - Papa Westray Airport (PPW)','1','0'),(3009,'PF','PPT',20756,78,'Papeete, PF - Tahiti - Faaa Airport (PPT)','1','0'),(3010,'CY','PFO',20761,57,'Paphos, CY - Paphos Intl Airport (PFO)','1','0'),(3011,'','PYS',20772,231,'Paradise, Paradise Skypark (PYS)','1','0'),(3012,'','YDE',20775,39,'Paradise River, Paradise River Airport (YDE)','1','0'),(3013,'','ORG',20786,206,'Paramaribo, Zorg en Hoop Airport (ORG)','1','0'),(3014,'SR','PBM',20786,206,'Paramaribo, SR - Zanderij Intl Airport (PBM)','1','0'),(3015,'NZ','PPQ',20794,157,'Paraparaumu, NZ - Kapiti Coast Airport (PPQ)','1','0'),(3016,'','SIW',20795,102,'Parapat, Sibisa Airport (SIW)','1','0'),(3017,'','PRS',20796,193,'Parasi, Parasi Airport (PRS)','1','0'),(3018,'FR','CDG',20822,76,'Paris, FR - Charles De Gaulle (Roissy) Airport (CDG)','1','0'),(3019,'FR','ORY',20822,76,'Paris, FR - Orly Airport (ORY)','1','0'),(3020,'','VIY',20822,76,'Paris, Vélizy – Villacoublay Air Base (VIY)','1','0'),(3021,'FR','XCR',20822,76,'Paris, FR - Chalons Vatry Airport (XCR)','1','0'),(3022,'US','PRX',20823,231,'Paris, US - Cox Field (PRX)','1','0'),(3023,'US','PKB',20827,231,'Parkersburg, US - Mid-Ohio Valley Regional Airport (PKB)','1','0'),(3024,'IT','PMF',20841,107,'Parma, IT - Giuseppe Verdi Airport (PMF)','1','0'),(3025,'','PDN',20845,13,'Parndana, Parndana Airport (PDN)','1','0'),(3026,'BT','PBH',20849,25,'Paro, BT - Paro Airport (PBH)','1','0'),(3027,'','PGL',20877,231,'Pascagoula, Trent Lott International Airport (PGL)','1','0'),(3028,'US','PSC',20878,231,'Pasco, US - Tri-Cities Airport (PSC)','1','0'),(3029,'','IXT',34457,101,'Pasighat, Pasighat Airport (IXT)','1','0'),(3030,'PK','PSI',20884,166,'Pasni, PK - Pasni Airport (PSI)','1','0'),(3031,'BR','PFB',20891,30,'Passo Fundo, BR - Passo Fundo Airport (PFB)','1','0'),(3032,'CO','PSO',20893,49,'Pasto, CO - Antonio Narino Airport (PSO)','1','0'),(3033,'','IXP',20909,101,'Pathankot, Pathankot Airport (IXP)','1','0'),(3034,'IN','PAT',20918,101,'Patna, IN - Patna Airport (PAT)','1','0'),(3035,'GR','GPA',20921,86,'Patras, GR - Araxos Airport (GPA)','1','0'),(3036,'IS','PFJ',20922,100,'Patreksfjordur, IS - Patreksfjörður Airport (PFJ)','1','0'),(3037,'','PAN',20924,215,'Pattani, Pattani Airport (PAN)','1','0'),(3038,'','PYX',20925,215,'Pattaya, Pattaya Airpark (PYX)','1','0'),(3039,'CA','YPC',20937,39,'Paulatuk, CA - Nora Aliqatchialuk Ruben Airport (YPC)','1','0'),(3040,'KZ','PWQ',20944,112,'Pavlodar, KZ - Pavlodar Airport (PWQ)','1','0'),(3041,'UY','PDU',20960,230,'Paysandu, UY - Paysandu (PDU)','1','0'),(3042,'','PJB',20961,231,'Payson, Payson Airport (PJB)','1','0'),(3043,'CA','YPE',20965,39,'Peace River, CA - Peace River (YPE)','1','0'),(3044,'','PGS',20966,231,'Peach Springs, Grand Canyon Caverns Airport (PGS)','1','0'),(3045,'US','PDB',20998,231,'Pedro Bay, US - Pedro Bay Airport (PDB)','1','0'),(3046,'ID','PKU',21026,102,'Pekanbaru, ID - Simpang Tiga Airport (PKU)','1','0'),(3047,'US','PLN',21045,231,'Pellston, US - Pellston Regional Airport (PLN)','1','0'),(3048,'CA','YBB',21046,39,'Pelly Bay, CA - Kugaaruk Airport (formerly Pelly Bay Airport) (YBB)','1','0'),(3049,'CA','YUF',21046,39,'Pelly Bay, CA - Dewline Site Airport (YUF)','1','0'),(3050,'BR','PET',21049,30,'Pelotas, BR - Pelotas Intl Airport (PET)','1','0'),(3051,'MZ','POL',21052,149,'Pemba, MZ - Pemba Airport (POL)','1','0'),(3052,'CA','YTA',21060,39,'Pembroke, CA - Pembroke (YTA)','1','0'),(3053,'MY','PEN',21074,132,'Penang, MY - Penang Intl Airport (PEN)','1','0'),(3054,'US','PDT',21082,231,'Pendleton, US - Eastern Oregon Regional Airport at Pendleton (PDT)','1','0'),(3055,'CK','PYE',21103,53,'Penrhyn Island, CK - Tongareva Airport (PYE)','1','0'),(3056,'US','PNS',21107,231,'Pensacola, US - Pensacola Regional Airport (PNS)','1','0'),(3057,'GB','PZE',21116,482,'Penzance, GB - Penzance Airport (PZE)','1','0'),(3058,'US','PIA',21119,231,'Peoria, US - Gen Wayne A. Downing Peoria Intl Airport (PIA)','1','0'),(3059,'CO','PEI',21134,49,'Pereira, CO - Matecana Airport (PEI)','1','0'),(3060,'FR','PGX',21147,76,'Perigueux, FR - Perigueux Bassillac Airport (PGX)','1','0'),(3061,'','PMQ',21153,10,'Perito Moreno, Perito Moreno Airport (PMQ)','1','0'),(3062,'RU','PEE',21162,181,'Perm, RU - Perm Airport (PEE)','1','0'),(3063,'FR','PGF',21172,76,'Perpignan, FR - Rivesaltes Airport (PGF)','1','0'),(3064,'','FPY',21177,231,'Perry, Perry-Foley Airport (FPY)','1','0'),(3065,'','PRO',21177,231,'Perry, Perry Municipal Airport (PRO)','1','0'),(3066,'IT','PSR',21199,107,'Pescara, IT - Abruzzo Airport (PSR)','1','0'),(3067,'PK','PEW',21208,166,'Peshawar, PK - Peshawar Airport (PEW)','1','0'),(3068,'CA','YPQ',21220,39,'Peterborough, CA - Peterborough (YPQ)','1','0'),(3069,'','PGC',21226,231,'Petersburg, Grant County Airport (PGC)','1','0'),(3070,'US','PSG',21226,231,'Petersburg, US - Petersburg Airport (PSG)','1','0'),(3071,'BR','PNZ',21250,30,'Petrolina, BR - Petrolina Intl Airport (PNZ)','1','0'),(3072,'ZA','PHW',21288,195,'Phalaborwa, ZA - Hendrik Van Eck Airport (PHW)','1','0'),(3073,'','BBX',21301,231,'Philadelphia, Wings Field (BBX)','1','0'),(3074,'US','PHL',21301,231,'Philadelphia, US - Philadelphia Intl Airport (PHL)','1','0'),(3075,'US','PNE',21301,231,'Philadelphia, US - Northeast Philadelphia (PNE)','1','0'),(3076,'','PSQ',21301,231,'Philadelphia, Philadelphia Seaplane Base (PSQ)','1','0'),(3077,'','PZL',21308,195,'Phinda, Zulu Inyala Airport (PZL)','1','0'),(3078,'TH','PHS',21311,215,'Phitsanulok, TH - Phitsanulok Airport (PHS)','1','0'),(3079,'KH','PNH',21313,37,'Phnom Penh, KH - Pochentong Airport (PNH)','1','0'),(3080,'TH','PRH',21317,215,'Phrae, TH - Phrae Airport (PRH)','1','0'),(3081,'TH','HKT',21319,215,'Phuket, TH - Phuket Intl Airport (HKT)','1','0'),(3082,'CA','YPL',21354,39,'Pickle Lake, CA - Pickle Lake (YPL)','1','0'),(3083,'PT','PIX',21356,175,'Pico Island, PT - Pico Airport (PIX)','1','0'),(3084,'NZ','PCN',21359,157,'Picton, NZ - Picton Airport (PCN)','1','0'),(3085,'US','PIR',21374,231,'Pierre, US - Pierre Regional Airport (PIR)','1','0'),(3086,'SK','PZY',21382,191,'Piestany, SK - Piešťany (PZY)','1','0'),(3087,'ZA','PZB',21383,195,'Pietermaritzburg, ZA - Pietermaritzburg Airport (PZB)','1','0'),(3088,'CA','YPM',21398,39,'Pikangikum, CA - Pikangikum Airport (YPM)','1','0'),(3089,'','PVL',21402,231,'Pikeville, Pike County Airport (PVL)','1','0'),(3090,'','PIL',21407,10,'Pilar, Carlos Miguel Jiménez Airport (PIL)','1','0'),(3091,'','WPC',21419,39,'Pincher Creek, Pincher Creek Airport (WPC)','1','0'),(3092,'US','PIM',32438,231,'Pine Mountain, US - Callaway Gardens-Harris County (PIM)','1','0'),(3093,'','XPR',32439,231,'Pine Ridge, Pine Ridge Airport (XPR)','1','0'),(3094,'','PWY',21428,231,'Pinedale, Ralph Wenz Field (PWY)','1','0'),(3095,'IT','PSA',21478,107,'Pisa, IT - Galileo Galilei Intl Airport (PSA)','1','0'),(3096,'','PIO',21487,172,'Pisco, Capitán FAP Renán Elías Olivera Airport (PIO)','1','0'),(3097,'US','PTS',21509,231,'Pittsburg, US - Atkinson Municipal (PTS)','1','0'),(3098,'US','PIT',21510,231,'Pittsburgh, US - Pittsburgh Intl Airport (PIT)','1','0'),(3099,'PE','PIU',21517,172,'Piura, PE - Piura Airport (PIU)','1','0'),(3100,'US','PTU',21557,231,'Platinum, US - Platinum Airport (PTU)','1','0'),(3101,'US','PLB',21561,231,'Plattsburgh, US - Plattsburgh (PLB)','1','0'),(3102,'','PKJ',21572,235,'Playa Grande, Playa Grande Airport (PKJ)','1','0'),(3103,'','PWD',21585,231,'Plentywood, Sher-Wood Airport (PWD)','1','0'),(3104,'BG','PDV',21620,34,'Plovdiv, BG - Plovdiv Krumovo Airport (PDV)','1','0'),(3105,'','PLY',21624,231,'Plymouth, Plymouth Municipal Airport (PLY)','1','0'),(3106,'GB','PLH',21625,482,'Plymouth, GB - Plymouth Airport (PLH)','1','0'),(3107,'','POH',21635,231,'Pocahontas, Pocahontas Municipal Airport (POH)','1','0'),(3108,'US','PIH',21638,231,'Pocatello, US - Pocatello Regional Airport (PIH)','1','0'),(3109,'BR','POO',21645,30,'Pocos De Caldas, BR - Pocos De Caldas (POO)','1','0'),(3110,'','POD',21654,187,'Podor, Podor Airport (POD)','1','0'),(3111,'FM','PNI',21663,143,'Pohnpei, FM - Pohnpei Intl Airport (PNI)','1','0'),(3112,'US','PHO',32472,231,'Point Hope, US - Point Hope Airport (PHO)','1','0'),(3113,'US','PIZ',32473,231,'Point Lay, US - Point Lay Airport (PIZ)','1','0'),(3114,'CG','PNR',21671,51,'Pointe Noire, CG - Pointe Noire Airport (PNR)','1','0'),(3115,'FR','PIS',21682,76,'Poitiers, FR - Biard Airport (PIS)','1','0'),(3116,'NP','PKR',21687,153,'Pokhara, NP - Pokhara Airport (PKR)','1','0'),(3117,'','PXL',21693,231,'Polacca, Polacca Airport (PXL)','1','0'),(3118,'US','POQ',21704,231,'Polk Inlet, US - Polk Inlet Airport (POQ)','1','0'),(3119,'','PLV',21721,227,'Poltava, Poltava Airport (PLV)','1','0'),(3120,'','PPM',21737,231,'Pompano Beach, Pompano Beach Airpark (PPM)','1','0'),(3121,'US','PNC',21741,231,'Ponca City, US - Ponca City Regional Airport (PNC)','1','0'),(3122,'PR','PSE',21742,176,'Ponce, PR - Mercedita Airport (PSE)','1','0'),(3123,'CA','YIO',34980,39,'Pond Inlet, CA - Pond Inlet Airport (YIO)','1','0'),(3124,'IN','PNY',34558,101,'Pondicherry, IN - Pondicherry Civil (PNY)','1','0'),(3125,'','PGZ',21754,30,'Ponta Grossa, Comte. Antonio Amilton Beraldo Airport (PGZ)','1','0'),(3126,'ID','PNK',21783,102,'Pontianak, ID - Supadio Airport (PNK)','1','0'),(3127,'CO','PPN',21810,49,'Popayan, CO - Guillermo Leon Valencia Airport (PPN)','1','0'),(3128,'CA','YHP',21814,39,'Poplar Hill, CA - Poplar Hill Airport (YHP)','1','0'),(3129,'IN','PBD',21819,101,'Porbandar, IN - Porbandar Airport (PBD)','1','0'),(3130,'FI','POR',21824,75,'Pori, FI - Pori Airport (POR)','1','0'),(3131,'VE','PMV',21826,235,'Porlamar, VE - Porlamar Airport (PMV)','1','0'),(3132,'','YPB',32496,39,'Port Alberni, Alberni Valley Regional Airport (YPB)','1','0'),(3133,'US','PTD',32497,231,'Port Alexander, US - Potsdam Municipal (Damon Field) (PTD)','1','0'),(3134,'','PTC',32498,231,'Port Alice, Port Alice Seaplane Base (PTC)','1','0'),(3135,'US','PTA',32501,231,'Port Alsworth, US - Port Alsworth Airport (PTA)','1','0'),(3136,'US','CLM',32502,231,'Port Angeles, US - William R Fairchild Intl Airport (CLM)','1','0'),(3137,'JM','POT',21837,109,'Port Antonio, JM - Ken Jones Aerodrome (POT)','1','0'),(3138,'US','PTL',32505,231,'Port Armstrong, US - Port Armstrong Airport (PTL)','1','0'),(3139,'HT','PAP',21838,95,'Port Au Prince, HT - Toussaint Louverture Intl Airport (PAP)','1','0'),(3140,'MG','WPB',21839,130,'Port Berge, MG - Port Bergé Airport (WPB)','1','0'),(3141,'IN','IXZ',32511,101,'Port Blair, IN - Port Blair Airport (IXZ)','1','0'),(3142,'US','KPC',32520,231,'Port Clarence, US - Port Clarence Airport (KPC)','1','0'),(3143,'GA','POG',21842,80,'Port Gentil, GA - Port Gentil Airport (POG)','1','0'),(3144,'US','PGM',32541,231,'Port Graham, US - Port Graham Airport (PGM)','1','0'),(3145,'NG','PHC',21843,160,'Port Harcourt, NG - Port Harcourt Airport (PHC)','1','0'),(3146,'','PHG',21843,160,'Port Harcourt, Port Harcourt City Airport (PHG)','1','0'),(3147,'CA','YZT',32544,39,'Port Hardy, CA - Port Hardy Airport (YZT)','1','0'),(3148,'US','PTH',32548,231,'Port Heiden, US - Port Heiden Airport (PTH)','1','0'),(3149,'CA','YHA',32550,39,'Port Hope Simpson, CA - Port Hope Simpson Airport (YHA)','1','0'),(3150,'US','PHN',32553,231,'Port Huron, US - St. Clair County International (PHN)','1','0'),(3151,'CA','YPN',32567,39,'Port Menier, CA - Port Menier Airport (YPN)','1','0'),(3152,'PG','POM',21845,170,'Port Moresby, PG - Jackson Airport (POM)','1','0'),(3153,'TT','POS',21846,219,'Port Of Spain, TT - Piarco Intl Airport (POS)','1','0'),(3154,'CA','YPI',32581,39,'Port Simpson, CA - Port Simpson Water Aerodrome (YPI)','1','0'),(3155,'','PZU',21847,205,'Port Sudan, Port Sudan New International Airport (PZU)','1','0'),(3156,'','TWD',32587,231,'Port Townsend, Jefferson County International Airport (TWD)','1','0'),(3157,'VU','VLI',21848,233,'Port Vila, VU - Bauerfield Airport (VLI)','1','0'),(3158,'US','PDX',21885,231,'Portland, US - Portland Intl Airport (PDX)','1','0'),(3159,'US','PWM',21885,231,'Portland, US - Portland Intl Jetport (PWM)','1','0'),(3160,'PT','OPO',32595,175,'Porto, PT - Francisco Sa Carneiro Airport (OPO)','1','0'),(3161,'BR','POA',21894,30,'Porto Alegre, BR - Salgado Filho Airport (POA)','1','0'),(3162,'','PBN',21895,6,'Porto Amboim, Porto Amboim Airport (PBN)','1','0'),(3163,'PT','PXO',32626,175,'Porto Santo, PT - Porto Santo Airport (PXO)','1','0'),(3164,'SI','POW',21909,192,'Portoroz, SI - Portoroz Airport (POW)','1','0'),(3165,'EC','PVO',21913,64,'Portoviejo, EC - Portoviejo (PVO)','1','0'),(3166,'','PMH',21922,231,'Portsmouth, Greater Portsmouth Regional Airport (PMH)','1','0'),(3167,'AR','PSS',21936,10,'Posadas, AR - Libertador General Jose de San Martin Airport (PSS)','1','0'),(3168,'ID','PSJ',21942,102,'Poso, ID - Kasiguncu Airport (PSJ)','1','0'),(3169,'CA','YSO',21952,39,'Postville, CA - Postville Airport (YSO)','1','0'),(3170,'US','POU',21973,231,'Poughkeepsie, US - Dutchess County (POU)','1','0'),(3171,'US','SWF',21973,231,'Poughkeepsie, US - Stewart Intl Airport (SWF)','1','0'),(3172,'','PUL',21979,231,'Poulsbo, Port of Poulsbo Marina Moorage Seaplane Base (PUL)','1','0'),(3173,'','PUV',21982,156,'Poum, Malabou Airport (PUV)','1','0'),(3174,'CA','YPX',21994,39,'Povungnituk, CA - Puvirnituq Airport (YPX)','1','0'),(3175,'','POY',21998,231,'Powell, Powell Municipal Airport (POY)','1','0'),(3176,'','WPL',21999,39,'Powell River, Powell Lake Water Aerodrome (WPL)','1','0'),(3177,'CA','YPW',21999,39,'Powell River, CA - Powell River Airport (YPW)','1','0'),(3178,'MX','PAZ',22003,141,'Poza Rica, MX - El Tajin National Airport (PAZ)','1','0'),(3179,'PL','POZ',22004,174,'Poznan, PL - Lawica Airport (POZ)','1','0'),(3180,'BR','PDF',22020,30,'Prado, BR - Prado (PDF)','1','0'),(3181,'CZ','PRG',22026,58,'Prague, CZ - Ruzyne Airport (PRG)','1','0'),(3182,'','VOD',22026,58,'Prague, Vodochody Airport (VOD)','1','0'),(3183,'CV','RAI',22028,41,'Praia, CV - Mendes Airport (RAI)','1','0'),(3184,'','PCD',32631,231,'Prairie Du Chien, Prairie du Chien Municipal Airport (PCD)','1','0'),(3185,'','PRW',22071,231,'Prentice, Prentice Airport (PRW)','1','0'),(3186,'US','PRC',22075,231,'Prescott, US - Prescott Municipal Apt / Earnest A. Love Field (PRC)','1','0'),(3187,'US','PQI',22082,231,'Presque Isle, US - Northern Maine Regional Airport at Presque Isle (PQI)','1','0'),(3188,'ZA','PRY',22094,195,'Pretoria, ZA - Wonderboom Airport (PRY)','1','0'),(3189,'US','PUC',22103,231,'Price, US - Carbon County (PUC)','1','0'),(3190,'CA','YPA',22114,39,'Prince Albert, CA - Prince Albert Airport (Glass Field) (YPA)','1','0'),(3191,'','PCT',22118,39,'Princeton, Princeton Airport (PCT)','1','0'),(3192,'','PNN',22118,39,'Princeton, Princeton Municipal Airport (PNN)','1','0'),(3193,'YU','PRN',22126,241,'Pristina, YU - Pristina Intl Airport (PRN)','1','0'),(3194,'US','PVD',22151,231,'Providence, US - T F Green Airport (PVD)','1','0'),(3195,'CO','PVA',22152,49,'Providencia, CO - El Embrujo Airport (PVA)','1','0'),(3196,'TC','PLS',22153,221,'Providenciales, TC - Providenciales Intl Airport (PLS)','1','0'),(3197,'US','PVC',22155,231,'Provincetown, US - Provincetown Municipal Airport (PVC)','1','0'),(3198,'US','PVU',22157,231,'Provo, US - Provo Municipal Airport (PVU)','1','0'),(3199,'PE','PCL',22177,172,'Pucallpa, PE - Capitan Rolden Airport (PCL)','1','0'),(3200,'MX','PBC',22188,141,'Puebla, MX - Hermanos Serdan Intl Airport (PBC)','1','0'),(3201,'VE','PYH',22197,235,'Puerto Ayacucho, VE - Cacique Aramare Airport (PYH)','1','0'),(3202,'CO','PBE',22200,49,'Puerto Berrio, CO - Morela Airport (PBE)','1','0'),(3203,'','PUZ',22201,158,'Puerto Cabezas, Puerto Cabezas Airport (PUZ)','1','0'),(3204,'DO','POP',22206,61,'Puerto Plata, DO - Gregorio Luperon Intl Airport (POP)','1','0'),(3205,'','PCC',32651,199,'Puerto Rico, Puerto Rico Airport (PCC)','1','0'),(3206,'','PUR',32651,199,'Puerto Rico, Puerto Rico Airport (PUR)','1','0'),(3207,'','XPK',22218,39,'Pukatawagan, Pukatawagan Airport (XPK)','1','0'),(3208,'HR','PUY',22220,55,'Pula, HR - Pula Airport (PUY)','1','0'),(3209,'US','GZS',22223,231,'Pulaski, US - Abernathy Field (GZS)','1','0'),(3210,'US','LIT',22223,231,'Pulaski, US - Adams Field Airport (LIT)','1','0'),(3211,'MY','TOD',22224,132,'Pulau Besar, MY - Pulau Tioman Airport (TOD)','1','0'),(3212,'US','PUW',22230,231,'Pullman, US - Moscow Regional Airport (PUW)','1','0'),(3213,'IN','PNQ',22238,101,'Pune, IN - Pune Airport (PNQ)','1','0'),(3214,'CL','PUQ',22242,45,'Punta Arenas, CL - Ibanez Airport (PUQ)','1','0'),(3215,'DO','PUJ',22244,61,'Punta Cana, DO - Punta Cana Intl Airport (PUJ)','1','0'),(3216,'UY','PDP',22246,230,'Punta Del Este, UY - Cap. Corbeta Curbelo Intl Airport (PDP)','1','0'),(3217,'BZ','PND',22248,22,'Punta Gorda, BZ - Punta Gorda Airport (PND)','1','0'),(3218,'','JAP',22251,54,'Puntarenas, Chacarita Airport (JAP)','1','0'),(3219,'MM','PBU',22275,150,'Putao, MM - Putao Airport (PBU)','1','0'),(3220,'','PUT',22287,101,'Puttaparthi, Sri Sathya Sai Airport (PUT)','1','0'),(3221,'','PRU',22307,150,'Pyay, Pyay Airport (PRU)','1','0'),(3222,'','UNE',22317,121,'Qacha\'s Nek, Qacha\'s Nek Airport (UNE)','1','0'),(3223,'SA','AQI',22318,186,'Qaisumah, SA - Qaisumah Airport (AQI)','1','0'),(3224,'CN','TAO',22327,46,'Qingdao, CN - Qingdao Liuting Intl Airport (TAO)','1','0'),(3225,'CN','SHP',22335,46,'Qinhuangdao, CN - Qinhuangdao Shanhaiguan Airport (SHP)','1','0'),(3226,'','BAR',22336,46,'Qionghai, Qionghai Bo\'ao Airport (BAR)','1','0'),(3227,'','IHN',22339,240,'Qishn, Qishn Airport (IHN)','1','0'),(3228,'','YQJ',22342,39,'Quadra Island, April Point Water Aerodrome (YQJ)','1','0'),(3229,'CA','XQU',22345,39,'Qualicum, CA - Qualicum Beach Airport (XQU)','1','0'),(3230,'CA','YQC',22351,39,'Quaqtaq, CA - Quaqtaq Airport (YQC)','1','0'),(3231,'CA','YQB',22364,39,'Quebec, CA - Jean Lesage Intl Airport (YQB)','1','0'),(3232,'CA','YTM',22364,39,'Quebec, CA - (La Macaza) Mont Tremblant Intl Airport (YTM)','1','0'),(3233,'','ABG',22372,13,'Queensland Central Coast, Abingdon Airport (ABG)','1','0'),(3234,'','AGW',22372,13,'Queensland Central Coast, Agnew Airport (AGW)','1','0'),(3235,'','AUD',22372,13,'Queensland Central Coast, Augustus Downs Airport (AUD)','1','0'),(3236,'','BBL',22372,13,'Queensland Central Coast, Ballera Airport (BBL)','1','0'),(3237,'US','BCK',22372,13,'Queensland Central Coast, US - Bolwarra (BCK)','1','0'),(3238,'','BKP',22372,13,'Queensland Central Coast, Barkly Downs Airport (BKP)','1','0'),(3239,'','BLS',22372,13,'Queensland Central Coast, Bollon Airport (BLS)','1','0'),(3240,'','BZP',22372,13,'Queensland Central Coast, Bizant Airport (BZP)','1','0'),(3241,'','CML',22372,13,'Queensland Central Coast, Camooweal Airport (CML)','1','0'),(3242,'','UEE',22373,157,'Queenstown, Queenstown Airport (UEE)','1','0'),(3243,'NZ','ZQN',22373,157,'Queenstown, NZ - Frankton Airport (ZQN)','1','0'),(3244,'MZ','UEL',22379,149,'Quelimane, MZ - Quelimane Airport (UEL)','1','0'),(3245,'CR','XQP',22382,54,'Quepos, CR - Quepos Managua Airport (XQP)','1','0'),(3246,'CA','YQZ',22386,39,'Quesnel, CA - Quesnel Airport (YQZ)','1','0'),(3247,'PK','UET',22389,166,'Quetta, PK - Quetta Airport (UET)','1','0'),(3248,'','AAZ',22391,91,'Quetzaltenango, Quetzaltenango Airport (AAZ)','1','0'),(3249,'CO','UIB',22397,49,'Quibdo, CO - El Carano Airport (UIB)','1','0'),(3250,'FR','UIP',22407,76,'Quimper, FR - Pluguffan Airport (UIP)','1','0'),(3251,'US','UIN',22412,231,'Quincy, US - Quincy Regional Airport / Baldwin Field (UIN)','1','0'),(3252,'US','KWN',22415,231,'Quinhagak, US - Quinhagak Airport (KWN)','1','0'),(3253,'','UIR',22427,13,'Quirindi, Quirindi Airport (UIR)','1','0'),(3254,'EC','UIO',22429,64,'Quito, EC - Mariscal Sucre Intl Airport (UIO)','1','0'),(3255,'MA','RBA',22446,148,'Rabat, MA - Rabat Airport (RBA)','1','0'),(3256,'','RDO',22474,174,'Radom, Radom Airport (RDO)','1','0'),(3257,'CA','YRA',22480,39,'Rae Lakes, CA - Rae Lakes Airports (YRA)','1','0'),(3258,'SA','RAH',22485,186,'Rafha, SA - Rafha Airport (RAH)','1','0'),(3259,'PK','RYK',22496,166,'Rahim Yar Khan, PK - Rahim Yar Khan Airport (RYK)','1','0'),(3260,'PF','RFP',22499,78,'Raiatea, PF - Uturoa Airport (RFP)','1','0'),(3261,'CA','YOP',22504,39,'Rainbow Lake, CA - Rainbow Lake Airport (YOP)','1','0'),(3262,'IN','RPR',22508,101,'Raipur, IN - Raipur Airport (RPR)','1','0'),(3263,'IN','RJA',22510,101,'Rajahmundry, IN - Rajahmundry Airport (RJA)','1','0'),(3264,'IN','RAJ',22511,101,'Rajkot, IN - Rajkot Airport (RAJ)','1','0'),(3265,'BD','RJH',22515,18,'Rajshahi, BD - Shah Makhdum Airport (RJH)','1','0'),(3266,'','RMD',22526,101,'Ramagundam, Ramagundam Airport (RMD)','1','0'),(3267,'','RNU',22559,132,'Ranau, Ranau Airport (RNU)','1','0'),(3268,'IN','IXR',22562,101,'Ranchi, IN - Birsa Munda Airport (IXR)','1','0'),(3269,'','RNG',22578,231,'Rangely, Rangely Airport (RNG)','1','0'),(3270,'PF','RGI',22580,78,'Rangiroa, PF - Rangiroa Airport (RGI)','1','0'),(3271,'CA','YRT',22584,39,'Rankin Inlet, CA - Rankin Inlet Airport (YRT)','1','0'),(3272,'','RSK',22590,102,'Ransiki, Abresso Airport (RSK)','1','0'),(3273,'US','RAP',32662,231,'Rapid City, US - Rapid City Regional Airport (RAP)','1','0'),(3274,'CK','RAR',22604,53,'Rarotonga, CK - Rarotonga Airport (RAR)','1','0'),(3275,'','RHR',22605,228,'Ras Al Khaimah, Al Hamra Seaplane Base (RHR)','1','0'),(3276,'AE','RKT',22605,228,'Ras Al Khaimah, AE - Ras Al Khaimah Airport (RKT)','1','0'),(3277,'','RBE',22610,37,'Ratanakiri, Ratanakiri Airport (RBE)','1','0'),(3278,'','RTC',22618,101,'Ratnagiri, Ratnagiri Airport (RTC)','1','0'),(3279,'IS','RFN',22621,100,'Raufarhofn, IS - Raufarhöfn Airport (RFN)','1','0'),(3280,'PK','RAZ',22641,166,'Rawala Kot, PK - Rawalakot Airport (RAZ)','1','0'),(3281,'US','RDG',22659,231,'Reading, US - Reading Regional Airport/Spaatz Field (RDG)','1','0'),(3282,'JP','RBJ',22667,110,'Rebun, JP - Rebun (RBJ)','1','0'),(3283,'BR','REC',22672,30,'Recife, BR - Guararapes Airport (REC)','1','0'),(3284,'US','RDV',32671,231,'Red Devil, US - Red Devil Airport (RDV)','1','0'),(3285,'CA','YRL',34703,39,'Red Lake, CA - Red Lake Airport (YRL)','1','0'),(3286,'MY','RDN',22682,132,'Redang Island, MY - Redang Airport (RDN)','1','0'),(3287,'','RCL',22686,233,'Redcliffe, Redcliffe Airport (RCL)','1','0'),(3288,'','BZF',22689,231,'Redding, Benton Field (BZF)','1','0'),(3289,'US','RDD',22689,231,'Redding, US - Redding Municipal Airport (RDD)','1','0'),(3290,'BR','RDC',22691,30,'Redencao, BR - Redenção Airport (RDC)','1','0'),(3291,'US','RDM',22704,231,'Redmond, US - Roberts Field/Redmond Municipal Airport (RDM)','1','0'),(3292,'','RED',22717,231,'Reedsville, Mifflin County Airport (RED)','1','0'),(3293,'','RFG',22722,231,'Refugio, Rooke Field (RFG)','1','0'),(3294,'IT','REG',32681,107,'Reggio Calabria, IT - Reggio Calabria Airport (REG)','1','0'),(3295,'CA','YQR',22731,39,'Regina, CA - Regina Intl Airport (YQR)','1','0'),(3296,'FR','RHE',22748,76,'Reims, FR - Reims Champagne (RHE)','1','0'),(3297,'FR','RNS',32687,76,'Rennes, FR - St Jacques Airport (RNS)','1','0'),(3298,'','RNZ',22787,231,'Rensselaer, Jasper County Airport (RNZ)','1','0'),(3299,'US','RNT',22788,231,'Renton, US - Renton Municipal (RNT)','1','0'),(3300,'CA','YUT',22795,39,'Repulse Bay, CA - Repulse Bay Airport (YUT)','1','0'),(3301,'','REZ',22801,30,'Resende, Resende Airport (REZ)','1','0'),(3302,'AR','RES',22803,10,'Resistencia, AR - Resistencia Intl Airport (RES)','1','0'),(3303,'CA','YRB',22805,39,'Resolute, CA - Resolute Bay Airport (YRB)','1','0'),(3304,'ES','REU',22818,199,'Reus, ES - Reus Airport (REU)','1','0'),(3305,'','REW',22831,101,'Rewa, Churhata Airport (REW)','1','0'),(3306,'IS','KEF',22839,100,'Reykjavik, IS - Keflavik Intl Airport (KEF)','1','0'),(3307,'MX','REX',22843,141,'Reynosa, MX - Gen Lucio Blanco Intl Airport (REX)','1','0'),(3308,'US','RHI',22861,231,'Rhinelander, US - Oneida County Airport (RHI)','1','0'),(3309,'BR','RAO',22894,30,'Ribeirao Preto, BR - Ribeirao Preto Airport (RAO)','1','0'),(3310,'BO','RIB',22897,26,'Riberalta, BO - Riberalta Airport (RIB)','1','0'),(3311,'','RIE',32694,231,'Rice Lake, Rice Lake Regional Airport (RIE)','1','0'),(3312,'ZA','RCB',22905,195,'Richards Bay, ZA - Richards Bay Airport (RCB)','1','0'),(3313,'US','RIF',22909,231,'Richfield, US - Richfield Municipal (RIF)','1','0'),(3314,'US','OAJ',22912,231,'Richlands, US - Albert J Ellis Airport (OAJ)','1','0'),(3315,'US','RIC',22913,231,'Richmond, US - Richmond Intl Airport (RIC)','1','0'),(3316,'','XRH',22913,231,'Richmond, RAAF Base Richmond (XRH)','1','0'),(3317,'','IES',22935,83,'Riesa, Riesa–Göhlis Airfield (IES)','1','0'),(3318,'LV','RIX',22945,119,'Riga, LV - Riga Intl Airport (RIX)','1','0'),(3319,'CA','YRG',22950,39,'Rigolet, CA - Rigolet Airport (YRG)','1','0'),(3320,'HR','RJK',22954,55,'Rijeka, HR - Rijeka Airport (RJK)','1','0'),(3321,'IT','RMI',32701,107,'Rimini, IT - Federico Fellini Airport (RMI)','1','0'),(3322,'CA','YXK',22963,39,'Rimouski, CA - Rimouski (YXK)','1','0'),(3323,'SB','RIN',22980,193,'Ringi Cove, SB - Ringgi Cove Airport (RIN)','1','0'),(3324,'BR','RBR',32702,30,'Rio Branco, BR - Placido de Castro Intl Airport (RBR)','1','0'),(3325,'BR','GIG',32706,30,'Rio De Janeiro, BR - Rio de Janeiro Intl Airport (GIG)','1','0'),(3326,'BR','SDU',32706,30,'Rio De Janeiro, BR - Aeroporto Santos Dumont Airport (SDU)','1','0'),(3327,'','SNZ',32706,30,'Rio De Janeiro, Santa Cruz Air Force Base (SNZ)','1','0'),(3328,'BR','RIG',32714,30,'Rio Grande, BR - Rio Grande Regional Airport (RIG)','1','0'),(3329,'CO','RCH',22998,49,'Riohacha, CO - Almirante Padilla Airport (RCH)','1','0'),(3330,'','RIJ',22999,172,'Rioja, Juan Simons Vela Airport (RIJ)','1','0'),(3331,'JP','RIS',23019,110,'Rishiri, JP - Rishiri Airport (RIS)','1','0'),(3332,'','ECI',23031,158,'Rivas, Costa Esmeralda Airport (ECI)','1','0'),(3333,'UY','RVY',23034,230,'Rivera, UY - Rivera (RVY)','1','0'),(3334,'','YRN',23039,39,'Rivers Inlet, Rivers Inlet Water Aerodrome (YRN)','1','0'),(3335,'US','RAL',23040,231,'Riverside, US - Riverside Municipal (RAL)','1','0'),(3336,'US','RIR',23040,231,'Riverside, US - Flabob (RIR)','1','0'),(3337,'US','RIW',23041,231,'Riverton, US - Riverton Regional Airport (RIW)','1','0'),(3338,'SA','RUH',23057,186,'Riyadh, SA - King Khalid Intl Airport (RUH)','1','0'),(3339,'SA','RUJ',23057,186,'Riyadh, SA - RIYADH Airport (RUJ)','1','0'),(3340,'','RIZ',23060,46,'Rizhao, Rizhao Shanzihe Airport (RIZ)','1','0'),(3341,'FR','RNE',23063,76,'Roanne, FR - Renaison (RNE)','1','0'),(3342,'US','ROA',23064,231,'Roanoke, US - Roanoke Regional Airport / Woodrum Field Airport (ROA)','1','0'),(3343,'HN','RTB',23065,97,'Roatan, HN - Juan Manuel Galvez Intl Airport (RTB)','1','0'),(3344,'CA','YRJ',23073,39,'Roberval, CA - Roberval Airport (YRJ)','1','0'),(3345,'','ROH',23075,13,'Robinhood, Robinhood Airport (ROH)','1','0'),(3346,'','RBC',23080,13,'Robinvale, Robinvale Airport (RBC)','1','0'),(3347,'US','RCE',23098,231,'Roche Harbor, US - Roche Harbor Seaplane Base (RCE)','1','0'),(3348,'US','ROC',23110,231,'Rochester, US - Greater Rochester Intl Airport (ROC)','1','0'),(3349,'US','RST',23110,231,'Rochester, US - Rochester Intl Airport (RST)','1','0'),(3350,'','RKH',32742,231,'Rock Hill, Rock Hill/York County Airport (RKH)','1','0'),(3351,'BS','RSD',23113,16,'Rock Sound, BS - Rock Sound Airport (RSD)','1','0'),(3352,'US','RKS',32747,231,'Rock Springs, US - Sweetwater County Airport (RKS)','1','0'),(3353,'US','RFD',23118,231,'Rockford, US - Greater Rockford Airport (RFD)','1','0'),(3354,'US','RKD',23123,231,'Rockland, US - Knox County Regional Airport (RKD)','1','0'),(3355,'FR','RDZ',23143,76,'Rodez, FR - Rodez Airport (RDZ)','1','0'),(3356,'MU','RRG',23148,139,'Rodrigues Island, MU - Sir Gaetan Duval Airport (RRG)','1','0'),(3357,'NO','RVK',23153,164,'Roervik, NO - Rorvik Ryumsjoen Airport (RVK)','1','0'),(3358,'IT','CIA',32754,107,'Rome, IT - Rome Ciampino Airport (CIA)','1','0'),(3359,'IT','FCO',32754,107,'Rome, IT - Leonardo Da Vinci - Fiumicino Airport (FCO)','1','0'),(3360,'','REO',32754,107,'Rome, Rome State Airport (REO)','1','0'),(3361,'BR','ROO',23224,30,'Rondonopolis, BR - Maestro Marinho Franco Airport (ROO)','1','0'),(3362,'DK','RNN',23228,59,'Ronne, DK - Bornholm Airport (RNN)','1','0'),(3363,'SE','RNB',23229,209,'Ronneby, SE - Kallinge Airport (RNB)','1','0'),(3364,'','ROL',23236,231,'Roosevelt, Roosevelt Municipal Airport (ROL)','1','0'),(3365,'NO','RRS',23247,164,'Roros, NO - Roros Airport (RRS)','1','0'),(3366,'AR','ROS',23254,10,'Rosario, AR - Rosario Intl Airport (ROS)','1','0'),(3367,'','ROX',23263,231,'Roseau, Roseau Municipal Airport (ROX)','1','0'),(3368,'','RSB',23267,13,'Roseberth, Roseberth Airport (RSB)','1','0'),(3369,'','RLP',23272,13,'Rosella Plains, Rosella Plains Airport (RLP)','1','0'),(3370,'IL','RPN',23288,106,'Rosh Pina, IL - Rosh-Pina Airport (RPN)','1','0'),(3371,'','XRR',32761,39,'Ross River, Ross River Airport (XRR)','1','0'),(3372,'NO','RET',23322,164,'Rost, NO - Rost Airport (RET)','1','0'),(3373,'RU','ROV',23326,181,'Rostov, RU - Rostov Airport (ROV)','1','0'),(3374,'US','ROW',23328,231,'Roswell, US - Roswell Intl Air Center Airport (ROW)','1','0'),(3375,'MP','ROP',23330,163,'Rota, MP - Rota Intl Airport (ROP)','1','0'),(3376,'','ROZ',23330,163,'Rota, US Naval Station Rota (ROZ)','1','0'),(3377,'ID','RTI',23348,102,'Roti, ID - Rote Airport (RTI)','1','0'),(3378,'NZ','ROT',23350,157,'Rotorua, NZ - Rotorua Airport (ROT)','1','0'),(3379,'NL','RTM',23354,154,'Rotterdam, NL - Rotterdam The Hague Airport (RTM)','1','0'),(3380,'FR','URO',23361,76,'Rouen, FR - Rouen Airport (URO)','1','0'),(3381,'CA','ZRJ',23368,39,'Round Lake, CA - Round Lake Airport (ZRJ)','1','0'),(3382,'','RPX',23370,231,'Roundup, Roundup Airport (RPX)','1','0'),(3383,'IN','RRK',23371,101,'Rourkela, IN - Rourkela (RRK)','1','0'),(3384,'','RSX',23372,231,'Rouses Point, Rouses Point Seaplane Base (RSX)','1','0'),(3385,'BG','ROU',23373,34,'Rousse, BG - Ruse Airport (ROU)','1','0'),(3386,'FI','RVN',23379,75,'Rovaniemi, FI - Rovaniemi Airport (RVN)','1','0'),(3387,'','RYN',23402,76,'Royan, Royan – Médis Aerodrome (RYN)','1','0'),(3388,'US','RBY',23420,231,'Ruby, US - Ruby Airport (RBY)','1','0'),(3389,'','RUG',23443,46,'Rugao, Rugao Air Base (RUG)','1','0'),(3390,'','RUI',23453,231,'Ruidoso, Sierra Blanca Regional Airport (RUI)','1','0'),(3391,'NA','NDU',23469,151,'Rundu, NA - Rundu Airport (NDU)','1','0'),(3392,'','RUP',23477,69,'Rupsi, Rupsi Airport (RUP)','1','0'),(3393,'PF','RUR',23479,78,'Rurutu, PF - Rurutu Airport (RUR)','1','0'),(3394,'','RSL',23489,231,'Russell, Russell Municipal Airport (RSL)','1','0'),(3395,'US','RSH',23496,231,'Russian Mission, US - Russian Mission Airport (RSH)','1','0'),(3396,'ID','RTG',23507,102,'Ruteng, ID - Frans Sales Lega Airport (RTG)','1','0'),(3397,'','RTP',23517,13,'Rutland Plains, Rutland Plains Airport (RTP)','1','0'),(3398,'','RZN',23524,181,'Ryazan, Turlatovo Airport (RZN)','1','0'),(3399,'PL','RZE',23531,174,'Rzeszow, PL - Rzeszow Airport (RZE)','1','0'),(3400,'DE','SCN',23548,83,'Saarbrucken, DE - Saarbrucken Airport (SCN)','1','0'),(3401,'MY','BKI',23560,132,'Sabah, MY - Kota Kinabalu Airport (BKI)','1','0'),(3402,'','SBV',23560,132,'Sabah, Sabah Airport (SBV)','1','0'),(3403,'','GSS',23566,195,'Sabie, Sabi Sabi Airport (GSS)','1','0'),(3404,'CA','ZPB',23580,39,'Sachigo Lake, CA - Sachigo Lake Airport (ZPB)','1','0'),(3405,'US','SAC',23585,231,'Sacramento, US - Sacramento Executive (SAC)','1','0'),(3406,'US','SMF',23585,231,'Sacramento, US - Sacramento Intl Airport (SMF)','1','0'),(3407,'','SAD',23599,231,'Safford, Safford Regional Airport (SAD)','1','0'),(3408,'MA','SFI',23601,148,'Safi, MA - Safi Airport (SFI)','1','0'),(3409,'','SBR',23620,13,'Saibai Island, Saibai Island Airport (SBR)','1','0'),(3410,'BD','SPD',23624,18,'Saidpur, BD - Saidpur Airport (SPD)','1','0'),(3411,'','SDT',23625,166,'Saidu Sharif, Saidu Sharif Airport (SDT)','1','0'),(3412,'','SJF',32830,39,'Saint John, Cruz Bay Seaplane Base (SJF)','1','0'),(3413,'CA','YSJ',32830,39,'Saint John, CA - Saint John Airport (YSJ)','1','0'),(3414,'','RVH',23644,181,'Saint Petersburg, Rzhevka Airport (RVH)','1','0'),(3415,'MG','SMS',23712,130,'Sainte Marie, MG - Sainte Marie Airport (SMS)','1','0'),(3416,'MP','SPN',23950,163,'Saipan, MP - Saipan Intl Airport (SPN)','1','0'),(3417,'TH','SNO',23957,215,'Sakon Nakhon, TH - Sakon Nakhon Airport (SNO)','1','0'),(3418,'OM','SLL',23963,165,'Salalah, OM - Salalah Intl Airport (SLL)','1','0'),(3419,'IN','SXV',23984,101,'Salem, IN - Salem (SXV)','1','0'),(3420,'','SLT',23995,231,'Salida, Harriet Alexander Field (SLT)','1','0'),(3421,'','LMB',23999,131,'Salima, Salima Airport (LMB)','1','0'),(3422,'US','SBO',24002,231,'Salina, US - Salina-Gunnison (SBO)','1','0'),(3423,'US','SLN',24002,231,'Salina, US - Salina Municipal Airport (SLN)','1','0'),(3424,'','SRW',24007,482,'Salisbury, Rowan County Airport (SRW)','1','0'),(3425,'CA','YZG',24015,39,'Salluit, CA - Salluit Airport (YZG)','1','0'),(3426,'','YSN',24019,39,'Salmon Arm, Salmon Arm Airport (YSN)','1','0'),(3427,'TC','SLX',24029,221,'Salt Cay, TC - Salt Cay Airport (SLX)','1','0'),(3428,'AR','SLA',24033,10,'Salta, AR - El Aybal/Martin Miguel de Guemes Intl Airport (SLA)','1','0'),(3429,'UY','STY',24042,230,'Salto, UY - Nueva Hesperides Intl Airport (STY)','1','0'),(3430,'BR','SSA',24049,30,'Salvador, BR - Deputado Luis Eduardo Magalhaes Intl Airport (SSA)','1','0'),(3431,'DO','EPS',24057,61,'Samana, DO - Arroyo Barril Airport (EPS)','1','0'),(3432,'RU','KUF',24058,181,'Samara, RU - Samara Airport (KUF)','1','0'),(3433,'ID','SRI',24060,102,'Samarinda, ID - Temindung Airport (SRI)','1','0'),(3434,'UZ','SKD',24061,232,'Samarkand, UZ - Samarkand Airport (SKD)','1','0'),(3435,'MG','SVB',24064,130,'Sambava, MG - Sambava Airport (SVB)','1','0'),(3436,'KE','UAS',24065,113,'Samburu, KE - Samburu Airport (UAS)','1','0'),(3437,'CH','SMV',24066,210,'Samedan, CH - Samedan (Engadin) Airport (SMV)','1','0'),(3438,'BS','SAQ',24093,16,'San Andros, BS - San Andros Airport (SAQ)','1','0'),(3439,'US','SJT',32906,231,'San Angelo, US - San Angelo Regional Airport/Mathis Field (SJT)','1','0'),(3440,'US','SAT',32909,231,'San Antonio, US - San Antonio Intl Airport (SAT)','1','0'),(3441,'VE','SVZ',24096,235,'San Antonio, VE - San Antonio Airport (SVZ)','1','0'),(3442,'AR','OES',32919,10,'San Antonio Oeste, AR - San Antonio Oeste (OES)','1','0'),(3443,'US','DAG',32930,231,'San Bernardino, US - Barstow-Daggett (DAG)','1','0'),(3444,'','RBF',32930,231,'San Bernardino, Big Bear City Airport (RBF)','1','0'),(3445,'','NBL',32934,141,'San Blas, Wannukandi Airport (NBL)','1','0'),(3446,'','NCR',32939,231,'San Carlos, San Carlos Airport (NCR)','1','0'),(3447,'US','MYF',32964,231,'San Diego, US - Montgomery Field (MYF)','1','0'),(3448,'US','SAN',32964,231,'San Diego, US - San Diego Intl Airport (Lindbergh Field) (SAN)','1','0'),(3449,'US','SDM',32964,231,'San Diego, US - Brown Field Municipal (SDM)','1','0'),(3450,'MX','SFH',32982,141,'San Felipe, MX - San Felipe Intl Airport (SFH)','1','0'),(3451,'','SNF',32982,141,'San Felipe, Sub Teniente Nestor Arias Airport (SNF)','1','0'),(3452,'','SSD',32982,141,'San Felipe, San Felipe Airport (SSD)','1','0'),(3453,'','SFE',32985,199,'San Fernando, San Fernando Airport (SFE)','1','0'),(3454,'US','SFO',32994,231,'San Francisco, US - San Francisco Intl Airport (SFO)','1','0'),(3455,'','CYD',24102,22,'San Ignacio, San Ignacio Town Airstrip (CYD)','1','0'),(3456,'','SGM',24102,22,'San Ignacio, San Ignacio Airfield (SGM)','1','0'),(3457,'','SQS',24102,22,'San Ignacio, Matthew Spain Airport (SQS)','1','0'),(3458,'','SJV',33030,10,'San Javier, San Javier Airport (SJV)','1','0'),(3459,'US','SJC',33033,231,'San Jose, US - Norman Y. Mineta San Jose Intl Airport (SJC)','1','0'),(3460,'AR','UAQ',33041,10,'San Juan, AR - Domingo Faustino Sarmiento Airport (UAQ)','1','0'),(3461,'AR','LUQ',33073,10,'San Luis, AR - Brigadier Mayor Cesar Raul Ojeda Airport (LUQ)','1','0'),(3462,'MX','SLP',33076,141,'San Luis Potosi, MX - Ponciano Arriaga Intl Airport (SLP)','1','0'),(3463,'MX','UAC',33077,141,'San Luis Rio Colorado, MX - San Luis Río Colorado Airport (UAC)','1','0'),(3464,'','SRS',33080,231,'San Marcos, San Marcos Airport (SRS)','1','0'),(3465,'','NMG',33100,173,'San Miguel, San Miguel Airport (NMG)','1','0'),(3466,'AR','AFA',33149,10,'San Rafael, AR - San Rafael Airport (AFA)','1','0'),(3467,'','SRF',33149,10,'San Rafael, San Rafael Airport (SRF)','1','0'),(3468,'ES','EAS',33160,199,'San Sebastian, ES - San Sebastian (EAS)','1','0'),(3469,'US','SDP',33190,231,'Sand Point, US - Sand Point Airport (SDP)','1','0'),(3470,'MY','SDK',24126,132,'Sandakan, MY - Sandakan Airport (SDK)','1','0'),(3471,'NO','SDN',24127,164,'Sandane, NO - Sandane Airport Anda (SDN)','1','0'),(3472,'GB','NDY',24129,482,'Sanday, GB - Sanday Airport (NDY)','1','0'),(3473,'NO','SSJ',24144,164,'Sandnessjoen, NO - Sandnessjoen Airport Stokka (SSJ)','1','0'),(3474,'CA','YZP',24152,39,'Sandspit, CA - Sandspit Airport (YZP)','1','0'),(3475,'CA','ZSJ',24165,39,'Sandy Lake, CA - Sandy Lake Airport (ZSJ)','1','0'),(3476,'CA','YSK',24177,39,'Sanikiluaq, CA - Sanikiluaq Airport (YSK)','1','0'),(3477,'','SQJ',24185,46,'Sanming, Sanming Shaxian Airport (SQJ)','1','0'),(3478,'SB','NNB',24198,193,'Santa Ana, SB - Santa Ana Airport (NNB)','1','0'),(3479,'','SCA',24201,10,'Santa Catalina, Santa Catalina Airport (SCA)','1','0'),(3480,'ES','SPC',33260,199,'Santa Cruz De La Palma, ES - La Palma Airport (SPC)','1','0'),(3481,'','CSU',33264,30,'Santa Cruz Do Sul, Santa Cruz do Sul Airport (CSU)','1','0'),(3482,'EG','SKV',24209,65,'Santa Katarina, EG - St. Catherine International (SKV)','1','0'),(3483,'BR','RIA',33278,30,'Santa Maria, BR - Santa Maria Airport (RIA)','1','0'),(3484,'PT','SMA',33279,175,'Santa Maria, PT - Santa Maria Airport (SMA)','1','0'),(3485,'CO','SMR',24212,49,'Santa Marta, CO - Simon Bolivar Intl Airport (SMR)','1','0'),(3486,'ES','SDR',24221,199,'Santander, ES - Santander Airport (Parayas) (SDR)','1','0'),(3487,'BR','STM',24233,30,'Santarem, BR - Santarem Intl Airport (STM)','1','0'),(3488,'DO','STI',24243,61,'Santiago, DO - Cibao Intl Airport (STI)','1','0'),(3489,'CL','SCL',24241,45,'Santiago, CL - Benitez Intl Airport (SCL)','1','0'),(3490,'CU','SCU',24247,56,'Santiago De Cuba, CU - Antonio Maceo Airport (SCU)','1','0'),(3491,'BR','GEL',33321,30,'Santo Angelo, BR - Sepe Tiaraju Airport (GEL)','1','0'),(3492,'','NTO',24254,41,'Santo Antao, Agostinho Neto Airport (NTO)','1','0'),(3493,'DO','HEX',24256,61,'Santo Domingo, DO - Herrara Airport (HEX)','1','0'),(3494,'DO','SDQ',24256,61,'Santo Domingo, DO - Las Americas Intl Airport (SDQ)','1','0'),(3495,'BR','SJP',33355,30,'Sao Jose Do Rio Preto, BR - Sao Jose Do Rio Preto Airport (SJP)','1','0'),(3496,'BR','SJK',33356,30,'Sao Jose Dos Campos, BR - Prof Urbano Ernesto Stumpf Airport (SJK)','1','0'),(3497,'BR','CWB',33357,30,'Sao Jose Dos Pinhais, BR - Afonso Pena Airport (CWB)','1','0'),(3498,'BR','SLZ',33360,30,'Sao Luiz, BR - Tirirical Airport (SLZ)','1','0'),(3499,'BR','CGH',33371,30,'Sao Paulo, BR - Congonhas Airport (CGH)','1','0'),(3500,'BR','GRU',33371,30,'Sao Paulo, BR - Guarulhos Intl Airport (GRU)','1','0'),(3501,'BR','VCP',33371,30,'Sao Paulo, BR - Sao Paulo Viracopos Airport (VCP)','1','0'),(3502,'ST','TMS',24281,185,'Sao Tome Island, ST - Sao Tome Intl Airport (TMS)','1','0'),(3503,'JP','CTS',24290,110,'Sapporo, JP - New Chitose Airport (CTS)','1','0'),(3504,'JP','OKD',24290,110,'Sapporo, JP - Sapporo Okadama Airport (OKD)','1','0'),(3505,'VU','SSR',24297,233,'Sara, VU - Sara Airport (SSR)','1','0'),(3506,'BA','SJJ',24299,27,'Sarajevo, BA - Sarajevo Intl Airport (SJJ)','1','0'),(3507,'US','SLK',24301,231,'Saranac Lake, US - Adirondack Regional Airport (SLK)','1','0'),(3508,'US','SRQ',24307,231,'Sarasota, US - Sarasota Bradenton Intl Airport (SRQ)','1','0'),(3509,'RU','RTW',24309,181,'Saratov, RU - Saratov Tsentralny Airport (RTW)','1','0'),(3510,'MY','BKM',34587,132,'Sarawak, MY - Bakalalan Airport (BKM)','1','0'),(3511,'','BHW',24324,166,'Sargodha, Bhagatanwala Airport (BHW)','1','0'),(3512,'','SGI',24324,166,'Sargodha, PAF Base Mushaf (SGI)','1','0'),(3513,'','ZRM',24332,102,'Sarmi, Sarmi Orai Airport (ZRM)','1','0'),(3514,'CA','YZR',24334,39,'Sarnia, CA - Sarnia (Chris Hadfield) Airport (YZR)','1','0'),(3515,'CA','YXE',24360,39,'Saskatoon, CA - John G Diefenbaker Intl Airport (YXE)','1','0'),(3516,'','TNI',24375,101,'Satna, Satna Airport (TNI)','1','0'),(3517,'RO','SUJ',24381,179,'Satu Mare, RO - Satu Mare Intl Airport (SUJ)','1','0'),(3518,'IS','SAK',24387,100,'Saudarkrokur, IS - Saudarkrokur Airport (SAK)','1','0'),(3519,'CA','YAM',24399,39,'Sault Ste Marie, CA - Sault Ste. Marie Airport (YAM)','1','0'),(3520,'AO','VHC',24409,6,'Saurimo, AO - Saurimo Airport (VHC)','1','0'),(3521,'US','SAV',24426,231,'Savannah, US - Savannah/Hilton Head Intl Airport (SAV)','1','0'),(3522,'LA','ZVK',24428,118,'Savannakhet, LA - Savannakhet Airport (ZVK)','1','0'),(3523,'FI','SVL',24446,75,'Savonlinna, FI - Savonlinna Airport (SVL)','1','0'),(3524,'US','SVA',24448,231,'Savoonga, US - Savoonga Airport (SVA)','1','0'),(3525,'FJ','SVU',24452,74,'Savusavu, FJ - Savusavu Airport (SVU)','1','0'),(3526,'ID','SAU',24459,102,'Sawu, ID - Tardamu Airport (SAU)','1','0'),(3527,'CA','YKL',24507,39,'Schefferville, CA - Schefferville Airport (YKL)','1','0'),(3528,'','WBG',33391,83,'Schleswig, Schleswig Air Base (WBG)','1','0'),(3529,'US','BFF',24656,231,'Scottsbluff, US - Western Nebraska Regional Apt/William B Heilig Fld (BFF)','1','0'),(3530,'US','AVP',24661,231,'Scranton, US - Wilkes-Barre/Scranton Intl Airport (AVP)','1','0'),(3531,'LY','SEB',24694,123,'Sebha, LY - Sabha Airport (SEB)','1','0'),(3532,'','YHS',24697,39,'Sechelt, Sechelt Aerodrome (YHS)','1','0'),(3533,'','ZEC',24701,195,'Secunda, Secunda Airport (ZEC)','1','0'),(3534,'','SDX',24710,231,'Sedona, Sedona Airport (SDX)','1','0'),(3535,'SB','EGM',24729,193,'Sege, SB - Sege Airport (EGM)','1','0'),(3536,'','SHK',24742,121,'Sehonghong, Sehonghong Airport (SHK)','1','0'),(3537,'YE','GXF',24757,240,'Seiyun, YE - Sayun Airport (GXF)','1','0'),(3538,'','SKQ',24758,121,'Sekake, Sekake Airport (SKQ)','1','0'),(3539,'US','WLK',24761,231,'Selawik, US - Selawik Airport (WLK)','1','0'),(3540,'US','SOV',24767,231,'Seldovia, US - Seldovia Airport (SOV)','1','0'),(3541,'','PKW',24768,28,'Selebi-phikwe, Selebi-Phikwe Airport (PKW)','1','0'),(3542,'ID','SRG',24791,102,'Semarang, ID - Yani Airport (SRG)','1','0'),(3543,'LS','SOK',24799,121,'Semongkong, LS - Semonkong Airport (SOK)','1','0'),(3544,'','SMM',24802,132,'Semporna, Semporna Airport (SMM)','1','0'),(3545,'JP','SDJ',24809,110,'Sendai, JP - Sendai Airport (SDJ)','1','0'),(3546,'','JDG',24831,0,'Seogwipo, Jeongseok Airport (JDG)','1','0'),(3547,'KR','GMP',24832,197,'Seoul, KR - Gimpo Intl Airport (GMP)','1','0'),(3548,'KR','ICN',24832,197,'Seoul, KR - Incheon Intl Airport (ICN)','1','0'),(3549,'CA','YZV',24836,39,'Sept Iles, CA - Sept-Iles Airport (YZV)','1','0'),(3550,'','SQV',24843,231,'Sequim, Sequim Valley Airport (SQV)','1','0'),(3551,'LY','SRX',24879,123,'Sert, LY - Ghardabiya Airport (SRX)','1','0'),(3552,'','ZRI',24880,102,'Serui, Serui Airport (ZRI)','1','0'),(3553,'','SZM',24885,151,'Sesriem, Sesriem Airport (SZM)','1','0'),(3554,'UA','UKS',24907,227,'Sevastopol, UA - Belbek Sevastopol Intl Airport (UKS)','1','0'),(3555,'US','SWD',24928,231,'Seward, US - Seward (SWD)','1','0'),(3556,'TN','SFA',24944,220,'Sfax, TN - Thyna Intl Airport (SFA)','1','0'),(3557,'US','SHX',24951,231,'Shageluk, US - Shageluk Airport (SHX)','1','0'),(3558,'BW','SWX',24956,28,'Shakawe, BW - Shakawe (SWX)','1','0'),(3559,'','SKR',24958,70,'Shakiso, Shakiso Airport (SKR)','1','0'),(3560,'US','SKK',24960,231,'Shaktoolik, US - Shaktoolik Airport (SKK)','1','0'),(3561,'CA','ZTM',24965,39,'Shamattawa, CA - Shamattawa Airport (ZTM)','1','0'),(3562,'CN','SHA',24972,46,'Shanghai, CN - Shanghai Hongqiao Intl Airport (SHA)','1','0'),(3563,'IE','SNN',33406,105,'Shannon, IE - Shannon Airport (SNN)','1','0'),(3564,'','SXJ',24982,46,'Shanshan, Shanshan Airport (SXJ)','1','0'),(3565,'CN','SWA',24983,46,'Shantou, CN - Jeiyang Chaoshan Intl Airport (SWA)','1','0'),(3566,'','HSC',24986,46,'Shaoguan, Shaoguan Guitou Airport (HSC)','1','0'),(3567,'AE','SHJ',24993,228,'Sharjah, AE - Sharjah Airport (SHJ)','1','0'),(3568,'EG','SSH',24995,65,'Sharm El Sheikh, EG - Ophira Airport (SSH)','1','0'),(3569,'','SBX',25026,231,'Shelby, Shelby Airport (SBX)','1','0'),(3570,'CN','SHE',25036,46,'Shenyang, CN - Shenyang Taoxian Intl Airport (SHE)','1','0'),(3571,'CN','SZX',25037,46,'Shenzhen, CN - Shenzhen Bao`an Intl Airport (SZX)','1','0'),(3572,'US','SHR',25048,231,'Sheridan, US - Sheridan County Airport (SHR)','1','0'),(3573,'','PNX',25050,231,'Sherman, North Texas Regional Airport (PNX)','1','0'),(3574,'','RKZ',25062,46,'Shigatse, Shigatse Peace Airport (RKZ)','1','0'),(3575,'CN','SJW',25064,46,'Shijiazhuang, CN - Shijiazhuang Zhengding Intl Airport (SJW)','1','0'),(3576,'IN','SHL',25073,101,'Shillong, IN - Shillong Airport (SHL)','1','0'),(3577,'IN','SLV',1,101,'Shimla, IN - Shimla (Umroi) Airport (SLV)','1','0'),(3578,'JP','SHI',25083,110,'Shimojishima, JP - Shimojishima Airport (SHI)','1','0'),(3579,'','SHY',25091,214,'Shinyanga, Shinyanga Airport (SHY)','1','0'),(3580,'IR','SYZ',25099,103,'Shiraz, IR - Shiraz Airport (SYZ)','1','0'),(3581,'US','HWV',25103,231,'Shirley, US - Brookhaven (HWV)','1','0'),(3582,'','WSH',25103,231,'Shirley, Brookhaven Airport (WSH)','1','0'),(3583,'US','SHH',25107,231,'Shishmaref, US - Shishmaref Airport (SHH)','1','0'),(3584,'','WDS',25110,46,'Shiyan, Shiyan Wudangshan Airport (WDS)','1','0'),(3585,'','ESH',25120,482,'Shoreham-by-sea, Shoreham Airport (ESH)','1','0'),(3586,'US','SHV',25131,231,'Shreveport, US - Shreveport Regional Airport (SHV)','1','0'),(3587,'US','SHG',25142,231,'Shungnak, US - Shungnak Airport (SHG)','1','0'),(3588,'','SBQ',25157,166,'Sibi, Sibi Airport (SBQ)','1','0'),(3589,'MY','SBW',25161,132,'Sibu, MY - Sibu Airport (SBW)','1','0'),(3590,'US','SDY',25172,231,'Sidney, US - Richland Municipal Airport (SDY)','1','0'),(3591,'US','SNY',25172,231,'Sidney, US - Sidney Municipal/Lloyd W. Carr Field (SNY)','1','0'),(3592,'','SXY',25172,231,'Sidney, Sidney Municipal Airport (SXY)','1','0'),(3593,'KH','REP',25180,37,'Siem Reap, KH - Siem Reap Airport (REP)','1','0'),(3594,'IS','SIJ',25199,100,'Siglufjordur, IS - Siglufjordur (SIJ)','1','0'),(3595,'SE','ARN',25205,209,'Sigtuna, SE - Arlanda Airport (ARN)','1','0'),(3596,'','SXZ',25212,222,'Siirt, Siirt Airport (SXZ)','1','0'),(3597,'','SIK',25215,231,'Sikeston, Sikeston Memorial Municipal Airport (SIK)','1','0'),(3598,'IN','IXS',25219,101,'Silchar, IN - Silchar Airport (IXS)','1','0'),(3599,'','SLS',25228,34,'Silistra, Silistra Airfield (SLS)','1','0'),(3600,'UA','SIP',25252,227,'Simferopol, UA - Simferopol Airport (SIP)','1','0'),(3601,'','IMK',25255,153,'Simikot, Simikot Airport (IMK)','1','0'),(3602,'','CNL',25272,59,'Sindal, Sindal Airport (CNL)','1','0'),(3603,'','SIE',25275,175,'Sines, Sines Airport (SIE)','1','0'),(3604,'SG','QPG',25278,190,'Singapore, SG - Paya Lebar Airbase (QPG)','1','0'),(3605,'SG','SIN',25278,190,'Singapore, SG - Changi Intl Airport (SIN)','1','0'),(3606,'SG','XSP',25278,190,'Singapore, SG - Seletar (XSP)','1','0'),(3607,'','SIQ',25281,102,'Singkep, Dabo Singkep Airport (SIQ)','1','0'),(3608,'','SIX',25282,13,'Singleton, Singleton Airport (SIX)','1','0'),(3609,'CH','SIR',25306,210,'Sion, CH - Sion Airport (SIR)','1','0'),(3610,'CA','YXL',25308,39,'Sioux Lookout, CA - Sioux Lookout Airport (YXL)','1','0'),(3611,'ZA','SIS',25326,195,'Sishen, ZA - Sishen Airport (SIS)','1','0'),(3612,'','SWY',25340,132,'Sitiawan, Sitiawan Airport (SWY)','1','0'),(3613,'US','SIT',25341,231,'Sitka, US - Sitka Airport (SIT)','1','0'),(3614,'MM','AKY',25347,150,'Sittwe, MM - Sittwe Airport (AKY)','1','0'),(3615,'TR','VAS',25349,222,'Sivas, TR - Sivas Nuri Demirag Airport (VAS)','1','0'),(3616,'US','SGY',25360,231,'Skagway, US - Skagway Airport (SGY)','1','0'),(3617,'SE','SFT',25378,209,'Skelleftea, SE - Skelleftea Airport (SFT)','1','0'),(3618,'GR','JSI',25386,86,'Skiathos, GR - Skiathos Airport (JSI)','1','0'),(3619,'NO','SKE',25392,164,'Skien, NO - Skien Airport Geiteryggen (SKE)','1','0'),(3620,'GR','SKU',25397,86,'Skiros, GR - Skiros Airport (SKU)','1','0'),(3621,'','SQW',25398,59,'Skive, Skive Airport (SQW)','1','0'),(3622,'MK','SKP',25410,129,'Skopje, MK - Skopje Airport (SKP)','1','0'),(3623,'SE','KVB',25415,209,'Skovde, SE - Skovde (KVB)','1','0'),(3624,'ZA','SZK',25418,195,'Skukuza, ZA - Skukuza Airport (SZK)','1','0'),(3625,'','SKW',25420,231,'Skwentna, Skwentna Airport (SKW)','1','0'),(3626,'US','SLQ',25442,231,'Sleetmute, US - Sleetmute Airport (SLQ)','1','0'),(3627,'SK','SLD',25446,191,'Sliac, SK - Sliac Airport (SLD)','1','0'),(3628,'IE','SXL',25449,105,'Sligo, IE - Sligo Airport (SXL)','1','0'),(3629,'','SMW',25465,148,'Smara, Smara Airport (SMW)','1','0'),(3630,'CA','YYD',25471,39,'Smithers, CA - Smithers Airport (YYD)','1','0'),(3631,'US','AWO',25500,231,'Snohomish, US - Arlington Municipal (AWO)','1','0'),(3632,'','DWB',25511,130,'Soalala, Soalala Airport (DWB)','1','0'),(3633,'YE','SCT',25526,240,'Socotra, YE - Socotra Airport (SCT)','1','0'),(3634,'FI','SOT',25530,75,'Sodankyla, FI - Sodankyla (SOT)','1','0'),(3635,'ET','SXU',25532,70,'Soddu, ET - Soddu Airport (SXU)','1','0'),(3636,'SE','SOO',25535,209,'Soderhamn, SE - Soderhamn Airport (SOO)','1','0'),(3637,'BG','SOF',25546,34,'Sofia, BG - Sofia Intl Airport (SOF)','1','0'),(3638,'NO','SOG',25549,164,'Sogndal, NO - Sognal Airport Haukasen (SOG)','1','0'),(3639,'','OHS',25551,165,'Sohar, Sohar Airport (OHS)','1','0'),(3640,'KR','SHO',25559,197,'Sokcho, KR - King Mswati III Intl Airport (SHO)','1','0'),(3641,'VU','SLH',25562,233,'Sola, VU - Vanua Lava Airport (SLH)','1','0'),(3642,'','SSE',34318,101,'Solapur, Solapur Airport (SSE)','1','0'),(3643,'','SXQ',25574,231,'Soldotna, Soldotna Airport (SXQ)','1','0'),(3644,'','SOL',25602,231,'Solomon, Solomon State Field Airport (SOL)','1','0'),(3645,'DK','SGD',25636,59,'Sonderborg, DK - Sonderborg Airport (SGD)','1','0'),(3646,'','SGX',25646,214,'Songea, Songea Airport (SGX)','1','0'),(3647,'FR','SXD',25660,76,'Sophia Antipolis, FR - Sophia Antipolis Airport (SXD)','1','0'),(3648,'NO','SOJ',25675,164,'Sorkjosen, NO - Sorkjosen Airport (SOJ)','1','0'),(3649,'','SQR',25678,102,'Soroako, Soroako Airport (SQR)','1','0'),(3650,'ID','SOQ',25680,102,'Sorong, ID - Domine Edward Osok Airport (SOQ)','1','0'),(3651,'CG','SOE',25703,51,'Souanke, CG - Souanké Airport (SOE)','1','0'),(3652,'BS','TZN',25723,16,'South Andros, BS - South Andros Airport (TZN)','1','0'),(3653,'','ADO',33441,13,'South Australia Region, Andamooka Airport (ADO)','1','0'),(3654,'','AMT',33441,13,'South Australia Region, Amata Airport (AMT)','1','0'),(3655,'','LCN',33441,13,'South Australia Region, Balcanoona Airport (LCN)','1','0'),(3656,'US','SBN',33445,231,'South Bend, US - South Bend Regional Airport (SBN)','1','0'),(3657,'US','BTV',33452,231,'South Burlington, US - Burlington Intl Airport (BTV)','1','0'),(3658,'CA','XSI',33482,39,'South Indian Lake, CA - South Indian Lake Airport (XSI)','1','0'),(3659,'US','WSN',33493,231,'South Naknek, US - South Naknek Airport (WSN)','1','0'),(3660,'','AUE',25735,65,'South Sinai, Abu Rudeis Airport (AUE)','1','0'),(3661,'VU','SWJ',25739,233,'South West Bay, VU - South West Bay Airport (SWJ)','1','0'),(3662,'GB','SOU',25742,482,'Southampton, GB - Southampton Intl Airport (SOU)','1','0'),(3663,'GB','SEN',25754,482,'Southend, GB - London Southend Airport (SEN)','1','0'),(3664,'','SHQ',25775,231,'Southport, Southport Airport (SHQ)','1','0'),(3665,'AO','SZA',25794,6,'Soyo, AO - Soyo Airport (SZA)','1','0'),(3666,'','SAR',25816,86,'Sparta, Sparta Community Airport (SAR)','1','0'),(3667,'US','SPF',25823,231,'Spearfish, US - Black Hills (Clyde Ice Field) (SPF)','1','0'),(3668,'US','SPW',25831,231,'Spencer, US - Spencer Municipal (SPW)','1','0'),(3669,'','RTL',25856,231,'Spirit Lake, Spirit Lake Municipal Airport (RTL)','1','0'),(3670,'HR','SPU',25862,55,'Split, HR - Split Airport (SPU)','1','0'),(3671,'US','GEG',25864,231,'Spokane, US - Spokane Intl Airport (GEG)','1','0'),(3672,'US','SFF',25864,231,'Spokane, US - Felts Field (SFF)','1','0'),(3673,'','SCG',33540,13,'Spring Creek, Spring Creek Airport (SCG)','1','0'),(3674,'BS','AXP',25876,16,'Spring Point, BS - Spring Point Airport (AXP)','1','0'),(3675,'ZA','SBU',25877,195,'Springbok, ZA - Springbok (SBU)','1','0'),(3676,'','SPZ',25879,231,'Springdale, Springdale Municipal Airport (SPZ)','1','0'),(3677,'US','SGF',25882,231,'Springfield, US - Branson National Airport (SGF)','1','0'),(3678,'US','SPI',25882,231,'Springfield, US - Abraham Lincoln Capital Airport (SPI)','1','0'),(3679,'','ZVG',25887,13,'Springvale, Springvale Airport (ZVG)','1','0'),(3680,'CA','YSE',25892,39,'Squamish, CA - Squamish (YSE)','1','0'),(3681,'IN','SXR',25897,101,'Srinagar, IN - Srinagar Airport (SXR)','1','0'),(3682,'FR','SBK',33567,76,'St Brieuc, FR - Saint-Brieuc - Armor (SBK)','1','0'),(3683,'CA','YYT',33610,39,'St Johns, CA - St John`s Intl Airport (YYT)','1','0'),(3684,'KN','SKB',33616,202,'St Kitts, KN - R L Bradshaw Airport (SKB)','1','0'),(3685,'LC','SLU',33622,182,'St Lucia, LC - George F L Charles Airport (SLU)','1','0'),(3686,'LC','UVF',33622,182,'St Lucia, LC - Hewanorra Intl Airport (UVF)','1','0'),(3687,'US','STP',33645,231,'St Paul, US - St Paul Downtown Airport/Holman Field (STP)','1','0'),(3688,'RU','LED',33649,181,'St Petersburg, RU - Pulkovo Airport (LED)','1','0'),(3689,'','YCM',33683,39,'St. Catharines, St. Catharines/Niagara District Airport (YCM)','1','0'),(3690,'','SJN',33704,39,'St. Johns, St. Johns Industrial Air Park (SJN)','1','0'),(3691,'','STQ',33721,231,'St. Marys, St. Marys Municipal Airport (STQ)','1','0'),(3692,'US','SPG',33738,231,'St. Petersburg, US - Albert Whitted (SPG)','1','0'),(3693,'','PSY',25988,231,'Stanley, Port Stanley Airport (PSY)','1','0'),(3694,'','SNH',25999,13,'Stanthorpe, Stanthorpe Airport (SNH)','1','0'),(3695,'US','SCE',33749,231,'State College, US - University Park Airport (SCE)','1','0'),(3696,'DK','STA',26024,59,'Stauning, DK - Stauning Vestjylland (STA)','1','0'),(3697,'US','SHD',26025,231,'Staunton, US - Shenandoah Valley Regional Airport (SHD)','1','0'),(3698,'NO','SVG',26026,164,'Stavanger, NO - Stavanger Airport Sola (SVG)','1','0'),(3699,'RU','STW',26029,181,'Stavropol, RU - Shpakovskoye Airport (STW)','1','0'),(3700,'US','WBB',26037,231,'Stebbins, US - Stebbins Airport (WBB)','1','0'),(3701,'BS','SML',26066,16,'Stella Maris, BS - Stella Maris Airport (SML)','1','0'),(3702,'CA','YJT',26078,39,'Stephenville, CA - Stephenville Intl Airport (YJT)','1','0'),(3703,'','SQI',26081,231,'Sterling, Whiteside County Airport (SQI)','1','0'),(3704,'','ZST',26093,39,'Stewart, Stewart Aerodrome (ZST)','1','0'),(3705,'NZ','SZS',26095,157,'Stewart Island, NZ - Ryans Creek Airport (SZS)','1','0'),(3706,'US','SCK',26139,231,'Stockton, US - Stockton Metropolitan Airport (SCK)','1','0'),(3707,'NO','SKN',26145,164,'Stokmarknes, NO - Stokmarknes Airport Skagen (SKN)','1','0'),(3708,'GB','SYY',26170,482,'Stornoway, GB - Stornoway Airport (SYY)','1','0'),(3709,'','MMN',33766,231,'Stow, Minute Man Air Field (MMN)','1','0'),(3710,'FR','SXB',26205,76,'Strasbourg, FR - Entzheim Airport (SXB)','1','0'),(3711,'','RBM',26226,83,'Straubing, Straubing Wallmühle Airport (RBM)','1','0'),(3712,'','KBY',26230,13,'Streaky Bay, Streaky Bay Airport (KBY)','1','0'),(3713,'GB','SOY',26257,482,'Stronsay, GB - Stronsay Airport (SOY)','1','0'),(3714,'','SUD',26258,482,'Stroud, Stroud Municipal Airport (SUD)','1','0'),(3715,'','SSW',26269,39,'Stuart Island, Stuart Island Airpark (SSW)','1','0'),(3716,'','YIG',26269,39,'Stuart Island, Big Bay Water Aerodrome (YIG)','1','0'),(3717,'','TNX',26277,37,'Stung Treng, Steung Treng Airport (TNX)','1','0'),(3718,'US','SUE',26280,231,'Sturgeon Bay, US - Door County Cherryland (SUE)','1','0'),(3719,'DE','STR',26286,83,'Stuttgart, DE - Stuttgart Airport (STR)','1','0'),(3720,'MY','SZB',26296,132,'Subang Jaya, MY - Abdul Aziz Shah Airport (SZB)','1','0'),(3721,'PH','SFS',26302,173,'Subic Bay, PH - Subic Bay Intl Airport (SFS)','1','0'),(3722,'RO','SCV',26307,179,'Suceava, RO - Stefan cel Mare Airport (SCV)','1','0'),(3723,'BO','SRE',26311,26,'Sucre, BO - Juana Azurduy de Padilla Intl Airport (SRE)','1','0'),(3724,'CA','YSB',26312,39,'Sudbury, CA - Greater Sudbury Airport (YSB)','1','0'),(3725,'PK','SUL',26331,166,'Sui, PK - Sui Airport (SUL)','1','0'),(3726,'TH','THS',26340,215,'Sukhothai, TH - Sukhothai Airport (THS)','1','0'),(3727,'','SUI',26341,82,'Sukhumi, Sukhumi Babushara Airport (SUI)','1','0'),(3728,'PK','SKZ',26343,166,'Sukkur, PK - Sukkur Airport (SKZ)','1','0'),(3729,'','BUW',26345,102,'Sulawesi, Betoambari Airport (BUW)','1','0'),(3730,'IQ','ISU',26346,104,'Sulaymaniyah, IQ - Sulaimaniyah Intl Airport (ISU)','1','0'),(3731,'','SIV',26348,231,'Sullivan, Sullivan County Airport (SIV)','1','0'),(3732,'ID','SWQ',26361,102,'Sumbawa, ID - Sultan Muhammad Kaharuddin III Airport (SWQ)','1','0'),(3733,'','SUT',26362,214,'Sumbawanga, Sumbawanga Airport (SUT)','1','0'),(3734,'','NDD',26363,6,'Sumbe, Sumbe Airport (NDD)','1','0'),(3735,'','UMM',33774,231,'Summit, Summit Airport (UMM)','1','0'),(3736,'','SUM',26379,231,'Sumter, Sumter Airport (SUM)','1','0'),(3737,'','UMY',26380,227,'Sumy, Sumy Airport (UMY)','1','0'),(3738,'ZA','NTY',26381,195,'Sun City, ZA - Pilanesberg Intl Airport (NTY)','1','0'),(3739,'SE','SDL',26394,209,'Sundsvall, SE - Midlanda Airport (SDL)','1','0'),(3740,'','SUO',26413,231,'Sunriver, Sunriver Airport (SUO)','1','0'),(3741,'GH','NYI',26422,84,'Sunyani, GH - Sunyani Airport (NYI)','1','0'),(3742,'','SUH',26434,165,'Sur, Sur Airport (SUH)','1','0'),(3743,'ID','SUB',26435,102,'Surabaya, ID - Juanda Airport (SUB)','1','0'),(3744,'ID','SOC',26437,102,'Surakarta, ID - Adisumarmo Intl Airport (SOC)','1','0'),(3745,'IN','STV',26438,101,'Surat, IN - Surat Airport (STV)','1','0'),(3746,'TH','URT',26439,215,'Surat Thani, TH - Surat Thani Airport (URT)','1','0'),(3747,'RU','SGC',26447,181,'Surgut, RU - Surgut Airport (SGC)','1','0'),(3748,'','PXR',26449,215,'Surin, Surin Airport (PXR)','1','0'),(3749,'','SKH',26452,153,'Surkhet, Surkhet Airport (SKH)','1','0'),(3750,'FJ','SUV',26476,74,'Suva, FJ - Nausori Intl Airport (SUV)','1','0'),(3751,'','SZV',26485,46,'Suzhou, Suzhou Guangfu Airport (SZV)','1','0'),(3752,'SE','EVG',26491,209,'Sveg, SE - Sveg Airport (EVG)','1','0'),(3753,'NO','SVJ',26502,164,'Svolvaer, NO - Svolvaer Airport Helle (SVJ)','1','0'),(3754,'NA','SWP',26508,151,'Swakopmund, NA - Swakopmund (SWP)','1','0'),(3755,'','ZJN',26513,39,'Swan River, Swan River Airport (ZJN)','1','0'),(3756,'CA','YYN',26531,39,'Swift Current, CA - Swift Current (YYN)','1','0'),(3757,'','RSE',26540,39,'Sydney, Rose Bay Seaplane Base (RSE)','1','0'),(3758,'CA','YQY',26540,39,'Sydney, CA - J A Douglas McCurdy Airport (YQY)','1','0'),(3759,'RU','SCW',26544,181,'Syktyvkar, RU - Syktyvkar Airport (SCW)','1','0'),(3760,'BD','ZYL',26546,18,'Sylhet, BD - Osmani Intl Airport (ZYL)','1','0'),(3761,'US','SYR',26560,231,'Syracuse, US - Syracuse Hancock Intl Airport (SYR)','1','0'),(3762,'EG','TCP',26579,65,'Taba, EG - Taba Intl Airport (TCP)','1','0'),(3763,'BR','TBT',26585,30,'Tabatinga, BR - Tabatinga Intl Airport (TBT)','1','0'),(3764,'','TBF',26589,114,'Tabiteuea North, Tabiteuea North Airport (TBF)','1','0'),(3765,'TZ','TBO',26593,214,'Tabora, TZ - Tabora Airport (TBO)','1','0'),(3766,'IR','TBZ',26594,103,'Tabriz, IR - Tabriz Airport (TBZ)','1','0'),(3767,'SA','TUU',26596,186,'Tabuk, SA - Tabuk Airport (TUU)','1','0'),(3768,'PH','TAC',26598,173,'Tacloban, PH - D Z Romualdez Airport (TAC)','1','0'),(3769,'PE','TCQ',26599,172,'Tacna, PE - Tacna Airport (TCQ)','1','0'),(3770,'UY','TAW',26601,230,'Tacuarembo, UY - Tacuarembó Airport (TAW)','1','0'),(3771,'','TDJ',26604,60,'Tadjoura, Tadjoura Airport (TDJ)','1','0'),(3772,'CA','XTL',26606,39,'Tadoule Lake, CA - Tadoule Lake Airport (XTL)','1','0'),(3773,'','ZTS',26628,39,'Tahsis, Tahsis Water Aerodrome (ZTS)','1','0'),(3774,'TW','TXG',26635,212,'Taichung, TW - Taichung Airport (TXG)','1','0'),(3775,'SA','TIF',26636,186,'Taif, SA - Taif Airport (TIF)','1','0'),(3776,'TW','TNN',26638,212,'Tainan, TW - Tainan Airport (TNN)','1','0'),(3777,'TW','TPE',26643,212,'Taipei, TW - Taiwan Taoyuan Intl Airport (TPE)','1','0'),(3778,'TW','TSA',26643,212,'Taipei, TW - Taipei Songshan Airport (TSA)','1','0'),(3779,'MY','TPG',26648,132,'Taiping, MY - Taiping (TPG)','1','0'),(3780,'TW','TTT',26652,212,'Taitung, TW - Taitung Airport (TTT)','1','0'),(3781,'CN','TYN',26654,46,'Taiyuan, CN - Taiyuan Wusu Intl Airport (TYN)','1','0'),(3782,'YE','TAI',26655,240,'Taiz, YE - Ta`izz Intl Airport (TAI)','1','0'),(3783,'','TKT',26658,215,'Tak, Tak Airport (TKT)','1','0'),(3784,'JP','TAK',26661,110,'Takamatsu, JP - Takamatsu Airport (TAK)','1','0'),(3785,'PF','TKP',26664,78,'Takapoto, PF - Takapoto Airport (TKP)','1','0'),(3786,'PF','TKX',26666,78,'Takaroa, PF - Takaroa Airport (TKX)','1','0'),(3787,'US','TCT',26674,231,'Takotna, US - Takotna Airport (TCT)','1','0'),(3788,'PE','TYL',26681,172,'Talara, PE - Victor Montes Arias Airport (TYL)','1','0'),(3789,'EE','TLL',26703,69,'Tallinn, EE - Lennart Meri Tallinn Airport (TLL)','1','0'),(3790,'CA','YYH',26709,39,'Taloyoak, CA - Taloyoak Airport (YYH)','1','0'),(3791,'GH','TML',26714,84,'Tamale, GH - Tamale Airport (TML)','1','0'),(3792,'','SXT',26716,132,'Taman Negara, Sungai Tiang Airport (SXT)','1','0'),(3793,'','TMN',26717,110,'Tamana, Tamana Airport (TMN)','1','0'),(3794,'DZ','TMR',26721,3,'Tamanrasset, DZ - Aguenar Hadj Bey Akhamok Airport (TMR)','1','0'),(3795,'MG','TMM',26728,130,'Tamatave, MG - Toamasina Airport (TMM)','1','0'),(3796,'','TUD',26729,187,'Tambacounda, Tambacounda Airport (TUD)','1','0'),(3797,'','WTA',26731,130,'Tambohorano, Tambohorano Airport (WTA)','1','0'),(3798,'ID','TMC',26733,102,'Tambolaka, ID - Tambolaka Airport (TMC)','1','0'),(3799,'','KYO',26743,231,'Tampa, Tampa North Aero Park (KYO)','1','0'),(3800,'US','TPA',26743,231,'Tampa, US - Tampa Intl Airport (TPA)','1','0'),(3801,'FI','TMP',26744,75,'Tampere, FI - Pirkkala Airport (TMP)','1','0'),(3802,'MX','TAM',26745,141,'Tampico, MX - Gen Francisco Javier Mina Intl Airport (TAM)','1','0'),(3803,'US','GUM',26747,90,'Tamuning, US - Antonio B Won Pat Intl Airport (GUM)','1','0'),(3804,'MA','TTA',26752,148,'Tan Tan, MA - Plage Blanche Airport (TTA)','1','0'),(3805,'ID','TTR',26754,102,'Tana Toraja, ID - Pongtiku Airport (TTR)','1','0'),(3806,'US','TAL',26759,231,'Tanana, US - Tanana Airport (TAL)','1','0'),(3807,'JP','TNE',26767,110,'Tanegashima, JP - New Tanegashima Airport (TNE)','1','0'),(3808,'','TGT',26769,214,'Tanga, Tanga Airport (TGT)','1','0'),(3809,'MA','TNG',26777,148,'Tangier, MA - Boukhalef Airport (TNG)','1','0'),(3810,'','TVS',26779,46,'Tangshan, Tangshan Sannühe Airport (TVS)','1','0'),(3811,'','TJG',26782,102,'Tanjung, Warukin Airport (TJG)','1','0'),(3812,'MY','TGC',26783,132,'Tanjung Bungah, MY - Tanjung Manis Airport (TGC)','1','0'),(3813,'','TPJ',26803,153,'Taplejung, Taplejung Airport (TPJ)','1','0'),(3814,'ID','TRK',26808,102,'Tarakan, ID - Tarakan Airport (TRK)','1','0'),(3815,'PE','TPP',26814,172,'Tarapoto, PE - Tarapoto Airport (TPP)','1','0'),(3816,'KI','TRW',26819,114,'Tarawa, KI - Bonriki Intl Airport (TRW)','1','0'),(3817,'','TGV',26830,34,'Targovishte, Targovishte Airport (TGV)','1','0'),(3818,'','BJO',26834,26,'Tarija, Bermejo Airport (BJO)','1','0'),(3819,'BO','TJA',26834,26,'Tarija, BO - Cap. Oriel Lea Plaza Airport (TJA)','1','0'),(3820,'','TQL',26838,181,'Tarko-sale, Tarko-Sale Airport (TQL)','1','0'),(3821,'UZ','TAS',26873,232,'Tashkent, UZ - Yuzhnyy Airport (TAS)','1','0'),(3822,'','TSY',26874,102,'Tasikmalaya, Tasikmalaya Airport (TSY)','1','0'),(3823,'','TEK',26886,231,'Tatitlek, Tatitlek Airport (TEK)','1','0'),(3824,'BR','QHP',26892,30,'Taubate, BR - Base De Aviacao De Taubate (QHP)','1','0'),(3825,'NZ','TRG',26901,157,'Tauranga, NZ - Tauranga Airport (TRG)','1','0'),(3826,'FJ','TVU',26913,74,'Taveuni, FJ - Taveuni Island - Matei Airport (TVU)','1','0'),(3827,'MY','TWU',26917,132,'Tawau, MY - Tawau Airport (TWU)','1','0'),(3828,'','CDY',26918,173,'Tawitawi, Cagayan de Sulu Airport (CDY)','1','0'),(3829,'','TWE',26920,231,'Taylor, Taylor Airport (TWE)','1','0'),(3830,'','TYZ',26920,231,'Taylor, Taylor Airport (TYZ)','1','0'),(3831,'DZ','TEE',26927,3,'Tbessa, DZ - Cheikh Larbi Tebessi Airport (TEE)','1','0'),(3832,'GE','TBS',26928,82,'Tbilisi, GE - Novo Alexeyevka Airport (TBS)','1','0'),(3833,'','TCH',26929,80,'Tchibanga, Tchibanga Airport (TCH)','1','0'),(3834,'','TEU',33794,157,'Te Anau, Te Anau Airport (TEU)','1','0'),(3835,'GB','MME',26944,482,'Teesside, GB - Teesside Airport (MME)','1','0'),(3836,'BR','TFF',26945,30,'Tefe, BR - Tefe Airport (TFF)','1','0'),(3837,'HN','TGU',26949,97,'Tegucigalpa, HN - Toncontin Intl Airport (TGU)','1','0'),(3838,'IR','THR',26952,103,'Tehran, IR - Mehrabad Intl Airport (THR)','1','0'),(3839,'IR','IKA',26952,103,'Tehran, IR - Imam Khomeini Airport (IKA)','1','0'),(3840,'IL','SDV',26961,106,'Tel Aviv, IL - Sde Dov Airport (SDV)','1','0'),(3841,'IL','TLV',26961,106,'Tel Aviv, IL - Ben Gurion Airport (TLV)','1','0'),(3842,'','TEA',26962,97,'Tela, Tela Airport (TEA)','1','0'),(3843,'','YTX',26966,39,'Telegraph Creek, Telegraph Creek Airport (YTX)','1','0'),(3844,'','TEF',26969,13,'Telfer, Telfer Airport (TEF)','1','0'),(3845,'US','TLA',26975,231,'Teller, US - Teller Airport (TLA)','1','0'),(3846,'US','TEX',26977,231,'Telluride, US - Telluride Regional Airport (TEX)','1','0'),(3847,'ID','TIM',26981,102,'Tembagapura, ID - Tembagapura Airport (TIM)','1','0'),(3848,'','TXM',26985,102,'Teminabuan, Teminabuan Airport (TXM)','1','0'),(3849,'','TEM',26987,13,'Temora, Temora Airport (TEM)','1','0'),(3850,'','PZS',27001,45,'Temuco, Maquehue Airport (PZS)','1','0'),(3851,'CL','ZCO',27001,45,'Temuco, CL - Maquehue Airport (ZCO)','1','0'),(3852,'ES','TFN',27010,199,'Tenerife, ES - Tenerife North (Los Rodeos) Airport (TFN)','1','0'),(3853,'ES','TFS',27010,199,'Tenerife, ES - Tenerife South (Reina Sofia) Airport (TFS)','1','0'),(3854,'MX','TPQ',27033,141,'Tepic, MX - Amado Nervo Intl Airport (TPQ)','1','0'),(3855,'BR','THE',27045,30,'Teresina, BR - Teresina Airport (THE)','1','0'),(3856,'ID','TTE',27060,102,'Ternate, ID - Babullah Airport (TTE)','1','0'),(3857,'CA','YXT',27065,39,'Terrace, CA - Northwest Regional Airport (YXT)','1','0'),(3858,'US','HUF',33809,231,'Terre Haute, US - Terre Haute Intl Airport (Hulman Field) (HUF)','1','0'),(3859,'','TEV',27082,199,'Teruel, Teruel Airport (TEV)','1','0'),(3860,'','YZW',27087,39,'Teslin, Teslin Airport (YZW)','1','0'),(3861,'MZ','TET',27092,149,'Tete, MZ - Chingozi / Matundo Airport (TET)','1','0'),(3862,'CA','ZTB',27093,39,'Tete A La Baleine, CA - Tete-a-la-Baleine Airport (ZTB)','1','0'),(3863,'US','TEB',27094,231,'Teterboro, US - Teterboro Airport (TEB)','1','0'),(3864,'MA','TTU',27100,148,'Tetuan, MA - Sania Ramel Airport (TTU)','1','0'),(3865,'','TWN',27107,13,'Tewantin, Tewantin Airport (TWN)','1','0'),(3866,'US','TXK',27110,231,'Texarkana, US - Texarkana Regional Airport / Webb Field (TXK)','1','0'),(3867,'','MGI',27111,231,'Texas City, Aransas National Wildlife Refuge Airport (MGI)','1','0'),(3868,'US','RKP',27111,231,'Texas City, US - Aransas County (RKP)','1','0'),(3869,'IN','TEZ',27116,101,'Tezpur, IN - Tezpur Airport (TEZ)','1','0'),(3870,'','TEI',27117,101,'Tezu, Tezu Airport (TEI)','1','0'),(3871,'ZA','TCU',27119,195,'Thaba Nchu, ZA - Thaba Nchu Airport (TCU)','1','0'),(3872,'','THK',27123,118,'Thakhek, Thakhek Airport (THK)','1','0'),(3873,'','TJV',27136,101,'Thanjavur, Thanjavur Air Force Station (TJV)','1','0'),(3874,'CA','YQD',33826,39,'The Pas, CA - The Pas Airport (YQD)','1','0'),(3875,'US','TVF',27171,231,'Thief River Falls, US - Thief River Falls Regional Airport (TVF)','1','0'),(3876,'IS','TEY',27177,100,'Thingeyri, IS - Thingeyri (TEY)','1','0'),(3877,'GR','JTR',33830,86,'Thira, GR - Santorini Airport (JTR)','1','0'),(3878,'DK','TED',27181,59,'Thisted, DK - Thisted (TED)','1','0'),(3879,'','THY',27183,195,'Thohoyandou, P.R. Mphephu Airport (THY)','1','0'),(3880,'CA','YTH',27193,39,'Thompson, CA - Thompson Municipal Airport (YTH)','1','0'),(3881,'','TCR',34425,101,'Thoothukudi, Tuticorin Airport (TCR)','1','0'),(3882,'US','KTB',33833,231,'Thorne Bay, US - Thorne Bay Seaplane Base (KTB)','1','0'),(3883,'IS','THO',27219,100,'Thorshofn, IS - Porshofn Airport (THO)','1','0'),(3884,'CA','YQT',27234,39,'Thunder Bay, CA - Thunder Bay Intl Airport (YQT)','1','0'),(3885,'','YYW',27234,39,'Thunder Bay, Armstrong Airport (YYW)','1','0'),(3886,'CN','TSN',27247,46,'Tianjin, CN - Tianjin Binhai Intl Airport (TSN)','1','0'),(3887,'','THQ',27248,46,'Tianshui, Tianshui Maijishan Airport (THQ)','1','0'),(3888,'DZ','TID',27252,3,'Tiaret, DZ - Abdelhafid Boussouf Bou Chekif Airport (TID)','1','0'),(3889,'NC','TGJ',27271,156,'Tiga, NC - Tiga Airport (TGJ)','1','0'),(3890,'MX','TIJ',27283,141,'Tijuana, MX - Gen Abelardo L Rodriguez Intl Airport (TIJ)','1','0'),(3891,'','TKC',27288,38,'Tiko, Tiko Airport (TKC)','1','0'),(3892,'','OTK',27294,231,'Tillamook, Tillamook Airport (OTK)','1','0'),(3893,'NZ','TIU',27301,157,'Timaru, NZ - Timaru Airport (TIU)','1','0'),(3894,'','TBK',27303,13,'Timber Creek, Timber Creek Airport (TBK)','1','0'),(3895,'RO','TSR',27306,179,'Timisoara, RO - Traian Vuia Intl Airport (TSR)','1','0'),(3896,'CA','YTS',27309,39,'Timmins, CA - Timmins Victor M Power Airport (YTS)','1','0'),(3897,'DZ','TIN',27318,3,'Tindouf, DZ - Tindouf Airport (TIN)','1','0'),(3898,'PE','TGI',27323,172,'Tingo Maria, PE - Tingo María Airport (TGI)','1','0'),(3899,'MP','TIQ',27325,163,'Tinian, MP - Tinian Island Airport (TIQ)','1','0'),(3900,'','VEX',27334,231,'Tioga, Tioga Municipal Airport (VEX)','1','0'),(3901,'','TMY',27335,102,'Tiom, Tiom Airport (TMY)','1','0'),(3902,'ET','TIE',27339,70,'Tippi, ET - Tippi Airport (TIE)','1','0'),(3903,'AL','TIA',27345,2,'Tirana, AL - Tirana (Rinas) Intl Airport Nene Tereza (TIA)','1','0'),(3904,'RO','TGM',27348,179,'Tirgu Mures, RO - Targu Mures Transilvania Airport (TGM)','1','0'),(3905,'IN','TRZ',27352,101,'Tiruchirapally, IN - Trichy Airport (TRZ)','1','0'),(3906,'IN','TIR',27353,101,'Tirupati, IN - Tirupati Airport (TIR)','1','0'),(3907,'','YTT',27356,39,'Tisdale, Tisdale Airport (YTT)','1','0'),(3908,'US','TIX',27371,231,'Titusville, US - Space Coast Regional (TIX)','1','0'),(3909,'YU','TIV',27372,241,'Tivat, YU - Tivat Airport (TIV)','1','0'),(3910,'DZ','TLM',27387,3,'Tlemcen, DZ - Zenata - Messali El Hadj Airport (TLM)','1','0'),(3911,'TT','TAB r',27391,219,'Tobago, TT - A N R Robinson Intl Airport (TAB r)','1','0'),(3912,'','TOX',27396,181,'Tobolsk, Tobolsk Airport (TOX)','1','0'),(3913,'LY','TOB',27397,123,'Tobruk, LY - Tobruk Airport (TOB)','1','0'),(3914,'','TOC',27399,231,'Toccoa, Toccoa Airport (TOC)','1','0'),(3915,'','YTP',27412,39,'Tofino, Tofino Harbour Water Aerodrome (YTP)','1','0'),(3916,'US','TKJ',33843,231,'Tok, US - Tok Airport (TKJ)','1','0'),(3917,'US','OOK',27424,231,'Toksook Bay, US - Toksook Bay Airport (OOK)','1','0'),(3918,'JP','TKS',27426,110,'Tokushima, JP - Tokushima Airport (TKS)','1','0'),(3919,'JP','HND',27427,110,'Tokyo, JP - Tokyo Intl (Haneda) Airport (HND)','1','0'),(3920,'JP','NRT',27427,110,'Tokyo, JP - Narita Intl Airport (NRT)','1','0'),(3921,'US','TOL',27432,231,'Toledo, US - Toledo Express Airport (TOL)','1','0'),(3922,'MG','BMD',27436,130,'Toliara, MG - Belo sur Tsiribihina Airport (BMD)','1','0'),(3923,'','DVD',27436,130,'Toliara, Andavadoaka Airport (DVD)','1','0'),(3924,'','TLI',27437,102,'Tolitoli, Sultan Bantilan Airport (TLI)','1','0'),(3925,'MY','TMG',27451,132,'Tomanggong, MY - Tomanggong Airport (TMG)','1','0'),(3926,'RU','TOF',27460,181,'Tomsk, RU - Tomsk Bogashevo Airport (TOF)','1','0'),(3927,'TO','TBU',27471,218,'Tongatapu, TO - Nukualofa - Fuaamotu Intl Airport (TBU)','1','0'),(3928,'','TNH',27474,46,'Tonghua, Tonghua Sanyuanpu Airport (TNH)','1','0'),(3929,'CN','TGO',27476,46,'Tongliao, CN - Tongliao Airport (TGO)','1','0'),(3930,'VU','TGH',27477,233,'Tongoa, VU - Tongoa Airport (TGH)','1','0'),(3931,'','XSD',27487,231,'Tonopah, Tonopah Test Range Airport (XSD)','1','0'),(3932,'','WTB',27493,13,'Toowoomba, Brisbane West Wellcamp Airport (WTB)','1','0'),(3933,'US','TOP',27497,231,'Topeka, US - Philip Billard Municipal (TOP)','1','0'),(3934,'CA','YTZ',27530,39,'Toronto, CA - Billy Bishop Toronto City (Toronto Island) Airport (YTZ)','1','0'),(3935,'CA','YYZ',27530,39,'Toronto, CA - Lester B Pearson Intl Airport (YYZ)','1','0'),(3936,'US','TOA',27534,231,'Torrance, US - Zamperini Field (TOA)','1','0'),(3937,'MX','TRC',27549,141,'Torreon, MX - Francisco Sarabia Intl Airport (TRC)','1','0'),(3938,'VU','TOH',27551,233,'Torres, VU - Torres Airport (TOH)','1','0'),(3939,'','TSQ',27551,233,'Torres, Torres Airport (TSQ)','1','0'),(3940,'','RAD',27572,32,'Tortola, Road Town Seaplane Base (RAD)','1','0'),(3941,'','TOV',27572,32,'Tortola, West End Seaplane Base (TOV)','1','0'),(3942,'IT','TTB',27574,107,'Tortoli, IT - Tortoli - Arbatax Airport (TTB)','1','0'),(3943,'JP','TTJ',27594,110,'Tottori, JP - Tottori Airport (TTJ)','1','0'),(3944,'DZ','TGR',27600,3,'Touggourt, DZ - Sidi Mahdi Airport (TGR)','1','0'),(3945,'NC','TOU',27601,156,'Touho, NC - Touho Airport (TOU)','1','0'),(3946,'FR','TLS',27603,76,'Toulouse, FR - Toulouse - Blagnac Airport (TLS)','1','0'),(3947,'EG','ELT',27605,65,'Tour Sinai City, EG - El Tor Airport (ELT)','1','0'),(3948,'FR','TUF',33866,76,'Tours, FR - Tours Val de Loire Airport (TUF)','1','0'),(3949,'JP','TOY',27631,110,'Toyama, JP - Toyama Airport (TOY)','1','0'),(3950,'TN','TOE',27638,220,'Tozeur, TN - Nefta Airport (TOE)','1','0'),(3951,'TR','TZX',27641,222,'Trabzon, TR - Trabzon Airport (TZX)','1','0'),(3952,'TH','TST',34281,215,'Trang, TH - Trang Airport (TST)','1','0'),(3953,'IT','TPS',27661,107,'Trapani, IT - Vincenzo Florio Airport (TPS)','1','0'),(3954,'','TGN',27667,13,'Traralgon, Latrobe Regional Airport (TGN)','1','0'),(3955,'US','TVC',27682,231,'Traverse City, US - Cherry Capital Airport (TVC)','1','0'),(3956,'BS','TCB',27685,16,'Treasure Cay, BS - Treasure Cay Airport (TCB)','1','0'),(3957,'','TYT',27714,230,'Treinta Y Tres, Treinta y Tres Airport (TYT)','1','0'),(3958,'','TRX',27734,231,'Trenton, Trenton Municipal Airport (TRX)','1','0'),(3959,'US','TTN',27734,231,'Trenton, US - Trenton Mercer Airport (TTN)','1','0'),(3960,'CA','YTR',27735,39,'Trenton, CA - Trenton (YTR)','1','0'),(3961,'','OYO',27737,10,'Tres Arroyos, Tres Arroyos Airport (OYO)','1','0'),(3962,'IT','TRS',27765,107,'Trieste, IT - Friuli Venezia Giulia Airport (TRS)','1','0'),(3963,'','THW',27771,200,'Trincomalee, Trincomalee Harbour Seaplane Base (THW)','1','0'),(3964,'','TDA',27773,219,'Trinidad, Trinidad Airport (TDA)','1','0'),(3965,'','TND',27773,219,'Trinidad, Alberto Delgado Airport (TND)','1','0'),(3966,'BO','TDD',27775,26,'Trinidad, BO - Tte. Jorge Henrich Arauz Airport (TDD)','1','0'),(3967,'LY','TIP',27788,123,'Tripoli, LY - Tripoli Airport (TIP)','1','0'),(3968,'LB','KYE',27789,120,'Tripoli, LB - Kleyate (KYE)','1','0'),(3969,'IN','TRV',34288,101,'Trivandrum, IN - Trivandrum Intl Airport (TRV)','1','0'),(3970,'SE','THN',27806,209,'Trollhattan, SE - Trollhattan Airport (THN)','1','0'),(3971,'NO','TOS',27807,164,'Tromso, NO - Tromso Airport Langnes (TOS)','1','0'),(3972,'NO','TRD',27810,164,'Trondheim, NO - Trondheim Airport Vaernes (TRD)','1','0'),(3973,'','TKF',27831,231,'Truckee, Truckee Tahoe Airport (TKF)','1','0'),(3974,'','TJI',27833,172,'Trujillo, Trujillo Airport (TJI)','1','0'),(3975,'PE','TRU',27833,172,'Trujillo, PE - Cap. FAP Carlos Martinez de Pinillos Airport (TRU)','1','0'),(3976,'FM','TKK',27835,143,'Truk, FM - Chuuk (Truk) Intl Airport (TKK)','1','0'),(3977,'MG','TTS',27855,130,'Tsaratanana, MG - Tsaratanana Airport (TTS)','1','0'),(3978,'CD','TSH',27862,52,'Tshikapa, CD - Tshikapa Airport (TSH)','1','0'),(3979,'','TSD',27863,195,'Tshipise, Tshipise Airport (TSD)','1','0'),(3980,'','WTS',27866,130,'Tsiroanomandidy, Tsiroanomandidy Airport (WTS)','1','0'),(3981,'','TSB',27872,151,'Tsumeb, Tsumeb Airport (TSB)','1','0'),(3982,'','TBC',27879,231,'Tuba City, Tuba City Airport (TBC)','1','0'),(3983,'PF','TUB',27883,78,'Tubuai, PF - Tubuai - Mataura Airport (TUB)','1','0'),(3984,'','AVW',27889,231,'Tucson, Marana Regional Airport (AVW)','1','0'),(3985,'US','TUS',27889,231,'Tucson, US - Tucson Intl Airport (TUS)','1','0'),(3986,'AR','TUC',27890,10,'Tucuman, AR - Teniente General Benjamin Matienzo Intl Airport (TUC)','1','0'),(3987,'BR','TUR',27892,30,'Tucurui, BR - Tucurui Airport (TUR)','1','0'),(3988,'CA','YUB',27902,39,'Tuktoyaktuk, CA - James Gruben Airport (YUB)','1','0'),(3989,'','TYA',27905,141,'Tula, Klokovo Airport (TYA)','1','0'),(3990,'EC','TUA',27911,64,'Tulcan, EC - Teniente Coronel Luis A Mantilla Airport (TUA)','1','0'),(3991,'MG','TLE',27913,130,'Tulear, MG - Toliara Airport (TLE)','1','0'),(3992,'','TLD',27915,28,'Tuli Lodge, Tuli Lodge Airport (TLD)','1','0'),(3993,'US','TUL',27926,231,'Tulsa, US - Tulsa Intl Airport (TUL)','1','0'),(3994,'US','TLT',27927,231,'Tuluksak, US - Tuluksak Airport (TLT)','1','0'),(3995,'','TUY',27928,141,'Tulum, Tulum Airport (TUY)','1','0'),(3996,'','TUJ',27930,70,'Tum, Tum Airport (TUJ)','1','0'),(3997,'CO','TCO',27932,49,'Tumaco, CO - La Florida Airport (TCO)','1','0'),(3998,'PE','TBP',27933,172,'Tumbes, PE - Cap. FAP Pedro Canga Rodriguez Airport (TBP)','1','0'),(3999,'','TUX',27934,39,'Tumbler Ridge, Tumbler Ridge Airport (TUX)','1','0'),(4000,'TN','TUN',27944,220,'Tunis, TN - Carthage Airport (TUN)','1','0'),(4001,'US','WTL',27947,231,'Tuntutuliak, US - Tuntutuliak Airport (WTL)','1','0'),(4002,'US','TNK',27948,231,'Tununak, US - Tununak Airport (TNK)','1','0'),(4003,'CN','TXN',27950,46,'Tunxi, CN - Huangshan Tunxi Intl Airport (TXN)','1','0'),(4004,'US','TUP',27954,231,'Tupelo, US - Tupelo Regional Airport (TUP)','1','0'),(4005,'PK','TUK',27959,166,'Turbat, PK - Turbat Airport (TUK)','1','0'),(4006,'CO','TRB',27962,49,'Turbo, CO - Gonzalo Mejia (TRB)','1','0'),(4007,'IT','TRN',27967,107,'Turin, IT - Turin-Caselle Airport (TRN)','1','0'),(4008,'FI','TKU',27974,75,'Turku, FI - Turku Airport (TKU)','1','0'),(4009,'','TLQ',27981,46,'Turpan, Turpan Jiaohe Airport (TLQ)','1','0'),(4010,'','BXL',27987,74,'Turtle Island, Blue Lagoon Seaplane Base (BXL)','1','0'),(4011,'US','TCL',27992,231,'Tuscaloosa, US - Tuscaloosa Regional Airport (TCL)','1','0'),(4012,'','TGE',27999,231,'Tuskegee, Sharpe Field (TGE)','1','0'),(4013,'','TZL',28011,222,'Tuzla, Tuzla International Airport (TZL)','1','0'),(4014,'','TWZ',28025,157,'Twizel, Pukaki Airport (TWZ)','1','0'),(4015,'US','TYR',28030,231,'Tyler, US - Tyler Pounds Regional Airport (TYR)','1','0'),(4016,'RU','TJM',28039,181,'Tyumen, RU - Tyumen Airport (TJM)','1','0'),(4017,'PF','UAH',33879,78,'Ua Huka, PF - Ua Huka Airport (UAH)','1','0'),(4018,'PF','UAP',33880,78,'Ua Pou, PF - Ua Pou Airport (UAP)','1','0'),(4019,'BR','UBA',28050,30,'Uberaba, BR - Uberaba Airport (UBA)','1','0'),(4020,'BR','UDI',28051,30,'Uberlandia, BR - Gomes Airport (UDI)','1','0'),(4021,'TH','UBP',28052,215,'Ubon Ratchathani, TH - Ubon Ratchathani Airport (UBP)','1','0'),(4022,'IN','UDR',28058,101,'Udaipur, IN - Dabok Airport (UDR)','1','0'),(4023,'','UDE',28063,154,'Uden, Volkel Air Base (UDE)','1','0'),(4024,'TH','UTH',28066,215,'Udon Thani, TH - Udon Thani Airport (UTH)','1','0'),(4025,'RU','UFA',28073,181,'Ufa, RU - Ufa Airport (UFA)','1','0'),(4026,'AO','UGO',28079,6,'Uige, AO - Uíge Airport (UGO)','1','0'),(4027,'MH','UJE',28082,136,'Ujae Island, MH - Ujae Airport (UJE)','1','0'),(4028,'RU','UCT',28084,181,'Ukhta, RU - Ukhta Airport (UCT)','1','0'),(4029,'MN','ULN',28089,146,'Ulan Bator, MN - Ulan Bator (Buyant-Ukhaa) Airport (ULN)','1','0'),(4030,'CN','HLH',28090,46,'Ulanhot, CN - Ulanhot Airport (HLH)','1','0'),(4031,'RU','UUD',28091,181,'Ulan-ude, RU - Baikal Intl Airport (UUD)','1','0'),(4032,'KR','USN',28103,197,'Ulsan, KR - Ulsan Airport (USN)','1','0'),(4033,'RU','ULY',28115,181,'Ulyanovsk, RU - Ulyanovsk Vostochny Airport (ULY)','1','0'),(4034,'SE','UME',28123,209,'Umea, SE - Umea Airport (UME)','1','0'),(4035,'ZA','UTT',28131,195,'Umtata, ZA - Mthatha Airport (UTT)','1','0'),(4036,'BR','UNA',33885,30,'Una, BR - Una Airport (UNA)','1','0'),(4037,'US','UNK',28133,231,'Unalakleet, US - Unalakleet Airport (UNK)','1','0'),(4038,'','UNT',33886,482,'Unst, Baltasound Airport (UNT)','1','0'),(4039,'ZA','UTN',28178,195,'Upington, ZA - Upington Airport (UTN)','1','0'),(4040,'US','CCB',28179,231,'Upland, US - Cable (CCB)','1','0'),(4041,'CA','YBE',28195,39,'Uranium City, CA - Uranium City Airport (YBE)','1','0'),(4042,'','UEN',28203,181,'Urengoy, Urengoy Airport (UEN)','1','0'),(4043,'UZ','UGC',28205,232,'Urgench, UZ - Urgench Airport (UGC)','1','0'),(4044,'','URR',28212,49,'Urrao, Alí Piedrahita Airport (URR)','1','0'),(4045,'MX','UPN',28218,141,'Uruapan, MX - Lic y Gen Ignacio Lopez Rayon National Airport (UPN)','1','0'),(4046,'BR','URG',28220,30,'Uruguaiana, BR - Ruben Berta Intl Airport (URG)','1','0'),(4047,'CN','URC',28222,46,'Urumqi, CN - Urumqi Diwopu Intl Airport (URC)','1','0'),(4048,'','USL',28228,13,'Useless Loop, Useless Loop Airport (USL)','1','0'),(4049,'AR','USH',28230,10,'Ushuaia, AR - Ushuaia Intl Airport (USH)','1','0'),(4050,'','UIK',28245,181,'Ust-ilimsk, Ust-Ilimsk Airport (UIK)','1','0'),(4051,'TH','UTP',28250,215,'Utapao, TH - Utapao Rayong Intl Airport (UTP)','1','0'),(4052,'US','UCA',28255,231,'Utica, US - Oneida County Airport (UCA)','1','0'),(4053,'GL','UMD',28273,87,'Uummannaq, GL - Uummannaq Heliport (UMD)','1','0'),(4054,'','QUO',28282,160,'Uyo, Akwa Ibom International Airport (QUO)','1','0'),(4055,'','UYU',28283,26,'Uyuni, Uyuni Airport (UYU)','1','0'),(4056,'UA','UDJ',28286,227,'Uzhgorod, UA - Uzhgorod Airport (UDJ)','1','0'),(4057,'FI','VAA',28293,75,'Vaasa, FI - Vaasa Airport (VAA)','1','0'),(4058,'IN','BDQ',28303,101,'Vadodara, IN - Vadodara Airport (BDQ)','1','0'),(4059,'NO','VDS',28305,164,'Vadso, NO - Vadso Airport (VDS)','1','0'),(4060,'CA','YVO',33912,39,'Val D\'or, CA - Val-d`Or Airport (YVO)','1','0'),(4061,'US','VDZ',28340,231,'Valdez, US - Valdez Airport (VDZ)','1','0'),(4062,'CL','ZAL',28345,45,'Valdivia, CL - Valdivia Airport (ZAL)','1','0'),(4063,'US','VLD',28347,231,'Valdosta, US - Valdosta Regional Airport (VLD)','1','0'),(4064,'FR','VAF',33922,76,'Valence, FR - Valence-Chabeuil Airport (VAF)','1','0'),(4065,'VE','VLN',28355,235,'Valencia, VE - Valencia (Venezuela) Airport (VLN)','1','0'),(4066,'VE','VLV',28364,235,'Valera, VE - Antonio Nicolas Briceno Airport (VLV)','1','0'),(4067,'VU','VLS',28368,233,'Valesdir, VU - Valesdir Airport (VLS)','1','0'),(4068,'ES','VLL',28378,199,'Valladolid, ES - Vallodolid Airport (VLL)','1','0'),(4069,'CO','CLO',28384,49,'Valle Del Cauca, CO - Aragon Intl Airport (CLO)','1','0'),(4070,'CO','VUP',28386,49,'Valledupar, CO - Alfonso Lopez Pumarejo Airport (VUP)','1','0'),(4071,'','VLR',28388,45,'Vallenar, Vallenar Airport (VLR)','1','0'),(4072,'US','VPS',28410,231,'Valparaiso, US - Destin-Fort Walton Beach Airport (VPS)','1','0'),(4073,'TR','VAN',33944,222,'Van, TR - Van Airport (VAN)','1','0'),(4074,'CA','CXH',28425,39,'Vancouver, CA - Vancouver Coal Harbour Seaplane Base (CXH)','1','0'),(4075,'','YDT',28425,39,'Vancouver, Boundary Bay Airport (YDT)','1','0'),(4076,'CA','YVR',28425,39,'Vancouver, CA - Vancouver Intl Airport (YVR)','1','0'),(4077,'CU','VRA',28448,56,'Varadero, CU - Juan Gualberto Gomez Airport (VRA)','1','0'),(4078,'','VRO',28448,56,'Varadero, Kawama Airport (VRO)','1','0'),(4079,'IN','VNS',28449,101,'Varanasi, IN - Varanasi Airport (VNS)','1','0'),(4080,'BR','VAG',28465,30,'Varginha, BR - Maj Brig Trompowsky Airport (VAG)','1','0'),(4081,'FI','VRK',28468,75,'Varkaus, FI - Varkaus Airport (VRK)','1','0'),(4082,'SE','VST',28484,209,'Vasteras, SE - Hasslo Airport (VST)','1','0'),(4083,'','VAT',28494,130,'Vatomandry, Vatomandry Airport (VAT)','1','0'),(4084,'TO','VAV',28507,218,'Vava\'u, TO - Vava`U Airport (VAV)','1','0'),(4085,'SE','VXO',28509,209,'Vaxjo, SE - Vaxjo Airport (VXO)','1','0'),(4086,'US','VEE',28572,231,'Venetie, US - Venetie Airport (VEE)','1','0'),(4087,'IT','TSF',28574,107,'Venice, IT - Treviso Sant Angelo Airport (TSF)','1','0'),(4088,'IT','VCE',28574,107,'Venice, IT - Marco Polo Airport (VCE)','1','0'),(4089,'US','VNC',28575,231,'Venice, US - Venice Municipal (VNC)','1','0'),(4090,'','VNT',28589,119,'Ventspils, Ventspils International Airport (VNT)','1','0'),(4091,'MX','VER',28593,141,'Veracruz, MX - Gen Heriberto Jara Intl Airport (VER)','1','0'),(4092,'','YVG',28617,39,'Vermilion, Vermilion Airport (YVG)','1','0'),(4093,'US','VEL',28621,231,'Vernal, US - Vernal Regional Airport (VEL)','1','0'),(4094,'','WIB',28628,39,'Vernon, Wilbarger County Airport (WIB)','1','0'),(4095,'','YVE',28628,39,'Vernon, Vernon Regional Airport (YVE)','1','0'),(4096,'US','VRB',28630,231,'Vero Beach, US - Vero Beach Regional Airport (VRB)','1','0'),(4097,'IT','VRN',28633,107,'Verona, IT - Villafranca Airport (VRN)','1','0'),(4098,'','VRS',28638,231,'Versailles, Roy Otten Memorial Airfield (VRS)','1','0'),(4099,'IS','VEY',28658,100,'Vestmannaeyjar, IS - Vestmannaeyjar Airport (VEY)','1','0'),(4100,'','ZIC',28700,88,'Victoria, Victoria Airport (ZIC)','1','0'),(4101,'US','VCT',28701,231,'Victoria, US - Victoria Regional Airport (VCT)','1','0'),(4102,'CA','YWH',28704,39,'Victoria, CA - Victoria Harbour Water Aerodrome (YWH)','1','0'),(4103,'CA','YYJ',28704,39,'Victoria, CA - Victoria Intl Airport (YYJ)','1','0'),(4104,'ZW','VFA',28706,243,'Victoria Falls, ZW - Victoria Falls Airport (VFA)','1','0'),(4105,'BG','VID',28714,34,'Vidin, BG - Vidin Airport (VID)','1','0'),(4106,'AR','VDM',28719,10,'Viedma, AR - Gobernador Edgardo Castello Airport (VDM)','1','0'),(4107,'AT','VIE',28729,14,'Vienna, AT - Vienna Schwechat Airport (VIE)','1','0'),(4108,'LA','VTE',28731,118,'Vientiane, LA - Wattay Airport (VTE)','1','0'),(4109,'US','VQS',28732,176,'Vieques, US - Antonio Rivera Rodriguez Airport (VQS)','1','0'),(4110,'ES','VGO',28753,199,'Vigo, ES - Peinador Airport (VGO)','1','0'),(4111,'IN','VGA',28759,101,'Vijayawada, IN - Vijayawada Airport (VGA)','1','0'),(4112,'PT','VRL',33987,175,'Vila Real, PT - Vila Real Airport (VRL)','1','0'),(4113,'MZ','VNX',28775,149,'Vilanculos, MZ - Vilankulo Airport (VNX)','1','0'),(4114,'SE','VHM',28782,209,'Vilhelmina, SE - Vilhelmina Airport (VHM)','1','0'),(4115,'BR','BVH',28783,30,'Vilhena, BR - Brig Camarao Airport (BVH)','1','0'),(4116,'CU','SNU',28788,56,'Villa Clara, CU - Abel Santamaria Airport (SNU)','1','0'),(4117,'MX','VSA',28804,141,'Villahermosa, MX - Carlos Rovirosa Perez Intl Airport (VSA)','1','0'),(4118,'CO','VVC',28844,49,'Villavicencio, CO - La Vanguardia Airport (VVC)','1','0'),(4119,'LT','VNO',28892,125,'Vilnius, LT - Vilnius Airport (VNO)','1','0'),(4120,'US','VIS',28952,231,'Visalia, US - Visalia Municipal Airport (VIS)','1','0'),(4121,'SE','VBY',28956,209,'Visby, SE - Visby Airport (VBY)','1','0'),(4122,'BR','VIX',28972,30,'Vitoria, BR - Vitoria Airport (VIX)','1','0'),(4123,'ES','VIT',28973,199,'Vitoria, ES - Vitoria Airport (VIT)','1','0'),(4124,'','VTL',28982,76,'Vittel, Vittel - Champ-de-Courses Airport (VTL)','1','0'),(4125,'RU','OGZ',28998,181,'Vladikavkaz, RU - Beslan Airport (OGZ)','1','0'),(4126,'RU','VVO',29000,181,'Vladivostok, RU - Vladivostok Airport (VVO)','1','0'),(4127,'','VOH',29018,130,'Vohemar, Vohemar Airport (VOH)','1','0'),(4128,'DK','SKS',29025,59,'Vojens, DK - Skrydstrup (SKS)','1','0'),(4129,'','VLK',29032,181,'Volgodonsk, Volgodonsk Airport (VLK)','1','0'),(4130,'RU','VOG',29033,181,'Volgograd, RU - Volgograd Airport (VOG)','1','0'),(4131,'','VGD',29040,181,'Vologda, Vologda Airport (VGD)','1','0'),(4132,'IS','VPN',29053,100,'Vopnafjordur, IS - Vopnafjordur Airport (VPN)','1','0'),(4133,'RU','VOZ',29059,181,'Voronezh, RU - Chertovitskoye Airport (VOZ)','1','0'),(4134,'','VYD',29089,195,'Vryheid, Vryheid Airport (VYD)','1','0'),(4135,'','VTG',29097,236,'Vung Tau, Vung Tau Airport (VTG)','1','0'),(4136,'CA','YWK',29113,39,'Wabush, CA - Wabush Airport (YWK)','1','0'),(4137,'ET','WAC',29114,70,'Waca, ET - Wacca Airport (WAC)','1','0'),(4138,'AO','CEO',29116,6,'Waco Kungo, AO - Waco Kungo Airport (CEO)','1','0'),(4139,'','AGI',29131,154,'Wageningen, Wageningen Airstrip (AGI)','1','0'),(4140,'ID','WET',29132,102,'Wagethe, ID - Waghete Airport (WET)','1','0'),(4141,'','WAH',29141,231,'Wahpeton, Harry Stern Airport (WAH)','1','0'),(4142,'','WIK',29154,157,'Waiheke Island, Waiheke Island Aerodrome (WIK)','1','0'),(4143,'ID','WGP',29159,102,'Waingapu, ID - Mau Hau (Waingapu) Airport (WGP)','1','0'),(4144,'US','AIN',29162,231,'Wainwright, US - Wainwright Airport (AIN)','1','0'),(4145,'JP','WKJ',29179,110,'Wakkanai, JP - Wakkanai Airport (WKJ)','1','0'),(4146,'','WLC',29184,13,'Walcha, Walcha Airport (WLC)','1','0'),(4147,'','WDN',29203,231,'Waldron Island, Waldronaire Airport (WDN)','1','0'),(4148,'','WGE',29205,13,'Walgett, Walgett Airport (WGE)','1','0'),(4149,'US','ALW',29210,231,'Walla Walla, US - Walla Walla Regional Airport (ALW)','1','0'),(4150,'US','WLM',29242,231,'Waltham, US - Waltham Airport (WLM)','1','0'),(4151,'NA','WVB',29247,151,'Walvis Bay, NA - Walvis Bay Airport (WVB)','1','0'),(4152,'ID','WMX',29251,102,'Wamena, ID - Wamena Airport (WMX)','1','0'),(4153,'NZ','WKA',29253,157,'Wanaka, NZ - Wanaka Airport (WKA)','1','0'),(4154,'NZ','WAG',29258,157,'Wanganui, NZ - Wanganui Airport (WAG)','1','0'),(4155,'DE','AGE',29262,83,'Wangerooge, DE - Wangerooge (AGE)','1','0'),(4156,'','WGC',29278,101,'Warangal, Warangal Airport (WGC)','1','0'),(4157,'ET','WRA',29283,70,'Warder, ET - Warder Airport (WRA)','1','0'),(4158,'','WAR',29292,102,'Waris, Waris Airport (WAR)','1','0'),(4159,'','WKB',29303,13,'Warracknabeal, Warracknabeal Airport (WKB)','1','0'),(4160,'US','AST',29312,231,'Warrenton, US - Astoria Regional Airport (AST)','1','0'),(4161,'','WMB',29317,13,'Warrnambool, Warrnambool Airport (WMB)','1','0'),(4162,'','RRT',29318,231,'Warroad, Warroad International Memorial Airport (RRT)','1','0'),(4163,'','WMI',29319,231,'Warsaw, Warsaw Modlin Airport (WMI)','1','0'),(4164,'','BYW',29337,231,'Washington, Blakely Island Airport (BYW)','1','0'),(4165,'US','DCA',29337,231,'Washington, US - Ronald Reagan Washington National Airport (DCA)','1','0'),(4166,'US','IAD',29337,231,'Washington, US - Washington Dulles Intl Airport (IAD)','1','0'),(4167,'','WSG',29337,231,'Washington, Washington County Airport (WSG)','1','0'),(4168,'','WSR',29339,102,'Wasior, Wasior Airport (WSR)','1','0'),(4169,'CA','YKQ',29340,39,'Waskaganish, CA - Waskaganish Airport (YKQ)','1','0'),(4170,'IE','WAT',29356,105,'Waterford, IE - Waterford Airport (WAT)','1','0'),(4171,'US','ALO',29361,231,'Waterloo, US - Waterloo Regional Airport (ALO)','1','0'),(4172,'','WLO',29361,231,'Waterloo, Waterloo Airport (WLO)','1','0'),(4173,'US','ART',29370,231,'Watertown, US - Watertown Intl Airport (ART)','1','0'),(4174,'US','ATY',29370,231,'Watertown, US - Watertown Regional Airport (ATY)','1','0'),(4175,'','YQH',29383,39,'Watson Lake, Watson Lake Airport (YQH)','1','0'),(4176,'','WAU',29393,13,'Wauchope, Wauchope Airport (WAU)','1','0'),(4177,'US','UGN',29396,231,'Waukegan, US - Waukegan Regional (UGN)','1','0'),(4178,'','UKN',29398,231,'Waukon, Waukon Municipal Airport (UKN)','1','0'),(4179,'US','CWA',29403,231,'Wausau, US - Central Wisconsin Airport (CWA)','1','0'),(4180,'CA','YWP',29426,39,'Webequie, CA - Webequie Airport (YWP)','1','0'),(4181,'ZA','WEL',29481,195,'Welkom, ZA - Welkom (WEL)','1','0'),(4182,'','WHL',29497,13,'Welshpool, Welshpool Airport (WHL)','1','0'),(4183,'CA','YNC',29502,39,'Wemindji, CA - Wemindji Airport (YNC)','1','0'),(4184,'US','EAT',29504,231,'Wenatchee, US - Pangborn Memorial Airport (EAT)','1','0'),(4185,'CN','WNZ',29518,46,'Wenzhou, CN - Wenzhou Longwan Intl Airport (WNZ)','1','0'),(4186,'','WBK',34041,231,'West Branch, West Branch Community Airport (WBK)','1','0'),(4187,'','WTD',34061,13,'West End, West End Airport (WTD)','1','0'),(4188,'US','AGC',34108,231,'West Mifflin, US - Allegheny County (AGC)','1','0'),(4189,'US','PBI',34115,231,'West Palm Beach, US - Palm Beach Intl Airport (PBI)','1','0'),(4190,'','WWY',34147,13,'West Wyalong, West Wyalong Airport (WWY)','1','0'),(4191,'US','WYS',34150,231,'West Yellowstone, US - Yellowstone Airport (WYS)','1','0'),(4192,'DE','GWT',29567,83,'Westerland, DE - Sylt Airport (GWT)','1','0'),(4193,'US','WST',29569,231,'Westerly, US - Westerly State Airport (WST)','1','0'),(4194,'US','BAF',29579,231,'Westfield, US - Barnes Municipal (BAF)','1','0'),(4195,'NZ','WSZ',29610,157,'Westport, NZ - Westport Airport (WSZ)','1','0'),(4196,'US','WSX',29614,231,'Westsound, US - Westsound Seaplane Base (WSX)','1','0'),(4197,'PG','WWK',29629,170,'Wewak, PG - Boram Airport (WWK)','1','0'),(4198,'NZ','WHK',29642,157,'Whakatane, NZ - Whakatane Airport (WHK)','1','0'),(4199,'CA','YXN',29643,39,'Whale Cove, CA - Whale Cove Airport (YXN)','1','0'),(4200,'US','WWP',29644,231,'Whale Pass, US - North Whale Seaplane Base (WWP)','1','0'),(4201,'','WHS',29645,482,'Whalsay, Whalsay Airstrip (WHS)','1','0'),(4202,'NZ','WRE',29647,157,'Whangarei, NZ - Whangarei Airport (WRE)','1','0'),(4203,'','WHT',29648,231,'Wharton, Wharton Regional Airport (WHT)','1','0'),(4204,'CA','YWS',29665,39,'Whistler, CA - Green Lake Water Aerodrome (YWS)','1','0'),(4205,'US','WMO',34164,231,'White Mountain, US - White Mountain Airport (WMO)','1','0'),(4206,'','YWR',34171,231,'White River, White River Water Aerodrome (YWR)','1','0'),(4207,'CA','YXY',29683,39,'Whitehorse, CA - Erik Nielson Whitehorse Intl Airport (YXY)','1','0'),(4208,'','WTR',29688,195,'Whiteriver, Whiteriver Airport (WTR)','1','0'),(4209,'US','BEC',29713,231,'Wichita, US - Beech Factory (BEC)','1','0'),(4210,'US','CEA',29713,231,'Wichita, US - Cessna Aircraft Field (CEA)','1','0'),(4211,'US','ICT',29713,231,'Wichita, US - Wichita Mid-Continent Airport (ICT)','1','0'),(4212,'GB','WIC',34181,482,'Wick, GB - Wick Airport (WIC)','1','0'),(4213,'','WIO',29744,13,'Wilcannia, Wilcannia Airport (WIO)','1','0'),(4214,'','CWX',29766,231,'Willcox, Cochise County Airport (CWX)','1','0'),(4215,'US','IPT',29778,231,'Williamsport, US - Williamsport Regional Airport (IPT)','1','0'),(4216,'US','ISN',29790,231,'Williston, US - Sloulin Field Intl Airport (ISN)','1','0'),(4217,'US','ILG',29804,231,'Wilmington, US - New Castle Airport (ILG)','1','0'),(4218,'US','ILM',29804,231,'Wilmington, US - Wilmington Intl Airport (ILM)','1','0'),(4219,'US','ILN',29804,231,'Wilmington, US - Airborne Airpark (ILN)','1','0'),(4220,'','WUN',29820,13,'Wiluna, Wiluna Airport (WUN)','1','0'),(4221,'','WGO',29830,469,'Winchester, Winchester Regional Airport (WGO)','1','0'),(4222,'NA','WDH',29839,151,'Windhoek, NA - Hosea Kutako Intl Airport (WDH)','1','0'),(4223,'CA','YQG',34713,39,'Windsor, CA - Windsor Airport (YQG)','1','0'),(4224,'CA','YWG',29865,39,'Winnipeg, CA - Winnipeg J A Richardson Intl Airport (YWG)','1','0'),(4225,'','ISS',29897,231,'Wiscasset, Wiscasset Airport (ISS)','1','0'),(4226,'','LNP',29899,231,'Wise, Lonesome Pine Airport (LNP)','1','0'),(4227,'','WJA',29935,136,'Woja, Woja Airport (WJA)','1','0'),(4228,'CA','ZWL',29955,39,'Wollaston Lake, CA - Wollaston Lake Airport (ZWL)','1','0'),(4229,'TW','WOT',29967,212,'Wonan, TW - Wang-an Airport (WOT)','1','0'),(4230,'','WFD',29978,231,'Woodford, Woodford Aerodrome (WFD)','1','0'),(4231,'','UMR',30014,13,'Woomera, RAAF Woomera Airfield (UMR)','1','0'),(4232,'US','ORH',30019,231,'Worcester, US - Worcester Regional Airport (ORH)','1','0'),(4233,'US','WRL',30025,231,'Worland, US - Worland Municipal Airport (WRL)','1','0'),(4234,'','YWY',30045,39,'Wrigley, Wrigley Airport (YWY)','1','0'),(4235,'PL','WRO',30047,174,'Wroclaw, PL - Strachowice Airport (WRO)','1','0'),(4236,'','WUD',30055,13,'Wudinna, Wudinna Airport (WUD)','1','0'),(4237,'CN','WUH',30059,46,'Wuhan, CN - Wuhan Tianhe Intl Airport (WUH)','1','0'),(4238,'','WHU',30060,46,'Wuhu, Wuhu Airport (WHU)','1','0'),(4239,'DE','OHR',30084,83,'Wyk Auf Foehr, DE - Wyk Auf Fohr (OHR)','1','0'),(4240,'','WYN',30087,13,'Wyndham, Wyndham Airport (WYN)','1','0'),(4241,'CN','XMN',30112,46,'Xiamen, CN - Xiamen Gaoqi Intl Airport (XMN)','1','0'),(4242,'','SIA',30113,46,'Xi\'an, Xi\'an Xiguan Airport (SIA)','1','0'),(4243,'','XNT',30129,46,'Xingtai, Xingtai Dalian Airport (XNT)','1','0'),(4244,'US','YKM',30156,231,'Yakima, US - Yakima Air Terminal (McAllister Field) (YKM)','1','0'),(4245,'JP','KUM',30157,110,'Yakushima, JP - Yakushima Airport (KUM)','1','0'),(4246,'US','YAK',30158,231,'Yakutat, US - Yakutat Airport (YAK)','1','0'),(4247,'RU','YKS',30159,181,'Yakutsk, RU - Yakutsk Airport (YKS)','1','0'),(4248,'JP','GAJ',30166,110,'Yamagata, JP - Yamagata Airport (GAJ)','1','0'),(4249,'JP','NJA',30173,110,'Yamato, JP - Atsugi Naf (NJA)','1','0'),(4250,'SA','YNB',30182,186,'Yanbo, SA - Yanbo Airport (YNB)','1','0'),(4251,'','XYA',30187,193,'Yandina, Yandina Airport (XYA)','1','0'),(4252,'MM','RGN',30189,150,'Yangon, MM - Yangon Intl Airport (RGN)','1','0'),(4253,'','YTY',30194,46,'Yangzhou, Yangzhou Taizhou Airport (YTY)','1','0'),(4254,'US','YKN',30197,231,'Yankton, US - Chan Gurney Municipal (YKN)','1','0'),(4255,'CN','YNT',30199,46,'Yantai, CN - Yantai Laishan Intl Airport (YNT)','1','0'),(4256,'CM','YAO',30202,38,'Yaounde, CM - Nsimalen (YAO)','1','0'),(4257,'FM','YAP',30203,143,'Yap, FM - Yap Intl Airport (YAP)','1','0'),(4258,'CA','YQI',30207,39,'Yarmouth, CA - Yarmouth Airport (YQI)','1','0'),(4259,'IR','AZD',30228,103,'Yazd, IR - Yazd Airport (AZD)','1','0'),(4260,'CA','YZF',30241,39,'Yellowknife, CA - Yellowknife Airport (YZF)','1','0'),(4261,'AM','EVN',30251,11,'Yerevan, AM - Zvartnots Intl Airport (EVN)','1','0'),(4262,'','EYR',30253,231,'Yerington, Yerington Municipal Airport (EYR)','1','0'),(4263,'CN','YIH',30262,46,'Yichang, CN - Yichang Sanxia Airport (YIH)','1','0'),(4264,'','LDS',30264,46,'Yichun, Yichun Lindu Airport (LDS)','1','0'),(4265,'','YIC',30264,46,'Yichun, Yichun Mingyueshan Airport (YIC)','1','0'),(4266,'','YLN',30266,212,'Yilan, Yilan Airport (YLN)','1','0'),(4267,'CN','INC',30268,46,'Yinchuan, CN - Yinchuan Hedong Airport (INC)','1','0'),(4268,'CN','YIW',30270,46,'Yiwu, CN - Yiwu Airport (YIW)','1','0'),(4269,'ID','JOG',30278,102,'Yogyakarta, ID - Adisutjipto Airport (JOG)','1','0'),(4270,'JP','YGJ',30285,110,'Yonago, JP - Miho Yonago Airport (YGJ)','1','0'),(4271,'CA','YQV',30294,39,'Yorkton, CA - Yorkton Municipal (YQV)','1','0'),(4272,'','NGA',30301,13,'Young, Young Airport (NGA)','1','0'),(4273,'AU','AYQ',30330,13,'Yulara, AU - Connellan Airport (AYQ)','1','0'),(4274,'US','YUM',30333,231,'Yuma, US - Yuma Intl Airport (YUM)','1','0'),(4275,'PE','YMS',30340,172,'Yurimaguas, PE - Yurimaguas Airport (YMS)','1','0'),(4276,'MX','ZCL',30361,141,'Zacatecas, MX - Gen Leobardo Ruiz (La Calera) Intl Airport (ZCL)','1','0'),(4277,'HR','ZAD',30364,55,'Zadar, HR - Zadar Airport (ZAD)','1','0'),(4278,'','OZG',30368,148,'Zagora, Zagora Airport (OZG)','1','0'),(4279,'HR','ZAG',30373,55,'Zagreb, HR - Zagreb Pleso Airport (ZAG)','1','0'),(4280,'PH','ZAM',30397,173,'Zamboanga, PH - Zamboanga Intl Airport (ZAM)','1','0'),(4281,'MX','ZMM',30400,141,'Zamora, MX - Zamora (ZMM)','1','0'),(4282,'','ANJ',30402,51,'Zanaga, Zanaga Airport (ANJ)','1','0'),(4283,'TZ','ZNZ',34200,214,'Zanzibar, TZ - Kisauni Airport (ZNZ)','1','0'),(4284,'','APZ',30409,10,'Zapala, Zapala Airport (APZ)','1','0'),(4285,'UA','OZH',30415,227,'Zaporozhye, UA - Zaporozhye Airport (OZH)','1','0'),(4286,'ES','ZAZ',30417,199,'Zaragoza, ES - Zaragoza Airport (ZAZ)','1','0'),(4287,'CN','ZHA',30466,46,'Zhanjiang, CN - Zhanjiang Airport (ZHA)','1','0'),(4288,'CN','CGO',30471,46,'Zhengzhou, CN - Zhngzhou Xinzheng Intl Airport (CGO)','1','0'),(4289,'','HSJ',30471,46,'Zhengzhou, Zhengzhou Shangjie Airport (HSJ)','1','0'),(4290,'PK','PZH',30475,166,'Zhob, PK - Zhob Airport (PZH)','1','0'),(4291,'SN','ZIG',30493,187,'Ziguinchor, SN - Ziguinchor Airport (ZIG)','1','0'),(4292,'','ZYI',30546,46,'Zunyi, Zunyi Xinzhou Airport (ZYI)','1','0'),(4293,'CH','ZRH',30548,210,'Zurich, CH - Zurich Intl Airport (ZRH)','1','0');
/*!40000 ALTER TABLE `tbl_flight_airport_code` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_flight_booking`
--

DROP TABLE IF EXISTS `tbl_flight_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight_booking` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `parent_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `MasterTPSysId` int NOT NULL DEFAULT '0',
  `TPSysId` int NOT NULL DEFAULT '0',
  `PNR_Number` varchar(50) DEFAULT NULL,
  `TravelDate` date NOT NULL,
  `BookingId` varchar(50) DEFAULT NULL,
  `APIBookingId` varchar(150) DEFAULT NULL,
  `FlightNumber` varchar(16) NOT NULL,
  `AirlineName` varchar(32) NOT NULL,
  `IsLCC` varchar(2) NOT NULL,
  `IsRefundable` int NOT NULL,
  `apiTraceId` text NOT NULL,
  `AirlineSysId` varchar(100) NOT NULL DEFAULT '0',
  `DepartureTime` time NOT NULL,
  `ArrivalTime` time NOT NULL,
  `IsDirect` int NOT NULL,
  `FareClass` varchar(100) DEFAULT NULL,
  `FlyingMinutes` int NOT NULL,
  `FlightDuration` varchar(100) NOT NULL,
  `SourcePlaceSysId` int NOT NULL,
  `DestPlaceSysId` int NOT NULL,
  `SourceAirportCode` varchar(5) NOT NULL,
  `DestAirportCode` varchar(5) NOT NULL,
  `StopCount` varchar(50) NOT NULL,
  `TotalFlightMembers` int NOT NULL,
  `CurrencyType` int NOT NULL,
  `PublishedFare` double NOT NULL,
  `ApiResultIndex` varchar(255) NOT NULL,
  `JourneyType` int NOT NULL,
  `TripType` int NOT NULL,
  `IsInternational` int NOT NULL,
  `logo` varchar(250) NOT NULL,
  `Currency` varchar(5) NOT NULL,
  `BaseFare` float NOT NULL,
  `Tax` float NOT NULL,
  `YQTax` float NOT NULL,
  `OtherCharges` float NOT NULL,
  `Discount` float NOT NULL,
  `ServiceFee` float NOT NULL,
  `OfferedFare` double NOT NULL,
  `AgentCommisionEarned` float NOT NULL,
  `AgentCommisionEarnedGST` float NOT NULL DEFAULT '0',
  `AgencyMarkUp` float NOT NULL,
  `AgencyMarkUpGST` float NOT NULL,
  `GTXMarkUp` float NOT NULL,
  `GTXMarkUpGST` float NOT NULL,
  `ExtraMarkup` float NOT NULL DEFAULT '0',
  `ExtraMarkupOnGST` float NOT NULL DEFAULT '0',
  `BagPrice` float NOT NULL DEFAULT '0',
  `MealPrice` float NOT NULL DEFAULT '0',
  `SeatPrice` float NOT NULL DEFAULT '0',
  `bookingData` longtext,
  `status` int NOT NULL DEFAULT '0',
  `API_Response` longtext,
  `API_Response_Ticket` longtext,
  `FlightQueryids` text,
  `paymentStatus` smallint NOT NULL DEFAULT '0',
  `PaymentAmt` double NOT NULL DEFAULT '0',
  `GUID` varchar(100) DEFAULT NULL,
  `error` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `error_Message` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `TransactionId_credit` varchar(200) DEFAULT NULL,
  `TransactionId_debit` varchar(200) DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `ip_address` varchar(20) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  `gstnnumber` varchar(150) DEFAULT NULL,
  `companyname` varchar(150) DEFAULT NULL,
  `gstemail` varchar(100) DEFAULT NULL,
  `gstphone` varchar(50) DEFAULT NULL,
  `gstaddress` varchar(150) DEFAULT NULL,
  `gststate` varchar(150) DEFAULT NULL,
  `ChangeRequestId` varchar(200) DEFAULT NULL,
  `ChangeRequestRes` text,
  `ChangeRequestStatus` varchar(200) DEFAULT NULL,
  `bookedby` varchar(200) DEFAULT NULL,
  `CustomerDetails` varchar(250) DEFAULT NULL,
  `InvoiceNo` varchar(200) DEFAULT NULL,
  `InvoiceDate` date DEFAULT NULL,
  `address` varchar(250) DEFAULT NULL,
  `InvoiceName` varchar(150) DEFAULT NULL,
  `fareIdentifierSP` varchar(150) DEFAULT NULL,
  `IsCancellationProtection` enum('0','1') NOT NULL DEFAULT '0',
  `CancellationProtectionPrice` float NOT NULL DEFAULT '0',
  `generateOTP` varchar(50) DEFAULT NULL,
  `BookedStatus` int NOT NULL DEFAULT '0',
  `ICSourceSysId` smallint NOT NULL DEFAULT '0',
  `refund_payment_id` varchar(150) DEFAULT NULL,
  `refund_refund_id` varchar(250) DEFAULT NULL,
  `RefundPGAPIResponse` text,
  `refund_submitted` smallint NOT NULL DEFAULT '0',
  `CancelCharge` double NOT NULL DEFAULT '0',
  `couponName` varchar(150) DEFAULT NULL,
  `couponVal` double NOT NULL DEFAULT '0',
  `couponApply` enum('0','1') NOT NULL DEFAULT '0',
  `couponexpiryDate` date DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=131 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight_booking`
--

LOCK TABLES `tbl_flight_booking` WRITE;
/*!40000 ALTER TABLE `tbl_flight_booking` DISABLE KEYS */;
INSERT INTO `tbl_flight_booking` VALUES (1,0,1,12761,0,0,NULL,'2022-05-27','DMCS107700257382','TJS107700257382','SG-8374','SpiceJet','1',1,'a8bc3-1049d-f9d0a-81b9b','463','11:55:00','13:35:00',0,'RS',100,'02h 40m',25897,7701,'SXR','DEL','Non-stop',1,1,4557.5,'4-4150482732_2SXRDELSG8374_26149980155966',1,1,0,'https://agent.svezzair.com/public/upload/AirlineLogo/SG.gif','INR',2935,1622.5,500,719,0,15,4557.5,0,0,10,1.8,0,0,0,0,100,0,0,'{\"bookingId\":\"DMCS107700257382\",\"bookingId_TJ\":\"TJS107700257382\",\"FlightNumber\":\"SG-8374\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a8bc3-1049d-f9d0a-81b9b\",\"apiTraceId\":\"4-4150482732_2SXRDELSG8374_26149980155966\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:55\",\"ArrivalTime\":\"13:35\",\"TravelDate\":\"2022-05-27T11:55\",\"LocalFromTime\":\"2022-05-27 11:55\",\"FromUTCTime\":\"2022-05-27T11:55\",\"LocalToTime\":\"2022-05-27 13:35\",\"ToUTCTime\":\"2022-05-27T13:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Fri, 27 May\",\"ArrivalDateTxt\":\"Fri, 27 May\",\"FlightDuration\":\"02h 40m\",\"SourcePlaceSysId\":\"25897\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"SXR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,558\",\"ApiResultIndex\":\"4-4150482732_2SXRDELSG8374_26149980155966\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/agent.svezzair.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2935,\"Tax\":1610.7,\"YQTax\":500,\"OtherCharges\":719,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4545.7,\"PublishedFare\":4557.5,\"PublishedFareAgent\":4557.5,\"OfferedFareAgent\":4557.5,\"OfferedFare\":4345.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4150482732_0SXRDELSG8374_26162908326836\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4557.5,\"CostToAgent\":4557.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1610.7,\"TotalBaseFare\":4545.7,\"BaseFareCal\":4347.5,\"BaseFare\":2935,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":500,\"AGST\":174,\"MFT\":2.7,\"OT\":719,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4557.5,\"CostToAgent\":4557.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":10,\"IntTaxOnAgencyFixMarkUp\":1.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":32.308474576271195,\"PublishFare\":4557.5,\"CostToCustomer\":4557.5,\"BaseFareCal\":4347.5,\"intCommisionEarnedForAgency\":210,\"CostToCompany\":4347.5,\"intOfferedFare\":4345.7,\"intPublishFare\":4545.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4557.5,\"CostToAgent\":4557.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"590\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-05-27T13:35\",\"SegFlightNumber\":\"SG-8374\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2022-05-27T11:55\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"13:35\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/agent.svezzair.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"JNSW\",\"Price\":262,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"JNSW\",\"Price\":262,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-4150482732_2SXRDELSG8374_26149980155966\",\"FareRuleData\":{\"fareRule\":{\"SXR-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCF\":50,\"ACF\":3500,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-05-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"SXR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"25897\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',4,NULL,NULL,NULL,3,0,'11000000228094','EE76887EA5B14578A6C7C0854DB01FD7','[API MUST BE ANY OF SALE/CANCEL]',NULL,NULL,'0',NULL,'2022-05-25 12:58:59','2022-05-25 12:58:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'prince ,','sohan lal',NULL,NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(10,0,10,12577,0,403950,'TESTPNR-TESTPNR','2022-07-07','TJS106100291196',NULL,'6E-167','IndiGo','1',1,'fdab1-f0e09-ba5f6-4dfa6','267','17:55:00','23:20:00',0,'R',325,'5h 25m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,2982.7,'5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',2000,864.7,0,539,0,15,2982.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS106100291196\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-07T17:55\",\"LocalFromTime\":\"2022-07-07 17:55\",\"FromUTCTime\":\"2022-07-07T17:55\",\"LocalToTime\":\"2022-07-07 23:20\",\"ToUTCTime\":\"2022-07-07T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Thu, 07 Jul\",\"ArrivalDateTxt\":\"Thu, 07 Jul\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2864.7,\"PublishedFareTxt\":\"2,865\",\"ApiResultIndex\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2982.7,\"OfferedFare\":2664.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2914742667_0DELVNS6E167VNSBOM6E6813_86006090671071\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"BaseFareCal\":2713.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":2982.7,\"CostToCustomer\":2982.7,\"BaseFareCal\":2713.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2713.21,\"intOfferedFare\":2664.7,\"intPublishFare\":2864.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"136\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-07T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-07T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"137\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-07T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-07T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"fdab1-f0e09-ba5f6-4dfa6\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106100291196\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"strTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-07T17:55\",\"LocalFromTime\":\"2022-07-07 17:55\",\"FromUTCTime\":\"2022-07-07T17:55\",\"LocalToTime\":\"2022-07-07 23:20\",\"ToUTCTime\":\"2022-07-07T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Thu, 07 Jul\",\"ArrivalDateTxt\":\"Thu, 07 Jul\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2864.7,\"ApiResultIndex\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"fdab1-f0e09-ba5f6-4dfa6\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2982.7,\"OfferedFare\":2664.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"BaseFareCal\":2713.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"136\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-07T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-07T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"137\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-07T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-07T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"localFromDateTime\":\"2022-07-07 17:55\",\"localToDateTime\":\"2022-07-07 23:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS106100291196\",\"amount\":2664.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"komal@hellogtx.com\"],\"contacts\":[\"+919999977655\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-07T12:19:37.940\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73051\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"167\",\"eT\":\"320\"},\"stops\":0,\"duration\":90,\"cT\":95,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2022-07-07T17:55\",\"at\":\"2022-07-07T19:25\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"73052\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6813\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-07-07T21:00\",\"at\":\"2022-07-07T23:20\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-VNS\":\"TESTPNR\",\"VNS-BOM\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"Komal\",\"lN\":\"Test\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":864.7,\"BF\":2000,\"TF\":2864.7,\"IGST\":2.7,\"NF\":2664.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":108,\"OT\":539,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"403949\",\"TPSysId\":\"403950\",\"VersionId\":[\"81255\"],\"CustomerSysId\":\"214169\",\"TrxId\":\"28993\",\"FareBreakdownid\":[\"356149\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'AEC2527E881641FB99158BC50E578B83','','0',NULL,NULL,'0','180.151.10.154','2022-07-07 06:45:21','2022-07-07 06:45:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(11,0,11,12577,0,404131,'S2TJ5Z','2022-07-12','TJS102000291382',NULL,'I5-679','AirAsia India','1',0,'bde17-05e94-739f9-c4190','75','20:25:00','22:25:00',0,'BT',120,'2h 0m',12995,18676,'JAI','BOM','Non-stop',1,1,3697.7,'22-4451558222_0JAIBOMI5679_94103155066505',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',2460,1119.7,0,776,0,15,3697.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS102000291382\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2022-07-12T20:25\",\"LocalFromTime\":\"2022-07-12 20:25\",\"FromUTCTime\":\"2022-07-12T20:25\",\"LocalToTime\":\"2022-07-12 22:25\",\"ToUTCTime\":\"2022-07-12T22:25\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Tue, 12 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3579.7,\"PublishedFareTxt\":\"3,580\",\"ApiResultIndex\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":1119.7,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3579.7,\"PublishedFare\":3697.7,\"OfferedFare\":3379.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-4451558222_0JAIBOMI5679_94143747330849\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1119.7,\"BaseFareCal\":3428.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":776,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3697.7,\"CostToCustomer\":3697.7,\"BaseFareCal\":3428.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3428.21,\"intOfferedFare\":3379.7,\"intPublishFare\":3579.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"361\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-12T22:25\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-12T20:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"MOCB\",\"Price\":400,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"bde17-05e94-739f9-c4190\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102000291382\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"strTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2022-07-12T20:25\",\"LocalFromTime\":\"2022-07-12 20:25\",\"FromUTCTime\":\"2022-07-12T20:25\",\"LocalToTime\":\"2022-07-12 22:25\",\"ToUTCTime\":\"2022-07-12T22:25\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Tue, 12 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3579.7,\"ApiResultIndex\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"bde17-05e94-739f9-c4190\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":1119.7,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3579.7,\"PublishedFare\":3697.7,\"OfferedFare\":3379.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1119.7,\"BaseFareCal\":3428.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":776,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"361\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-12T22:25\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-12T20:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"localFromDateTime\":\"2022-07-12 20:25\",\"localToDateTime\":\"2022-07-12 22:25\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS102000291382\",\"amount\":3379.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"ajaykhatri5775@gmail.com\"],\"contacts\":[\"+919829015180\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-07T14:38:05.937\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73099\",\"fD\":{\"aI\":{\"code\":\"I5\",\"name\":\"AirAsia India\",\"isLcc\":true},\"fN\":\"679\",\"eT\":\"320\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-07-12T20:25\",\"at\":\"2022-07-12T22:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"ssrMealInfos\":{\"JAI-BOM\":{\"code\":\"RPCM\",\"amount\":0,\"desc\":\"HERB ROAST VEGETABLE SANDWICH\"}},\"pnrDetails\":{\"JAI-BOM\":\"S2TJ5Z\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Ajay\",\"lN\":\"Khatri\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":1119.7,\"SSRP\":0,\"BF\":2460,\"TF\":3579.7,\"IGST\":2.7,\"NF\":3379.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":126,\"OT\":776,\"MFT\":2.7},\"SSRP\":{\"OT\":0}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404130\",\"TPSysId\":\"404131\",\"VersionId\":[\"81332\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29012\",\"FareBreakdownid\":[\"356163\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'FA8C468BE6174BB5A288C94A336BEBD5','','0',NULL,NULL,'0','103.59.75.64','2022-07-07 09:03:15','2022-07-07 09:03:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(12,0,3,12577,0,404480,'NV469F','2022-08-31','TJS100700291789',NULL,'I5-678','AirAsia India','1',0,'fb658-42ab6-b967a-b9b8a','75','17:50:00','19:50:00',0,'BT',120,'2h 0m',18676,12995,'BOM','JAI','Non-stop',1,1,3374.7,'22-8352631570_0BOMJAII5678_107797954194465',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',2460,796.7,0,453,0,15,3374.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS100700291789\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:50\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-31T17:50\",\"LocalFromTime\":\"2022-08-31 17:50\",\"FromUTCTime\":\"2022-08-31T17:50\",\"LocalToTime\":\"2022-08-31 19:50\",\"ToUTCTime\":\"2022-08-31T19:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3256.7,\"PublishedFareTxt\":\"3,257\",\"ApiResultIndex\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":796.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3256.7,\"PublishedFare\":3374.7,\"OfferedFare\":3056.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-8352631570_0BOMJAII5678_107818176727963\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":796.7,\"BaseFareCal\":3105.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":453,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3374.7,\"CostToCustomer\":3374.7,\"BaseFareCal\":3105.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3105.21,\"intOfferedFare\":3056.7,\"intPublishFare\":3256.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"829\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-31T19:50\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-31T17:50\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:50\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"MOCB\",\"Price\":400,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"fb658-42ab6-b967a-b9b8a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100700291789\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"strTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:50\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-31T17:50\",\"LocalFromTime\":\"2022-08-31 17:50\",\"FromUTCTime\":\"2022-08-31T17:50\",\"LocalToTime\":\"2022-08-31 19:50\",\"ToUTCTime\":\"2022-08-31T19:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3256.7,\"ApiResultIndex\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"fb658-42ab6-b967a-b9b8a\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":796.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3256.7,\"PublishedFare\":3374.7,\"OfferedFare\":3056.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":796.7,\"BaseFareCal\":3105.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":453,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"829\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-31T19:50\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-31T17:50\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:50\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"localFromDateTime\":\"2022-08-31 17:50\",\"localToDateTime\":\"2022-08-31 19:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS100700291789\",\"amount\":3056.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"ajaykhatri5775@gmail.com\"],\"contacts\":[\"+919829015180\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-07T18:22:40.287\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73169\",\"fD\":{\"aI\":{\"code\":\"I5\",\"name\":\"AirAsia India\",\"isLcc\":true},\"fN\":\"678\",\"eT\":\"320\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2022-08-31T17:50\",\"at\":\"2022-08-31T19:50\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-JAI\":\"NV469F\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Ajay\",\"lN\":\"Khatri\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":796.7,\"BF\":2460,\"TF\":3256.7,\"IGST\":2.7,\"NF\":3056.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":126,\"OT\":453,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404479\",\"TPSysId\":\"404480\",\"VersionId\":[\"81427\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29030\",\"FareBreakdownid\":[\"356174\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'CC3F31FF425B4C9D9A50C1435E52FBDB','','0',NULL,NULL,'0','103.59.75.64','2022-07-07 12:48:49','2022-07-07 12:48:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(13,0,12,12577,0,404595,'F46GJL','2022-07-08','TJS107600291866',NULL,'SG-276','SpiceJet','1',1,'6c858-644be-0d764-9a961','463','06:05:00','08:05:00',0,'RS',120,'2h 0m',18676,12995,'BOM','JAI','Non-stop',1,1,4342.7,'4-7079368131_0BOMJAISG276_112498234808609',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',2870,1354.7,500,461,0,15,4342.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS107600291866\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:05\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-07-08T06:05\",\"LocalFromTime\":\"2022-07-08 06:05\",\"FromUTCTime\":\"2022-07-08T06:05\",\"LocalToTime\":\"2022-07-08 08:05\",\"ToUTCTime\":\"2022-07-08T08:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Fri, 08 Jul\",\"ArrivalDateTxt\":\"Fri, 08 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4224.7,\"PublishedFareTxt\":\"4,225\",\"ApiResultIndex\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2870,\"Tax\":1354.7,\"YQTax\":500,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4224.7,\"PublishedFare\":4342.7,\"OfferedFare\":4024.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7079368131_0BOMJAISG276_112529041391271\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1354.7,\"BaseFareCal\":4073.21,\"BaseFare\":2870,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":500,\"AGST\":176,\"MFT\":2.7,\"OT\":461,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4342.7,\"CostToCustomer\":4342.7,\"BaseFareCal\":4073.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4073.21,\"intOfferedFare\":4024.7,\"intPublishFare\":4224.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"430\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-08T08:05\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-08T06:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:05\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6c858-644be-0d764-9a961\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107600291866\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"strTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:05\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-07-08T06:05\",\"LocalFromTime\":\"2022-07-08 06:05\",\"FromUTCTime\":\"2022-07-08T06:05\",\"LocalToTime\":\"2022-07-08 08:05\",\"ToUTCTime\":\"2022-07-08T08:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Fri, 08 Jul\",\"ArrivalDateTxt\":\"Fri, 08 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4224.7,\"ApiResultIndex\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"6c858-644be-0d764-9a961\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2870,\"Tax\":1354.7,\"YQTax\":500,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4224.7,\"PublishedFare\":4342.7,\"OfferedFare\":4024.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1354.7,\"BaseFareCal\":4073.21,\"BaseFare\":2870,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":500,\"AGST\":176,\"MFT\":2.7,\"OT\":461,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"430\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-08T08:05\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-08T06:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:05\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"localFromDateTime\":\"2022-07-08 06:05\",\"localToDateTime\":\"2022-07-08 08:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS107600291866\",\"amount\":4024.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"bharatbhanushali21@gmail.com\"],\"contacts\":[\"+919930301095\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-07T19:42:15.495\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73182\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"276\",\"eT\":\"737\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-07-08T06:05\",\"at\":\"2022-07-08T08:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-JAI\":\"F46GJL\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Bharat\",\"lN\":\"Bhanushali\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":1354.7,\"BF\":2870,\"TF\":4224.7,\"IGST\":2.7,\"NF\":4024.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":176,\"OT\":461,\"YQ\":500,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404594\",\"TPSysId\":\"404595\",\"VersionId\":[\"81483\"],\"CustomerSysId\":\"214171\",\"TrxId\":\"29038\",\"FareBreakdownid\":[\"356178\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'8AD439E1EF724CC598FF67C82715759B','','0',NULL,NULL,'0','49.32.215.51','2022-07-07 14:07:13','2022-07-07 14:07:13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(14,0,4,12577,0,0,NULL,'2022-07-27',NULL,NULL,'6E-648','IndiGo','1',1,'00bce-5e0c2-fd03b-044ae','267','20:10:00','00:25:00',0,'R',255,'4h 15m',12995,18676,'JAI','BOM','1 Stop(s)',1,1,3551.7,'5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',2738,695.7,0,336,0,15,3551.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS106500291869\",\"FlightNumber\":\"6E-648\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:10\",\"ArrivalTime\":\"00:25\",\"TravelDate\":\"2022-07-27T20:10\",\"LocalFromTime\":\"2022-07-27 20:10\",\"FromUTCTime\":\"2022-07-27T20:10\",\"LocalToTime\":\"2022-07-28 00:25\",\"ToUTCTime\":\"2022-07-28T00:25\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":255,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Thu, 28 Jul\",\"FlightDuration\":\"4h 15m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3433.7,\"PublishedFareTxt\":\"3,434\",\"ApiResultIndex\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"JAI-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2738,\"Tax\":695.7,\"YQTax\":0,\"OtherCharges\":336,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":142,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3433.7,\"PublishedFare\":3551.7,\"OfferedFare\":3233.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4789925805_0JAIDEL6E648DELBOM6E6261_112780096502806\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":695.7,\"BaseFareCal\":3282.21,\"BaseFare\":2738,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":142,\"MFT\":2.7,\"OT\":336,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3551.7,\"CostToCustomer\":3551.7,\"BaseFareCal\":3282.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3282.21,\"intOfferedFare\":3233.7,\"intPublishFare\":3433.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"732\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-27T21:15\",\"SegFlightNumber\":\"6E-648\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-27T20:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":65,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:10\",\"strArrivalDtTime\":\"21:15\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"733\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-28T00:25\",\"SegFlightNumber\":\"6E-6261\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"00:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"00bce-5e0c2-fd03b-044ae\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106500291869\",\"FlightNumber\":\"6E-648\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"strTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:10\",\"ArrivalTime\":\"00:25\",\"TravelDate\":\"2022-07-27T20:10\",\"LocalFromTime\":\"2022-07-27 20:10\",\"FromUTCTime\":\"2022-07-27T20:10\",\"LocalToTime\":\"2022-07-28 00:25\",\"ToUTCTime\":\"2022-07-28T00:25\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":255,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Thu, 28 Jul\",\"FlightDuration\":\"4h 15m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3433.7,\"ApiResultIndex\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"00bce-5e0c2-fd03b-044ae\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2738,\"Tax\":695.7,\"YQTax\":0,\"OtherCharges\":336,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":142,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3433.7,\"PublishedFare\":3551.7,\"OfferedFare\":3233.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":695.7,\"BaseFareCal\":3282.21,\"BaseFare\":2738,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":142,\"MFT\":2.7,\"OT\":336,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"732\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-27T21:15\",\"SegFlightNumber\":\"6E-648\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-27T20:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":65,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:10\",\"strArrivalDtTime\":\"21:15\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"733\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-28T00:25\",\"SegFlightNumber\":\"6E-6261\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"00:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"localFromDateTime\":\"2022-07-27 20:10\",\"localToDateTime\":\"2022-07-28 00:25\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.59.75.64','2022-07-07 14:11:35','2022-07-07 14:11:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(15,0,13,12577,0,404602,'TESTPNR','2022-07-31','TJS101400291881',NULL,'AI-673','Air India','',1,'45d95-b117e-3ca28-0f8ed','42','06:00:00','08:45:00',0,'L',165,'2h 45m',18676,20918,'BOM','PAT','Non-stop',1,1,8483.7,'15-2-10-2613019004_1BOMPATAI673_114349417505402',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/AI.gif','INR',7230,1135.7,0,378,0,15,8483.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS101400291881\",\"FlightNumber\":\"AI-673\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2022-07-31T06:00\",\"LocalFromTime\":\"2022-07-31 06:00\",\"FromUTCTime\":\"2022-07-31T06:00\",\"LocalToTime\":\"2022-07-31 08:45\",\"ToUTCTime\":\"2022-07-31T08:45\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 31 Jul\",\"ArrivalDateTxt\":\"Sun, 31 Jul\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8365.7,\"PublishedFareTxt\":\"8,366\",\"ApiResultIndex\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-PAT\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 02 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 02 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7230,\"Tax\":1135.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":370,\"CarrierMiscFee\":170,\"MUFee\":200,\"intPublishedFare\":8365.7,\"PublishedFare\":8483.7,\"OfferedFare\":8165.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-2613019004_0BOMPATAI673_114378456502877\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1135.7,\"BaseFareCal\":8214.21,\"BaseFare\":7230,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":370,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":8483.7,\"CostToCustomer\":8483.7,\"BaseFareCal\":8214.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":8214.21,\"intOfferedFare\":8165.7,\"intPublishFare\":8365.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"175\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-31T08:45\",\"SegFlightNumber\":\"AI-673\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-31T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"45d95-b117e-3ca28-0f8ed\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101400291881\",\"FlightNumber\":\"AI-673\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"strTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2022-07-31T06:00\",\"LocalFromTime\":\"2022-07-31 06:00\",\"FromUTCTime\":\"2022-07-31T06:00\",\"LocalToTime\":\"2022-07-31 08:45\",\"ToUTCTime\":\"2022-07-31T08:45\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 31 Jul\",\"ArrivalDateTxt\":\"Sun, 31 Jul\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8365.7,\"ApiResultIndex\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"45d95-b117e-3ca28-0f8ed\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7230,\"Tax\":1135.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":370,\"CarrierMiscFee\":170,\"MUFee\":200,\"intPublishedFare\":8365.7,\"PublishedFare\":8483.7,\"OfferedFare\":8165.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1135.7,\"BaseFareCal\":8214.21,\"BaseFare\":7230,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":370,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"175\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-31T08:45\",\"SegFlightNumber\":\"AI-673\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-31T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"localFromDateTime\":\"2022-07-31 06:00\",\"localToDateTime\":\"2022-07-31 08:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS101400291881\",\"amount\":8165.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"KUMAR.SAUJANYA@GMAIL.COM\"],\"contacts\":[\"+919699883388\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-07T20:11:43.457\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73188\",\"fD\":{\"aI\":{\"code\":\"AI\",\"name\":\"Air India\",\"isLcc\":false},\"fN\":\"673\",\"eT\":\"32B\"},\"stops\":0,\"duration\":165,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"PAT\",\"name\":\"Jai Prakash Narayan Arpt\",\"cityCode\":\"PAT\",\"city\":\"Patna\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2022-07-31T06:00\",\"at\":\"2022-07-31T08:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"ssrSeatInfos\":{\"BOM-PAT\":{\"code\":\"16C\",\"amount\":0,\"desc\":\"16C\"}},\"pnrDetails\":{\"BOM-PAT\":\"TESTPNR\"},\"ticketNumberDetails\":{\"BOM-PAT\":\"11111111111\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"SAUJANYA\",\"lN\":\"KUMAR\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":1135.7,\"SSRP\":0,\"BF\":7230,\"TF\":8365.7,\"IGST\":2.7,\"NF\":8165.7},\"afC\":{\"TAF\":{\"MF\":15,\"YR\":170,\"MU\":200,\"AGST\":370,\"OT\":378,\"MFT\":2.7},\"SSRP\":{\"OT\":0}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404601\",\"TPSysId\":\"404602\",\"VersionId\":[\"81490\"],\"CustomerSysId\":\"205552\",\"TrxId\":\"29040\",\"FareBreakdownid\":[\"356180\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'8372E82CF0984AD6A4B7BBFEE5013C1A','','0',NULL,NULL,'0','1.38.223.85','2022-07-07 14:37:52','2022-07-07 14:37:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(16,0,14,12577,0,0,NULL,'2022-07-09',NULL,NULL,'6E-218','IndiGo','1',1,'b2dc9-5ee86-6da33-f7b6b','267','11:05:00','13:15:00',0,'R',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,4399.7,'5-3579427625_44DELBOM6E218_198131410573268',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3400,881.7,0,489,0,15,4399.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS103500292648\",\"FlightNumber\":\"6E-218\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:05\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-07-09T11:05\",\"LocalFromTime\":\"2022-07-09 11:05\",\"FromUTCTime\":\"2022-07-09T11:05\",\"LocalToTime\":\"2022-07-09 13:15\",\"ToUTCTime\":\"2022-07-09T13:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 09 Jul\",\"ArrivalDateTxt\":\"Sat, 09 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"PublishedFareTxt\":\"4,282\",\"ApiResultIndex\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3579427625_0DELBOM6E218_198151075108214\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4399.7,\"CostToCustomer\":4399.7,\"BaseFareCal\":4130.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4130.21,\"intOfferedFare\":4081.7,\"intPublishFare\":4281.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"645\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-09T13:15\",\"SegFlightNumber\":\"6E-218\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-09T11:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:05\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b2dc9-5ee86-6da33-f7b6b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103500292648\",\"FlightNumber\":\"6E-218\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"strTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:05\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-07-09T11:05\",\"LocalFromTime\":\"2022-07-09 11:05\",\"FromUTCTime\":\"2022-07-09T11:05\",\"LocalToTime\":\"2022-07-09 13:15\",\"ToUTCTime\":\"2022-07-09T13:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 09 Jul\",\"ArrivalDateTxt\":\"Sat, 09 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"ApiResultIndex\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"b2dc9-5ee86-6da33-f7b6b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"645\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-09T13:15\",\"SegFlightNumber\":\"6E-218\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-09T11:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:05\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"localFromDateTime\":\"2022-07-09 11:05\",\"localToDateTime\":\"2022-07-09 13:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','49.33.255.109','2022-07-08 13:58:21','2022-07-08 13:58:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'467449',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(17,0,5,12577,0,405499,'TESTPNR','2022-07-09','TJS104400292683',NULL,'6E-5023','IndiGo','1',1,'450ac-ecfe5-ad96d-731bf','267','06:30:00','08:35:00',0,'R',125,'2h 5m',7701,18676,'DEL','BOM','Non-stop',1,1,4399.7,'5-0337876994_0DELBOM6E5023_199476034420106',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3400,881.7,0,489,0,15,4399.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS104400292683\",\"FlightNumber\":\"6E-5023\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2022-07-09T06:30\",\"LocalFromTime\":\"2022-07-09 06:30\",\"FromUTCTime\":\"2022-07-09T06:30\",\"LocalToTime\":\"2022-07-09 08:35\",\"ToUTCTime\":\"2022-07-09T08:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 09 Jul\",\"ArrivalDateTxt\":\"Sat, 09 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"PublishedFareTxt\":\"4,282\",\"ApiResultIndex\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0337876994_0DELBOM6E5023_199495063009013\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4399.7,\"CostToCustomer\":4399.7,\"BaseFareCal\":4130.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4130.21,\"intOfferedFare\":4081.7,\"intPublishFare\":4281.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"410\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-09T08:35\",\"SegFlightNumber\":\"6E-5023\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-09T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"450ac-ecfe5-ad96d-731bf\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104400292683\",\"FlightNumber\":\"6E-5023\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"strTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2022-07-09T06:30\",\"LocalFromTime\":\"2022-07-09 06:30\",\"FromUTCTime\":\"2022-07-09T06:30\",\"LocalToTime\":\"2022-07-09 08:35\",\"ToUTCTime\":\"2022-07-09T08:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 09 Jul\",\"ArrivalDateTxt\":\"Sat, 09 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"ApiResultIndex\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"450ac-ecfe5-ad96d-731bf\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"410\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-09T08:35\",\"SegFlightNumber\":\"6E-5023\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-09T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"localFromDateTime\":\"2022-07-09 06:30\",\"localToDateTime\":\"2022-07-09 08:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS104400292683\",\"amount\":4081.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"mybharatyatra@gmail.com\"],\"contacts\":[\"+919560102821\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-08T19:48:55.232\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73336\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5023\",\"eT\":\"321\"},\"stops\":0,\"duration\":125,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-07-09T06:30\",\"at\":\"2022-07-09T08:35\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mrs\",\"pt\":\"ADULT\",\"fN\":\"NAMRATA\",\"lN\":\"NIGAM\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":881.7,\"BF\":3400,\"TF\":4281.7,\"IGST\":2.7,\"NF\":4081.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":175,\"OT\":489,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"405498\",\"TPSysId\":\"405499\",\"VersionId\":[\"81900\"],\"CustomerSysId\":\"202990\",\"TrxId\":\"29144\",\"FareBreakdownid\":[\"356270\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'BCA9781192AE488E923BFC1F9B991259','','0',NULL,NULL,'0','49.33.255.109','2022-07-08 14:16:35','2022-07-08 14:16:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(18,0,6,12577,0,0,NULL,'2022-07-12',NULL,NULL,'6E-6784','IndiGo','1',1,'3836b-a0cde-49fcb-94bab','267','18:20:00','00:00:00',0,'R',340,'5h 40m',18676,7701,'BOM','DEL','1 Stop(s)',1,1,2971.7,'5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',2000,853.7,0,528,0,15,2971.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS100900292686\",\"FlightNumber\":\"6E-6784\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"00:00\",\"TravelDate\":\"2022-07-12T18:20\",\"LocalFromTime\":\"2022-07-12 18:20\",\"FromUTCTime\":\"2022-07-12T18:20\",\"LocalToTime\":\"2022-07-13 00:00\",\"ToUTCTime\":\"2022-07-13T00:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Wed, 13 Jul\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2853.7,\"PublishedFareTxt\":\"2,854\",\"ApiResultIndex\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":853.7,\"YQTax\":0,\"OtherCharges\":528,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2853.7,\"PublishedFare\":2971.7,\"OfferedFare\":2653.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6225714243_0BOMVNS6E6784VNSDEL6E2105_200003927071868\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":853.7,\"BaseFareCal\":2702.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":528,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":2971.7,\"CostToCustomer\":2971.7,\"BaseFareCal\":2702.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2702.21,\"intOfferedFare\":2653.7,\"intPublishFare\":2853.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"854\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-12T20:30\",\"SegFlightNumber\":\"6E-6784\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-12T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":115,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"1h 55m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"855\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-13T00:00\",\"SegFlightNumber\":\"6E-2105\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-12T22:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"00:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"3836b-a0cde-49fcb-94bab\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100900292686\",\"FlightNumber\":\"6E-6784\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"strTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"00:00\",\"TravelDate\":\"2022-07-12T18:20\",\"LocalFromTime\":\"2022-07-12 18:20\",\"FromUTCTime\":\"2022-07-12T18:20\",\"LocalToTime\":\"2022-07-13 00:00\",\"ToUTCTime\":\"2022-07-13T00:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Wed, 13 Jul\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2853.7,\"ApiResultIndex\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"3836b-a0cde-49fcb-94bab\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":853.7,\"YQTax\":0,\"OtherCharges\":528,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2853.7,\"PublishedFare\":2971.7,\"OfferedFare\":2653.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":853.7,\"BaseFareCal\":2702.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":528,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"854\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-12T20:30\",\"SegFlightNumber\":\"6E-6784\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-12T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":115,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"1h 55m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"855\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-13T00:00\",\"SegFlightNumber\":\"6E-2105\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-12T22:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"00:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"localFromDateTime\":\"2022-07-12 18:20\",\"localToDateTime\":\"2022-07-13 00:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.59.75.64','2022-07-08 14:25:04','2022-07-08 14:25:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(19,0,7,12577,0,405505,'TESTPNR','2022-07-12','TJS100400292694',NULL,'6E-2111','IndiGo','1',1,'d0abb-2f7e4-5fef2-ada57','267','02:40:00','04:50:00',0,'R',130,'2h 10m',18676,7701,'BOM','DEL','Non-stop',1,1,4388.7,'5-9166134328_14BOMDEL6E2111_200072916363265',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3400,870.7,0,478,0,15,4388.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS100400292694\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-07-12T02:40\",\"LocalFromTime\":\"2022-07-12 02:40\",\"FromUTCTime\":\"2022-07-12T02:40\",\"LocalToTime\":\"2022-07-12 04:50\",\"ToUTCTime\":\"2022-07-12T04:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Tue, 12 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4270.7,\"PublishedFareTxt\":\"4,271\",\"ApiResultIndex\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":870.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4270.7,\"PublishedFare\":4388.7,\"OfferedFare\":4070.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9166134328_0BOMDEL6E2111_200089756958544\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.7,\"BaseFareCal\":4119.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4388.7,\"CostToCustomer\":4388.7,\"BaseFareCal\":4119.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4119.21,\"intOfferedFare\":4070.7,\"intPublishFare\":4270.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"76\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-12T04:50\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-12T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d0abb-2f7e4-5fef2-ada57\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100400292694\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"strTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-07-12T02:40\",\"LocalFromTime\":\"2022-07-12 02:40\",\"FromUTCTime\":\"2022-07-12T02:40\",\"LocalToTime\":\"2022-07-12 04:50\",\"ToUTCTime\":\"2022-07-12T04:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Tue, 12 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4270.7,\"ApiResultIndex\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"d0abb-2f7e4-5fef2-ada57\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":870.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4270.7,\"PublishedFare\":4388.7,\"OfferedFare\":4070.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.7,\"BaseFareCal\":4119.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"76\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-12T04:50\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-12T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"localFromDateTime\":\"2022-07-12 02:40\",\"localToDateTime\":\"2022-07-12 04:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS100400292694\",\"amount\":4070.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"ajaykhatri5775@gmail.com\"],\"contacts\":[\"+919829015180\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-08T19:58:52.131\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73337\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2111\",\"eT\":\"320\"},\"stops\":0,\"duration\":130,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-07-12T02:40\",\"at\":\"2022-07-12T04:50\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Param Karmanya\",\"lN\":\"Khatri\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":870.7,\"BF\":3400,\"TF\":4270.7,\"IGST\":2.7,\"NF\":4070.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":175,\"OT\":478,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"405504\",\"TPSysId\":\"405505\",\"VersionId\":[\"81907\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29145\",\"FareBreakdownid\":[\"356271\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'945067F20D67421BBC3094C09A181ADD','','0',NULL,NULL,'0','103.59.75.64','2022-07-08 14:26:36','2022-07-08 14:26:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(20,0,4,12577,0,0,NULL,'2022-08-03',NULL,NULL,'UK-853','Vistara','',1,'2dab7-3a7a6-14ca1-02bdd','539','16:00:00','17:45:00',0,'O',105,'1h 45m',18676,2262,'BOM','BLR','Non-stop',1,1,4336.7,'15-2-10-3547428775_0BOMBLRUK853_369300352565748',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',3320,898.7,0,378,0,15,4336.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS106900292872\",\"FlightNumber\":\"UK-853\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-03T16:00\",\"LocalFromTime\":\"2022-08-03 16:00\",\"FromUTCTime\":\"2022-08-03T16:00\",\"LocalToTime\":\"2022-08-03 17:45\",\"ToUTCTime\":\"2022-08-03T17:45\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 03 Aug\",\"ArrivalDateTxt\":\"Wed, 03 Aug\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4218.7,\"PublishedFareTxt\":\"4,219\",\"ApiResultIndex\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARFT\":196,\"ARF\":3920,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure at a charge of INR 3920 per sector per Passenger\",\"fcs\":{\"ACFT\":196,\"ACF\":3920,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3320,\"Tax\":898.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":130,\"MUFee\":200,\"intPublishedFare\":4218.7,\"PublishedFare\":4336.7,\"OfferedFare\":4018.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-3547428775_0BOMBLRUK853_369309118368549\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":898.7,\"BaseFareCal\":4067.21,\"BaseFare\":3320,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":173,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":130,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4336.7,\"CostToCustomer\":4336.7,\"BaseFareCal\":4067.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4067.21,\"intOfferedFare\":4018.7,\"intPublishFare\":4218.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"964\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-03T17:45\",\"SegFlightNumber\":\"UK-853\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-03T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2dab7-3a7a6-14ca1-02bdd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106900292872\",\"FlightNumber\":\"UK-853\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"strTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-03T16:00\",\"LocalFromTime\":\"2022-08-03 16:00\",\"FromUTCTime\":\"2022-08-03T16:00\",\"LocalToTime\":\"2022-08-03 17:45\",\"ToUTCTime\":\"2022-08-03T17:45\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 03 Aug\",\"ArrivalDateTxt\":\"Wed, 03 Aug\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4218.7,\"ApiResultIndex\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"2dab7-3a7a6-14ca1-02bdd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3320,\"Tax\":898.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":130,\"MUFee\":200,\"intPublishedFare\":4218.7,\"PublishedFare\":4336.7,\"OfferedFare\":4018.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":898.7,\"BaseFareCal\":4067.21,\"BaseFare\":3320,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":173,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":130,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"964\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-03T17:45\",\"SegFlightNumber\":\"UK-853\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-03T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"localFromDateTime\":\"2022-08-03 16:00\",\"localToDateTime\":\"2022-08-03 17:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','183.87.82.70','2022-07-10 13:26:58','2022-07-10 13:26:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(21,0,8,12577,0,406527,'TESTPNR','2022-07-27','TJS105000293026',NULL,'6E-212','IndiGo','1',1,'5b7cc-276fc-0a05c-a8aa8','267','13:00:00','13:50:00',0,'R',50,'0h 50m',7701,12995,'DEL','JAI','Non-stop',1,1,882.7,'5-5918287073_2DELJAI6E212_430941512757471',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',100,664.7,0,439,0,15,882.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS105000293026\",\"FlightNumber\":\"6E-212\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:00\",\"ArrivalTime\":\"13:50\",\"TravelDate\":\"2022-07-27T13:00\",\"LocalFromTime\":\"2022-07-27 13:00\",\"FromUTCTime\":\"2022-07-27T13:00\",\"LocalToTime\":\"2022-07-27 13:50\",\"ToUTCTime\":\"2022-07-27T13:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":50,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"0h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":764.7,\"PublishedFareTxt\":\"765\",\"ApiResultIndex\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":100,\"Tax\":664.7,\"YQTax\":0,\"OtherCharges\":439,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":8,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":764.7,\"PublishedFare\":882.7,\"OfferedFare\":564.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5918287073_0DELJAI6E212_430971354198719\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":664.7,\"BaseFareCal\":613.21,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":8,\"MFT\":2.7,\"OT\":439,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":882.7,\"CostToCustomer\":882.7,\"BaseFareCal\":613.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":613.21,\"intOfferedFare\":564.7,\"intPublishFare\":764.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"818\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-27T13:50\",\"SegFlightNumber\":\"6E-212\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"13:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5b7cc-276fc-0a05c-a8aa8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105000293026\",\"FlightNumber\":\"6E-212\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"strTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:00\",\"ArrivalTime\":\"13:50\",\"TravelDate\":\"2022-07-27T13:00\",\"LocalFromTime\":\"2022-07-27 13:00\",\"FromUTCTime\":\"2022-07-27T13:00\",\"LocalToTime\":\"2022-07-27 13:50\",\"ToUTCTime\":\"2022-07-27T13:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":50,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"0h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":764.7,\"ApiResultIndex\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"5b7cc-276fc-0a05c-a8aa8\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":100,\"Tax\":664.7,\"YQTax\":0,\"OtherCharges\":439,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":8,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":764.7,\"PublishedFare\":882.7,\"OfferedFare\":564.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":664.7,\"BaseFareCal\":613.21,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":8,\"MFT\":2.7,\"OT\":439,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"818\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-27T13:50\",\"SegFlightNumber\":\"6E-212\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"13:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"localFromDateTime\":\"2022-07-27 13:00\",\"localToDateTime\":\"2022-07-27 13:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS105000293026\",\"amount\":564.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"ajaykhatri5775@gmail.com\"],\"contacts\":[\"+919829015180\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-11T12:07:27.003\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73421\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"212\",\"eT\":\"321\"},\"stops\":0,\"duration\":50,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-07-27T13:00\",\"at\":\"2022-07-27T13:50\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-JAI\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Ajay\",\"lN\":\"Khatri\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":664.7,\"BF\":100,\"TF\":764.7,\"IGST\":2.7,\"NF\":564.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":8,\"OT\":439,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"406526\",\"TPSysId\":\"406527\",\"VersionId\":[\"82204\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29223\",\"FareBreakdownid\":[\"356338\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'7F812710CC8E42479B2A9293462E6E0A','','0',NULL,NULL,'0','103.59.75.158','2022-07-11 06:34:32','2022-07-11 06:34:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(22,0,15,12577,0,0,NULL,'2022-07-15',NULL,NULL,'AI-610','Air India','',1,'49fd8-fa47d-c7f90-78838','42','19:10:00','18:20:00',0,'L',1390,'23h 10m',2262,7701,'BLR','DEL','1 Stop(s)',1,1,15894.7,'15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/AI.gif','INR',13860,1916.7,0,649,0,15,15894.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS107200295165\",\"FlightNumber\":\"AI-610\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"19:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-07-15T19:10\",\"LocalFromTime\":\"2022-07-15 19:10\",\"FromUTCTime\":\"2022-07-15T19:10\",\"LocalToTime\":\"2022-07-16 18:20\",\"ToUTCTime\":\"2022-07-16T18:20\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1135,\"LAYOVERDuration\":\"18h 55m\",\"FlyingMinutes\":1390,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"23h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":15776.7,\"PublishedFareTxt\":\"15,777\",\"ApiResultIndex\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 02 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 02 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13860,\"Tax\":1916.7,\"YQTax\":0,\"OtherCharges\":649,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":710,\"CarrierMiscFee\":340,\"MUFee\":200,\"intPublishedFare\":15776.7,\"PublishedFare\":15894.7,\"OfferedFare\":15576.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-2823094429_0BLRBOMAI610BOMDELAI687_539734775823323\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1916.7,\"BaseFareCal\":15625.21,\"BaseFare\":13860,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":710,\"MFT\":2.7,\"OT\":649,\"MU\":200,\"YR\":340,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":15894.7,\"CostToCustomer\":15894.7,\"BaseFareCal\":15625.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":15625.21,\"intOfferedFare\":15576.7,\"intPublishFare\":15776.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"869\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-15T21:05\",\"SegFlightNumber\":\"AI-610\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-07-15T19:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":1135,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:10\",\"strArrivalDtTime\":\"21:05\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"18h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"870\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-16T18:20\",\"SegFlightNumber\":\"AI-687\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-16T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"49fd8-fa47d-c7f90-78838\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107200295165\",\"FlightNumber\":\"AI-610\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"strTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"19:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-07-15T19:10\",\"LocalFromTime\":\"2022-07-15 19:10\",\"FromUTCTime\":\"2022-07-15T19:10\",\"LocalToTime\":\"2022-07-16 18:20\",\"ToUTCTime\":\"2022-07-16T18:20\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1135,\"LAYOVERDuration\":\"18h 55m\",\"FlyingMinutes\":1390,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"23h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":15776.7,\"ApiResultIndex\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"49fd8-fa47d-c7f90-78838\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13860,\"Tax\":1916.7,\"YQTax\":0,\"OtherCharges\":649,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":710,\"CarrierMiscFee\":340,\"MUFee\":200,\"intPublishedFare\":15776.7,\"PublishedFare\":15894.7,\"OfferedFare\":15576.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1916.7,\"BaseFareCal\":15625.21,\"BaseFare\":13860,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":710,\"MFT\":2.7,\"OT\":649,\"MU\":200,\"YR\":340,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"869\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-15T21:05\",\"SegFlightNumber\":\"AI-610\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-07-15T19:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":1135,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:10\",\"strArrivalDtTime\":\"21:05\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"18h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"870\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-16T18:20\",\"SegFlightNumber\":\"AI-687\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-16T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"localFromDateTime\":\"2022-07-15 19:10\",\"localToDateTime\":\"2022-07-16 18:20\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2022-07-12 12:47:11','2022-07-12 12:47:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(23,0,16,12577,0,408047,'TESTPNR','2022-08-08','TJS100400295658',NULL,'6E-2112','IndiGo','1',1,'e2db5-a786d-a857a-db53e','267','05:30:00','07:40:00',0,'R',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,4189.7,'5-9143696010_1DELBOM6E2112_602556819388763',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3200,871.7,0,489,0,15,4189.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS100400295658\",\"FlightNumber\":\"6E-2112\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2022-08-08T05:30\",\"LocalFromTime\":\"2022-08-08 05:30\",\"FromUTCTime\":\"2022-08-08T05:30\",\"LocalToTime\":\"2022-08-08 07:40\",\"ToUTCTime\":\"2022-08-08T07:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3200,\"Tax\":871.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4071.7,\"PublishedFare\":4189.7,\"OfferedFare\":3871.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9143696010_0DELBOM6E2112_602733691552995\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":871.7,\"BaseFareCal\":3920.21,\"BaseFare\":3200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4189.7,\"CostToCustomer\":4189.7,\"BaseFareCal\":3920.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3920.21,\"intOfferedFare\":3871.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"244\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T07:40\",\"SegFlightNumber\":\"6E-2112\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"e2db5-a786d-a857a-db53e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100400295658\",\"FlightNumber\":\"6E-2112\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"strTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2022-08-08T05:30\",\"LocalFromTime\":\"2022-08-08 05:30\",\"FromUTCTime\":\"2022-08-08T05:30\",\"LocalToTime\":\"2022-08-08 07:40\",\"ToUTCTime\":\"2022-08-08T07:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"ApiResultIndex\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"e2db5-a786d-a857a-db53e\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3200,\"Tax\":871.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4071.7,\"PublishedFare\":4189.7,\"OfferedFare\":3871.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":871.7,\"BaseFareCal\":3920.21,\"BaseFare\":3200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"244\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T07:40\",\"SegFlightNumber\":\"6E-2112\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"localFromDateTime\":\"2022-08-08 05:30\",\"localToDateTime\":\"2022-08-08 07:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS100400295658\",\"amount\":3871.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-13T11:50:14.589\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73782\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"2112\",\"eT\":\"320\"},\"stops\":0,\"duration\":130,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-08-08T05:30\",\"at\":\"2022-08-08T07:40\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":871.7,\"BF\":3200,\"TF\":4071.7,\"IGST\":2.7,\"NF\":3871.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":165,\"OT\":489,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408046\",\"TPSysId\":\"408047\",\"VersionId\":[\"82655\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29362\",\"FareBreakdownid\":[\"356453\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'1F9EBD5D82FA42A091E55BFB459E0081','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 06:17:39','2022-07-13 06:17:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-000002',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(24,0,16,12577,0,0,NULL,'2022-08-08',NULL,NULL,'AI-469','Air India','',1,'9a82a-a192f-c0f0c-11e37','42','05:20:00','16:25:00',0,'L',665,'11h 5m',7701,18676,'DEL','BOM','2 Stop(s)',1,1,11395.7,'15-2-10-6761490418_74DELRPRAI469RPRVTZAI651VTZBOMAI651_603347894959947',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/AI.gif','INR',9260,2017.7,0,980,0,15,11395.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,0,'null','',NULL,1,0,'AC446FCF39004E99A3B23A4B56887BD0','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 06:28:18','2022-07-13 06:28:18',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(25,0,16,12577,0,408106,'M9517Z','2022-08-08','TJS118100295694',NULL,'SG-5','SpiceJet','1',1,'40604-91975-b03f5-43aca','463','16:30:00','18:25:00',0,'XB',205,'1h 55m',7701,8219,'DEL','DXB','Non-stop',4,1,26130.8,'4-1925110088_1DELDXBSG5_604003435889570',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',21200,4930.8,0,2972,0,60,26130.8,0,0,677.97,0,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS118100295694\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-08-08T16:30\",\"LocalFromTime\":\"2022-08-08 16:30\",\"FromUTCTime\":\"2022-08-08T16:30\",\"LocalToTime\":\"2022-08-08 18:25\",\"ToUTCTime\":\"2022-08-08T18:25\",\"IsDirect\":0,\"FareClass\":\"XB\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":205,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":26130.8,\"PublishedFareTxt\":\"26,131\",\"ApiResultIndex\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DXB\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 4,000 + Fare Difference __nls__ Before 96 hrs Rs 3,500 + Fare Difference\",\"fcs\":{\"ARFT\":200,\"ARF\":4000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 5,000 __nls__ Before 96 hrs Rs 4,500\",\"fcs\":{\"ACFT\":250,\"ACF\":5000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21200,\"Tax\":4930.8,\"YQTax\":0,\"OtherCharges\":2972,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1088,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":26130.8,\"PublishedFare\":26130.8,\"OfferedFare\":25330.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1925110088_0DELDXBSG5_604041221578366\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FAMILY\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":677.97,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2465.4,\"BaseFareCal\":12726.42,\"BaseFare\":10600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":544,\"MFT\":5.4,\"OT\":1486,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":2465.4,\"BaseFareCal\":12726.42,\"BaseFare\":10600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":544,\"MFT\":5.4,\"OT\":1486,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":677.97,\"apiTaxOnMarkup\":122.03,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":26130.8,\"CostToCustomer\":26130.8,\"BaseFareCal\":25452.83,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":25452.83,\"intOfferedFare\":25330.8,\"intPublishFare\":26130.8,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}},\"Segments\":[{\"segmentid\":\"639\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-08T18:25\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XB\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"40604-91975-b03f5-43aca\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":4,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS118100295694\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"strTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-08-08T16:30\",\"LocalFromTime\":\"2022-08-08 16:30\",\"FromUTCTime\":\"2022-08-08T16:30\",\"LocalToTime\":\"2022-08-08 18:25\",\"ToUTCTime\":\"2022-08-08T18:25\",\"IsDirect\":0,\"FareClass\":\"XB\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":205,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":26130.8,\"ApiResultIndex\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"40604-91975-b03f5-43aca\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21200,\"Tax\":4930.8,\"YQTax\":0,\"OtherCharges\":2972,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1088,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":26130.8,\"PublishedFare\":26130.8,\"OfferedFare\":25330.8,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2465.4,\"BaseFareCal\":12726.42,\"BaseFare\":10600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":544,\"MFT\":5.4,\"OT\":1486,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":2465.4,\"BaseFareCal\":12726.42,\"BaseFare\":10600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":544,\"MFT\":5.4,\"OT\":1486,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"639\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-08T18:25\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XB\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"localFromDateTime\":\"2022-08-08 16:30\",\"localToDateTime\":\"2022-08-08 18:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":4,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"order\":{\"bookingId\":\"TJS118100295694\",\"amount\":25330.8,\"markup\":800,\"deliveryInfo\":{\"emails\":[\"nehakumari@catpl.co.in\"],\"contacts\":[\"+918923963627\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-13T12:18:47.649\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73797\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"5\",\"eT\":\"737\"},\"stops\":0,\"duration\":205,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"DXB\",\"name\":\"Dubai Intl Arpt\",\"cityCode\":\"DXB\",\"city\":\"Dubai\",\"country\":\"United Arab Emirates\",\"countryCode\":\"AE\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-08-08T16:30\",\"at\":\"2022-08-08T18:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-DXB\":\"M9517Z\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"neha\",\"lN\":\"kannojia\",\"dob\":\"1968-07-26\",\"pNum\":\"86556986465498789\",\"eD\":\"2023-03-21\",\"pNat\":\"IN\",\"pid\":\"2018-07-20\"},{\"pnrDetails\":{\"DEL-DXB\":\"M9517Z\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"nehu\",\"lN\":\"kannojia\",\"dob\":\"1968-07-26\",\"pNum\":\"5645645646545\",\"eD\":\"2023-03-21\",\"pNat\":\"IN\",\"pid\":\"2018-07-20\"},{\"pnrDetails\":{\"DEL-DXB\":\"M9517Z\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"niya\",\"lN\":\"kannojia\",\"dob\":\"2014-07-12\",\"pNum\":\"8756434684556\",\"eD\":\"2023-03-21\",\"pNat\":\"IN\",\"pid\":\"2018-07-20\"},{\"pnrDetails\":{\"DEL-DXB\":\"M9517Z\"},\"ti\":\"Ms\",\"pt\":\"CHILD\",\"fN\":\"niti\",\"lN\":\"kannojia\",\"dob\":\"2012-07-12\",\"pNum\":\"897564545678456\",\"eD\":\"2023-03-21\",\"pNat\":\"IN\",\"pid\":\"2018-07-20\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":4930.8,\"BF\":21200,\"TF\":26130.8,\"IGST\":10.8,\"NF\":25330.8},\"afC\":{\"TAF\":{\"MF\":60,\"MU\":800,\"AGST\":1088,\"OT\":2972,\"YQ\":0,\"MFT\":10.8}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408105\",\"TPSysId\":\"408106\",\"VersionId\":[\"82668\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29366\",\"FareBreakdownid\":[\"356457\",\"356458\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'09372DDDE46C4E489FDC72A05F51CC61','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 06:46:35','2022-07-13 06:46:35',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-000003',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(26,0,16,12577,0,0,NULL,'2022-08-08',NULL,NULL,'UK-877','Vistara','',1,'62a50-3fce4-41b48-07129','539','10:45:00','19:30:00',0,'A',1815,'32h 45m',18676,25278,'BOM','SIN','2 Stop(s)',4,1,108298.8,'12-15-2-10-6530949629_13BOMHYDUK877HYDCMBUL1178CMBSINUL308_604828617063759',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',62050,46130.8,30176,5916,0,60,108298.8,0,0,677.97,18,0,0,0,0,0,0,0,NULL,0,'null','',NULL,1,0,'D14CD400206A4A7F90A13294C816ADBA','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 06:58:53','2022-07-13 06:58:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(27,0,16,12577,0,0,NULL,'2022-08-08',NULL,NULL,'TG-338','Thai Airways Intl','',0,'6812b-610e4-a3fa5-b8a93','493','01:10:00','06:10:00',0,'V',210,'5h 0m',6000,2266,'MAA','BKK','Non-stop',5,1,61374.5,'12-15-2-10-5153377085_0MAABKKTG338_605811928155960',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/TG.gif','INR',27500,33756.5,22235,7945,0,75,61374.5,0,0,847.46,18,0,0,0,0,0,0,0,NULL,0,'null','',NULL,1,0,'7DF047FEA209460EAFAA467E2A95AB7E','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 07:16:44','2022-07-13 07:16:44',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(28,0,16,12577,0,0,NULL,'2022-08-08',NULL,NULL,'EK-372','Emirates Airlines','',1,'cc219-00983-64483-0e304','203','09:40:00','19:15:00',0,'R',395,'9h 35m',8219,2266,'DXB','BKK','Non-stop',9,1,543485.3,'12-15-2-10-6513144409_0DXBBKKEK372_609026234805480',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/EK.gif','INR',459930,83437.3,59712,21766,0,135,543485.3,0,0,1525.42,18,0,0,0,0,0,0,0,NULL,0,'null','',NULL,1,0,'6599ECA8636947FDB67569362621F2B5','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 08:10:21','2022-07-13 08:10:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(29,0,16,12577,0,408353,NULL,'2022-08-08',NULL,NULL,'SG-5','SpiceJet','1',1,'a6f22-77376-95819-ac42c','0','16:30:00','18:25:00',0,'XA',0,'3h 25m',7701,8219,'DEL','DXB','Non-stop',4,1,50569,'4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',34468,15817.6,0,13004,0,120,50569,0,0,240,43.2,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[1].dob : Adult\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[2].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[3].dob : Child\'s dob required.\"}]}',NULL,1,0,'F7446DD100C241238CA74C53254306BB','','0',NULL,NULL,'0',NULL,'2022-07-13 10:07:43','2022-07-13 10:07:43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(30,29,16,12577,0,408353,NULL,'2022-08-08',NULL,NULL,'SG-12','SpiceJet','1',1,'a6f22-77376-95819-ac42c','0','22:45:00','03:55:00',0,'XA',0,'3h 40m',8219,7701,'DXB','DEL','Non-stop',4,1,50569,'4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005',2,1,1,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',34468,15817.6,0,13004,0,120,50569,0,0,240,43.2,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[1].dob : Adult\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[2].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[3].dob : Child\'s dob required.\"}]}',NULL,1,0,'F7446DD100C241238CA74C53254306BB','','0',NULL,NULL,'0',NULL,'2022-07-13 10:07:43','2022-07-13 10:07:43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(31,0,16,12577,0,408360,NULL,'2022-08-08',NULL,NULL,'6E-1216','IndiGo','1',1,'0da38-f85b6-f4771-7aa83','0','02:00:00','10:30:00',0,'R',0,'6h 0m',18676,25278,'BOM','SIN','Non-stop',4,1,76926,'5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',53488,23201.6,0,21460,0,120,76926,0,0,200,36,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[1].dob : Adult\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[2].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[3].dob : Child\'s dob required.\"}]}',NULL,1,0,'A615A2029E0D49D79D22BD46127EB726','','0',NULL,NULL,'0',NULL,'2022-07-13 10:16:59','2022-07-13 10:16:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(32,31,16,12577,0,408360,NULL,'2022-08-08',NULL,NULL,'6E-58','IndiGo','1',1,'0da38-f85b6-f4771-7aa83','0','04:20:00','14:45:00',0,'R',0,'12h 55m',25278,18676,'SIN','BOM','1 Stop(s)',4,1,76926,'5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328',2,1,1,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',53488,23201.6,0,21460,0,120,76926,0,0,200,36,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[1].dob : Adult\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[2].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[3].dob : Child\'s dob required.\"}]}',NULL,1,0,'A615A2029E0D49D79D22BD46127EB726','','0',NULL,NULL,'0',NULL,'2022-07-13 10:16:59','2022-07-13 10:16:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(33,0,16,12577,0,408366,NULL,'2022-08-08',NULL,NULL,'TG-338','Thai Airways Intl','',0,'36aaa-ae872-a477f-5d6a3','0','01:10:00','06:10:00',0,'W',0,'3h 30m',6000,2266,'MAA','BKK','Non-stop',5,1,118749,'15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/TG.gif','INR',50900,67613,44470,16195,0,150,118749,0,0,200,36,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[1].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[2].dob : Adult\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[3].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[4].dob : Child\'s dob required.\"}]}',NULL,1,0,'C106F02665964B64BB44468D73DBB1B6','','0',NULL,NULL,'0',NULL,'2022-07-13 10:23:10','2022-07-13 10:23:10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(34,33,16,12577,0,408366,NULL,'2022-08-08',NULL,NULL,'TG-337','Thai Airways Intl','',0,'36aaa-ae872-a477f-5d6a3','0','22:10:00','00:01:00',0,'W',0,'3h 21m',2266,6000,'BKK','MAA','Non-stop',5,1,118749,'15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671',2,1,1,'https://www.svezz.com/public/upload/AirlineLogo/TG.gif','INR',50900,67613,44470,16195,0,150,118749,0,0,200,36,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[1].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[2].dob : Adult\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[3].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[4].dob : Child\'s dob required.\"}]}',NULL,1,0,'C106F02665964B64BB44468D73DBB1B6','','0',NULL,NULL,'0',NULL,'2022-07-13 10:23:10','2022-07-13 10:23:10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(35,0,16,12577,0,408373,NULL,'2022-08-07',NULL,NULL,'EK-372','Emirates Airlines','',1,'884fa-abec5-53d88-470eb','0','09:40:00','19:15:00',0,'Y',0,'6h 35m',8219,2266,'DXB','BKK','Non-stop',9,1,916332,'15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/EK.gif','INR',756805,159291,119424,35948,0,270,916332,0,0,200,36,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[1].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[2].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[3].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[4].dob : Adult\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[5].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[6].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[7].dob : Child\'s dob required.\"}]}',NULL,1,0,'5ADAEE0CC1CF4246AA88C5F26780F39D','','0',NULL,NULL,'0',NULL,'2022-07-13 10:29:56','2022-07-13 10:29:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(36,35,16,12577,0,408373,NULL,'2022-08-07',NULL,NULL,'EK-373','Emirates Airlines','',1,'884fa-abec5-53d88-470eb','0','21:25:00','00:50:00',0,'Y',0,'6h 25m',2266,8219,'BKK','DXB','Non-stop',9,1,916332,'15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557',2,1,1,'https://www.svezz.com/public/upload/AirlineLogo/EK.gif','INR',756805,159291,119424,35948,0,270,916332,0,0,200,36,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[1].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[2].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[3].dob : Adult\'s dob required.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[4].dob : Adult\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[5].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[6].dob : Child\'s dob required.\"},{\"errCode\":\"1052\",\"message\":\"travellerInfo[7].dob : Child\'s dob required.\"}]}',NULL,1,0,'5ADAEE0CC1CF4246AA88C5F26780F39D','','0',NULL,NULL,'0',NULL,'2022-07-13 10:29:56','2022-07-13 10:29:56',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(37,0,17,12577,0,408455,'TESTPNR-TESTPNR','2022-07-26','TJS109400296246',NULL,'6E-6939','IndiGo','1',1,'5eaad-a2e4d-73954-6c859','267','17:00:00','21:00:00',0,'R',240,'4h 0m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,4818.7,'5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3749,951.7,0,539,0,15,4818.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJS109400296246\",\"FlightNumber\":\"6E-6939\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"21:00\",\"TravelDate\":\"2022-07-26T17:00\",\"LocalFromTime\":\"2022-07-26 17:00\",\"FromUTCTime\":\"2022-07-26T17:00\",\"LocalToTime\":\"2022-07-26 21:00\",\"ToUTCTime\":\"2022-07-26T21:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Tue, 26 Jul\",\"ArrivalDateTxt\":\"Tue, 26 Jul\",\"FlightDuration\":\"4h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4700.7,\"PublishedFareTxt\":\"4,701\",\"ApiResultIndex\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3749,\"Tax\":951.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":195,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4700.7,\"PublishedFare\":4818.7,\"OfferedFare\":4500.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3570162471_0DELAMD6E6939AMDBOM6E5325_622960826045744\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":951.7,\"BaseFareCal\":4549.21,\"BaseFare\":3749,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":195,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4818.7,\"CostToCustomer\":4818.7,\"BaseFareCal\":4549.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4549.21,\"intOfferedFare\":4500.7,\"intPublishFare\":4700.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"99\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-07-26T18:35\",\"SegFlightNumber\":\"6E-6939\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-26T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":70,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"100\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-26T21:00\",\"SegFlightNumber\":\"6E-5325\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-07-26T19:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:45\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5eaad-a2e4d-73954-6c859\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109400296246\",\"FlightNumber\":\"6E-6939\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"strTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"21:00\",\"TravelDate\":\"2022-07-26T17:00\",\"LocalFromTime\":\"2022-07-26 17:00\",\"FromUTCTime\":\"2022-07-26T17:00\",\"LocalToTime\":\"2022-07-26 21:00\",\"ToUTCTime\":\"2022-07-26T21:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Tue, 26 Jul\",\"ArrivalDateTxt\":\"Tue, 26 Jul\",\"FlightDuration\":\"4h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4700.7,\"ApiResultIndex\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"5eaad-a2e4d-73954-6c859\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3749,\"Tax\":951.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":195,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4700.7,\"PublishedFare\":4818.7,\"OfferedFare\":4500.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":951.7,\"BaseFareCal\":4549.21,\"BaseFare\":3749,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":195,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"99\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-07-26T18:35\",\"SegFlightNumber\":\"6E-6939\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-26T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":70,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"100\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-26T21:00\",\"SegFlightNumber\":\"6E-5325\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-07-26T19:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:45\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"localFromDateTime\":\"2022-07-26 17:00\",\"localToDateTime\":\"2022-07-26 21:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJS109400296246\",\"amount\":4500.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"komal@hellogtx.com\"],\"contacts\":[\"+918595077740\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-13T17:25:38.983\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"73945\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6939\",\"eT\":\"320\"},\"stops\":0,\"duration\":95,\"cT\":70,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-07-26T17:00\",\"at\":\"2022-07-26T18:35\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"73946\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5325\",\"eT\":\"320\"},\"stops\":0,\"duration\":75,\"da\":{\"code\":\"AMD\",\"name\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"cityCode\":\"AMD\",\"city\":\"Ahmedabad\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-07-26T19:45\",\"at\":\"2022-07-26T21:00\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-AMD\":\"TESTPNR\",\"AMD-BOM\":\"TESTPNR\"},\"ti\":\"Mrs\",\"pt\":\"ADULT\",\"fN\":\"Komal\",\"lN\":\"Malhotra\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":951.7,\"BF\":3749,\"TF\":4700.7,\"IGST\":2.7,\"NF\":4500.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":195,\"OT\":539,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408454\",\"TPSysId\":\"408455\",\"VersionId\":[\"82826\"],\"CustomerSysId\":\"214169\",\"TrxId\":\"29402\",\"FareBreakdownid\":[\"356496\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'9C68EC6C0ED246ECBCC3143C4781CCB3','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 11:53:59','2022-07-13 11:53:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-000004',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(38,0,30,12577,0,408462,NULL,'2022-07-21',NULL,NULL,'ET-603','Ethiopian Air Lines','',1,'cee11-d017b-ef198-24085','209','17:10:00','13:30:00',0,'Y',1040,'20h 20m',8219,2266,'DXB','BKK','1 Stop(s)',1,1,138964.7,'12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/ET.png','INR',116545,22301.7,794,2866,0,15,138964.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJS118700296253\",\"FlightNumber\":\"ET-603\",\"AirlineName\":\"Ethiopian Air Lines\",\"AirlineCode\":\"ET\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"AirlineSysId\":\"209\",\"DepartureTime\":\"17:10\",\"ArrivalTime\":\"13:30\",\"TravelDate\":\"2022-07-21T17:10\",\"LocalFromTime\":\"2022-07-21 17:10\",\"FromUTCTime\":\"2022-07-21T17:10\",\"LocalToTime\":\"2022-07-22 13:30\",\"ToUTCTime\":\"2022-07-22T13:30\",\"IsDirect\":0,\"FareClass\":\"Y\",\"LAYOVERCity\":\"Addis Ababa\",\"GroundTime\":215,\"LAYOVERDuration\":\"3h 35m\",\"FlyingMinutes\":1040,\"DepartureDateTxt\":\"Thu, 21 Jul\",\"ArrivalDateTxt\":\"Fri, 22 Jul\",\"FlightDuration\":\"20h 20m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":138846.7,\"PublishedFareTxt\":\"138,847\",\"ApiResultIndex\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\",\"FareRuleDetails\":{\"fareRule\":{\"DXB-BKK\":{\"fr\":{\"DATECHANGE\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":0,\"ARF\":0,\"CRFT\":9,\"CRF\":50}},\"AFTER_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":0,\"ARF\":0,\"CRFT\":9,\"CRF\":50}}},\"NO_SHOW\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"policyInfo\":\"Available with Penalty\"},\"AFTER_DEPARTURE\":{\"amount\":0,\"policyInfo\":\"Available with Penalty\"}},\"CANCELLATION\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}},\"AFTER_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":116545,\"Tax\":22301.7,\"YQTax\":794,\"OtherCharges\":2866,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":18424,\"MUFee\":200,\"intPublishedFare\":138846.7,\"PublishedFare\":138964.7,\"OfferedFare\":138646.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-7390955444_0DXBADDET603ADDBKKET608_623178603278161\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":22301.7,\"BaseFareCal\":138695.21,\"BaseFare\":116545,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":794,\"AGST\":0,\"MFT\":2.7,\"OT\":2866,\"MU\":200,\"YR\":18424,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":138964.7,\"CostToCustomer\":138964.7,\"BaseFareCal\":138695.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":138695.21,\"intOfferedFare\":138646.7,\"intPublishFare\":138846.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"619\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Bole Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Addis Ababa\",\"destinationCountryName\":\"Ethiopia\",\"destinationAirportCode\":\"ADD\",\"destinationArrTime\":\"2022-07-21T20:35\",\"SegFlightNumber\":\"ET-603\",\"AirlineCode\":\"ET\",\"AirlineName\":\"Ethiopian Air Lines\",\"FareClass\":\"Y\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-07-21T17:10\",\"TripIndicator\":\"\",\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":265,\"GroundTime\":215,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:10\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"3h 35m\",\"LAYOVERCity\":\"Addis Ababa\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\"},{\"segmentid\":\"620\",\"originAirportName\":\"Bole Airport\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Addis Ababa\",\"originCountryName\":\"Ethiopia\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-07-22T13:30\",\"SegFlightNumber\":\"ET-608\",\"AirlineCode\":\"ET\",\"AirlineName\":\"Ethiopian Air Lines\",\"FareClass\":\"Y\",\"originAirportCode\":\"ADD\",\"originDepTime\":\"2022-07-22T00:10\",\"TripIndicator\":\"\",\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":560,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"00:10\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"9h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cee11-d017b-ef198-24085\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-21 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS118700296253\",\"FlightNumber\":\"ET-603\",\"AirlineName\":\"Ethiopian Air Lines\",\"AirlineCode\":\"ET\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"strTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"AirlineSysId\":\"209\",\"DepartureTime\":\"17:10\",\"ArrivalTime\":\"13:30\",\"TravelDate\":\"2022-07-21T17:10\",\"LocalFromTime\":\"2022-07-21 17:10\",\"FromUTCTime\":\"2022-07-21T17:10\",\"LocalToTime\":\"2022-07-22 13:30\",\"ToUTCTime\":\"2022-07-22T13:30\",\"IsDirect\":0,\"FareClass\":\"Y\",\"LAYOVERCity\":\"Addis Ababa\",\"GroundTime\":215,\"LAYOVERDuration\":\"3h 35m\",\"FlyingMinutes\":1040,\"DepartureDateTxt\":\"Thu, 21 Jul\",\"ArrivalDateTxt\":\"Fri, 22 Jul\",\"FlightDuration\":\"20h 20m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":138846.7,\"ApiResultIndex\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\",\"SearchFlightTraceId\":\"cee11-d017b-ef198-24085\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":116545,\"Tax\":22301.7,\"YQTax\":794,\"OtherCharges\":2866,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":18424,\"MUFee\":200,\"intPublishedFare\":138846.7,\"PublishedFare\":138964.7,\"OfferedFare\":138646.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":22301.7,\"BaseFareCal\":138695.21,\"BaseFare\":116545,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":794,\"AGST\":0,\"MFT\":2.7,\"OT\":2866,\"MU\":200,\"YR\":18424,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"619\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Bole Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Addis Ababa\",\"destinationCountryName\":\"Ethiopia\",\"destinationAirportCode\":\"ADD\",\"destinationArrTime\":\"2022-07-21T20:35\",\"SegFlightNumber\":\"ET-603\",\"AirlineCode\":\"ET\",\"AirlineName\":\"Ethiopian Air Lines\",\"FareClass\":\"Y\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-07-21T17:10\",\"TripIndicator\":\"\",\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":265,\"GroundTime\":215,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:10\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"3h 35m\",\"LAYOVERCity\":\"Addis Ababa\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\"},{\"segmentid\":\"620\",\"originAirportName\":\"Bole Airport\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Addis Ababa\",\"originCountryName\":\"Ethiopia\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-07-22T13:30\",\"SegFlightNumber\":\"ET-608\",\"AirlineCode\":\"ET\",\"AirlineName\":\"Ethiopian Air Lines\",\"FareClass\":\"Y\",\"originAirportCode\":\"ADD\",\"originDepTime\":\"2022-07-22T00:10\",\"TripIndicator\":\"\",\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":560,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"00:10\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"9h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"localFromDateTime\":\"2022-07-21 17:10\",\"localToDateTime\":\"2022-07-22 13:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1067\",\"message\":\"travellerInfo[0].expiryDate : Passport should not expire within 6 months from travel date.\"},{\"errCode\":\"1068\",\"message\":\"travellerInfo[0].passportIssueDate : Travel date can\'t occur before Passport Issue Date.\"}]}',NULL,1,0,'1DC57BFDDF4A4730B4941DA75D7C751C','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 11:58:19','2022-07-13 11:58:19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(39,0,31,12577,0,408471,NULL,'2022-07-13',NULL,NULL,'6E-2061','IndiGo','1',1,'b677e-9fcd6-f6662-d3604','0','23:10:00','11:45:00',0,'R',0,'14h 5m',7701,8219,'DEL','DXB','1 Stop(s)',1,1,18967,'5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',13958,4772.4,0,3891,0,30,18967,0,0,200,36,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1067\",\"message\":\"travellerInfo[0].expiryDate : Passport should not expire within 6 months from travel date.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"}]}',NULL,1,0,'A9EF9E4B635B48C49B6E39B72850E6C4','','0',NULL,NULL,'0',NULL,'2022-07-13 12:01:48','2022-07-13 12:01:48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(40,39,31,12577,0,408471,NULL,'2022-07-13',NULL,NULL,'6E-1771','IndiGo','1',1,'b677e-9fcd6-f6662-d3604','0','10:00:00','12:30:00',0,'R',0,'1h 0m',105,7701,'AUH','DEL','Non-stop',1,1,18967,'5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304',2,1,1,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',13958,4772.4,0,3891,0,30,18967,0,0,200,36,0,0,0,0,0,0,0,NULL,3,NULL,'{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"1067\",\"message\":\"travellerInfo[0].expiryDate : Passport should not expire within 6 months from travel date.\"},{\"errCode\":\"1051\",\"message\":\"travellerInfo[0].dob : Adult\'s dob required.\"}]}',NULL,1,0,'A9EF9E4B635B48C49B6E39B72850E6C4','','0',NULL,NULL,'0',NULL,'2022-07-13 12:01:48','2022-07-13 12:01:48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(41,0,16,12577,0,0,NULL,'2022-08-14',NULL,NULL,'TG-338','Thai Airways Intl','',0,'a1856-b4f87-61516-729df','493','01:10:00','06:10:00',0,'V',210,'5h 0m',6000,2266,'MAA','BKK','Non-stop',5,1,61379.5,'12-15-2-10-8943629462_0MAABKKTG338_626718065747738',1,1,1,'https://www.svezz.com/public/upload/AirlineLogo/TG.gif','INR',27500,33761.5,22235,7945,0,75,61379.5,0,0,847.46,18,0,0,0,0,0,0,0,NULL,0,'null','',NULL,1,0,'3E9CE09A81AE4C118F96836D928635F6','','0',NULL,NULL,'0','180.151.10.154','2022-07-13 12:57:07','2022-07-13 12:57:07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(42,0,18,12577,0,0,NULL,'2022-07-16',NULL,NULL,'6E-5023','IndiGo','1',1,'5ceae-66b41-62173-aec79','267','06:30:00','08:35:00',0,'R',125,'2h 5m',7701,18676,'DEL','BOM','Non-stop',1,1,4399.7,'5-5529690426_0DELBOM6E5023_628183604162011',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3400,881.7,0,489,0,15,4399.7,0,0,169.49,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJS105600296352\",\"FlightNumber\":\"6E-5023\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2022-07-16T06:30\",\"LocalFromTime\":\"2022-07-16 06:30\",\"FromUTCTime\":\"2022-07-16T06:30\",\"LocalToTime\":\"2022-07-16 08:35\",\"ToUTCTime\":\"2022-07-16T08:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 16 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"PublishedFareTxt\":\"4,282\",\"ApiResultIndex\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5529690426_0DELBOM6E5023_628246113230312\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4399.7,\"CostToCustomer\":4399.7,\"BaseFareCal\":4130.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4130.21,\"intOfferedFare\":4081.7,\"intPublishFare\":4281.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"279\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-16T08:35\",\"SegFlightNumber\":\"6E-5023\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-16T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5ceae-66b41-62173-aec79\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105600296352\",\"FlightNumber\":\"6E-5023\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"strTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2022-07-16T06:30\",\"LocalFromTime\":\"2022-07-16 06:30\",\"FromUTCTime\":\"2022-07-16T06:30\",\"LocalToTime\":\"2022-07-16 08:35\",\"ToUTCTime\":\"2022-07-16T08:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 16 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"ApiResultIndex\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"5ceae-66b41-62173-aec79\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"279\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-16T08:35\",\"SegFlightNumber\":\"6E-5023\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-16T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"localFromDateTime\":\"2022-07-16 06:30\",\"localToDateTime\":\"2022-07-16 08:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','223.233.75.80','2022-07-13 13:22:09','2022-07-13 13:22:09',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(43,0,18,12577,0,0,NULL,'2022-07-30',NULL,NULL,'I5-552','AirAsia India','1',1,'04fee-ed7f7-3a00e-a9242','75','10:40:00','13:15:00',0,'SM',155,'2h 35m',7701,0,'DEL','GOI','Non-stop',1,1,6690.09,'22-16-2384492307_0DELGOII5552_44163314895928',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',5914,781.7,0,464,0,15,6690.09,0,0,0,9,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ102637843507\",\"FlightNumber\":\"I5-552\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-07-30T10:40\",\"LocalFromTime\":\"2022-07-30 10:40\",\"FromUTCTime\":\"2022-07-30T10:40\",\"LocalToTime\":\"2022-07-30 13:15\",\"ToUTCTime\":\"2022-07-30T13:15\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Sat, 30 Jul\",\"ArrivalDateTxt\":\"Sat, 30 Jul\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6695.7,\"PublishedFareTxt\":\"6,696\",\"ApiResultIndex\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-GOI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"amount\":0,\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference__nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":200,\"ARFT\":10}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACF\":200,\"ACFT\":4.95,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"amount\":0,\"policyInfo\":\"Standard Seats-FOC\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5914,\"Tax\":781.7,\"YQTax\":0,\"OtherCharges\":464,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":300,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6695.7,\"PublishedFare\":6690.09,\"OfferedFare\":6631.09,\"CommissionEarned\":64.61,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-2384492307_0DELGOII5552_115080251381973\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":781.7,\"BaseFareCal\":6640.09,\"BaseFare\":5914,\"CommissionEarned\":64.61,\"TDS\":-3.4,\"MF\":15,\"YQ\":0,\"AGST\":300,\"MFT\":2.7,\"OT\":464,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":64.61,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":6690.09,\"CostToCustomer\":6690.09,\"BaseFareCal\":6640.09,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":6640.09,\"intOfferedFare\":6631.09,\"intPublishFare\":6695.7,\"TripjackMarkup\":0,\"TripjackCommission\":64.61,\"TripjackTDS\":\"3.4\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"596\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-30T13:15\",\"SegFlightNumber\":\"I5-552\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-30T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBLD\",\"Price\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"SDAI\",\"Price\":200,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"JMCB\",\"Price\":300,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"KACB\",\"Price\":400,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"GACB\",\"Price\":400,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"04fee-ed7f7-3a00e-a9242\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102637843507\",\"FlightNumber\":\"I5-552\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"strTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-07-30T10:40\",\"LocalFromTime\":\"2022-07-30 10:40\",\"FromUTCTime\":\"2022-07-30T10:40\",\"LocalToTime\":\"2022-07-30 13:15\",\"ToUTCTime\":\"2022-07-30T13:15\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Sat, 30 Jul\",\"ArrivalDateTxt\":\"Sat, 30 Jul\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6695.7,\"ApiResultIndex\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"04fee-ed7f7-3a00e-a9242\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5914,\"Tax\":781.7,\"YQTax\":0,\"OtherCharges\":464,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":300,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6695.7,\"PublishedFare\":6690.09,\"OfferedFare\":6631.09,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":781.7,\"BaseFareCal\":6640.09,\"BaseFare\":5914,\"CommissionEarned\":64.61,\"TDS\":-3.4,\"MF\":15,\"YQ\":0,\"AGST\":300,\"MFT\":2.7,\"OT\":464,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"596\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-30T13:15\",\"SegFlightNumber\":\"I5-552\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-30T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"localFromDateTime\":\"2022-07-30 10:40\",\"localToDateTime\":\"2022-07-30 13:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'7EBF8AF87CE14F9288FFAF382DDCFCAC','','0',NULL,NULL,'0','223.233.75.80','2022-07-13 13:29:25','2022-07-13 13:29:25',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(44,0,32,12577,0,0,NULL,'2022-07-15',NULL,NULL,'SG-923','SpiceJet','1',1,'779d8-25bad-dc37a-ceb6b','463','14:25:00','16:50:00',0,'SA',145,'2h 25m',18676,20918,'BOM','PAT','Non-stop',1,1,5772.29,'4-4637880385_0BOMPATSG923_52029001707304',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',4969,779.7,0,508,0,15,5772.29,0,0,0,9,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ100837852377\",\"FlightNumber\":\"SG-923\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-07-15T14:25\",\"LocalFromTime\":\"2022-07-15 14:25\",\"FromUTCTime\":\"2022-07-15T14:25\",\"LocalToTime\":\"2022-07-15 16:50\",\"ToUTCTime\":\"2022-07-15T16:50\",\"IsDirect\":0,\"FareClass\":\"SA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Fri, 15 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":84,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5748.7,\"PublishedFareTxt\":\"5,749\",\"ApiResultIndex\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-PAT\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":100,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":100,\"ARFT\":5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":1750,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 1,750 __nls__ Before 96 hrs Rs 1,500\",\"fcs\":{\"ACF\":1750,\"CCFT\":9,\"ACFT\":87.5,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4969,\"Tax\":779.7,\"YQTax\":0,\"OtherCharges\":508,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":254,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5748.7,\"PublishedFare\":5772.29,\"OfferedFare\":5713.29,\"CommissionEarned\":35.41,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.86,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4637880385_0BOMPATSG923_52776326168197\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":779.7,\"BaseFareCal\":5722.29,\"BaseFare\":4969,\"CommissionEarned\":35.41,\"TDS\":-1.86,\"MF\":15,\"YQ\":0,\"AGST\":254,\"MFT\":2.7,\"OT\":508,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":35.41,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5772.29,\"CostToCustomer\":5772.29,\"BaseFareCal\":5722.29,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5722.29,\"intOfferedFare\":5713.29,\"intPublishFare\":5748.7,\"TripjackMarkup\":0,\"TripjackCommission\":35.41,\"TripjackTDS\":\"1.86\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"797\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-15T16:50\",\"SegFlightNumber\":\"SG-923\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-15T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":84,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"779d8-25bad-dc37a-ceb6b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ100837852377\",\"FlightNumber\":\"SG-923\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"strTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-07-15T14:25\",\"LocalFromTime\":\"2022-07-15 14:25\",\"FromUTCTime\":\"2022-07-15T14:25\",\"LocalToTime\":\"2022-07-15 16:50\",\"ToUTCTime\":\"2022-07-15T16:50\",\"IsDirect\":0,\"FareClass\":\"SA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Fri, 15 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":84,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5748.7,\"ApiResultIndex\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"779d8-25bad-dc37a-ceb6b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4969,\"Tax\":779.7,\"YQTax\":0,\"OtherCharges\":508,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":254,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5748.7,\"PublishedFare\":5772.29,\"OfferedFare\":5713.29,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":779.7,\"BaseFareCal\":5722.29,\"BaseFare\":4969,\"CommissionEarned\":35.41,\"TDS\":-1.86,\"MF\":15,\"YQ\":0,\"AGST\":254,\"MFT\":2.7,\"OT\":508,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"797\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-15T16:50\",\"SegFlightNumber\":\"SG-923\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-15T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":84,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"localFromDateTime\":\"2022-07-15 14:25\",\"localToDateTime\":\"2022-07-15 16:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','106.193.172.170','2022-07-13 15:40:21','2022-07-13 15:40:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(45,0,19,12577,0,0,NULL,'2022-07-14',NULL,NULL,'6E-5327','IndiGo','1',1,'79abf-a3edb-821fc-be954','267','10:15:00','12:05:00',0,'T',110,'1h 50m',12995,18676,'JAI','BOM','Non-stop',1,1,4766.17,'5-9383703328_1JAIBOM6E5327_45956529132043',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3724,1009.7,0,801,0,15,4766.17,0,0,0,9,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ108637852788\",\"FlightNumber\":\"6E-5327\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:15\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2022-07-14T10:15\",\"LocalFromTime\":\"2022-07-14 10:15\",\"FromUTCTime\":\"2022-07-14T10:15\",\"LocalToTime\":\"2022-07-14 12:05\",\"ToUTCTime\":\"2022-07-14T12:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Thu, 14 Jul\",\"ArrivalDateTxt\":\"Thu, 14 Jul\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4733.7,\"PublishedFareTxt\":\"4,734\",\"ApiResultIndex\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"JAI-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARFT\":162.5,\"ARF\":3250,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3500,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3724,\"Tax\":1009.7,\"YQTax\":0,\"OtherCharges\":801,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":191,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4733.7,\"PublishedFare\":4766.17,\"OfferedFare\":4707.17,\"CommissionEarned\":26.53,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9383703328_0JAIBOM6E5327_52453071215819\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1009.7,\"BaseFareCal\":4716.17,\"BaseFare\":3724,\"CommissionEarned\":26.53,\"TDS\":-1.4,\"MF\":15,\"YQ\":0,\"AGST\":191,\"MFT\":2.7,\"OT\":801,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":26.53,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4766.17,\"CostToCustomer\":4766.17,\"BaseFareCal\":4716.17,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4716.17,\"intOfferedFare\":4707.17,\"intPublishFare\":4733.7,\"TripjackMarkup\":0,\"TripjackCommission\":26.53,\"TripjackTDS\":\"1.4\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"413\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-14T12:05\",\"SegFlightNumber\":\"6E-5327\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-14T10:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:15\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CTSW\",\"Price\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"79abf-a3edb-821fc-be954\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-14 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108637852788\",\"FlightNumber\":\"6E-5327\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"strTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:15\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2022-07-14T10:15\",\"LocalFromTime\":\"2022-07-14 10:15\",\"FromUTCTime\":\"2022-07-14T10:15\",\"LocalToTime\":\"2022-07-14 12:05\",\"ToUTCTime\":\"2022-07-14T12:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Thu, 14 Jul\",\"ArrivalDateTxt\":\"Thu, 14 Jul\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4733.7,\"ApiResultIndex\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"79abf-a3edb-821fc-be954\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3724,\"Tax\":1009.7,\"YQTax\":0,\"OtherCharges\":801,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":191,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4733.7,\"PublishedFare\":4766.17,\"OfferedFare\":4707.17,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1009.7,\"BaseFareCal\":4716.17,\"BaseFare\":3724,\"CommissionEarned\":26.53,\"TDS\":-1.4,\"MF\":15,\"YQ\":0,\"AGST\":191,\"MFT\":2.7,\"OT\":801,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"413\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-14T12:05\",\"SegFlightNumber\":\"6E-5327\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-14T10:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:15\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"localFromDateTime\":\"2022-07-14 10:15\",\"localToDateTime\":\"2022-07-14 12:05\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.59.75.124','2022-07-13 15:46:55','2022-07-13 15:46:55',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(46,0,16,12577,0,0,NULL,'2022-08-06',NULL,NULL,'6E-2111','IndiGo','1',1,'eae10-d0930-db9e6-19d40','267','02:40:00','04:35:00',0,'T',115,'1h 55m',18676,7701,'BOM','DEL','Non-stop',1,1,3924.71,'5-0229504763_0BOMDEL6E2111_22467489050732',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3227,661.7,0,478,0,15,3924.71,0,0,0,9,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ103437885842\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2022-08-06T02:40\",\"LocalFromTime\":\"2022-08-06 02:40\",\"FromUTCTime\":\"2022-08-06T02:40\",\"LocalToTime\":\"2022-08-06 04:35\",\"ToUTCTime\":\"2022-08-06T04:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3888.7,\"PublishedFareTxt\":\"3,889\",\"ApiResultIndex\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARFT\":162.5,\"CRF\":50,\"CRFT\":9,\"ARF\":3250}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3500,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3227,\"Tax\":661.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":166,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3888.7,\"PublishedFare\":3924.71,\"OfferedFare\":3865.71,\"CommissionEarned\":22.99,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.21,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0229504763_0BOMDEL6E2111_9193680420777\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":661.7,\"BaseFareCal\":3874.71,\"BaseFare\":3227,\"CommissionEarned\":22.99,\"TDS\":-1.21,\"MF\":15,\"YQ\":0,\"AGST\":166,\"MFT\":2.7,\"OT\":478,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":22.99,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":3924.71,\"CostToCustomer\":3924.71,\"BaseFareCal\":3874.71,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":3874.71,\"intOfferedFare\":3865.71,\"intPublishFare\":3888.7,\"TripjackMarkup\":0,\"TripjackCommission\":22.99,\"TripjackTDS\":\"1.21\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"203\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-06T04:35\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-06T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"VPAV\",\"Price\":300,\"Description\":\"Vada Pav\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHBR\",\"Price\":400,\"Description\":\"Chicken Biryani\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"PITA\",\"Price\":550,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CKKU\",\"Price\":550,\"Description\":\"Chicken Keema with Kulcha\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CTSW\",\"Price\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHCT\",\"Price\":600,\"Description\":\"Chicken cucumber tomato sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eae10-d0930-db9e6-19d40\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103437885842\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"strTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2022-08-06T02:40\",\"LocalFromTime\":\"2022-08-06 02:40\",\"FromUTCTime\":\"2022-08-06T02:40\",\"LocalToTime\":\"2022-08-06 04:35\",\"ToUTCTime\":\"2022-08-06T04:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3888.7,\"ApiResultIndex\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"eae10-d0930-db9e6-19d40\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3227,\"Tax\":661.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":166,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3888.7,\"PublishedFare\":3924.71,\"OfferedFare\":3865.71,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":661.7,\"BaseFareCal\":3874.71,\"BaseFare\":3227,\"CommissionEarned\":22.99,\"TDS\":-1.21,\"MF\":15,\"YQ\":0,\"AGST\":166,\"MFT\":2.7,\"OT\":478,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"203\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-06T04:35\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-06T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"localFromDateTime\":\"2022-08-06 02:40\",\"localToDateTime\":\"2022-08-06 04:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','223.233.68.191','2022-07-14 07:45:39','2022-07-14 07:45:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(47,0,20,12728,411423,411424,'TESTPNR','2022-07-27','DMCS100900299099','TJS100900299099','6E-5087','IndiGo','1',1,'230ce-63b00-d965f-e230b','267','21:20:00','23:25:00',0,'R',125,'02h 05m',7701,18676,'DEL','BOM','Non-stop',1,1,4083.5,'5-0519797479_40DELBOM6E5087_1057080800923404',1,1,0,'https://b2b.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3200,883.5,0,489,0,15,4083.5,0,0,10,1.8,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS100900299099\",\"bookingId_TJ\":\"TJS100900299099\",\"FlightNumber\":\"6E-5087\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"230ce-63b00-d965f-e230b\",\"apiTraceId\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2022-07-27T21:20\",\"LocalFromTime\":\"2022-07-27 21:20\",\"FromUTCTime\":\"2022-07-27T21:20\",\"LocalToTime\":\"2022-07-27 23:25\",\"ToUTCTime\":\"2022-07-27T23:25\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"02h 05m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,084\",\"ApiResultIndex\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3200,\"Tax\":871.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4071.7,\"PublishedFare\":4083.5,\"PublishedFareAgent\":4083.5,\"OfferedFareAgent\":4083.5,\"OfferedFare\":3871.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0519797479_0DELBOM6E5087_1057225745913754\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":871.7,\"TotalBaseFare\":4071.7,\"BaseFareCal\":3873.5,\"BaseFare\":3200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":10,\"IntTaxOnAgencyFixMarkUp\":1.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":32.308474576271195,\"PublishFare\":4083.5,\"CostToCustomer\":4083.5,\"BaseFareCal\":3873.5,\"intCommisionEarnedForAgency\":210,\"CostToCompany\":3873.5,\"intOfferedFare\":3871.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"465\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-27T23:25\",\"SegFlightNumber\":\"6E-5087\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T21:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',8,'{\"bookingId\":\"DMCS100900299099\",\"bookingId_TJ\":\"TJS100900299099\",\"FlightNumber\":\"6E-5087\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"230ce-63b00-d965f-e230b\",\"apiTraceId\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2022-07-27T21:20\",\"LocalFromTime\":\"2022-07-27 21:20\",\"FromUTCTime\":\"2022-07-27T21:20\",\"LocalToTime\":\"2022-07-27 23:25\",\"ToUTCTime\":\"2022-07-27T23:25\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"02h 05m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,084\",\"ApiResultIndex\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3200,\"Tax\":871.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4071.7,\"PublishedFare\":4083.5,\"PublishedFareAgent\":4083.5,\"OfferedFareAgent\":4083.5,\"OfferedFare\":3871.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0519797479_0DELBOM6E5087_1057225745913754\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":871.7,\"TotalBaseFare\":4071.7,\"BaseFareCal\":3873.5,\"BaseFare\":3200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":10,\"IntTaxOnAgencyFixMarkUp\":1.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":32.308474576271195,\"PublishFare\":4083.5,\"CostToCustomer\":4083.5,\"BaseFareCal\":3873.5,\"intCommisionEarnedForAgency\":210,\"CostToCompany\":3873.5,\"intOfferedFare\":3871.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"465\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-27T23:25\",\"SegFlightNumber\":\"6E-5087\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T21:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}','{\"order\":{\"bookingId\":\"TJS100900299099\",\"amount\":3871.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"komalmalhotra0101@gmail.com\"],\"contacts\":[\"919999977655\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-18T18:04:19.032\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"74639\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5087\",\"eT\":\"320\"},\"stops\":0,\"duration\":125,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-07-27T21:20\",\"at\":\"2022-07-27T23:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Mohammad\",\"lN\":\"sabir\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":871.7,\"BF\":3200,\"TF\":4071.7,\"IGST\":2.7,\"NF\":3871.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":165,\"OT\":489,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"411423\",\"TPSysId\":\"411424\",\"VersionId\":[\"83916\"],\"CustomerSysId\":\"198799\",\"TrxId\":\"29675\",\"FareBreakdownid\":[\"356727\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'613427BDE84647ECAD2FB984130421F3','','',NULL,'613427BDE84647ECAD2FB984130421F3','0',NULL,'2022-07-18 12:31:53','2022-07-18 12:31:53',NULL,NULL,NULL,NULL,NULL,NULL,'7000299112',NULL,'8','Komal Malhotra','Mohammad sabir',NULL,NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(48,0,20,12728,411428,411429,'TESTPNR','2022-07-26','DMCS103800299101','TJS103800299101','6E-167','IndiGo','1',1,'e2c45-b65a8-4708e-fbbfb','267','17:55:00','23:20:00',0,'R',325,'05h 25m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,2994.5,'5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331',1,1,0,'https://b2b.svezz.com/public/upload/AirlineLogo/6E.gif','INR',2000,994.5,0,539,0,15,2994.5,0,0,110,19.8,0,0,677.966,122.034,0,0,0,'{\"bookingId\":\"DMCS103800299101\",\"bookingId_TJ\":\"TJS103800299101\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"e2c45-b65a8-4708e-fbbfb\",\"apiTraceId\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-26T17:55\",\"LocalFromTime\":\"2022-07-26 17:55\",\"FromUTCTime\":\"2022-07-26T17:55\",\"LocalToTime\":\"2022-07-26 23:20\",\"ToUTCTime\":\"2022-07-26T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Tue, 26 Jul\",\"ArrivalDateTxt\":\"Tue, 26 Jul\",\"FlightDuration\":\"05h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"2,995\",\"ApiResultIndex\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2994.5,\"PublishedFareAgent\":2994.5,\"OfferedFareAgent\":2994.5,\"OfferedFare\":2664.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5475753872_0DELVNS6E167VNSBOM6E6813_1057434368435438\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"TotalBaseFare\":2864.7,\"BaseFareCal\":2684.5,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"showintax\":\"1\",\"ExtraMarkup\":677.9661016949152,\"ExtraMarkupOnGST\":122.03389830508479}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":2994.5,\"CostToCustomer\":2994.5,\"BaseFareCal\":2684.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":2684.5,\"intOfferedFare\":2664.7,\"intPublishFare\":2864.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0},\"showintax\":\"1\",\"ExtraMarkup\":677.9661016949152,\"ExtraMarkupOnGST\":122.03389830508479},\"Segments\":[{\"segmentid\":\"682\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-26T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-26T17:55\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"683\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-26T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-26T21:00\",\"TripIndicator\":2,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPE\",\"Price\":0,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPD\",\"Price\":0,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPC\",\"Price\":0,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPB\",\"Price\":0,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPA\",\"Price\":0,\"Weight\":\"5 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',12,'{\"bookingId\":\"DMCS103800299101\",\"bookingId_TJ\":\"TJS103800299101\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"e2c45-b65a8-4708e-fbbfb\",\"apiTraceId\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-26T17:55\",\"LocalFromTime\":\"2022-07-26 17:55\",\"FromUTCTime\":\"2022-07-26T17:55\",\"LocalToTime\":\"2022-07-26 23:20\",\"ToUTCTime\":\"2022-07-26T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Tue, 26 Jul\",\"ArrivalDateTxt\":\"Tue, 26 Jul\",\"FlightDuration\":\"05h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"2,995\",\"ApiResultIndex\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2994.5,\"PublishedFareAgent\":2994.5,\"OfferedFareAgent\":2994.5,\"OfferedFare\":2664.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5475753872_0DELVNS6E167VNSBOM6E6813_1057434368435438\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"TotalBaseFare\":2864.7,\"BaseFareCal\":2684.5,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"showintax\":\"1\",\"ExtraMarkup\":677.9661016949152,\"ExtraMarkupOnGST\":122.03389830508479}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":2994.5,\"CostToCustomer\":2994.5,\"BaseFareCal\":2684.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":2684.5,\"intOfferedFare\":2664.7,\"intPublishFare\":2864.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0},\"showintax\":\"1\",\"ExtraMarkup\":677.9661016949152,\"ExtraMarkupOnGST\":122.03389830508479},\"Segments\":[{\"segmentid\":\"682\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-26T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-26T17:55\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"683\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-26T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-26T21:00\",\"TripIndicator\":2,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPE\",\"Price\":0,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPD\",\"Price\":0,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPC\",\"Price\":0,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPB\",\"Price\":0,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPA\",\"Price\":0,\"Weight\":\"5 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}','{\"order\":{\"bookingId\":\"TJS103800299101\",\"amount\":2664.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"komalmalhotra0101@gmail.com\"],\"contacts\":[\"919999977655\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-18T18:06:47.395\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"74640\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"167\",\"eT\":\"320\"},\"stops\":0,\"duration\":90,\"cT\":95,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2022-07-26T17:55\",\"at\":\"2022-07-26T19:25\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"74641\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6813\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-07-26T21:00\",\"at\":\"2022-07-26T23:20\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-VNS\":\"TESTPNR\",\"VNS-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Mohammad\",\"lN\":\"sabir\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":864.7,\"BF\":2000,\"TF\":2864.7,\"IGST\":2.7,\"NF\":2664.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":108,\"OT\":539,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"411428\",\"TPSysId\":\"411429\",\"VersionId\":[\"83917\"],\"CustomerSysId\":\"198799\",\"TrxId\":\"29676\",\"FareBreakdownid\":[\"356728\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'3AE1CE192ACC4D71AB9BD3E55A00AD10','','',NULL,'3AE1CE192ACC4D71AB9BD3E55A00AD10','0',NULL,'2022-07-18 12:35:26','2022-07-18 12:35:26',NULL,NULL,NULL,NULL,NULL,NULL,'2',NULL,'12','Komal Malhotra','Mohammad sabir','8u8u','2022-07-18','njn','Mohammad sabir','PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(50,0,22,12577,0,411708,NULL,'2022-07-20',NULL,NULL,'AI-664','Air India','',1,'c8622-16314-94fb7-65f98','42','15:15:00','16:35:00',0,'S',80,'1h 20m',0,18676,'GOI','BOM','Non-stop',3,1,8545.86,'21-10-15-2-0676070458_80GOIBOMAI664_9023875071625',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/AI.gif','INR',6710,2282.1,0,1358,0,45,8545.86,0,0,0,9,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ105638235197\",\"FlightNumber\":\"AI-664\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-07-20T15:15\",\"LocalFromTime\":\"2022-07-20 15:15\",\"FromUTCTime\":\"2022-07-20T15:15\",\"LocalToTime\":\"2022-07-20 16:35\",\"ToUTCTime\":\"2022-07-20T16:35\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 20 Jul\",\"ArrivalDateTxt\":\"Wed, 20 Jul\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":0,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":8992.1,\"PublishedFareTxt\":\"8,992\",\"ApiResultIndex\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"GOI-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non-Refundable (Basic fare forfeited, Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 26 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"CRFT\":9,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 26 Hrs before scheduled departure__nls__Cancellation Penalty : INR 4,000\\/- or basic fare whichever is lower\",\"fcs\":{\"CCFT\":9,\"CCF\":50,\"ACF\":4000,\"ACFT\":200}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6710,\"Tax\":2282.1,\"YQTax\":0,\"OtherCharges\":1358,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":361,\"CarrierMiscFee\":510,\"MUFee\":0,\"intPublishedFare\":8992.1,\"PublishedFare\":8545.86,\"OfferedFare\":8486.86,\"CommissionEarned\":505.24,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-26.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-0676070458_0GOIBOMAI664_18714158992832\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2023.4,\"BaseFareCal\":6987.16,\"BaseFare\":5460,\"CommissionEarned\":505.24,\"TDS\":-26.6,\"MF\":30,\"YQ\":0,\"AGST\":290,\"MFT\":5.4,\"OT\":1358,\"MU\":0,\"YR\":340,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1517.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":[]}},\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":505.24,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":8545.86,\"CostToCustomer\":8545.86,\"BaseFareCal\":8495.86,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":8495.86,\"intOfferedFare\":8486.86,\"intPublishFare\":8992.1,\"TripjackMarkup\":0,\"TripjackCommission\":505.24,\"TripjackTDS\":\"26.6\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"831\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-20T16:35\",\"SegFlightNumber\":\"AI-664\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-07-20T15:15\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c8622-16314-94fb7-65f98\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-20 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":0,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105638235197\",\"FlightNumber\":\"AI-664\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"strTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-07-20T15:15\",\"LocalFromTime\":\"2022-07-20 15:15\",\"FromUTCTime\":\"2022-07-20T15:15\",\"LocalToTime\":\"2022-07-20 16:35\",\"ToUTCTime\":\"2022-07-20T16:35\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 20 Jul\",\"ArrivalDateTxt\":\"Wed, 20 Jul\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":0,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":8992.1,\"ApiResultIndex\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"c8622-16314-94fb7-65f98\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6710,\"Tax\":2282.1,\"YQTax\":0,\"OtherCharges\":1358,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":361,\"CarrierMiscFee\":510,\"MUFee\":0,\"intPublishedFare\":8992.1,\"PublishedFare\":8545.86,\"OfferedFare\":8486.86,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2023.4,\"BaseFareCal\":6987.16,\"BaseFare\":5460,\"CommissionEarned\":505.24,\"TDS\":-26.6,\"MF\":30,\"YQ\":0,\"AGST\":290,\"MFT\":5.4,\"OT\":1358,\"MU\":0,\"YR\":340,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1517.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"MFT\":2.7,\"OT\":0,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}}},\"Segments\":[[{\"segmentid\":\"831\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-20T16:35\",\"SegFlightNumber\":\"AI-664\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-07-20T15:15\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"localFromDateTime\":\"2022-07-20 15:15\",\"localToDateTime\":\"2022-07-20 16:35\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":0,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2001\",\"message\":\"Insufficient Balance\",\"details\":\"Insufficient Balance\"}]}',NULL,1,0,'A02D09DEBB474FB88947F24EEAFC8E56','','0',NULL,NULL,'0','103.78.21.118','2022-07-19 06:44:24','2022-07-19 06:44:24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(51,0,4,12577,0,0,NULL,'2022-08-04',NULL,NULL,'G8-317','Go First','1',1,'6716a-64f1d-d6a1b-27cfd','240','06:45:00','08:20:00',0,'SP',95,'1h 35m',18676,2262,'BOM','BLR','Non-stop',1,1,3687.97,'1-2312665408_0BOMBLRG8317_47301813904163',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',2603,1149.7,0,996,0,15,3687.97,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ109938287811\",\"FlightNumber\":\"G8-317\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:45\",\"ArrivalTime\":\"08:20\",\"TravelDate\":\"2022-08-04T06:45\",\"LocalFromTime\":\"2022-08-04 06:45\",\"FromUTCTime\":\"2022-08-04T06:45\",\"LocalToTime\":\"2022-08-04 08:20\",\"ToUTCTime\":\"2022-08-04T08:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Thu, 04 Aug\",\"ArrivalDateTxt\":\"Thu, 04 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3752.7,\"PublishedFareTxt\":\"3,753\",\"ApiResultIndex\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2603,\"Tax\":1149.7,\"YQTax\":0,\"OtherCharges\":996,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":136,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3752.7,\"PublishedFare\":3687.97,\"OfferedFare\":3569.97,\"CommissionEarned\":182.73,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2312665408_0BOMBLRG8317_227319773328113\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1149.7,\"BaseFareCal\":3587.97,\"BaseFare\":2603,\"CommissionEarned\":182.73,\"TDS\":-9.62,\"MF\":15,\"YQ\":0,\"AGST\":136,\"MFT\":2.7,\"OT\":996,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":182.73,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3687.97,\"CostToCustomer\":3687.97,\"BaseFareCal\":3587.97,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3587.97,\"intOfferedFare\":3569.97,\"intPublishFare\":3752.7,\"TripjackMarkup\":0,\"TripjackCommission\":182.73,\"TripjackTDS\":\"9.62\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"461\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-04T08:20\",\"SegFlightNumber\":\"G8-317\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-04T06:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6716a-64f1d-d6a1b-27cfd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109938287811\",\"FlightNumber\":\"G8-317\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"strTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:45\",\"ArrivalTime\":\"08:20\",\"TravelDate\":\"2022-08-04T06:45\",\"LocalFromTime\":\"2022-08-04 06:45\",\"FromUTCTime\":\"2022-08-04T06:45\",\"LocalToTime\":\"2022-08-04 08:20\",\"ToUTCTime\":\"2022-08-04T08:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Thu, 04 Aug\",\"ArrivalDateTxt\":\"Thu, 04 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3752.7,\"ApiResultIndex\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"6716a-64f1d-d6a1b-27cfd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2603,\"Tax\":1149.7,\"YQTax\":0,\"OtherCharges\":996,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":136,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3752.7,\"PublishedFare\":3687.97,\"OfferedFare\":3569.97,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1149.7,\"BaseFareCal\":3587.97,\"BaseFare\":2603,\"CommissionEarned\":182.73,\"TDS\":-9.62,\"MF\":15,\"YQ\":0,\"AGST\":136,\"MFT\":2.7,\"OT\":996,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"461\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-04T08:20\",\"SegFlightNumber\":\"G8-317\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-04T06:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"localFromDateTime\":\"2022-08-04 06:45\",\"localToDateTime\":\"2022-08-04 08:20\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','183.87.82.70','2022-07-19 17:08:54','2022-07-19 17:08:54',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(52,0,24,12577,0,0,NULL,'2022-08-10',NULL,NULL,'G8-395','Go First','1',1,'5e392-46cec-16db0-d700b','240','08:55:00','10:35:00',0,'BC',100,'1h 40m',2262,18676,'BLR','BOM','Non-stop',3,1,13946.51,'1-2869890705_0BLRBOMG8395_17433504907638',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',8190,7043.1,0,6990,0,45,13946.51,0,0,0,9,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ105938318294\",\"FlightNumber\":\"G8-395\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:55\",\"ArrivalTime\":\"10:35\",\"TravelDate\":\"2022-08-10T08:55\",\"LocalFromTime\":\"2022-08-10 08:55\",\"FromUTCTime\":\"2022-08-10T08:55\",\"LocalToTime\":\"2022-08-10 10:35\",\"ToUTCTime\":\"2022-08-10T10:35\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":15233.099999999999,\"PublishedFareTxt\":\"15,233\",\"ApiResultIndex\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8190,\"Tax\":7043.099999999999,\"YQTax\":0,\"OtherCharges\":6990,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":15233.099999999999,\"PublishedFare\":13946.51,\"OfferedFare\":13887.51,\"CommissionEarned\":1345.59,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-70.83,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2869890705_0BLRBOMG8395_2937901299441\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":13736.1,\"oldFare\":10070.1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":7043.099999999999,\"BaseFareCal\":13896.51,\"BaseFare\":8190,\"CommissionEarned\":1345.59,\"TDS\":-70.83,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":6990,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1345.59,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":13946.51,\"CostToCustomer\":13946.51,\"BaseFareCal\":13896.51,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":13896.51,\"intOfferedFare\":13887.51,\"intPublishFare\":15233.099999999999,\"TripjackMarkup\":0,\"TripjackCommission\":1345.59,\"TripjackTDS\":\"70.83\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"342\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-10T10:35\",\"SegFlightNumber\":\"G8-395\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-08-10T08:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:55\",\"strArrivalDtTime\":\"10:35\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"342\",\"Code\":\"CRPX\",\"Price\":0,\"Description\":\"Free Corporate Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5e392-46cec-16db0-d700b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-10 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":2262,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105938318294\",\"FlightNumber\":\"G8-395\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"strTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:55\",\"ArrivalTime\":\"10:35\",\"TravelDate\":\"2022-08-10T08:55\",\"LocalFromTime\":\"2022-08-10 08:55\",\"FromUTCTime\":\"2022-08-10T08:55\",\"LocalToTime\":\"2022-08-10 10:35\",\"ToUTCTime\":\"2022-08-10T10:35\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":15233.099999999999,\"ApiResultIndex\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"5e392-46cec-16db0-d700b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8190,\"Tax\":7043.099999999999,\"YQTax\":0,\"OtherCharges\":6990,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":15233.099999999999,\"PublishedFare\":13946.51,\"OfferedFare\":13887.51,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":7043.099999999999,\"BaseFareCal\":13896.51,\"BaseFare\":8190,\"CommissionEarned\":1345.59,\"TDS\":-70.83,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":6990,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"342\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-10T10:35\",\"SegFlightNumber\":\"G8-395\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-08-10T08:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:55\",\"strArrivalDtTime\":\"10:35\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"localFromDateTime\":\"2022-08-10 08:55\",\"localToDateTime\":\"2022-08-10 10:35\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":2262,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','49.33.202.84','2022-07-20 07:34:04','2022-07-20 07:34:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(53,0,25,12577,0,0,NULL,'2022-07-23',NULL,NULL,'G8-306','Go First','1',1,'25ca0-44bad-fc267-ff71d','240','10:40:00','13:05:00',0,'SP',145,'2h 25m',18676,16028,'BOM','LKO','Non-stop',1,1,5211.04,'1-5189263874_0BOMLKOG8306_21605172032692',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',4031,1487.7,0,1262,0,15,5211.04,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ105538321186\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5518.7,\"PublishedFareTxt\":\"5,519\",\"ApiResultIndex\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARFT\":150,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4031,\"Tax\":1487.7,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":208,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5518.7,\"PublishedFare\":5211.04,\"OfferedFare\":5093.04,\"CommissionEarned\":425.66,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-22.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-5189263874_0BOMLKOG8306_106214019671093\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1487.7,\"BaseFareCal\":5111.04,\"BaseFare\":4031,\"CommissionEarned\":425.66,\"TDS\":-22.4,\"MF\":15,\"YQ\":0,\"AGST\":208,\"MFT\":2.7,\"OT\":1262,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":425.66,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5211.04,\"CostToCustomer\":5211.04,\"BaseFareCal\":5111.04,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5111.04,\"intOfferedFare\":5093.04,\"intPublishFare\":5518.7,\"TripjackMarkup\":0,\"TripjackCommission\":425.66,\"TripjackTDS\":\"22.4\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"243\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"25ca0-44bad-fc267-ff71d\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105538321186\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"strTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5518.7,\"ApiResultIndex\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"25ca0-44bad-fc267-ff71d\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4031,\"Tax\":1487.7,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":208,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5518.7,\"PublishedFare\":5211.04,\"OfferedFare\":5093.04,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1487.7,\"BaseFareCal\":5111.04,\"BaseFare\":4031,\"CommissionEarned\":425.66,\"TDS\":-22.4,\"MF\":15,\"YQ\":0,\"AGST\":208,\"MFT\":2.7,\"OT\":1262,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"243\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"localFromDateTime\":\"2022-07-23 10:40\",\"localToDateTime\":\"2022-07-23 13:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','49.33.202.84','2022-07-20 08:00:47','2022-07-20 08:00:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'108628',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(54,0,26,12577,0,0,NULL,'2022-07-23',NULL,NULL,'G8-306','Go First','1',0,'38063-a3741-a653e-e5a4f','240','10:40:00','13:05:00',0,'G',145,'2h 25m',18676,16028,'BOM','LKO','Non-stop',1,1,5407.7,'11-9697146831_1BOMLKOG8306_22751265712406',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',4500,317.7,0,300,0,15,5407.7,0,0,0,90,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ102938323541\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4817.7,\"PublishedFareTxt\":\"4,818\",\"ApiResultIndex\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"No Refund| Seats are Subject to availability | In case of non availability of the seats, we will refund the amount | \\\"Sunday is Non Working day for Special Fare Team\\\"| Booking done after 18:00 Hrs or 6 PM, PNR will be updated next working day after 11:00 Hrs or 11 AM\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Changes are not permitted | Booking confirmation will take minimum 60 Minutes\",\"fcs\":{\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Cancellation is not permitted | For more details contact us\",\"fcs\":{\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Note : Now you can do the web checkin directly on the airline website by yourself.  Enter PNR and LAST NAME. Select your passengers and process the web checkin( 1 Day before departure after 6PM ). Seats are chargeable as per airline |Name Change is not permitted |\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4500,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4817.7,\"PublishedFare\":5407.7,\"OfferedFare\":4817.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9697146831_0BOMLKOG8306_102711090551092\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITHOUT PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":4907.7,\"BaseFare\":4500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":5407.7,\"CostToCustomer\":5407.7,\"BaseFareCal\":4907.7,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":4907.7,\"intOfferedFare\":4817.7,\"intPublishFare\":4817.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500}},\"Segments\":[{\"segmentid\":\"662\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38063-a3741-a653e-e5a4f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102938323541\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"strTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4817.7,\"ApiResultIndex\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"38063-a3741-a653e-e5a4f\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4500,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4817.7,\"PublishedFare\":5407.7,\"OfferedFare\":4817.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":500,\"AddiTaxOnMarkup\":90,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":4907.7,\"BaseFare\":4500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"662\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"localFromDateTime\":\"2022-07-23 10:40\",\"localToDateTime\":\"2022-07-23 13:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'7934A0F9E5124CE6985CA899FBABD20E','','0',NULL,NULL,'0','49.33.202.84','2022-07-20 08:26:17','2022-07-20 08:26:17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(55,0,39,12577,0,412632,'O3N12Y','2022-07-23','TJ109638329632',NULL,'G8-306','Go First','1',1,'f0372-a1b0e-2a7df-12fb0','240','10:40:00','13:05:00',0,'SP',145,'2h 25m',18676,16028,'BOM','LKO','Non-stop',1,1,4816.77,'1-2645047823_0BOMLKOG8306_26812715921459',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',4031,736.7,0,511,0,15,4816.77,0,0,0,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ109638329632\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4767.7,\"PublishedFareTxt\":\"4,768\",\"ApiResultIndex\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCFT\":9,\"ACFT\":175,\"CCF\":50,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4031,\"Tax\":736.7,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":208,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4767.7,\"PublishedFare\":4816.77,\"OfferedFare\":4698.77,\"CommissionEarned\":68.93,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.63,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2645047823_0BOMLKOG8306_111783222777219\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":736.7,\"BaseFareCal\":4716.77,\"BaseFare\":4031,\"CommissionEarned\":68.93,\"TDS\":-3.63,\"MF\":15,\"YQ\":0,\"AGST\":208,\"MFT\":2.7,\"OT\":511,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":68.93,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4816.77,\"CostToCustomer\":4816.77,\"BaseFareCal\":4716.77,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4716.77,\"intOfferedFare\":4698.77,\"intPublishFare\":4767.7,\"TripjackMarkup\":0,\"TripjackCommission\":68.93,\"TripjackTDS\":\"3.63\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"908\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f0372-a1b0e-2a7df-12fb0\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109638329632\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"strTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4767.7,\"ApiResultIndex\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"f0372-a1b0e-2a7df-12fb0\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4031,\"Tax\":736.7,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":208,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4767.7,\"PublishedFare\":4816.77,\"OfferedFare\":4698.77,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":736.7,\"BaseFareCal\":4716.77,\"BaseFare\":4031,\"CommissionEarned\":68.93,\"TDS\":-3.63,\"MF\":15,\"YQ\":0,\"AGST\":208,\"MFT\":2.7,\"OT\":511,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"908\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"localFromDateTime\":\"2022-07-23 10:40\",\"localToDateTime\":\"2022-07-23 13:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ109638329632\",\"amount\":4767.7,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"bharat@svezz.com\"],\"contacts\":[\"+919930301095\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-20T15:10:16.699\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10118630\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"306\",\"eT\":\"32A\"},\"stops\":0,\"duration\":145,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"LKO\",\"name\":\"Amausi Arpt\",\"cityCode\":\"LKO\",\"city\":\"Lucknow\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-07-23T10:40\",\"at\":\"2022-07-23T13:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-LKO\":\"O3N12Y\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"RAJKUMAR\",\"lN\":\"VARMA\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"CGST\":1.35,\"SGST\":1.35,\"TAF\":736.7,\"TF\":4767.7,\"NCM\":68.93,\"NF\":4698.77,\"BF\":4031},\"afC\":{\"TAF\":{\"OT\":511,\"AGST\":208,\"MFT\":2.7,\"YQ\":0,\"MF\":15},\"NCM\":{\"OT\":72.56,\"TDS\":-3.63}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"412631\",\"TPSysId\":\"412632\",\"VersionId\":[\"84515\"],\"CustomerSysId\":\"217861\",\"TrxId\":\"29807\",\"FareBreakdownid\":[\"356862\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'C3637436BA7548B7B5044A2CDD086C3F','','0',NULL,NULL,'0','49.33.202.84','2022-07-20 09:33:47','2022-07-20 09:33:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-07-000005',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(56,0,13,12577,0,0,NULL,'2022-08-08',NULL,NULL,'G8-334','Go First','1',1,'39440-70ac5-1a0a3-97625','240','08:00:00','10:10:00',0,'SP',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,4128.21,'1-5236216186_0DELBOMG8334_24122305667030',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',3362,705.7,0,514,0,15,4128.21,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ106638333070\",\"FlightNumber\":\"G8-334\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2022-08-08T08:00\",\"LocalFromTime\":\"2022-08-08 08:00\",\"FromUTCTime\":\"2022-08-08T08:00\",\"LocalToTime\":\"2022-08-08 10:10\",\"ToUTCTime\":\"2022-08-08T10:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4067.7,\"PublishedFareTxt\":\"4,068\",\"ApiResultIndex\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3362,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4067.7,\"PublishedFare\":4128.21,\"OfferedFare\":4010.21,\"CommissionEarned\":57.49,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.03,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-5236216186_0DELBOMG8334_27426468367249\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"BaseFareCal\":4028.21,\"BaseFare\":3362,\"CommissionEarned\":57.49,\"TDS\":-3.03,\"MF\":15,\"YQ\":0,\"AGST\":174,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":57.49,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4128.21,\"CostToCustomer\":4128.21,\"BaseFareCal\":4028.21,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4028.21,\"intOfferedFare\":4010.21,\"intPublishFare\":4067.7,\"TripjackMarkup\":0,\"TripjackCommission\":57.49,\"TripjackTDS\":\"3.03\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"398\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T10:10\",\"SegFlightNumber\":\"G8-334\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"39440-70ac5-1a0a3-97625\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106638333070\",\"FlightNumber\":\"G8-334\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"strTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2022-08-08T08:00\",\"LocalFromTime\":\"2022-08-08 08:00\",\"FromUTCTime\":\"2022-08-08T08:00\",\"LocalToTime\":\"2022-08-08 10:10\",\"ToUTCTime\":\"2022-08-08T10:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4067.7,\"ApiResultIndex\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"39440-70ac5-1a0a3-97625\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3362,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4067.7,\"PublishedFare\":4128.21,\"OfferedFare\":4010.21,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"BaseFareCal\":4028.21,\"BaseFare\":3362,\"CommissionEarned\":57.49,\"TDS\":-3.03,\"MF\":15,\"YQ\":0,\"AGST\":174,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"398\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T10:10\",\"SegFlightNumber\":\"G8-334\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"localFromDateTime\":\"2022-08-08 08:00\",\"localToDateTime\":\"2022-08-08 10:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','180.151.10.154','2022-07-20 10:14:24','2022-07-20 10:14:24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(57,0,27,12577,0,0,NULL,'2022-08-06',NULL,NULL,'6E-2022','IndiGo','1',1,'21347-cf9ba-9b82e-20671','267','06:30:00','08:05:00',0,'T',95,'1h 35m',7701,20918,'DEL','PAT','Non-stop',1,1,3242.84,'5-1382445469_0DELPAT6E2022_29436790715433',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',2506,636.7,0,489,0,15,3242.84,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ103439176273\",\"FlightNumber\":\"6E-2022\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-06T06:30\",\"LocalFromTime\":\"2022-08-06 06:30\",\"FromUTCTime\":\"2022-08-06T06:30\",\"LocalToTime\":\"2022-08-06 08:05\",\"ToUTCTime\":\"2022-08-06T08:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3142.7,\"PublishedFareTxt\":\"3,143\",\"ApiResultIndex\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-PAT\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3250,\"ARFT\":162.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"ACF\":3500,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2506,\"Tax\":636.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3142.7,\"PublishedFare\":3242.84,\"OfferedFare\":3124.84,\"CommissionEarned\":17.86,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.94,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1382445469_0DELPAT6E2022_30886217562702\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":636.7,\"BaseFareCal\":3142.84,\"BaseFare\":2506,\"CommissionEarned\":17.86,\"TDS\":-0.94,\"MF\":15,\"YQ\":0,\"AGST\":130,\"MFT\":2.7,\"OT\":489,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":17.86,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3242.84,\"CostToCustomer\":3242.84,\"BaseFareCal\":3142.84,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3142.84,\"intOfferedFare\":3124.84,\"intPublishFare\":3142.7,\"TripjackMarkup\":0,\"TripjackCommission\":17.86,\"TripjackTDS\":\"0.94\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"771\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-08-06T08:05\",\"SegFlightNumber\":\"6E-2022\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-06T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHBR\",\"Price\":400,\"Description\":\"Chicken Biryani\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"21347-cf9ba-9b82e-20671\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103439176273\",\"FlightNumber\":\"6E-2022\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"strTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-06T06:30\",\"LocalFromTime\":\"2022-08-06 06:30\",\"FromUTCTime\":\"2022-08-06T06:30\",\"LocalToTime\":\"2022-08-06 08:05\",\"ToUTCTime\":\"2022-08-06T08:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3142.7,\"ApiResultIndex\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"21347-cf9ba-9b82e-20671\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2506,\"Tax\":636.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3142.7,\"PublishedFare\":3242.84,\"OfferedFare\":3124.84,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":636.7,\"BaseFareCal\":3142.84,\"BaseFare\":2506,\"CommissionEarned\":17.86,\"TDS\":-0.94,\"MF\":15,\"YQ\":0,\"AGST\":130,\"MFT\":2.7,\"OT\":489,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"771\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-08-06T08:05\",\"SegFlightNumber\":\"6E-2022\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-06T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"localFromDateTime\":\"2022-08-06 06:30\",\"localToDateTime\":\"2022-08-06 08:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','122.161.73.211','2022-08-01 10:22:50','2022-08-01 10:22:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(58,0,28,12577,0,0,NULL,'2022-08-09',NULL,NULL,'UK-910','Vistara','',1,'f9920-03ab5-b23c8-b2e02','539','17:35:00','19:40:00',0,'Q',125,'2h 5m',18676,7701,'BOM','DEL','Non-stop',1,1,5160.72,'21-10-15-2-1099354911_13BOMDELUK910_41162136598526',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',4601,762.7,0,378,0,15,5160.72,0,0,0,9,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ109039264707\",\"FlightNumber\":\"UK-910\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2022-08-09T17:35\",\"LocalFromTime\":\"2022-08-09 17:35\",\"FromUTCTime\":\"2022-08-09T17:35\",\"LocalToTime\":\"2022-08-09 19:40\",\"ToUTCTime\":\"2022-08-09T19:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5363.7,\"PublishedFareTxt\":\"5,364\",\"ApiResultIndex\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":null,\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5160.72,\"OfferedFare\":5101.72,\"CommissionEarned\":261.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.79,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-1099354911_0BOMDELUK910_26822299478735\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":261.98,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5160.72,\"CostToCustomer\":5160.72,\"BaseFareCal\":5110.72,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5110.72,\"intOfferedFare\":5101.72,\"intPublishFare\":5363.7,\"TripjackMarkup\":0,\"TripjackCommission\":261.98,\"TripjackTDS\":\"13.79\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"615\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T19:40\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f9920-03ab5-b23c8-b2e02\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109039264707\",\"FlightNumber\":\"UK-910\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"strTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2022-08-09T17:35\",\"LocalFromTime\":\"2022-08-09 17:35\",\"FromUTCTime\":\"2022-08-09T17:35\",\"LocalToTime\":\"2022-08-09 19:40\",\"ToUTCTime\":\"2022-08-09T19:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5363.7,\"ApiResultIndex\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"f9920-03ab5-b23c8-b2e02\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5160.72,\"OfferedFare\":5101.72,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"615\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T19:40\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"localFromDateTime\":\"2022-08-09 17:35\",\"localToDateTime\":\"2022-08-09 19:40\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'D013C831DB754AE8BF27337FDC31EC91','','0',NULL,NULL,'0','47.31.97.105','2022-08-02 13:11:10','2022-08-02 13:11:10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(59,0,29,12577,0,421016,'6OHPRJ','2022-08-09','TJ100739265875',NULL,'UK-902','Vistara','',1,'f2ecf-89979-9b737-31e50','539','15:45:00','18:05:00',0,'Q',140,'2h 20m',18676,7701,'BOM','DEL','Non-stop',1,1,5160.72,'21-10-15-2-9203315280_13BOMDELUK902_30940101882449',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',4601,762.7,0,378,0,15,5160.72,0,0,0,9,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ100739265875\",\"FlightNumber\":\"UK-902\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2022-08-09T15:45\",\"LocalFromTime\":\"2022-08-09 15:45\",\"FromUTCTime\":\"2022-08-09T15:45\",\"LocalToTime\":\"2022-08-09 18:05\",\"ToUTCTime\":\"2022-08-09T18:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5363.7,\"PublishedFareTxt\":\"5,364\",\"ApiResultIndex\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":157.5,\"ARF\":3150,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACF\":3675,\"CCF\":50,\"ACFT\":183.75,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5160.72,\"OfferedFare\":5101.72,\"CommissionEarned\":261.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.79,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-9203315280_0BOMDELUK902_38554386574057\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":261.98,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5160.72,\"CostToCustomer\":5160.72,\"BaseFareCal\":5110.72,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5110.72,\"intOfferedFare\":5101.72,\"intPublishFare\":5363.7,\"TripjackMarkup\":0,\"TripjackCommission\":261.98,\"TripjackTDS\":\"13.79\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"191\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T18:05\",\"SegFlightNumber\":\"UK-902\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f2ecf-89979-9b737-31e50\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ100739265875\",\"FlightNumber\":\"UK-902\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"strTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2022-08-09T15:45\",\"LocalFromTime\":\"2022-08-09 15:45\",\"FromUTCTime\":\"2022-08-09T15:45\",\"LocalToTime\":\"2022-08-09 18:05\",\"ToUTCTime\":\"2022-08-09T18:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5363.7,\"ApiResultIndex\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"f2ecf-89979-9b737-31e50\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5160.72,\"OfferedFare\":5101.72,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"191\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T18:05\",\"SegFlightNumber\":\"UK-902\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"localFromDateTime\":\"2022-08-09 15:45\",\"localToDateTime\":\"2022-08-09 18:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ100739265875\",\"amount\":5363.7,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"samaniamohit@gmail.com\"],\"contacts\":[\"+917011644515\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-02T19:03:27.370\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10379315\",\"fD\":{\"aI\":{\"code\":\"UK\",\"name\":\"Vistara\",\"isLcc\":false},\"fN\":\"902\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2022-08-09T15:45\",\"at\":\"2022-08-09T18:05\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-DEL\":\"6OHPRJ\"},\"ticketNumberDetails\":{\"BOM-DEL\":\"2283908709231\"},\"gdsPnrs\":{\"BOM-DEL\":\"269XBT\"},\"ti\":\"Mrs\",\"pt\":\"ADULT\",\"fN\":\"Megha\",\"lN\":\"Mandar pagade\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":261.98,\"TF\":5363.7,\"NF\":5101.72,\"SGST\":1.35,\"BF\":4601,\"TAF\":762.7,\"CGST\":1.35},\"afC\":{\"NCM\":{\"OT\":275.77,\"TDS\":-13.79},\"TAF\":{\"AGST\":237,\"MF\":15,\"OT\":378,\"MFT\":2.7,\"YR\":130}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"421015\",\"TPSysId\":\"421016\",\"VersionId\":[\"88836\"],\"CustomerSysId\":\"221337\",\"TrxId\":\"30731\",\"FareBreakdownid\":[\"357645\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'9671E2560E2F472F989D5D71C696B16E','','0',NULL,NULL,'0','122.161.48.7','2022-08-02 13:25:06','2022-08-02 13:25:06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000019',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(60,0,40,12577,0,0,NULL,'2022-08-08',NULL,NULL,'I5-678','AirAsia India','1',1,'30541-221d9-5639f-e75bb','75','15:25:00','17:25:00',0,'SM',120,'2h 0m',18676,12995,'BOM','JAI','Non-stop',1,1,6836.06,'22-16-8857762293_0BOMJAII5678_104769324996625',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',6009,774.7,0,453,0,15,6836.06,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ101539587120\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2022-08-08T15:25\",\"LocalFromTime\":\"2022-08-08 15:25\",\"FromUTCTime\":\"2022-08-08T15:25\",\"LocalToTime\":\"2022-08-08 17:25\",\"ToUTCTime\":\"2022-08-08T17:25\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6783.7,\"PublishedFareTxt\":\"6,784\",\"ApiResultIndex\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":249,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference__nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARFT\":12.45,\"ARF\":249,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":499,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACF\":499,\"ACFT\":24.95,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Standard Seats-FOC\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6009,\"Tax\":774.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":304,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6783.7,\"PublishedFare\":6836.06,\"OfferedFare\":6718.06,\"CommissionEarned\":65.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.46,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-8857762293_0BOMJAII5678_13808478888547\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":774.7,\"BaseFareCal\":6736.06,\"BaseFare\":6009,\"CommissionEarned\":65.64,\"TDS\":-3.46,\"MF\":15,\"YQ\":0,\"AGST\":304,\"MFT\":2.7,\"OT\":453,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":65.64,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6836.06,\"CostToCustomer\":6836.06,\"BaseFareCal\":6736.06,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6736.06,\"intOfferedFare\":6718.06,\"intPublishFare\":6783.7,\"TripjackMarkup\":0,\"TripjackCommission\":65.64,\"TripjackTDS\":\"3.46\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"892\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-08T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-08T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBLD\",\"Price\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"SDAI\",\"Price\":200,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"JMCB\",\"Price\":300,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"KACB\",\"Price\":400,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"GACB\",\"Price\":400,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"30541-221d9-5639f-e75bb\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101539587120\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"strTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2022-08-08T15:25\",\"LocalFromTime\":\"2022-08-08 15:25\",\"FromUTCTime\":\"2022-08-08T15:25\",\"LocalToTime\":\"2022-08-08 17:25\",\"ToUTCTime\":\"2022-08-08T17:25\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6783.7,\"ApiResultIndex\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"30541-221d9-5639f-e75bb\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6009,\"Tax\":774.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":304,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6783.7,\"PublishedFare\":6836.06,\"OfferedFare\":6718.06,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":774.7,\"BaseFareCal\":6736.06,\"BaseFare\":6009,\"CommissionEarned\":65.64,\"TDS\":-3.46,\"MF\":15,\"YQ\":0,\"AGST\":304,\"MFT\":2.7,\"OT\":453,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"892\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-08T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-08T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"localFromDateTime\":\"2022-08-08 15:25\",\"localToDateTime\":\"2022-08-08 17:25\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'9259EB3089A94EB3AEF9B228CB51CECB','','0',NULL,NULL,'0','182.69.55.68','2022-08-06 11:08:15','2022-08-06 11:08:15',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(61,0,30,12577,0,0,NULL,'2022-08-27',NULL,NULL,'6E-2019','IndiGo','1',1,'06634-e300f-1e490-9a566','267','10:10:00','12:10:00',0,'T',120,'2h 0m',2012,7701,'IXB','DEL','Non-stop',1,1,3817.6,'5-9989068070_0IXBDEL6E2019_199085307537772',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3242,480.7,0,463,0,15,3817.6,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ109839595532\",\"FlightNumber\":\"6E-2019\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:10\",\"ArrivalTime\":\"12:10\",\"TravelDate\":\"2022-08-27T10:10\",\"LocalFromTime\":\"2022-08-27 10:10\",\"FromUTCTime\":\"2022-08-27T10:10\",\"LocalToTime\":\"2022-08-27 12:10\",\"ToUTCTime\":\"2022-08-27T12:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Sat, 27 Aug\",\"ArrivalDateTxt\":\"Sat, 27 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3722.7,\"PublishedFareTxt\":\"3,723\",\"ApiResultIndex\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXB-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"ARF\":3250,\"ARFT\":162.5,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACFT\":175,\"CCF\":50,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3242,\"Tax\":480.7,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3722.7,\"PublishedFare\":3817.6,\"OfferedFare\":3699.6,\"CommissionEarned\":23.1,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.22,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9989068070_0IXBDEL6E2019_110911946906345\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":480.7,\"BaseFareCal\":3717.6,\"BaseFare\":3242,\"CommissionEarned\":23.1,\"TDS\":-1.22,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":463,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":23.1,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3817.6,\"CostToCustomer\":3817.6,\"BaseFareCal\":3717.6,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3717.6,\"intOfferedFare\":3699.6,\"intPublishFare\":3722.7,\"TripjackMarkup\":0,\"TripjackCommission\":23.1,\"TripjackTDS\":\"1.22\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"167\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-27T12:10\",\"SegFlightNumber\":\"6E-2019\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-27T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"06634-e300f-1e490-9a566\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109839595532\",\"FlightNumber\":\"6E-2019\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"strTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:10\",\"ArrivalTime\":\"12:10\",\"TravelDate\":\"2022-08-27T10:10\",\"LocalFromTime\":\"2022-08-27 10:10\",\"FromUTCTime\":\"2022-08-27T10:10\",\"LocalToTime\":\"2022-08-27 12:10\",\"ToUTCTime\":\"2022-08-27T12:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Sat, 27 Aug\",\"ArrivalDateTxt\":\"Sat, 27 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3722.7,\"ApiResultIndex\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"06634-e300f-1e490-9a566\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3242,\"Tax\":480.7,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3722.7,\"PublishedFare\":3817.6,\"OfferedFare\":3699.6,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":480.7,\"BaseFareCal\":3717.6,\"BaseFare\":3242,\"CommissionEarned\":23.1,\"TDS\":-1.22,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":463,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"167\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-27T12:10\",\"SegFlightNumber\":\"6E-2019\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-27T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"localFromDateTime\":\"2022-08-27 10:10\",\"localToDateTime\":\"2022-08-27 12:10\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','223.187.252.79','2022-08-06 13:00:30','2022-08-06 13:00:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(63,0,35,12577,0,0,NULL,'2022-08-12',NULL,NULL,'G8-719','Go First','1',1,'41a3a-36d88-d14b6-2f14b','240','06:00:00','07:35:00',0,'SP',95,'1h 35m',7701,296,'DEL','AMD','Non-stop',1,1,3133.68,'1-3447008646_0DELAMDG8719_74823579248441',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',2399,657.7,0,514,0,15,3133.68,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ106339927792\",\"FlightNumber\":\"G8-719\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"07:35\",\"TravelDate\":\"2022-08-12T06:00\",\"LocalFromTime\":\"2022-08-12 06:00\",\"FromUTCTime\":\"2022-08-12T06:00\",\"LocalToTime\":\"2022-08-12 07:35\",\"ToUTCTime\":\"2022-08-12T07:35\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Fri, 12 Aug\",\"ArrivalDateTxt\":\"Fri, 12 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3056.7,\"PublishedFareTxt\":\"3,057\",\"ApiResultIndex\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-AMD\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARFT\":150,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2399,\"Tax\":657.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3056.7,\"PublishedFare\":3133.68,\"OfferedFare\":3015.68,\"CommissionEarned\":41.02,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.16,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3447008646_0DELAMDG8719_2266089012757\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":657.7,\"BaseFareCal\":3033.68,\"BaseFare\":2399,\"CommissionEarned\":41.02,\"TDS\":-2.16,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.02,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3133.68,\"CostToCustomer\":3133.68,\"BaseFareCal\":3033.68,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3033.68,\"intOfferedFare\":3015.68,\"intPublishFare\":3056.7,\"TripjackMarkup\":0,\"TripjackCommission\":41.02,\"TripjackTDS\":\"2.16\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"573\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-08-12T07:35\",\"SegFlightNumber\":\"G8-719\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-12T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"41a3a-36d88-d14b6-2f14b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106339927792\",\"FlightNumber\":\"G8-719\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"strTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"07:35\",\"TravelDate\":\"2022-08-12T06:00\",\"LocalFromTime\":\"2022-08-12 06:00\",\"FromUTCTime\":\"2022-08-12T06:00\",\"LocalToTime\":\"2022-08-12 07:35\",\"ToUTCTime\":\"2022-08-12T07:35\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Fri, 12 Aug\",\"ArrivalDateTxt\":\"Fri, 12 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3056.7,\"ApiResultIndex\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"41a3a-36d88-d14b6-2f14b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2399,\"Tax\":657.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3056.7,\"PublishedFare\":3133.68,\"OfferedFare\":3015.68,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":657.7,\"BaseFareCal\":3033.68,\"BaseFare\":2399,\"CommissionEarned\":41.02,\"TDS\":-2.16,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"573\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-08-12T07:35\",\"SegFlightNumber\":\"G8-719\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-12T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"localFromDateTime\":\"2022-08-12 06:00\",\"localToDateTime\":\"2022-08-12 07:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','223.226.219.57','2022-08-11 05:02:24','2022-08-11 05:02:24',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'882086',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(64,0,36,12577,0,0,NULL,'2022-09-24',NULL,NULL,'I5-554','AirAsia India','1',1,'ecfdb-01a14-737d7-a7662','75','21:40:00','00:05:00',0,'EP',145,'2h 25m',14323,22238,'CCU','PNQ','Non-stop',1,1,5100.9,'22-16-5783709117_0CCUPNQI5554_39045646072797',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',3826,1198.7,0,987,0,15,5100.9,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ107139928839\",\"FlightNumber\":\"I5-554\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"21:40\",\"ArrivalTime\":\"00:05\",\"TravelDate\":\"2022-09-24T21:40\",\"LocalFromTime\":\"2022-09-24 21:40\",\"FromUTCTime\":\"2022-09-24T21:40\",\"LocalToTime\":\"2022-09-25 00:05\",\"ToUTCTime\":\"2022-09-25T00:05\",\"IsDirect\":0,\"FareClass\":\"EP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 24 Sep\",\"ArrivalDateTxt\":\"Sun, 25 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":22238,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"PNQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5024.7,\"PublishedFareTxt\":\"5,025\",\"ApiResultIndex\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"CCU-PNQ\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-72 hrs Rs 3,250 + Fare Difference __nls__ Before 72 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3826,\"Tax\":1198.7,\"YQTax\":0,\"OtherCharges\":987,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":194,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5024.7,\"PublishedFare\":5100.9,\"OfferedFare\":4982.9,\"CommissionEarned\":41.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-5783709117_0CCUPNQI5554_7764604024793\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1198.7,\"BaseFareCal\":5000.9,\"BaseFare\":3826,\"CommissionEarned\":41.8,\"TDS\":-2.2,\"MF\":15,\"YQ\":0,\"AGST\":194,\"MFT\":2.7,\"OT\":987,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.8,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5100.9,\"CostToCustomer\":5100.9,\"BaseFareCal\":5000.9,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5000.9,\"intOfferedFare\":4982.9,\"intPublishFare\":5024.7,\"TripjackMarkup\":0,\"TripjackCommission\":41.8,\"TripjackTDS\":\"2.2\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"43\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lohegaon Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Pune\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PNQ\",\"destinationArrTime\":\"2022-09-25T00:05\",\"SegFlightNumber\":\"I5-554\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-24T21:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:40\",\"strArrivalDtTime\":\"00:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"SDAI\",\"Price\":200,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"RPCB\",\"Price\":300,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"JMCB\",\"Price\":300,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"KACB\",\"Price\":400,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"GACB\",\"Price\":400,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ecfdb-01a14-737d7-a7662\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"PNQ\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":22238,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107139928839\",\"FlightNumber\":\"I5-554\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"strTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"21:40\",\"ArrivalTime\":\"00:05\",\"TravelDate\":\"2022-09-24T21:40\",\"LocalFromTime\":\"2022-09-24 21:40\",\"FromUTCTime\":\"2022-09-24T21:40\",\"LocalToTime\":\"2022-09-25 00:05\",\"ToUTCTime\":\"2022-09-25T00:05\",\"IsDirect\":0,\"FareClass\":\"EP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 24 Sep\",\"ArrivalDateTxt\":\"Sun, 25 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":22238,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"PNQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5024.7,\"ApiResultIndex\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"ecfdb-01a14-737d7-a7662\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3826,\"Tax\":1198.7,\"YQTax\":0,\"OtherCharges\":987,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":194,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5024.7,\"PublishedFare\":5100.9,\"OfferedFare\":4982.9,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1198.7,\"BaseFareCal\":5000.9,\"BaseFare\":3826,\"CommissionEarned\":41.8,\"TDS\":-2.2,\"MF\":15,\"YQ\":0,\"AGST\":194,\"MFT\":2.7,\"OT\":987,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"43\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lohegaon Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Pune\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PNQ\",\"destinationArrTime\":\"2022-09-25T00:05\",\"SegFlightNumber\":\"I5-554\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-24T21:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:40\",\"strArrivalDtTime\":\"00:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"localFromDateTime\":\"2022-09-24 21:40\",\"localToDateTime\":\"2022-09-25 00:05\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"PNQ\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":22238,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','14.143.65.250','2022-08-11 05:15:27','2022-08-11 05:15:27',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(66,0,37,12577,0,428528,NULL,'2022-08-15','TJ103540179735',NULL,'I5-941','AirAsia India','1',0,'abca5-ec992-96bf6-934fe','75','07:55:00','09:50:00',0,'G',115,'1h 55m',18676,12995,'BOM','JAI','Non-stop',3,1,14443.1,'11-3140097188_0BOMJAII5941_4828997321946',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',12900,953.1,0,900,0,45,14443.1,0,0,0,90,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ103540179735\",\"FlightNumber\":\"I5-941\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-08-15T07:55\",\"LocalFromTime\":\"2022-08-15 07:55\",\"FromUTCTime\":\"2022-08-15T07:55\",\"LocalToTime\":\"2022-08-15 09:50\",\"ToUTCTime\":\"2022-08-15T09:50\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":13853.099999999999,\"PublishedFareTxt\":\"13,853\",\"ApiResultIndex\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"No Refund| Seats are Subject to availability | In case of non availability of the seats, we will refund the amount | \\\"Sunday is Non Working day for Special Fare Team\\\"| Booking done after 18:00 Hrs or 6 PM, PNR will be updated next working day after 11:00 Hrs or 11 AM\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Changes are not permitted | Booking confirmation will take minimum 60 Minutes\",\"fcs\":{\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Cancellation is not permitted | For more details contact us\",\"fcs\":{\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Note : Now you can do the web checkin directly on the airline website by yourself.  Enter PNR and LAST NAME. Select your passengers and process the web checkin( 1 Day before departure after 6PM ). Seats are chargeable as per airline |Name Change is not permitted |\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12900,\"Tax\":953.0999999999999,\"YQTax\":0,\"OtherCharges\":900,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13853.099999999999,\"PublishedFare\":14443.1,\"OfferedFare\":13853.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-3140097188_0BOMJAII5941_53284800451709\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITHOUT PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":953.0999999999999,\"BaseFareCal\":13943.1,\"BaseFare\":12900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":900,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":14443.1,\"CostToCustomer\":14443.1,\"BaseFareCal\":13943.1,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":13943.1,\"intOfferedFare\":13853.099999999999,\"intPublishFare\":13853.099999999999,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500}},\"Segments\":[{\"segmentid\":\"319\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-15T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-15T07:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"abca5-ec992-96bf6-934fe\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103540179735\",\"FlightNumber\":\"I5-941\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"strTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-08-15T07:55\",\"LocalFromTime\":\"2022-08-15 07:55\",\"FromUTCTime\":\"2022-08-15T07:55\",\"LocalToTime\":\"2022-08-15 09:50\",\"ToUTCTime\":\"2022-08-15T09:50\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":13853.099999999999,\"ApiResultIndex\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"abca5-ec992-96bf6-934fe\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12900,\"Tax\":953.0999999999999,\"YQTax\":0,\"OtherCharges\":900,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13853.099999999999,\"PublishedFare\":14443.1,\"OfferedFare\":13853.099999999999,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":500,\"AddiTaxOnMarkup\":90,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":953.0999999999999,\"BaseFareCal\":13943.1,\"BaseFare\":12900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":900,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"319\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-15T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-15T07:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"localFromDateTime\":\"2022-08-15 07:55\",\"localToDateTime\":\"2022-08-15 09:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ103540179735\",\"amount\":13853.1,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"helppower@gmail.com\"],\"contacts\":[\"+919768860440\"]},\"status\":\"PENDING\",\"createdOn\":\"2022-08-14T11:33:37.214\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10629219\",\"fD\":{\"aI\":{\"code\":\"I5\",\"name\":\"AirAsia India\",\"isLcc\":true},\"fN\":\"941\"},\"stops\":0,\"duration\":115,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2022-08-15T07:55\",\"at\":\"2022-08-15T09:50\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"lokhandwala moiz\",\"lN\":\"shabbir\"},{\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"shabbir maula\",\"lN\":\"shaikh\"},{\"ti\":\"Mrs\",\"pt\":\"ADULT\",\"fN\":\"sabhanaz  mohamad s\",\"lN\":\"shiekh\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":12900,\"SGST\":4.05,\"TAF\":953.1,\"TF\":13853.1,\"CGST\":4.05,\"NF\":13853.1},\"afC\":{\"TAF\":{\"OT\":900,\"MF\":45,\"MFT\":8.1}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"428527\",\"TPSysId\":\"428528\",\"VersionId\":[\"92375\"],\"CustomerSysId\":\"224506\",\"TrxId\":\"31442\",\"FareBreakdownid\":[\"358227\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'22B3D858F532432EA47901095483699D','','0',NULL,NULL,'0','223.189.15.92','2022-08-14 05:59:49','2022-08-14 05:59:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000007',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(67,0,39,12577,0,0,NULL,'2022-09-06',NULL,NULL,'6E-2109','IndiGo','1',1,'eef9e-39902-4d7d4-fb4d8','267','09:45:00','18:35:00',0,'T',530,'8h 50m',22511,974,'RAJ','ATQ','1 Stop(s)',1,1,6440.16,'5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',5549,812.7,0,513,0,15,6440.16,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ103540188154\",\"FlightNumber\":\"6E-2109\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"18:35\",\"TravelDate\":\"2022-09-06T09:45\",\"LocalFromTime\":\"2022-09-06 09:45\",\"FromUTCTime\":\"2022-09-06T09:45\",\"LocalToTime\":\"2022-09-06 18:35\",\"ToUTCTime\":\"2022-09-06T18:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":340,\"LAYOVERDuration\":\"5h 40m\",\"FlyingMinutes\":530,\"DepartureDateTxt\":\"Tue, 06 Sep\",\"ArrivalDateTxt\":\"Tue, 06 Sep\",\"FlightDuration\":\"8h 50m\",\"SourcePlaceSysId\":22511,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"RAJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6361.7,\"PublishedFareTxt\":\"6,362\",\"ApiResultIndex\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"RAJ-ATQ\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3250,\"ARFT\":162.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"ACF\":3500,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5549,\"Tax\":812.7,\"YQTax\":0,\"OtherCharges\":513,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":282,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6361.7,\"PublishedFare\":6440.16,\"OfferedFare\":6322.16,\"CommissionEarned\":39.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.08,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_6992383220722\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":812.7,\"BaseFareCal\":6340.16,\"BaseFare\":5549,\"CommissionEarned\":39.54,\"TDS\":-2.08,\"MF\":15,\"YQ\":0,\"AGST\":282,\"MFT\":2.7,\"OT\":513,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":39.54,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6440.16,\"CostToCustomer\":6440.16,\"BaseFareCal\":6340.16,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6340.16,\"intOfferedFare\":6322.16,\"intPublishFare\":6361.7,\"TripjackMarkup\":0,\"TripjackCommission\":39.54,\"TripjackTDS\":\"2.08\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"674\",\"originAirportName\":\"Rajkot Civil Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Rajkot\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-06T11:40\",\"SegFlightNumber\":\"6E-2109\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"RAJ\",\"originDepTime\":\"2022-09-06T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":340,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"5h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"675\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-06T18:35\",\"SegFlightNumber\":\"6E-5654\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-06T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eef9e-39902-4d7d4-fb4d8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"RAJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":22511,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103540188154\",\"FlightNumber\":\"6E-2109\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"strTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"18:35\",\"TravelDate\":\"2022-09-06T09:45\",\"LocalFromTime\":\"2022-09-06 09:45\",\"FromUTCTime\":\"2022-09-06T09:45\",\"LocalToTime\":\"2022-09-06 18:35\",\"ToUTCTime\":\"2022-09-06T18:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":340,\"LAYOVERDuration\":\"5h 40m\",\"FlyingMinutes\":530,\"DepartureDateTxt\":\"Tue, 06 Sep\",\"ArrivalDateTxt\":\"Tue, 06 Sep\",\"FlightDuration\":\"8h 50m\",\"SourcePlaceSysId\":22511,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"RAJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6361.7,\"ApiResultIndex\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"eef9e-39902-4d7d4-fb4d8\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5549,\"Tax\":812.7,\"YQTax\":0,\"OtherCharges\":513,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":282,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6361.7,\"PublishedFare\":6440.16,\"OfferedFare\":6322.16,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":812.7,\"BaseFareCal\":6340.16,\"BaseFare\":5549,\"CommissionEarned\":39.54,\"TDS\":-2.08,\"MF\":15,\"YQ\":0,\"AGST\":282,\"MFT\":2.7,\"OT\":513,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"674\",\"originAirportName\":\"Rajkot Civil Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Rajkot\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-06T11:40\",\"SegFlightNumber\":\"6E-2109\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"RAJ\",\"originDepTime\":\"2022-09-06T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":340,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"5h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"675\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-06T18:35\",\"SegFlightNumber\":\"6E-5654\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-06T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"localFromDateTime\":\"2022-09-06 09:45\",\"localToDateTime\":\"2022-09-06 18:35\",\"strSourceAirportCode\":\"RAJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":22511,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','1.38.90.121','2022-08-14 07:46:10','2022-08-14 07:46:10',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(68,0,45,12577,0,428798,'599HK8','2022-08-16','TJ108940248079',NULL,'UK-771','Vistara','',1,'644e6-ef528-65f97-09b86','539','07:00:00','09:40:00',0,'Q',160,'2h 40m',18676,14323,'BOM','CCU','Non-stop',1,1,4949.25,'21-10-15-2-2466195810_0BOMCCUUK771_85464842653013',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',4488,756.7,0,378,0,15,4949.25,0,0,0,9,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ108940248079\",\"FlightNumber\":\"UK-771\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2022-08-16T07:00\",\"LocalFromTime\":\"2022-08-16 07:00\",\"FromUTCTime\":\"2022-08-16T07:00\",\"LocalToTime\":\"2022-08-16 09:40\",\"ToUTCTime\":\"2022-08-16T09:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5244.7,\"PublishedFareTxt\":\"5,245\",\"ApiResultIndex\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARFT\":157.5,\"CRFT\":9,\"CRF\":50,\"ARF\":3150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"CCFT\":9,\"CCF\":50,\"ACF\":3675,\"ACFT\":183.75}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4488,\"Tax\":756.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":231,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5244.7,\"PublishedFare\":4949.25,\"OfferedFare\":4890.25,\"CommissionEarned\":354.45,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-18.66,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2466195810_0BOMCCUUK771_10937673749617\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":756.7,\"BaseFareCal\":4899.25,\"BaseFare\":4488,\"CommissionEarned\":354.45,\"TDS\":-18.66,\"MF\":15,\"YQ\":0,\"AGST\":231,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":354.45,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4949.25,\"CostToCustomer\":4949.25,\"BaseFareCal\":4899.25,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4899.25,\"intOfferedFare\":4890.25,\"intPublishFare\":5244.7,\"TripjackMarkup\":0,\"TripjackCommission\":354.45,\"TripjackTDS\":\"18.66\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"873\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-16T09:40\",\"SegFlightNumber\":\"UK-771\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"644e6-ef528-65f97-09b86\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108940248079\",\"FlightNumber\":\"UK-771\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"strTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2022-08-16T07:00\",\"LocalFromTime\":\"2022-08-16 07:00\",\"FromUTCTime\":\"2022-08-16T07:00\",\"LocalToTime\":\"2022-08-16 09:40\",\"ToUTCTime\":\"2022-08-16T09:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5244.7,\"ApiResultIndex\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"644e6-ef528-65f97-09b86\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4488,\"Tax\":756.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":231,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5244.7,\"PublishedFare\":4949.25,\"OfferedFare\":4890.25,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":756.7,\"BaseFareCal\":4899.25,\"BaseFare\":4488,\"CommissionEarned\":354.45,\"TDS\":-18.66,\"MF\":15,\"YQ\":0,\"AGST\":231,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"873\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-16T09:40\",\"SegFlightNumber\":\"UK-771\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"localFromDateTime\":\"2022-08-16 07:00\",\"localToDateTime\":\"2022-08-16 09:40\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ108940248079\",\"amount\":5244.7,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"helppower@gmail.com\"],\"contacts\":[\"+919768860440\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-15T12:07:35.085\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10645119\",\"fD\":{\"aI\":{\"code\":\"UK\",\"name\":\"Vistara\",\"isLcc\":false},\"fN\":\"771\",\"eT\":\"73H\"},\"stops\":0,\"duration\":160,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2022-08-16T07:00\",\"at\":\"2022-08-16T09:40\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-CCU\":\"599HK8\"},\"ticketNumberDetails\":{\"BOM-CCU\":\"2283909324283\"},\"gdsPnrs\":{\"BOM-CCU\":\"28X1C4\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"NADEEM FEROZ\",\"lN\":\"KHAN\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"SGST\":1.35,\"TF\":5244.7,\"NCM\":354.45,\"NF\":4890.25,\"TAF\":756.7,\"BF\":4488,\"CGST\":1.35},\"afC\":{\"NCM\":{\"TDS\":-18.66,\"OT\":373.11},\"TAF\":{\"AGST\":231,\"YR\":130,\"OT\":378,\"MFT\":2.7,\"MF\":15}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"428797\",\"TPSysId\":\"428798\",\"VersionId\":[\"92470\"],\"CustomerSysId\":\"224506\",\"TrxId\":\"31483\",\"FareBreakdownid\":[\"358267\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'38053FDF256847E1BFCEBF2E0C2AF689','','0',NULL,NULL,'0','171.51.200.85','2022-08-15 06:32:58','2022-08-15 06:32:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000008',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(69,0,40,12577,0,0,NULL,'2022-08-19',NULL,NULL,'UK-954','Vistara','',1,'8d65a-23fba-f2ef2-ba890','539','06:00:00','08:05:00',0,'Q',125,'2h 5m',18676,7701,'BOM','DEL','Non-stop',1,1,4418.69,'21-10-15-2-7598176729_0BOMDELUK954_92969157417634',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',4064,735.7,0,378,0,15,4418.69,0,0,0,9,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ102640489775\",\"FlightNumber\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-19T06:00\",\"LocalFromTime\":\"2022-08-19 06:00\",\"FromUTCTime\":\"2022-08-19T06:00\",\"LocalToTime\":\"2022-08-19 08:05\",\"ToUTCTime\":\"2022-08-19T08:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4799.7,\"PublishedFareTxt\":\"4,800\",\"ApiResultIndex\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3150,\"CRFT\":9,\"ARFT\":157.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACFT\":183.75,\"CCFT\":9,\"CCF\":50,\"ACF\":3675}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4064,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4418.69,\"OfferedFare\":4359.69,\"CommissionEarned\":440.01,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.16,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-7598176729_0BOMDELUK954_139851917259118\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4368.69,\"BaseFare\":4064,\"CommissionEarned\":440.01,\"TDS\":-23.16,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":440.01,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4418.69,\"CostToCustomer\":4418.69,\"BaseFareCal\":4368.69,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4368.69,\"intOfferedFare\":4359.69,\"intPublishFare\":4799.7,\"TripjackMarkup\":0,\"TripjackCommission\":440.01,\"TripjackTDS\":\"23.16\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"283\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-19T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"8d65a-23fba-f2ef2-ba890\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102640489775\",\"FlightNumber\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"strTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-19T06:00\",\"LocalFromTime\":\"2022-08-19 06:00\",\"FromUTCTime\":\"2022-08-19T06:00\",\"LocalToTime\":\"2022-08-19 08:05\",\"ToUTCTime\":\"2022-08-19T08:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4799.7,\"ApiResultIndex\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"8d65a-23fba-f2ef2-ba890\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4064,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4418.69,\"OfferedFare\":4359.69,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4368.69,\"BaseFare\":4064,\"CommissionEarned\":440.01,\"TDS\":-23.16,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"283\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-19T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"localFromDateTime\":\"2022-08-19 06:00\",\"localToDateTime\":\"2022-08-19 08:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'B52B8AB6B114409EAAB4B088B0CCBB0F','','0',NULL,NULL,'0','106.193.159.188','2022-08-18 07:56:53','2022-08-18 07:56:53',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(70,0,46,12577,0,430903,NULL,'2022-08-19',NULL,NULL,'UK-954','Vistara','',1,'89d33-0b3e4-09b94-2c6ca','539','06:00:00','08:05:00',0,'Q',125,'2h 5m',18676,7701,'BOM','DEL','Non-stop',1,1,4418.69,'21-10-15-2-5872214121_0BOMDELUK954_7817689905853',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',4064,735.7,0,378,0,15,4418.69,0,0,0,9,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ105040490274\",\"FlightNumber\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-19T06:00\",\"LocalFromTime\":\"2022-08-19 06:00\",\"FromUTCTime\":\"2022-08-19T06:00\",\"LocalToTime\":\"2022-08-19 08:05\",\"ToUTCTime\":\"2022-08-19T08:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4799.7,\"PublishedFareTxt\":\"4,800\",\"ApiResultIndex\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARFT\":157.5,\"ARF\":3150,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACFT\":183.75,\"ACF\":3675,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4064,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4418.69,\"OfferedFare\":4359.69,\"CommissionEarned\":440.01,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.16,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-5872214121_0BOMDELUK954_4587962578377\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4368.69,\"BaseFare\":4064,\"CommissionEarned\":440.01,\"TDS\":-23.16,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":440.01,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4418.69,\"CostToCustomer\":4418.69,\"BaseFareCal\":4368.69,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4368.69,\"intOfferedFare\":4359.69,\"intPublishFare\":4799.7,\"TripjackMarkup\":0,\"TripjackCommission\":440.01,\"TripjackTDS\":\"23.16\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"148\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-19T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"89d33-0b3e4-09b94-2c6ca\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105040490274\",\"FlightNumber\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"strTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-19T06:00\",\"LocalFromTime\":\"2022-08-19 06:00\",\"FromUTCTime\":\"2022-08-19T06:00\",\"LocalToTime\":\"2022-08-19 08:05\",\"ToUTCTime\":\"2022-08-19T08:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4799.7,\"ApiResultIndex\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"89d33-0b3e4-09b94-2c6ca\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4064,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4418.69,\"OfferedFare\":4359.69,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4368.69,\"BaseFare\":4064,\"CommissionEarned\":440.01,\"TDS\":-23.16,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"148\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-19T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"localFromDateTime\":\"2022-08-19 06:00\",\"localToDateTime\":\"2022-08-19 08:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2001\",\"message\":\"Insufficient Balance\",\"details\":\"Insufficient Balance\"}]}',NULL,1,0,'37D6CC89DB90445FADC7BAB00A4585AE','','0',NULL,NULL,'0','106.193.159.188','2022-08-18 08:04:22','2022-08-18 08:04:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(71,0,41,12577,0,0,NULL,'2022-08-19',NULL,NULL,'6E-856','IndiGo','1',1,'d4375-89284-90228-9c8b1','267','18:30:00','20:35:00',0,'T',125,'2h 5m',14323,12995,'CCU','JAI','Non-stop',1,1,7737.85,'5-2710937587_1CCUJAI6E856_66145618443302',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',6300,1379.7,0,1042,0,15,7737.85,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ107240549493\",\"FlightNumber\":\"6E-856\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2710937587_1CCUJAI6E856_66145618443302\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2022-08-19T18:30\",\"LocalFromTime\":\"2022-08-19 18:30\",\"FromUTCTime\":\"2022-08-19T18:30\",\"LocalToTime\":\"2022-08-19 20:35\",\"ToUTCTime\":\"2022-08-19T20:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7679.7,\"PublishedFareTxt\":\"7,680\",\"ApiResultIndex\":\"5-2710937587_1CCUJAI6E856_66145618443302\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"CCU-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARF\":3250,\"ARFT\":162.5,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6300,\"Tax\":1379.7,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":320,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7679.7,\"PublishedFare\":7737.85,\"OfferedFare\":7619.85,\"CommissionEarned\":59.85,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2710937587_0CCUJAI6E856_73792506306074\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.7,\"BaseFareCal\":7637.85,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":-3.15,\"MF\":15,\"YQ\":0,\"AGST\":320,\"MFT\":2.7,\"OT\":1042,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":59.85,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7737.85,\"CostToCustomer\":7737.85,\"BaseFareCal\":7637.85,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7637.85,\"intOfferedFare\":7619.85,\"intPublishFare\":7679.7,\"TripjackMarkup\":0,\"TripjackCommission\":59.85,\"TripjackTDS\":\"3.15\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"175\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-19T20:35\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-19T18:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:30\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d4375-89284-90228-9c8b1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2710937587_1CCUJAI6E856_66145618443302\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107240549493\",\"FlightNumber\":\"6E-856\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2710937587_1CCUJAI6E856_66145618443302\",\"strTraceId\":\"5-2710937587_1CCUJAI6E856_66145618443302\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2022-08-19T18:30\",\"LocalFromTime\":\"2022-08-19 18:30\",\"FromUTCTime\":\"2022-08-19T18:30\",\"LocalToTime\":\"2022-08-19 20:35\",\"ToUTCTime\":\"2022-08-19T20:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7679.7,\"ApiResultIndex\":\"5-2710937587_1CCUJAI6E856_66145618443302\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"d4375-89284-90228-9c8b1\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6300,\"Tax\":1379.7,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":320,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7679.7,\"PublishedFare\":7737.85,\"OfferedFare\":7619.85,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.7,\"BaseFareCal\":7637.85,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":-3.15,\"MF\":15,\"YQ\":0,\"AGST\":320,\"MFT\":2.7,\"OT\":1042,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"175\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-19T20:35\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-19T18:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:30\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2710937587_1CCUJAI6E856_66145618443302\",\"localFromDateTime\":\"2022-08-19 18:30\",\"localToDateTime\":\"2022-08-19 20:35\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','42.110.170.61','2022-08-19 04:07:22','2022-08-19 04:07:22',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(73,0,43,12577,0,0,NULL,'2022-08-19',NULL,NULL,'6E-856','IndiGo','1',1,'3cf3b-3261b-008b9-58a00','267','18:30:00','20:35:00',0,'T',125,'2h 5m',14323,12995,'CCU','JAI','Non-stop',1,1,7737.85,'5-4741806359_0CCUJAI6E856_161110572937463',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',6300,1379.7,0,1042,0,15,7737.85,0,0,0,18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ105640549973\",\"FlightNumber\":\"6E-856\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2022-08-19T18:30\",\"LocalFromTime\":\"2022-08-19 18:30\",\"FromUTCTime\":\"2022-08-19T18:30\",\"LocalToTime\":\"2022-08-19 20:35\",\"ToUTCTime\":\"2022-08-19T20:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7679.7,\"PublishedFareTxt\":\"7,680\",\"ApiResultIndex\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"CCU-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARF\":3250,\"CRF\":50,\"ARFT\":162.5,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6300,\"Tax\":1379.7,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":320,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7679.7,\"PublishedFare\":7737.85,\"OfferedFare\":7619.85,\"CommissionEarned\":59.85,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4741806359_0CCUJAI6E856_72929084126735\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.7,\"BaseFareCal\":7637.85,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":-3.15,\"MF\":15,\"YQ\":0,\"AGST\":320,\"MFT\":2.7,\"OT\":1042,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":59.85,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7737.85,\"CostToCustomer\":7737.85,\"BaseFareCal\":7637.85,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7637.85,\"intOfferedFare\":7619.85,\"intPublishFare\":7679.7,\"TripjackMarkup\":0,\"TripjackCommission\":59.85,\"TripjackTDS\":\"3.15\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"309\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-19T20:35\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-19T18:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:30\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"3cf3b-3261b-008b9-58a00\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105640549973\",\"FlightNumber\":\"6E-856\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"strTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2022-08-19T18:30\",\"LocalFromTime\":\"2022-08-19 18:30\",\"FromUTCTime\":\"2022-08-19T18:30\",\"LocalToTime\":\"2022-08-19 20:35\",\"ToUTCTime\":\"2022-08-19T20:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7679.7,\"ApiResultIndex\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"3cf3b-3261b-008b9-58a00\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6300,\"Tax\":1379.7,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":320,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7679.7,\"PublishedFare\":7737.85,\"OfferedFare\":7619.85,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.7,\"BaseFareCal\":7637.85,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":-3.15,\"MF\":15,\"YQ\":0,\"AGST\":320,\"MFT\":2.7,\"OT\":1042,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"309\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-19T20:35\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-19T18:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:30\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"localFromDateTime\":\"2022-08-19 18:30\",\"localToDateTime\":\"2022-08-19 20:35\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','157.32.218.182','2022-08-19 04:15:19','2022-08-19 04:15:19',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(74,0,44,12577,0,431468,NULL,'2022-08-20',NULL,NULL,'UK-955','Vistara','',1,'4d243-0055d-55299-aa194','539','17:45:00','20:05:00',0,'Q',140,'2h 20m',7701,18676,'DEL','BOM','Non-stop',2,1,9884.24,'21-10-15-2-4690545359_13DELBOMUK955_208594713829498',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',9202,1549.4,0,780,0,30,9884.24,0,0,0,9,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ107640552099\",\"FlightNumber\":\"UK-955\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:45\",\"ArrivalTime\":\"20:05\",\"TravelDate\":\"2022-08-20T17:45\",\"LocalFromTime\":\"2022-08-20 17:45\",\"FromUTCTime\":\"2022-08-20T17:45\",\"LocalToTime\":\"2022-08-20 20:05\",\"ToUTCTime\":\"2022-08-20T20:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":10751.4,\"PublishedFareTxt\":\"10,751\",\"ApiResultIndex\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3150,\"ARFT\":157.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACF\":3675,\"ACFT\":183.75,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9202,\"Tax\":1549.4,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":474,\"CarrierMiscFee\":260,\"MUFee\":0,\"intPublishedFare\":10751.4,\"PublishedFare\":9884.24,\"OfferedFare\":9825.24,\"CommissionEarned\":926.16,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-48.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4690545359_0DELBOMUK955_73818428887086\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1549.4,\"BaseFareCal\":9834.24,\"BaseFare\":9202,\"CommissionEarned\":926.16,\"TDS\":-48.74,\"MF\":30,\"YQ\":0,\"AGST\":474,\"MFT\":5.4,\"OT\":780,\"MU\":0,\"YR\":260,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":926.16,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":9884.24,\"CostToCustomer\":9884.24,\"BaseFareCal\":9834.24,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":9834.24,\"intOfferedFare\":9825.24,\"intPublishFare\":10751.4,\"TripjackMarkup\":0,\"TripjackCommission\":926.16,\"TripjackTDS\":\"48.74\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"464\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-20T20:05\",\"SegFlightNumber\":\"UK-955\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-20T17:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:45\",\"strArrivalDtTime\":\"20:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d243-0055d-55299-aa194\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-20 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107640552099\",\"FlightNumber\":\"UK-955\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"strTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:45\",\"ArrivalTime\":\"20:05\",\"TravelDate\":\"2022-08-20T17:45\",\"LocalFromTime\":\"2022-08-20 17:45\",\"FromUTCTime\":\"2022-08-20T17:45\",\"LocalToTime\":\"2022-08-20 20:05\",\"ToUTCTime\":\"2022-08-20T20:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":10751.4,\"ApiResultIndex\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"4d243-0055d-55299-aa194\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9202,\"Tax\":1549.4,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":474,\"CarrierMiscFee\":260,\"MUFee\":0,\"intPublishedFare\":10751.4,\"PublishedFare\":9884.24,\"OfferedFare\":9825.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1549.4,\"BaseFareCal\":9834.24,\"BaseFare\":9202,\"CommissionEarned\":926.16,\"TDS\":-48.74,\"MF\":30,\"YQ\":0,\"AGST\":474,\"MFT\":5.4,\"OT\":780,\"MU\":0,\"YR\":260,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"464\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-20T20:05\",\"SegFlightNumber\":\"UK-955\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-20T17:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:45\",\"strArrivalDtTime\":\"20:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"localFromDateTime\":\"2022-08-20 17:45\",\"localToDateTime\":\"2022-08-20 20:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2001\",\"message\":\"Insufficient Balance\",\"details\":\"Insufficient Balance\"}]}',NULL,1,0,'1AA7D3EC16CD48F78E28EE161B7A0F85','','0',NULL,NULL,'0','122.161.50.31','2022-08-19 04:55:51','2022-08-19 04:55:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(75,0,45,12577,0,0,NULL,'2022-09-03',NULL,NULL,'UK-716','Vistara','',1,'e7403-2bd0d-da555-5cacf','539','20:30:00','22:00:00',0,'Q',90,'1h 30m',20918,7701,'PAT','DEL','Non-stop',1,1,3103.36,'21-10-15-2-4778138565_1PATDELUK716_20926416088410',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',2696,765.7,0,477,0,15,3103.36,0,0,0,9,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ102340681746\",\"FlightNumber\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3461.7,\"PublishedFareTxt\":\"3,462\",\"ApiResultIndex\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PAT-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARFT\":157.5,\"ARF\":3150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"CCFT\":9,\"ACFT\":183.75,\"CCF\":50,\"ACF\":3675}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3103.36,\"OfferedFare\":3044.36,\"CommissionEarned\":417.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-21.97,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4778138565_0PATDELUK716_12727816697231\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":417.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":3103.36,\"CostToCustomer\":3103.36,\"BaseFareCal\":3053.36,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":3053.36,\"intOfferedFare\":3044.36,\"intPublishFare\":3461.7,\"TripjackMarkup\":0,\"TripjackCommission\":417.34,\"TripjackTDS\":\"21.97\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"607\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"e7403-2bd0d-da555-5cacf\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":20918,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102340681746\",\"FlightNumber\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"strTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3461.7,\"ApiResultIndex\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"e7403-2bd0d-da555-5cacf\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3103.36,\"OfferedFare\":3044.36,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"607\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"localFromDateTime\":\"2022-09-03 20:30\",\"localToDateTime\":\"2022-09-03 22:00\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":20918,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','122.161.75.224','2022-08-20 18:26:14','2022-08-20 18:26:14',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(76,0,48,12577,0,432702,'J6JR6P-FRNDWA','2022-09-07','TJ108240692423',NULL,'G8-383','Go First','1',1,'ababa-8b8bd-b98e8-bd1c9','240','16:30:00','18:20:00',0,'SP',110,'1h 50m',18676,2262,'BOM','BLR','Non-stop',1,1,2431.73,'1-0546920386_1BOMBLRG8383_47043583970839',1,2,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',1730,620.7,0,511,0,15,2431.73,0,0,0,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ108240692423\",\"FlightNumber\":\"G8-383\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-09-07T16:30\",\"LocalFromTime\":\"2022-09-07 16:30\",\"FromUTCTime\":\"2022-09-07T16:30\",\"LocalToTime\":\"2022-09-07 18:20\",\"ToUTCTime\":\"2022-09-07T18:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Wed, 07 Sep\",\"ArrivalDateTxt\":\"Wed, 07 Sep\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2350.7,\"PublishedFareTxt\":\"2,351\",\"ApiResultIndex\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1730,\"Tax\":620.7,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2350.7,\"PublishedFare\":2431.73,\"OfferedFare\":2313.73,\"CommissionEarned\":36.97,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0546920386_0BOMBLRG8383_55815972643819\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":620.7,\"BaseFareCal\":2331.73,\"BaseFare\":1730,\"CommissionEarned\":36.97,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":92,\"MFT\":2.7,\"OT\":511,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":36.97,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":2431.73,\"CostToCustomer\":2431.73,\"BaseFareCal\":2331.73,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":2331.73,\"intOfferedFare\":2313.73,\"intPublishFare\":2350.7,\"TripjackMarkup\":0,\"TripjackCommission\":36.97,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"934\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-07T18:20\",\"SegFlightNumber\":\"G8-383\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-07T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ababa-8b8bd-b98e8-bd1c9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-07 12:00\",\"localToDateTime\":\"2022-09-08 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108240692423\",\"FlightNumber\":\"G8-383\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"strTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-09-07T16:30\",\"LocalFromTime\":\"2022-09-07 16:30\",\"FromUTCTime\":\"2022-09-07T16:30\",\"LocalToTime\":\"2022-09-07 18:20\",\"ToUTCTime\":\"2022-09-07T18:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Wed, 07 Sep\",\"ArrivalDateTxt\":\"Wed, 07 Sep\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4670.4,\"ApiResultIndex\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"ababa-8b8bd-b98e8-bd1c9\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3204,\"Tax\":1466.4,\"YQTax\":0,\"OtherCharges\":1260,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":171,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4670.4,\"PublishedFare\":4855.43,\"OfferedFare\":4619.43,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1466.4,\"BaseFareCal\":4655.43,\"BaseFare\":3204,\"CommissionEarned\":50.97,\"TDS\":-2.69,\"MF\":30,\"YQ\":0,\"AGST\":171,\"MFT\":5.4,\"OT\":1260,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"934\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-07T18:20\",\"SegFlightNumber\":\"G8-383\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-07T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],[{\"segmentid\":\"919\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-08T23:00\",\"SegFlightNumber\":\"6E-6818\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-08T21:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"localFromDateTime\":\"2022-09-07 16:30\",\"localToDateTime\":\"2022-09-07 18:20\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ108240692423\",\"amount\":4670.4,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"amith.c.shetty@gmail.com\"],\"contacts\":[\"+918105807501\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-21T10:05:52.698\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10770125\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"383\",\"eT\":\"32A\"},\"stops\":0,\"duration\":110,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-09-07T16:30\",\"at\":\"2022-09-07T18:20\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"10770126\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6818\",\"eT\":\"321\"},\"stops\":0,\"duration\":95,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-09-08T21:25\",\"at\":\"2022-09-08T23:00\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-BLR\":\"J6JR6P\",\"BLR-BOM\":\"FRNDWA\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"AMITH\",\"lN\":\"C SHETTY\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":3204,\"NCM\":50.97,\"NF\":4619.43,\"TF\":4670.4,\"CGST\":2.7,\"SGST\":2.7,\"TAF\":1466.4},\"afC\":{\"NCM\":{\"TDS\":-2.69,\"OT\":53.66},\"TAF\":{\"OT\":1260,\"MF\":30,\"AGST\":171,\"MFT\":5.4,\"YQ\":0}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"432701\",\"TPSysId\":\"432702\",\"VersionId\":[\"94157\",\"94158\"],\"CustomerSysId\":\"208753\",\"TrxId\":\"31882\",\"FareBreakdownid\":[\"358585\",\"358586\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'AF589686A8D4475B8D4D0AB10BD342F8','','0',NULL,NULL,'0','183.87.82.70','2022-08-21 04:30:16','2022-08-21 04:30:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"bookingId\":\"TJ108240692423\",\"trips\":[{\"src\":\"BOM\",\"dest\":\"BLR\",\"departureDate\":\"2022-09-07T16:30\",\"flightNumbers\":[\"383\"],\"airlines\":[\"G8\"],\"amendmentInfo\":{\"ADULT\":{\"amendmentCharges\":1797.7,\"refundAmount\":553,\"totalFare\":2350.7}}},{\"src\":\"BLR\",\"dest\":\"BOM\",\"departureDate\":\"2022-09-08T21:25\",\"flightNumbers\":[\"6818\"],\"airlines\":[\"6E\"],\"amendmentInfo\":{\"ADULT\":{\"amendmentCharges\":1641.7,\"refundAmount\":678,\"totalFare\":2319.7}}}],\"status\":{\"success\":true,\"httpStatus\":200}}','1',NULL,NULL,'2022-08-000009',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(77,76,48,12577,0,432702,'J6JR6P-FRNDWA','2022-09-08','TJ108240692423',NULL,'6E-6818','IndiGo','1',1,'ababa-8b8bd-b98e8-bd1c9','267','21:25:00','23:00:00',0,'T',95,'1h 35m',18676,2262,'BLR','BOM','Non-stop',1,1,2423.7,'5-0546920386_5BLRBOM6E6818_47044737436599',2,2,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',1474,845.7,0,749,0,15,2423.7,0,0,0,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ108240692423\",\"FlightNumber\":\"6E-6818\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0546920386_5BLRBOM6E6818_47044737436599\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:25\",\"ArrivalTime\":\"23:00\",\"TravelDate\":\"2022-09-08T21:25\",\"LocalFromTime\":\"2022-09-08 21:25\",\"FromUTCTime\":\"2022-09-08T21:25\",\"LocalToTime\":\"2022-09-08 23:00\",\"ToUTCTime\":\"2022-09-08T23:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2319.7,\"PublishedFareTxt\":\"2,320\",\"ApiResultIndex\":\"5-0546920386_5BLRBOM6E6818_47044737436599\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1474,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":749,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":79,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2319.7,\"PublishedFare\":2423.7,\"OfferedFare\":2305.7,\"CommissionEarned\":14,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0546920386_1BLRBOM6E6818_55815973372501\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":2323.7,\"BaseFare\":1474,\"CommissionEarned\":14,\"TDS\":-0.74,\"MF\":15,\"YQ\":0,\"AGST\":79,\"MFT\":2.7,\"OT\":749,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":14,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":2423.7,\"CostToCustomer\":2423.7,\"BaseFareCal\":2323.7,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":2323.7,\"intOfferedFare\":2305.7,\"intPublishFare\":2319.7,\"TripjackMarkup\":0,\"TripjackCommission\":14,\"TripjackTDS\":\"0.74\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"919\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-08T23:00\",\"SegFlightNumber\":\"6E-6818\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-08T21:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ababa-8b8bd-b98e8-bd1c9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0546920386_5BLRBOM6E6818_47044737436599\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-07 12:00\",\"localToDateTime\":\"2022-09-08 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJ108240692423\",\"amount\":4670.4,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"amith.c.shetty@gmail.com\"],\"contacts\":[\"+918105807501\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-21T10:05:52.698\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10770125\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"383\",\"eT\":\"32A\"},\"stops\":0,\"duration\":110,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-09-07T16:30\",\"at\":\"2022-09-07T18:20\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"10770126\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6818\",\"eT\":\"321\"},\"stops\":0,\"duration\":95,\"da\":{\"code\":\"BLR\",\"name\":\"Bengaluru Intl Arpt\",\"cityCode\":\"BLR\",\"city\":\"Bengaluru\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-09-08T21:25\",\"at\":\"2022-09-08T23:00\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-BLR\":\"J6JR6P\",\"BLR-BOM\":\"FRNDWA\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"AMITH\",\"lN\":\"C SHETTY\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":3204,\"NCM\":50.97,\"NF\":4619.43,\"TF\":4670.4,\"CGST\":2.7,\"SGST\":2.7,\"TAF\":1466.4},\"afC\":{\"NCM\":{\"TDS\":-2.69,\"OT\":53.66},\"TAF\":{\"OT\":1260,\"MF\":30,\"AGST\":171,\"MFT\":5.4,\"YQ\":0}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"432701\",\"TPSysId\":\"432702\",\"VersionId\":[\"94157\",\"94158\"],\"CustomerSysId\":\"208753\",\"TrxId\":\"31882\",\"FareBreakdownid\":[\"358585\",\"358586\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'AF589686A8D4475B8D4D0AB10BD342F8','','0',NULL,NULL,'0','183.87.82.70','2022-08-21 04:30:16','2022-08-21 04:30:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"bookingId\":\"TJ108240692423\",\"trips\":[{\"src\":\"BOM\",\"dest\":\"BLR\",\"departureDate\":\"2022-09-07T16:30\",\"flightNumbers\":[\"383\"],\"airlines\":[\"G8\"],\"amendmentInfo\":{\"ADULT\":{\"amendmentCharges\":1797.7,\"refundAmount\":553,\"totalFare\":2350.7}}},{\"src\":\"BLR\",\"dest\":\"BOM\",\"departureDate\":\"2022-09-08T21:25\",\"flightNumbers\":[\"6818\"],\"airlines\":[\"6E\"],\"amendmentInfo\":{\"ADULT\":{\"amendmentCharges\":1641.7,\"refundAmount\":678,\"totalFare\":2319.7}}}],\"status\":{\"success\":true,\"httpStatus\":200}}','1',NULL,NULL,'2022-08-000009',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(78,0,46,12577,0,432733,'5BXRYC','2022-09-03','TJ101940706511',NULL,'UK-716','Vistara','',1,'90697-b1ab0-17302-7aefd','539','20:30:00','22:00:00',0,'Q',90,'1h 30m',20918,7701,'PAT','DEL','Non-stop',1,1,3103.36,'21-10-15-2-5133791766_1PATDELUK716_679076261789',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',2696,765.7,0,477,0,15,3103.36,0,0,0,9,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ101940706511\",\"FlightNumber\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3461.7,\"PublishedFareTxt\":\"3,462\",\"ApiResultIndex\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PAT-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARFT\":157.5,\"ARF\":3150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACF\":3675,\"ACFT\":183.75,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3103.36,\"OfferedFare\":3044.36,\"CommissionEarned\":417.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-21.97,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-5133791766_0PATDELUK716_53622742693316\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":417.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":3103.36,\"CostToCustomer\":3103.36,\"BaseFareCal\":3053.36,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":3053.36,\"intOfferedFare\":3044.36,\"intPublishFare\":3461.7,\"TripjackMarkup\":0,\"TripjackCommission\":417.34,\"TripjackTDS\":\"21.97\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"355\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"90697-b1ab0-17302-7aefd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":20918,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101940706511\",\"FlightNumber\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"strTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3461.7,\"ApiResultIndex\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"90697-b1ab0-17302-7aefd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3103.36,\"OfferedFare\":3044.36,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"355\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"localFromDateTime\":\"2022-09-03 20:30\",\"localToDateTime\":\"2022-09-03 22:00\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":20918,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ101940706511\",\"amount\":3461.7,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"atulkarn@hotmail.com\"],\"contacts\":[\"+917506645196\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-21T13:33:15.802\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10773750\",\"fD\":{\"aI\":{\"code\":\"UK\",\"name\":\"Vistara\",\"isLcc\":false},\"fN\":\"716\",\"eT\":\"73H\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"PAT\",\"name\":\"Jai Prakash Narayan Arpt\",\"cityCode\":\"PAT\",\"city\":\"Patna\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"dt\":\"2022-09-03T20:30\",\"at\":\"2022-09-03T22:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"PAT-DEL\":\"5BXRYC\"},\"ticketNumberDetails\":{\"PAT-DEL\":\"2283909601677\"},\"gdsPnrs\":{\"PAT-DEL\":\"2B7TJ2\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"UPENDRA KUMAR\",\"lN\":\"KARN\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"SGST\":1.35,\"CGST\":1.35,\"BF\":2696,\"TAF\":765.7,\"NF\":3044.36,\"TF\":3461.7,\"NCM\":417.34},\"afC\":{\"TAF\":{\"AGST\":141,\"MF\":15,\"YR\":130,\"OT\":477,\"MFT\":2.7},\"NCM\":{\"TDS\":-21.97,\"OT\":439.31}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"432732\",\"TPSysId\":\"432733\",\"VersionId\":[\"94188\"],\"CustomerSysId\":\"227575\",\"TrxId\":\"31896\",\"FareBreakdownid\":[\"358599\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'575F19E0D32C46DBB51CA94F5C4E3AD2','','0',NULL,NULL,'0','122.161.75.224','2022-08-21 07:59:49','2022-08-21 07:59:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000010',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(79,0,49,12577,0,432858,'HT15FX','2022-08-24','TJ108240744796',NULL,'6E-534','IndiGo','1',1,'9354e-06eb7-177ad-3d2f2','267','16:50:00','18:45:00',0,'T',115,'1h 55m',2012,7701,'IXB','DEL','Non-stop',1,1,3582.09,'5-4275999863_1IXBDEL6E534_35101962481827',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3012,480.7,0,463,0,15,3582.09,0,0,0,18,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ108240744796\",\"FlightNumber\":\"6E-534\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:50\",\"ArrivalTime\":\"18:45\",\"TravelDate\":\"2022-08-24T16:50\",\"LocalFromTime\":\"2022-08-24 16:50\",\"FromUTCTime\":\"2022-08-24T16:50\",\"LocalToTime\":\"2022-08-24 18:45\",\"ToUTCTime\":\"2022-08-24T18:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 24 Aug\",\"ArrivalDateTxt\":\"Wed, 24 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3492.7,\"PublishedFareTxt\":\"3,493\",\"ApiResultIndex\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXB-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"ARFT\":162.5,\"CRFT\":9,\"ARF\":3250}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACFT\":175,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3012,\"Tax\":480.7,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3492.7,\"PublishedFare\":3582.09,\"OfferedFare\":3464.09,\"CommissionEarned\":28.61,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.51,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4275999863_0IXBDEL6E534_30818496332928\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":480.7,\"BaseFareCal\":3482.09,\"BaseFare\":3012,\"CommissionEarned\":28.61,\"TDS\":-1.51,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":463,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":28.61,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3582.09,\"CostToCustomer\":3582.09,\"BaseFareCal\":3482.09,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3482.09,\"intOfferedFare\":3464.09,\"intPublishFare\":3492.7,\"TripjackMarkup\":0,\"TripjackCommission\":28.61,\"TripjackTDS\":\"1.51\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"646\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-24T18:45\",\"SegFlightNumber\":\"6E-534\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-24T16:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:50\",\"strArrivalDtTime\":\"18:45\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9354e-06eb7-177ad-3d2f2\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108240744796\",\"FlightNumber\":\"6E-534\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"strTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:50\",\"ArrivalTime\":\"18:45\",\"TravelDate\":\"2022-08-24T16:50\",\"LocalFromTime\":\"2022-08-24 16:50\",\"FromUTCTime\":\"2022-08-24T16:50\",\"LocalToTime\":\"2022-08-24 18:45\",\"ToUTCTime\":\"2022-08-24T18:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 24 Aug\",\"ArrivalDateTxt\":\"Wed, 24 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3492.7,\"ApiResultIndex\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"9354e-06eb7-177ad-3d2f2\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3012,\"Tax\":480.7,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3492.7,\"PublishedFare\":3582.09,\"OfferedFare\":3464.09,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":480.7,\"BaseFareCal\":3482.09,\"BaseFare\":3012,\"CommissionEarned\":28.61,\"TDS\":-1.51,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":463,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"646\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-24T18:45\",\"SegFlightNumber\":\"6E-534\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-24T16:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:50\",\"strArrivalDtTime\":\"18:45\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"localFromDateTime\":\"2022-08-24 16:50\",\"localToDateTime\":\"2022-08-24 18:45\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ108240744796\",\"amount\":3492.7,\"markup\":0,\"deliveryInfo\":{\"emails\":[\"nikhil.dugar@outlook.com\"],\"contacts\":[\"+919783576789\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-22T06:42:36.611\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10784217\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"534\",\"eT\":\"320\"},\"stops\":0,\"duration\":115,\"da\":{\"code\":\"IXB\",\"name\":\"Bagdogra Arpt\",\"cityCode\":\"IXB\",\"city\":\"Bagdogra\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-08-24T16:50\",\"at\":\"2022-08-24T18:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"IXB-DEL\":\"HT15FX\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Narendra kumar\",\"lN\":\"Dugar\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"CGST\":1.35,\"BF\":3012,\"NCM\":28.61,\"TF\":3492.7,\"SGST\":1.35,\"TAF\":480.7,\"NF\":3464.09},\"afC\":{\"NCM\":{\"TDS\":-1.51,\"OT\":30.12},\"TAF\":{\"YQ\":0,\"AGST\":0,\"OT\":463,\"MF\":15,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"432857\",\"TPSysId\":\"432858\",\"VersionId\":[\"94290\"],\"CustomerSysId\":\"223018\",\"TrxId\":\"31923\",\"FareBreakdownid\":[\"358624\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'30F46C1005024A078AF0B1E93055AD06','','0',NULL,NULL,'0','223.239.50.80','2022-08-22 01:09:36','2022-08-22 01:09:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000011',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(80,0,47,12577,0,436280,'68YL4N','2022-08-26','TJ100441037963',NULL,'UK-721','Vistara','',1,'2271d-51f78-4f9da-b9ae6','539','15:20:00','17:45:00',0,'Q',145,'2h 25m',7701,11240,'DEL','GAU','Non-stop',2,1,10733.91,'21-10-15-2-7645385340_1DELGAUUK721_88382985125281',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',10222,1199.34,0,780,0,30,10733.91,18.85,0,189.78,36,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ100441037963\",\"FlightNumber\":\"UK-721\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:20\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-26T15:20\",\"LocalFromTime\":\"2022-08-26 15:20\",\"FromUTCTime\":\"2022-08-26T15:20\",\"LocalToTime\":\"2022-08-26 17:45\",\"ToUTCTime\":\"2022-08-26T17:45\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":11240,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11421.34,\"PublishedFareTxt\":\"11,421\",\"ApiResultIndex\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-GAU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARF\":3150,\"CRF\":50,\"CRFT\":9,\"ARFT\":157.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACF\":3675,\"ACFT\":183.75,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10222,\"Tax\":1199.34,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":160,\"MUFee\":223.94,\"intPublishedFare\":11421.34,\"PublishedFare\":10733.91,\"OfferedFare\":10255.12,\"CommissionEarned\":942.28,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-49.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-7645385340_0DELGAUUK721_8514433590420\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":70.16,\"apiMarkup\":189.78,\"IntCommission\":18.85,\"apiTaxOnMarkup\":34.16,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":18.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1199.34,\"BaseFareCal\":10325.28,\"BaseFare\":10222,\"CommissionEarned\":942.28,\"TDS\":-49.6,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":780,\"MU\":223.94,\"YR\":160,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":70.16,\"apiMarkup\":189.78,\"IntCommission\":18.85,\"apiTaxOnMarkup\":34.16,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":18.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":189.78,\"apiTaxOnMarkup\":34.16,\"IntNetCommission\":942.28,\"IntCommissionValInPercentage\":2,\"IntCommission\":18.85,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":70.16,\"PublishFare\":10733.91,\"CostToCustomer\":10733.91,\"BaseFareCal\":10325.28,\"intCommisionEarnedForAgency\":408.63,\"CostToCompany\":10325.28,\"intOfferedFare\":10255.12,\"intPublishFare\":11421.34,\"TripjackMarkup\":223.94,\"TripjackCommission\":942.28,\"TripjackTDS\":\"49.6\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"855\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-08-26T17:45\",\"SegFlightNumber\":\"UK-721\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2271d-51f78-4f9da-b9ae6\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GAU\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":11240,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ100441037963\",\"FlightNumber\":\"UK-721\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"strTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:20\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-26T15:20\",\"LocalFromTime\":\"2022-08-26 15:20\",\"FromUTCTime\":\"2022-08-26T15:20\",\"LocalToTime\":\"2022-08-26 17:45\",\"ToUTCTime\":\"2022-08-26T17:45\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":11240,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11421.34,\"ApiResultIndex\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"2271d-51f78-4f9da-b9ae6\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10222,\"Tax\":1199.34,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":160,\"MUFee\":223.94,\"intPublishedFare\":11421.34,\"PublishedFare\":10733.91,\"OfferedFare\":10255.12,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":18.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1199.34,\"BaseFareCal\":10325.28,\"BaseFare\":10222,\"CommissionEarned\":942.28,\"TDS\":-49.6,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":780,\"MU\":223.94,\"YR\":160,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":18.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"855\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-08-26T17:45\",\"SegFlightNumber\":\"UK-721\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"localFromDateTime\":\"2022-08-26 15:20\",\"localToDateTime\":\"2022-08-26 17:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GAU\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":11240,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ100441037963\",\"amount\":11197.4,\"markup\":223.94,\"deliveryInfo\":{\"emails\":[\"das2techconsultancy@gmail.com\"],\"contacts\":[\"+917085589052\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-25T21:21:58.217\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10872083\",\"fD\":{\"aI\":{\"code\":\"UK\",\"name\":\"Vistara\",\"isLcc\":false},\"fN\":\"721\",\"eT\":\"320\"},\"stops\":0,\"duration\":145,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"GAU\",\"name\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"cityCode\":\"GAU\",\"city\":\"Guwahati\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2022-08-26T15:20\",\"at\":\"2022-08-26T17:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-GAU\":\"68YL4N\"},\"ticketNumberDetails\":{\"DEL-GAU\":\"2283909822718\"},\"gdsPnrs\":{\"DEL-GAU\":\"2CBWP4\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Raju\",\"lN\":\"Das\"},{\"pnrDetails\":{\"DEL-GAU\":\"68YL4N\"},\"ticketNumberDetails\":{\"DEL-GAU\":\"2283909822719\"},\"gdsPnrs\":{\"DEL-GAU\":\"2CBWP4\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Amir\",\"lN\":\"Khan\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NCM\":942.28,\"BF\":10222,\"CGST\":2.7,\"NF\":10255.12,\"TAF\":1199.34,\"TF\":11421.34,\"SGST\":2.7},\"afC\":{\"NCM\":{\"TDS\":-49.6,\"OT\":991.88},\"TAF\":{\"YR\":160,\"MF\":30,\"MU\":223.94,\"MFT\":5.4,\"OT\":780}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"436279\",\"TPSysId\":\"436280\",\"VersionId\":[\"95534\"],\"CustomerSysId\":\"229600\",\"TrxId\":\"32246\",\"FareBreakdownid\":[\"358855\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'52E3E2A5230940C1A1ACB31FD1BF37D1','','0',NULL,NULL,'0','106.198.203.164','2022-08-25 15:46:13','2022-08-25 15:46:13',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000012',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(81,0,48,12577,0,436286,'HEHZQD','2022-08-26','TJ104241039445',NULL,'SG-8251','SpiceJet','1',1,'bbe72-9cc7f-dd56e-57d93','463','18:50:00','21:00:00',0,'DD',130,'2h 10m',7701,14323,'DEL','CCU','Non-stop',1,1,4864.5,'4-0445495529_1DELCCUSG8251_2685675102509',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',3852,821.33,0,514,0,15,4864.5,0.91,0,77.65,36,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ104241039445\",\"FlightNumber\":\"SG-8251\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:00\",\"TravelDate\":\"2022-08-26T18:50\",\"LocalFromTime\":\"2022-08-26 18:50\",\"FromUTCTime\":\"2022-08-26T18:50\",\"LocalToTime\":\"2022-08-26 21:00\",\"ToUTCTime\":\"2022-08-26T21:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":41,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4673.33,\"PublishedFareTxt\":\"4,673\",\"ApiResultIndex\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"ARFT\":167.5,\"CRFT\":9,\"ARF\":3350,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"CCF\":50,\"ACF\":3600,\"CCFT\":9,\"ACFT\":180}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3852,\"Tax\":821.33,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":198,\"CarrierMiscFee\":0,\"MUFee\":91.63,\"intPublishedFare\":4673.33,\"PublishedFare\":4864.5,\"OfferedFare\":4535.96,\"CommissionEarned\":45.74,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.41,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0445495529_0DELCCUSG8251_4255137213621\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":49.98,\"apiMarkup\":77.65,\"IntCommission\":0.91,\"apiTaxOnMarkup\":13.98,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":821.33,\"BaseFareCal\":4585.94,\"BaseFare\":3852,\"CommissionEarned\":45.74,\"TDS\":-2.41,\"MF\":15,\"YQ\":0,\"AGST\":198,\"MFT\":2.7,\"OT\":514,\"MU\":91.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.98,\"apiMarkup\":77.65,\"IntCommission\":0.91,\"apiTaxOnMarkup\":13.98,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":77.65,\"apiTaxOnMarkup\":13.98,\"IntNetCommission\":45.74,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.91,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.98,\"PublishFare\":4864.5,\"CostToCustomer\":4864.5,\"BaseFareCal\":4585.94,\"intCommisionEarnedForAgency\":278.57,\"CostToCompany\":4585.94,\"intOfferedFare\":4535.96,\"intPublishFare\":4673.33,\"TripjackMarkup\":91.63,\"TripjackCommission\":45.74,\"TripjackTDS\":\"2.41\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"234\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-26T21:00\",\"SegFlightNumber\":\"SG-8251\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":41,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"bbe72-9cc7f-dd56e-57d93\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104241039445\",\"FlightNumber\":\"SG-8251\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"strTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:00\",\"TravelDate\":\"2022-08-26T18:50\",\"LocalFromTime\":\"2022-08-26 18:50\",\"FromUTCTime\":\"2022-08-26T18:50\",\"LocalToTime\":\"2022-08-26 21:00\",\"ToUTCTime\":\"2022-08-26T21:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":41,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4673.33,\"ApiResultIndex\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"bbe72-9cc7f-dd56e-57d93\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3852,\"Tax\":821.33,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":198,\"CarrierMiscFee\":0,\"MUFee\":91.63,\"intPublishedFare\":4673.33,\"PublishedFare\":4864.5,\"OfferedFare\":4535.96,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":821.33,\"BaseFareCal\":4585.94,\"BaseFare\":3852,\"CommissionEarned\":45.74,\"TDS\":-2.41,\"MF\":15,\"YQ\":0,\"AGST\":198,\"MFT\":2.7,\"OT\":514,\"MU\":91.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"234\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-26T21:00\",\"SegFlightNumber\":\"SG-8251\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":41,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"localFromDateTime\":\"2022-08-26 18:50\",\"localToDateTime\":\"2022-08-26 21:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ104241039445\",\"amount\":4581.7,\"markup\":91.63,\"deliveryInfo\":{\"emails\":[\"das2techconsultancy@gmail.com\"],\"contacts\":[\"+917003083313\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-25T21:38:41.381\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10872497\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"8251\",\"eT\":\"737\"},\"stops\":0,\"duration\":130,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-08-26T18:50\",\"at\":\"2022-08-26T21:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-CCU\":\"HEHZQD\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Goutam\",\"lN\":\"Das\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"SGST\":1.35,\"NCM\":45.74,\"TAF\":821.33,\"BF\":3852,\"TF\":4673.33,\"CGST\":1.35,\"NF\":4535.96},\"afC\":{\"NCM\":{\"OT\":48.15,\"TDS\":-2.41},\"TAF\":{\"OT\":514,\"MU\":91.63,\"YQ\":0,\"MF\":15,\"MFT\":2.7,\"AGST\":198}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"436285\",\"TPSysId\":\"436286\",\"VersionId\":[\"95537\"],\"CustomerSysId\":\"229600\",\"TrxId\":\"32248\",\"FareBreakdownid\":[\"358857\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'05A3792E38BC4375A0C4EE12CDE29F82','','0',NULL,NULL,'0','106.198.139.68','2022-08-25 16:05:16','2022-08-25 16:05:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000013',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(82,0,49,16498,0,0,NULL,'2022-08-27','DMCS100400325916','TJS100400325916','6E-248','IndiGo','1',1,'27756-47023-244eb-9a768','267','22:45:00','01:00:00',0,'T',135,'02h 15m',18676,7701,'BOM','DEL','Non-stop',1,1,935.5,'5-5489156712_29BOMDEL6E248_195582301523113',1,1,0,'https://b2b.svezz.com/public/upload/AirlineLogo/6E.gif','INR',100,835.5,0,478,0,15,935.5,0,0,110,19.8,0,0,0,0,2500,275,0,'{\"bookingId\":\"DMCS100400325916\",\"bookingId_TJ\":\"TJS100400325916\",\"FlightNumber\":\"6E-248\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"27756-47023-244eb-9a768\",\"apiTraceId\":\"5-5489156712_29BOMDEL6E248_195582301523113\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-08-27T22:45\",\"LocalFromTime\":\"2022-08-27 22:45\",\"FromUTCTime\":\"2022-08-27T22:45\",\"LocalToTime\":\"2022-08-28 01:00\",\"ToUTCTime\":\"2022-08-28T01:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 27 Aug\",\"ArrivalDateTxt\":\"Sun, 28 Aug\",\"FlightDuration\":\"02h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"936\",\"ApiResultIndex\":\"5-5489156712_29BOMDEL6E248_195582301523113\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":100,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":10,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":805.7,\"PublishedFare\":935.5,\"PublishedFareAgent\":935.5,\"OfferedFareAgent\":935.5,\"OfferedFare\":605.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5489156712_0BOMDEL6E248_195673949488026\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"fareIdentifierSP\":\"TACTICAL\",\"SeatAvailable\":null,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"TotalBaseFare\":805.7,\"BaseFareCal\":625.5,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":10,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":935.5,\"CostToCustomer\":935.5,\"BaseFareCal\":625.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":625.5,\"intOfferedFare\":605.7,\"intPublishFare\":805.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"951\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-28T01:00\",\"SegFlightNumber\":\"6E-248\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-27T22:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-5489156712_29BOMDEL6E248_195582301523113\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"CRF\":50,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2022-08-26 12:46:26','2022-08-26 12:46:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'AALAM ZEB SALIM QURESHI','gaurav gupta',NULL,NULL,NULL,NULL,'TACTICAL','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(83,0,50,13985,0,0,NULL,'2022-09-01','DMCS109900326048','TJS109900326048','6E-832','IndiGo','1',1,'a9dd3-5f6de-aceef-6ab3c','267','06:00:00','08:15:00',0,'R',135,'02h 15m',18676,16028,'BOM','LKO','Non-stop',1,1,3758.5,'5-1237710232_3BOMLKO6E832_2285839480756',1,1,0,'https://b2b.svezz.com/public/upload/AirlineLogo/6E.gif','INR',2789,969.5,0,478,0,15,3758.5,0,0,110,19.8,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS109900326048\",\"bookingId_TJ\":\"TJS109900326048\",\"FlightNumber\":\"6E-832\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a9dd3-5f6de-aceef-6ab3c\",\"apiTraceId\":\"5-1237710232_3BOMLKO6E832_2285839480756\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:15\",\"TravelDate\":\"2022-09-01T06:00\",\"LocalFromTime\":\"2022-09-01 06:00\",\"FromUTCTime\":\"2022-09-01T06:00\",\"LocalToTime\":\"2022-09-01 08:15\",\"ToUTCTime\":\"2022-09-01T08:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 01 Sep\",\"ArrivalDateTxt\":\"Thu, 01 Sep\",\"FlightDuration\":\"02h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,759\",\"ApiResultIndex\":\"5-1237710232_3BOMLKO6E832_2285839480756\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2789,\"Tax\":839.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":144,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3628.7,\"PublishedFare\":3758.5,\"PublishedFareAgent\":3758.5,\"OfferedFareAgent\":3758.5,\"OfferedFare\":3428.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1237710232_0BOMLKO6E832_2311902232833\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3758.5,\"CostToAgent\":3758.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":839.7,\"TotalBaseFare\":3628.7,\"BaseFareCal\":3448.5,\"BaseFare\":2789,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":144,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3758.5,\"CostToAgent\":3758.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":3758.5,\"CostToCustomer\":3758.5,\"BaseFareCal\":3448.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":3448.5,\"intOfferedFare\":3428.7,\"intPublishFare\":3628.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3758.5,\"CostToAgent\":3758.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"767\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-09-01T08:15\",\"SegFlightNumber\":\"6E-832\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-01T06:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-1237710232_3BOMLKO6E832_2285839480756\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCF\":50,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2022-08-26 14:24:08','2022-08-26 14:24:08',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chinmay Khatri','Ajay Khatri',NULL,NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(84,0,51,12577,0,0,NULL,'2022-09-12',NULL,NULL,'6E-6822','IndiGo','1',1,'754b3-9725a-b7852-a53f4','267','15:00:00','16:10:00',0,'M',70,'1h 10m',7701,3139,'DEL','BHO','Non-stop',1,1,4378.11,'5-6075947611_1DELBHO6E6822_2682747885444',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3600,912.17,0,615,0,15,4378.11,2.74,0,74.97,0,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ100441251563\",\"FlightNumber\":\"6E-6822\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2022-09-12T15:00\",\"LocalFromTime\":\"2022-09-12 15:00\",\"FromUTCTime\":\"2022-09-12T15:00\",\"LocalToTime\":\"2022-09-12 16:10\",\"ToUTCTime\":\"2022-09-12T16:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Mon, 12 Sep\",\"ArrivalDateTxt\":\"Mon, 12 Sep\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":3139,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BHO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4512.17,\"PublishedFareTxt\":\"4,512\",\"ApiResultIndex\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BHO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":299,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ARF\":299,\"CRF\":50,\"ARFT\":14.95,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":499,\"additionalFee\":50,\"policyInfo\":\"__nls__ Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ACF\":499,\"ACFT\":24.95,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Free Seat*(standard seats)\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3600,\"Tax\":912.17,\"YQTax\":0,\"OtherCharges\":615,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":191,\"CarrierMiscFee\":0,\"MUFee\":88.47,\"intPublishedFare\":4512.17,\"PublishedFare\":4378.11,\"OfferedFare\":4286.9,\"CommissionEarned\":136.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-7.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6075947611_0DELBHO6E6822_8847645551209\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":13.5,\"apiMarkup\":74.97,\"IntCommission\":2.74,\"apiTaxOnMarkup\":13.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":2.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":912.17,\"BaseFareCal\":4300.4,\"BaseFare\":3600,\"CommissionEarned\":136.8,\"TDS\":-7.2,\"MF\":15,\"YQ\":0,\"AGST\":191,\"MFT\":2.7,\"OT\":615,\"MU\":88.47,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":13.5,\"apiMarkup\":74.97,\"IntCommission\":2.74,\"apiTaxOnMarkup\":13.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":2.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":74.97,\"apiTaxOnMarkup\":13.5,\"IntNetCommission\":136.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.74,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":13.5,\"PublishFare\":4378.11,\"CostToCustomer\":4378.11,\"BaseFareCal\":4300.4,\"intCommisionEarnedForAgency\":77.71,\"CostToCompany\":4300.4,\"intOfferedFare\":4286.9,\"intPublishFare\":4512.17,\"TripjackMarkup\":88.47,\"TripjackCommission\":136.8,\"TripjackTDS\":\"7.2\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}},\"Segments\":[{\"segmentid\":\"630\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Bhoj Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bhopal\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BHO\",\"destinationArrTime\":\"2022-09-12T16:10\",\"SegFlightNumber\":\"6E-6822\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-12T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"ZCHK\",\"Price\":0,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"VBIR\",\"Price\":0,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"UPMA\",\"Price\":0,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"SAKD\",\"Price\":0,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"POHA\",\"Price\":0,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"PBMR\",\"Price\":0,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"MUYO\",\"Price\":0,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CPML\",\"Price\":0,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"COMI\",\"Price\":0,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CNWT\",\"Price\":0,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CCWT\",\"Price\":0,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"AOAT\",\"Price\":0,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"754b3-9725a-b7852-a53f4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BHO\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":3139,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ100441251563\",\"FlightNumber\":\"6E-6822\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"strTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2022-09-12T15:00\",\"LocalFromTime\":\"2022-09-12 15:00\",\"FromUTCTime\":\"2022-09-12T15:00\",\"LocalToTime\":\"2022-09-12 16:10\",\"ToUTCTime\":\"2022-09-12T16:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Mon, 12 Sep\",\"ArrivalDateTxt\":\"Mon, 12 Sep\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":3139,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BHO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4512.17,\"ApiResultIndex\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"754b3-9725a-b7852-a53f4\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3600,\"Tax\":912.17,\"YQTax\":0,\"OtherCharges\":615,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":191,\"CarrierMiscFee\":0,\"MUFee\":88.47,\"intPublishedFare\":4512.17,\"PublishedFare\":4378.11,\"OfferedFare\":4286.9,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":2.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":912.17,\"BaseFareCal\":4300.4,\"BaseFare\":3600,\"CommissionEarned\":136.8,\"TDS\":-7.2,\"MF\":15,\"YQ\":0,\"AGST\":191,\"MFT\":2.7,\"OT\":615,\"MU\":88.47,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":2.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"630\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Bhoj Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bhopal\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BHO\",\"destinationArrTime\":\"2022-09-12T16:10\",\"SegFlightNumber\":\"6E-6822\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-12T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"localFromDateTime\":\"2022-09-12 15:00\",\"localToDateTime\":\"2022-09-12 16:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BHO\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":3139,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','122.161.72.240','2022-08-28 14:51:21','2022-08-28 14:51:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(85,0,50,13985,438322,438323,'TESTPNR','2022-08-30','DMCS108800327228','TJS108800327228','6E-168','IndiGo','1',1,'46eee-0e0f0-8d5ef-616bb','267','11:35:00','13:55:00',0,'T',140,'02h 20m',18676,7701,'BOM','DEL','Non-stop',1,1,935.5,'5-3374271150_32BOMDEL6E168_241087522664731',1,1,0,'https://b2b.svezz.com/public/upload/AirlineLogo/6E.gif','INR',100,835.5,0,478,0,15,935.5,0,0,110,19.8,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS108800327228\",\"bookingId_TJ\":\"TJS108800327228\",\"FlightNumber\":\"6E-168\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"46eee-0e0f0-8d5ef-616bb\",\"apiTraceId\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:35\",\"ArrivalTime\":\"13:55\",\"TravelDate\":\"2022-08-30T11:35\",\"LocalFromTime\":\"2022-08-30 11:35\",\"FromUTCTime\":\"2022-08-30T11:35\",\"LocalToTime\":\"2022-08-30 13:55\",\"ToUTCTime\":\"2022-08-30T13:55\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 30 Aug\",\"ArrivalDateTxt\":\"Tue, 30 Aug\",\"FlightDuration\":\"02h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"936\",\"ApiResultIndex\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":100,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":10,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":805.7,\"PublishedFare\":935.5,\"PublishedFareAgent\":935.5,\"OfferedFareAgent\":935.5,\"OfferedFare\":605.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3374271150_0BOMDEL6E168_241106132512964\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"fareIdentifierSP\":\"TACTICAL\",\"SeatAvailable\":null,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"TotalBaseFare\":805.7,\"BaseFareCal\":625.5,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":10,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":935.5,\"CostToCustomer\":935.5,\"BaseFareCal\":625.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":625.5,\"intOfferedFare\":605.7,\"intPublishFare\":805.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"436\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-30T13:55\",\"SegFlightNumber\":\"6E-168\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-30T11:35\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:35\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCF\":50,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',1,'{\"bookingId\":\"DMCS108800327228\",\"bookingId_TJ\":\"TJS108800327228\",\"FlightNumber\":\"6E-168\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"46eee-0e0f0-8d5ef-616bb\",\"apiTraceId\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:35\",\"ArrivalTime\":\"13:55\",\"TravelDate\":\"2022-08-30T11:35\",\"LocalFromTime\":\"2022-08-30 11:35\",\"FromUTCTime\":\"2022-08-30T11:35\",\"LocalToTime\":\"2022-08-30 13:55\",\"ToUTCTime\":\"2022-08-30T13:55\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 30 Aug\",\"ArrivalDateTxt\":\"Tue, 30 Aug\",\"FlightDuration\":\"02h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"936\",\"ApiResultIndex\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":100,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":10,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":805.7,\"PublishedFare\":935.5,\"PublishedFareAgent\":935.5,\"OfferedFareAgent\":935.5,\"OfferedFare\":605.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3374271150_0BOMDEL6E168_241106132512964\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"fareIdentifierSP\":\"TACTICAL\",\"SeatAvailable\":null,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"TotalBaseFare\":805.7,\"BaseFareCal\":625.5,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":10,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":935.5,\"CostToCustomer\":935.5,\"BaseFareCal\":625.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":625.5,\"intOfferedFare\":605.7,\"intPublishFare\":805.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"436\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-30T13:55\",\"SegFlightNumber\":\"6E-168\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-30T11:35\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:35\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCF\":50,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}','{\"order\":{\"bookingId\":\"TJS108800327228\",\"amount\":605.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"ajaykhatri5775@gmail.com\"],\"contacts\":[\"919829015180\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-29T14:15:01.864\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"80930\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"168\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-08-30T11:35\",\"at\":\"2022-08-30T13:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Ajay\",\"lN\":\"Khatri\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":805.7,\"BF\":100,\"IGST\":2.7,\"NF\":605.7,\"TAF\":705.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":10,\"YQ\":0,\"OT\":478,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"438322\",\"TPSysId\":\"438323\",\"VersionId\":[\"96425\"],\"CustomerSysId\":\"214868\",\"TrxId\":\"32466\",\"FareBreakdownid\":[\"359057\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'2D7D7E3C00114EDFB3525E46C2A69E5B','','',NULL,'2D7D7E3C00114EDFB3525E46C2A69E5B','0',NULL,'2022-08-29 08:43:38','2022-08-29 08:43:38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Chinmay Khatri','Ajay Khatri','2022-08-000014',NULL,NULL,NULL,'TACTICAL','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(86,0,51,12577,0,439147,'O6FDHS','2022-09-03','TJ105441369261',NULL,'G8-2607','Go First','1',0,'906a0-a203e-b4e8d-20ef4','240','15:45:00','17:45:00',0,'G',120,'2h 0m',18676,12995,'BOM','JAI','Non-stop',1,1,4067.47,'11-9401995382_0BOMJAIG82607_157452885623741',1,2,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',3200,337.05,0,250,0,15,4067.47,1.22,0,58.77,90,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ105441369261\",\"FlightNumber\":\"G8-2607\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-09-03T15:45\",\"LocalFromTime\":\"2022-09-03 15:45\",\"FromUTCTime\":\"2022-09-03T15:45\",\"LocalToTime\":\"2022-09-03 17:45\",\"ToUTCTime\":\"2022-09-03T17:45\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3537.05,\"PublishedFareTxt\":\"3,537\",\"ApiResultIndex\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3200,\"Tax\":337.05,\"YQTax\":0,\"OtherCharges\":250,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":69.35,\"intPublishedFare\":3537.05,\"PublishedFare\":4067.47,\"OfferedFare\":3406.9,\"CommissionEarned\":60.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9401995382_0BOMJAIG82607_70825130179110\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITHOUT PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":100.58,\"apiMarkup\":58.77,\"IntCommission\":1.22,\"apiTaxOnMarkup\":10.58,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":1.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":337.05,\"BaseFareCal\":3507.48,\"BaseFare\":3200,\"CommissionEarned\":60.8,\"TDS\":-3.2,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":250,\"MU\":69.35,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":100.58,\"apiMarkup\":58.77,\"IntCommission\":1.22,\"apiTaxOnMarkup\":10.58,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":1.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":58.77,\"apiTaxOnMarkup\":10.58,\"IntNetCommission\":60.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.22,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":100.58,\"PublishFare\":4067.47,\"CostToCustomer\":4067.47,\"BaseFareCal\":3507.48,\"intCommisionEarnedForAgency\":559.99,\"CostToCompany\":3507.48,\"intOfferedFare\":3406.9,\"intPublishFare\":3537.05,\"TripjackMarkup\":69.35,\"TripjackCommission\":60.8,\"TripjackTDS\":\"3.2\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500}},\"Segments\":[{\"segmentid\":\"667\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-09-03T17:45\",\"SegFlightNumber\":\"G8-2607\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-03T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"906a0-a203e-b4e8d-20ef4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-03 12:00\",\"localToDateTime\":\"2022-09-07 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105441369261\",\"FlightNumber\":\"G8-2607\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"strTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-09-03T15:45\",\"LocalFromTime\":\"2022-09-03 15:45\",\"FromUTCTime\":\"2022-09-03T15:45\",\"LocalToTime\":\"2022-09-03 17:45\",\"ToUTCTime\":\"2022-09-03T17:45\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7941.1,\"ApiResultIndex\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"906a0-a203e-b4e8d-20ef4\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6026,\"Tax\":1915.1,\"YQTax\":0,\"OtherCharges\":1576,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":155.7,\"intPublishedFare\":7941.1,\"PublishedFare\":8660.16,\"OfferedFare\":7676.27,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":700,\"GSTOnMarkUp\":126,\"CommEarned\":2.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":700,\"AddiTaxOnMarkup\":126,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1915.1,\"BaseFareCal\":7826.02,\"BaseFare\":6026,\"CommissionEarned\":109.13,\"TDS\":-5.74,\"MF\":30,\"YQ\":0,\"AGST\":148,\"MFT\":5.4,\"OT\":1576,\"MU\":155.7,\"YR\":0,\"AddiTaxOnMarkup\":126,\"AddiMarkup\":700,\"FixedMarkUp\":700,\"GSTOnMarkUp\":126,\"CommEarned\":2.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"667\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-09-03T17:45\",\"SegFlightNumber\":\"G8-2607\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-03T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],[{\"segmentid\":\"343\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-07T10:10\",\"SegFlightNumber\":\"G8-389\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-09-07T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"localFromDateTime\":\"2022-09-03 15:45\",\"localToDateTime\":\"2022-09-03 17:45\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ105441369261\",\"amount\":7785.4,\"markup\":155.7,\"deliveryInfo\":{\"emails\":[\"AJAYKHATRI5775@GMAIL.COM\"],\"contacts\":[\"+919829015180\"]},\"status\":\"PENDING\",\"createdOn\":\"2022-08-30T13:32:18.886\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10964827\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"2607\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2022-09-03T15:45\",\"at\":\"2022-09-03T17:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"10964828\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"389\",\"eT\":\"32A\"},\"stops\":0,\"duration\":105,\"da\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-09-07T08:25\",\"at\":\"2022-09-07T10:10\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"JAI-BOM\":\"O6FDHS\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"AJAY\",\"lN\":\"KHATRI\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"CGST\":2.7,\"BF\":6026,\"TAF\":1915.1,\"SGST\":2.7,\"NF\":7676.27,\"TF\":7941.1,\"NCM\":109.13},\"afC\":{\"TAF\":{\"YQ\":0,\"AGST\":148,\"OT\":1576,\"MFT\":5.4,\"MF\":30,\"MU\":155.7},\"NCM\":{\"OT\":114.87,\"TDS\":-5.74}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"439146\",\"TPSysId\":\"439147\",\"VersionId\":[\"96811\",\"96812\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"32557\",\"FareBreakdownid\":[\"359144\",\"359145\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'5089E6062DB24EE6BE720C82387690C6','','0',NULL,NULL,'0','106.213.49.149','2022-08-30 07:58:45','2022-08-30 07:58:45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000015',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(87,86,51,12577,0,439147,'O6FDHS','2022-09-07','TJ105441369261',NULL,'G8-389','Go First','1',1,'906a0-a203e-b4e8d-20ef4','240','08:25:00','10:10:00',0,'SP',105,'1h 45m',18676,12995,'JAI','BOM','Non-stop',1,1,4592.69,'1-9401995382_0JAIBOMG8389_157454028663550',2,2,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',2826,1578.05,0,1326,0,15,4592.69,0.97,0,73.18,36,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ105441369261\",\"FlightNumber\":\"G8-389\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9401995382_0JAIBOMG8389_157454028663550\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:25\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2022-09-07T08:25\",\"LocalFromTime\":\"2022-09-07 08:25\",\"FromUTCTime\":\"2022-09-07T08:25\",\"LocalToTime\":\"2022-09-07 10:10\",\"ToUTCTime\":\"2022-09-07T10:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 07 Sep\",\"ArrivalDateTxt\":\"Wed, 07 Sep\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4404.05,\"PublishedFareTxt\":\"4,404\",\"ApiResultIndex\":\"1-9401995382_0JAIBOMG8389_157454028663550\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2826,\"Tax\":1578.05,\"YQTax\":0,\"OtherCharges\":1326,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":86.35,\"intPublishedFare\":4404.05,\"PublishedFare\":4592.69,\"OfferedFare\":4269.37,\"CommissionEarned\":48.33,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.54,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"11-9401995382_1JAIBOMG8389_70825132029579\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":49.17,\"apiMarkup\":73.18,\"IntCommission\":0.97,\"apiTaxOnMarkup\":13.17,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1578.05,\"BaseFareCal\":4318.54,\"BaseFare\":2826,\"CommissionEarned\":48.33,\"TDS\":-2.54,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.7,\"OT\":1326,\"MU\":86.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.17,\"apiMarkup\":73.18,\"IntCommission\":0.97,\"apiTaxOnMarkup\":13.17,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":73.18,\"apiTaxOnMarkup\":13.17,\"IntNetCommission\":48.33,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.97,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.17,\"PublishFare\":4592.69,\"CostToCustomer\":4592.69,\"BaseFareCal\":4318.54,\"intCommisionEarnedForAgency\":274.14,\"CostToCompany\":4318.54,\"intOfferedFare\":4269.37,\"intPublishFare\":4404.05,\"TripjackMarkup\":86.35,\"TripjackCommission\":48.33,\"TripjackTDS\":\"2.54\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"343\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-07T10:10\",\"SegFlightNumber\":\"G8-389\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-09-07T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"906a0-a203e-b4e8d-20ef4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-9401995382_0JAIBOMG8389_157454028663550\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-03 12:00\",\"localToDateTime\":\"2022-09-07 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"order\":{\"bookingId\":\"TJ105441369261\",\"amount\":7785.4,\"markup\":155.7,\"deliveryInfo\":{\"emails\":[\"AJAYKHATRI5775@GMAIL.COM\"],\"contacts\":[\"+919829015180\"]},\"status\":\"PENDING\",\"createdOn\":\"2022-08-30T13:32:18.886\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"10964827\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"2607\"},\"stops\":0,\"duration\":120,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2022-09-03T15:45\",\"at\":\"2022-09-03T17:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]},{\"sI\":[{\"id\":\"10964828\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"389\",\"eT\":\"32A\"},\"stops\":0,\"duration\":105,\"da\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-09-07T08:25\",\"at\":\"2022-09-07T10:10\",\"iand\":false,\"isRs\":true,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"JAI-BOM\":\"O6FDHS\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"AJAY\",\"lN\":\"KHATRI\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"CGST\":2.7,\"BF\":6026,\"TAF\":1915.1,\"SGST\":2.7,\"NF\":7676.27,\"TF\":7941.1,\"NCM\":109.13},\"afC\":{\"TAF\":{\"YQ\":0,\"AGST\":148,\"OT\":1576,\"MFT\":5.4,\"MF\":30,\"MU\":155.7},\"NCM\":{\"OT\":114.87,\"TDS\":-5.74}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"439146\",\"TPSysId\":\"439147\",\"VersionId\":[\"96811\",\"96812\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"32557\",\"FareBreakdownid\":[\"359144\",\"359145\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'5089E6062DB24EE6BE720C82387690C6','','0',NULL,NULL,'0','106.213.49.149','2022-08-30 07:58:45','2022-08-30 07:58:45',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-08-000015',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(88,0,53,12577,0,0,NULL,'2022-08-31',NULL,NULL,'I5-583','AirAsia India','1',1,'7f281-8e915-1c6f3-0339f','75','10:55:00','12:05:00',0,'BT',70,'1h 10m',2012,14323,'IXB','CCU','Non-stop',1,1,2497.95,'22-16-7794426568_0IXBCCUI5583_86382543777410',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',1762,520.45,0,458,0,15,2497.95,0.42,0,37.92,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ102141413386\",\"FlightNumber\":\"I5-583\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:55\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2022-08-31T10:55\",\"LocalFromTime\":\"2022-08-31 10:55\",\"FromUTCTime\":\"2022-08-31T10:55\",\"LocalToTime\":\"2022-08-31 12:05\",\"ToUTCTime\":\"2022-08-31T12:05\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2282.45,\"PublishedFareTxt\":\"2,282\",\"ApiResultIndex\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXB-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-72 hrs Rs 3,250 + Fare Difference __nls__ Before 72 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1762,\"Tax\":520.45,\"YQTax\":0,\"OtherCharges\":458,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":44.75,\"intPublishedFare\":2282.45,\"PublishedFare\":2497.95,\"OfferedFare\":2216.78,\"CommissionEarned\":20.92,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-7794426568_0IXBCCUI5583_4684994412647\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.83,\"apiMarkup\":37.92,\"IntCommission\":0.42,\"apiTaxOnMarkup\":6.83,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":520.45,\"BaseFareCal\":2259.61,\"BaseFare\":1762,\"CommissionEarned\":20.92,\"TDS\":-1.1,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":458,\"MU\":44.75,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":42.83,\"apiMarkup\":37.92,\"IntCommission\":0.42,\"apiTaxOnMarkup\":6.83,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":37.92,\"apiTaxOnMarkup\":6.83,\"IntNetCommission\":20.92,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.42,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.83,\"PublishFare\":2497.95,\"CostToCustomer\":2497.95,\"BaseFareCal\":2259.61,\"intCommisionEarnedForAgency\":238.34,\"CostToCompany\":2259.61,\"intOfferedFare\":2216.78,\"intPublishFare\":2282.45,\"TripjackMarkup\":44.75,\"TripjackCommission\":20.92,\"TripjackTDS\":\"1.1\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"159\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-31T12:05\",\"SegFlightNumber\":\"I5-583\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-31T10:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:55\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBLD\",\"Price\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"RPCB\",\"Price\":400,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"JMCB\",\"Price\":400,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"7f281-8e915-1c6f3-0339f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102141413386\",\"FlightNumber\":\"I5-583\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"strTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:55\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2022-08-31T10:55\",\"LocalFromTime\":\"2022-08-31 10:55\",\"FromUTCTime\":\"2022-08-31T10:55\",\"LocalToTime\":\"2022-08-31 12:05\",\"ToUTCTime\":\"2022-08-31T12:05\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2282.45,\"ApiResultIndex\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"7f281-8e915-1c6f3-0339f\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1762,\"Tax\":520.45,\"YQTax\":0,\"OtherCharges\":458,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":44.75,\"intPublishedFare\":2282.45,\"PublishedFare\":2497.95,\"OfferedFare\":2216.78,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":520.45,\"BaseFareCal\":2259.61,\"BaseFare\":1762,\"CommissionEarned\":20.92,\"TDS\":-1.1,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":458,\"MU\":44.75,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"159\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-31T12:05\",\"SegFlightNumber\":\"I5-583\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-31T10:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:55\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"localFromDateTime\":\"2022-08-31 10:55\",\"localToDateTime\":\"2022-08-31 12:05\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','47.11.44.170','2022-08-30 16:00:39','2022-08-30 16:00:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(89,0,54,12577,0,0,NULL,'2022-09-08',NULL,NULL,'G8-176','Go First','1',1,'ac10d-9538b-eeecc-5a4b5','240','05:20:00','07:25:00',0,'SP',125,'2h 5m',22238,7701,'PNQ','DEL','Non-stop',1,1,4270.11,'1-6160175290_0PNQDELG8176_30133971377130',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',3052,1046.05,0,792,0,15,4270.11,1.3,0,68.09,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ104942103794\",\"FlightNumber\":\"G8-176\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:20\",\"ArrivalTime\":\"07:25\",\"TravelDate\":\"2022-09-08T05:20\",\"LocalFromTime\":\"2022-09-08 05:20\",\"FromUTCTime\":\"2022-09-08T05:20\",\"LocalToTime\":\"2022-09-08 07:25\",\"ToUTCTime\":\"2022-09-08T07:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4098.05,\"PublishedFareTxt\":\"4,098\",\"ApiResultIndex\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3052,\"Tax\":1046.05,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":156,\"CarrierMiscFee\":0,\"MUFee\":80.35,\"intPublishedFare\":4098.05,\"PublishedFare\":4270.11,\"OfferedFare\":3952.46,\"CommissionEarned\":65.24,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.43,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-6160175290_0PNQDELG8176_15040348282155\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.26,\"apiMarkup\":68.09,\"IntCommission\":1.3,\"apiTaxOnMarkup\":12.26,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1046.05,\"BaseFareCal\":4000.72,\"BaseFare\":3052,\"CommissionEarned\":65.24,\"TDS\":-3.43,\"MF\":15,\"YQ\":0,\"AGST\":156,\"MFT\":2.7,\"OT\":792,\"MU\":80.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.26,\"apiMarkup\":68.09,\"IntCommission\":1.3,\"apiTaxOnMarkup\":12.26,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":68.09,\"apiTaxOnMarkup\":12.26,\"IntNetCommission\":65.24,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.3,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.26,\"PublishFare\":4270.11,\"CostToCustomer\":4270.11,\"BaseFareCal\":4000.72,\"intCommisionEarnedForAgency\":269.4,\"CostToCompany\":4000.72,\"intOfferedFare\":3952.46,\"intPublishFare\":4098.05,\"TripjackMarkup\":80.35,\"TripjackCommission\":65.24,\"TripjackTDS\":\"3.43\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"399\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T07:25\",\"SegFlightNumber\":\"G8-176\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ac10d-9538b-eeecc-5a4b5\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104942103794\",\"FlightNumber\":\"G8-176\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"strTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:20\",\"ArrivalTime\":\"07:25\",\"TravelDate\":\"2022-09-08T05:20\",\"LocalFromTime\":\"2022-09-08 05:20\",\"FromUTCTime\":\"2022-09-08T05:20\",\"LocalToTime\":\"2022-09-08 07:25\",\"ToUTCTime\":\"2022-09-08T07:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4098.05,\"ApiResultIndex\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"ac10d-9538b-eeecc-5a4b5\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3052,\"Tax\":1046.05,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":156,\"CarrierMiscFee\":0,\"MUFee\":80.35,\"intPublishedFare\":4098.05,\"PublishedFare\":4270.11,\"OfferedFare\":3952.46,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1046.05,\"BaseFareCal\":4000.72,\"BaseFare\":3052,\"CommissionEarned\":65.24,\"TDS\":-3.43,\"MF\":15,\"YQ\":0,\"AGST\":156,\"MFT\":2.7,\"OT\":792,\"MU\":80.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"399\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T07:25\",\"SegFlightNumber\":\"G8-176\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"localFromDateTime\":\"2022-09-08 05:20\",\"localToDateTime\":\"2022-09-08 07:25\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','182.64.111.230','2022-09-07 16:34:49','2022-09-07 16:34:49',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'619417',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(90,0,55,12577,0,0,NULL,'2022-09-08',NULL,NULL,'SG-8184','SpiceJet','1',1,'4d5e0-f9125-67203-c3b4a','463','17:35:00','19:45:00',0,'DD',130,'2h 10m',22238,7701,'PNQ','DEL','Non-stop',1,1,4373.2,'4-9753976171_2PNQDELSG8184_24386742393656',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',3122,1051.53,0,792,0,15,4373.2,0.74,0,69.35,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ107842108048\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"PublishedFareTxt\":\"4,174\",\"ApiResultIndex\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"ARFT\":167.5,\"CRFT\":9,\"ARF\":3350,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3600,\"ACFT\":180}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"CommissionEarned\":37.07,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9753976171_0PNQDELSG8184_11429633873334\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":69.35,\"apiTaxOnMarkup\":12.48,\"IntNetCommission\":37.07,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.74,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.48,\"PublishFare\":4373.2,\"CostToCustomer\":4373.2,\"BaseFareCal\":4103.11,\"intCommisionEarnedForAgency\":270.09,\"CostToCompany\":4103.11,\"intOfferedFare\":4054.63,\"intPublishFare\":4173.53,\"TripjackMarkup\":81.83,\"TripjackCommission\":37.07,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"0\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d5e0-f9125-67203-c3b4a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107842108048\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"strTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"ApiResultIndex\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"4d5e0-f9125-67203-c3b4a\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"0\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"localFromDateTime\":\"2022-09-08 17:35\",\"localToDateTime\":\"2022-09-08 19:45\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','182.64.111.230','2022-09-07 17:29:41','2022-09-07 17:29:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'528630',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(91,0,52,12577,0,0,NULL,'2022-09-08',NULL,NULL,'SG-8184','SpiceJet','1',1,'da6b1-a9d9e-d1b70-52911','463','17:35:00','19:45:00',0,'DD',130,'2h 10m',22238,7701,'PNQ','DEL','Non-stop',1,1,4373.2,'4-0222389769_2PNQDELSG8184_8551336563886',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',3122,1051.53,0,792,0,15,4373.2,0.74,0,69.35,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ104942108903\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"PublishedFareTxt\":\"4,174\",\"ApiResultIndex\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARFT\":167.5,\"ARF\":3350}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"ACF\":3600,\"ACFT\":180,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"CommissionEarned\":37.07,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0222389769_0PNQDELSG8184_35221812518488\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":69.35,\"apiTaxOnMarkup\":12.48,\"IntNetCommission\":37.07,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.74,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.48,\"PublishFare\":4373.2,\"CostToCustomer\":4373.2,\"BaseFareCal\":4103.11,\"intCommisionEarnedForAgency\":270.09,\"CostToCompany\":4103.11,\"intOfferedFare\":4054.63,\"intPublishFare\":4173.53,\"TripjackMarkup\":81.83,\"TripjackCommission\":37.07,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"921\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"da6b1-a9d9e-d1b70-52911\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104942108903\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"strTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"ApiResultIndex\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"da6b1-a9d9e-d1b70-52911\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"921\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"localFromDateTime\":\"2022-09-08 17:35\",\"localToDateTime\":\"2022-09-08 19:45\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','182.64.111.230','2022-09-07 17:41:39','2022-09-07 17:41:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(92,0,53,12577,0,445717,NULL,'2022-09-08',NULL,NULL,'SG-8184','SpiceJet','1',1,'a9ad5-a8f3b-b551c-bed5c','463','17:35:00','19:45:00',0,'DD',130,'2h 10m',22238,7701,'PNQ','DEL','Non-stop',1,1,4373.2,'4-0829922692_2PNQDELSG8184_24855992049953',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',3122,1051.53,0,792,0,15,4373.2,0.74,0,69.35,36,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ109542109894\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"PublishedFareTxt\":\"4,174\",\"ApiResultIndex\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3350,\"ARFT\":167.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"ACF\":3600,\"ACFT\":180,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"CommissionEarned\":37.07,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0829922692_0PNQDELSG8184_4736960659544\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":69.35,\"apiTaxOnMarkup\":12.48,\"IntNetCommission\":37.07,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.74,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.48,\"PublishFare\":4373.2,\"CostToCustomer\":4373.2,\"BaseFareCal\":4103.11,\"intCommisionEarnedForAgency\":270.09,\"CostToCompany\":4103.11,\"intOfferedFare\":4054.63,\"intPublishFare\":4173.53,\"TripjackMarkup\":81.83,\"TripjackCommission\":37.07,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"978\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a9ad5-a8f3b-b551c-bed5c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109542109894\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"strTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"ApiResultIndex\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"a9ad5-a8f3b-b551c-bed5c\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"978\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"localFromDateTime\":\"2022-09-08 17:35\",\"localToDateTime\":\"2022-09-08 19:45\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2001\",\"message\":\"Insufficient Balance\",\"details\":\"Insufficient Balance\"}]}',NULL,1,0,'AEF51872834148499517DFC0AF501B46','','0',NULL,NULL,'0','182.64.111.230','2022-09-07 17:54:41','2022-09-07 17:54:41',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(93,0,54,12577,0,0,NULL,'2022-09-08',NULL,NULL,'SG-8184','SpiceJet','1',1,'6740c-5fc64-868ab-54c1a','463','17:35:00','19:45:00',0,'DD',130,'2h 10m',22238,7701,'PNQ','DEL','Non-stop',1,1,4373.2,'4-6847125169_2PNQDELSG8184_30323078736205',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',3122,1051.53,0,792,0,15,4373.2,0.74,0,69.35,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ103442113271\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"PublishedFareTxt\":\"4,174\",\"ApiResultIndex\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":167.5,\"ARF\":3350,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"ACF\":3600,\"ACFT\":180,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"CommissionEarned\":37.07,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6847125169_0PNQDELSG8184_38383230977054\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":69.35,\"apiTaxOnMarkup\":12.48,\"IntNetCommission\":37.07,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.74,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.48,\"PublishFare\":4373.2,\"CostToCustomer\":4373.2,\"BaseFareCal\":4103.11,\"intCommisionEarnedForAgency\":270.09,\"CostToCompany\":4103.11,\"intOfferedFare\":4054.63,\"intPublishFare\":4173.53,\"TripjackMarkup\":81.83,\"TripjackCommission\":37.07,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"817\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6740c-5fc64-868ab-54c1a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103442113271\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"strTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"ApiResultIndex\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"6740c-5fc64-868ab-54c1a\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"817\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"localFromDateTime\":\"2022-09-08 17:35\",\"localToDateTime\":\"2022-09-08 19:45\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','182.64.111.230','2022-09-07 18:51:32','2022-09-07 18:51:32',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(94,0,55,12577,0,446669,'D99N9G','2022-09-09','TJ101042204842',NULL,'G8-511','Go First','1',1,'ceb01-1c8ff-5b7e3-635bd','240','06:55:00','09:30:00',0,'BC',155,'2h 35m',18676,14323,'BOM','CCU','Non-stop',1,1,9014.51,'1-0502253256_0BOMCCUG8511_27048648818590',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',7818,1379.03,0,771,0,15,9014.51,8.54,0,152.82,36,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ101042204842\",\"FlightNumber\":\"G8-511\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:55\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2022-09-09T06:55\",\"LocalFromTime\":\"2022-09-09 06:55\",\"FromUTCTime\":\"2022-09-09T06:55\",\"LocalToTime\":\"2022-09-09 09:30\",\"ToUTCTime\":\"2022-09-09T09:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Fri, 09 Sep\",\"ArrivalDateTxt\":\"Fri, 09 Sep\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9197.03,\"PublishedFareTxt\":\"9,197\",\"ApiResultIndex\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"amount\":0,\"policyInfo\":\"If Cancelled 0 - 3 Hrs - Non Refundable, full fare will be forfeited.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":100,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ARF\":100,\"CRFT\":9,\"ARFT\":5,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":100,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACF\":100,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"amount\":0,\"policyInfo\":\"Complimentary seats, excluding first 3 rows and emergency exit rows\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7818,\"Tax\":1379.03,\"YQTax\":0,\"OtherCharges\":771,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":410,\"CarrierMiscFee\":0,\"MUFee\":180.33,\"intPublishedFare\":9197.03,\"PublishedFare\":9014.51,\"OfferedFare\":8589.64,\"CommissionEarned\":427.06,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-22.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0502253256_0BOMCCUG8511_137997977199299\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":63.51,\"apiMarkup\":152.82,\"IntCommission\":8.54,\"apiTaxOnMarkup\":27.51,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.03,\"BaseFareCal\":8653.15,\"BaseFare\":7818,\"CommissionEarned\":427.06,\"TDS\":-22.48,\"MF\":15,\"YQ\":0,\"AGST\":410,\"MFT\":2.7,\"OT\":771,\"MU\":180.33,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":63.51,\"apiMarkup\":152.82,\"IntCommission\":8.54,\"apiTaxOnMarkup\":27.51,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":152.82,\"apiTaxOnMarkup\":27.51,\"IntNetCommission\":427.06,\"IntCommissionValInPercentage\":2,\"IntCommission\":8.54,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":63.51,\"PublishFare\":9014.51,\"CostToCustomer\":9014.51,\"BaseFareCal\":8653.15,\"intCommisionEarnedForAgency\":361.36,\"CostToCompany\":8653.15,\"intOfferedFare\":8589.64,\"intPublishFare\":9197.03,\"TripjackMarkup\":180.33,\"TripjackCommission\":427.06,\"TripjackTDS\":\"22.48\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"104\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-09T09:30\",\"SegFlightNumber\":\"G8-511\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-09T06:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"06:55\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"104\",\"Code\":\"CRLM\",\"Price\":0,\"Description\":\"Free Corporate Meal before 12 Hrs\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ceb01-1c8ff-5b7e3-635bd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101042204842\",\"FlightNumber\":\"G8-511\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"strTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:55\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2022-09-09T06:55\",\"LocalFromTime\":\"2022-09-09 06:55\",\"FromUTCTime\":\"2022-09-09T06:55\",\"LocalToTime\":\"2022-09-09 09:30\",\"ToUTCTime\":\"2022-09-09T09:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Fri, 09 Sep\",\"ArrivalDateTxt\":\"Fri, 09 Sep\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9197.03,\"ApiResultIndex\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"ceb01-1c8ff-5b7e3-635bd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7818,\"Tax\":1379.03,\"YQTax\":0,\"OtherCharges\":771,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":410,\"CarrierMiscFee\":0,\"MUFee\":180.33,\"intPublishedFare\":9197.03,\"PublishedFare\":9014.51,\"OfferedFare\":8589.64,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.03,\"BaseFareCal\":8653.15,\"BaseFare\":7818,\"CommissionEarned\":427.06,\"TDS\":-22.48,\"MF\":15,\"YQ\":0,\"AGST\":410,\"MFT\":2.7,\"OT\":771,\"MU\":180.33,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"104\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-09T09:30\",\"SegFlightNumber\":\"G8-511\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-09T06:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"06:55\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"localFromDateTime\":\"2022-09-09 06:55\",\"localToDateTime\":\"2022-09-09 09:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ101042204842\",\"amount\":9016.7,\"markup\":180.33,\"deliveryInfo\":{\"emails\":[\"itskamalraja@gmail.com\"],\"contacts\":[\"+919091776621\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-09-08T23:56:50.900\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"11200791\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"511\",\"eT\":\"32A\"},\"stops\":0,\"duration\":155,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-09-09T06:55\",\"at\":\"2022-09-09T09:30\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"ssrMealInfos\":{\"BOM-CCU\":{\"code\":\"CRLM\",\"desc\":\"Free Corporate Meal before 12 Hrs\",\"ctds\":0}},\"pnrDetails\":{\"BOM-CCU\":\"D99N9G\"},\"ti\":\"Ms\",\"pt\":\"ADULT\",\"fN\":\"Rani\",\"lN\":\"Begun\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":7818,\"TF\":9197.03,\"CGST\":1.35,\"TAF\":1379.03,\"NF\":8589.64,\"SGST\":1.35,\"NCM\":427.06},\"afC\":{\"TAF\":{\"MF\":15,\"OT\":771,\"MFT\":2.7,\"YQ\":0,\"AGST\":410,\"MU\":180.33},\"NCM\":{\"TDS\":-22.48,\"OT\":449.54}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"446668\",\"TPSysId\":\"446669\",\"VersionId\":[\"100525\"],\"CustomerSysId\":\"230824\",\"TrxId\":\"33355\",\"FareBreakdownid\":[\"359854\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'857F9594E80B4F43B5042367879A2B33','','0',NULL,NULL,'0','103.70.156.234','2022-09-08 18:22:42','2022-09-08 18:22:42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-000016',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(95,0,56,19895,0,0,NULL,'2022-09-11','DMCS105100339127','TJS105100339127','6E-248','IndiGo','1',1,'b261a-d079d-56ee3-02acb','267','22:45:00','01:00:00',0,'T',135,'02h 15m',18676,7701,'BOM','DEL','Non-stop',1,1,1647.3,'5-7052325277_35BOMDEL6E248_191663702836883',1,1,0,'https://b2b.svezz.com/public/upload/AirlineLogo/6E.gif','INR',100,1547.3,0,778,0,400,1547.3,100,0,110,19.8,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS105100339127\",\"bookingId_TJ\":\"TJS105100339127\",\"FlightNumber\":\"6E-248\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"b261a-d079d-56ee3-02acb\",\"apiTraceId\":\"5-7052325277_35BOMDEL6E248_191663702836883\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-11T22:45\",\"LocalFromTime\":\"2022-09-11 22:45\",\"FromUTCTime\":\"2022-09-11T22:45\",\"LocalToTime\":\"2022-09-12 01:00\",\"ToUTCTime\":\"2022-09-12T01:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 11 Sep\",\"ArrivalDateTxt\":\"Mon, 12 Sep\",\"FlightDuration\":\"02h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"1,547\",\"ApiResultIndex\":\"5-7052325277_35BOMDEL6E248_191663702836883\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":100,\"Tax\":1460,\"YQTax\":0,\"OtherCharges\":778,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":10,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":1560,\"PublishedFare\":1547.3,\"PublishedFareAgent\":1647.3,\"OfferedFareAgent\":1547.3,\"OfferedFare\":1075,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7052325277_0BOMDEL6E248_191680535073545\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"fareIdentifierSP\":\"TACTICAL\",\"SeatAvailable\":null,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":142.5,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"CommEarnedAgent\":100,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":100,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":100,\"CostToAgentCustomer\":1647.3,\"CostToAgent\":1547.3,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1460,\"TotalBaseFare\":1560,\"BaseFareCal\":1094.8,\"BaseFare\":100,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":10,\"MFT\":72,\"OT\":778,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":142.5,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":100,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":100,\"CostToAgentCustomer\":1647.3,\"CostToAgent\":1547.3,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":50,\"IntCommission\":142.5,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":1547.3,\"CostToCustomer\":1547.3,\"BaseFareCal\":1094.8,\"intCommisionEarnedForAgency\":452.5,\"CostToCompany\":1094.8,\"intOfferedFare\":1075,\"intPublishFare\":1560,\"TripjackMarkup\":200,\"TripjackCommission\":285,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":100,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":100,\"CostToAgentCustomer\":1647.3,\"CostToAgent\":1547.3,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"940\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-12T01:00\",\"SegFlightNumber\":\"6E-248\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-11T22:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-7052325277_35BOMDEL6E248_191663702836883\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-10 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2022-09-09 10:54:30','2022-09-09 10:54:30',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Bharat Bhanushali','BHARAT B BHANUSHALI',NULL,NULL,NULL,NULL,'TACTICAL','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(96,0,57,12577,0,0,NULL,'2022-09-23',NULL,NULL,'6E-864','IndiGo','1',1,'fa72d-5cc26-d70e4-eb167','267','16:15:00','18:25:00',0,'T',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,4002.66,'5-2298778305_6DELBOM6E864_94251117919237',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3056,739.11,0,489,0,15,4002.66,0.58,0,63.06,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ105642635332\",\"FlightNumber\":\"6E-864\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:15\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-09-23T16:15\",\"LocalFromTime\":\"2022-09-23 16:15\",\"FromUTCTime\":\"2022-09-23T16:15\",\"LocalToTime\":\"2022-09-23 18:25\",\"ToUTCTime\":\"2022-09-23T18:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 23 Sep\",\"ArrivalDateTxt\":\"Fri, 23 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3795.11,\"PublishedFareTxt\":\"3,795\",\"ApiResultIndex\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3250,\"ARFT\":162.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"CCF\":50,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3056,\"Tax\":739.11,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":158,\"CarrierMiscFee\":0,\"MUFee\":74.41,\"intPublishedFare\":3795.11,\"PublishedFare\":4002.66,\"OfferedFare\":3691.67,\"CommissionEarned\":29.03,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.53,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2298778305_0DELBOM6E864_18057424662474\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":47.35,\"apiMarkup\":63.06,\"IntCommission\":0.58,\"apiTaxOnMarkup\":11.35,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":739.11,\"BaseFareCal\":3739.02,\"BaseFare\":3056,\"CommissionEarned\":29.03,\"TDS\":-1.53,\"MF\":15,\"YQ\":0,\"AGST\":158,\"MFT\":2.7,\"OT\":489,\"MU\":74.41,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":47.35,\"apiMarkup\":63.06,\"IntCommission\":0.58,\"apiTaxOnMarkup\":11.35,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":63.06,\"apiTaxOnMarkup\":11.35,\"IntNetCommission\":29.03,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.58,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":47.35,\"PublishFare\":4002.66,\"CostToCustomer\":4002.66,\"BaseFareCal\":3739.02,\"intCommisionEarnedForAgency\":263.64,\"CostToCompany\":3739.02,\"intOfferedFare\":3691.67,\"intPublishFare\":3795.11,\"TripjackMarkup\":74.41,\"TripjackCommission\":29.03,\"TripjackTDS\":\"1.53\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-23T18:25\",\"SegFlightNumber\":\"6E-864\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-23T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"fa72d-5cc26-d70e4-eb167\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105642635332\",\"FlightNumber\":\"6E-864\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"strTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:15\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-09-23T16:15\",\"LocalFromTime\":\"2022-09-23 16:15\",\"FromUTCTime\":\"2022-09-23T16:15\",\"LocalToTime\":\"2022-09-23 18:25\",\"ToUTCTime\":\"2022-09-23T18:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 23 Sep\",\"ArrivalDateTxt\":\"Fri, 23 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3795.11,\"ApiResultIndex\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"fa72d-5cc26-d70e4-eb167\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3056,\"Tax\":739.11,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":158,\"CarrierMiscFee\":0,\"MUFee\":74.41,\"intPublishedFare\":3795.11,\"PublishedFare\":4002.66,\"OfferedFare\":3691.67,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":739.11,\"BaseFareCal\":3739.02,\"BaseFare\":3056,\"CommissionEarned\":29.03,\"TDS\":-1.53,\"MF\":15,\"YQ\":0,\"AGST\":158,\"MFT\":2.7,\"OT\":489,\"MU\":74.41,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-23T18:25\",\"SegFlightNumber\":\"6E-864\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-23T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"localFromDateTime\":\"2022-09-23 16:15\",\"localToDateTime\":\"2022-09-23 18:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','122.161.78.63','2022-09-13 18:12:57','2022-09-13 18:12:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(97,0,58,12577,0,0,NULL,'2022-09-17',NULL,NULL,'6E-6162','IndiGo','1',1,'5fab4-08094-b457e-34cad','267','11:40:00','14:20:00',0,'T',160,'2h 40m',20918,2262,'PAT','BLR','Non-stop',2,1,11212.79,'5-5864604569_0PATBLR6E6162_96743885024116',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',9186,1876.3,0,1154,0,30,11212.79,1.75,0,183.81,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ103542679772\",\"FlightNumber\":\"6E-6162\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:40\",\"ArrivalTime\":\"14:20\",\"TravelDate\":\"2022-09-17T11:40\",\"LocalFromTime\":\"2022-09-17 11:40\",\"FromUTCTime\":\"2022-09-17T11:40\",\"LocalToTime\":\"2022-09-17 14:20\",\"ToUTCTime\":\"2022-09-17T14:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11062.3,\"PublishedFareTxt\":\"11,062\",\"ApiResultIndex\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PAT-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARF\":3250,\"CRFT\":9,\"ARFT\":162.5,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9186,\"Tax\":1876.3,\"YQTax\":0,\"OtherCharges\":1154,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":0,\"MUFee\":216.9,\"intPublishedFare\":11062.3,\"PublishedFare\":11212.79,\"OfferedFare\":10758.14,\"CommissionEarned\":87.26,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5864604569_0PATBLR6E6162_97026005133046\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":69.09,\"apiMarkup\":183.81,\"IntCommission\":1.75,\"apiTaxOnMarkup\":33.09,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1876.3,\"BaseFareCal\":10827.23,\"BaseFare\":9186,\"CommissionEarned\":87.26,\"TDS\":-4.6,\"MF\":30,\"YQ\":0,\"AGST\":470,\"MFT\":5.4,\"OT\":1154,\"MU\":216.9,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":69.09,\"apiMarkup\":183.81,\"IntCommission\":1.75,\"apiTaxOnMarkup\":33.09,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":183.81,\"apiTaxOnMarkup\":33.09,\"IntNetCommission\":87.26,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.75,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":69.09,\"PublishFare\":11212.79,\"CostToCustomer\":11212.79,\"BaseFareCal\":10827.23,\"intCommisionEarnedForAgency\":385.56,\"CostToCompany\":10827.23,\"intOfferedFare\":10758.14,\"intPublishFare\":11062.3,\"TripjackMarkup\":216.9,\"TripjackCommission\":87.26,\"TripjackTDS\":\"4.6\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"306\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-17T14:20\",\"SegFlightNumber\":\"6E-6162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-17T11:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:40\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5fab4-08094-b457e-34cad\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":20918,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103542679772\",\"FlightNumber\":\"6E-6162\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"strTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:40\",\"ArrivalTime\":\"14:20\",\"TravelDate\":\"2022-09-17T11:40\",\"LocalFromTime\":\"2022-09-17 11:40\",\"FromUTCTime\":\"2022-09-17T11:40\",\"LocalToTime\":\"2022-09-17 14:20\",\"ToUTCTime\":\"2022-09-17T14:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11062.3,\"ApiResultIndex\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"5fab4-08094-b457e-34cad\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9186,\"Tax\":1876.3,\"YQTax\":0,\"OtherCharges\":1154,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":0,\"MUFee\":216.9,\"intPublishedFare\":11062.3,\"PublishedFare\":11212.79,\"OfferedFare\":10758.14,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1876.3,\"BaseFareCal\":10827.23,\"BaseFare\":9186,\"CommissionEarned\":87.26,\"TDS\":-4.6,\"MF\":30,\"YQ\":0,\"AGST\":470,\"MFT\":5.4,\"OT\":1154,\"MU\":216.9,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"306\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-17T14:20\",\"SegFlightNumber\":\"6E-6162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-17T11:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:40\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"localFromDateTime\":\"2022-09-17 11:40\",\"localToDateTime\":\"2022-09-17 14:20\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":20918,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','182.64.109.10','2022-09-14 09:09:12','2022-09-14 09:09:12',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(98,0,59,12577,0,0,NULL,'2022-09-16',NULL,NULL,'G8-2411','Go First','1',1,'939ae-6eaf6-45294-42650','240','08:50:00','11:15:00',0,'SP',145,'2h 25m',18676,974,'BOM','ATQ','Non-stop',1,1,5282.6,'1-9998062218_0BOMATQG82411_19280931752465',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',4287,849.41,0,511,0,15,5282.6,1.83,0,85.35,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ106742688431\",\"FlightNumber\":\"G8-2411\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5136.41,\"PublishedFareTxt\":\"5,136\",\"ApiResultIndex\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-ATQ\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5282.6,\"OfferedFare\":4944.06,\"CommissionEarned\":91.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-9998062218_0BOMATQG82411_86240947230924\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":85.35,\"apiTaxOnMarkup\":15.36,\"IntNetCommission\":91.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.83,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.36,\"PublishFare\":5282.6,\"CostToCustomer\":5282.6,\"BaseFareCal\":4995.42,\"intCommisionEarnedForAgency\":287.18,\"CostToCompany\":4995.42,\"intOfferedFare\":4944.06,\"intPublishFare\":5136.41,\"TripjackMarkup\":100.71,\"TripjackCommission\":91.64,\"TripjackTDS\":\"4.82\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"99\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"939ae-6eaf6-45294-42650\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106742688431\",\"FlightNumber\":\"G8-2411\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"strTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5136.41,\"ApiResultIndex\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"939ae-6eaf6-45294-42650\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5282.6,\"OfferedFare\":4944.06,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"99\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"localFromDateTime\":\"2022-09-16 08:50\",\"localToDateTime\":\"2022-09-16 11:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'8FBEEB8965C84F8EB8A9CB4ABD96719F','','0',NULL,NULL,'0','49.32.150.231','2022-09-14 10:28:17','2022-09-14 10:28:17',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(99,0,57,12577,0,450813,NULL,'2022-09-16',NULL,NULL,'G8-2411','Go First','1',1,'eeeb5-8818d-c5af2-20656','240','08:50:00','11:15:00',0,'SP',145,'2h 25m',18676,974,'BOM','ATQ','Non-stop',1,1,5282.6,'1-8208508989_0BOMATQG82411_85587633064535',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',4287,849.41,0,511,0,15,5282.6,1.83,0,85.35,36,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ101542690971\",\"FlightNumber\":\"G8-2411\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5136.41,\"PublishedFareTxt\":\"5,136\",\"ApiResultIndex\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-ATQ\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5282.6,\"OfferedFare\":4944.06,\"CommissionEarned\":91.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-8208508989_0BOMATQG82411_76930105743124\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":85.35,\"apiTaxOnMarkup\":15.36,\"IntNetCommission\":91.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.83,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.36,\"PublishFare\":5282.6,\"CostToCustomer\":5282.6,\"BaseFareCal\":4995.42,\"intCommisionEarnedForAgency\":287.18,\"CostToCompany\":4995.42,\"intOfferedFare\":4944.06,\"intPublishFare\":5136.41,\"TripjackMarkup\":100.71,\"TripjackCommission\":91.64,\"TripjackTDS\":\"4.82\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"991\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eeeb5-8818d-c5af2-20656\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101542690971\",\"FlightNumber\":\"G8-2411\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"strTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5136.41,\"ApiResultIndex\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"eeeb5-8818d-c5af2-20656\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5282.6,\"OfferedFare\":4944.06,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"991\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"localFromDateTime\":\"2022-09-16 08:50\",\"localToDateTime\":\"2022-09-16 11:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2001\",\"message\":\"Insufficient Balance\",\"details\":\"Insufficient Balance\"}]}',NULL,1,0,'C076DD0FE6B447248CA426EBCE19AA86','','0',NULL,NULL,'0','49.32.230.83','2022-09-14 10:53:59','2022-09-14 10:53:59',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(100,0,58,12577,0,0,NULL,'2022-09-18',NULL,NULL,'G8-354','Go First','1',1,'a85a2-bb5a5-f28a7-5eb72','240','22:45:00','01:00:00',0,'SP',135,'2h 15m',7701,18676,'DEL','BOM','Non-stop',1,1,4280.62,'1-0541647184_2DELBOMG8354_104316879101343',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',3330,784.37,0,514,0,15,4280.62,1.42,0,68.36,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ107242694152\",\"FlightNumber\":\"G8-354\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-18T22:45\",\"LocalFromTime\":\"2022-09-18 22:45\",\"FromUTCTime\":\"2022-09-18T22:45\",\"LocalToTime\":\"2022-09-19 01:00\",\"ToUTCTime\":\"2022-09-19T01:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4114.37,\"PublishedFareTxt\":\"4,114\",\"ApiResultIndex\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3330,\"Tax\":784.37,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":172,\"CarrierMiscFee\":0,\"MUFee\":80.67,\"intPublishedFare\":4114.37,\"PublishedFare\":4280.62,\"OfferedFare\":3962.53,\"CommissionEarned\":71.17,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.75,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0541647184_0DELBOMG8354_66958990177361\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.31,\"apiMarkup\":68.36,\"IntCommission\":1.42,\"apiTaxOnMarkup\":12.31,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":784.37,\"BaseFareCal\":4010.84,\"BaseFare\":3330,\"CommissionEarned\":71.17,\"TDS\":-3.75,\"MF\":15,\"YQ\":0,\"AGST\":172,\"MFT\":2.7,\"OT\":514,\"MU\":80.67,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.31,\"apiMarkup\":68.36,\"IntCommission\":1.42,\"apiTaxOnMarkup\":12.31,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":68.36,\"apiTaxOnMarkup\":12.31,\"IntNetCommission\":71.17,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.42,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.31,\"PublishFare\":4280.62,\"CostToCustomer\":4280.62,\"BaseFareCal\":4010.84,\"intCommisionEarnedForAgency\":269.79,\"CostToCompany\":4010.84,\"intOfferedFare\":3962.53,\"intPublishFare\":4114.37,\"TripjackMarkup\":80.67,\"TripjackCommission\":71.17,\"TripjackTDS\":\"3.75\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"101\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-19T01:00\",\"SegFlightNumber\":\"G8-354\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a85a2-bb5a5-f28a7-5eb72\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107242694152\",\"FlightNumber\":\"G8-354\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"strTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-18T22:45\",\"LocalFromTime\":\"2022-09-18 22:45\",\"FromUTCTime\":\"2022-09-18T22:45\",\"LocalToTime\":\"2022-09-19 01:00\",\"ToUTCTime\":\"2022-09-19T01:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4114.37,\"ApiResultIndex\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"a85a2-bb5a5-f28a7-5eb72\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3330,\"Tax\":784.37,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":172,\"CarrierMiscFee\":0,\"MUFee\":80.67,\"intPublishedFare\":4114.37,\"PublishedFare\":4280.62,\"OfferedFare\":3962.53,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":784.37,\"BaseFareCal\":4010.84,\"BaseFare\":3330,\"CommissionEarned\":71.17,\"TDS\":-3.75,\"MF\":15,\"YQ\":0,\"AGST\":172,\"MFT\":2.7,\"OT\":514,\"MU\":80.67,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"101\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-19T01:00\",\"SegFlightNumber\":\"G8-354\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"localFromDateTime\":\"2022-09-18 22:45\",\"localToDateTime\":\"2022-09-19 01:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','49.32.230.83','2022-09-14 11:24:21','2022-09-14 11:24:21',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(101,0,59,12577,0,450863,NULL,'2022-09-18',NULL,NULL,'G8-354','Go First','1',1,'85831-7301b-0c518-baedd','240','22:45:00','01:00:00',0,'SP',135,'2h 15m',7701,18676,'DEL','BOM','Non-stop',2,1,8325.25,'1-2150401875_2DELBOMG8354_3780689664844',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',6660,1568.74,0,1028,0,30,8325.25,2.85,0,136.73,36,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ108942694565\",\"FlightNumber\":\"G8-354\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-18T22:45\",\"LocalFromTime\":\"2022-09-18 22:45\",\"FromUTCTime\":\"2022-09-18T22:45\",\"LocalToTime\":\"2022-09-19 01:00\",\"ToUTCTime\":\"2022-09-19T01:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":8228.74,\"PublishedFareTxt\":\"8,229\",\"ApiResultIndex\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"CRFT\":9,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6660,\"Tax\":1568.74,\"YQTax\":0,\"OtherCharges\":1028,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":344,\"CarrierMiscFee\":0,\"MUFee\":161.34,\"intPublishedFare\":8228.74,\"PublishedFare\":8325.25,\"OfferedFare\":7925.06,\"CommissionEarned\":142.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-7.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2150401875_0DELBOMG8354_105700208607285\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":60.61,\"apiMarkup\":136.73,\"IntCommission\":2.85,\"apiTaxOnMarkup\":24.61,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1568.74,\"BaseFareCal\":7985.67,\"BaseFare\":6660,\"CommissionEarned\":142.34,\"TDS\":-7.5,\"MF\":30,\"YQ\":0,\"AGST\":344,\"MFT\":5.4,\"OT\":1028,\"MU\":161.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":60.61,\"apiMarkup\":136.73,\"IntCommission\":2.85,\"apiTaxOnMarkup\":24.61,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":136.73,\"apiTaxOnMarkup\":24.61,\"IntNetCommission\":142.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.85,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":60.61,\"PublishFare\":8325.25,\"CostToCustomer\":8325.25,\"BaseFareCal\":7985.67,\"intCommisionEarnedForAgency\":339.58,\"CostToCompany\":7985.67,\"intOfferedFare\":7925.06,\"intPublishFare\":8228.74,\"TripjackMarkup\":161.34,\"TripjackCommission\":142.34,\"TripjackTDS\":\"7.5\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"584\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-19T01:00\",\"SegFlightNumber\":\"G8-354\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"85831-7301b-0c518-baedd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108942694565\",\"FlightNumber\":\"G8-354\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"strTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-18T22:45\",\"LocalFromTime\":\"2022-09-18 22:45\",\"FromUTCTime\":\"2022-09-18T22:45\",\"LocalToTime\":\"2022-09-19 01:00\",\"ToUTCTime\":\"2022-09-19T01:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":8228.74,\"ApiResultIndex\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"85831-7301b-0c518-baedd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6660,\"Tax\":1568.74,\"YQTax\":0,\"OtherCharges\":1028,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":344,\"CarrierMiscFee\":0,\"MUFee\":161.34,\"intPublishedFare\":8228.74,\"PublishedFare\":8325.25,\"OfferedFare\":7925.06,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1568.74,\"BaseFareCal\":7985.67,\"BaseFare\":6660,\"CommissionEarned\":142.34,\"TDS\":-7.5,\"MF\":30,\"YQ\":0,\"AGST\":344,\"MFT\":5.4,\"OT\":1028,\"MU\":161.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"584\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-19T01:00\",\"SegFlightNumber\":\"G8-354\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"localFromDateTime\":\"2022-09-18 22:45\",\"localToDateTime\":\"2022-09-19 01:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2001\",\"message\":\"Insufficient Balance\",\"details\":\"Insufficient Balance\"}]}',NULL,1,0,'57936CF873ED4C549C748C4D0D234479','','0',NULL,NULL,'0','49.32.150.231','2022-09-14 11:27:50','2022-09-14 11:27:50','06AAHPN5398K1Z3','Meraki foods','Merakfoods18@gmail.com','9819119819','Ardc tohana','Hr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(102,0,60,12577,0,0,NULL,'2022-09-15',NULL,NULL,'6E-219','IndiGo','1',1,'65750-0d4ed-ad54a-0c703','267','14:40:00','20:45:00',0,'T',365,'6h 5m',18676,14275,'BOM','COK','1 Stop(s)',1,1,5151.67,'5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',4099,854.83,0,528,0,15,5151.67,0.78,0,82.31,36,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ102042737782\",\"FlightNumber\":\"6E-219\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"20:45\",\"TravelDate\":\"2022-09-15T14:40\",\"LocalFromTime\":\"2022-09-15 14:40\",\"FromUTCTime\":\"2022-09-15T14:40\",\"LocalToTime\":\"2022-09-15 20:45\",\"ToUTCTime\":\"2022-09-15T20:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Thu, 15 Sep\",\"ArrivalDateTxt\":\"Thu, 15 Sep\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14275,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"COK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4953.83,\"PublishedFareTxt\":\"4,954\",\"ApiResultIndex\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-COK\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARF\":3250,\"ARFT\":162.5,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCFT\":9,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4099,\"Tax\":854.83,\"YQTax\":0,\"OtherCharges\":528,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":212,\"CarrierMiscFee\":0,\"MUFee\":97.13,\"intPublishedFare\":4953.83,\"PublishedFare\":5151.67,\"OfferedFare\":4817.76,\"CommissionEarned\":38.94,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.05,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3086055576_0BOMBLR6E219BLRCOK6E6787_123932806779540\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.82,\"apiMarkup\":82.31,\"IntCommission\":0.78,\"apiTaxOnMarkup\":14.82,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":854.83,\"BaseFareCal\":4868.58,\"BaseFare\":4099,\"CommissionEarned\":38.94,\"TDS\":-2.05,\"MF\":15,\"YQ\":0,\"AGST\":212,\"MFT\":2.7,\"OT\":528,\"MU\":97.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":50.82,\"apiMarkup\":82.31,\"IntCommission\":0.78,\"apiTaxOnMarkup\":14.82,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":82.31,\"apiTaxOnMarkup\":14.82,\"IntNetCommission\":38.94,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.78,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.82,\"PublishFare\":5151.67,\"CostToCustomer\":5151.67,\"BaseFareCal\":4868.58,\"intCommisionEarnedForAgency\":283.09,\"CostToCompany\":4868.58,\"intOfferedFare\":4817.76,\"intPublishFare\":4953.83,\"TripjackMarkup\":97.13,\"TripjackCommission\":38.94,\"TripjackTDS\":\"2.05\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"625\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-15T16:15\",\"SegFlightNumber\":\"6E-219\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-15T14:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":205,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"16:15\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"626\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2022-09-15T20:45\",\"SegFlightNumber\":\"6E-6787\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-15T19:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"19:40\",\"strArrivalDtTime\":\"20:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"65750-0d4ed-ad54a-0c703\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14275,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102042737782\",\"FlightNumber\":\"6E-219\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"strTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"20:45\",\"TravelDate\":\"2022-09-15T14:40\",\"LocalFromTime\":\"2022-09-15 14:40\",\"FromUTCTime\":\"2022-09-15T14:40\",\"LocalToTime\":\"2022-09-15 20:45\",\"ToUTCTime\":\"2022-09-15T20:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Thu, 15 Sep\",\"ArrivalDateTxt\":\"Thu, 15 Sep\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14275,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"COK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4953.83,\"ApiResultIndex\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"65750-0d4ed-ad54a-0c703\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4099,\"Tax\":854.83,\"YQTax\":0,\"OtherCharges\":528,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":212,\"CarrierMiscFee\":0,\"MUFee\":97.13,\"intPublishedFare\":4953.83,\"PublishedFare\":5151.67,\"OfferedFare\":4817.76,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":854.83,\"BaseFareCal\":4868.58,\"BaseFare\":4099,\"CommissionEarned\":38.94,\"TDS\":-2.05,\"MF\":15,\"YQ\":0,\"AGST\":212,\"MFT\":2.7,\"OT\":528,\"MU\":97.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"625\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-15T16:15\",\"SegFlightNumber\":\"6E-219\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-15T14:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":205,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"16:15\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"626\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2022-09-15T20:45\",\"SegFlightNumber\":\"6E-6787\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-15T19:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"19:40\",\"strArrivalDtTime\":\"20:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"localFromDateTime\":\"2022-09-15 14:40\",\"localToDateTime\":\"2022-09-15 20:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14275,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.24.85.235','2022-09-14 20:56:06','2022-09-14 20:56:06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'356828',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(103,0,47,12577,0,452106,'UCN2GA','2022-09-17','TJ106942846235',NULL,'G8-546','Go First','1',0,'d07b8-f08d5-9102d-5cb60','240','11:05:00','12:20:00',0,'G',75,'1h 15m',11240,14323,'GAU','CCU','Non-stop',2,1,6540.24,'11-6821526756_0GAUCCUG8546_36417672766516',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',6000,360.1,0,200,0,30,6540.24,1.14,0,0,55.02,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ106942846235\",\"FlightNumber\":\"G8-546\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"11:05\",\"ArrivalTime\":\"12:20\",\"TravelDate\":\"2022-09-17T11:05\",\"LocalFromTime\":\"2022-09-17 11:05\",\"FromUTCTime\":\"2022-09-17T11:05\",\"LocalToTime\":\"2022-09-17 12:20\",\"ToUTCTime\":\"2022-09-17T12:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":11240,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"GAU\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":6360.1,\"PublishedFareTxt\":\"6,360\",\"ApiResultIndex\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"GAU-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"No Refund| Seats are Subject to availability | In case of non availability of the seats, we will refund the amount | \\\"Sunday is Non Working day for Special Fare Team\\\"| Booking done after 18:00 Hrs or 6 PM, PNR will be updated next working day after 11:00 Hrs or 11 AM\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Changes are not permitted | Booking confirmation will take minimum 60 Minutes\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Cancellation is not permitted | For more details contact us\",\"fcs\":{\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Note : Now you can do the web checkin directly on the airline website by yourself.  Enter PNR and LAST NAME. Select your passengers and process the web checkin( 1 Day before departure after 6PM ). Seats are chargeable as per airline |Name Change is not permitted |\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6000,\"Tax\":360.1,\"YQTax\":0,\"OtherCharges\":200,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":124.7,\"intPublishedFare\":6360.1,\"PublishedFare\":6540.24,\"OfferedFare\":6178.4,\"CommissionEarned\":57,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-6821526756_0GAUCCUG8546_37882547400985\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":55.02,\"apiMarkup\":0,\"IntCommission\":1.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":305.68,\"GSTOnMarkUp\":55.02,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":360.1,\"BaseFareCal\":6233.42,\"BaseFare\":6000,\"CommissionEarned\":57,\"TDS\":-3,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":200,\"MU\":124.7,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":55.02,\"apiMarkup\":0,\"IntCommission\":1.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":305.68,\"GSTOnMarkUp\":55.02,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":57,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.14,\"IntAgencyFixMarkUp\":305.68,\"IntTaxOnAgencyFixMarkUp\":55.02,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":55.02,\"PublishFare\":6540.24,\"CostToCustomer\":6540.24,\"BaseFareCal\":6233.42,\"intCommisionEarnedForAgency\":306.82,\"CostToCompany\":6233.42,\"intOfferedFare\":6178.4,\"intPublishFare\":6360.1,\"TripjackMarkup\":124.7,\"TripjackCommission\":57,\"TripjackTDS\":\"3\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"445\",\"originAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Guwahati\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-17T12:20\",\"SegFlightNumber\":\"G8-546\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"GAU\",\"originDepTime\":\"2022-09-17T11:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"11:05\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d07b8-f08d5-9102d-5cb60\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GAU\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":2,\"intSourceCityId\":11240,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106942846235\",\"FlightNumber\":\"G8-546\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"strTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"11:05\",\"ArrivalTime\":\"12:20\",\"TravelDate\":\"2022-09-17T11:05\",\"LocalFromTime\":\"2022-09-17 11:05\",\"FromUTCTime\":\"2022-09-17T11:05\",\"LocalToTime\":\"2022-09-17 12:20\",\"ToUTCTime\":\"2022-09-17T12:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":11240,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"GAU\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":6360.1,\"ApiResultIndex\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"d07b8-f08d5-9102d-5cb60\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6000,\"Tax\":360.1,\"YQTax\":0,\"OtherCharges\":200,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":124.7,\"intPublishedFare\":6360.1,\"PublishedFare\":6540.24,\"OfferedFare\":6178.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":305.68,\"GSTOnMarkUp\":55.02,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":360.1,\"BaseFareCal\":6233.42,\"BaseFare\":6000,\"CommissionEarned\":57,\"TDS\":-3,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":200,\"MU\":124.7,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":305.68,\"GSTOnMarkUp\":55.02,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"445\",\"originAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Guwahati\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-17T12:20\",\"SegFlightNumber\":\"G8-546\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"GAU\",\"originDepTime\":\"2022-09-17T11:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"11:05\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"localFromDateTime\":\"2022-09-17 11:05\",\"localToDateTime\":\"2022-09-17 12:20\",\"strSourceAirportCode\":\"GAU\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":2,\"intSourceCityId\":11240,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ106942846235\",\"amount\":6235.4,\"markup\":124.7,\"deliveryInfo\":{\"emails\":[\"das2techconsultancy@gmail.com\"],\"contacts\":[\"+917085589052\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-09-16T09:05:23.592\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"11366877\",\"fD\":{\"aI\":{\"code\":\"G8\",\"name\":\"Go First\",\"isLcc\":true},\"fN\":\"546\"},\"stops\":0,\"duration\":75,\"da\":{\"code\":\"GAU\",\"name\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"cityCode\":\"GAU\",\"city\":\"Guwahati\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"aa\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"\"},\"dt\":\"2022-09-17T11:05\",\"at\":\"2022-09-17T12:20\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"GAU-CCU\":\"UCN2GA\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"RAJU\",\"lN\":\"DAS\"},{\"pnrDetails\":{\"GAU-CCU\":\"UCN2GA\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"AMIR\",\"lN\":\"KHAN\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"NF\":6178.4,\"NCM\":57,\"CGST\":2.7,\"BF\":6000,\"SGST\":2.7,\"TAF\":360.1,\"TF\":6360.1},\"afC\":{\"NCM\":{\"OT\":60,\"TDS\":-3},\"TAF\":{\"MU\":124.7,\"OT\":200,\"MFT\":5.4,\"MF\":30}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"452105\",\"TPSysId\":\"452106\",\"VersionId\":[\"102912\"],\"CustomerSysId\":\"229600\",\"TrxId\":\"33925\",\"FareBreakdownid\":[\"360309\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'821108E147B647E1A86A426EEE6D5A8C','','0',NULL,NULL,'0','49.37.98.82','2022-09-16 03:32:11','2022-09-16 03:32:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-000017',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL);
INSERT INTO `tbl_flight_booking` VALUES (104,0,63,12577,0,0,NULL,'2022-09-30',NULL,NULL,'I5-779','AirAsia India','1',1,'fab5e-fc7b1-cc788-883c8','75','05:10:00','07:50:00',0,'BT',160,'2h 40m',7701,0,'DEL','GOI','Non-stop',1,1,9230.52,'22-16-0018854295_0DELGOII5779_160560067704886',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',8024,1063.89,0,464,0,15,9230.52,1.91,0,0,63.18,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ103442968888\",\"FlightNumber\":\"I5-779\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:10\",\"ArrivalTime\":\"07:50\",\"TravelDate\":\"2022-09-30T05:10\",\"LocalFromTime\":\"2022-09-30 05:10\",\"FromUTCTime\":\"2022-09-30T05:10\",\"LocalToTime\":\"2022-09-30 07:50\",\"ToUTCTime\":\"2022-09-30T07:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 30 Sep\",\"ArrivalDateTxt\":\"Fri, 30 Sep\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9087.89,\"PublishedFareTxt\":\"9,088\",\"ApiResultIndex\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-GOI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-72 hrs Rs 3,250 + Fare Difference __nls__ Before 72 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8024,\"Tax\":1063.89,\"YQTax\":0,\"OtherCharges\":464,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":404,\"CarrierMiscFee\":0,\"MUFee\":178.19,\"intPublishedFare\":9087.89,\"PublishedFare\":9230.52,\"OfferedFare\":8814.42,\"CommissionEarned\":95.28,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.02,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-0018854295_0DELGOII5779_149441381474466\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":63.18,\"apiMarkup\":0,\"IntCommission\":1.91,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":351.01,\"GSTOnMarkUp\":63.18,\"CommEarned\":1.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":9087.89,\"oldFare\":7483.43,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1063.89,\"BaseFareCal\":8877.6,\"BaseFare\":8024,\"CommissionEarned\":95.28,\"TDS\":-5.02,\"MF\":15,\"YQ\":0,\"AGST\":404,\"MFT\":2.7,\"OT\":464,\"MU\":178.19,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":63.18,\"apiMarkup\":0,\"IntCommission\":1.91,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":351.01,\"GSTOnMarkUp\":63.18,\"CommEarned\":1.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":95.28,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.91,\"IntAgencyFixMarkUp\":351.01,\"IntTaxOnAgencyFixMarkUp\":63.18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":63.18,\"PublishFare\":9230.52,\"CostToCustomer\":9230.52,\"BaseFareCal\":8877.6,\"intCommisionEarnedForAgency\":352.91,\"CostToCompany\":8877.6,\"intOfferedFare\":8814.42,\"intPublishFare\":9087.89,\"TripjackMarkup\":178.19,\"TripjackCommission\":95.28,\"TripjackTDS\":\"5.02\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"731\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-09-30T07:50\",\"SegFlightNumber\":\"I5-779\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-30T05:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:10\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBLD\",\"Price\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"SDAI\",\"Price\":300,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"RPCB\",\"Price\":400,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"JMCB\",\"Price\":400,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"XCCB\",\"Price\":500,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"SICB\",\"Price\":500,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"RICB\",\"Price\":500,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PTCB\",\"Price\":500,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"KACB\",\"Price\":500,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"GACB\",\"Price\":500,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"COCB\",\"Price\":500,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"CJCB\",\"Price\":500,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"AMCB\",\"Price\":500,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"fab5e-fc7b1-cc788-883c8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103442968888\",\"FlightNumber\":\"I5-779\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"strTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:10\",\"ArrivalTime\":\"07:50\",\"TravelDate\":\"2022-09-30T05:10\",\"LocalFromTime\":\"2022-09-30 05:10\",\"FromUTCTime\":\"2022-09-30T05:10\",\"LocalToTime\":\"2022-09-30 07:50\",\"ToUTCTime\":\"2022-09-30T07:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 30 Sep\",\"ArrivalDateTxt\":\"Fri, 30 Sep\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9087.89,\"ApiResultIndex\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"fab5e-fc7b1-cc788-883c8\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8024,\"Tax\":1063.89,\"YQTax\":0,\"OtherCharges\":464,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":404,\"CarrierMiscFee\":0,\"MUFee\":178.19,\"intPublishedFare\":9087.89,\"PublishedFare\":9230.52,\"OfferedFare\":8814.42,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":351.01,\"GSTOnMarkUp\":63.18,\"CommEarned\":1.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1063.89,\"BaseFareCal\":8877.6,\"BaseFare\":8024,\"CommissionEarned\":95.28,\"TDS\":-5.02,\"MF\":15,\"YQ\":0,\"AGST\":404,\"MFT\":2.7,\"OT\":464,\"MU\":178.19,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":351.01,\"GSTOnMarkUp\":63.18,\"CommEarned\":1.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"731\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-09-30T07:50\",\"SegFlightNumber\":\"I5-779\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-30T05:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:10\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"localFromDateTime\":\"2022-09-30 05:10\",\"localToDateTime\":\"2022-09-30 07:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','106.213.49.149','2022-09-17 08:36:43','2022-09-17 08:36:43',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(105,0,61,12577,0,0,NULL,'2022-09-18',NULL,NULL,'G8-520','Go First','1',1,'515f9-9e2dc-fd925-03b9c','240','19:30:00','22:15:00',0,'SP',165,'2h 45m',18676,14323,'BOM','CCU','Non-stop',1,1,5291.6,'1-4079282027_1BOMCCUG8520_121850183854410',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',4296,849.59,0,511,0,15,5291.6,1.84,0,0,51.39,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ105643008088\",\"FlightNumber\":\"G8-520\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2022-09-18T19:30\",\"LocalFromTime\":\"2022-09-18 19:30\",\"FromUTCTime\":\"2022-09-18T19:30\",\"LocalToTime\":\"2022-09-18 22:15\",\"ToUTCTime\":\"2022-09-18T22:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Sun, 18 Sep\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5145.59,\"PublishedFareTxt\":\"5,146\",\"ApiResultIndex\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4296,\"Tax\":849.59,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.89,\"intPublishedFare\":5145.59,\"PublishedFare\":5291.6,\"OfferedFare\":4952.87,\"CommissionEarned\":91.83,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.83,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4079282027_0BOMCCUG8520_200711614861649\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":51.39,\"apiMarkup\":0,\"IntCommission\":1.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.59,\"BaseFareCal\":5004.26,\"BaseFare\":4296,\"CommissionEarned\":91.83,\"TDS\":-4.83,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.39,\"apiMarkup\":0,\"IntCommission\":1.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":91.83,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.84,\"IntAgencyFixMarkUp\":285.5,\"IntTaxOnAgencyFixMarkUp\":51.39,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.39,\"PublishFare\":5291.6,\"CostToCustomer\":5291.6,\"BaseFareCal\":5004.26,\"intCommisionEarnedForAgency\":287.34,\"CostToCompany\":5004.26,\"intOfferedFare\":4952.87,\"intPublishFare\":5145.59,\"TripjackMarkup\":100.89,\"TripjackCommission\":91.83,\"TripjackTDS\":\"4.83\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"954\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-18T22:15\",\"SegFlightNumber\":\"G8-520\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-18T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"515f9-9e2dc-fd925-03b9c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105643008088\",\"FlightNumber\":\"G8-520\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"strTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2022-09-18T19:30\",\"LocalFromTime\":\"2022-09-18 19:30\",\"FromUTCTime\":\"2022-09-18T19:30\",\"LocalToTime\":\"2022-09-18 22:15\",\"ToUTCTime\":\"2022-09-18T22:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Sun, 18 Sep\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5145.59,\"ApiResultIndex\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"515f9-9e2dc-fd925-03b9c\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4296,\"Tax\":849.59,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.89,\"intPublishedFare\":5145.59,\"PublishedFare\":5291.6,\"OfferedFare\":4952.87,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.59,\"BaseFareCal\":5004.26,\"BaseFare\":4296,\"CommissionEarned\":91.83,\"TDS\":-4.83,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"954\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-18T22:15\",\"SegFlightNumber\":\"G8-520\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-18T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"localFromDateTime\":\"2022-09-18 19:30\",\"localToDateTime\":\"2022-09-18 22:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','49.32.244.213','2022-09-17 16:03:50','2022-09-17 16:03:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(106,0,47,12577,0,454868,'XHCYNR','2022-09-20','TJ108343205516',NULL,'9I-770','Alliance Air','',1,'a9f4b-c6b6f-3fef5-8f0b1','43','18:15:00','19:45:00',0,'S',90,'1h 30m',14323,11240,'CCU','GAU','Non-stop',2,1,8907.86,'28-2147762209_0CCUGAU9I770_48781076412868',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/9I.png','INR',6800,2297.78,0,2084,0,30,8907.86,3.88,0,0,27.21,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ108343205516\",\"FlightNumber\":\"9I-770\",\"AirlineName\":\"Alliance Air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"18:15\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-20T18:15\",\"LocalFromTime\":\"2022-09-20 18:15\",\"FromUTCTime\":\"2022-09-20T18:15\",\"LocalToTime\":\"2022-09-20 19:45\",\"ToUTCTime\":\"2022-09-20T19:45\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Tue, 20 Sep\",\"ArrivalDateTxt\":\"Tue, 20 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":11240,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9097.78,\"PublishedFareTxt\":\"9,098\",\"ApiResultIndex\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"FareRuleDetails\":{\"fareRule\":{\"CCU-GAU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Govt Taxes refundable\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":2500,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__INR 2500 or basic fare (whichever is lower) + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":125,\"ARF\":2500,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3500 or basic fare (whichever is lower) __nls__ Before 72 hrs INR 3000 or basic fare (whichever is lower)\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6800,\"Tax\":2297.78,\"YQTax\":0,\"OtherCharges\":2084,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":178.38,\"intPublishedFare\":9097.78,\"PublishedFare\":8907.86,\"OfferedFare\":8725.6,\"CommissionEarned\":193.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"28-2147762209_0CCUGAU9I770_77237131237249\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SUPSAV\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":27.21,\"apiMarkup\":0,\"IntCommission\":3.88,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":151.17,\"GSTOnMarkUp\":27.21,\"CommEarned\":3.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2297.78,\"BaseFareCal\":8752.81,\"BaseFare\":6800,\"CommissionEarned\":193.8,\"TDS\":-10.2,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2084,\"MU\":178.38,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":27.21,\"apiMarkup\":0,\"IntCommission\":3.88,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":151.17,\"GSTOnMarkUp\":27.21,\"CommEarned\":3.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":193.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.88,\"IntAgencyFixMarkUp\":151.17,\"IntTaxOnAgencyFixMarkUp\":27.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":27.21,\"PublishFare\":8907.86,\"CostToCustomer\":8907.86,\"BaseFareCal\":8752.81,\"intCommisionEarnedForAgency\":155.05,\"CostToCompany\":8752.81,\"intOfferedFare\":8725.6,\"intPublishFare\":9097.78,\"TripjackMarkup\":178.38,\"TripjackCommission\":193.8,\"TripjackTDS\":\"10.2\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"443\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-09-20T19:45\",\"SegFlightNumber\":\"9I-770\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"S\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-20T18:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:15\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"2951\",\"Price\":2000,\"Weight\":\"5 kilos - INR 2000 (CCU-GAU)\"},{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"3165\",\"Price\":4000,\"Weight\":\"10 kilos - INR 4000 (CCU-GAU)\"},{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"3337\",\"Price\":6000,\"Weight\":\"15 kilos - INR 6000 (CCU-GAU)\"},{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"3590\",\"Price\":8000,\"Weight\":\"20 kilos - INR 8000 (CCU-GAU)\"},{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"3646\",\"Price\":12000,\"Weight\":\"30 kilos - INR 12000 (CCU-GAU)\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a9f4b-c6b6f-3fef5-8f0b1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-20 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"GAU\",\"intMemberCount\":2,\"intSourceCityId\":14323,\"intDestinationCityId\":11240,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108343205516\",\"FlightNumber\":\"9I-770\",\"AirlineName\":\"Alliance Air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"strTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"18:15\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-20T18:15\",\"LocalFromTime\":\"2022-09-20 18:15\",\"FromUTCTime\":\"2022-09-20T18:15\",\"LocalToTime\":\"2022-09-20 19:45\",\"ToUTCTime\":\"2022-09-20T19:45\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Tue, 20 Sep\",\"ArrivalDateTxt\":\"Tue, 20 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":11240,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9097.78,\"ApiResultIndex\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"SearchFlightTraceId\":\"a9f4b-c6b6f-3fef5-8f0b1\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6800,\"Tax\":2297.78,\"YQTax\":0,\"OtherCharges\":2084,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":178.38,\"intPublishedFare\":9097.78,\"PublishedFare\":8907.86,\"OfferedFare\":8725.6,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":151.17,\"GSTOnMarkUp\":27.21,\"CommEarned\":3.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2297.78,\"BaseFareCal\":8752.81,\"BaseFare\":6800,\"CommissionEarned\":193.8,\"TDS\":-10.2,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2084,\"MU\":178.38,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":151.17,\"GSTOnMarkUp\":27.21,\"CommEarned\":3.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"443\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-09-20T19:45\",\"SegFlightNumber\":\"9I-770\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"S\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-20T18:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:15\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"localFromDateTime\":\"2022-09-20 18:15\",\"localToDateTime\":\"2022-09-20 19:45\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"GAU\",\"intMemberCount\":2,\"intSourceCityId\":14323,\"intDestinationCityId\":11240,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ108343205516\",\"amount\":8919.4,\"markup\":178.38,\"deliveryInfo\":{\"emails\":[\"das2techconsultancy@gmail.com\"],\"contacts\":[\"+917085589052\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-09-20T09:13:05.711\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"11460823\",\"fD\":{\"aI\":{\"code\":\"9I\",\"name\":\"Alliance Air\",\"isLcc\":false},\"fN\":\"770\",\"eT\":\"ATR-72\"},\"stops\":0,\"duration\":90,\"da\":{\"code\":\"CCU\",\"name\":\"Netaji Subhas Chandra Bose Intl\",\"cityCode\":\"CCU\",\"city\":\"Kolkata\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"T2\"},\"aa\":{\"code\":\"GAU\",\"name\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"cityCode\":\"GAU\",\"city\":\"Guwahati\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2022-09-20T18:15\",\"at\":\"2022-09-20T19:45\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"CCU-GAU\":\"XHCYNR\"},\"ticketNumberDetails\":{\"CCU-GAU\":\"0000052167075\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"RAJU\",\"lN\":\"DAS\"},{\"pnrDetails\":{\"CCU-GAU\":\"XHCYNR\"},\"ticketNumberDetails\":{\"CCU-GAU\":\"0000052167076\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"AMIR\",\"lN\":\"KHAN\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"SGST\":2.7,\"BF\":6800,\"NF\":8725.6,\"TF\":9097.78,\"NCM\":193.8,\"TAF\":2297.78,\"CGST\":2.7},\"afC\":{\"NCM\":{\"TDS\":-10.2,\"OT\":204},\"TAF\":{\"AGST\":0,\"MFT\":5.4,\"YQ\":0,\"MF\":30,\"OT\":2084,\"MU\":178.38}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"454867\",\"TPSysId\":\"454868\",\"VersionId\":[\"104165\"],\"CustomerSysId\":\"229600\",\"TrxId\":\"34227\",\"FareBreakdownid\":[\"360538\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'857885BB72CF4077898782064FB9F05D','','0',NULL,NULL,'0','14.98.181.171','2022-09-20 03:39:29','2022-09-20 03:39:29',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-09-000018',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(107,0,62,12577,0,0,NULL,'2022-10-05',NULL,NULL,'SG-695','SpiceJet','1',1,'d40a6-aa15e-2d378-bdf46','463','10:55:00','13:40:00',0,'DD',165,'2h 45m',11240,12995,'GAU','JAI','Non-stop',1,1,10772.49,'4-0039585736_0GAUJAISG695_273683222762046',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',9685,1031.83,0,804,0,15,10772.49,3.68,0,0,68.05,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ107744314650\",\"FlightNumber\":\"SG-695\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:55\",\"ArrivalTime\":\"13:40\",\"TravelDate\":\"2022-10-05T10:55\",\"LocalFromTime\":\"2022-10-05 10:55\",\"FromUTCTime\":\"2022-10-05T10:55\",\"LocalToTime\":\"2022-10-05 13:40\",\"ToUTCTime\":\"2022-10-05T13:40\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Wed, 05 Oct\",\"ArrivalDateTxt\":\"Wed, 05 Oct\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":11240,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"GAU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10716.83,\"PublishedFareTxt\":\"10,717\",\"ApiResultIndex\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"GAU-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3350,\"ARFT\":167.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"CCF\":50,\"ACFT\":180,\"CCFT\":9,\"ACF\":3600}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9685,\"Tax\":1031.83,\"YQTax\":0,\"OtherCharges\":804,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":210.13,\"intPublishedFare\":10716.83,\"PublishedFare\":10772.49,\"OfferedFare\":10322.68,\"CommissionEarned\":184.02,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.68,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0039585736_0GAUJAISG695_21724737622605\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":68.05,\"apiMarkup\":0,\"IntCommission\":3.68,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":378.08,\"GSTOnMarkUp\":68.05,\"CommEarned\":3.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1031.83,\"BaseFareCal\":10390.73,\"BaseFare\":9685,\"CommissionEarned\":184.02,\"TDS\":-9.68,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":804,\"MU\":210.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":68.05,\"apiMarkup\":0,\"IntCommission\":3.68,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":378.08,\"GSTOnMarkUp\":68.05,\"CommEarned\":3.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":184.02,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.68,\"IntAgencyFixMarkUp\":378.08,\"IntTaxOnAgencyFixMarkUp\":68.05,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":68.05,\"PublishFare\":10772.49,\"CostToCustomer\":10772.49,\"BaseFareCal\":10390.73,\"intCommisionEarnedForAgency\":381.76,\"CostToCompany\":10390.73,\"intOfferedFare\":10322.68,\"intPublishFare\":10716.83,\"TripjackMarkup\":210.13,\"TripjackCommission\":184.02,\"TripjackTDS\":\"9.68\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"520\",\"originAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Guwahati\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-10-05T13:40\",\"SegFlightNumber\":\"SG-695\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GAU\",\"originDepTime\":\"2022-10-05T10:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"10:55\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"BVG\",\"Price\":70,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"GFCM\",\"Price\":445,\"Description\":\"Vegetarian Gluten-free Cold Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d40a6-aa15e-2d378-bdf46\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-10-05 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GAU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":11240,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107744314650\",\"FlightNumber\":\"SG-695\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"strTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:55\",\"ArrivalTime\":\"13:40\",\"TravelDate\":\"2022-10-05T10:55\",\"LocalFromTime\":\"2022-10-05 10:55\",\"FromUTCTime\":\"2022-10-05T10:55\",\"LocalToTime\":\"2022-10-05 13:40\",\"ToUTCTime\":\"2022-10-05T13:40\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Wed, 05 Oct\",\"ArrivalDateTxt\":\"Wed, 05 Oct\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":11240,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"GAU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10716.83,\"ApiResultIndex\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"d40a6-aa15e-2d378-bdf46\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9685,\"Tax\":1031.83,\"YQTax\":0,\"OtherCharges\":804,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":210.13,\"intPublishedFare\":10716.83,\"PublishedFare\":10772.49,\"OfferedFare\":10322.68,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":378.08,\"GSTOnMarkUp\":68.05,\"CommEarned\":3.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1031.83,\"BaseFareCal\":10390.73,\"BaseFare\":9685,\"CommissionEarned\":184.02,\"TDS\":-9.68,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":804,\"MU\":210.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":378.08,\"GSTOnMarkUp\":68.05,\"CommEarned\":3.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"520\",\"originAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Guwahati\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-10-05T13:40\",\"SegFlightNumber\":\"SG-695\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GAU\",\"originDepTime\":\"2022-10-05T10:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"10:55\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"localFromDateTime\":\"2022-10-05 10:55\",\"localToDateTime\":\"2022-10-05 13:40\",\"strSourceAirportCode\":\"GAU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":11240,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'659555033AB745F9AC4115541E260D83','','0',NULL,NULL,'0','47.29.169.215','2022-10-02 10:14:26','2022-10-02 10:14:26',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(108,0,29,12577,0,481896,NULL,'2022-11-05',NULL,NULL,'6E-2015','IndiGo','1',1,'98f86-663cc-3e82b-30745','267','12:40:00','15:00:00',0,'T',140,'2h 20m',18676,7701,'BOM','DEL','Non-stop',1,1,4616.31,'5-8227328133_6BOMDEL6E2015_24035060458591',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/6E.gif','INR',3645,769.25,0,478,0,15,4616.31,0.69,0,0,49.2,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ101246634026\",\"FlightNumber\":\"6E-2015\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:40\",\"ArrivalTime\":\"15:00\",\"TravelDate\":\"2022-11-05T12:40\",\"LocalFromTime\":\"2022-11-05 12:40\",\"FromUTCTime\":\"2022-11-05T12:40\",\"LocalToTime\":\"2022-11-05 15:00\",\"ToUTCTime\":\"2022-11-05T15:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 05 Nov\",\"ArrivalDateTxt\":\"Sat, 05 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4414.25,\"PublishedFareTxt\":\"4,414\",\"ApiResultIndex\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARFT\":162.5,\"CRF\":50,\"CRFT\":9,\"ARF\":3250}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3645,\"Tax\":769.25,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":187,\"CarrierMiscFee\":0,\"MUFee\":86.55,\"intPublishedFare\":4414.25,\"PublishedFare\":4616.31,\"OfferedFare\":4293.07,\"CommissionEarned\":34.63,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8227328133_0BOMDEL6E2015_18356979159957\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":49.2,\"apiMarkup\":0,\"IntCommission\":0.69,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":769.25,\"BaseFareCal\":4342.27,\"BaseFare\":3645,\"CommissionEarned\":34.63,\"TDS\":-1.82,\"MF\":15,\"YQ\":0,\"AGST\":187,\"MFT\":2.7,\"OT\":478,\"MU\":86.55,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.2,\"apiMarkup\":0,\"IntCommission\":0.69,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":34.63,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.69,\"IntAgencyFixMarkUp\":273.35,\"IntTaxOnAgencyFixMarkUp\":49.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.2,\"PublishFare\":4616.31,\"CostToCustomer\":4616.31,\"BaseFareCal\":4342.27,\"intCommisionEarnedForAgency\":274.04,\"CostToCompany\":4342.27,\"intOfferedFare\":4293.07,\"intPublishFare\":4414.25,\"TripjackMarkup\":86.55,\"TripjackCommission\":34.63,\"TripjackTDS\":\"1.82\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"463\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-05T15:00\",\"SegFlightNumber\":\"6E-2015\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-05T12:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:40\",\"strArrivalDtTime\":\"15:00\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"98f86-663cc-3e82b-30745\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-05 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101246634026\",\"FlightNumber\":\"6E-2015\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"strTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:40\",\"ArrivalTime\":\"15:00\",\"TravelDate\":\"2022-11-05T12:40\",\"LocalFromTime\":\"2022-11-05 12:40\",\"FromUTCTime\":\"2022-11-05T12:40\",\"LocalToTime\":\"2022-11-05 15:00\",\"ToUTCTime\":\"2022-11-05T15:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 05 Nov\",\"ArrivalDateTxt\":\"Sat, 05 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4414.25,\"ApiResultIndex\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"98f86-663cc-3e82b-30745\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3645,\"Tax\":769.25,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":187,\"CarrierMiscFee\":0,\"MUFee\":86.55,\"intPublishedFare\":4414.25,\"PublishedFare\":4616.31,\"OfferedFare\":4293.07,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":769.25,\"BaseFareCal\":4342.27,\"BaseFare\":3645,\"CommissionEarned\":34.63,\"TDS\":-1.82,\"MF\":15,\"YQ\":0,\"AGST\":187,\"MFT\":2.7,\"OT\":478,\"MU\":86.55,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"463\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-05T15:00\",\"SegFlightNumber\":\"6E-2015\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-05T12:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:40\",\"strArrivalDtTime\":\"15:00\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"localFromDateTime\":\"2022-11-05 12:40\",\"localToDateTime\":\"2022-11-05 15:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2703\",\"message\":\"CreditLine used is locked!\",\"details\":\"CreditLine used is locked!\"}]}',NULL,1,0,'183E70CF11BC46BD9D1B5A44CDCE6DF8','','0',NULL,NULL,'0','122.161.53.214','2022-10-28 11:54:07','2022-10-28 11:54:07',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(109,0,63,12577,0,483606,NULL,'2022-12-03',NULL,NULL,'SG-163','SpiceJet','1',1,'1ed3c-e0ff5-6869a-3d8d2','463','13:10:00','16:00:00',0,'CP',170,'2h 50m',18676,2012,'BOM','IXB','Non-stop',2,1,14053.85,'4-9624522565_0BOMIXBSG163_24745665117643',1,2,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',12672,1676.74,0,1360,0,30,14053.85,10.83,0,0,78.92,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ109846892928\",\"FlightNumber\":\"SG-163\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-03T13:10\",\"LocalFromTime\":\"2022-12-03 13:10\",\"FromUTCTime\":\"2022-12-03T13:10\",\"LocalToTime\":\"2022-12-03 16:00\",\"ToUTCTime\":\"2022-12-03T16:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 03 Dec\",\"ArrivalDateTxt\":\"Sat, 03 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2012,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":22,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":14348.74,\"PublishedFareTxt\":\"14,349\",\"ApiResultIndex\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12672,\"Tax\":1676.74,\"YQTax\":0,\"OtherCharges\":1360,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":281.34,\"intPublishedFare\":14348.74,\"PublishedFare\":14053.85,\"OfferedFare\":13525.68,\"CommissionEarned\":541.72,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-28.52,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9624522565_0BOMIXBSG163_112297400208705\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":78.92,\"apiMarkup\":0,\"IntCommission\":10.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":438.42,\"GSTOnMarkUp\":78.92,\"CommEarned\":10.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1676.74,\"BaseFareCal\":13604.6,\"BaseFare\":12672,\"CommissionEarned\":541.72,\"TDS\":-28.52,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1360,\"MU\":281.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":78.92,\"apiMarkup\":0,\"IntCommission\":10.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":438.42,\"GSTOnMarkUp\":78.92,\"CommEarned\":10.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":541.72,\"IntCommissionValInPercentage\":2,\"IntCommission\":10.83,\"IntAgencyFixMarkUp\":438.42,\"IntTaxOnAgencyFixMarkUp\":78.92,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":78.92,\"PublishFare\":14053.85,\"CostToCustomer\":14053.85,\"BaseFareCal\":13604.6,\"intCommisionEarnedForAgency\":449.26,\"CostToCompany\":13604.6,\"intOfferedFare\":13525.68,\"intPublishFare\":14348.74,\"TripjackMarkup\":281.34,\"TripjackCommission\":541.72,\"TripjackTDS\":\"28.52\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"239\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-03T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-03T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":22,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"GFCM\",\"Price\":377,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"1ed3c-e0ff5-6869a-3d8d2\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-12-03 12:00\",\"localToDateTime\":\"2022-12-09 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"IXB\",\"intMemberCount\":2,\"intSourceCityId\":18676,\"intDestinationCityId\":2012,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109846892928\",\"FlightNumber\":\"SG-163\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"strTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-03T13:10\",\"LocalFromTime\":\"2022-12-03 13:10\",\"FromUTCTime\":\"2022-12-03T13:10\",\"LocalToTime\":\"2022-12-03 16:00\",\"ToUTCTime\":\"2022-12-03T16:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 03 Dec\",\"ArrivalDateTxt\":\"Sat, 03 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2012,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":22,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":28826,\"ApiResultIndex\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"1ed3c-e0ff5-6869a-3d8d2\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":25904,\"Tax\":2922,\"YQTax\":0,\"OtherCharges\":2286,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":565.2,\"intPublishedFare\":28826,\"PublishedFare\":28613.13,\"OfferedFare\":27561.96,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":878.98,\"GSTOnMarkUp\":158.22,\"CommEarned\":13.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2922,\"BaseFareCal\":27720.18,\"BaseFare\":25904,\"CommissionEarned\":698.84,\"TDS\":-36.8,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":2286,\"MU\":565.2,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"FixedMarkUp\":878.98,\"GSTOnMarkUp\":158.22,\"CommEarned\":13.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"239\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-03T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-03T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":22,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"842\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"HR\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"localFromDateTime\":\"2022-12-03 13:10\",\"localToDateTime\":\"2022-12-03 16:00\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":18676,\"intDestinationCityId\":2012,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2703\",\"message\":\"CreditLine used is locked!\",\"details\":\"CreditLine used is locked!\"}]}',NULL,1,0,'7EF5E247653D4AEA9156D5C0C08E1339','','0',NULL,NULL,'0','106.195.14.223','2022-10-31 10:00:47','2022-10-31 10:00:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(110,109,63,12577,0,483606,NULL,'2022-12-09',NULL,NULL,'SG-168','SpiceJet','1',1,'1ed3c-e0ff5-6869a-3d8d2','463','16:30:00','19:35:00',0,'HR',185,'3h 5m',18676,2012,'IXB','BOM','Non-stop',2,1,14559.28,'4-9624522565_0IXBBOMSG168_24745664243711',2,2,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',13232,1245.26,0,926,0,30,14559.28,3.14,0,0,79.3,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ109846892928\",\"FlightNumber\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9624522565_0IXBBOMSG168_24745664243711\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"HR\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2012,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":14477.26,\"PublishedFareTxt\":\"14,477\",\"ApiResultIndex\":\"4-9624522565_0IXBBOMSG168_24745664243711\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13232,\"Tax\":1245.26,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":283.86,\"intPublishedFare\":14477.26,\"PublishedFare\":14559.28,\"OfferedFare\":14036.28,\"CommissionEarned\":157.12,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.28,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9624522565_1IXBBOMSG168_112297403990805\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":79.3,\"apiMarkup\":0,\"IntCommission\":3.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":440.56,\"GSTOnMarkUp\":79.3,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1245.26,\"BaseFareCal\":14115.58,\"BaseFare\":13232,\"CommissionEarned\":157.12,\"TDS\":-8.28,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":283.86,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79.3,\"apiMarkup\":0,\"IntCommission\":3.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":440.56,\"GSTOnMarkUp\":79.3,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":157.12,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.14,\"IntAgencyFixMarkUp\":440.56,\"IntTaxOnAgencyFixMarkUp\":79.3,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79.3,\"PublishFare\":14559.28,\"CostToCustomer\":14559.28,\"BaseFareCal\":14115.58,\"intCommisionEarnedForAgency\":443.7,\"CostToCompany\":14115.58,\"intOfferedFare\":14036.28,\"intPublishFare\":14477.26,\"TripjackMarkup\":283.86,\"TripjackCommission\":157.12,\"TripjackTDS\":\"8.28\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"842\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"HR\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"GFCM\",\"Price\":377,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"1ed3c-e0ff5-6869a-3d8d2\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9624522565_0IXBBOMSG168_24745664243711\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-12-03 12:00\",\"localToDateTime\":\"2022-12-09 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"IXB\",\"intMemberCount\":2,\"intSourceCityId\":18676,\"intDestinationCityId\":2012,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2703\",\"message\":\"CreditLine used is locked!\",\"details\":\"CreditLine used is locked!\"}]}',NULL,1,0,'7EF5E247653D4AEA9156D5C0C08E1339','','0',NULL,NULL,'0','106.195.14.223','2022-10-31 10:00:47','2022-10-31 10:00:47',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(111,0,17,12577,0,0,NULL,'2022-11-09',NULL,NULL,'AI-817','Air India','',1,'c5192-82d19-619f3-f8333','42','04:55:00','22:05:00',0,'S',1030,'17h 10m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,4254.51,'21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/AI.gif','INR',3054,997.13,0,390,0,15,4254.51,0.67,0,0,48.12,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ103446971792\",\"FlightNumber\":\"AI-817\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"04:55\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2022-11-09T04:55\",\"LocalFromTime\":\"2022-11-09 04:55\",\"FromUTCTime\":\"2022-11-09T04:55\",\"LocalToTime\":\"2022-11-09 22:05\",\"ToUTCTime\":\"2022-11-09T22:05\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":825,\"LAYOVERDuration\":\"13h 45m\",\"FlyingMinutes\":1030,\"DepartureDateTxt\":\"Wed, 09 Nov\",\"ArrivalDateTxt\":\"Wed, 09 Nov\",\"FlightDuration\":\"17h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4051.13,\"PublishedFareTxt\":\"4,051\",\"ApiResultIndex\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non-Refundable (Basic fare forfeited, Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 26 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3000,\"CRFT\":9,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 26 Hrs before scheduled departure__nls__Cancellation Penalty : INR 4,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":200,\"ACF\":4000,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3054,\"Tax\":997.13,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":340,\"MUFee\":79.43,\"intPublishedFare\":4051.13,\"PublishedFare\":4254.51,\"OfferedFare\":3938.41,\"CommissionEarned\":33.29,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.75,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2995282260_0DELAMDAI817AMDBOMAI638_17521698104838\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.12,\"apiMarkup\":0,\"IntCommission\":0.67,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":267.31,\"GSTOnMarkUp\":48.12,\"CommEarned\":0.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":997.13,\"BaseFareCal\":3986.53,\"BaseFare\":3054,\"CommissionEarned\":33.29,\"TDS\":-1.75,\"MF\":15,\"YQ\":0,\"AGST\":170,\"MFT\":2.7,\"OT\":390,\"MU\":79.43,\"YR\":340,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.12,\"apiMarkup\":0,\"IntCommission\":0.67,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":267.31,\"GSTOnMarkUp\":48.12,\"CommEarned\":0.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":33.29,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.67,\"IntAgencyFixMarkUp\":267.31,\"IntTaxOnAgencyFixMarkUp\":48.12,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.12,\"PublishFare\":4254.51,\"CostToCustomer\":4254.51,\"BaseFareCal\":3986.53,\"intCommisionEarnedForAgency\":267.98,\"CostToCompany\":3986.53,\"intOfferedFare\":3938.41,\"intPublishFare\":4051.13,\"TripjackMarkup\":79.43,\"TripjackCommission\":33.29,\"TripjackTDS\":\"1.75\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"488\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-11-09T06:55\",\"SegFlightNumber\":\"AI-817\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-09T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":825,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"13h 45m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"489\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-09T22:05\",\"SegFlightNumber\":\"AI-638\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-11-09T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c5192-82d19-619f3-f8333\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103446971792\",\"FlightNumber\":\"AI-817\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"strTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"04:55\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2022-11-09T04:55\",\"LocalFromTime\":\"2022-11-09 04:55\",\"FromUTCTime\":\"2022-11-09T04:55\",\"LocalToTime\":\"2022-11-09 22:05\",\"ToUTCTime\":\"2022-11-09T22:05\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":825,\"LAYOVERDuration\":\"13h 45m\",\"FlyingMinutes\":1030,\"DepartureDateTxt\":\"Wed, 09 Nov\",\"ArrivalDateTxt\":\"Wed, 09 Nov\",\"FlightDuration\":\"17h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4051.13,\"ApiResultIndex\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"c5192-82d19-619f3-f8333\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3054,\"Tax\":997.13,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":340,\"MUFee\":79.43,\"intPublishedFare\":4051.13,\"PublishedFare\":4254.51,\"OfferedFare\":3938.41,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":267.31,\"GSTOnMarkUp\":48.12,\"CommEarned\":0.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":997.13,\"BaseFareCal\":3986.53,\"BaseFare\":3054,\"CommissionEarned\":33.29,\"TDS\":-1.75,\"MF\":15,\"YQ\":0,\"AGST\":170,\"MFT\":2.7,\"OT\":390,\"MU\":79.43,\"YR\":340,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":267.31,\"GSTOnMarkUp\":48.12,\"CommEarned\":0.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"488\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-11-09T06:55\",\"SegFlightNumber\":\"AI-817\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-09T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":825,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"13h 45m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"489\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-09T22:05\",\"SegFlightNumber\":\"AI-638\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-11-09T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"localFromDateTime\":\"2022-11-09 04:55\",\"localToDateTime\":\"2022-11-09 22:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,3,0,'9FB64B08478C47EB8ADAB37FBCAA3E7E','','0',NULL,NULL,'0','180.151.10.154','2022-11-01 06:27:38','2022-11-01 06:27:38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(112,0,20,12728,0,0,NULL,'2022-11-24','DMCS103800387205','TJS103800387205','G8-404','Go First','1',1,'0d7fa-b2e18-5e200-e66dd','240','10:20:00','15:30:00',0,'BC',310,'05h 10m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,27717.3,'1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989',1,1,0,'https://b2b.svezz.com/public/upload/AirlineLogo/G8.gif','INR',24437,3280.3,0,799,0,400,27717.3,0,0,110,19.8,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS103800387205\",\"bookingId_TJ\":\"TJS103800387205\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"0d7fa-b2e18-5e200-e66dd\",\"apiTraceId\":\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2022-11-24T10:20\",\"LocalFromTime\":\"2022-11-24 10:20\",\"FromUTCTime\":\"2022-11-24T10:20\",\"LocalToTime\":\"2022-11-24 15:30\",\"ToUTCTime\":\"2022-11-24T15:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 24 Nov\",\"ArrivalDateTxt\":\"Thu, 24 Nov\",\"FlightDuration\":\"05h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":65,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"27,717\",\"ApiResultIndex\":\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":24437,\"Tax\":3293,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":1222,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":27730,\"PublishedFare\":27717.3,\"PublishedFareAgent\":27717.3,\"OfferedFareAgent\":27717.3,\"OfferedFare\":26645,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-5410319267_0DELVNSG8404VNSBOMG8350_274810402287706\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"fareIdentifierSP\":\"CORPORATE\",\"SeatAvailable\":65,\"classOfBooking\":\"BC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":141.8338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":142.5,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":27717.3,\"CostToAgent\":27717.3,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3293,\"TotalBaseFare\":27730,\"BaseFareCal\":26664.8,\"BaseFare\":24437,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":1222,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":141.8338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":142.5,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":27717.3,\"CostToAgent\":27717.3,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":50,\"IntCommission\":142.5,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":141.8338983050848,\"PublishFare\":27717.3,\"CostToCustomer\":27717.3,\"BaseFareCal\":26664.8,\"intCommisionEarnedForAgency\":1052.5,\"CostToCompany\":26664.8,\"intOfferedFare\":26645,\"intPublishFare\":27730,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":27717.3,\"CostToAgent\":27717.3,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"714\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-11-24T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-24T10:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":65,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"715\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-24T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-11-24T13:15\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":65,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[],\"Meal\":[],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"15:00\",\"strTraceId\":\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled 0 - 3 Hrs - Non Refundable, full fare will be forfeited.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":100,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":100,\"ARFT\":5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":1750,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ACFT\":87.5,\"CCF\":50,\"ACF\":1750,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats, excluding first 3 rows and emergency exit rows\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',0,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0',NULL,'2022-11-08 04:55:50','2022-11-08 04:55:50',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mohammad sabir','Mohammad sabir',NULL,NULL,NULL,NULL,'CORPORATE','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(113,0,20,12728,0,0,NULL,'2022-11-17','DMCS106800387274','TJS106800387274','UK-919','Vistara','',1,'9a06b-23d9d-05950-0450a','539','22:40:00','07:55:00',0,'O',555,'09h 15m',18676,7701,'BOM','DEL','1 Stop(s)',1,1,5677.3,'15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536',1,1,0,'https://b2b.svezz.com/public/upload/AirlineLogo/UK.gif','INR',3302,2375.3,0,678,0,400,5677.3,0,0,110,19.8,0,0,0,0,0,0,0,'{\"bookingId\":\"DMCS106800387274\",\"bookingId_TJ\":\"TJS106800387274\",\"FlightNumber\":\"UK-919\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"9a06b-23d9d-05950-0450a\",\"apiTraceId\":\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"22:40\",\"ArrivalTime\":\"07:55\",\"TravelDate\":\"2022-11-17T22:40\",\"LocalFromTime\":\"2022-11-17 22:40\",\"FromUTCTime\":\"2022-11-17T22:40\",\"LocalToTime\":\"2022-11-18 07:55\",\"ToUTCTime\":\"2022-11-18T07:55\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":410,\"LAYOVERDuration\":\"6h 50m\",\"FlyingMinutes\":555,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"09h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"5,677\",\"ApiResultIndex\":\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3302,\"Tax\":2388,\"YQTax\":0,\"OtherCharges\":678,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":178,\"CarrierMiscFee\":260,\"MUFee\":800,\"intPublishedFare\":5690,\"PublishedFare\":5677.3,\"PublishedFareAgent\":5677.3,\"OfferedFareAgent\":5677.3,\"OfferedFare\":4605,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277118320551786\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"O\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":141.8338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":142.5,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5677.3,\"CostToAgent\":5677.3,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2388,\"TotalBaseFare\":5690,\"BaseFareCal\":4624.8,\"BaseFare\":3302,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":178,\"MFT\":72,\"OT\":678,\"MU\":800,\"YR\":260,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":141.8338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":142.5,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5677.3,\"CostToAgent\":5677.3,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":50,\"IntCommission\":142.5,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":141.8338983050848,\"PublishFare\":5677.3,\"CostToCustomer\":5677.3,\"BaseFareCal\":4624.8,\"intCommisionEarnedForAgency\":1052.5,\"CostToCompany\":4624.8,\"intOfferedFare\":4605,\"intPublishFare\":5690,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5677.3,\"CostToAgent\":5677.3,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"664\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-11-17T23:55\",\"SegFlightNumber\":\"UK-919\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-17T22:40\",\"TripIndicator\":1,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"SegmentIndicator\":1,\"Duration\":75,\"GroundTime\":410,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"6h 50m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"665\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-18T07:55\",\"SegFlightNumber\":\"UK-926\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-11-18T06:45\",\"TripIndicator\":2,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"SegmentIndicator\":2,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"07:55\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"13:00\",\"strTraceId\":\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3920,\"ARFT\":196}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure at a charge of INR 3920 per sector per Passenger\",\"fcs\":{\"ACFT\":196,\"CCF\":50,\"ACF\":3920,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}',4,NULL,NULL,NULL,2,0,'11000139386523','C13CDC65568F4B2F9CB8F8964D2BB19D','TRANSACTION IS CANCELLED BY USER ON PAYMENT PAGE.',NULL,NULL,'0',NULL,'2022-11-08 05:34:11','2022-11-08 05:34:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mohammad sabir','Mohammad sabir',NULL,NULL,NULL,NULL,'PUBLISHED','0',0,NULL,0,7,NULL,NULL,NULL,0,0,NULL,0,'0',NULL),(116,0,52,12577,0,0,NULL,'2022-11-15',NULL,NULL,'SG-276','SpiceJet','1',1,'05748-9fe90-40f0d-ee82b','463','06:10:00','08:00:00',0,'CP',110,'1h 50m',18676,12995,'BOM','JAI','Non-stop',1,1,3035.68,'4-1841210719_0BOMJAISG276_14587995930985',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',2116,772.33,0,582,0,15,3035.68,1.81,0,0,44.64,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ104747844778\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"PublishedFareTxt\":\"2,888\",\"ApiResultIndex\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ARFT\":10,\"CRFT\":9,\"CRF\":50,\"ARF\":200}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ACF\":200,\"CCF\":50,\"CCFT\":9,\"ACFT\":10}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats beyond Spicemax\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1841210719_0BOMJAISG276_14699651199221\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"248\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"05748-9fe90-40f0d-ee82b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104747844778\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"strTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"ApiResultIndex\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"05748-9fe90-40f0d-ee82b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"248\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"localFromDateTime\":\"2022-11-15 06:10\",\"localToDateTime\":\"2022-11-15 08:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.70.156.254','2022-11-09 18:05:06','2022-11-09 18:05:06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(117,0,52,12577,0,492280,'LF629A','2022-11-15','TJ109547845008',NULL,'SG-276','SpiceJet','1',1,'52157-3174b-d7111-555ae','463','06:10:00','08:00:00',0,'CP',110,'1h 50m',18676,12995,'BOM','JAI','Non-stop',1,1,3035.68,'4-2912541956_0BOMJAISG276_18523243855963',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',2116,772.33,0,582,0,15,3035.68,1.81,0,0,44.64,0,0,0,0,0,0,0,NULL,1,'{\"bookingId\":\"TJ109547845008\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"PublishedFareTxt\":\"2,888\",\"ApiResultIndex\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"ARFT\":10,\"CRF\":50,\"ARF\":200}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"CCF\":50,\"ACFT\":10,\"ACF\":200}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats beyond Spicemax\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2912541956_0BOMJAISG276_57803904968082\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"383\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"52157-3174b-d7111-555ae\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109547845008\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"strTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"ApiResultIndex\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"52157-3174b-d7111-555ae\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"383\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"localFromDateTime\":\"2022-11-15 06:10\",\"localToDateTime\":\"2022-11-15 08:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"order\":{\"bookingId\":\"TJ109547845008\",\"amount\":2831.7,\"markup\":56.63,\"deliveryInfo\":{\"emails\":[\"itskamalraja@gmail.com\"],\"contacts\":[\"+919091776621\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-11-09T23:42:17.909\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"12693436\",\"fD\":{\"aI\":{\"code\":\"SG\",\"name\":\"SpiceJet\",\"isLcc\":true},\"fN\":\"276\",\"eT\":\"7M8\"},\"stops\":0,\"duration\":110,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji Maharaj International Airport\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"aa\":{\"code\":\"JAI\",\"name\":\"Sanganeer Arpt\",\"cityCode\":\"JAI\",\"city\":\"Jaipur\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 2\"},\"dt\":\"2022-11-15T06:10\",\"at\":\"2022-11-15T08:00\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-JAI\":\"LF629A\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"ABID MOHMMAD\",\"lN\":\"HASRUDDIN\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"BF\":2116,\"TAF\":772.33,\"NF\":2741.24,\"SGST\":1.35,\"NCM\":90.46,\"TF\":2888.33,\"CGST\":1.35},\"afC\":{\"TAF\":{\"YQ\":0,\"AGST\":116,\"OT\":582,\"MU\":56.63,\"MF\":15,\"MFT\":2.7},\"NCM\":{\"TDS\":-4.76,\"OT\":95.22}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}','{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"492279\",\"TPSysId\":\"492280\",\"VersionId\":[\"119870\"],\"CustomerSysId\":\"230824\",\"TrxId\":\"38257\",\"FareBreakdownid\":[\"363738\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}',1,0,'25A90960518C4BE5BBEEFCF0F68C8A74','','0',NULL,NULL,'0','103.70.156.254','2022-11-09 18:09:01','2022-11-09 18:09:01',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2022-11-000019',NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(118,0,52,12577,0,492282,NULL,'2022-11-15',NULL,NULL,'SG-276','SpiceJet','1',1,'6eb3e-e4977-74dfb-4c520','463','06:10:00','08:00:00',0,'CP',110,'1h 50m',18676,12995,'BOM','JAI','Non-stop',1,1,3035.68,'4-7224457373_0BOMJAISG276_58797131760229',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',2116,772.33,0,582,0,15,3035.68,1.81,0,0,44.64,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ108147845329\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"PublishedFareTxt\":\"2,888\",\"ApiResultIndex\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"ARF\":200,\"CRF\":50,\"ARFT\":10}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACFT\":10,\"ACF\":200,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats beyond Spicemax\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7224457373_0BOMJAISG276_152762008982038\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"531\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6eb3e-e4977-74dfb-4c520\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108147845329\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"strTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"ApiResultIndex\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"6eb3e-e4977-74dfb-4c520\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"531\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"localFromDateTime\":\"2022-11-15 06:10\",\"localToDateTime\":\"2022-11-15 08:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2703\",\"message\":\"CreditLine used is locked!\",\"details\":\"CreditLine used is locked!\"}]}',NULL,1,0,'C9C44854965649EAA5C3D58B0EBCA22B','','0',NULL,NULL,'0','103.70.156.254','2022-11-09 18:13:51','2022-11-09 18:13:51',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(119,0,52,12577,0,492284,NULL,'2022-11-15',NULL,NULL,'SG-276','SpiceJet','1',1,'c58b8-59449-13c3c-eeff3','463','06:10:00','08:00:00',0,'CP',110,'1h 50m',18676,12995,'BOM','JAI','Non-stop',1,1,3035.68,'4-6334838487_0BOMJAISG276_140779416044543',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/SG.gif','INR',2116,772.33,0,582,0,15,3035.68,1.81,0,0,44.64,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ107947845640\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"PublishedFareTxt\":\"2,888\",\"ApiResultIndex\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"ARFT\":10,\"ARF\":200,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCF\":50,\"ACF\":200,\"ACFT\":10,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats beyond Spicemax\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6334838487_0BOMJAISG276_18022399026836\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"545\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c58b8-59449-13c3c-eeff3\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107947845640\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"strTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"ApiResultIndex\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"c58b8-59449-13c3c-eeff3\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"545\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"localFromDateTime\":\"2022-11-15 06:10\",\"localToDateTime\":\"2022-11-15 08:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2703\",\"message\":\"CreditLine used is locked!\",\"details\":\"CreditLine used is locked!\"}]}',NULL,1,0,'D1CD8D244ADD46C9A6AFA7481F3525FE','','0',NULL,NULL,'0','103.70.156.254','2022-11-09 18:18:00','2022-11-09 18:18:00',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(120,0,64,12577,0,498668,NULL,'2022-11-17',NULL,NULL,'QP-1118','Akasa Air','1',1,'3da02-01be0-16999-3c6cd','821','16:10:00','18:20:00',0,'SP',130,'2h 10m',7701,18676,'DEL','BOM','Non-stop',1,1,4951.66,'30-1733225487_0DELBOMQP1118_35693449471534',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/noimage.png','INR',3942,803.75,0,591,0,15,4951.66,0.61,0,0,50.19,0,0,0,0,0,0,0,NULL,3,'{\"bookingId\":\"TJ107448581440\",\"FlightNumber\":\"QP-1118\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"16:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-11-17T16:10\",\"LocalFromTime\":\"2022-11-17 16:10\",\"FromUTCTime\":\"2022-11-17T16:10\",\"LocalToTime\":\"2022-11-17 18:20\",\"ToUTCTime\":\"2022-11-17T18:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Thu, 17 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4745.75,\"PublishedFareTxt\":\"4,746\",\"ApiResultIndex\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure __be____nls__ Before 72 hrs: Rs 2,500 + Fare Difference__nls__Within 06-72 hrs: Rs 3,000 + Fare Difference\",\"fcs\":{\"ARFT\":150,\"CRF\":50,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3500 or 100% of the airfare charges, whichever is lower.__nls__ Before 72 hrs Rs 3,000 or 100% of the airfare charges, whichever is lower.\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3942,\"Tax\":803.75,\"YQTax\":0,\"OtherCharges\":591,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":93.05,\"intPublishedFare\":4745.75,\"PublishedFare\":4951.66,\"OfferedFare\":4622,\"CommissionEarned\":30.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-1733225487_0DELBOMQP1118_23192819558152\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.19,\"apiMarkup\":0,\"IntCommission\":0.61,\"CommisionPass\":30.086,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":278.86,\"GSTOnMarkUp\":50.19,\"CommEarned\":0.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":803.75,\"BaseFareCal\":4672.19,\"BaseFare\":3942,\"CommissionEarned\":30.7,\"TDS\":-1.62,\"MF\":15,\"YQ\":0,\"AGST\":102,\"MFT\":2.7,\"OT\":591,\"MU\":93.05,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":50.19,\"apiMarkup\":0,\"IntCommission\":0.61,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":278.86,\"GSTOnMarkUp\":50.19,\"CommEarned\":0.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":30.7,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.61,\"IntAgencyFixMarkUp\":278.86,\"IntTaxOnAgencyFixMarkUp\":50.19,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.19,\"PublishFare\":4951.66,\"CostToCustomer\":4951.66,\"BaseFareCal\":4672.19,\"intCommisionEarnedForAgency\":279.47,\"CostToCompany\":4672.19,\"intOfferedFare\":4622,\"intPublishFare\":4745.75,\"TripjackMarkup\":93.05,\"TripjackCommission\":30.7,\"TripjackTDS\":\"1.62\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":30.086,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"208\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-17T18:20\",\"SegFlightNumber\":\"QP-1118\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-17T16:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"16:10\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"3da02-01be0-16999-3c6cd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107448581440\",\"FlightNumber\":\"QP-1118\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"strTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"16:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-11-17T16:10\",\"LocalFromTime\":\"2022-11-17 16:10\",\"FromUTCTime\":\"2022-11-17T16:10\",\"LocalToTime\":\"2022-11-17 18:20\",\"ToUTCTime\":\"2022-11-17T18:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Thu, 17 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4745.75,\"ApiResultIndex\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"3da02-01be0-16999-3c6cd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3942,\"Tax\":803.75,\"YQTax\":0,\"OtherCharges\":591,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":93.05,\"intPublishedFare\":4745.75,\"PublishedFare\":4951.66,\"OfferedFare\":4622,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":278.86,\"GSTOnMarkUp\":50.19,\"CommEarned\":0.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":803.75,\"BaseFareCal\":4672.19,\"BaseFare\":3942,\"CommissionEarned\":30.7,\"TDS\":-1.62,\"MF\":15,\"YQ\":0,\"AGST\":102,\"MFT\":2.7,\"OT\":591,\"MU\":93.05,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":278.86,\"GSTOnMarkUp\":50.19,\"CommEarned\":0.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"208\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-17T18:20\",\"SegFlightNumber\":\"QP-1118\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-17T16:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"16:10\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"localFromDateTime\":\"2022-11-17 16:10\",\"localToDateTime\":\"2022-11-17 18:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}','{\"status\":{\"success\":false,\"httpStatus\":400},\"errors\":[{\"errCode\":\"2703\",\"message\":\"CreditLine used is locked!\",\"details\":\"CreditLine used is locked!\"}]}',NULL,1,0,'E74A7263A6514D6A920CDFDEFB41AB22','','0',NULL,NULL,'0','223.184.182.146','2022-11-16 22:44:39','2022-11-16 22:44:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(121,0,65,12577,0,0,NULL,'2023-01-13',NULL,NULL,'QP-1107','Akasa Air','1',1,'c78b3-4f8b9-7408f-2e465','821','14:10:00','15:25:00',0,'SP',75,'1h 15m',18676,296,'BOM','AMD','Non-stop',1,1,2968.65,'30-3141348704_0BOMAMDQP1107_33093073195699',1,2,0,'https://www.svezz.com/public/upload/AirlineLogo/noimage.png','INR',2089,659.59,0,478,0,15,2968.65,0.33,0,0,44.22,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ104549890462\",\"FlightNumber\":\"QP-1107\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"14:10\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-01-13T14:10\",\"LocalFromTime\":\"2023-01-13 14:10\",\"FromUTCTime\":\"2023-01-13T14:10\",\"LocalToTime\":\"2023-01-13 15:25\",\"ToUTCTime\":\"2023-01-13T15:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 13 Jan\",\"ArrivalDateTxt\":\"Fri, 13 Jan\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2748.59,\"PublishedFareTxt\":\"2,749\",\"ApiResultIndex\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2089,\"Tax\":659.59,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":110,\"CarrierMiscFee\":0,\"MUFee\":53.89,\"intPublishedFare\":2748.59,\"PublishedFare\":2968.65,\"OfferedFare\":2678.43,\"CommissionEarned\":16.27,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.86,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-3141348704_0BOMAMDQP1107_6502156153176\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.22,\"apiMarkup\":0,\"IntCommission\":0.33,\"CommisionPass\":15.9446,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":245.67,\"GSTOnMarkUp\":44.22,\"CommEarned\":0.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":5123.87,\"oldFare\":4851.53,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":659.59,\"BaseFareCal\":2722.65,\"BaseFare\":2089,\"CommissionEarned\":16.27,\"TDS\":-0.86,\"MF\":15,\"YQ\":0,\"AGST\":110,\"MFT\":2.7,\"OT\":478,\"MU\":53.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.22,\"apiMarkup\":0,\"IntCommission\":0.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":245.67,\"GSTOnMarkUp\":44.22,\"CommEarned\":0.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":16.27,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.33,\"IntAgencyFixMarkUp\":245.67,\"IntTaxOnAgencyFixMarkUp\":44.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.22,\"PublishFare\":2968.65,\"CostToCustomer\":2968.65,\"BaseFareCal\":2722.65,\"intCommisionEarnedForAgency\":245.99,\"CostToCompany\":2722.65,\"intOfferedFare\":2678.43,\"intPublishFare\":2748.59,\"TripjackMarkup\":53.89,\"TripjackCommission\":16.27,\"TripjackTDS\":\"0.86\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":15.9446,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"971\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-01-13T15:25\",\"SegFlightNumber\":\"QP-1107\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-13T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PHIM\",\"Price\":100,\"Description\":\"Sparkling water\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PCOR\",\"Price\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PACK\",\"Price\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPOP\",\"Price\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PHAL\",\"Price\":200,\"Description\":\"Rawa halwa\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PBHL\",\"Price\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVNO\",\"Price\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVBY\",\"Price\":250,\"Description\":\"Chinese Meal Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PUPM\",\"Price\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPOH\",\"Price\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPAS\",\"Price\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNNO\",\"Price\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PIVS\",\"Price\":250,\"Description\":\"Idli Sambar - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PCAS\",\"Price\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PALM\",\"Price\":250,\"Description\":\"Trail Mix\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMT\",\"Price\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCT\",\"Price\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNBY\",\"Price\":350,\"Description\":\"Biryani\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDRC\",\"Price\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDDS\",\"Price\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDDI\",\"Price\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDBY\",\"Price\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMC\",\"Price\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMB\",\"Price\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVKP\",\"Price\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVKD\",\"Price\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVFS\",\"Price\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PFIS\",\"Price\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVFL\",\"Price\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNKD\",\"Price\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVGS\",\"Price\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNMM\",\"Price\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNLC\",\"Price\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNKC\",\"Price\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNHR\",\"Price\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCC\",\"Price\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCS\",\"Price\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDCT\",\"Price\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c78b3-4f8b9-7408f-2e465\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-13 12:00\",\"localToDateTime\":\"2023-01-19 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104549890462\",\"FlightNumber\":\"QP-1107\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"strTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"14:10\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-01-13T14:10\",\"LocalFromTime\":\"2023-01-13 14:10\",\"FromUTCTime\":\"2023-01-13T14:10\",\"LocalToTime\":\"2023-01-13 15:25\",\"ToUTCTime\":\"2023-01-13T15:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 13 Jan\",\"ArrivalDateTxt\":\"Fri, 13 Jan\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5123.860000000001,\"ApiResultIndex\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"c78b3-4f8b9-7408f-2e465\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3788,\"Tax\":1335.8600000000001,\"YQTax\":0,\"OtherCharges\":998,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":202,\"CarrierMiscFee\":0,\"MUFee\":100.46000000000001,\"intPublishedFare\":5123.860000000001,\"PublishedFare\":5488.97,\"OfferedFare\":4914.32,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":485.14,\"GSTOnMarkUp\":87.32,\"CommEarned\":2.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1335.8600000000001,\"BaseFareCal\":5001.639999999999,\"BaseFare\":3788,\"CommissionEarned\":109.08,\"TDS\":-5.74,\"MF\":30,\"YQ\":0,\"AGST\":202,\"MFT\":5.4,\"OT\":998,\"MU\":100.46000000000001,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"FixedMarkUp\":485.14,\"GSTOnMarkUp\":87.32,\"CommEarned\":2.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"971\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-01-13T15:25\",\"SegFlightNumber\":\"QP-1107\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-13T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],[{\"segmentid\":\"745\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-19T23:25\",\"SegFlightNumber\":\"G8-413\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-01-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"localFromDateTime\":\"2023-01-13 14:10\",\"localToDateTime\":\"2023-01-13 15:25\",\"strSourceAirportCode\":\"AMD\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.19.225.10','2022-11-29 16:36:36','2022-11-29 16:36:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(122,121,65,12577,0,0,NULL,'2023-01-19',NULL,NULL,'G8-413','Go First','1',1,'c78b3-4f8b9-7408f-2e465','240','22:05:00','23:25:00',0,'BC',80,'1h 20m',18676,296,'AMD','BOM','Non-stop',1,1,2520.32,'1-3141348704_3AMDBOMG8413_33093176604121',2,2,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',1699,676.27,0,520,0,15,2520.32,1.86,0,0,43.1,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ104549890462\",\"FlightNumber\":\"G8-413\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3141348704_3AMDBOMG8413_33093176604121\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:05\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2023-01-19T22:05\",\"LocalFromTime\":\"2023-01-19 22:05\",\"FromUTCTime\":\"2023-01-19T22:05\",\"LocalToTime\":\"2023-01-19 23:25\",\"ToUTCTime\":\"2023-01-19T23:25\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 19 Jan\",\"ArrivalDateTxt\":\"Thu, 19 Jan\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2375.27,\"PublishedFareTxt\":\"2,375\",\"ApiResultIndex\":\"1-3141348704_3AMDBOMG8413_33093176604121\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1699,\"Tax\":676.27,\"YQTax\":0,\"OtherCharges\":520,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":0,\"MUFee\":46.57,\"intPublishedFare\":2375.27,\"PublishedFare\":2520.32,\"OfferedFare\":2235.89,\"CommissionEarned\":92.81,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.88,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-3141348704_1AMDBOMG8413_6502160499475\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":43.1,\"apiMarkup\":0,\"IntCommission\":1.86,\"CommisionPass\":90.9538,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":239.47,\"GSTOnMarkUp\":43.1,\"CommEarned\":1.86,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":676.27,\"BaseFareCal\":2278.99,\"BaseFare\":1699,\"CommissionEarned\":92.81,\"TDS\":-4.88,\"MF\":15,\"YQ\":0,\"AGST\":92,\"MFT\":2.7,\"OT\":520,\"MU\":46.57,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":43.1,\"apiMarkup\":0,\"IntCommission\":1.86,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":239.47,\"GSTOnMarkUp\":43.1,\"CommEarned\":1.86,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":92.81,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.86,\"IntAgencyFixMarkUp\":239.47,\"IntTaxOnAgencyFixMarkUp\":43.1,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":43.1,\"PublishFare\":2520.32,\"CostToCustomer\":2520.32,\"BaseFareCal\":2278.99,\"intCommisionEarnedForAgency\":241.32,\"CostToCompany\":2278.99,\"intOfferedFare\":2235.89,\"intPublishFare\":2375.27,\"TripjackMarkup\":46.57,\"TripjackCommission\":92.81,\"TripjackTDS\":\"4.88\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":90.9538,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"745\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-19T23:25\",\"SegFlightNumber\":\"G8-413\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-01-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"745\",\"Code\":\"CRPX\",\"Price\":0,\"Description\":\"Free Corporate Meal\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PCOR\",\"Price\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PACK\",\"Price\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPOP\",\"Price\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PHAL\",\"Price\":200,\"Description\":\"Rawa halwa\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PBHL\",\"Price\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVNO\",\"Price\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVBY\",\"Price\":250,\"Description\":\"Chinese Meal Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PUPM\",\"Price\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPOH\",\"Price\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPAS\",\"Price\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNNO\",\"Price\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PIVS\",\"Price\":250,\"Description\":\"Idli Sambar - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PCAS\",\"Price\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PALM\",\"Price\":250,\"Description\":\"Trail Mix\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMT\",\"Price\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCT\",\"Price\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNBY\",\"Price\":350,\"Description\":\"Biryani\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDRC\",\"Price\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDDS\",\"Price\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDDI\",\"Price\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDBY\",\"Price\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMC\",\"Price\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMB\",\"Price\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVKP\",\"Price\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVKD\",\"Price\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVFS\",\"Price\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PFIS\",\"Price\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVFL\",\"Price\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNKD\",\"Price\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVGS\",\"Price\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNMM\",\"Price\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNLC\",\"Price\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNKC\",\"Price\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNHR\",\"Price\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCC\",\"Price\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCS\",\"Price\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDCT\",\"Price\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c78b3-4f8b9-7408f-2e465\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-3141348704_3AMDBOMG8413_33093176604121\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-13 12:00\",\"localToDateTime\":\"2023-01-19 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.19.225.10','2022-11-29 16:36:36','2022-11-29 16:36:36',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'0',0,'0',NULL),(123,0,65,12577,0,0,NULL,'2023-01-13',NULL,NULL,'QP-1107','Akasa Air','1',1,'9b30e-d3aa9-5a329-8297f','821','14:10:00','15:25:00',0,'SP',75,'1h 15m',18676,296,'BOM','AMD','Non-stop',3,1,8433.94,'30-5977412572_0BOMAMDQP1107_42631250998695',1,2,0,'https://www.svezz.com/public/upload/AirlineLogo/noimage.png','INR',6267,1978.77,0,1434,0,45,8433.94,0.98,0,0,60.66,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ109349890698\",\"FlightNumber\":\"QP-1107\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"14:10\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-01-13T14:10\",\"LocalFromTime\":\"2023-01-13 14:10\",\"FromUTCTime\":\"2023-01-13T14:10\",\"LocalToTime\":\"2023-01-13 15:25\",\"ToUTCTime\":\"2023-01-13T15:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 13 Jan\",\"ArrivalDateTxt\":\"Fri, 13 Jan\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":8245.77,\"PublishedFareTxt\":\"8,246\",\"ApiResultIndex\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6267,\"Tax\":1978.77,\"YQTax\":0,\"OtherCharges\":1434,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":330,\"CarrierMiscFee\":0,\"MUFee\":161.67000000000002,\"intPublishedFare\":8245.77,\"PublishedFare\":8433.94,\"OfferedFare\":8035.289999999999,\"CommissionEarned\":48.81,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.58,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-5977412572_0BOMAMDQP1107_23918704869240\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":60.66,\"apiMarkup\":0,\"IntCommission\":0.98,\"CommisionPass\":47.833800000000004,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":337.01,\"GSTOnMarkUp\":60.66,\"CommEarned\":0.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1319.18,\"BaseFareCal\":5409.3,\"BaseFare\":4178,\"CommissionEarned\":32.54,\"TDS\":-1.72,\"MF\":30,\"YQ\":0,\"AGST\":220,\"MFT\":5.4,\"OT\":956,\"MU\":107.78,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":52.44,\"apiMarkup\":0,\"IntCommission\":0.65,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":291.34,\"GSTOnMarkUp\":52.44,\"CommEarned\":0.65,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":659.59,\"BaseFareCal\":2722.65,\"BaseFare\":2089,\"CommissionEarned\":16.27,\"TDS\":-0.86,\"MF\":15,\"YQ\":0,\"AGST\":110,\"MFT\":2.7,\"OT\":478,\"MU\":53.89,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":44.22,\"apiMarkup\":0,\"IntCommission\":0.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":245.67,\"GSTOnMarkUp\":44.22,\"CommEarned\":0.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":48.81,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.98,\"IntAgencyFixMarkUp\":337.01,\"IntTaxOnAgencyFixMarkUp\":60.66,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":60.66,\"PublishFare\":8433.94,\"CostToCustomer\":8433.94,\"BaseFareCal\":8095.95,\"intCommisionEarnedForAgency\":337.98,\"CostToCompany\":8095.95,\"intOfferedFare\":8035.289999999999,\"intPublishFare\":8245.77,\"TripjackMarkup\":161.67000000000002,\"TripjackCommission\":48.81,\"TripjackTDS\":\"2.58\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":47.833800000000004,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"427\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-01-13T15:25\",\"SegFlightNumber\":\"QP-1107\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-13T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PHIM\",\"Price\":100,\"Description\":\"Sparkling water\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PCOR\",\"Price\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PACK\",\"Price\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPOP\",\"Price\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PHAL\",\"Price\":200,\"Description\":\"Rawa halwa\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PBHL\",\"Price\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVNO\",\"Price\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVBY\",\"Price\":250,\"Description\":\"Chinese Meal Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PUPM\",\"Price\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPOH\",\"Price\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPAS\",\"Price\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNNO\",\"Price\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PIVS\",\"Price\":250,\"Description\":\"Idli Sambar - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PCAS\",\"Price\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PALM\",\"Price\":250,\"Description\":\"Trail Mix\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMT\",\"Price\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCT\",\"Price\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNBY\",\"Price\":350,\"Description\":\"Biryani\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDRC\",\"Price\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDDS\",\"Price\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDDI\",\"Price\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDBY\",\"Price\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMC\",\"Price\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMB\",\"Price\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVKP\",\"Price\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVKD\",\"Price\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVFS\",\"Price\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PFIS\",\"Price\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVFL\",\"Price\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNKD\",\"Price\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVGS\",\"Price\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNMM\",\"Price\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNLC\",\"Price\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNKC\",\"Price\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNHR\",\"Price\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCC\",\"Price\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCS\",\"Price\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDCT\",\"Price\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-13 12:00\",\"localToDateTime\":\"2023-01-19 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109349890698\",\"FlightNumber\":\"QP-1107\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"strTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"14:10\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-01-13T14:10\",\"LocalFromTime\":\"2023-01-13 14:10\",\"FromUTCTime\":\"2023-01-13T14:10\",\"LocalToTime\":\"2023-01-13 15:25\",\"ToUTCTime\":\"2023-01-13T15:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 13 Jan\",\"ArrivalDateTxt\":\"Fri, 13 Jan\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":16473.18,\"ApiResultIndex\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12348,\"Tax\":4125.18,\"YQTax\":0,\"OtherCharges\":3030,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":666,\"CarrierMiscFee\":0,\"MUFee\":322.98,\"intPublishedFare\":16473.18,\"PublishedFare\":16571.83,\"OfferedFare\":15769.23,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":673.71,\"GSTOnMarkUp\":121.27,\"CommEarned\":7.619999999999999,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2750.12,\"BaseFareCal\":10617.66,\"BaseFare\":8232,\"CommissionEarned\":253.98,\"TDS\":-13.38,\"MF\":60,\"YQ\":0,\"AGST\":444,\"MFT\":10.8,\"OT\":2020,\"MU\":215.32,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":582.48,\"GSTOnMarkUp\":104.84,\"CommEarned\":5.08,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1375.06,\"BaseFareCal\":5344.83,\"BaseFare\":4116,\"CommissionEarned\":126.99,\"TDS\":-6.69,\"MF\":30,\"YQ\":0,\"AGST\":222,\"MFT\":5.4,\"OT\":1010,\"MU\":107.66,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":491.24,\"GSTOnMarkUp\":88.42,\"CommEarned\":2.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"427\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-01-13T15:25\",\"SegFlightNumber\":\"QP-1107\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-13T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],[{\"segmentid\":\"857\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-19T23:25\",\"SegFlightNumber\":\"G8-413\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-01-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"localFromDateTime\":\"2023-01-13 14:10\",\"localToDateTime\":\"2023-01-13 15:25\",\"strSourceAirportCode\":\"AMD\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.19.225.10','2022-11-29 16:39:11','2022-11-29 16:39:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(124,123,65,12577,0,0,NULL,'2023-01-19',NULL,NULL,'G8-413','Go First','1',1,'9b30e-d3aa9-5a329-8297f','240','22:05:00','23:25:00',0,'BC',80,'1h 20m',18676,296,'AMD','BOM','Non-stop',3,1,8137.89,'1-5977412572_3AMDBOMG8413_42630847427786',2,2,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',6081,2146.41,0,1596,0,45,8137.89,6.64,0,0,60.61,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"TJ109349890698\",\"FlightNumber\":\"G8-413\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5977412572_3AMDBOMG8413_42630847427786\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:05\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2023-01-19T22:05\",\"LocalFromTime\":\"2023-01-19 22:05\",\"FromUTCTime\":\"2023-01-19T22:05\",\"LocalToTime\":\"2023-01-19 23:25\",\"ToUTCTime\":\"2023-01-19T23:25\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 19 Jan\",\"ArrivalDateTxt\":\"Thu, 19 Jan\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":8227.41,\"PublishedFareTxt\":\"8,227\",\"ApiResultIndex\":\"1-5977412572_3AMDBOMG8413_42630847427786\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6081,\"Tax\":2146.41,\"YQTax\":0,\"OtherCharges\":1596,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":336,\"CarrierMiscFee\":0,\"MUFee\":161.31,\"intPublishedFare\":8227.41,\"PublishedFare\":8137.89,\"OfferedFare\":7733.9400000000005,\"CommissionEarned\":332.15999999999997,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-17.490000000000002,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-5977412572_1AMDBOMG8413_23918706393366\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":60.61,\"apiMarkup\":0,\"IntCommission\":6.64,\"CommisionPass\":325.5168,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":336.7,\"GSTOnMarkUp\":60.61,\"CommEarned\":6.64,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1430.94,\"BaseFareCal\":5208.36,\"BaseFare\":4054,\"CommissionEarned\":221.44,\"TDS\":-11.66,\"MF\":30,\"YQ\":0,\"AGST\":224,\"MFT\":5.4,\"OT\":1064,\"MU\":107.54,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":52.4,\"apiMarkup\":0,\"IntCommission\":4.43,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":291.14,\"GSTOnMarkUp\":52.4,\"CommEarned\":4.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":715.47,\"BaseFareCal\":2622.18,\"BaseFare\":2027,\"CommissionEarned\":110.72,\"TDS\":-5.83,\"MF\":15,\"YQ\":0,\"AGST\":112,\"MFT\":2.7,\"OT\":532,\"MU\":53.77,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":44.2,\"apiMarkup\":0,\"IntCommission\":2.21,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":245.57,\"GSTOnMarkUp\":44.2,\"CommEarned\":2.21,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":332.16,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.64,\"IntAgencyFixMarkUp\":336.7,\"IntTaxOnAgencyFixMarkUp\":60.61,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":60.61,\"PublishFare\":8137.89,\"CostToCustomer\":8137.89,\"BaseFareCal\":7794.55,\"intCommisionEarnedForAgency\":343.35,\"CostToCompany\":7794.55,\"intOfferedFare\":7733.9400000000005,\"intPublishFare\":8227.41,\"TripjackMarkup\":161.31,\"TripjackCommission\":332.15999999999997,\"TripjackTDS\":\"17.49\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":325.5168,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"857\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-19T23:25\",\"SegFlightNumber\":\"G8-413\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-01-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"857\",\"Code\":\"CRPX\",\"Price\":0,\"Description\":\"Free Corporate Meal\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PCOR\",\"Price\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PACK\",\"Price\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPOP\",\"Price\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PHAL\",\"Price\":200,\"Description\":\"Rawa halwa\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PBHL\",\"Price\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVNO\",\"Price\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVBY\",\"Price\":250,\"Description\":\"Chinese Meal Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PUPM\",\"Price\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPOH\",\"Price\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPAS\",\"Price\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNNO\",\"Price\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PIVS\",\"Price\":250,\"Description\":\"Idli Sambar - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PCAS\",\"Price\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PALM\",\"Price\":250,\"Description\":\"Trail Mix\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMT\",\"Price\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCT\",\"Price\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNBY\",\"Price\":350,\"Description\":\"Biryani\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDRC\",\"Price\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDDS\",\"Price\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDDI\",\"Price\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDBY\",\"Price\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMC\",\"Price\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMB\",\"Price\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVKP\",\"Price\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVKD\",\"Price\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVFS\",\"Price\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PFIS\",\"Price\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVFL\",\"Price\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNKD\",\"Price\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVGS\",\"Price\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNMM\",\"Price\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNLC\",\"Price\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNKC\",\"Price\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNHR\",\"Price\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCC\",\"Price\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCS\",\"Price\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDCT\",\"Price\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-5977412572_3AMDBOMG8413_42630847427786\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-13 12:00\",\"localToDateTime\":\"2023-01-19 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.19.225.10','2022-11-29 16:39:11','2022-11-29 16:39:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(125,0,66,12577,0,0,NULL,'2023-04-19','BKR103761328891','TJ103761328891','G8-306','Go First','1',0,'a02eb-7af4c-a1d25-6fffe','240','10:25:00','12:35:00',0,'G',130,'2h 10m',18676,16028,'BOM','LKO','Non-stop',1,1,5902.64,'11-4900667308_0BOMLKOG8306_357443501256',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/G8.gif','INR',5500,357.55,0,225,0,15,5902.64,2.09,0,0,40.02,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKR103761328891\",\"bookingId_TJ\":\"TJ103761328891\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"12:35\",\"TravelDate\":\"2023-04-19T10:25\",\"LocalFromTime\":\"2023-04-19 10:25\",\"FromUTCTime\":\"2023-04-19T10:25\",\"LocalToTime\":\"2023-04-19 12:35\",\"ToUTCTime\":\"2023-04-19T12:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5857.55,\"PublishedFareTxt\":\"5,858\",\"ApiResultIndex\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5500,\"Tax\":357.55,\"YQTax\":0,\"OtherCharges\":225,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":114.85,\"intPublishedFare\":5857.55,\"PublishedFare\":5902.64,\"OfferedFare\":5638.2,\"CommissionEarned\":104.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-4900667308_0BOMLKOG8306_6503815450046\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":40.02,\"apiMarkup\":0,\"IntCommission\":2.09,\"CommisionPass\":102.41,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":222.33,\"GSTOnMarkUp\":40.02,\"CommEarned\":2.09,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":357.55,\"BaseFareCal\":5678.22,\"BaseFare\":5500,\"CommissionEarned\":104.5,\"TDS\":-5.5,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":225,\"MU\":114.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":40.02,\"apiMarkup\":0,\"IntCommission\":2.09,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":222.33,\"GSTOnMarkUp\":40.02,\"CommEarned\":2.09,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":104.5,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.09,\"IntAgencyFixMarkUp\":222.33,\"IntTaxOnAgencyFixMarkUp\":40.02,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":40.02,\"PublishFare\":5902.64,\"CostToCustomer\":5902.64,\"BaseFareCal\":5678.22,\"intCommisionEarnedForAgency\":224.42,\"CostToCompany\":5678.22,\"intOfferedFare\":5638.2,\"intPublishFare\":5857.55,\"TripjackMarkup\":114.85,\"TripjackCommission\":104.5,\"TripjackTDS\":\"5.5\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":102.41,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"24\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-04-19T12:35\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-19T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:35\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a02eb-7af4c-a1d25-6fffe\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-15T13:30:42.573\",\"strTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-04-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR103761328891\",\"bookingId_TJ\":\"TJ103761328891\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"strTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"12:35\",\"TravelDate\":\"2023-04-19T10:25\",\"LocalFromTime\":\"2023-04-19 10:25\",\"FromUTCTime\":\"2023-04-19T10:25\",\"LocalToTime\":\"2023-04-19 12:35\",\"ToUTCTime\":\"2023-04-19T12:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5857.55,\"ApiResultIndex\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"a02eb-7af4c-a1d25-6fffe\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-15T13:30:42.573\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5500,\"Tax\":357.55,\"YQTax\":0,\"OtherCharges\":225,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":114.85,\"intPublishedFare\":5857.55,\"PublishedFare\":5902.64,\"OfferedFare\":5638.2,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":222.33,\"GSTOnMarkUp\":40.02,\"CommEarned\":2.09,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":357.55,\"BaseFareCal\":5678.22,\"BaseFare\":5500,\"CommissionEarned\":104.5,\"TDS\":-5.5,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":225,\"MU\":114.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":222.33,\"GSTOnMarkUp\":40.02,\"CommEarned\":2.09,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"24\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-04-19T12:35\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-19T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:35\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"localFromDateTime\":\"2023-04-19 10:25\",\"localToDateTime\":\"2023-04-19 12:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','106.194.220.43','2023-04-15 07:59:58','2023-04-15 07:59:58',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(126,0,66,12577,0,0,NULL,'2023-04-19','BKR104161404843','TJ104161404843','QP-1123','Akasa Air','1',1,'ba08d-c2c68-8eff0-e0d0e','821','13:05:00','15:10:00',0,'SP',125,'2h 5m',18676,16028,'BOM','LKO','Non-stop',1,1,4701.04,'30-2140655161_0BOMLKOQP1123_10144451988229',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/noimage.png','INR',3800,782.55,0,479,0,15,4701.04,0.59,0,0,36.21,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKR104161404843\",\"bookingId_TJ\":\"TJ104161404843\",\"FlightNumber\":\"QP-1123\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"15:10\",\"TravelDate\":\"2023-04-19T13:05\",\"LocalFromTime\":\"2023-04-19 13:05\",\"FromUTCTime\":\"2023-04-19T13:05\",\"LocalToTime\":\"2023-04-19 15:10\",\"ToUTCTime\":\"2023-04-19T15:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4582.55,\"PublishedFareTxt\":\"4,583\",\"ApiResultIndex\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"or 100% of the airfare charges, whichever is lower.\",\"fcs\":{\"CCF\":50,\"ACF\":3500,\"CCFT\":9,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference if any\",\"fcs\":{\"ARFT\":150,\"CRF\":50,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3800,\"Tax\":782.55,\"YQTax\":0,\"OtherCharges\":479,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":196,\"CarrierMiscFee\":0,\"MUFee\":89.85,\"intPublishedFare\":4582.55,\"PublishedFare\":4701.04,\"OfferedFare\":4463.1,\"CommissionEarned\":29.6,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.56,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-2140655161_0BOMLKOQP1123_21985981230511\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":36.21,\"apiMarkup\":0,\"IntCommission\":0.59,\"CommisionPass\":29.008000000000003,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":201.14,\"GSTOnMarkUp\":36.21,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":782.55,\"BaseFareCal\":4499.31,\"BaseFare\":3800,\"CommissionEarned\":29.6,\"TDS\":-1.56,\"MF\":15,\"YQ\":0,\"AGST\":196,\"MFT\":2.7,\"OT\":479,\"MU\":89.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":36.21,\"apiMarkup\":0,\"IntCommission\":0.59,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":201.14,\"GSTOnMarkUp\":36.21,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":29.6,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.59,\"IntAgencyFixMarkUp\":201.14,\"IntTaxOnAgencyFixMarkUp\":36.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":36.21,\"PublishFare\":4701.04,\"CostToCustomer\":4701.04,\"BaseFareCal\":4499.31,\"intCommisionEarnedForAgency\":201.74,\"CostToCompany\":4499.31,\"intOfferedFare\":4463.1,\"intPublishFare\":4582.55,\"TripjackMarkup\":89.85,\"TripjackCommission\":29.6,\"TripjackTDS\":\"1.56\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":29.008000000000003,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"641\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-04-19T15:10\",\"SegFlightNumber\":\"QP-1123\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-19T13:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"15:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC03\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PHIM\",\"Price\":100,\"amount\":100,\"Description\":\"Sparkling water\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PWAF\",\"Price\":150,\"amount\":150,\"Description\":\"Wafers\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PCOR\",\"Price\":150,\"amount\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PACK\",\"Price\":150,\"amount\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PPOP\",\"Price\":200,\"amount\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PBHL\",\"Price\":200,\"amount\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVNO\",\"Price\":250,\"amount\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVBY\",\"Price\":250,\"amount\":250,\"Description\":\"Schezwan Fried Rice Veg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PUPM\",\"Price\":250,\"amount\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PPOH\",\"Price\":250,\"amount\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PPAS\",\"Price\":250,\"amount\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNNO\",\"Price\":250,\"amount\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PCAS\",\"Price\":250,\"amount\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PALM\",\"Price\":250,\"amount\":250,\"Description\":\"Mixed Nuts\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVMT\",\"Price\":275,\"amount\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNCT\",\"Price\":275,\"amount\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVMS\",\"Price\":300,\"amount\":300,\"Description\":\"Cuppa Misal\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDRC\",\"Price\":375,\"amount\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDDS\",\"Price\":375,\"amount\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDDI\",\"Price\":375,\"amount\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDBY\",\"Price\":375,\"amount\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVMC\",\"Price\":500,\"amount\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVMB\",\"Price\":500,\"amount\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVKP\",\"Price\":500,\"amount\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVKD\",\"Price\":500,\"amount\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVFS\",\"Price\":500,\"amount\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PFIS\",\"Price\":500,\"amount\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVFL\",\"Price\":550,\"amount\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNKD\",\"Price\":550,\"amount\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVGS\",\"Price\":600,\"amount\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNMM\",\"Price\":600,\"amount\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNLC\",\"Price\":600,\"amount\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNKC\",\"Price\":600,\"amount\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNHR\",\"Price\":600,\"amount\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNCC\",\"Price\":600,\"amount\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNCS\",\"Price\":650,\"amount\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDCT\",\"Price\":750,\"amount\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ba08d-c2c68-8eff0-e0d0e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-16T15:07:38.013\",\"strTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-04-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR104161404843\",\"bookingId_TJ\":\"TJ104161404843\",\"FlightNumber\":\"QP-1123\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"strTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"15:10\",\"TravelDate\":\"2023-04-19T13:05\",\"LocalFromTime\":\"2023-04-19 13:05\",\"FromUTCTime\":\"2023-04-19T13:05\",\"LocalToTime\":\"2023-04-19 15:10\",\"ToUTCTime\":\"2023-04-19T15:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4582.55,\"ApiResultIndex\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"ba08d-c2c68-8eff0-e0d0e\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-16T15:07:38.013\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3800,\"Tax\":782.55,\"YQTax\":0,\"OtherCharges\":479,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":196,\"CarrierMiscFee\":0,\"MUFee\":89.85,\"intPublishedFare\":4582.55,\"PublishedFare\":4701.04,\"OfferedFare\":4463.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":201.14,\"GSTOnMarkUp\":36.21,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":782.55,\"BaseFareCal\":4499.31,\"BaseFare\":3800,\"CommissionEarned\":29.6,\"TDS\":-1.56,\"MF\":15,\"YQ\":0,\"AGST\":196,\"MFT\":2.7,\"OT\":479,\"MU\":89.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":201.14,\"GSTOnMarkUp\":36.21,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"641\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-04-19T15:10\",\"SegFlightNumber\":\"QP-1123\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-19T13:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"15:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"localFromDateTime\":\"2023-04-19 13:05\",\"localToDateTime\":\"2023-04-19 15:10\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','45.250.47.201','2023-04-16 09:36:48','2023-04-16 09:36:48',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,NULL,0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(127,0,67,12577,0,0,NULL,'2023-05-22','BKR104261547223','TJ104261547223','I5-743','AirAsia India','1',1,'53b3f-d49b9-326ca-4e88f','75','05:00:00','18:50:00',0,'SM',830,'13h 50m',7701,18676,'DEL','BOM','1 Stop(s)',1,1,4652.82,'22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',3784,761.83,0,463,0,15,4652.82,0.83,0,0,36.1,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKR104261547223\",\"bookingId_TJ\":\"TJ104261547223\",\"FlightNumber\":\"I5-743\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2023-05-22T05:00\",\"LocalFromTime\":\"2023-05-22 05:00\",\"FromUTCTime\":\"2023-05-22T05:00\",\"LocalToTime\":\"2023-05-22 18:50\",\"ToUTCTime\":\"2023-05-22T18:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":670,\"LAYOVERDuration\":\"11h 10m\",\"FlyingMinutes\":830,\"DepartureDateTxt\":\"Mon, 22 May\",\"ArrivalDateTxt\":\"Mon, 22 May\",\"FlightDuration\":\"13h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4545.83,\"PublishedFareTxt\":\"4,546\",\"ApiResultIndex\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ACFT\":25,\"CCF\":50,\"CCFT\":9,\"ACF\":500}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":250,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference__nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CRF\":50,\"ARFT\":12.5,\"ARF\":250,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3784,\"Tax\":761.83,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":192,\"CarrierMiscFee\":0,\"MUFee\":89.13,\"intPublishedFare\":4545.83,\"PublishedFare\":4652.82,\"OfferedFare\":4415.36,\"CommissionEarned\":41.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_79350952632651\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":36.1,\"apiMarkup\":0,\"IntCommission\":0.83,\"CommisionPass\":40.513200000000005,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200.53,\"GSTOnMarkUp\":36.1,\"CommEarned\":0.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":761.83,\"BaseFareCal\":4451.46,\"BaseFare\":3784,\"CommissionEarned\":41.34,\"TDS\":-2.18,\"MF\":15,\"YQ\":0,\"AGST\":192,\"MFT\":2.7,\"OT\":463,\"MU\":89.13,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":36.1,\"apiMarkup\":0,\"IntCommission\":0.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200.53,\"GSTOnMarkUp\":36.1,\"CommEarned\":0.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.83,\"IntAgencyFixMarkUp\":200.53,\"IntTaxOnAgencyFixMarkUp\":36.1,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":36.1,\"PublishFare\":4652.82,\"CostToCustomer\":4652.82,\"BaseFareCal\":4451.46,\"intCommisionEarnedForAgency\":201.36,\"CostToCompany\":4451.46,\"intOfferedFare\":4415.36,\"intPublishFare\":4545.83,\"TripjackMarkup\":89.13,\"TripjackCommission\":41.34,\"TripjackTDS\":\"2.18\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":40.513200000000005,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"524\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-05-22T05:50\",\"SegFlightNumber\":\"I5-743\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-22T05:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":670,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:00\",\"strArrivalDtTime\":\"05:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"11h 10m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"525\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-05-22T18:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-22T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"IB08\",\"Price\":1600,\"amount\":1600,\"Weight\":\"8Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBAB\",\"Price\":2250,\"amount\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"IB15\",\"Price\":3000,\"amount\":3000,\"Weight\":\"15Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBAC\",\"Price\":4500,\"amount\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBLD\",\"Price\":5714,\"amount\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"IB30\",\"Price\":6000,\"amount\":6000,\"Weight\":\"30Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBAD\",\"Price\":6750,\"amount\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBAF\",\"Price\":11250,\"amount\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"RPCM\",\"Price\":0,\"amount\":0,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"JMCB\",\"Price\":350,\"amount\":350,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"FTCB\",\"Price\":350,\"amount\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"53b3f-d49b9-326ca-4e88f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-18T12:56:50.012\",\"strTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR104261547223\",\"bookingId_TJ\":\"TJ104261547223\",\"FlightNumber\":\"I5-743\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"strTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2023-05-22T05:00\",\"LocalFromTime\":\"2023-05-22 05:00\",\"FromUTCTime\":\"2023-05-22T05:00\",\"LocalToTime\":\"2023-05-22 18:50\",\"ToUTCTime\":\"2023-05-22T18:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":670,\"LAYOVERDuration\":\"11h 10m\",\"FlyingMinutes\":830,\"DepartureDateTxt\":\"Mon, 22 May\",\"ArrivalDateTxt\":\"Mon, 22 May\",\"FlightDuration\":\"13h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4545.83,\"ApiResultIndex\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"53b3f-d49b9-326ca-4e88f\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-18T12:56:50.012\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3784,\"Tax\":761.83,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":192,\"CarrierMiscFee\":0,\"MUFee\":89.13,\"intPublishedFare\":4545.83,\"PublishedFare\":4652.82,\"OfferedFare\":4415.36,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200.53,\"GSTOnMarkUp\":36.1,\"CommEarned\":0.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":761.83,\"BaseFareCal\":4451.46,\"BaseFare\":3784,\"CommissionEarned\":41.34,\"TDS\":-2.18,\"MF\":15,\"YQ\":0,\"AGST\":192,\"MFT\":2.7,\"OT\":463,\"MU\":89.13,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":200.53,\"GSTOnMarkUp\":36.1,\"CommEarned\":0.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"524\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-05-22T05:50\",\"SegFlightNumber\":\"I5-743\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-22T05:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":670,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:00\",\"strArrivalDtTime\":\"05:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"11h 10m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"525\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-05-22T18:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-22T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"localFromDateTime\":\"2023-05-22 05:00\",\"localToDateTime\":\"2023-05-22 18:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','110.226.180.64','2023-04-18 07:26:11','2023-04-18 07:26:11',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(128,0,68,12577,0,0,NULL,'2023-04-30','BKR100161795462','TJ100161795462','UK-561','Vistara','',1,'8125e-f2ed6-81244-2d927','539','11:45:00','13:35:00',0,'Q',110,'1h 50m',18676,12995,'BOM','JAI','Non-stop',1,1,5246.87,'21-10-15-2-4294920419_1BOMJAIUK561_28148179045122',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/UK.gif','INR',4480,879.79,0,354,0,15,5246.87,5.31,0,0,38.53,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKR100161795462\",\"bookingId_TJ\":\"TJ100161795462\",\"FlightNumber\":\"UK-561\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"11:45\",\"ArrivalTime\":\"13:35\",\"TravelDate\":\"2023-04-30T11:45\",\"LocalFromTime\":\"2023-04-30 11:45\",\"FromUTCTime\":\"2023-04-30T11:45\",\"LocalToTime\":\"2023-04-30 13:35\",\"ToUTCTime\":\"2023-04-30T13:35\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Sun, 30 Apr\",\"ArrivalDateTxt\":\"Sun, 30 Apr\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5359.79,\"PublishedFareTxt\":\"5,360\",\"ApiResultIndex\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"CCFT\":9,\"ACF\":3675,\"ACFT\":183.75,\"CCF\":50}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARF\":3150,\"CRF\":50,\"ARFT\":157.5,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":879.79,\"YQTax\":0,\"OtherCharges\":354,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":233,\"CarrierMiscFee\":170,\"MUFee\":105.09,\"intPublishedFare\":5359.79,\"PublishedFare\":5246.87,\"OfferedFare\":4988.97,\"CommissionEarned\":265.73,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.99,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4294920419_0BOMJAIUK561_6226536215171\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":38.53,\"apiMarkup\":0,\"IntCommission\":5.31,\"CommisionPass\":260.41540000000003,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":214.06,\"GSTOnMarkUp\":38.53,\"CommEarned\":5.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":879.79,\"BaseFareCal\":5027.5,\"BaseFare\":4480,\"CommissionEarned\":265.73,\"TDS\":-13.99,\"MF\":15,\"YQ\":0,\"AGST\":233,\"MFT\":2.7,\"OT\":354,\"MU\":105.09,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":38.53,\"apiMarkup\":0,\"IntCommission\":5.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":214.06,\"GSTOnMarkUp\":38.53,\"CommEarned\":5.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":265.73,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.31,\"IntAgencyFixMarkUp\":214.06,\"IntTaxOnAgencyFixMarkUp\":38.53,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":38.53,\"PublishFare\":5246.87,\"CostToCustomer\":5246.87,\"BaseFareCal\":5027.5,\"intCommisionEarnedForAgency\":219.37,\"CostToCompany\":5027.5,\"intOfferedFare\":4988.97,\"intPublishFare\":5359.79,\"TripjackMarkup\":105.09,\"TripjackCommission\":265.73,\"TripjackTDS\":\"13.99\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":260.41540000000003,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"903\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-04-30T13:35\",\"SegFlightNumber\":\"UK-561\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-30T11:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:45\",\"strArrivalDtTime\":\"13:35\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"8125e-f2ed6-81244-2d927\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-21T13:08:06.798\",\"strTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-04-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR100161795462\",\"bookingId_TJ\":\"TJ100161795462\",\"FlightNumber\":\"UK-561\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"strTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"11:45\",\"ArrivalTime\":\"13:35\",\"TravelDate\":\"2023-04-30T11:45\",\"LocalFromTime\":\"2023-04-30 11:45\",\"FromUTCTime\":\"2023-04-30T11:45\",\"LocalToTime\":\"2023-04-30 13:35\",\"ToUTCTime\":\"2023-04-30T13:35\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Sun, 30 Apr\",\"ArrivalDateTxt\":\"Sun, 30 Apr\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5359.79,\"ApiResultIndex\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"8125e-f2ed6-81244-2d927\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-21T13:08:06.798\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":879.79,\"YQTax\":0,\"OtherCharges\":354,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":233,\"CarrierMiscFee\":170,\"MUFee\":105.09,\"intPublishedFare\":5359.79,\"PublishedFare\":5246.87,\"OfferedFare\":4988.97,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":214.06,\"GSTOnMarkUp\":38.53,\"CommEarned\":5.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":879.79,\"BaseFareCal\":5027.5,\"BaseFare\":4480,\"CommissionEarned\":265.73,\"TDS\":-13.99,\"MF\":15,\"YQ\":0,\"AGST\":233,\"MFT\":2.7,\"OT\":354,\"MU\":105.09,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":214.06,\"GSTOnMarkUp\":38.53,\"CommEarned\":5.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"903\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-04-30T13:35\",\"SegFlightNumber\":\"UK-561\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-30T11:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:45\",\"strArrivalDtTime\":\"13:35\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"localFromDateTime\":\"2023-04-30 11:45\",\"localToDateTime\":\"2023-04-30 13:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','110.226.182.208','2023-04-21 07:37:38','2023-04-21 07:37:38',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(129,0,69,12577,0,0,NULL,'2023-05-16','BKR101663669010','TJ101663669010','I5-679','AirAsia India','1',1,'4d600-05ae5-ffda4-59d8e','75','17:00:00','18:50:00',0,'EC',110,'1h 50m',12995,18676,'JAI','BOM','Non-stop',1,1,5228.12,'22-16-5511458113_0JAIBOMI5679_15066297012722',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/I5.gif','INR',4020,1098.05,0,776,0,15,5228.12,0.76,0,0,37.81,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKR101663669010\",\"bookingId_TJ\":\"TJ101663669010\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2023-05-16T17:00\",\"LocalFromTime\":\"2023-05-16 17:00\",\"FromUTCTime\":\"2023-05-16T17:00\",\"LocalToTime\":\"2023-05-16 18:50\",\"ToUTCTime\":\"2023-05-16T18:50\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 16 May\",\"ArrivalDateTxt\":\"Tue, 16 May\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5118.05,\"PublishedFareTxt\":\"5,118\",\"ApiResultIndex\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"JAI-BOM\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation in respect of the booking made under Family fare shall only be permissible if minimum of four (04) passengers are retained in the booking.\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"fcs\":{\"CRF\":50,\"ARFT\":162.5,\"ARF\":3250,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4020,\"Tax\":1098.05,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":204,\"CarrierMiscFee\":0,\"MUFee\":100.35,\"intPublishedFare\":5118.05,\"PublishedFare\":5228.12,\"OfferedFare\":4979.51,\"CommissionEarned\":38.19,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.01,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-5511458113_0JAIBOMI5679_684871371971\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":37.81,\"apiMarkup\":0,\"IntCommission\":0.76,\"CommisionPass\":37.426199999999994,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":210.04,\"GSTOnMarkUp\":37.81,\"CommEarned\":0.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1098.05,\"BaseFareCal\":5017.32,\"BaseFare\":4020,\"CommissionEarned\":38.19,\"TDS\":-2.01,\"MF\":15,\"YQ\":0,\"AGST\":204,\"MFT\":2.7,\"OT\":776,\"MU\":100.35,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":37.81,\"apiMarkup\":0,\"IntCommission\":0.76,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":210.04,\"GSTOnMarkUp\":37.81,\"CommEarned\":0.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":38.19,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.76,\"IntAgencyFixMarkUp\":210.04,\"IntTaxOnAgencyFixMarkUp\":37.81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":37.81,\"PublishFare\":5228.12,\"CostToCustomer\":5228.12,\"BaseFareCal\":5017.32,\"intCommisionEarnedForAgency\":210.81,\"CostToCompany\":5017.32,\"intOfferedFare\":4979.51,\"intPublishFare\":5118.05,\"TripjackMarkup\":100.35,\"TripjackCommission\":38.19,\"TripjackTDS\":\"2.01\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":37.426199999999994,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"432\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-05-16T18:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-16T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"IB08\",\"Price\":1600,\"amount\":1600,\"Weight\":\"8Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PBAB\",\"Price\":2250,\"amount\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"IB15\",\"Price\":3000,\"amount\":3000,\"Weight\":\"15Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PBAC\",\"Price\":4500,\"amount\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"IB30\",\"Price\":6000,\"amount\":6000,\"Weight\":\"30Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PBAD\",\"Price\":6750,\"amount\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PBAF\",\"Price\":11250,\"amount\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"SDAI\",\"Price\":300,\"amount\":300,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"RPCB\",\"Price\":350,\"amount\":350,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"JMCB\",\"Price\":350,\"amount\":350,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"FTCB\",\"Price\":350,\"amount\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"XCCB\",\"Price\":600,\"amount\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"SICB\",\"Price\":600,\"amount\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"RICB\",\"Price\":600,\"amount\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PTCB\",\"Price\":600,\"amount\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"KACB\",\"Price\":600,\"amount\":600,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"GACB\",\"Price\":600,\"amount\":600,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"COCB\",\"Price\":600,\"amount\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"CJCB\",\"Price\":600,\"amount\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"AMCB\",\"Price\":600,\"amount\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d600-05ae5-ffda4-59d8e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-13T09:29:42.471\",\"strTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR101663669010\",\"bookingId_TJ\":\"TJ101663669010\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"strTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2023-05-16T17:00\",\"LocalFromTime\":\"2023-05-16 17:00\",\"FromUTCTime\":\"2023-05-16T17:00\",\"LocalToTime\":\"2023-05-16 18:50\",\"ToUTCTime\":\"2023-05-16T18:50\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 16 May\",\"ArrivalDateTxt\":\"Tue, 16 May\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5118.05,\"ApiResultIndex\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"4d600-05ae5-ffda4-59d8e\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-13T09:29:42.471\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4020,\"Tax\":1098.05,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":204,\"CarrierMiscFee\":0,\"MUFee\":100.35,\"intPublishedFare\":5118.05,\"PublishedFare\":5228.12,\"OfferedFare\":4979.51,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":210.04,\"GSTOnMarkUp\":37.81,\"CommEarned\":0.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1098.05,\"BaseFareCal\":5017.32,\"BaseFare\":4020,\"CommissionEarned\":38.19,\"TDS\":-2.01,\"MF\":15,\"YQ\":0,\"AGST\":204,\"MFT\":2.7,\"OT\":776,\"MU\":100.35,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":210.04,\"GSTOnMarkUp\":37.81,\"CommEarned\":0.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"432\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-05-16T18:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-16T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"localFromDateTime\":\"2023-05-16 17:00\",\"localToDateTime\":\"2023-05-16 18:50\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','106.207.143.159','2023-05-13 03:58:57','2023-05-13 03:58:57',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'1',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL),(130,0,70,12577,0,0,NULL,'2023-06-04','BKR102565263653','TJ102565263653','AI-665','Air India','',1,'1375e-3ad5d-14710-ec78a','42','08:00:00','10:20:00',0,'H',140,'2h 20m',7701,18676,'DEL','BOM','Non-stop',1,1,16103.66,'21-10-15-2-7014919502_140DELBOMAI665_1295397135117',1,1,0,'https://www.svezz.com/public/upload/AirlineLogo/AI.gif','INR',14630,1635.63,0,389,0,15,16103.66,6.32,0,0,71.15,0,0,0,0,0,0,0,NULL,0,'{\"bookingId\":\"BKR102565263653\",\"bookingId_TJ\":\"TJ102565263653\",\"FlightNumber\":\"AI-665\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:20\",\"TravelDate\":\"2023-06-04T08:00\",\"LocalFromTime\":\"2023-06-04 08:00\",\"FromUTCTime\":\"2023-06-04T08:00\",\"LocalToTime\":\"2023-06-04 10:20\",\"ToUTCTime\":\"2023-06-04T10:20\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 04 Jun\",\"ArrivalDateTxt\":\"Sun, 04 Jun\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":16265.63,\"PublishedFareTxt\":\"16,266\",\"ApiResultIndex\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"fcs\":{\"ACF\":3000,\"CCFT\":9,\"ACFT\":150,\"CCF\":50}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-72 hrs Rs 1,000 + Fare Difference if any __nls__ Before 72 hrs NIL + Fare Difference if any\",\"fcs\":{\"CRF\":50,\"ARFT\":50,\"ARF\":1000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14630,\"Tax\":1635.63,\"YQTax\":0,\"OtherCharges\":389,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":740,\"CarrierMiscFee\":170,\"MUFee\":318.93,\"intPublishedFare\":16265.63,\"PublishedFare\":16103.66,\"OfferedFare\":15630.91,\"CommissionEarned\":315.79,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-7014919502_0DELBOMAI665_12103328259692\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":71.15,\"apiMarkup\":0,\"IntCommission\":6.32,\"CommisionPass\":309.4742,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":395.28,\"GSTOnMarkUp\":71.15,\"CommEarned\":6.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1635.63,\"BaseFareCal\":15702.06,\"BaseFare\":14630,\"CommissionEarned\":315.79,\"TDS\":-16.62,\"MF\":15,\"YQ\":0,\"AGST\":740,\"MFT\":2.7,\"OT\":389,\"MU\":318.93,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":71.15,\"apiMarkup\":0,\"IntCommission\":6.32,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":395.28,\"GSTOnMarkUp\":71.15,\"CommEarned\":6.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":315.79,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.32,\"IntAgencyFixMarkUp\":395.28,\"IntTaxOnAgencyFixMarkUp\":71.15,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":71.15,\"PublishFare\":16103.66,\"CostToCustomer\":16103.66,\"BaseFareCal\":15702.06,\"intCommisionEarnedForAgency\":401.6,\"CostToCompany\":15702.06,\"intOfferedFare\":15630.91,\"intPublishFare\":16265.63,\"TripjackMarkup\":318.93,\"TripjackCommission\":315.79,\"TripjackTDS\":\"16.62\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":309.4742,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"144\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-04T10:20\",\"SegFlightNumber\":\"AI-665\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"H\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-04T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"1375e-3ad5d-14710-ec78a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-06-03T10:46:00.641\",\"strTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR102565263653\",\"bookingId_TJ\":\"TJ102565263653\",\"FlightNumber\":\"AI-665\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"strTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:20\",\"TravelDate\":\"2023-06-04T08:00\",\"LocalFromTime\":\"2023-06-04 08:00\",\"FromUTCTime\":\"2023-06-04T08:00\",\"LocalToTime\":\"2023-06-04 10:20\",\"ToUTCTime\":\"2023-06-04T10:20\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 04 Jun\",\"ArrivalDateTxt\":\"Sun, 04 Jun\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":16265.63,\"ApiResultIndex\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"1375e-3ad5d-14710-ec78a\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-06-03T10:46:00.641\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14630,\"Tax\":1635.63,\"YQTax\":0,\"OtherCharges\":389,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":740,\"CarrierMiscFee\":170,\"MUFee\":318.93,\"intPublishedFare\":16265.63,\"PublishedFare\":16103.66,\"OfferedFare\":15630.91,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":395.28,\"GSTOnMarkUp\":71.15,\"CommEarned\":6.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1635.63,\"BaseFareCal\":15702.06,\"BaseFare\":14630,\"CommissionEarned\":315.79,\"TDS\":-16.62,\"MF\":15,\"YQ\":0,\"AGST\":740,\"MFT\":2.7,\"OT\":389,\"MU\":318.93,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":395.28,\"GSTOnMarkUp\":71.15,\"CommEarned\":6.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"144\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-04T10:20\",\"SegFlightNumber\":\"AI-665\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"H\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-04T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"localFromDateTime\":\"2023-06-04 08:00\",\"localToDateTime\":\"2023-06-04 10:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'0','103.86.16.34','2023-06-03 05:15:06','2023-06-03 05:15:06',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',0,'074983',0,7,NULL,NULL,NULL,0,0,'',0,'0',NULL);
/*!40000 ALTER TABLE `tbl_flight_booking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_flight_booking_customer`
--

DROP TABLE IF EXISTS `tbl_flight_booking_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight_booking_customer` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `flight_booking_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `apiTraceId` text NOT NULL,
  `BookingId` varchar(200) DEFAULT NULL,
  `APIBookingId` varchar(200) DEFAULT NULL,
  `PNR_Number` varchar(200) DEFAULT NULL,
  `TicketId` varchar(200) DEFAULT NULL,
  `TicketNumber` varchar(200) DEFAULT NULL,
  `sectors` varchar(300) DEFAULT NULL,
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `AgentSysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` int NOT NULL DEFAULT '0',
  `Gender_Id` tinyint NOT NULL DEFAULT '0',
  `Relation` varchar(255) DEFAULT NULL,
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) NOT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `IsPswExpire` int NOT NULL DEFAULT '0',
  `CreatedByUserSysId` int NOT NULL DEFAULT '0',
  `DOB` date DEFAULT NULL,
  `PassportNo` varchar(100) DEFAULT NULL,
  `PassportNation` varchar(50) DEFAULT NULL,
  `PassportExpiry` date DEFAULT NULL,
  `passporIssue` date DEFAULT NULL,
  `MarriageAnniversary` date DEFAULT NULL,
  `Address` varchar(200) NOT NULL,
  `CityTitle` varchar(100) DEFAULT NULL,
  `CitySysId` varchar(255) DEFAULT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `StateOrZoneSysId` int NOT NULL DEFAULT '0',
  `CountrySysId` varchar(255) DEFAULT NULL,
  `countryCode` varchar(50) DEFAULT NULL,
  `companyname` varchar(100) DEFAULT NULL,
  `gstnnumber` varchar(100) DEFAULT NULL,
  `gstemail` varchar(250) DEFAULT NULL,
  `gstphone` varchar(250) DEFAULT NULL,
  `gstaddress` varchar(250) DEFAULT NULL,
  `gststate` varchar(250) DEFAULT NULL,
  `BaseFare` float NOT NULL DEFAULT '0',
  `Tax` float NOT NULL DEFAULT '0',
  `OtherCharges` float NOT NULL DEFAULT '0',
  `AgentCommisionEarned` float NOT NULL DEFAULT '0',
  `AgentCommisionEarnedGST` float NOT NULL DEFAULT '0',
  `AgencyMarkUp` float NOT NULL DEFAULT '0',
  `AgencyMarkUpGST` float NOT NULL DEFAULT '0',
  `GTXMarkUp` float NOT NULL DEFAULT '0',
  `GTXMarkUpGST` float NOT NULL DEFAULT '0',
  `Discount` float unsigned NOT NULL DEFAULT '0',
  `ServiceFee` float unsigned NOT NULL DEFAULT '0',
  `MealPrice` float NOT NULL DEFAULT '0',
  `BaggagePrice` float NOT NULL DEFAULT '0',
  `Baggage` varchar(100) DEFAULT NULL,
  `CabinBaggage` varchar(100) DEFAULT NULL,
  `ChangeRequestId` varchar(200) DEFAULT NULL,
  `ChangeRequestRes` text,
  `ChangeRequestStatus` varchar(200) DEFAULT NULL,
  `RegisterDate` date DEFAULT NULL,
  `JourneyType` smallint NOT NULL DEFAULT '0',
  `IsApproved` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `ip_address` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=188 DEFAULT CHARSET=utf8mb3 COMMENT='Users';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight_booking_customer`
--

LOCK TABLES `tbl_flight_booking_customer` WRITE;
/*!40000 ALTER TABLE `tbl_flight_booking_customer` DISABLE KEYS */;
INSERT INTO `tbl_flight_booking_customer` VALUES (1,1,1,'a8bc3-1049d-f9d0a-81b9b',NULL,NULL,NULL,NULL,NULL,NULL,0,12761,0,'prince9716630144@gmail.com',1,0,'0','9716630144','sohan','lal','',0,12761,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-05-25',0,'0','1',NULL,NULL,NULL,'0',NULL),(10,0,10,'fdab1-f0e09-ba5f6-4dfa6','TJS106100291196',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-VNS-VNS-BOM',0,12577,0,'komal@hellogtx.com',3,0,'0','9999977655','Komal','Test','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(11,0,11,'bde17-05e94-739f9-c4190','TJS102000291382',NULL,'S2TJ5Z','S2TJ5Z','','JAI-BOM',0,12577,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2022-07-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(12,0,3,'fb658-42ab6-b967a-b9b8a','TJS100700291789',NULL,'NV469F','NV469F','','BOM-JAI',0,12577,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'','',NULL,NULL,NULL,'2022-07-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(13,0,12,'6c858-644be-0d764-9a961','TJS107600291866',NULL,'F46GJL','F46GJL','','BOM-JAI',0,12577,0,'bharatbhanushali21@gmail.com',1,0,'0','9930301095','Bharat ','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(14,0,4,'00bce-5e0c2-fd03b-044ae',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(15,0,13,'45d95-b117e-3ca28-0f8ed','TJS101400291881',NULL,'TESTPNR','TESTPNR','11111111111','BOM-PAT',0,12577,0,'KUMAR.SAUJANYA@GMAIL.COM',1,0,'0','9699883388','SAUJANYA','KUMAR','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-07-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(16,0,14,'b2dc9-5ee86-6da33-f7b6b',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'mybharatyatra@gmail.com',2,0,'0','9560102821','NAMRATA','NIGAM','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(17,0,5,'450ac-ecfe5-ad96d-731bf','TJS104400292683',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,12577,0,'mybharatyatra@gmail.com',2,0,'0','9560102821','NAMRATA','NIGAM','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(18,0,6,'3836b-a0cde-49fcb-94bab',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','Param Karmanya','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(19,0,7,'d0abb-2f7e4-5fef2-ada57','TJS100400292694',NULL,'TESTPNR','TESTPNR','','BOM-DEL',0,12577,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','Param Karmanya','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(20,0,4,'2dab7-3a7a6-14ca1-02bdd',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'amith.c.shetty@gmail.com',1,0,'0','8105807501','AMITH','SHETTY','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'1Piece','7 Kg',NULL,NULL,NULL,'2022-07-10',1,'0','1',NULL,NULL,NULL,'0',NULL),(21,0,8,'5b7cc-276fc-0a05c-a8aa8','TJS105000293026',NULL,'TESTPNR','TESTPNR','','DEL-JAI',0,12577,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-11',1,'0','1',NULL,NULL,NULL,'0',NULL),(22,0,15,'49fd8-fa47d-c7f90-78838',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'navratan@catpl.co.in',1,0,'0','9997513572','Navratan','Singh','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-07-12',1,'0','1',NULL,NULL,NULL,'0',NULL),(23,0,16,'e2db5-a786d-a857a-db53e','TJS100400295658',NULL,'TESTPNR','TESTPNR','','DEL-BOM',0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(24,0,16,'9a82a-a192f-c0f0c-11e37',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'25 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(25,0,12,'40604-91975-b03f5-43aca','TJS118100295694',NULL,'M9517Z','M9517Z','','DEL-DXB',0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,'1968-07-26','86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(26,0,13,'40604-91975-b03f5-43aca','TJS118100295694',NULL,'M9517Z','M9517Z','','DEL-DXB',0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','nehu','kannojia','',0,12577,'1968-07-26','5645645646545','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(27,0,14,'40604-91975-b03f5-43aca','TJS118100295694',NULL,'M9517Z','M9517Z','','DEL-DXB',0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niya','kannojia','',0,12577,'2014-07-12','8756434684556','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(28,0,15,'40604-91975-b03f5-43aca','TJS118100295694',NULL,'M9517Z','M9517Z','','DEL-DXB',0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niti','kannojia','',0,12577,'2012-07-12','897564545678456','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(29,0,21,'62a50-3fce4-41b48-07129',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,'1996-07-26','86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(30,0,22,'62a50-3fce4-41b48-07129',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','nehu','kannojia','',0,12577,'1996-07-26','9856646864545648','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(31,0,23,'62a50-3fce4-41b48-07129',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niya','kannojia','',0,12577,'2012-07-12','8756434684556','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(32,0,24,'62a50-3fce4-41b48-07129',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niti','kannojia','',0,12577,'2012-07-11','897564545678456','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(33,0,25,'6812b-610e4-a3fa5-b8a93',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,'1982-07-29','86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(34,0,26,'6812b-610e4-a3fa5-b8a93',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','nehu','kannojia','',0,12577,'1971-07-28','2548784548789746','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(35,0,27,'6812b-610e4-a3fa5-b8a93',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','rishi','kannojia','',0,12577,'1982-07-29','8756434684556','IN','2024-07-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(36,0,28,'6812b-610e4-a3fa5-b8a93',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niti','kannojia','',0,12577,'2016-07-15','897564545678456','IN','2024-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(37,0,29,'6812b-610e4-a3fa5-b8a93',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niya','kannojia','',0,12577,'2017-07-15','35487854878548','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(38,0,16,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,'1947-07-26','86556986465498789','IN','2023-03-20',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'35KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(39,0,12,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','riya','kannojia','',0,12577,'1968-07-26','86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'35KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(40,0,13,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','kirti','kannojia','',0,12577,'1968-07-26','5645645646545','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'35KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(41,0,21,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','kirtika','kannojia','',0,12577,'1996-07-26','86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'35KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(42,0,22,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','gulshan','kannojia','',0,12577,'1996-07-26','9856646864545648','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'35KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(43,0,12,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','ritu','kannojia','',0,12577,'2010-08-18','86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'35KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(44,0,21,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','pyal','kannojia','',0,12577,'2013-08-09','86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'35KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(45,0,22,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','chiya','kannojia','',0,12577,'2011-08-11','9856646864545648','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'35KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(46,0,27,'cc219-00983-64483-0e304',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','rishi','kannojia','',0,12577,'2021-08-02','8756434684556','IN','2024-07-21',NULL,NULL,'','0','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(47,0,16,'a6f22-77376-95819-ac42c',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-20',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(48,0,13,'a6f22-77376-95819-ac42c',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','kirti','kannojia','',0,12577,NULL,'5645645646545','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(49,0,26,'a6f22-77376-95819-ac42c',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','nehu','kannojia','',0,12577,NULL,'2548784548789746','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(50,0,12,'a6f22-77376-95819-ac42c',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','ritu','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30Kilograms','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(51,0,16,'0da38-f85b6-f4771-7aa83',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-20',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30 Kg','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(52,0,13,'0da38-f85b6-f4771-7aa83',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','kirti','kannojia','',0,12577,NULL,'5645645646545','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30 Kg','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(53,0,12,'0da38-f85b6-f4771-7aa83',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','ritu','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30 Kg','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(54,0,14,'0da38-f85b6-f4771-7aa83',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niya','kannojia','',0,12577,NULL,'8756434684556','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30 Kg','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(55,0,16,'36aaa-ae872-a477f-5d6a3',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-20',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(56,0,13,'36aaa-ae872-a477f-5d6a3',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','kirti','kannojia','',0,12577,NULL,'5645645646545','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(57,0,12,'36aaa-ae872-a477f-5d6a3',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','ritu','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(58,0,14,'36aaa-ae872-a477f-5d6a3',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niya','kannojia','',0,12577,NULL,'8756434684556','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(59,0,15,'36aaa-ae872-a477f-5d6a3',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niti','kannojia','',0,12577,NULL,'897564545678456','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(60,0,16,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-20',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(61,0,12,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','ritu','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(62,0,13,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','kirti','kannojia','',0,12577,NULL,'5645645646545','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(63,0,14,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niya','kannojia','',0,12577,NULL,'8756434684556','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(64,0,15,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niti','kannojia','',0,12577,NULL,'897564545678456','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(65,0,21,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','pyal','kannojia','',0,12577,NULL,'86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(66,0,23,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','piya','kannojia','',0,12577,NULL,'8756434684556','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(67,0,22,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','chiya','kannojia','',0,12577,NULL,'9856646864545648','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(68,0,27,'884fa-abec5-53d88-470eb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','rishi','kannojia','',0,12577,'2021-08-02','8756434684556','IN','2024-07-21',NULL,NULL,'','0','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(69,0,17,'5eaad-a2e4d-73954-6c859','TJS109400296246',NULL,'TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-AMD-AMD-BOM',0,12577,0,'komal@hellogtx.com',2,0,'0','8595077740','Komal','Malhotra','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(70,0,30,'cee11-d017b-ef198-24085',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'komal@hellogtx.com',2,0,'0','8595077740','Komal','Malhotra','',0,12577,'1947-07-26','test','IN','2022-07-26',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'2PC','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(71,0,31,'b677e-9fcd6-f6662-d3604',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'komal@hellogtx.com',2,0,'0','8595077740','Komal','Malhotra','',0,12577,NULL,'test','IN','2022-07-31',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'30 Kg','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(72,0,16,'a1856-b4f87-61516-729df',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,'1951-07-26','86556986465498789','IN','2023-03-20',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(73,0,12,'a1856-b4f87-61516-729df',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','ritu','kannojia','',0,12577,'1960-06-27','86556986465498789','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(74,0,13,'a1856-b4f87-61516-729df',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','kirti','kannojia','',0,12577,'1955-07-28','5645645646545','IN','2023-03-21',NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(75,0,14,'a1856-b4f87-61516-729df',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niya','kannojia','',0,12577,'2010-08-18','8756434684556','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(76,0,15,'a1856-b4f87-61516-729df',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',1,0,'0','8923963627','niti','kannojia','',0,12577,'2013-08-09','897564545678456','IN','2023-03-21',NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'20KG','7Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(77,0,18,'5ceae-66b41-62173-aec79',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'sibo.sarso@gmail.com',1,0,'0','8447455883','Mohammad','sabir','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(78,0,18,'04fee-ed7f7-3a00e-a9242',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'sibo.sarso@gmail.com',1,0,'0','8447455883','Mohammad','sabir','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(79,0,32,'779d8-25bad-dc37a-ceb6b',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'kumar.saujanya@gmail.com',1,0,'0','9699883388','Saujanya ','Kumar ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(80,0,19,'79abf-a3edb-821fc-be954',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'jordankarpathy@gmail.com',1,0,'0','9660614455','Chinmay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(81,0,16,'eae10-d0930-db9e6-19d40',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-07-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(82,47,20,'230ce-63b00-d965f-e230b','DMCS100900299099','TJS100900299099','TESTPNR','TESTPNR','','DEL-BOM',0,12728,0,'komalmalhotra0101@gmail.com',1,0,'0','9999977655','Mohammad','sabir','',0,12728,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat','7000299112',NULL,'8','2022-07-18',0,'0','1',NULL,NULL,NULL,'0',NULL),(83,48,20,'e2c45-b65a8-4708e-fbbfb','DMCS103800299101','TJS103800299101','TESTPNR-TESTPNR','TESTPNR-TESTPNR','','DEL-VNS-VNS-BOM',0,12728,0,'komalmalhotra0101@gmail.com',1,0,'0','9999977655','Mohammad','sabir','',0,12728,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat','2',NULL,'12','2022-07-18',0,'0','1',NULL,NULL,NULL,'0',NULL),(87,0,22,'c8622-16314-94fb7-65f98',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'mpiboxes@gmail.com',1,0,'0','9820918128','Arjun','Gori','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'25KG','7 Kg',NULL,NULL,NULL,'2022-07-19',1,'0','1',NULL,NULL,NULL,'0',NULL),(88,0,35,'c8622-16314-94fb7-65f98',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'mpiboxes@gmail.com',2,0,'0','9820918128','Darshna','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'25KG','7 Kg',NULL,NULL,NULL,'2022-07-19',1,'0','1',NULL,NULL,NULL,'0',NULL),(89,0,36,'c8622-16314-94fb7-65f98',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'mpiboxes@gmail.com',1,0,'0','9820918128','Ditya','Gori','',0,12577,'2021-05-08',NULL,NULL,NULL,NULL,NULL,'','0','0',3,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'2022-07-19',1,'0','1',NULL,NULL,NULL,'0',NULL),(90,0,4,'6716a-64f1d-d6a1b-27cfd',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'amith.c.shetty@gmail.com',1,0,'0','8105807501','AMITH','SHETTY','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91','','',NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-19',1,'0','1',NULL,NULL,NULL,'0',NULL),(91,0,24,'5e392-46cec-16db0-d700b',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bharatbhanushali21@gmail.com',1,0,'0','8422931095','bharat','bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(92,0,37,'5e392-46cec-16db0-d700b',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bharatbhanushali21@gmail.com',2,0,'0','8422931095','ekta','bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(93,0,38,'5e392-46cec-16db0-d700b',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bharatbhanushali21@gmail.com',1,0,'0','8422931095','bhavya','bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(94,0,25,'25ca0-44bad-fc267-ff71d',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bharat@svezz.com',1,0,'0','9702278610','RAJKUMAR','VARMA','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(95,0,26,'38063-a3741-a653e-e5a4f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bharat@svezz.com',1,0,'0','9930301095','RAJKUMAR','VARMA','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(96,0,39,'f0372-a1b0e-2a7df-12fb0','TJ109638329632',NULL,'O3N12Y','O3N12Y','','BOM-LKO',0,12577,0,'bharat@svezz.com',1,0,'0','9930301095','RAJKUMAR','VARMA','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(97,0,13,'39440-70ac5-1a0a3-97625',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nehakumari@catpl.co.in',3,0,'0','8923963627','neha','kannojia','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-07-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(98,0,27,'21347-cf9ba-9b82e-20671',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'email2vs@gmail.com',1,0,'0','9811643365','Vishal','Singh','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-01',1,'0','1',NULL,NULL,NULL,'0',NULL),(99,0,28,'f9920-03ab5-b23c8-b2e02',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'samaniageeta@gmail.com',2,0,'0','09873463822','Megha','Paghda','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-02',1,'0','1',NULL,NULL,NULL,'0',NULL),(100,0,29,'f2ecf-89979-9b737-31e50','TJ100739265875',NULL,'6OHPRJ','6OHPRJ','2283908709231','BOM-DEL',0,12577,0,'samaniamohit@gmail.com',2,0,'0','7011644515','Megha ','Mandar pagade ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-02',1,'0','1',NULL,NULL,NULL,'0',NULL),(101,0,40,'30541-221d9-5639f-e75bb',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','AJAY','KHATRI','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-08-06',1,'0','1',NULL,NULL,NULL,'0',NULL),(102,0,30,'06634-e300f-1e490-9a566',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nikhil.dugar@outlook.com',1,0,'0','9783576789','Narendra kumar ','Dugar','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-06',1,'0','1',NULL,NULL,NULL,'0',NULL),(104,0,35,'41a3a-36d88-d14b6-2f14b',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'rahulkumar@gmail.com',1,0,'0','7478747899','RAHUL','KUMAR','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-08-11',1,'0','1',NULL,NULL,NULL,'0',NULL),(105,0,36,'ecfdb-01a14-737d7-a7662',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'psujoy@gmail.com',1,0,'0','9767334589','Sujoy','Paul','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-08-11',1,'0','1',NULL,NULL,NULL,'0',NULL),(109,0,44,'abca5-ec992-96bf6-934fe','TJ103540179735',NULL,NULL,NULL,'','BOM-JAI',0,12577,0,'helppower@gmail.com',1,0,'0','9768860440','lokhandwala moiz','shabbir','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-08-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(110,0,37,'abca5-ec992-96bf6-934fe','TJ103540179735',NULL,NULL,NULL,'','BOM-JAI',0,12577,0,'helppower@gmail.com',1,0,'0','9768860440','shabbir maula','shaikh','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-08-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(111,0,37,'abca5-ec992-96bf6-934fe','TJ103540179735',NULL,NULL,NULL,'','BOM-JAI',0,12577,0,'helppower@gmail.com',2,0,'0','9768860440','sabhanaz  mohamad s','shiekh','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-08-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(112,0,39,'eef9e-39902-4d7d4-fb4d8',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'vyas.harshad@ymail.com',1,0,'0','9879457702','Harshad ','Vyas ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(113,0,45,'644e6-ef528-65f97-09b86','TJ108940248079',NULL,'599HK8','599HK8','2283909324283','BOM-CCU',0,12577,0,'helppower@gmail.com',1,0,'0','9768860440','NADEEM FEROZ','KHAN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-15',1,'0','1',NULL,NULL,NULL,'0',NULL),(114,0,40,'8d65a-23fba-f2ef2-ba890',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'narwalveer@gmail.com',1,0,'0','8307741492','Karmveer','Karmveer','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-18',1,'0','1',NULL,NULL,NULL,'0',NULL),(115,0,46,'89d33-0b3e4-09b94-2c6ca',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'narwalveer@gmail.com',1,0,'0','8307741492','Karmveer','Karmveer','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-18',1,'0','1',NULL,NULL,NULL,'0',NULL),(116,0,41,'d4375-89284-90228-9c8b1',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ashishbaid.1994@yahoo.in',1,0,'0','8955465384','Bimal kumar ','Baid','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-19',1,'0','1',NULL,NULL,NULL,'0',NULL),(118,0,43,'3cf3b-3261b-008b9-58a00',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'tripllvgvailor@outlook.com',1,0,'0','7699017380','Nikhb','Ja','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-19',1,'0','1',NULL,NULL,NULL,'0',NULL),(119,0,44,'4d243-0055d-55299-aa194',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'m.s.samania@gmail.com',2,0,'0','83778144563','geeta','samania','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-19',1,'0','1',NULL,NULL,NULL,'0',NULL),(120,0,47,'4d243-0055d-55299-aa194',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'m.s.samania@gmail.com',2,0,'0','83778144563','megha','pagade','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-19',1,'0','1',NULL,NULL,NULL,'0',NULL),(121,0,45,'e7403-2bd0d-da555-5cacf',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'arnavkarn@hotmail.com',1,0,'0','9869558770','UPENDRA KUMAR ','KARN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(122,0,48,'ababa-8b8bd-b98e8-bd1c9','TJ108240692423',NULL,'J6JR6P-FRNDWA','J6JR6P-FRNDWA','','BLR-BOM',0,12577,0,'amith.c.shetty@gmail.com',1,0,'0','8105807501','AMITH','C SHETTY','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-08-21',1,'0','1',NULL,NULL,NULL,'0',NULL),(123,0,48,'ababa-8b8bd-b98e8-bd1c9',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'amith.c.shetty@gmail.com',1,0,'0','8105807501','AMITH','C SHETTY','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-21',2,'0','1',NULL,NULL,NULL,'0',NULL),(124,0,46,'90697-b1ab0-17302-7aefd','TJ101940706511',NULL,'5BXRYC','5BXRYC','2283909601677','PAT-DEL',0,12577,0,'atulkarn@hotmail.com',1,0,'0','7506645196','UPENDRA KUMAR ','KARN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-21',1,'0','1',NULL,NULL,NULL,'0',NULL),(125,0,49,'9354e-06eb7-177ad-3d2f2','TJ108240744796',NULL,'HT15FX','HT15FX','','IXB-DEL',0,12577,0,'nikhil.dugar@outlook.com',1,0,'0','9783576789','Narendra kumar','Dugar','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-22',1,'0','1',NULL,NULL,NULL,'0',NULL),(126,0,47,'2271d-51f78-4f9da-b9ae6','TJ100441037963',NULL,'68YL4N','68YL4N','2283909822718','DEL-GAU',0,12577,0,'das2techconsultancy@gmail.com',1,0,'0','7085589052','Raju','Das','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-25',1,'0','1',NULL,NULL,NULL,'0',NULL),(127,0,50,'2271d-51f78-4f9da-b9ae6','TJ100441037963',NULL,'68YL4N','68YL4N','2283909822719','DEL-GAU',0,12577,0,'das2techconsultancy@gmail.com',1,0,'0','7085589052','Amir','Khan','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2022-08-25',1,'0','1',NULL,NULL,NULL,'0',NULL),(128,0,48,'bbe72-9cc7f-dd56e-57d93','TJ104241039445',NULL,'HEHZQD','HEHZQD','','DEL-CCU',0,12577,0,'das2techconsultancy@gmail.com',1,0,'0','7003083313','Goutam','Das','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-08-25',1,'0','1',NULL,NULL,NULL,'0',NULL),(129,82,49,'27756-47023-244eb-9a768',NULL,NULL,NULL,NULL,NULL,'BOM-DEL',0,16498,0,'am0856754@gmail.com',1,0,'0','9137879250','gaurav','gupta','',0,16498,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-26',1,'0','1',NULL,NULL,NULL,'0',NULL),(130,83,50,'a9dd3-5f6de-aceef-6ab3c',NULL,NULL,NULL,NULL,NULL,'BOM-LKO',0,13985,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','Ajay','Khatri','',0,13985,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-26',1,'0','1',NULL,NULL,NULL,'0',NULL),(131,0,51,'754b3-9725a-b7852-a53f4',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'arb@gmail.com',1,0,'0','9485994885','Akshat','Sharma','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(132,85,50,'46eee-0e0f0-8d5ef-616bb','DMCS108800327228','TJS108800327228','TESTPNR','TESTPNR','','BOM-DEL',0,13985,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','Ajay','Khatri','',0,13985,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-08-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(133,0,51,'906a0-a203e-b4e8d-20ef4','TJ105441369261',NULL,'O6FDHS','O6FDHS','','JAI-BOM',0,12577,0,'AJAYKHATRI5775@GMAIL.COM',1,0,'0','9829015180','AJAY ','KHATRI','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-08-30',1,'0','1',NULL,NULL,NULL,'0',NULL),(134,0,51,'906a0-a203e-b4e8d-20ef4',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'AJAYKHATRI5775@GMAIL.COM',1,0,'0','9829015180','AJAY ','KHATRI','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-08-30',2,'0','1',NULL,NULL,NULL,'0',NULL),(135,0,53,'7f281-8e915-1c6f3-0339f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'barnali.saha.09@gmail.com',1,0,'0','7908364416','Bapi','Saha','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-08-30',1,'0','1',NULL,NULL,NULL,'0',NULL),(136,0,54,'ac10d-9538b-eeecc-5a4b5',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'nancysrivastava1996@gmail.com',2,0,'0','7091458187','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(137,0,55,'4d5e0-f9125-67203-c3b4a',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ritasriwastaw1996@gmail.com',3,0,'0','7091458187','Nancy ','Srivastava ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(138,0,52,'da6b1-a9d9e-d1b70-52911',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ritasriwastaw1996@gmail.com',2,0,'0','7091458187','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(139,0,53,'a9ad5-a8f3b-b551c-bed5c',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ritasriwastaw1996@gmail.com',3,0,'0','7091458187','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-07',1,'0','1',NULL,NULL,NULL,'0',NULL),(140,0,54,'6740c-5fc64-868ab-54c1a',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ritasriwastaw1996@gmail.com',3,0,'0','7091458187','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(141,0,55,'ceb01-1c8ff-5b7e3-635bd','TJ101042204842',NULL,'D99N9G','D99N9G','','BOM-CCU',0,12577,0,'itskamalraja@gmail.com',3,0,'0','9091776621','Rani','Begun','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(142,95,56,'b261a-d079d-56ee3-02acb',NULL,NULL,NULL,NULL,NULL,'BOM-DEL',0,19895,0,'info@mybharatyatra.com',1,0,'0','8422931095','BHARAT B','BHANUSHALI','',0,19895,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-09-09',1,'0','1',NULL,NULL,NULL,'0',NULL),(143,0,57,'fa72d-5cc26-d70e4-eb167',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'abc@gmail.com',1,0,'0','7364773884','ABC','XYZ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-09-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(144,0,58,'5fab4-08094-b457e-34cad',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'niteshranjan1992@gmail.com',1,0,'0','9691557224','Nitesh','Ranjan','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-09-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(145,0,56,'5fab4-08094-b457e-34cad',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'niteshranjan1992@gmail.com',2,0,'0','9691557224','Nancy','Srivastava','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-09-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(146,0,59,'939ae-6eaf6-45294-42650',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'udaynandu2605@gmail.com',1,0,'0','9819119819','Uday','Nandu','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(147,0,57,'eeeb5-8818d-c5af2-20656',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'udaynandu2605@gmail.com',1,0,'0','9819119819','Uday ','Nandu','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(148,0,58,'a85a2-bb5a5-f28a7-5eb72',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'udaynandu2605@gmail.com',1,0,'0','9819119819','Uday','Nandu','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(149,0,59,'85831-7301b-0c518-baedd',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'udaynandu2605@gmail.com',1,0,'0','9819119819','Vilesh','Thakkar','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(150,0,60,'85831-7301b-0c518-baedd',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'udaynandu2605@gmail.com',1,0,'0','9819119819','Uday','Nandu','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-14',1,'0','1',NULL,NULL,NULL,'0',NULL),(151,0,60,'65750-0d4ed-ad54a-0c703',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'jijoekn@gmail.com',1,0,'0','8590364326','Thomas ','Jijo','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','01 Small Handbag under the seat',NULL,NULL,NULL,'2022-09-15',1,'0','1',NULL,NULL,NULL,'0',NULL),(152,0,61,'d07b8-f08d5-9102d-5cb60','TJ106942846235',NULL,'UCN2GA','UCN2GA','','GAU-CCU',0,12577,0,'das2techconsultancy@gmail.com',1,0,'0','7085589052','RAJU','DAS','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-16',1,'0','1',NULL,NULL,NULL,'0',NULL),(153,0,62,'d07b8-f08d5-9102d-5cb60','TJ106942846235',NULL,'UCN2GA','UCN2GA','','GAU-CCU',0,12577,0,'das2techconsultancy@gmail.com',1,0,'0','7085589052','AMIR','KHAN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-16',1,'0','1',NULL,NULL,NULL,'0',NULL),(154,0,63,'fab5e-fc7b1-cc788-883c8',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ajaykhatri5775@gmail.com',1,0,'0','9829015180','AJAY','KHATRI','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-09-17',1,'0','1',NULL,NULL,NULL,'0',NULL),(155,0,61,'515f9-9e2dc-fd925-03b9c',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'shoumo_gh@yahoo.com',1,0,'0','9833484620','Saumya ','Ghosh ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-09-17',1,'0','1',NULL,NULL,NULL,'0',NULL),(156,0,64,'a9f4b-c6b6f-3fef5-8f0b1','TJ108343205516',NULL,'XHCYNR','XHCYNR','0000052167075','CCU-GAU',0,12577,0,'das2techconsultancy@gmail.com',1,0,'0','7085589052','RAJU','DAS','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','5 Kg',NULL,NULL,NULL,'2022-09-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(157,0,65,'a9f4b-c6b6f-3fef5-8f0b1','TJ108343205516',NULL,'XHCYNR','XHCYNR','0000052167076','CCU-GAU',0,12577,0,'das2techconsultancy@gmail.com',1,0,'0','7085589052','AMIR','KHAN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','5 Kg',NULL,NULL,NULL,'2022-09-20',1,'0','1',NULL,NULL,NULL,'0',NULL),(158,0,62,'d40a6-aa15e-2d378-bdf46',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'amkhan5525@gmail.com',1,0,'0','8794444262','Amir','Khan','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-10-02',1,'0','1',NULL,NULL,NULL,'0',NULL),(159,0,29,'98f86-663cc-3e82b-30745',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'samaniamohit@gmail.com',2,0,'0','7011644515','Megha ','Mandar pagade ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2022-10-28',1,'0','1',NULL,NULL,NULL,'0',NULL),(160,0,63,'1ed3c-e0ff5-6869a-3d8d2',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'sagarpentadmd@gmail.com',1,0,'0','9850419423','Sagar','Penta','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-10-31',1,'0','1',NULL,NULL,NULL,'0',NULL),(161,0,67,'1ed3c-e0ff5-6869a-3d8d2',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'sagarpentadmd@gmail.com',3,0,'0','9850419423','Sayali','Akula','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-10-31',1,'0','1',NULL,NULL,NULL,'0',NULL),(162,0,63,'1ed3c-e0ff5-6869a-3d8d2',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'sagarpentadmd@gmail.com',1,0,'0','9850419423','Sagar','Penta','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-10-31',2,'0','1',NULL,NULL,NULL,'0',NULL),(163,0,67,'1ed3c-e0ff5-6869a-3d8d2',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'sagarpentadmd@gmail.com',3,0,'0','9850419423','Sayali','Akula','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-10-31',2,'0','1',NULL,NULL,NULL,'0',NULL),(164,0,68,'c5192-82d19-619f3-f8333',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'komal@hellogtx.com',3,0,'1','8595077740','Komal','test','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'25KG','7 Kg',NULL,NULL,NULL,'2022-11-01',1,'0','1',NULL,NULL,NULL,'0',NULL),(165,112,20,'0d7fa-b2e18-5e200-e66dd',NULL,NULL,NULL,NULL,NULL,'DEL-BOM',0,12728,0,'komalmalhotra0101@gmail.com',1,0,'0','9999977655','Mohammad','sabir','',0,12728,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(166,113,20,'9a06b-23d9d-05950-0450a',NULL,NULL,NULL,NULL,NULL,'BOM-DEL',0,12728,0,'komalmalhotra0101@gmail.com',1,0,'0','9999977655','Mohammad','sabir','',0,12728,NULL,NULL,NULL,NULL,NULL,NULL,'','','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'1Piece','7 Kg',NULL,NULL,NULL,'2022-11-08',1,'0','1',NULL,NULL,NULL,'0',NULL),(169,0,52,'05748-9fe90-40f0d-ee82b',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'itskamalraja@gmail.com',1,0,'0','9091776621','ABID MOHMMAD ','HASRUDDIN ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-09',1,'0','1',NULL,NULL,NULL,'0',NULL),(170,0,71,'52157-3174b-d7111-555ae','TJ109547845008',NULL,'LF629A','LF629A','','BOM-JAI',0,12577,0,'itskamalraja@gmail.com',1,0,'1','9091776621','ABID MOHMMAD ','HASRUDDIN ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-09',1,'0','1',NULL,NULL,NULL,'0',NULL),(171,0,72,'6eb3e-e4977-74dfb-4c520',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'itskamalraja@gmail.com',2,0,'1','9091776621','PARVIN ','KHATUN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-09',1,'0','1',NULL,NULL,NULL,'0',NULL),(172,0,73,'c58b8-59449-13c3c-eeff3',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'itskamalraja@gmail.com',2,0,'1','9091776621','PARVIN ','KHATUN','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-09',1,'0','1',NULL,NULL,NULL,'0',NULL),(173,0,64,'3da02-01be0-16999-3c6cd',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'souravchhabra546@gmail.com',3,0,'0','7777053337','Pooja','Sharma','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-17',1,'0','1',NULL,NULL,NULL,'0',NULL),(174,0,65,'c78b3-4f8b9-7408f-2e465',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bhavindelink@yahoo.co.in',1,0,'0','9930407978','Bhavin','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(175,0,65,'c78b3-4f8b9-7408f-2e465',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bhavindelink@yahoo.co.in',1,0,'0','9930407978','Bhavin','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-29',2,'0','1',NULL,NULL,NULL,'0',NULL),(176,0,74,'9b30e-d3aa9-5a329-8297f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bhavindelink@yahoo.co.in',1,0,'1','9930407978','Bhavin','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(177,0,75,'9b30e-d3aa9-5a329-8297f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bhavindelink@yahoo.co.in',2,0,'0','9930407978','Pooja','Thakkar','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(178,0,76,'9b30e-d3aa9-5a329-8297f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bhavindelink@yahoo.co.in',2,0,'9','9930407978','Meevan ','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-29',1,'0','1',NULL,NULL,NULL,'0',NULL),(179,0,74,'9b30e-d3aa9-5a329-8297f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bhavindelink@yahoo.co.in',1,0,'1','9930407978','Bhavin','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-29',2,'0','1',NULL,NULL,NULL,'0',NULL),(180,0,75,'9b30e-d3aa9-5a329-8297f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bhavindelink@yahoo.co.in',2,0,'0','9930407978','Pooja','Thakkar','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-29',2,'0','1',NULL,NULL,NULL,'0',NULL),(181,0,76,'9b30e-d3aa9-5a329-8297f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bhavindelink@yahoo.co.in',2,0,'9','9930407978','Meevan ','Bhanushali','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',2,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2022-11-29',2,'0','1',NULL,NULL,NULL,'0',NULL),(182,0,66,'a02eb-7af4c-a1d25-6fffe',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'Shahidmgm07@gmail.com',1,0,'0','7515895182','Shahid ','Ahmad ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-04-15',1,'0','1',NULL,NULL,NULL,'0',NULL),(183,0,77,'ba08d-c2c68-8eff0-e0d0e',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'Shahidmgm07@gmail.com',1,0,'1','7515895182','Shahid ','Ahmad ','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg','7 Kg',NULL,NULL,NULL,'2023-04-16',1,'0','1',NULL,NULL,NULL,'0',NULL),(184,0,67,'53b3f-d49b9-326ca-4e88f',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'kumar.saujanya@gmail.com',1,0,'0','9699883388','SAUJANYA ','KUMAR','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-04-18',1,'0','1',NULL,NULL,NULL,'0',NULL),(185,0,68,'8125e-f2ed6-81244-2d927',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ajaykhatri@svezz.com',1,0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15KG','7 Kg',NULL,NULL,NULL,'2023-04-21',1,'0','1',NULL,NULL,NULL,'0',NULL),(186,0,69,'4d600-05ae5-ffda4-59d8e',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'ajaykhatri8786@gmail.com',1,0,'0','9829015180','Ajay','Khatri','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'15 Kg (01 Piece only)','7 Kg',NULL,NULL,NULL,'2023-05-13',1,'0','1',NULL,NULL,NULL,'0',NULL),(187,0,70,'1375e-3ad5d-14710-ec78a',NULL,NULL,NULL,NULL,NULL,NULL,0,12577,0,'bansi.gohil47@gmail.com',3,0,'0','08980257320','BANSI','GOHEL','',0,12577,NULL,NULL,NULL,NULL,NULL,NULL,'','0','0',1,0,'0','91',NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,'25KG','7 Kg',NULL,NULL,NULL,'2023-06-03',1,'0','1',NULL,NULL,NULL,'0',NULL);
/*!40000 ALTER TABLE `tbl_flight_booking_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_flight_segment`
--

DROP TABLE IF EXISTS `tbl_flight_segment`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flight_segment` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `flight_booking_id` int NOT NULL,
  `segmentid` varchar(10) DEFAULT NULL,
  `originAirportName` varchar(200) NOT NULL,
  `destinationAirportName` varchar(200) NOT NULL,
  `originCityName` varchar(150) NOT NULL,
  `originCountryName` varchar(150) NOT NULL,
  `destinationCityName` varchar(150) NOT NULL,
  `destinationCountryName` varchar(150) NOT NULL,
  `destinationAirportCode` varchar(5) NOT NULL,
  `destinationArrTime` datetime NOT NULL,
  `SegFlightNumber` varchar(50) NOT NULL,
  `AirlineCode` varchar(20) NOT NULL,
  `AirlineName` varchar(75) NOT NULL,
  `FareClass` varchar(10) NOT NULL,
  `originAirportCode` varchar(5) NOT NULL,
  `originDepTime` datetime NOT NULL,
  `Baggage` varchar(50) DEFAULT NULL,
  `CabinBaggage` varchar(50) DEFAULT NULL,
  `IsBaggage` varchar(10) DEFAULT NULL,
  `IsMealIncludes` varchar(10) DEFAULT NULL,
  `Duration` varchar(50) DEFAULT NULL,
  `GroundTime` varchar(50) NOT NULL,
  `NoOfSeatAvailable` int DEFAULT NULL,
  `FlightDuration` varchar(100) NOT NULL,
  `LAYOVERDuration` varchar(100) DEFAULT NULL,
  `LAYOVERCity` varchar(100) DEFAULT NULL,
  `DepTerminal` varchar(100) DEFAULT NULL,
  `ArrTerminal` varchar(100) DEFAULT NULL,
  `filePath` varchar(200) DEFAULT NULL,
  `SourceAirportCode` varchar(5) DEFAULT NULL,
  `DestAirportCode` varchar(5) DEFAULT NULL,
  `TravelDate` datetime NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flight_segment`
--

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

--
-- Table structure for table `tbl_flighthomepage`
--

DROP TABLE IF EXISTS `tbl_flighthomepage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_flighthomepage` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `AboutTitle` varchar(255) NOT NULL,
  `AboutImage` varchar(255) NOT NULL,
  `AboutDescription` text NOT NULL,
  `url` varchar(256) NOT NULL,
  `opt` int NOT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_flighthomepage`
--

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

--
-- Table structure for table `tbl_footer_links`
--

DROP TABLE IF EXISTS `tbl_footer_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_footer_links` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(150) NOT NULL,
  `link` varchar(500) NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `created_at` datetime NOT NULL,
  `footer_column` tinyint NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_footer_links`
--

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

--
-- Table structure for table `tbl_footer_management`
--

DROP TABLE IF EXISTS `tbl_footer_management`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_footer_management` (
  `id` int NOT NULL AUTO_INCREMENT,
  `columnType` varchar(100) NOT NULL,
  `title` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `openType` enum('1','0') NOT NULL DEFAULT '1',
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `create_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_footer_management`
--

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

--
-- Table structure for table `tbl_getaways`
--

DROP TABLE IF EXISTS `tbl_getaways`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_getaways` (
  `get_id` int NOT NULL AUTO_INCREMENT,
  `get_start_city` varchar(100) NOT NULL,
  `get_start_city_id` varchar(100) NOT NULL,
  `get_other_cities` varchar(1000) NOT NULL,
  `get_other_cities_ids` varchar(500) NOT NULL,
  `status` enum('0','1') NOT NULL,
  `CreateDate` datetime NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`get_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_getaways`
--

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

--
-- Table structure for table `tbl_holiday_promobanner`
--

DROP TABLE IF EXISTS `tbl_holiday_promobanner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_holiday_promobanner` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `heading` varchar(500) NOT NULL,
  `image` varchar(256) NOT NULL,
  `subHeading` varchar(5000) NOT NULL,
  `expiryDate` date NOT NULL,
  `url` varchar(500) NOT NULL,
  `tab` enum('0','1') DEFAULT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `IsFeatured` int NOT NULL DEFAULT '1',
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_holiday_promobanner`
--

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

--
-- Table structure for table `tbl_home_common_box`
--

DROP TABLE IF EXISTS `tbl_home_common_box`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_home_common_box` (
  `home_common_id` int NOT NULL AUTO_INCREMENT,
  `metaTitle` varchar(500) NOT NULL,
  `Keyword` varchar(500) NOT NULL,
  `Description` varchar(500) NOT NULL,
  `home_common_header` text NOT NULL,
  `home_common_footer` text NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `vedioUrl` varchar(500) NOT NULL,
  `popularTourContent` text NOT NULL,
  `destinationContent` text NOT NULL,
  `perfectTourContent` text NOT NULL,
  `blogContent` text NOT NULL,
  `offersContent` text,
  `whychooseusContent` text NOT NULL,
  `happycustomerContent` text NOT NULL,
  `otherUsefulContent` text NOT NULL,
  `interestingFactsContent` text NOT NULL,
  PRIMARY KEY (`home_common_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_home_common_box`
--

LOCK TABLES `tbl_home_common_box` WRITE;
/*!40000 ALTER TABLE `tbl_home_common_box` DISABLE KEYS */;
INSERT INTO `tbl_home_common_box` VALUES (1,'Book Domestic and International Tour Packages in India - IXO Tour Pvt Ltd.','Tour Packages, Amazing Travel Places, Exotic Destinations, Travel News, Famous Tourist Places, Cheap Tour Packages, Tour Offers, Best Travel Destinations, Travel Tour Packages, Browse Tour Packages, India Tour Package, Tour and Travels, Trips Gateway Packages, Travel Package, Holiday Tours, Honeymoon Package.','Explore many beautiful destinations with in budget and book luxury packages. Click now for more information about domestic and international tour packages in India.','<!-- Review Schema Code -->\r\n\r\n<script type=\"application/ld+json\">{\r\n  \"@context\": \"http://schema.org/\",\r\n  \"@type\": \"Review\",\r\n  \"itemReviewed\": {\r\n    \"@type\": \"Product\",\r\n    \"name\": \"tripsgateway.com\"\r\n  },\r\n  \"author\": {\r\n    \"@type\": \"Person\",\r\n    \"name\": \"tripsgateway\"\r\n  },\r\n  \"datePublished\": \"2019-1-1\",\r\n  \"reviewRating\": {\r\n    \"@type\": \"Rating\",\r\n    \"description\": \"Trips Gateway is a leading travel company in Noida, India. Offering custumized domestic and international tour and travel packages. Book holiday or honeymoon tour packages and enjoy best holiday deals at affordable price.\",\r\n    \"ratingValue\": \"4.8\"\r\n  }\r\n}\r\n</script>\r\n\r\n<!-- Google Knowledge Graph -->\r\n\r\n<script type=\'application/ld+json\'> \r\n{\r\n  \"@context\": \"http://www.schema.org\",\r\n  \"@type\": \"Organization\",\r\n  \"name\": \"TRIPSGATEWAY.COM\",\r\n  \"url\": \"https://www.tripsgateway.com/\",\r\n  \"logo\": \"https://www.tripsgateway.com/public/images/logo.png\",\r\n  \"description\": \"Explore many beautiful destinations with in budget and book luxury packages. Click now for more information about domestic and international tour packages from India.\",\r\n  \"address\": {\r\n    \"@type\": \"PostalAddress\",\r\n    \"streetAddress\": \"C-55, First Floor\",\r\n     \"addressLocality\": \"Sector 8\",\r\n    \"addressRegion\": \"Noida\",\r\n    \"postalCode\": \"201301\",\r\n    \"addressCountry\": \"India\"\r\n  },\r\n  \"contactPoint\": {\r\n    \"@type\": \"ContactPoint\",\r\n    \"telephone\": \"+91 98111 92312\",\r\n	\"email\": \"plan@tripsgateway.com\", \r\n	\"contactType\": \"Customer Service\"\r\n  },\r\n	\"sameAs\": [\r\n	\"https://www.facebook.com/tripsgateway\",\r\n	\"https://twitter.com/tripsgateway\",\r\n	\"https://www.instagram.com/tripsgateway/\",\r\n	\"https://www.pinterest.com/tripsgateway/\"\r\n	\r\n	]\r\n}\r\n </script>\r\n\r\n<!-- Search Schema Code -->\r\n\r\n<script type=\"application/ld+json\">\r\n{\r\n\"@context\" : \"http://schema.org\",\r\n\"@type\" : \"WebSite\",\r\n\"name\" : \"tripsgateway.com\",\r\n\"url\" : \"https://www.tripsgateway.com/\",\r\n\"potentialAction\": {\r\n\"@type\": \"SearchAction\",\r\n\"target\": \"https://www.tripsgateway.com/?q={search_term_string}\",\r\n\"query-input\": \"required name=search_term_string\"\r\n}\r\n}\r\n</script>\r\n\r\n<!-- Google Site Verification -->\r\n\r\n<meta name=\"google-site-verification\" content=\"xni1WNV91y21jEw-SQs6JlUN93c80HBAs43Ou5HGazY\" />\r\n\r\n<!-- Global site tag (gtag.js) - Google Analytics -->\r\n\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=UA-131039779-1\"></script>\r\n<script>\r\n  window.dataLayer = window.dataLayer || [];\r\n  function gtag(){dataLayer.push(arguments);}\r\n  gtag(\'js\', new Date());\r\n  gtag(\'config\', \'UA-131039779-1\');\r\n</script>','','1','<iframe width=\"100%\" height=\"320px\" src=\"https://www.youtube.com/embed/VElW8XrBz84\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen=\"\"></iframe>','{\"internationalTourTitle\":\"Svezz International Tour \\u2013 Cheap Trips Abroad | Out of India Tour\",\"internationalTourDescription\":\"Planning an International Holiday and not sure where to start? Pick one of our recommended International Holidays crafted just for you.\",\"international_check\":\"1\",\"international_order_byhome\":\"2\"}','{\"destinationTitle\":\"Trending Destinations\",\"destinationDescription\":\"Explore one of our Handpicked Hot Destinations of the week to explore best deals on these Destinations.\",\"destinations_check\":\"1\",\"destination_order_byhome\":\"4\"}','{\"domesticTourTitle\":\"SVEZZ Domestic Tour Packages\\u2013 Best Travel Packages for India\",\"domesticTourDescription\":\"Let\\u2019s explore India with us by picking one of the Handpicked Indian Holidays with your loved ones.\",\"domestic_check\":\"1\",\"domestic_order_byhome\":\"1\"}','{\"blogTitle\":\"Blog\",\"blogDescription\":\"Just in case you need some inspiration and want to know more about stories our customer had check out our travelogues.\",\"blog_check\":\"1\",\"blog_order_byhome\":\"6\"}','{\"offersTitle\":\"Offers\",\"offersDescription\":\"\",\"offers_check\":\"\",\"offers_order_byhome\":\"7\"}','','','{\"themeTitle\":\"Popular Categories\",\"themeDescription\":\"Planning your Family Vacations, Honeymoon, Anniversary, Beach Holidays or want to explore the wildlife. Just pick one of the Popular Themes and explore the recommended Deals.\",\"theme_check\":\"1\",\"theme_order_byhome\":\"3\"}','{\"testimonialTitle\":\"Testimonials\",\"testimonialDescription\":\"Checkout the Travel experiences of our clients on their experiences when they book with us.\",\"testmonial_check\":\"1\",\"testmonial_order_byhome\":\"5\"}');
/*!40000 ALTER TABLE `tbl_home_common_box` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_home_explorebanner`
--

DROP TABLE IF EXISTS `tbl_home_explorebanner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_home_explorebanner` (
  `banner_id` int NOT NULL AUTO_INCREMENT,
  `banner_image` varchar(255) NOT NULL,
  `banner_text` varchar(255) NOT NULL,
  `url` varchar(500) NOT NULL,
  `opt` tinyint(1) NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkDel` enum('0','1') NOT NULL DEFAULT '1',
  PRIMARY KEY (`banner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_home_explorebanner`
--

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

--
-- Table structure for table `tbl_home_exploregallery`
--

DROP TABLE IF EXISTS `tbl_home_exploregallery`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_home_exploregallery` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `gallery` varchar(255) DEFAULT NULL,
  `video` varchar(255) DEFAULT NULL,
  `type` int DEFAULT NULL,
  `IsActive` int DEFAULT NULL,
  `IsmarkForDel` int DEFAULT NULL,
  `IsFeatured` int DEFAULT NULL,
  `categoryId` int DEFAULT NULL,
  `AgencySysId` bigint DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_home_exploregallery`
--

LOCK TABLES `tbl_home_exploregallery` WRITE;
/*!40000 ALTER TABLE `tbl_home_exploregallery` DISABLE KEYS */;
INSERT INTO `tbl_home_exploregallery` VALUES (2,'Navratan','','https://www.youtube.com/watch?v=8iPb2mr30-w',2,1,1,NULL,1,NULL),(3,'wowidays','1649845641promo_1.jpg',NULL,1,1,0,NULL,1,NULL),(4,'best tour','1649768063promo_1.png',NULL,1,1,0,NULL,2,NULL),(5,'TOI Article','1649846344promo_1.jpg',NULL,1,1,0,NULL,4,NULL),(6,'youtube',NULL,'www.youtube.com',2,1,0,NULL,5,NULL),(7,'Noida','1649923099promo_1.jpg',NULL,1,1,0,NULL,3,NULL),(8,'goa','1650001513promo_1.jpg',NULL,1,1,0,NULL,5,1);
/*!40000 ALTER TABLE `tbl_home_exploregallery` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_home_promotion`
--

DROP TABLE IF EXISTS `tbl_home_promotion`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_home_promotion` (
  `promotionId` int NOT NULL AUTO_INCREMENT,
  `templatetype` int NOT NULL,
  `heading` varchar(256) NOT NULL,
  `promotion_name` text NOT NULL,
  `promotion_description` text NOT NULL,
  `promotion_image` varchar(250) NOT NULL,
  `promotion_url` text NOT NULL,
  `tab_type` varchar(256) NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `IsmarkForDel` enum('1','0') NOT NULL,
  `IsFeatured` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`promotionId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_home_promotion`
--

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

--
-- Table structure for table `tbl_hotel_booking`
--

DROP TABLE IF EXISTS `tbl_hotel_booking`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_hotel_booking` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `ConfirmationNo` varchar(100) DEFAULT NULL,
  `CheckInDate` date NOT NULL,
  `CheckOutDate` date NOT NULL,
  `BookingRefNo` varchar(100) DEFAULT NULL,
  `BookingId` varchar(16) NOT NULL,
  `APIBookingId` varchar(200) DEFAULT NULL,
  `HotelBookingStatus` varchar(32) DEFAULT NULL,
  `InvoiceNumber` varchar(150) DEFAULT NULL,
  `InvoiceCreatedOn` datetime DEFAULT NULL,
  `TraceId` varchar(255) NOT NULL,
  `CurrencyType` int NOT NULL DEFAULT '0',
  `PublishedFare` float DEFAULT NULL,
  `ResultIndex` varchar(50) NOT NULL,
  `HotelName` varchar(250) NOT NULL,
  `HotelCode` varchar(250) NOT NULL,
  `HotelDescription` text NOT NULL,
  `StarRating` int NOT NULL,
  `Currency` varchar(5) NOT NULL,
  `HotelPicture` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `HotelAddress` varchar(255) NOT NULL,
  `HotelContactNo` varchar(100) DEFAULT NULL,
  `HotelMap` text,
  `Latitude` varchar(100) DEFAULT NULL,
  `Longitude` varchar(100) DEFAULT NULL,
  `HotelLocation` varchar(255) DEFAULT NULL,
  `Remarks` text,
  `NoOfNights` int NOT NULL,
  `NoOfRooms` int NOT NULL,
  `totaladult` int NOT NULL,
  `totalchild` int NOT NULL,
  `TBBCityId` int NOT NULL,
  `cityid` int NOT NULL,
  `cityName` varchar(100) NOT NULL,
  `memberdata` text NOT NULL,
  `RoomPrice` float NOT NULL DEFAULT '0',
  `TotalPrice` float DEFAULT NULL,
  `TaxesServiceFee` float DEFAULT NULL,
  `intCostToCustomer` float DEFAULT NULL,
  `TotalAgencyMarkUp` float NOT NULL DEFAULT '0',
  `TotalServiceTaxOnAgencyMarkUp` float NOT NULL DEFAULT '0',
  `TotalAgentMarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `TotalServiceTaxOnAgentMarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `status` int NOT NULL DEFAULT '0',
  `InvoiceStatus` int NOT NULL DEFAULT '0',
  `API_Response` longtext,
  `API_Response_voucher` text,
  `API_GenerateVoucher` text,
  `API_BookingDetail` longtext,
  `SSRName` text,
  `SSRMsg` text,
  `searchData` text,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  `paymentStatus` smallint NOT NULL DEFAULT '0',
  `error_Message` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `error` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `GUID` varchar(200) DEFAULT NULL,
  `TransactionId_credit` varchar(250) DEFAULT NULL,
  `TransactionId_debit` varchar(250) DEFAULT NULL,
  `IsCancelled` int NOT NULL DEFAULT '0',
  `ChangeRequestId` varchar(200) DEFAULT NULL,
  `ChangeRequestRes` text,
  `cancelRemarks` varchar(200) DEFAULT NULL,
  `ChangeRequestStatus` varchar(200) DEFAULT NULL,
  `TotalServiceCharge` float DEFAULT NULL,
  `RefundedAmount` float DEFAULT NULL,
  `TotalGSTAmount` float DEFAULT NULL,
  `CancellationCharge` float DEFAULT NULL,
  `CreditNoteNo` varchar(200) DEFAULT NULL,
  `CreditNoteCreatedOn` datetime DEFAULT NULL,
  `cancelDate` datetime DEFAULT NULL,
  `InvoiceNo` varchar(100) DEFAULT NULL,
  `InvoiceDate` date DEFAULT NULL,
  `address` varchar(250) DEFAULT NULL,
  `InvoiceName` varchar(150) DEFAULT NULL,
  `bookedby` varchar(100) DEFAULT NULL,
  `CustomerDetails` varchar(200) DEFAULT NULL,
  `customerName` varchar(150) DEFAULT NULL,
  `HotelQueryids` varchar(500) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_hotel_booking`
--

LOCK TABLES `tbl_hotel_booking` WRITE;
/*!40000 ALTER TABLE `tbl_hotel_booking` DISABLE KEYS */;
INSERT INTO `tbl_hotel_booking` VALUES (1,66,12728,'','2022-11-10','2022-11-11','','DMC209200363926',NULL,'',NULL,NULL,'eae89-677b0-2b5c2-a45d7',0,NULL,'eae89-677b0-2b5c2-a45d7','OYO 89868 KINGS CASA','hsid5689810618-1165527907','<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.</strong>',3,'INR','','8Big Bazzar, Hotel Lane, Taj Ganj, Agra, Uttar PradeshUttar PradeshAgraIndia282004','','','27.161617479848','78.035648111254','','',1,1,1,0,740325,266,'AGRA','[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"0\",\"ChildAge\":null}]',510.792,510.792,0,0,45.688,8.22384,0.00,0.00,0,0,'{\"RoomsResult\":[{\"Rooms\":[{\"id\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0\",\"RoomCategory\":\"Deluxe Double or Twin\",\"RoomType\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )\",\"Adult\":1,\"Child\":0,\"MealBase\":\"BREAKFAST\",\"TotalRoomPrice\":456.88,\"TotalFare\":456.88,\"TotalBaseFare\":445.08,\"TotalNetFare\":456.88,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SGP\":445.08,\"SBP\":445.08,\"MFT\":1.8,\"MF\":10,\"SNP\":445.08},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":456.88,\"TAF\":11.8,\"BF\":445.08,\"NF\":456.88},\"afc\":{\"TAF\":{\"SGP\":445.08,\"SBP\":445.08,\"MFT\":1.8,\"MF\":10,\"SNP\":445.08}}}],\"gtxMarkUp\":0,\"HotelRoomPrice\":510.79184,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184,\"perNightPrice\":510.79184,\"arrMarkUps\":{\"intBasePrice\":456.88,\"PublishFare\":510.79184,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"intAgencyMarkUpWithSTax\":53.911840000000005,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184},\"CancelArr\":{\"cancel\":[{\"FromDate\":\"2022-10-07T16:49:13.203\",\"ToDate\":\"2022-11-05T18:00\",\"strFromDate\":\"07-Oct-2022\",\"strToDate\":\"05-Nov-2022\",\"Charge\":0,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-05T18:00\",\"ToDate\":\"2022-11-10T12:00\",\"strFromDate\":\"05-Nov-2022\",\"strToDate\":\"10-Nov-2022\",\"Charge\":445.08,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-10T12:00\",\"ToDate\":\"2022-11-11T23:59\",\"strFromDate\":\"10-Nov-2022\",\"strToDate\":\"11-Nov-2022\",\"Charge\":445.08,\"Currency\":\"INR\"}],\"getfullrefund\":true,\"fullrefund\":\"Full Refund Allowed\"},\"IsPANMandatory\":false,\"IsPassportMandatory\":false}],\"RoomId\":\"1_0_63400af0e9d551355b688ff1\",\"NoOfRooms\":\"1\",\"TotalPax\":1,\"Nights\":1,\"RoomTotalPrice\":456.88,\"GtxMarkUp\":null,\"iopr\":false,\"ipr\":false,\"gtxMarkUp\":0,\"HotelRoomPrice\":510.79184,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184,\"pernightperroomprice\":null,\"arrMarkUps\":{\"intBasePrice\":456.88,\"PublishFare\":510.79184,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"intAgencyMarkUpWithSTax\":53.911840000000005,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184},\"IsPANMandatory\":false,\"IsPassportMandatory\":false}],\"HotelDetails\":{\"SearchHotelTraceId\":\"eae89-677b0-2b5c2-a45d7\",\"HotelId\":\"hsid5689810618-1165527907\",\"HotelName\":\"OYO 89868 KINGS CASA\",\"HotelDescription\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"HotelImages\":[{\"tns\":\"\",\"url\":\"\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.035648111254\",\"lt\":\"27.161617479848\"},\"HotelAddress\":\"8Big Bazzar, Hotel Lane, Taj Ganj, Agra, Uttar PradeshUttar PradeshAgraIndia282004\",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null,\"des\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"query\":{\"checkinDate\":\"2022-11-10\",\"checkoutDate\":\"2022-11-11\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"currency\":\"INR\",\"fsc\":true},\"searchId\":\"hsid5689810618\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"bookingId\":\"TJS209200363926\"},\"country\":\"INDIA\",\"iopr\":false,\"IsPANMandatory\":false,\"IsPassportMandatory\":false,\"isPriceChanged\":false,\"bookingId\":\"TJS209200363926\",\"getData\":{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"AGRA (INDIA)\",\"check_in\":\"10\\/11\\/2022\",\"check_out\":\"11\\/11\\/2022\",\"Nationality\":\"106\",\"adult\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"infant\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"child1_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child2_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"cityid\":\"266\",\"TBBCityId\":\"740325\",\"destination\":\"AGRA\",\"hotel_countryCode\":\"\",\"GuestNationality\":\"IN\",\"room\":\"1\",\"totadlt\":\"1\",\"totchld\":\"0\",\"totinfnt\":\"0\",\"travelers\":\"\",\"roominfojson\":\"[{\\\"totalRoom\\\" : 1},{\\\"totalTraveler\\\" : 1},{\\\"totaladult\\\" : 1},{\\\"totalchild\\\" : 0},{\\\"totalinfant\\\" : 0}]\",\"memberdata\":[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"0\",\"ChildAge\":null}],\"TBOdata\":{\"CheckInDate\":\"10\\/11\\/2022\",\"NoOfNights\":1,\"CityId\":\"740325\",\"CountryCode\":\"\",\"IsTBOMapped\":true,\"ResultCount\":null,\"PreferredCurrency\":\"INR\",\"GuestNationality\":\"IN\",\"NoOfRooms\":\"1\",\"RoomGuests\":[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"0\",\"ChildAge\":null}],\"PreferredHotel\":\"\",\"MaxRating\":5,\"MinRating\":0,\"ReviewScore\":null,\"IsNearBySearchAllowed\":false},\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2022-11-10\",\"checkoutDate\":\"2022-11-11\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2022-11-10\",\"strCheckout\":\"2022-11-11\",\"SearchHotelTraceId\":\"eae89-677b0-2b5c2-a45d7\",\"interNationalSearch\":false,\"searchIds\":\"hsid5689810618\"}}',NULL,NULL,NULL,'','',NULL,'0','2022-10-07 11:18:54','2022-10-07 11:18:54',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mohammad sabir','neha kannojia',NULL,NULL),(2,66,12728,'','2022-11-09','2022-11-10','','DMC200900365365',NULL,'',NULL,NULL,'76121-816ce-6f820-059f0',0,NULL,'76121-816ce-6f820-059f0','OYO 89868 KINGS CASA','hsid5543895200-1165527907','<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.</strong>',3,'INR','','8Big Bazzar, Hotel Lane, Taj Ganj, Agra, Uttar PradeshUttar PradeshAgraIndia282004','','','27.161617479848','78.035648111254','','',1,1,1,0,740325,266,'AGRA','[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"0\",\"ChildAge\":null}]',413.537,413.537,0,0,36.989,6.65802,0.00,0.00,0,0,'{\"RoomsResult\":[{\"Rooms\":[{\"id\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0\",\"RoomCategory\":\"Deluxe Double or Twin\",\"RoomType\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )\",\"Adult\":1,\"Child\":0,\"MealBase\":\"BREAKFAST\",\"TotalRoomPrice\":369.89,\"TotalFare\":369.89,\"TotalBaseFare\":358.09,\"TotalNetFare\":369.89,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SGP\":358.09,\"SBP\":358.09,\"MFT\":1.8,\"MF\":10,\"SNP\":358.09},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":369.89,\"TAF\":11.8,\"BF\":358.09,\"NF\":369.89},\"afc\":{\"TAF\":{\"SGP\":358.09,\"SBP\":358.09,\"MFT\":1.8,\"MF\":10,\"SNP\":358.09}}}],\"gtxMarkUp\":0,\"HotelRoomPrice\":413.53702,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702,\"perNightPrice\":413.53702,\"arrMarkUps\":{\"intBasePrice\":369.89,\"PublishFare\":413.53702,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"intAgencyMarkUpWithSTax\":43.64702,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702},\"CancelArr\":{\"cancel\":[{\"FromDate\":\"2022-10-10T17:03:17.566\",\"ToDate\":\"2022-11-04T18:00\",\"strFromDate\":\"10-Oct-2022\",\"strToDate\":\"04-Nov-2022\",\"Charge\":0,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-04T18:00\",\"ToDate\":\"2022-11-09T12:00\",\"strFromDate\":\"04-Nov-2022\",\"strToDate\":\"09-Nov-2022\",\"Charge\":358.09,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-09T12:00\",\"ToDate\":\"2022-11-10T23:59\",\"strFromDate\":\"09-Nov-2022\",\"strToDate\":\"10-Nov-2022\",\"Charge\":358.09,\"Currency\":\"INR\"}],\"getfullrefund\":true,\"fullrefund\":\"Full Refund Allowed\"},\"IsPANMandatory\":false,\"IsPassportMandatory\":false}],\"RoomId\":\"1_0_63440282ead55193b5ccc2fb\",\"NoOfRooms\":\"1\",\"TotalPax\":1,\"Nights\":1,\"RoomTotalPrice\":369.89,\"GtxMarkUp\":null,\"iopr\":false,\"ipr\":false,\"gtxMarkUp\":0,\"HotelRoomPrice\":413.53702,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702,\"pernightperroomprice\":null,\"arrMarkUps\":{\"intBasePrice\":369.89,\"PublishFare\":413.53702,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"intAgencyMarkUpWithSTax\":43.64702,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702},\"IsPANMandatory\":false,\"IsPassportMandatory\":false}],\"HotelDetails\":{\"SearchHotelTraceId\":\"76121-816ce-6f820-059f0\",\"HotelId\":\"hsid5543895200-1165527907\",\"HotelName\":\"OYO 89868 KINGS CASA\",\"HotelDescription\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"HotelImages\":[{\"tns\":\"\",\"url\":\"\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.035648111254\",\"lt\":\"27.161617479848\"},\"HotelAddress\":\"8Big Bazzar, Hotel Lane, Taj Ganj, Agra, Uttar PradeshUttar PradeshAgraIndia282004\",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null,\"des\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"query\":{\"checkinDate\":\"2022-11-09\",\"checkoutDate\":\"2022-11-10\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"currency\":\"INR\",\"fsc\":true},\"searchId\":\"hsid5543895200\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"bookingId\":\"TJS200900365365\"},\"country\":\"INDIA\",\"iopr\":false,\"IsPANMandatory\":false,\"IsPassportMandatory\":false,\"isPriceChanged\":false,\"bookingId\":\"TJS200900365365\",\"getData\":{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"AGRA (INDIA)\",\"check_in\":\"09\\/11\\/2022\",\"check_out\":\"10\\/11\\/2022\",\"Nationality\":\"106\",\"adult\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"infant\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"child1_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child2_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"cityid\":\"266\",\"TBBCityId\":\"740325\",\"destination\":\"AGRA\",\"hotel_countryCode\":\"\",\"GuestNationality\":\"IN\",\"room\":\"1\",\"totadlt\":\"1\",\"totchld\":\"0\",\"totinfnt\":\"0\",\"travelers\":\"\",\"roominfojson\":\"[{\\\"totalRoom\\\" : 1},{\\\"totalTraveler\\\" : 1},{\\\"totaladult\\\" : 1},{\\\"totalchild\\\" : 0},{\\\"totalinfant\\\" : 0}]\",\"memberdata\":[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"0\",\"ChildAge\":null}],\"TBOdata\":{\"CheckInDate\":\"09\\/11\\/2022\",\"NoOfNights\":1,\"CityId\":\"740325\",\"CountryCode\":\"\",\"IsTBOMapped\":true,\"ResultCount\":null,\"PreferredCurrency\":\"INR\",\"GuestNationality\":\"IN\",\"NoOfRooms\":\"1\",\"RoomGuests\":[{\"NoOfAdults\":\"1\",\"NoOfChild\":\"0\",\"ChildAge\":null}],\"PreferredHotel\":\"\",\"MaxRating\":5,\"MinRating\":0,\"ReviewScore\":null,\"IsNearBySearchAllowed\":false},\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2022-11-09\",\"checkoutDate\":\"2022-11-10\",\"roomInfo\":[{\"numberOfAdults\":\"1\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"740325\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2022-11-09\",\"strCheckout\":\"2022-11-10\",\"SearchHotelTraceId\":\"76121-816ce-6f820-059f0\",\"interNationalSearch\":false,\"searchIds\":\"hsid5543895200\"}}',NULL,NULL,NULL,'','',NULL,'0','2022-10-10 11:33:13','2022-10-10 11:33:13',0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Mohammad sabir','neha kannojia',NULL,NULL);
/*!40000 ALTER TABLE `tbl_hotel_booking` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_hotel_booking_guest`
--

DROP TABLE IF EXISTS `tbl_hotel_booking_guest`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_hotel_booking_guest` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `HotelRooms_id` int NOT NULL DEFAULT '0',
  `CustomerSysId` int NOT NULL,
  `apiTraceId` varchar(150) NOT NULL,
  `GTX_customerSysId` int NOT NULL DEFAULT '0',
  `AgencySysId` int NOT NULL DEFAULT '0',
  `AgentSysId` int NOT NULL DEFAULT '0',
  `EmailId` varchar(100) NOT NULL,
  `Salutation` int NOT NULL DEFAULT '0',
  `Relation` int NOT NULL DEFAULT '0',
  `Contacts` varchar(20) NOT NULL,
  `FirstName` varchar(100) NOT NULL,
  `LastName` varchar(100) NOT NULL,
  `panno` varchar(50) DEFAULT NULL,
  `Password` varchar(250) DEFAULT NULL,
  `IsPswExpire` int NOT NULL DEFAULT '0',
  `CreatedByUserSysId` int NOT NULL DEFAULT '0',
  `PassportNo` varchar(100) DEFAULT NULL,
  `PassportExpiry` date DEFAULT NULL,
  `passporIssue` date DEFAULT NULL,
  `MarriageAnniversary` date DEFAULT NULL,
  `Age` int NOT NULL DEFAULT '0',
  `Address` varchar(200) NOT NULL,
  `CityTitle` varchar(100) DEFAULT NULL,
  `CitySysId` int NOT NULL,
  `paxType` int NOT NULL DEFAULT '0',
  `StateOrZoneSysId` int NOT NULL DEFAULT '0',
  `CountrySysId` int NOT NULL DEFAULT '0',
  `countryCode` varchar(50) DEFAULT NULL,
  `companyname` varchar(100) DEFAULT NULL,
  `gstnnumber` varchar(100) DEFAULT NULL,
  `gstaddress` varchar(100) DEFAULT NULL,
  `gstcity` varchar(100) DEFAULT NULL,
  `gststate` varchar(100) DEFAULT NULL,
  `gstpincode` varchar(10) DEFAULT NULL,
  `RegisterDate` date DEFAULT NULL,
  `IsApproved` enum('1','0') NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `images` varchar(250) DEFAULT NULL,
  `created` datetime DEFAULT NULL,
  `modified` datetime DEFAULT NULL,
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_hotel_booking_guest`
--

LOCK TABLES `tbl_hotel_booking_guest` WRITE;
/*!40000 ALTER TABLE `tbl_hotel_booking_guest` DISABLE KEYS */;
INSERT INTO `tbl_hotel_booking_guest` VALUES (1,1,66,'eae89-677b0-2b5c2-a45d7',0,12728,0,'komalmalhotra0101@gmail.com',3,9,'9999977655','neha','kannojia',NULL,NULL,0,12728,NULL,NULL,NULL,NULL,0,'sec 15','Noida',19543,1,0,101,'91',NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-07','0','1',NULL,'2022-10-07 16:48:54','2022-10-07 16:48:54','0'),(2,2,66,'76121-816ce-6f820-059f0',0,12728,0,'komalmalhotra0101@gmail.com',1,9,'9999977655','neha','kannojia',NULL,NULL,0,12728,NULL,NULL,NULL,NULL,0,'sec 15','Noida',19543,1,0,101,'91',NULL,NULL,NULL,NULL,NULL,NULL,'2022-10-10','0','1',NULL,'2022-10-10 17:03:13','2022-10-10 17:03:13','0');
/*!40000 ALTER TABLE `tbl_hotel_booking_guest` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_hotel_booking_room`
--

DROP TABLE IF EXISTS `tbl_hotel_booking_room`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_hotel_booking_room` (
  `id` bigint NOT NULL AUTO_INCREMENT,
  `tbl_hotel_booking_id` int NOT NULL,
  `CustomerSysId` int NOT NULL,
  `AgencySysId` int NOT NULL,
  `TraceId` varchar(255) NOT NULL,
  `NoOfAdults` int NOT NULL,
  `NoOfChild` int NOT NULL,
  `RoomIndex` varchar(100) NOT NULL,
  `RoomTypeCode` text NOT NULL,
  `RoomTypeName` varchar(200) NOT NULL,
  `RatePlanName` varchar(100) NOT NULL,
  `RatePlan` varchar(100) NOT NULL DEFAULT '0',
  `RatePlanCode` text NOT NULL,
  `BedTypeCode` varchar(50) DEFAULT NULL,
  `LastCancellationDate` datetime DEFAULT NULL,
  `LastVoucherDate` datetime DEFAULT NULL,
  `SmokingPreference` int NOT NULL DEFAULT '0',
  `CurrencyType` int NOT NULL DEFAULT '0',
  `RoomPrice` float NOT NULL DEFAULT '0',
  `TotalPrice` float NOT NULL,
  `TaxesServiceFee` float NOT NULL,
  `intCostToCustomer` float NOT NULL,
  `AgencyMarkUp` float NOT NULL,
  `ServiceTaxOnAgencyMarkUp` float NOT NULL,
  `AgentMarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `ServiceTaxOnAgentMarkUp` decimal(18,2) NOT NULL DEFAULT '0.00',
  `PublishedPrice` float NOT NULL,
  `OfferedPrice` float NOT NULL,
  `Currency` varchar(5) NOT NULL,
  `status` int NOT NULL DEFAULT '0',
  `API_Response` longtext,
  `IsMarkForDel` enum('1','0') NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_hotel_booking_room`
--

LOCK TABLES `tbl_hotel_booking_room` WRITE;
/*!40000 ALTER TABLE `tbl_hotel_booking_room` DISABLE KEYS */;
INSERT INTO `tbl_hotel_booking_room` VALUES (1,1,66,12728,'eae89-677b0-2b5c2-a45d7',1,0,'','Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0','Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )','BREAKFAST','0','BREAKFAST',NULL,'2022-11-10 12:00:00','2022-11-10 12:00:00',0,1,510.792,510.792,0,510.792,45.688,8.22384,0.00,0.00,510.792,456.88,'INR',0,'{\"id\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0\",\"RoomCategory\":\"Deluxe Double or Twin\",\"RoomType\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )\",\"Adult\":1,\"Child\":0,\"MealBase\":\"BREAKFAST\",\"TotalRoomPrice\":456.88,\"TotalFare\":456.88,\"TotalBaseFare\":445.08,\"TotalNetFare\":456.88,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SGP\":445.08,\"SBP\":445.08,\"MFT\":1.8,\"MF\":10,\"SNP\":445.08},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":456.88,\"TAF\":11.8,\"BF\":445.08,\"NF\":456.88},\"afc\":{\"TAF\":{\"SGP\":445.08,\"SBP\":445.08,\"MFT\":1.8,\"MF\":10,\"SNP\":445.08}}}],\"gtxMarkUp\":0,\"HotelRoomPrice\":510.79184,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184,\"perNightPrice\":510.79184,\"arrMarkUps\":{\"intBasePrice\":456.88,\"PublishFare\":510.79184,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"intAgencyMarkUpWithSTax\":53.911840000000005,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184},\"CancelArr\":{\"cancel\":[{\"FromDate\":\"2022-10-07T16:49:13.203\",\"ToDate\":\"2022-11-05T18:00\",\"strFromDate\":\"07-Oct-2022\",\"strToDate\":\"05-Nov-2022\",\"Charge\":0,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-05T18:00\",\"ToDate\":\"2022-11-10T12:00\",\"strFromDate\":\"05-Nov-2022\",\"strToDate\":\"10-Nov-2022\",\"Charge\":445.08,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-10T12:00\",\"ToDate\":\"2022-11-11T23:59\",\"strFromDate\":\"10-Nov-2022\",\"strToDate\":\"11-Nov-2022\",\"Charge\":445.08,\"Currency\":\"INR\"}],\"getfullrefund\":true,\"fullrefund\":\"Full Refund Allowed\"},\"IsPANMandatory\":false,\"IsPassportMandatory\":false}','0','2022-10-07 11:18:54','2022-10-07 11:18:54'),(2,2,66,12728,'76121-816ce-6f820-059f0',1,0,'','Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0','Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )','BREAKFAST','0','BREAKFAST',NULL,'2022-11-09 12:00:00','2022-11-09 12:00:00',0,1,413.537,413.537,0,413.537,36.989,6.65802,0.00,0.00,413.537,369.89,'INR',0,'{\"id\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0\",\"RoomCategory\":\"Deluxe Double or Twin\",\"RoomType\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )\",\"Adult\":1,\"Child\":0,\"MealBase\":\"BREAKFAST\",\"TotalRoomPrice\":369.89,\"TotalFare\":369.89,\"TotalBaseFare\":358.09,\"TotalNetFare\":369.89,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SGP\":358.09,\"SBP\":358.09,\"MFT\":1.8,\"MF\":10,\"SNP\":358.09},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":369.89,\"TAF\":11.8,\"BF\":358.09,\"NF\":369.89},\"afc\":{\"TAF\":{\"SGP\":358.09,\"SBP\":358.09,\"MFT\":1.8,\"MF\":10,\"SNP\":358.09}}}],\"gtxMarkUp\":0,\"HotelRoomPrice\":413.53702,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702,\"perNightPrice\":413.53702,\"arrMarkUps\":{\"intBasePrice\":369.89,\"PublishFare\":413.53702,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"intAgencyMarkUpWithSTax\":43.64702,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702},\"CancelArr\":{\"cancel\":[{\"FromDate\":\"2022-10-10T17:03:17.566\",\"ToDate\":\"2022-11-04T18:00\",\"strFromDate\":\"10-Oct-2022\",\"strToDate\":\"04-Nov-2022\",\"Charge\":0,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-04T18:00\",\"ToDate\":\"2022-11-09T12:00\",\"strFromDate\":\"04-Nov-2022\",\"strToDate\":\"09-Nov-2022\",\"Charge\":358.09,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-09T12:00\",\"ToDate\":\"2022-11-10T23:59\",\"strFromDate\":\"09-Nov-2022\",\"strToDate\":\"10-Nov-2022\",\"Charge\":358.09,\"Currency\":\"INR\"}],\"getfullrefund\":true,\"fullrefund\":\"Full Refund Allowed\"},\"IsPANMandatory\":false,\"IsPassportMandatory\":false}','0','2022-10-10 11:33:13','2022-10-10 11:33:13');
/*!40000 ALTER TABLE `tbl_hotel_booking_room` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_hotel_static_data`
--

DROP TABLE IF EXISTS `tbl_hotel_static_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_hotel_static_data` (
  `id` int NOT NULL AUTO_INCREMENT,
  `CityId` int NOT NULL,
  `hotel_id` varchar(200) NOT NULL,
  `hotel_name` varchar(200) NOT NULL,
  `CityName` varchar(150) DEFAULT NULL,
  `staticJson` longtext NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_hotel_static_data`
--

LOCK TABLES `tbl_hotel_static_data` WRITE;
/*!40000 ALTER TABLE `tbl_hotel_static_data` DISABLE KEYS */;
INSERT INTO `tbl_hotel_static_data` VALUES (1,130443,'1011662','Regenta Hotel and Convention Centre',NULL,'{\"@attributes\":{\"BrandCode\":\"4\",\"TBOHotelCode\":\"1011662\",\"HotelName\":\"Regenta Hotel and Convention Centre\",\"LocationCategoryCode\":\"42178,\",\"NoOfRooms\":\"0\",\"NoOfFloors\":\"0\",\"BuiltYear\":\"0\",\"RenovationYear\":\"0\",\"IsHalal\":\"false\"},\"VendorMessages\":{\"VendorMessage\":[{\"@attributes\":{\"Title\":\"Facilities\",\"InfoType\":\"12\"},\"SubSection\":[{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Hotel\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Bathroom\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Shower\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Bathtub\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Toiletries\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Make-up mirror\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Direct dial telephone\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"TV\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Cable TV\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"220V power supply\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Plug adaptor\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Minibar\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Mini fridge\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Ironing set\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Centrally regulated air conditioning\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Individually adjustable air conditioning\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Safe\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Wake-up service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Mobile phone coverage\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Secure parking\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Room service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Laundry service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"24-hour security\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Air conditioning in public areas\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Hotel safe\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Currency exchange facilities\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Lift access\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Newspaper stand\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Gym\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Newspapers\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Caf\\u00e9\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Bar\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Restaurant\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Banquet hall\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Air conditioning in Restaurant\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Conference room\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Meeting room\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Photocopier\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Business centre\"}}]},{\"@attributes\":{\"Title\":\"Hotel URL\",\"InfoType\":\"5\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"http:\\/\\/www.royalorchidhotels.com\\/regenta-hotel-convention-centre-delhi\\/overview.asp\"}}},{\"@attributes\":{\"Title\":\"Hotel Description\",\"InfoType\":\"1\"},\"SubSection\":{\"@attributes\":{\"SubTitle\":\"Property Description\"},\"Paragraph\":{\"Text\":\"The hotel is strategically located on National Highway 8, Rajokori. It is easily accessible from all parts of the city and is located just 10 minutes away from Indira Gandhi International Airport in Delhi.\\n\\nThis luxurious air-conditioned hotel comprises a total of 48 rooms. It provides corporate and leisure visitors an ideal and convenient location, as well as world-class accommodation facilities. Guests are welcomed in the lobby, which offers a hotel safe, currency exchange, a newspaper stand and a hairdressing salon. Guests can enjoy a drink at the 24-hour coffee shop, and dine in the restaurant. In-room dining is also available. Business travellers can make use of the conference facilities and 4 spacious banquet halls. The hotel offers room service and a laundry service. Those arriving by car may leave their vehicles in the hotel car park.\\n\\nThe beautifully appointed, spacious guest rooms and suites offer elegant interiors, stylish furnishings and luxurious amenities. All rooms are en suite with a shower and bath. Each room offers a double or king-size bed, direct dial telephone, satellite\\/cable TV, Internet access, a safe, minibar, tea and coffee making facilities and an ironing set. Individually regulated air conditioning is a standard feature in all accommodation.\\n\\nThe hotel features an outdoor swimming pool and lush green lawns. Guests can work out in the gym, or enjoy a soothing massage.\"}}}]},\"Position\":{\"@attributes\":{\"Latitude\":\"28.54443\",\"Longitude\":\"77.124444\"}},\"Address\":{\"AddressLine\":[\"NATIONAL HIGWAY - 8, RAJOKORI, NEW DELHI\",\"DELHI\"],\"CityName\":\"Delhi\",\"PostalCode\":\"110037\",\"StateProv\":[],\"CountryName\":\"India\"},\"ContactNumbers\":{\"ContactNumber\":[{\"@attributes\":{\"PhoneNumber\":\"009101149796666\",\"PhoneTechType\":\"Voice\"}},{\"@attributes\":{\"PhoneNumber\":\"91-080-41476667\",\"PhoneTechType\":\"Fax\"}}]},\"Award\":{\"@attributes\":{\"Provider\":\"TripAdvisor\",\"Rating\":\"4.0\",\"ReviewURL\":\"\"}},\"Policy\":[],\"Attributes\":[]}','2021-09-28 17:08:17'),(2,130443,'1011663','Exotic Villa',NULL,'{\"@attributes\":{\"BrandCode\":\"3\",\"TBOHotelCode\":\"1011663\",\"HotelName\":\"Exotic Villa\",\"LocationCategoryCode\":\"1551,\",\"NoOfRooms\":\"3\",\"NoOfFloors\":\"0\",\"BuiltYear\":\"0\",\"RenovationYear\":\"0\",\"IsHalal\":\"false\"},\"VendorMessages\":{\"VendorMessage\":[{\"@attributes\":{\"Title\":\"Facilities\",\"InfoType\":\"12\"},\"SubSection\":[{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Total number of rooms : 30\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"NO Connecting rooms\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Hotel\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Bathroom\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Shower\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Bathtub\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Internet access\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Direct dial telephone\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"TV\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Fridge\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Tea and coffee making facilities\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Individually adjustable air conditioning  \\u2013\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Individually adjustable heating\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Safe\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Balcony\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"YES Wheelchair-accessible\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"NO Small pets allowed (under 5 kg)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"NO Large pets allowed (over 5 kg)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"NO Wheelchair-accessible\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"NO Car park\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"NO Garage\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"24-hour reception\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Mobile phone coverage\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Wired Internet\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Room service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Laundry service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Medical service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Air conditioning in public areas  \\u2013\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Hotel safe\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Currency exchange facilities\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Cloakroom\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Newspaper stand\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Caf\\u00e9\"}}]},{\"@attributes\":{\"Title\":\"Hotel URL\",\"InfoType\":\"5\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"http:\\/\\/www.udsvilla.com\\/\"}}},{\"@attributes\":{\"Title\":\"Hotel Description\",\"InfoType\":\"1\"},\"SubSection\":{\"@attributes\":{\"SubTitle\":\"Property Description\"},\"Paragraph\":{\"Text\":\"HotelDescription#The homestay is located on Hanuman Road in Connaught Place, New Delhi. The hotel enjoys easy access to major parts of the city, including Pragati Maidan, Connaught Circus, Barakhamba Road and Mandi House. The homestay is located 2 km from New Delhi railway station and 18 km away from Indira Gandhi International Airport.\\n\\nThis homestay provides accommodation with furniture in a modern style and smartly done interiors promising the most amazing experience. The services offered by the homestay include wireless Internet access, parking facilities and a restaurant. In addition to a lobby area with 24-hour reception service, hotel safe, currency exchange desk and a cloakroom, further facilities available to guests at this air-conditioned establishment include a caf\\u00e9, newspaper stand and room and laundry services.\\n\\nThe hotel provides accommodation in well maintained air-conditioned double rooms and suites with attached bathroom. All rooms are fully furnished with smartly crafted curtains, modern d\\u00e9cor and calm interiors and have running hot and cold water. Some of the rooms and suites can be converted according to need of guests for long stays. Room amenities include a telephone, LCD television, safe, fridge, wireless Internet access, tea and coffee making facilities and a balcony. In addition to a private bathroom with a shower and bathtub, further standard features of accommodation units include a double or king-size bed.\"}}}]},\"Position\":{\"@attributes\":{\"Latitude\":\"28.6283078\",\"Longitude\":\"77.2130053\"}},\"Address\":{\"AddressLine\":[\"Hanuman Road\",\"Connaught PlaceNew Delhi 110001\"],\"CityName\":\"New Delhi\",\"PostalCode\":\"110001\",\"StateProv\":[],\"CountryName\":\"India\"},\"ContactNumbers\":{\"ContactNumber\":[{\"@attributes\":{\"PhoneNumber\":\"00911140300000\",\"PhoneTechType\":\"Voice\"}},{\"@attributes\":{\"PhoneNumber\":\"+911123746702\",\"PhoneTechType\":\"Fax\"}}]},\"Award\":{\"@attributes\":{\"Provider\":\"TripAdvisor\",\"Rating\":\"4.5\",\"ReviewURL\":\"http:\\/\\/www.tripadvisor.com\\/Hotel_Review-g304551-d2163274-Reviews-UDS_Villa-New_Delhi_National_Capital_Territory_of_Delhi.html?m=19454\"}},\"Policy\":[],\"Attributes\":[]}','2021-09-28 17:08:17'),(3,130443,'1011664','Oodles Hotel',NULL,'{\"@attributes\":{\"BrandCode\":\"3\",\"TBOHotelCode\":\"1011664\",\"HotelName\":\"Oodles Hotel\",\"LocationCategoryCode\":\"56019,\",\"NoOfRooms\":\"40\",\"NoOfFloors\":\"0\",\"BuiltYear\":\"0\",\"RenovationYear\":\"0\",\"HotelCategoryId\":\"2\",\"HotelCategoryName\":\"Hotel\",\"IsHalal\":\"false\"},\"VendorMessages\":{\"VendorMessage\":[{\"@attributes\":{\"Title\":\"Facilities\",\"InfoType\":\"12\"},\"SubSection\":[{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Restaurant\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Meeting rooms\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Safe-deposit box at front desk\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Bar\\/lounge\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Luggage storage\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Newspapers in lobby (surcharge)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Breakfast available (surcharge)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Concierge services\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"24-hour front desk\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Conference space\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Laundry facilities\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Business center\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Tours\\/ticket assistance\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Coffee shop or caf\\u00e9\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Accessible bathroom\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Roll-in shower\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free self parking\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Dry cleaning\\/laundry service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free WiFi\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Wheelchair accessible parking\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Outdoor pool\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Garden\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Children\'s pool\"}}]},{\"@attributes\":{\"Title\":\"Attractions\",\"InfoType\":\"7\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"Distances are displayed to the nearest 0.1 mile and kilometer. <br \\/> <p>Fortis Hospital - 5 km \\/ 3.1 mi <br \\/> Qutub Minar - 5.1 km \\/ 3.2 mi <br \\/> Lado Sarai Golf Club - 6.2 km \\/ 3.8 mi <br \\/> Jawaharlal Nehru University - 6.3 km \\/ 3.9 mi <br \\/> Max Super Specialty Hospital - 7.4 km \\/ 4.6 mi <br \\/> Select CITYWALK - 7.8 km \\/ 4.9 mi <br \\/> Indian Institute of Mass Communication - 7.9 km \\/ 4.9 mi <br \\/> Nelson Mandela Road - 8.4 km \\/ 5.2 mi <br \\/> DLF Emporio Vasant Kunj - 8.5 km \\/ 5.3 mi <br \\/> Siri Fort Auditorium - 9.2 km \\/ 5.7 mi <br \\/> Central Mall - 9.3 km \\/ 5.8 mi <br \\/> DLF Promenade Vasant Kunj - 9.5 km \\/ 5.9 mi <br \\/> Ambience Mall - 9.5 km \\/ 5.9 mi <br \\/> Safdarjung Hospital - 10.4 km \\/ 6.5 mi <br \\/> Global Business Park - 10.4 km \\/ 6.5 mi <br \\/> <\\/p><p>The preferred airport for Oodles Hotel is Indira Gandhi Intl. Airport (DEL) - 13.8 km \\/ 8.6 mi <\\/p>\"}}},{\"@attributes\":{\"Title\":\"Hotel URL\",\"InfoType\":\"5\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"http:\\/\\/oodleshotels.com\"}}},{\"@attributes\":{\"Title\":\"Hotel Description\",\"InfoType\":\"1\"},\"SubSection\":{\"@attributes\":{\"SubTitle\":\"Property Description\"},\"Paragraph\":{\"Text\":\"<p>HeadLine : In New Delhi<\\/p><p>Location : With a stay at Oodles Hotel in New Delhi, you ll be within a 15-minute drive of Qutub Minar and Siri Fort Auditorium.  This hotel is 9.9 mi (16 km) from India Gate and 11 mi (17.6 km) from Gurudwara Bangla Sahib.<\\/p><p>Rooms : Make yourself at home in one of the 40 air-conditioned rooms featuring minibars. Complimentary wired and wireless Internet access keeps you connected, and cable programming provides entertainment. Private bathrooms have jetted bathtubs. Conveniences include safes and complimentary newspapers, and housekeeping is provided daily.<\\/p><p>Dining : Enjoy a meal at Restaurant or snacks in the coffee shop\\/caf\\u00e9. The hotel also offers 24-hour room service. Wrap up your day with a drink at the bar\\/lounge. Buffet breakfasts are available daily from 7:30 AM to 10:30 AM for a fee.<\\/p><p>CheckIn Instructions : Extra-person charges may apply and vary depending on property policy Government-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental charges Special requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteed This property accepts credit cards<\\/p><p>Special Instructions : Front desk staff will greet guests on arrival.<\\/p>\"}}}]},\"Position\":{\"@attributes\":{\"Latitude\":\"28.488879\",\"Longitude\":\"77.18519\"}},\"Address\":{\"AddressLine\":[\"759 762 Main Road\",\"ChattarpurNew Delhi 110074\"],\"CityName\":\"New Delhi\",\"PostalCode\":\"110074\",\"StateProv\":\"Delhi\",\"CountryName\":\"India\"},\"ContactNumbers\":{\"ContactNumber\":[{\"@attributes\":{\"PhoneNumber\":\"91-91-9910001269\",\"PhoneTechType\":\"Voice\"}},{\"@attributes\":{\"PhoneNumber\":\"91-91-1126549701\",\"PhoneTechType\":\"Fax\"}}]},\"Award\":{\"@attributes\":{\"Provider\":\"TripAdvisor\",\"Rating\":\"3.0\",\"ReviewURL\":\"\"}},\"Policy\":{\"@attributes\":{\"CheckInTime\":\"2:00 PM\",\"CheckOutTime\":\"12:00 PM\"}},\"Attributes\":{\"Attribute\":{\"@attributes\":{\"AttributeName\":\"No cribs (infant beds) available\",\"AttributeType\":\"General\"}}}}','2021-09-28 17:08:17'),(4,130443,'1011665','Oodles Residency',NULL,'{\"@attributes\":{\"BrandCode\":\"3\",\"TBOHotelCode\":\"1011665\",\"HotelName\":\"Oodles Residency\",\"LocationCategoryCode\":\"56027,\",\"NoOfRooms\":\"36\",\"NoOfFloors\":\"0\",\"BuiltYear\":\"0\",\"RenovationYear\":\"0\",\"HotelCategoryId\":\"2\",\"HotelCategoryName\":\"Hotel\",\"IsHalal\":\"false\"},\"VendorMessages\":{\"VendorMessage\":[{\"@attributes\":{\"Title\":\"Facilities\",\"InfoType\":\"12\"},\"SubSection\":[{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Luggage storage\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Coffee\\/tea in common areas\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Breakfast available (surcharge)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Concierge services\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"24-hour front desk\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Laundry facilities\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Restaurant\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Meeting rooms\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Tours\\/ticket assistance\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Accessible bathroom\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free self parking\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Dry cleaning\\/laundry service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free WiFi\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Wheelchair accessible parking\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"In-room accessibility\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Airport transportation (surcharge)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Smoke-free property\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free newspapers in lobby\"}}]},{\"@attributes\":{\"Title\":\"Attractions\",\"InfoType\":\"7\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"Distances are displayed to the nearest 0.1 mile and kilometer. <br \\/> <p>Kalkaji Mandir - 1.1 km \\/ 0.7 mi <br \\/> NSIC Exhibition Ground - 1.8 km \\/ 1.1 mi <br \\/> Lotus Temple - 2.2 km \\/ 1.3 mi <br \\/> ISKCON Temple - 2.2 km \\/ 1.4 mi <br \\/> Fortis Escorts Heart Institute - 2.8 km \\/ 1.8 mi <br \\/> Jamia Millia Islamia - 3.5 km \\/ 2.2 mi <br \\/> Lajpat Nagar Central Market - 4 km \\/ 2.5 mi <br \\/> Select CITYWALK - 4.5 km \\/ 2.8 mi <br \\/> Ansal Plaza - 4.5 km \\/ 2.8 mi <br \\/> Indraprashtha Apollo Hospital - 4.7 km \\/ 2.9 mi <br \\/> Max Super Specialty Hospital - 5.3 km \\/ 3.3 mi <br \\/> Siri Fort Auditorium - 5.7 km \\/ 3.5 mi <br \\/> Cardiothoracic and Neuiro Science Centre-AIIMS - 6 km \\/ 3.7 mi <br \\/> All India Institute of Medical Sciences - 6.1 km \\/ 3.8 mi <br \\/> Jawaharlal Nehru Stadium - 6.5 km \\/ 4.1 mi <br \\/> <\\/p><p>The nearest major airport is Indira Gandhi International Airport (DEL) - 20.4 km \\/ 12.7 mi<\\/p>\"}}},{\"@attributes\":{\"Title\":\"Hotel URL\",\"InfoType\":\"5\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"http:\\/\\/www.keyshotels.com\\/Location-Oodles-Hotel-Residency.aspx\"}}},{\"@attributes\":{\"Title\":\"Hotel Description\",\"InfoType\":\"1\"},\"SubSection\":{\"@attributes\":{\"SubTitle\":\"Property Description\"},\"Paragraph\":{\"Text\":\"<p>HeadLine : In New Delhi (Kalkaji)<\\/p><p>Location : Located in New Delhi (Kalkaji), Hotel Mint Oodles is within a 10-minute drive of Lotus Temple and Siri Fort Auditorium.  This hotel is 5.2 mi (8.4 km) from Qutub Minar and 6.3 mi (10.2 km) from India Gate.<\\/p><p>Rooms : Stay in one of 36 guestrooms featuring flat-screen televisions. Complimentary wireless Internet access keeps you connected, and cable programming is available for your entertainment. Bathrooms have showers and complimentary toiletries. Conveniences include safes and desks, and housekeeping is provided daily.<\\/p><p>Dining : At Hotel Mint Oodles, enjoy a satisfying meal at the restaurant. Buffet breakfasts are available daily from 7 AM to 10 AM for a fee.<\\/p><p>CheckIn Instructions : <ul>  <li>Extra-person charges may apply and vary depending on property policy<\\/li><li>Government-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental charges<\\/li><li>Special requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteed<\\/li><li>This property accepts credit cards<\\/li><li>Please note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property<\\/li>  <\\/ul><\\/p><p>Special Instructions : Front desk staff will greet guests on arrival.  This property s policy is to accept bookings only from citizens or residents of India.<\\/p>\"}}}]},\"Position\":{\"@attributes\":{\"Latitude\":\"28.54614\",\"Longitude\":\"77.252372\"}},\"Address\":{\"AddressLine\":[\"R 26 Nehru Enclave Kalkaji Nehru Place, Kalkaji\",\"Nehru PlaceKalkajiNew Delhi 110019\"],\"CityName\":\"New Delhi\",\"PostalCode\":\"110019\",\"StateProv\":\"Haryana\",\"CountryName\":\"India\"},\"ContactNumbers\":{\"ContactNumber\":[{\"@attributes\":{\"PhoneNumber\":\"91-91-7777090982\",\"PhoneTechType\":\"Voice\"}},{\"@attributes\":{\"PhoneNumber\":\"91-11-49991999\",\"PhoneTechType\":\"Fax\"}}]},\"Award\":{\"@attributes\":{\"Provider\":\"TripAdvisor\",\"Rating\":\"0.0\",\"ReviewURL\":\"\"}},\"Policy\":{\"@attributes\":{\"CheckInTime\":\"2:00 PM\",\"CheckOutTime\":\"12:00 PM\"}},\"HotelThemes\":{\"HotelTheme\":{\"@attributes\":{\"ThemeId\":\"45\",\"ThemeName\":\"Business property\"}}},\"Attributes\":{\"Attribute\":{\"@attributes\":{\"AttributeName\":\"No cribs (infant beds) available\",\"AttributeType\":\"General\"}}}}','2021-09-28 17:08:17'),(5,130443,'1011670','Oyo 13773 The Shoba Estate',NULL,'{\"@attributes\":{\"BrandCode\":\"3\",\"TBOHotelCode\":\"1011670\",\"HotelName\":\"Oyo 13773 The Shoba Estate\",\"LocationCategoryCode\":\"47928\",\"NoOfRooms\":\"0\",\"NoOfFloors\":\"0\",\"BuiltYear\":\"0\",\"RenovationYear\":\"0\",\"IsHalal\":\"false\"},\"VendorMessages\":{\"VendorMessage\":[{\"@attributes\":{\"Title\":\"Facilities\",\"InfoType\":\"12\"},\"SubSection\":[{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Hotel\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Bathroom\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Shower\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Bathtub\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Direct dial telephone\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"TV\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Minibar\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Individually adjustable air conditioning\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Safe\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Room service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Laundry service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Medical service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Air conditioning in public areas\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Hotel safe\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Currency exchange facilities\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Lift access\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Newspaper stand\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Restaurant\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Air conditioning in Restaurant\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Conference room\"}}]},{\"@attributes\":{\"Title\":\"Hotel Description\",\"InfoType\":\"1\"},\"SubSection\":{\"@attributes\":{\"SubTitle\":\"Property Description\"},\"Paragraph\":{\"Text\":\"The hotel is conveniently located in Mahipalpur, New Delhi. It provides easy access to various points of interest in the city such as shopping areas, business centres and tourist spots. Indira Gandhi International Airport is just 3 km away, while the railway station is about 15 km from the hotel.\\n\\nThis leading budget class hotel in New Delhi is a perfect blend of modernity and style. The hotel\'s elegant d\\u00e9cor and spacious corridors with comfortable seating facilities make it an ideal place to stay for business or leisure purposes. There are a total of 65 rooms. The premises are air-conditioned and guests are welcomed in a lobby with 24-hour reception and check-out service. Facilities include a hotel safe, currency exchange and lift access. There is also a newspaper stand. Guests can dine in the restaurant. Conference facilities are available to business travellers and wireless Internet access is provided. Guests can take advantage of the room and laundry services on offer. Those arriving by car may leave their vehicle in the hotel\'s car park.\\n\\nThe hotel features well-appointed luxury and deluxe rooms tastefully designed to meet the basic comforts and needs of guests. All the rooms are spacious and comfortable with plush interiors to provide a relaxing atmosphere with a perfect ambience. Each room has an en suite bathroom with a shower and a bath. Facilities include a direct dial telephone, satellite\\/cable TV and Internet access. There is also a safe, minibar, tea and coffee making facilities and individually regulated air conditioning in all accommodation.\"}}}]},\"Position\":{\"@attributes\":{\"Latitude\":\"28.55207\",\"Longitude\":\"77.13183\"}},\"Address\":{\"AddressLine\":[\"1028\\/1, NEAR IGI AIRPORT, N.H-8, MAHIPALPUR\",\"NEW DELHI\"],\"CityName\":\"New Delhi\",\"PostalCode\":\"110037\",\"StateProv\":[],\"CountryName\":\"India\"},\"Award\":{\"@attributes\":{\"Provider\":\"TripAdvisor\",\"Rating\":\"2.5\",\"ReviewURL\":\"\"}},\"Policy\":[],\"Attributes\":[]}','2021-09-28 17:08:17'),(6,130443,'1011671','Delhi Heart Dx Hotel',NULL,'{\"@attributes\":{\"BrandCode\":\"2\",\"TBOHotelCode\":\"1011671\",\"HotelName\":\"Delhi Heart Dx Hotel\",\"LocationCategoryCode\":\"44102,\",\"NoOfRooms\":\"24\",\"NoOfFloors\":\"0\",\"BuiltYear\":\"0\",\"RenovationYear\":\"0\",\"HotelCategoryId\":\"2\",\"HotelCategoryName\":\"Hotel\",\"IsHalal\":\"false\"},\"VendorMessages\":{\"VendorMessage\":[{\"@attributes\":{\"Title\":\"Facilities\",\"InfoType\":\"12\"},\"SubSection\":[{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Reception hall\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Laundry facilities\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free breakfast\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Airport transportation\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"elevator\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Smoke-free property\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"24-hour front desk\"}}]},{\"@attributes\":{\"Title\":\"Attractions\",\"InfoType\":\"7\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"Distances are displayed to the nearest 0.1 mile and kilometer. <br \\/> <p>Palika Bazaar - 1.8 km \\/ 1.1 mi <br \\/> Jama Masjid - 1.8 km \\/ 1.1 mi <br \\/> Kasturba Gandhi Marg - 2 km \\/ 1.3 mi <br \\/> Gole Market - 2.1 km \\/ 1.3 mi <br \\/> Ajmal Khan Road - 2.3 km \\/ 1.4 mi <br \\/> Lady Hardinge Medical College - 2.3 km \\/ 1.4 mi <br \\/> Jantar Mantar - 2.4 km \\/ 1.5 mi <br \\/> Chandni Chowk - 2.5 km \\/ 1.5 mi <br \\/> Gurudwara Sis Ganj Temple - 2.5 km \\/ 1.6 mi <br \\/> Laxminarayan Temple - 2.7 km \\/ 1.7 mi <br \\/> Lajpat Rai Market - 2.7 km \\/ 1.7 mi <br \\/> Red Fort - 2.9 km \\/ 1.8 mi <br \\/> Gurudwara Bangla Sahib - 2.9 km \\/ 1.8 mi <br \\/> FICCI Auditorium - 3.1 km \\/ 1.9 mi <br \\/> Raj Ghat - 3.6 km \\/ 2.2 mi <br \\/> <\\/p><p>The preferred airport for OYO 6408 Hotel Delhi Heart is Indira Gandhi International Airport (DEL) - 22.2 km \\/ 13.8 mi <\\/p>\"}}},{\"@attributes\":{\"Title\":\"Hotel URL\",\"InfoType\":\"5\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"http:\\/\\/www.hoteldelhiheart.com\\/\"}}},{\"@attributes\":{\"Title\":\"Hotel Description\",\"InfoType\":\"1\"},\"SubSection\":{\"@attributes\":{\"SubTitle\":\"Property Description\"},\"Paragraph\":{\"Text\":\"<p>HeadLine : In New Delhi (Paharganj)<\\/p><p>Location : With a stay at OYO 6408 Hotel Delhi Heart in New Delhi (Paharganj), you ll be within a 15-minute drive of Gurudwara Bangla Sahib and Jantar Mantar.  This hotel is 1.9 mi (3 km) from Jama Masjid and 2.3 mi (3.7 km) from Sir Ganga Ram Hospital.<\\/p><p>Rooms : Make yourself at home in one of the 24 air-conditioned guestrooms. Complimentary wireless Internet access is available to keep you connected. Private bathrooms with showers feature rainfall showerheads and complimentary toiletries.<\\/p><p>Dining : A complimentary continental breakfast is served daily from 8 AM to 9 AM.<\\/p><p>CheckIn Instructions : <ul>  <li>Extra-person charges may apply and vary depending on property policy<\\/li><li>Government-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental charges<\\/li><li>Special requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteed<\\/li><li>Only bookings from non-local guests are accepted; guests whose residence is within the same city as the property will not be allowed to check in<\\/li><li>Please note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property<\\/li>  <\\/ul><\\/p><p>Special Instructions : Front desk staff will greet guests on arrival.  To register at this property, guests who are Indian citizens must provide a valid photo identity card issued by the Government of India. PAN cards are not accepted. Travelers who are not citizens of India must present a valid passport and visa.<\\/p>\"}}}]},\"Position\":{\"@attributes\":{\"Latitude\":\"28.644129\",\"Longitude\":\"77.217299\"}},\"Address\":{\"AddressLine\":[\"3738 Opposite Shiela Cinema New Delhi Station New Delhi Near Gate No 1 Opposite Sheila Cinema\",\"Opposite Shiela CinemaNear Pahar Ganj FlyoverNew Delhi 110055\"],\"CityName\":\"New Delhi\",\"PostalCode\":\"110055\",\"StateProv\":\"Delhi\",\"CountryName\":\"India\"},\"ContactNumbers\":{\"ContactNumber\":[{\"@attributes\":{\"PhoneNumber\":\"91-93-13931393\",\"PhoneTechType\":\"Voice\"}},{\"@attributes\":{\"PhoneNumber\":\"0091 112 3561124\",\"PhoneTechType\":\"Fax\"}}]},\"Award\":{\"@attributes\":{\"Provider\":\"TripAdvisor\",\"Rating\":\"3.0\",\"ReviewURL\":\"\"}},\"Policy\":{\"@attributes\":{\"CheckInTime\":\"12:00 PM\",\"CheckOutTime\":\"11:00 AM\"}},\"Attributes\":{\"Attribute\":[{\"@attributes\":{\"AttributeName\":\"No cribs (infant beds) available\",\"AttributeType\":\"General\"}},{\"@attributes\":{\"AttributeName\":\"No rollaway\\/extra beds available\",\"AttributeType\":\"General\"}}]}}','2021-09-28 17:08:17'),(7,130443,'1011672','Veera Palace',NULL,'{\"@attributes\":{\"BrandCode\":\"3\",\"TBOHotelCode\":\"1011672\",\"HotelName\":\"Veera Palace\",\"LocationCategoryCode\":\"56012,\",\"NoOfRooms\":\"20\",\"NoOfFloors\":\"0\",\"BuiltYear\":\"0\",\"RenovationYear\":\"0\",\"HotelCategoryId\":\"2\",\"HotelCategoryName\":\"Hotel\",\"IsHalal\":\"false\"},\"VendorMessages\":{\"VendorMessage\":[{\"@attributes\":{\"Title\":\"Facilities\",\"InfoType\":\"12\"},\"SubSection\":[{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free breakfast\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Business center\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Smoke-free property\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free WiFi\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"24-hour front desk\"}}]},{\"@attributes\":{\"Title\":\"Attractions\",\"InfoType\":\"7\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"Distances are displayed to the nearest 0.1 mile and kilometer. <br \\/> <p>Jawaharlal Nehru University - 2.2 km \\/ 1.4 mi <br \\/> Sarojini Nagar Market - 2.2 km \\/ 1.4 mi <br \\/> Safdarjung Hospital - 2.4 km \\/ 1.5 mi <br \\/> Indian Institute of Mass Communication - 3.1 km \\/ 1.9 mi <br \\/> Siri Fort Auditorium - 3.6 km \\/ 2.3 mi <br \\/> Nelson Mandela Road - 4 km \\/ 2.5 mi <br \\/> Cardiothoracic and Neuiro Science Centre-AIIMS - 4.1 km \\/ 2.5 mi <br \\/> All India Institute of Medical Sciences - 4.3 km \\/ 2.7 mi <br \\/> DLF Emporio Vasant Kunj - 4.9 km \\/ 3.1 mi <br \\/> Ansal Plaza - 5 km \\/ 3.1 mi <br \\/> Dhaula Kuan - 5.4 km \\/ 3.4 mi <br \\/> Lado Sarai Golf Club - 5.5 km \\/ 3.4 mi <br \\/> Lodhi Garden - 6 km \\/ 3.7 mi <br \\/> Fortis Hospital - 6.1 km \\/ 3.8 mi <br \\/> Jawaharlal Nehru Stadium - 6.2 km \\/ 3.9 mi <br \\/> <\\/p><p>The nearest major airport is Indira Gandhi International Airport (DEL) - 14.8 km \\/ 9.2 mi<\\/p>\"}}},{\"@attributes\":{\"Title\":\"Hotel URL\",\"InfoType\":\"5\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"http:\\/\\/www.aalishanhotels.net\\/veera-hotel.html\"}}},{\"@attributes\":{\"Title\":\"Hotel Description\",\"InfoType\":\"1\"},\"SubSection\":{\"@attributes\":{\"SubTitle\":\"Property Description\"},\"Paragraph\":{\"Text\":\"<p>HeadLine : In New Delhi (Safdarjung Enclave)<\\/p><p>Location : With a stay at OYO Flagship 746 Bhikaji Cama Place in New Delhi (Safdarjung Enclave), you ll be within a 10-minute drive of Siri Fort Auditorium and Khan Market.  This hotel is 4.2 mi (6.7 km) from Qutub Minar and 6 mi (9.6 km) from India Gate.<\\/p><p>Rooms : Make yourself at home in one of the 20 guestrooms. Complimentary wireless Internet access keeps you connected, and satellite programming is available for your entertainment. Bathrooms have bathtubs or showers and complimentary toiletries.<\\/p><p>Dining : A complimentary continental breakfast is served daily from 7 AM to 10 AM.<\\/p><p>CheckIn Instructions : <ul>  <li>Extra-person charges may apply and vary depending on property policy<\\/li><li>Government-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental charges<\\/li><li>Special requests are subject to availability upon check-in and may incur additional charges; special requests cannot be guaranteed<\\/li><li>No onsite parking is available<\\/li><li>This property accepts credit cards<\\/li><li>Please note that cultural norms and guest policies may differ by country and by property; the policies listed are provided by the property<\\/li>  <\\/ul><\\/p><p>Special Instructions : Front desk staff will greet guests on arrival.  To register at this property, guests who are Indian citizens must provide a valid photo identity card issued by the Government of India. PAN cards are not accepted. Travelers who are not citizens of India must present a valid passport and visa.<\\/p>\"}}}]},\"Position\":{\"@attributes\":{\"Latitude\":\"28.56246\",\"Longitude\":\"77.1888\"}},\"Address\":{\"AddressLine\":[\"Bhikaji Cama Place Chankya Puri Nehru Palace Ok Plot No. No.B-2\\/3\",\"Safdarjung EnclaveNew Delhi 110029\"],\"CityName\":\"New Delhi\",\"PostalCode\":\"110029\",\"StateProv\":[],\"CountryName\":\"India\"},\"ContactNumbers\":{\"ContactNumber\":[{\"@attributes\":{\"PhoneNumber\":\"91-91-9313931393\",\"PhoneTechType\":\"Voice\"}},{\"@attributes\":{\"PhoneNumber\":\"91-91-9313931393\",\"PhoneTechType\":\"Fax\"}}]},\"Award\":{\"@attributes\":{\"Provider\":\"TripAdvisor\",\"Rating\":\"0.0\",\"ReviewURL\":\"\"}},\"Policy\":{\"@attributes\":{\"CheckInTime\":\"12:00 PM\",\"CheckOutTime\":\"11:00 AM\"}},\"Attributes\":{\"Attribute\":{\"@attributes\":{\"AttributeName\":\"No cribs (infant beds) available\",\"AttributeType\":\"General\"}}}}','2021-09-28 17:08:17'),(8,130443,'1011673','Hotel MetroPolitan',NULL,'{\"@attributes\":{\"BrandCode\":\"3\",\"TBOHotelCode\":\"1011673\",\"HotelName\":\"Hotel MetroPolitan\",\"LocationCategoryCode\":\"47928,\",\"NoOfRooms\":\"23\",\"NoOfFloors\":\"3\",\"BuiltYear\":\"1999\",\"RenovationYear\":\"0\",\"HotelCategoryId\":\"2\",\"HotelCategoryName\":\"Hotel\",\"IsHalal\":\"false\"},\"VendorMessages\":{\"VendorMessage\":[{\"@attributes\":{\"Title\":\"Facilities\",\"InfoType\":\"12\"},\"SubSection\":[{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Express check-out\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Tours\\/ticket assistance\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free self parking\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Dry cleaning\\/laundry service\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free WiFi\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free wired Internet\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Smoke-free property\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Safe-deposit box at front desk\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free reception\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Luggage storage\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Hair salon\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"ATM\\/banking\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"24-hour business center\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Train station pickup (surcharge)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Concierge services\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Laundry facilities\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Parking (limited spaces)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Television in common areas\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Accessible bathroom\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Wheelchair accessible parking\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"In-room accessibility\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Airport transportation (surcharge)\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Multilingual staff\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Fireplace in lobby\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free newspapers in lobby\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Express check-in\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Coffee\\/tea in common areas\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"elevator\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Rooftop terrace\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"24-hour front desk\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Free breakfast\"}},{\"@attributes\":{\"SubTitle\":\"Hotel Facility\"},\"Paragraph\":{\"Text\":\"Restaurant\"}}]},{\"@attributes\":{\"Title\":\"Attractions\",\"InfoType\":\"7\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"Distances are displayed to the nearest 0.1 mile and kilometer. <br \\/> <p>BLK Super Speciality Hospital - 0.6 km \\/ 0.4 mi <br \\/> Rajendra Place - 0.9 km \\/ 0.5 mi <br \\/> Ajmal Khan Road - 0.9 km \\/ 0.6 mi <br \\/> Sir Ganga Ram Hospital - 0.9 km \\/ 0.6 mi <br \\/> Laxminarayan Temple - 3.1 km \\/ 1.9 mi <br \\/> Gole Market - 3.3 km \\/ 2 mi <br \\/> Lady Hardinge Medical College - 3.8 km \\/ 2.4 mi <br \\/> Palika Bazaar - 3.9 km \\/ 2.4 mi <br \\/> Gurudwara Bangla Sahib - 4.2 km \\/ 2.6 mi <br \\/> Kasturba Gandhi Marg - 4.2 km \\/ 2.6 mi <br \\/> Rajpath - 4.4 km \\/ 2.7 mi <br \\/> Parliament of India - 4.4 km \\/ 2.7 mi <br \\/> Jantar Mantar - 4.5 km \\/ 2.8 mi <br \\/> Jama Masjid - 5.3 km \\/ 3.3 mi <br \\/> Chandni Chowk - 5.7 km \\/ 3.5 mi <br \\/> <\\/p><p>The nearest major airport is Indira Gandhi Intl. Airport (DEL) - 19.7 km \\/ 12.3 mi<\\/p>\"}}},{\"@attributes\":{\"Title\":\"Hotel URL\",\"InfoType\":\"5\"},\"SubSection\":{\"Paragraph\":{\"Text\":\"http:\\/\\/www.hotelmetropolitan.co\"}}},{\"@attributes\":{\"Title\":\"Hotel Description\",\"InfoType\":\"1\"},\"SubSection\":{\"@attributes\":{\"SubTitle\":\"Property Description\"},\"Paragraph\":{\"Text\":\"<p>HeadLine : Near Sir Ganga Ram Hospital<\\/p><p>Location : A stay at Hotel Metropolitan Karol Bagh places you in the heart of New Delhi, within a 15-minute walk of Sir Ganga Ram Hospital and BLK Super Speciality Hospital.  This hotel is 3.3 mi (5.3 km) from Jama Masjid and 3.3 mi (5.3 km) from Gurudwara Bangla Sahib.<\\/p><p>Rooms : Treat yourself to a stay in one of the 23 individually decorated guestrooms, featuring fireplaces and LCD televisions. Your pillowtop bed comes with premium bedding. Kitchens are outfitted with full-sized refrigerators\\/freezers. Complimentary wired and wireless Internet access keeps you connected, and satellite programming provides entertainment.<\\/p><p>Dining : Enjoy a meal at the restaurant, or stay in and take advantage of the hotel s 24-hour room service. Mingle with other guests at the complimentary reception, held daily. A complimentary cooked-to-order breakfast is served daily from 7:30 AM to 10:30 AM.<\\/p><p>CheckIn Instructions : Extra-person charges may apply and vary depending on property policy. <br \\/>Government-issued photo identification and a credit card, debit card, or cash deposit may be required at check-in for incidental charges. <br \\/>Special requests are subject to availability upon check-in and may incur additional charges. Special requests cannot be guaranteed. <ul> Please note that cultural norms and guest policies may differ by country and by property. The policies listed are provided by the property. <\\/ul><\\/p><p>Special Instructions : Front desk staff will greet guests on arrival.  24-hour airport shuttle service is available on request. Fees may apply. Contact the property in advance to make arrangements.  To register at this property, guests who are Indian citizens must provide a valid photo identity card issued by the Government of India; guests who are foreign nationals must present a valid passport and visa.<\\/p>\"}}}]},\"Position\":{\"@attributes\":{\"Latitude\":\"28.643733\",\"Longitude\":\"77.18624\"}},\"Address\":{\"AddressLine\":[\"13A\\/24, Wea, Channa Market, Karol Bagh\",\"Near Metro StationChanna MarketKarol Bagh\"],\"CityName\":\"New Delhi\",\"PostalCode\":\"110005\",\"StateProv\":\"Delhi N.C.R\",\"CountryName\":\"India\"},\"ContactNumbers\":{\"ContactNumber\":[{\"@attributes\":{\"PhoneNumber\":\"91-11-9899099802\",\"PhoneTechType\":\"Voice\"}},{\"@attributes\":{\"PhoneNumber\":\"91-11-25728433\",\"PhoneTechType\":\"Fax\"}}]},\"Award\":{\"@attributes\":{\"Provider\":\"TripAdvisor\",\"Rating\":\"4.0\",\"ReviewURL\":\"\"}},\"Policy\":{\"@attributes\":{\"CheckOutTime\":\"12:00 PM\"}},\"HotelThemes\":{\"HotelTheme\":{\"@attributes\":{\"ThemeId\":\"45\",\"ThemeName\":\"Business property\"}}},\"Attributes\":{\"Attribute\":{\"@attributes\":{\"AttributeName\":\"No cribs (infant beds) available\",\"AttributeType\":\"General\"}}}}','2021-09-28 17:08:18');
/*!40000 ALTER TABLE `tbl_hotel_static_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_invoice`
--

DROP TABLE IF EXISTS `tbl_invoice`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_invoice` (
  `id` int NOT NULL AUTO_INCREMENT,
  `InvoiceNumber` varchar(150) NOT NULL,
  `Booking_Id` varchar(155) NOT NULL,
  `service_type` int DEFAULT '0',
  `IsMarkForDel` int NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_invoice`
--

LOCK TABLES `tbl_invoice` WRITE;
/*!40000 ALTER TABLE `tbl_invoice` DISABLE KEYS */;
INSERT INTO `tbl_invoice` VALUES (1,'INV-000001','TJS106100291196',0,0,'2022-07-07 06:48:44','2022-07-07 06:48:44'),(2,'INV-000002','TJS102000291382',0,0,'2022-07-07 09:07:12','2022-07-07 09:07:12'),(3,'INV-000003','TJS100700291789',0,0,'2022-07-07 12:51:46','2022-07-07 12:51:46'),(4,'INV-000004','TJS107600291866',0,0,'2022-07-07 14:11:20','2022-07-07 14:11:20'),(5,'INV-000005','TJS101400291881',0,0,'2022-07-07 14:40:47','2022-07-07 14:40:47'),(6,'INV-000006','TJS104400292683',0,0,'2022-07-08 14:18:01','2022-07-08 14:18:01'),(7,'INV-000007','TJS100400292694',0,0,'2022-07-08 14:27:58','2022-07-08 14:27:58'),(8,'INV-000008','TJS105000293026',0,0,'2022-07-11 06:36:32','2022-07-11 06:36:32'),(9,'INV-000009','TJS100400295658',0,0,'2022-07-13 06:19:19','2022-07-13 06:19:19'),(10,'INV-000010','TJS108700295674',0,0,'2022-07-13 06:30:12','2022-07-13 06:30:12'),(11,'INV-000011','TJS118100295694',0,0,'2022-07-13 06:47:53','2022-07-13 06:47:53'),(12,'INV-000012','TJS110400295707',0,0,'2022-07-13 07:00:20','2022-07-13 07:00:20'),(13,'INV-000013','TJS110800295727',0,0,'2022-07-13 07:19:10','2022-07-13 07:19:10'),(14,'INV-000014','TJS119200295828',0,0,'2022-07-13 08:16:59','2022-07-13 08:16:59'),(15,'INV-000015','TJS115500295994',0,0,'2022-07-13 10:09:28','2022-07-13 10:09:28'),(16,'INV-000016','TJS118600296010',0,0,'2022-07-13 10:19:25','2022-07-13 10:19:25'),(17,'INV-000017','TJS113800296013',0,0,'2022-07-13 10:24:41','2022-07-13 10:24:41'),(18,'INV-000018','TJS110200296025',0,0,'2022-07-13 10:32:19','2022-07-13 10:32:19'),(19,'INV-000019','TJS109400296246',0,0,'2022-07-13 11:54:44','2022-07-13 11:54:44'),(20,'INV-000020','TJS118700296253',0,0,'2022-07-13 11:59:04','2022-07-13 11:59:04'),(21,'INV-000021','TJS112500296258',0,0,'2022-07-13 12:02:35','2022-07-13 12:02:35'),(22,'INV-000022','TJS119100296333',0,0,'2022-07-13 12:58:14','2022-07-13 12:58:14'),(23,'INV-000023','TJ105638235197',0,0,'2022-07-19 06:46:42','2022-07-19 06:46:42'),(24,'INV-000024','TJ109638329632',0,0,'2022-07-20 09:39:21','2022-07-20 09:39:21'),(25,'INV-000025','TJ100739265875',0,0,'2022-08-02 13:32:32','2022-08-02 13:32:32'),(26,'INV-000026','TJ103540179735',0,0,'2022-08-14 06:02:41','2022-08-14 06:02:41'),(27,'INV-000027','TJ108940248079',0,0,'2022-08-15 06:36:38','2022-08-15 06:36:38'),(28,'INV-000028','TJ105040490274',0,0,'2022-08-18 08:07:47','2022-08-18 08:07:47'),(29,'INV-000029','TJ107640552099',0,0,'2022-08-19 04:59:19','2022-08-19 04:59:19'),(30,'INV-000030','TJ108240692423',0,0,'2022-08-21 04:34:57','2022-08-21 04:34:57'),(31,'INV-000031','TJ101940706511',0,0,'2022-08-21 08:02:20','2022-08-21 08:02:20'),(32,'INV-000032','TJ108240744796',0,0,'2022-08-22 01:11:40','2022-08-22 01:11:40'),(33,'INV-000033','TJ100441037963',0,0,'2022-08-25 15:50:55','2022-08-25 15:50:55'),(34,'INV-000034','TJ104241039445',0,0,'2022-08-25 16:07:40','2022-08-25 16:07:40'),(35,'INV-000035','TJ105441369261',0,0,'2022-08-30 08:01:22','2022-08-30 08:01:22'),(36,'INV-000036','TJ109542109894',0,0,'2022-09-07 17:56:30','2022-09-07 17:56:30'),(37,'INV-000037','TJ101042204842',0,0,'2022-09-08 18:25:52','2022-09-08 18:25:52'),(38,'INV-000038','TJ101542690971',0,0,'2022-09-14 10:55:53','2022-09-14 10:55:53'),(39,'INV-000039','TJ108942694565',0,0,'2022-09-14 11:31:44','2022-09-14 11:31:44'),(40,'INV-000040','TJ106942846235',0,0,'2022-09-16 03:34:25','2022-09-16 03:34:25'),(41,'INV-000041','TJ108343205516',0,0,'2022-09-20 03:42:07','2022-09-20 03:42:07'),(42,'INV-000042','TJ101246634026',0,0,'2022-10-28 11:57:10','2022-10-28 11:57:10'),(43,'INV-000043','TJ109846892928',0,0,'2022-10-31 10:05:35','2022-10-31 10:05:35'),(44,'INV-000044','TJ109846892928',0,0,'2022-10-31 10:06:24','2022-10-31 10:06:24'),(45,'INV-000045','TJ109846892928',0,0,'2022-10-31 10:08:15','2022-10-31 10:08:15'),(46,'INV-000046','TJ109547845008',0,0,'2022-11-09 18:11:15','2022-11-09 18:11:15'),(47,'INV-000047','TJ108147845329',0,0,'2022-11-09 18:14:47','2022-11-09 18:14:47'),(48,'INV-000048','TJ107947845640',0,0,'2022-11-09 18:18:51','2022-11-09 18:18:51'),(49,'INV-000049','TJ107947845640',0,0,'2022-11-09 18:23:49','2022-11-09 18:23:49'),(50,'INV-000050','TJ107448581440',0,0,'2022-11-16 22:46:31','2022-11-16 22:46:31'),(51,'INV-000051','TJ107448581440',0,0,'2022-11-16 22:47:58','2022-11-16 22:47:58'),(52,'INV-000052','TJ107448581440',0,0,'2022-11-16 22:48:12','2022-11-16 22:48:12');
/*!40000 ALTER TABLE `tbl_invoice` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_loaders`
--

DROP TABLE IF EXISTS `tbl_loaders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_loaders` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `loader_image` varchar(250) NOT NULL,
  `url` varchar(100) NOT NULL,
  `modules` varchar(250) NOT NULL,
  `isActive` enum('0','1') NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_loaders`
--

LOCK TABLES `tbl_loaders` WRITE;
/*!40000 ALTER TABLE `tbl_loaders` DISABLE KEYS */;
INSERT INTO `tbl_loaders` VALUES (1,'','test.url.co','All','1','1'),(3,'1623146246.jpg','flight.url','Flight','1','0'),(4,'1623147339.jpg','hotel.url','Hotel','1','0');
/*!40000 ALTER TABLE `tbl_loaders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_manage_fare`
--

DROP TABLE IF EXISTS `tbl_manage_fare`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_manage_fare` (
  `id` int NOT NULL AUTO_INCREMENT,
  `faretype` varchar(100) NOT NULL,
  `faretype_rename` varchar(200) DEFAULT NULL,
  `markup_b2c` decimal(18,2) NOT NULL,
  `markup_b2b` decimal(18,2) NOT NULL,
  `showhide_b2b` tinyint NOT NULL,
  `showhide_b2c` tinyint NOT NULL,
  `remarks` varchar(250) DEFAULT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  `color` varchar(50) DEFAULT NULL,
  `ApiRoundTrip` smallint NOT NULL DEFAULT '7',
  `IsSeriesFareAllow` int DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_manage_fare`
--

LOCK TABLES `tbl_manage_fare` WRITE;
/*!40000 ALTER TABLE `tbl_manage_fare` DISABLE KEYS */;
INSERT INTO `tbl_manage_fare` VALUES (40,'PUBLISHED','Retail_Fare',125.00,10.00,1,1,'Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(41,'CORPORATE','Svezz_Special_Benefits',125.00,10.00,1,1,'Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat ','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(42,'SPECIAL_RETURN','Round_Trip_Special',125.00,10.00,1,1,'Round Trip Special Discount','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(43,'SME','SME',125.00,10.00,1,1,'Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(44,'TACTICAL','Tact_Deal',125.00,10.00,1,1,'','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(45,'FLEXI_PLUS','Flexi',125.00,10.00,1,1,'Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(46,'SALE','Discounted_Deal',125.00,10.00,1,1,'Offer Price!!!!','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(47,'COUPON','Discounted_Deal',125.00,10.00,1,1,'Offer Price!!!!','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(48,'PREMIUM_FLEX','Flexy__Special_Benefit_',125.00,10.00,1,1,'Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat ','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(49,'OFFER_FARE_WITHOUT_PNR','HOT_DEAL_(Confirmation_may_take_30_mins)',125.00,100.00,1,1,'Issues 30 to 45 minutes, Non Refundable, Non changeable ','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(50,'PROMO','Discounted_Deal',125.00,10.00,1,1,'Offer Price!!!!','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(51,'CORPORATE_FLEX','Svezz_Special_Benefit',125.00,50.00,1,1,'Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat ','2022-03-08 11:05:00','2023-04-14 13:50:05',1,0,'#000000',7,0),(52,'OFFER_FARE_WITH_PNR','Instant_HOT_DEAL',125.00,100.00,1,1,'Issues Instantly , Non Refundable, Non changeable ','2022-04-07 15:51:45','2023-04-14 13:50:05',1,0,'#000000',7,0),(53,'LITE','Lite_Fare',125.00,10.00,1,1,'','2022-04-07 15:51:45','2023-04-14 13:50:05',1,0,'#000000',7,0),(54,'RegularFare','RegularFare',125.00,0.00,1,1,'RegularFare','2022-04-07 11:51:18','2023-04-14 13:50:05',1,0,'#000000',7,0),(55,'InstantPur','InstantPur',125.00,0.00,1,1,'InstantPur','2022-04-07 11:51:18','2023-04-14 13:50:05',1,0,'#000000',7,0),(56,'Publish','Publish',125.00,0.00,1,1,'Publish','2022-04-07 11:51:18','2023-04-14 13:50:05',1,0,'#000000',7,0);
/*!40000 ALTER TABLE `tbl_manage_fare` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_mastercategary`
--

DROP TABLE IF EXISTS `tbl_mastercategary`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_mastercategary` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `categaryName` varchar(255) DEFAULT NULL,
  `categaryImage` varchar(1000) DEFAULT NULL,
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `IsmarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `AgencySysId` bigint DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_mastercategary`
--

LOCK TABLES `tbl_mastercategary` WRITE;
/*!40000 ALTER TABLE `tbl_mastercategary` DISABLE KEYS */;
INSERT INTO `tbl_mastercategary` VALUES (1,'PHOTOS','1630655238cat_1.jpg','1','0',1),(2,'NEWS','1649919647cat_1.jpg','1','0',NULL),(3,'ARTICLES','1649919526cat_1.png','1','0',NULL),(4,'EXHIBITIONS','1649919466cat_1.jpg','1','0',NULL),(5,'EVENTS','1650001330cat_1.jpg','1','0',10672),(6,'Noida','1649928423cat_1.jpg','1','1',NULL);
/*!40000 ALTER TABLE `tbl_mastercategary` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_member`
--

DROP TABLE IF EXISTS `tbl_member`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_member` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `MemberShipType` varchar(32) NOT NULL,
  `MemberShipCode` varchar(8) NOT NULL,
  `CompanyName` varchar(128) NOT NULL,
  `Salutation` varchar(8) NOT NULL,
  `FirstName` varchar(32) NOT NULL,
  `LastName` varchar(32) NOT NULL,
  `Email` varchar(64) NOT NULL,
  `Code` varchar(8) NOT NULL DEFAULT '+91',
  `Mobile` varchar(12) NOT NULL,
  `Designation` varchar(32) NOT NULL,
  `City` varchar(32) NOT NULL,
  `State` varchar(32) NOT NULL,
  `Country` varchar(32) NOT NULL,
  `RegistrationNo` varchar(32) NOT NULL,
  `IsActive` enum('0','1') NOT NULL,
  `IsMarkForDel` enum('0','1') NOT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_member`
--

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

--
-- Table structure for table `tbl_misc_category`
--

DROP TABLE IF EXISTS `tbl_misc_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_misc_category` (
  `miscCatId` int NOT NULL AUTO_INCREMENT,
  `categoryTitle` varchar(256) NOT NULL,
  `categoryLabel` varchar(256) NOT NULL,
  `bannerImage` varchar(256) NOT NULL,
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`miscCatId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_misc_category`
--

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

--
-- Table structure for table `tbl_misc_post`
--

DROP TABLE IF EXISTS `tbl_misc_post`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_misc_post` (
  `miscId` int NOT NULL AUTO_INCREMENT,
  `miscCategory` int NOT NULL,
  `miscTitle` varchar(500) NOT NULL,
  `miscLabel` varchar(500) NOT NULL,
  `miscImage` varchar(256) NOT NULL,
  `miscDescription` text NOT NULL,
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`miscId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_misc_post`
--

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

--
-- Table structure for table `tbl_my_query`
--

DROP TABLE IF EXISTS `tbl_my_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_my_query` (
  `query_id` int NOT NULL AUTO_INCREMENT,
  `MasterTpSysId` int NOT NULL,
  `code` text NOT NULL,
  `CustomerSysId` int NOT NULL,
  `query_name` varchar(256) NOT NULL,
  `query_email` varchar(256) NOT NULL,
  `query_phone` varchar(20) NOT NULL,
  `query_destination` varchar(256) NOT NULL,
  `query_date` date NOT NULL,
  `query_pax` varchar(10) NOT NULL,
  `package_name` varchar(256) NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`query_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_my_query`
--

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

--
-- Table structure for table `tbl_newsletter_images`
--

DROP TABLE IF EXISTS `tbl_newsletter_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_newsletter_images` (
  `id` int NOT NULL AUTO_INCREMENT,
  `currentMonth` varchar(256) NOT NULL,
  `lastMonth` varchar(256) NOT NULL,
  `pdf1` varchar(500) NOT NULL,
  `pdf2` varchar(500) NOT NULL,
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_newsletter_images`
--

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

--
-- Table structure for table `tbl_newsletter_lattestnews`
--

DROP TABLE IF EXISTS `tbl_newsletter_lattestnews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_newsletter_lattestnews` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(256) NOT NULL,
  `description` text NOT NULL,
  `url` varchar(256) NOT NULL,
  `orderofAppearence` int NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_newsletter_lattestnews`
--

LOCK TABLES `tbl_newsletter_lattestnews` WRITE;
/*!40000 ALTER TABLE `tbl_newsletter_lattestnews` DISABLE KEYS */;
INSERT INTO `tbl_newsletter_lattestnews` VALUES (2,'title ddd 4',' test d sddd 4','',4,'1');
/*!40000 ALTER TABLE `tbl_newsletter_lattestnews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_notification`
--

DROP TABLE IF EXISTS `tbl_notification`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_notification` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `heading` varchar(250) NOT NULL,
  `notification` text NOT NULL,
  `url` varchar(255) NOT NULL,
  `expiryDate` date NOT NULL,
  `isActive` enum('0','1') NOT NULL,
  `isMarkForDel` enum('0','1') NOT NULL,
  `IsFeatured` enum('0','1') NOT NULL,
  `tab` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_notification`
--

LOCK TABLES `tbl_notification` WRITE;
/*!40000 ALTER TABLE `tbl_notification` DISABLE KEYS */;
INSERT INTO `tbl_notification` VALUES (1,'dasd','asdad','','2022-07-31','1','0','1','0');
/*!40000 ALTER TABLE `tbl_notification` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_offers`
--

DROP TABLE IF EXISTS `tbl_offers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_offers` (
  `Id` int NOT NULL AUTO_INCREMENT,
  `category` int NOT NULL,
  `heading` varchar(500) NOT NULL,
  `image` varchar(256) NOT NULL,
  `subHeading` varchar(500) NOT NULL,
  `expiryDate` date NOT NULL,
  `url` varchar(500) NOT NULL,
  `tab` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '0',
  `isActive` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `IsFeatured` int NOT NULL DEFAULT '1',
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`Id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_offers`
--

LOCK TABLES `tbl_offers` WRITE;
/*!40000 ALTER TABLE `tbl_offers` DISABLE KEYS */;
INSERT INTO `tbl_offers` VALUES (1,1,'Amazing Discount Like Never before','1654152203.png','','2022-06-30','https://www.svezzair.com/tour-destination/india/','0','1','1','1',1,'0'),(2,1,'Dubai','1658132193.jfif','Deal Like Never Before','2022-07-30','https://www.svezz.com/tour-destination/dubai/','0','1','0','1',1,'0'),(3,1,'heading 1','1658148549.png','','2022-07-18','','1','1','0','1',1,'1');
/*!40000 ALTER TABLE `tbl_offers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_our_services`
--

DROP TABLE IF EXISTS `tbl_our_services`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_our_services` (
  `serviceId` int NOT NULL AUTO_INCREMENT,
  `serviceTitle` varchar(500) NOT NULL,
  `serviceIdentifier` varchar(500) NOT NULL,
  `serviceDescription` text NOT NULL,
  `bannerImage` varchar(256) NOT NULL,
  `metatag` text NOT NULL,
  `keyword` text NOT NULL,
  `description` text NOT NULL,
  `isActive` enum('1','0') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`serviceId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_our_services`
--

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

--
-- Table structure for table `tbl_ourpartner`
--

DROP TABLE IF EXISTS `tbl_ourpartner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_ourpartner` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(50) NOT NULL,
  `icon` varchar(40) NOT NULL,
  `url` varchar(255) NOT NULL,
  `tab` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT '0',
  `status` enum('0','1') CHARACTER SET armscii8 COLLATE armscii8_bin NOT NULL DEFAULT '1',
  `isb2b` tinyint NOT NULL DEFAULT '1',
  `description` varchar(550) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL,
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_ourpartner`
--

LOCK TABLES `tbl_ourpartner` WRITE;
/*!40000 ALTER TABLE `tbl_ourpartner` DISABLE KEYS */;
INSERT INTO `tbl_ourpartner` VALUES (1,'advantage 1','1658146531.jpg','','0','1',1,'decription here','0');
/*!40000 ALTER TABLE `tbl_ourpartner` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_pack_type`
--

DROP TABLE IF EXISTS `tbl_pack_type`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_pack_type` (
  `packType` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(100) NOT NULL,
  `label` varchar(100) DEFAULT NULL,
  `banner_image` varchar(250) DEFAULT NULL,
  `IsMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  `IsActive` enum('0','1') NOT NULL DEFAULT '1',
  `DisplayOnFooter` enum('0','1') NOT NULL DEFAULT '0',
  `displayOnHome` enum('1','0') NOT NULL DEFAULT '0',
  `image` varchar(256) NOT NULL,
  `Icon` varchar(100) DEFAULT NULL,
  `largeIcon` varchar(250) DEFAULT NULL,
  `metaTitle` varchar(256) NOT NULL,
  `metaKeyword` varchar(500) NOT NULL,
  `metaDescription` varchar(500) NOT NULL,
  PRIMARY KEY (`packType`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_pack_type`
--

LOCK TABLES `tbl_pack_type` WRITE;
/*!40000 ALTER TABLE `tbl_pack_type` DISABLE KEYS */;
INSERT INTO `tbl_pack_type` VALUES (1,'Honeymoon',NULL,'banner_1647074811.jpg','0','1','0','1','image_1662714084.png',NULL,NULL,'Honeymoon Packages- SVEZZ','Honeymoon, Honeymoon Package, Romantic tours, Indian Holiday Packages, International packages, Love tour','Book now and enjoy the Romantic Honeymoon Tour with your Love partner. Grab the offers and enjoy the benefits today.'),(2,'Adventure',NULL,'banner_1647072945.jpg','0','1','1','1','image_1662714150.png',NULL,NULL,'Why Adventure? Adventure Tours- SVEZZ','Adventure, Adventure Tours, Safari, Rock climbing, Sky diving, Nature, India adventure places, International Adventure places','Are you an Adventure lover? If, Yes Book now and get best offer to the best adventure places in India and World. Grab the offers now'),(3,'Wild Life',NULL,'banner_1609149831.jpg','0','1','1','1','image_1662714230.png',NULL,NULL,'Wildlife Safari & Adventure Packages-Travelidea','Wildlife tours, India, Adventure, Travel, Tourism, Safari, Holiday Packages','Wildlife tours with etheric Safari Ride, Lions, Rhinos, Tigers and leopard and many wonders of Nature. Book now and get exclusive offer and Price benefit'),(4,'Beach',NULL,'banner_1648024654.png','0','1','1','1','image_1662714323.jpg',NULL,NULL,'Extraordinary Beaches- Travelidea','Beach, Summer Holiday Packages, Goa, India holiday Packages, International Packages, Best Beaches','Enjoy the sunlight with fresh breeze and air on the beaches in these summer. Grab the offer now and enjoy with us'),(5,'Family',NULL,'banner_1647075649.jpg','0','1','0','1','image_1662714408.jpg',NULL,NULL,'Family Holiday Packages-SVEZZ','Family, Family tours, Group tours, Family Holiday Packages, Summer Holiday Packages','Book now to get the best offer for Summer Holidays and enjoy the benefit with your Family. Grab the benefit now.'),(6,'Sports',NULL,NULL,'0','1','0','0','image_1644411306.jpg',NULL,NULL,'','',''),(7,'Cruise',NULL,'banner_1647076318.jpg','0','1','1','1','image_1662714487.jpg',NULL,NULL,'Cruise Special Tours- Travelidea','Cruise, Cruise tours, Cruise travel, Cruise Holiday Packages, Cruise Boat','Grab the best offers now, for your exclusive cruise tours and enjoy your Holidays with Travelidea. Book now to grab the offer Now.'),(8,'Religious',NULL,'banner_1647076651.jpg','0','1','0','0','image_1647076651.jpg',NULL,NULL,'Religious Tours Special- Travelidea','Religious, Indian culture, Char dham, Temples, Church, Pilgrimage, Heritage, Kedarnath tours','Book now and enjoy the religious heritage and pilgrimage special packages around the world. Grab the offer Now  '),(9,'Hill Station',NULL,NULL,'0','1','0','0','image_1648026081.png',NULL,NULL,'Hill Station- Travelidea','Hill Station, Indian Hill station, Summer holiday packages, International Hill station, South India Hill station, Manali, Kullu, Jammu, Kashmir, Sikkim, Ladakh','Grab the offer now, and enjoy your Summers in the queens of Hills, Book now and Enjoy Summer Special Offers'),(10,'Heritage',NULL,NULL,'0','1','0','0','image_1591986815.jpg',NULL,NULL,'','',''),(11,'Thomas',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(12,'Weekend',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(17,'NYE2018',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(18,'Festivals and Events',NULL,NULL,'0','1','0','0','image_1591986838.jpg',NULL,NULL,'','',''),(19,'Romantic',NULL,'banner_1648637450.png','0','1','0','0','image_1648637450.png',NULL,NULL,'Romantic Holidays - Travelidea','romantic tour, couple tour, romantic holiday, holiday with loved one, holiday with special one, romantic packages','Looking for a holiday with your special one? Travelidea is here to plan your perfect romantic holiday. Book Our Best Deals on Romantic Packages!!'),(20,' Shopping and Nightlife',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(21,'Offbeat',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(22,'Leisure',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(23,'By Cab',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(24,'Group Tours',NULL,'banner_1648635466.jpg','0','1','0','0','image_1648635466.jpg',NULL,NULL,'Group Tour Packages - Travelidea','group tour, group travel, friends tour, family tour, group holidays','Looking for a group holiday package? No worries. Travelidea is now live with its amazing deals for group tours. Book Now and Live Every Moment With Your Best Ones. Grab Our Deal ASAP!!'),(25,' BY Volvo',NULL,NULL,'0','1','0','0','',NULL,NULL,'','',''),(26,'Circuit tour ',NULL,NULL,'0','1','0','0','',NULL,NULL,'','','');
/*!40000 ALTER TABLE `tbl_pack_type` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_popular_city`
--

DROP TABLE IF EXISTS `tbl_popular_city`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_popular_city` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `Fromcity` varchar(255) NOT NULL,
  `Tocity` varchar(200) NOT NULL,
  `source` varchar(200) DEFAULT NULL,
  `destination` varchar(200) DEFAULT NULL,
  `source_city` varchar(200) DEFAULT NULL,
  `destination_city` varchar(200) DEFAULT NULL,
  `ContSysId1` int DEFAULT NULL,
  `ContSysId2` int DEFAULT NULL,
  `price` float DEFAULT NULL,
  `popularCityType` tinyint DEFAULT '0',
  `AboutImage` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `AboutDescription` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `isb2b` enum('0','1') NOT NULL DEFAULT '0',
  `url` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `opt` int DEFAULT NULL,
  `CreateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `UpdateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_popular_city`
--

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

--
-- Table structure for table `tbl_popular_logo`
--

DROP TABLE IF EXISTS `tbl_popular_logo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_popular_logo` (
  `AboutId` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) DEFAULT NULL,
  `AboutImage` varchar(255) DEFAULT NULL,
  `CreateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `UpdateDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `status` tinyint NOT NULL DEFAULT '1',
  `isMarkForDel` tinyint NOT NULL DEFAULT '0',
  PRIMARY KEY (`AboutId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_popular_logo`
--

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

--
-- Table structure for table `tbl_promotion_category`
--

DROP TABLE IF EXISTS `tbl_promotion_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_promotion_category` (
  `prom_cat_id` int NOT NULL AUTO_INCREMENT,
  `prom_cat_one` varchar(256) NOT NULL,
  `prom_cat_two` varchar(256) NOT NULL,
  `prom_cat_three` varchar(256) NOT NULL,
  `IsActive` enum('1','0') NOT NULL,
  `IsmarkForDel` enum('1','0') NOT NULL,
  PRIMARY KEY (`prom_cat_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_promotion_category`
--

LOCK TABLES `tbl_promotion_category` WRITE;
/*!40000 ALTER TABLE `tbl_promotion_category` DISABLE KEYS */;
INSERT INTO `tbl_promotion_category` VALUES (1,'Fixed Departure Tours','Holiday Packages','Hold','1','0');
/*!40000 ALTER TABLE `tbl_promotion_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_query`
--

DROP TABLE IF EXISTS `tbl_query`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_query` (
  `id` int NOT NULL AUTO_INCREMENT,
  `email` varchar(32) NOT NULL,
  `secondEmail` varchar(50) DEFAULT NULL,
  `phone` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `mobile` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `location` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `google_map` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `otherLocations` text CHARACTER SET latin1 COLLATE latin1_swedish_ci,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `isb2b` int NOT NULL DEFAULT '0',
  `whatsapp_no` varchar(25) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `broucher` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  `image` varchar(256) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_query`
--

LOCK TABLES `tbl_query` WRITE;
/*!40000 ALTER TABLE `tbl_query` DISABLE KEYS */;
INSERT INTO `tbl_query` VALUES (1,'svezzair@svezz.com','','+91 9930301095','+91 9930301095','Svezz Air Travel Private Limited, CIN No: U74999MH2019PTC322718,701 AMBIENCE COURT Plot No 2 Sector 19D Opp Vashi RTO office,  Phase 2, Vashi, Navi Mumbai,  Maharashtra 400703','<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3770.495483319583!2d73.0091185!3d19.085907299999995!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3be7c13b3547e9f1%3A0xc5aaaed89aa60b3b!2sAmbience%20Court%2C%20Phase%202%2C%20Sector%2019E%2C%20Vashi%2C%20Navi%20Mumbai%2C%20Maharashtra%20400703!5e0!3m2!1sen!2sin!4v1658131925985!5m2!1sen!2sin\" width=\"600\" height=\"450\" style=\"border:0;\" allowfullscreen=\"\" loading=\"lazy\" referrerpolicy=\"no-referrer-when-downgrade\"></iframe>','','1',0,'+91 9930301095','',''),(2,'https://agent.svezzair.com/','','+91 9930301095','+91 9930301095','Svezz Air Travel Private Limited, CIN No: U74999MH2019PTC322718,701 AMBIENCE COURT Plot No 2 Sector 19 D Opp Vashi RTO office,  Phase 2, Sector 19D, Vashi, Navi Mumbai,  Maharashtra 400703','',NULL,'1',1,'',NULL,NULL);
/*!40000 ALTER TABLE `tbl_query` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_quick_links`
--

DROP TABLE IF EXISTS `tbl_quick_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_quick_links` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `page_description` longtext NOT NULL,
  `short_description` varchar(250) DEFAULT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_keywords` varchar(255) NOT NULL,
  `meta_description` text NOT NULL,
  `background_image` varchar(50) DEFAULT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `description` text,
  `displayOnFooter` enum('1','0') NOT NULL DEFAULT '1',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  `masterCategory` int DEFAULT NULL,
  `isb2b` int NOT NULL DEFAULT '0',
  `AgencySysId` bigint DEFAULT NULL,
  `pageurl` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=361 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_quick_links`
--

LOCK TABLES `tbl_quick_links` WRITE;
/*!40000 ALTER TABLE `tbl_quick_links` DISABLE KEYS */;
INSERT INTO `tbl_quick_links` VALUES (360,'FAMILY PACKAGE','shalviii','FAMILY PACKAGE',NULL,'FAMILY PACKAGE','FAMILY PACKAGE','FAMILY PACKAGE','360_1672384169.jpg','Activate',NULL,'1','2022-12-30 12:52:32','2022-12-30 12:52:32',NULL,0,NULL,'http://local.lts.com/tour-destination/category/family');
/*!40000 ALTER TABLE `tbl_quick_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_regions`
--

DROP TABLE IF EXISTS `tbl_regions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_regions` (
  `sid` bigint NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `label` varchar(256) NOT NULL,
  `image` varchar(256) DEFAULT NULL,
  `banner_image` varchar(256) DEFAULT NULL,
  `UpdateDate` datetime NOT NULL,
  `CreateDate` datetime DEFAULT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '0',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `Keyword` text,
  `Description` text,
  `Metatag` text,
  `countryIds` varchar(500) DEFAULT NULL,
  `countries` varchar(500) DEFAULT NULL,
  `ContinentId` varchar(256) DEFAULT NULL,
  `region_id` int DEFAULT NULL,
  `region_type` int DEFAULT NULL,
  `displayOnHeader` enum('0','1') NOT NULL DEFAULT '0',
  `region_header_content` text,
  `region_footer_content` text,
  PRIMARY KEY (`sid`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_regions`
--

LOCK TABLES `tbl_regions` WRITE;
/*!40000 ALTER TABLE `tbl_regions` DISABLE KEYS */;
INSERT INTO `tbl_regions` VALUES (1,'Indian Subcontinent','Indian Subcontinent','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(2,'Eurasia','Eurasia','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(3,'Middle East','Middle East','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(4,'Eastern Europe','Eastern Europe','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(5,'Western Europe','Western Europe','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(6,'Central Asia','Central Asia','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(7,'Central India','Central India','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(8,'Northeast India','Northeast India','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(9,'South India','South India','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(10,'West India','West India','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(11,'North India','North India','',NULL,'2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(12,'Orient','Orient','',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL),(13,'South East Asia','South East Asia','',NULL,'2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'0',NULL,NULL);
/*!40000 ALTER TABLE `tbl_regions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_salutation`
--

DROP TABLE IF EXISTS `tbl_salutation`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_salutation` (
  `id` int NOT NULL AUTO_INCREMENT,
  `Title` varchar(20) NOT NULL,
  `Gender_Id` int NOT NULL DEFAULT '0',
  `Gender` varchar(20) NOT NULL,
  `IsMarkForDel` tinyint NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_salutation`
--

LOCK TABLES `tbl_salutation` WRITE;
/*!40000 ALTER TABLE `tbl_salutation` DISABLE KEYS */;
INSERT INTO `tbl_salutation` VALUES (1,'Mr',1,'Male',0,'2020-07-27 05:07:28','2020-07-27 05:07:11'),(2,'Ms',2,'Female',0,'2020-07-27 05:07:28','2020-07-27 05:07:11'),(3,'Mrs',2,'Female',0,'2020-07-27 05:07:28','2020-07-27 05:07:11'),(4,'Mstr',1,'Male',0,'2020-07-27 05:07:28','2020-07-27 05:07:11'),(5,'Miss',2,'Female',0,'2020-07-27 05:07:28','2020-07-27 05:07:11');
/*!40000 ALTER TABLE `tbl_salutation` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_seo`
--

DROP TABLE IF EXISTS `tbl_seo`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_seo` (
  `id` int NOT NULL AUTO_INCREMENT,
  `keyword` text NOT NULL,
  `description` text NOT NULL,
  `metatag` text NOT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_seo`
--

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

--
-- Table structure for table `tbl_social_links`
--

DROP TABLE IF EXISTS `tbl_social_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_social_links` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `link` varchar(255) NOT NULL,
  `status` tinyint NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_social_links`
--

LOCK TABLES `tbl_social_links` WRITE;
/*!40000 ALTER TABLE `tbl_social_links` DISABLE KEYS */;
INSERT INTO `tbl_social_links` VALUES (1,'Facebook','https://www.facebook.com/svezzindia',1,'2021-06-26 17:39:17'),(2,'Instagram','https://www.instagram.com/svezz_air/?hl=en',1,'2021-07-18 11:46:43'),(7,'twitter','https://twitter.com/svezzindia',1,'2022-02-04 12:49:08'),(8,'Youtube','https://www.youtube.com/channel/UCOOa-7gzXpoMtve5dj7gNiA',1,'2022-03-28 11:45:01'),(9,'linkedin','https://www.linkedin.com/company/svezzindia/',1,'2022-08-08 15:39:33'),(10,'pinterest','https://in.pinterest.com/svezzindia/',1,'2022-08-08 15:40:07');
/*!40000 ALTER TABLE `tbl_social_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_states`
--

DROP TABLE IF EXISTS `tbl_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_states` (
  `StateSysId` int NOT NULL AUTO_INCREMENT,
  `title` varchar(256) NOT NULL,
  `seotitle` varchar(256) NOT NULL,
  `label` varchar(256) NOT NULL,
  `startingPrice` varchar(256) DEFAULT NULL,
  `DestDescription` varchar(500) DEFAULT NULL,
  `stateId` int NOT NULL,
  `image` varchar(256) DEFAULT NULL,
  `region_id` int DEFAULT NULL,
  `CountryIds` varchar(256) DEFAULT NULL,
  `Countries` varchar(256) DEFAULT NULL,
  `UpdateDate` datetime NOT NULL,
  `CreateDate` datetime NOT NULL,
  `IsActive` enum('1','0') NOT NULL DEFAULT '1',
  `IsMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  `cityData` varchar(256) DEFAULT NULL,
  `description` text,
  `otherDescription` text,
  `similarDestinations` varchar(500) DEFAULT NULL,
  `topTravelBlog` text,
  `metaTitle` varchar(500) DEFAULT NULL,
  `metaKeyword` text,
  `metaDescription` text,
  `meta_header` varchar(2000) DEFAULT NULL,
  `meta_footer` varchar(2000) DEFAULT NULL,
  `FAQ` text NOT NULL,
  `bannerImage` varchar(256) DEFAULT NULL,
  `popularPackages` varchar(500) DEFAULT NULL,
  `displayOnHeader` enum('1','0') NOT NULL DEFAULT '0',
  `displayOnHome` enum('0','1') NOT NULL DEFAULT '0',
  `displayOnFooter` enum('0','1') NOT NULL DEFAULT '0',
  `destinationImage` varchar(256) DEFAULT NULL,
  `packageListMetaTitle` varchar(500) DEFAULT NULL,
  `packageListMetaKeyword` varchar(500) DEFAULT NULL,
  `packageListMetaDescription` varchar(500) DEFAULT NULL,
  `package_list_header_content` text,
  `package_list_footer_content` text,
  PRIMARY KEY (`StateSysId`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_states`
--

LOCK TABLES `tbl_states` WRITE;
/*!40000 ALTER TABLE `tbl_states` DISABLE KEYS */;
INSERT INTO `tbl_states` VALUES (1,'Ladakh','ladakh','Ladakh (India)',NULL,NULL,60,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(2,'Meghalaya','meghalaya','Meghalaya (India)',NULL,NULL,40,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(3,'Arunachal Pradesh','arunachal-pradesh','Arunachal Pradesh (India)',NULL,NULL,38,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(4,'Gujarat','gujarat','Gujarat (India)',NULL,NULL,15,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(5,'Madhya Pradesh','madhya-pradesh','Madhya Pradesh (India)',NULL,NULL,14,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(6,'Jammu and kashmir','jammu-and-kashmir','Jammu and kashmir (India)',NULL,NULL,13,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(7,'Assam','assam','Assam (India)',NULL,NULL,10,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(8,'Uttar Pradesh','uttar-pradesh','Uttar Pradesh (India)',NULL,NULL,6,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(9,'Delhi','delhi','Delhi (India)',NULL,NULL,4,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(10,'Kerala','kerala','Kerala (India)',NULL,NULL,3,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(11,'Rajasthan','rajasthan','Rajasthan (India)',NULL,NULL,2,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(12,'Himachal Pradesh','himachal-pradesh','Himachal Pradesh (India)',NULL,NULL,1,NULL,NULL,'101','India','2022-05-12 16:28:45','2022-05-12 16:28:45','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(13,'Chandigarh','chandigarh','Chandigarh (India)',NULL,NULL,21,NULL,NULL,'101','India','2022-05-24 12:38:46','2022-05-24 12:38:46','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(14,'Sikkim','sikkim','Sikkim (India)',NULL,NULL,23,NULL,NULL,'101','India','2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(15,'Bihar','bihar','Bihar (India)',NULL,NULL,22,NULL,NULL,'101','India','2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(16,'Andaman and Nicobar Islands','andaman-and-nicobar-islands','Andaman and Nicobar Islands (India)',NULL,NULL,20,NULL,NULL,'101','India','2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,'<p><br></p>',NULL,NULL,NULL,'','','','<script></script>','<script></script>','',NULL,NULL,'0','1','0',NULL,NULL,NULL,NULL,NULL,NULL),(17,'West Bengal','west-bengal','West Bengal (India)',NULL,NULL,12,NULL,NULL,'101','India','2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(18,'Uttarakhand','uttarakhand','Uttarakhand (India)',NULL,NULL,9,NULL,NULL,'101','India','2022-05-25 16:00:52','2022-05-25 16:00:52','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(19,'Punjab','punjab','Punjab (India)',NULL,NULL,18,NULL,NULL,'101','India','2022-07-18 13:54:26','2022-07-18 13:54:26','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL),(20,'Maharashtra','maharashtra','Maharashtra (India)',NULL,NULL,5,NULL,NULL,'101','India','2022-08-30 17:26:01','2022-08-30 17:26:01','1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,'0','0','0',NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `tbl_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_static_pages`
--

DROP TABLE IF EXISTS `tbl_static_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_static_pages` (
  `sid` int unsigned NOT NULL AUTO_INCREMENT,
  `page_title` varchar(255) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `page_description` longtext NOT NULL,
  `meta_title` varchar(255) NOT NULL,
  `meta_keywords` varchar(255) NOT NULL,
  `meta_description` text NOT NULL,
  `background_image` varchar(50) NOT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `isb2b` int NOT NULL DEFAULT '0',
  `displayOnFooter` enum('1','0') NOT NULL DEFAULT '1',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  `masterCategory` int NOT NULL,
  `pageurl` varchar(250) DEFAULT NULL,
  `displayOnLegal` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`sid`),
  KEY `parentId` (`sid`),
  KEY `headerDisplay` (`status`),
  KEY `parentIde` (`status`),
  KEY `parentIdother` (`sid`,`status`)
) ENGINE=InnoDB AUTO_INCREMENT=207 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_static_pages`
--

LOCK TABLES `tbl_static_pages` WRITE;
/*!40000 ALTER TABLE `tbl_static_pages` DISABLE KEYS */;
INSERT INTO `tbl_static_pages` VALUES (161,'ABOUT US','about-us','<p class=\"MsoNormal\"><font face=\"Calibri, sans-serif\"><span style=\"font-size: 14.6667px;\"><b>\"SVEZZ\" is the one-stop destination for all of your hassle-free trips and travels. The sole aim of our Company is to give the best to our customers, i.e, affordable tickets, stress free experience, and customer friendly services. Here, in \"SVEZZ\", we offer the best flights, hotels and holiday prices because of our strong multinational inventory back-end.</b></span></font><br></p><p class=\"MsoNormal\" style=\"margin: 0cm 0cm 10pt; line-height: 16.8667px;\"><b style=\"font-family: Calibri, sans-serif; font-size: 11pt;\"><span lang=\"EN-US\">&nbsp; &nbsp; &nbsp;&nbsp;<o:p></o:p></span></b><font face=\"Calibri, sans-serif\"><span style=\"font-size: 14.6667px;\"><b>This Company was established by its founder with the bright vision of making travelling an enjoyable adventure, mess-free experience.</b></span></font></p><p class=\"MsoNormal\" style=\"margin: 0cm 0cm 10pt; line-height: 16.8667px; text-indent: 22.1pt;\"><span lang=\"EN-US\" style=\"\"><font face=\"Calibri, sans-serif\"><span style=\"font-size: 14.6667px;\"><b>\"SVEZZ\" is one of the fastest growing travel companies providing many novelty travel ideas, international holiday packages, adventurous journeys, best hotels, popular destinations and much more. We work on a variety of segments: B2B, B2C etc.</b></span></font><br><br></span><span style=\"font-family: Arial, &quot;sans-serif&quot;; font-size: 12px; text-indent: 0px; background-color: rgb(250, 250, 250);\"><b>We offer an extensive inventory of travel services: Flights (Coupon, API, Corporate, SME and other special fares), Hotels (Pre-Purchased, Contractual and regular deals), Transfers, Charters, Event Management, Cruises and many more.</b></span><b style=\"font-family: Calibri, sans-serif; font-size: 11pt;\"><span lang=\"EN-US\"><br><o:p></o:p></span></b></p><p class=\"MsoNormal\" style=\"margin: 0cm 0cm 10pt; line-height: 16.8667px; text-indent: 22.1pt;\"><font face=\"Calibri, sans-serif\"><span style=\"font-size: 14.6667px;\"><b>We truly hope that the SVEZZ will always be there to assist you in the best possible way so that your trips and holidays be more fun. The tagline of our website is \"From Sandy Beaches to Snowy Mountains\". Our tagline sums up the aim and the vision of travel.</b></span></font><br></p><p class=\"MsoNormal\" style=\"margin-right:39.4pt;line-height:86%\"><br></p><p class=\"MsoNormal\" style=\"margin-right:39.4pt;line-height:86%\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;mso-bidi-font-family:&quot;Times New Roman&quot;;\r\nmso-bidi-theme-font:minor-bidi\"><o:p></o:p></span></p>','Why Svezz is one of the Best',', Flights, Hotels','Svezz, is the fastest Growing startup in Travel Industury, and has been awarded by silicon India.','161_1657805163.jpeg','Activate',0,'1','2018-01-12 00:00:00','2022-07-20 17:28:01',0,NULL,'0'),(162,'TERMS & CONDITIONS','terms-conditions','<h1 style=\"margin:0in;margin-bottom:.0001pt\"><span lang=\"EN-IN\" style=\"font-size:\r\n15.0pt;font-family:Oswald;color:#222222;text-transform:uppercase;font-weight:\r\nnormal\">TERMS OF USE<o:p></o:p></span></h1><p style=\"margin-top:0in;margin-right:3.75pt;margin-bottom:0in;margin-left:\r\n3.75pt;margin-bottom:.0001pt\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;\r\ncolor:#222222\">These terms and conditions are applicable to the usage of the www.svezz.com website (\"SVEZZ\") by you. SVEZZ shall provide you (“User”) travel-related information, travel leads, pricing, availability and reservations for airlines, hotels, railway, holiday packages, bus and car rentals across cities and rural areas throughout India and abroad (“Service/s or SVEZZ Services”). These Services may be availed by the User in India or outside India at any time during the year as is offered by various third party vendors like airlines, hotels, bus operators etc.(\"Service Providers\" or \"Vendors\"). The website is also for your education and information and is also used by us to obtain feedback with a view to providing information and services with respect to the leisure industry.<br>\r\n<br>\r\nBy accessing this site you agree to the following terms. In case you do not\r\nagree to the following terms please do not read or refer to the material on any\r\nof our pages.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Opening an Account</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nIn order to become able to use the SVEZZ, you must complete in full an application form on the Website. As part of the application, you will be asked to provide us with a Username and Password. This username and password will be used by you when using our services.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Usernames/Passwords</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nYou are solely responsible for the confidentiality of your username, and password. In the event you have reason to believe your account, username and/or password is being used in an unauthorized manner, you agree to contact us promptly so that the appropriate modifications can be made to your account. Please be aware that information will be sent to your email address that you provided to us at the time of sign up.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Agreement to receive Mail</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nYou hereby consent to the receipt of physical &amp; electronic communication from us.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Contributions on website</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nAny activity you do on the website (Comments, Reviews, and Questions etc) becomes property of SVEZZ. We reserve the right to modify or update that information suitably.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Viruses and Contamination of System</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nSVEZZ is neither responsible nor liable for any viruses or other contamination of your system, nor for any delays, inaccuracies, errors or omissions arising out of your use of this site or with respect to the material contained on this site.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Linked Sites</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nAny linked websites in our website are not under our control and we are not responsible for the contents of any linked site or any link contained in a linked site, or any changes or updates to such sites. We are providing these links to you only as a convenience, and the inclusion of any link does not imply endorsement by us of the site.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Content and Intellectual property rights</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nAll content on the website including but not limited to icons, buttons, logos, text etc, as well as any and all trademarks, whether registered or not constitute the exclusive intellectual property of the SVEZZ and is protected under Indian law. You may not selectively download portions of the website without retaining the copyright notices You may download material from the website only for your own personal use and for no commercial purposes whatsoever. Any and all information that is submitted by you including but not limited to comments, feedback etc is the sole property of SVEZZ which may be used in any manner the SVEZZ deems fit. We provide all content to the best of our knowledge and we are not responsible for changes to third party content.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Limitation of Liability</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nSVEZZ makes no warranty that this site will meet your requirements, the service or this site will be uninterrupted, the results that may be obtained from the use of this site will be accurate or reliable, any information or other material obtained by you through this site will meet your expectations and any errors in this site will be corrected.<br>\r\n<br>\r\nWe shall not be liable to you for any special, consequential, incidental, and exemplary or punitive damages, or loss of profit or revenues. We are also not liable under any circumstances for damages arising out or related in any way to your inability to access, or your difficulty in accessing, the website. We shall not be liable under any circumstances for damages arising out of or in any way related to products, services and/or information offered or provided by third-party vendors accessed through the website or by any other means. All content and information provided by SVEZZ either through the website or otherwise is provided to you without warranty of any kind either expressed or implied, with regard to the merchantability, technical compatibility or fitness for a particular purpose with regard to any service, products or material provided by or through the website.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Indemnity</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nYou agree to indemnify, defend and hold harmless SVEZZ, and its officers, employees, agents, and any third party information providers to the Website, from and against all claims, actions, proceedings, expenses, damages and liabilities, which are the result of, or are in any way related to your use of the website.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Governing Law</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nThese terms and conditions shall be governed by Indian law and the courts at Mumbai shall have exclusive jurisdiction in all matters arising out of or in connection with the use of the website by you.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Privacy Policy</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nPlease refer to our Privacy Policy on the website.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Charges &amp; Pricing</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nSVEZZ does not charge any fees for browsing. SVEZZ is ONLY a ticketing/booking agent for various types of services. For example, SVEZZ does not operate bus services or run flights of its own etc. In order to provide a comprehensive choice of bus operators or flights etc, departure times and prices to customers, it has tied up with many Vendors. SVEZZ\'s advice to customers is to choose the Vendor they are aware of and whose service they are comfortable with. SVEZZ is not liable for any Discrepancy / Deficiency in service by the Service Providers / Vendors of any service type.<br>\r\n<br>\r\nUsers can create free membership accounts on SVEZZ for service booking. From time to time, SVEZZ at its sole dsicretion will add new services, change existing services and remove some services as well.<br>\r\n<br>\r\nUsers shall be solely responsible for compliance of all applicable laws for making payments to SVEZZ. GST Credit (if applicable) will be provided directly by the Vendor to the User and SVEZZ will not be responsible for non-receivable of the same.<br>\r\n<br>\r\nWhile SVEZZ strives for quality products and services with accurate pricing information, typographical and other errors may occur. In the event the Service is listed at an incorrect price or with incorrect service information due to an error, SVEZZ may at its discretion contact the User for instructions or cancel User\'s booking and notify User of such Cancel.<br>\r\n<br>\r\nSVEZZ will have the right to rectify the price of the Service and contact User for further instructions via e-mail address provided by User at the time of registration, or cancel the booking and notify User of such cancellation. If SVEZZ cancels the order after the payment has been processed, the said amount will be remitted to User’s account from which the payment was made.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Payment Options</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nSVEZZ Supports various Payment Methods like Credit and Debit Cards (Visa, Mastercard, Rupay, Amex, Dinners etc), Internet Banking (around 100 Indian Banks), Wallets, etc through an online payment gateway system. SVEZZ and the associated one or more payment gateway makes full effort to fulfill information security requirement and uses the latest encryption technology to protect and safeguard the Users Payment Methods and their details.<o:p></o:p></span></p><p style=\"margin:0in;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">&nbsp;</span></p><p style=\"margin-top:0in;margin-right:3.75pt;margin-bottom:0in;margin-left:\r\n3.75pt;margin-bottom:.0001pt\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;\r\ncolor:#222222\">All Payments for services purchased via SVEZZ by all types of users (travellers or agents or any other type) have to be pre-paid. Incase the credit is extended/provided to any type of user, then it needs to be paid within the next working day. If the user misses his payment timelines, then SVEZZ has the right to cancel the purchased service or any other purchased services of the same user or its sister concerns to recover the money and penalty amount decided by SVEZZ (up to 100% of the default amount).<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Gateway Charges</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nPlease note that SVEZZ cannot control any fees or conversion rates that may be charged to User by their Banks or Financial Institution related to such a transaction and SVEZZ disclaims all liabilities in this regard.<o:p></o:p></span></p><p style=\"margin:0in;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">&nbsp;<o:p></o:p></span></p><p style=\"margin-top:0in;margin-right:3.75pt;margin-bottom:0in;margin-left:\r\n3.75pt;margin-bottom:.0001pt\"><span lang=\"EN-IN\" style=\"\"><font color=\"#222222\" face=\"Oswald\"><b>SVEZZ Travel Special Fares</b></font><br><font color=\"#222222\" face=\"Arial, sans-serif\">There are three types of SVEZZ Special Fares</font><br></span></p><ul style=\"margin-top:0in\" type=\"disc\">\r\n <li class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><font color=\"#222222\" face=\"Oswald\"><b>SVEZZ Special ZERO Reschedule Charges</b></font><br></li>\r\n</ul><ul style=\"margin-top:0in\" type=\"disc\">\r\n <ul style=\"margin-top:0in\" type=\"circle\">\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Reschedule request needs to reach SVEZZ at least 36 hours for domestic flights and 72 hours for international flights before the original departure time. If the request does not come in this timeframe, then normal Airlines and SVEZZ Travel Reschedule charges will be charged. However, Customer can also directly work with the airlines when the departure time is less than the above-mentioned timeframe. Any charges imposed by the airlines in this regard, will need to be borne by the customer itself.<o:p></o:p></span></li>\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Exact flight details of the new flight need to be provided for Reschedule request - Only one option will be handled for reschedule request.<o:p></o:p></span></li>\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">SVEZZ takes 4 to 8 hours to respond during working hours for re-schedule request and is totally dependent on seat availability and airlines response. In case the airlines do not provide timely or no response, SVEZZ Travel cannot be held responsible for the same.<o:p></o:p></span></li>\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">SVEZZ may charge certain service fees for the service rendered.<o:p></o:p></span></li>\r\n </ul>\r\n <li class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><font color=\"#222222\" face=\"Oswald\"><b>SVEZZ Special ZERO Reschedule, 50% Cancellation Fees, Free Meal</b></font><br></li>\r\n <ul style=\"margin-top:0in\" type=\"circle\">\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Reschedule details covered under SVEZZ Special ZERO Reschedule Charges<o:p></o:p></span></li>\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Airlines &amp; SVEZZ Cancellation Charges will be charged at 50% For e.g. if Airlines cancellation charges were Rs 3000 and SVEZZ Charges Rs 499, then in this flight, the Airlines Cancellation Charges will be Rs 1500 and SVEZZ Charges as Rs 249. All Cancellation requests needs to reach SVEZZ before 36 hours in domestic flights and 72 hours for international flights before the original departure time. If the request does not come in this timeframe, then normal Airlines and SVEZZ Cancellation charges will be charged. However, Customer can also directly work with the airlines when the departure time is less than the above-mentioned timeframe. Any charges imposed by the airlines in this regard, will need to be borne by the customer itself.<o:p></o:p></span></li>\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Free Meal is supposed to be provided by the airlines. However, if for any reason, airlines do not provide the Free MEAL, no compensation will be provided by SVEZZ. MEAL Selection needs to be done by the customer on the airline’s website. SVEZZ will not choose any MEAL type on customer\'s behalf.<o:p></o:p></span></li>\r\n </ul>\r\n <li class=\"MsoNormal\" style=\"margin-bottom: 0.0001pt; line-height: normal;\"><font color=\"#222222\" face=\"Oswald\"><b>SVEZZ Special ZERO Cancellation / Reschedule Fees, Free Meal</b></font><br></li>\r\n <ul style=\"margin-top:0in\" type=\"circle\">\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Cancellation requests needs to reach SVEZZ at least 36 hours for domestic flights and 72 hours for international flights before the original departure time. If the request does not come in this timeframe, then normal/standard Airlines and SVEZZ Cancellation charges will be charged.<o:p></o:p></span></li>\r\n  <li class=\"MsoNormal\" style=\"color:#222222;margin-bottom:0in;margin-bottom:\r\n      .0001pt;line-height:normal;mso-list:l0 level2 lfo2;tab-stops:list 1.0in\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;\">Please read above for Rescheduling of Flights &amp; Free MEAL<o:p></o:p></span></li>\r\n </ul>\r\n</ul><p style=\"margin:0in;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">&nbsp;<o:p></o:p></span></p><p style=\"margin-top:0in;margin-right:3.75pt;margin-bottom:0in;margin-left:\r\n3.75pt;margin-bottom:.0001pt;text-align:justify\"><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:Arial;color:#222222\">Refund,\r\nCancellation &amp; Re-scheduling Policy</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><o:p></o:p></span></p><p style=\"margin-top:0in;margin-right:3.75pt;margin-bottom:0in;margin-left:\r\n3.75pt;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">In case of no-show or unutilized bookings, User shall be required to make requests for any valid and applicable refunds, as per Vendors’ policies or within 15 days from the travel date (whichever is earlier). No refund would be payable for any requests made after the expiry of 30 days of travel date / check-in as aforementioned and all unclaimed amounts for such no-show or unutilized bookings shall accordingly be deemed to have been forfeited.<br>\r\n<br>\r\nThe refund shall be processed within 15-20 working days from the date of the cancellation request, after receiving back-to-back refund from the concerned Vendor. Payment will be refunded back into the same original payment instrument like the same credit card or bank account from which it was paid for the traveller. In case of Travel Agent (B2B Booking), refund or recharge or upload of any type is always credited in their agents SVEZZ’s account balance. In case of agents account closure, the agent is supposed to consume its balance or clear their dues (if any). No money transfer will be done to travel agents bank account, in any circumstances.<br>\r\n<br>\r\nIn case User avails to book any of the Services offered by the Vendor and is, thereafter, not contactable on the contact details provided, then the tour/travel reservation selected by User will stand cancelled and SVEZZ or the Vendor would not be liable for any charges/expenses incurred by User, either directly or indirectly in this regard.<br>\r\n<br>\r\nAny Refund Claims arising due to cancellation / delay of flight by the Vendor shall be subject to SVEZZ receiving the refund from the Vendor. In the Event Vendor does not refund the amount to the SVEZZ, SVEZZ shall not be held liable for the same.<br>\r\n<br>\r\nCancellation/Re-schedule of Flight Ticket up to 24 hours will be dealt by SVEZZ. Less than 24 hours, the USER should cancel it directly with the airlines and inform SVEZZ for the refund processing.<br>\r\n<br>\r\nSVEZZ shall charge a cancellation fee - varying from time to time and transaction to transaction and type of service. This fees will be over and above the Airlines Cancellation Fees. Similarly for other service like Bus Tickets etc., SVEZZ will add its own cancellation fees over the Vendor\'s cancellation Fees.<br>\r\n<br>\r\nCancellation Policy is defined and governed by the Vendor and SVEZZ will not be able to do any changes around it. Refund will only be processed once the USER informs SVEZZ.<br>\r\n<br>\r\nPartial Cancellation may or may not be allowed - This will depend on the Vendor\'s Cancellation Policy.<o:p></o:p></span></p><p style=\"margin-top:0in;margin-right:3.75pt;margin-bottom:0in;margin-left:\r\n3.75pt;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nRe-scheduling of Services (For e.g. Date Change in Flights) will incur Fare Difference, Airlines Re-schedule/Penalty Charges and SVEZZ Re-schedule Charges.<br>\r\n<br>\r\nDomestic and International Booking/Cancellation/Re-schedule will have different amount of fees for different Services.<br>\r\n<br>\r\nName Change, Title Change, Age Change, Sector Change etc is generally not allowed by Vendors - Any such changes or more (not covered here) will not be entertained by SVEZZ. The User need to work directly with the Vendor and SVEZZ will not be responsible / liable in any form.<br>\r\n<br>\r\nOnce a confirmed ticket/service is booked/generated, Convenience Fees is not refundable under any circumstances. If you are booking a special discounted return fare then both sectors have to be cancelled together.<br>\r\n<br>\r\nThe USER will be solely responsible for the Visa, Passport or any other requirement for the travel. SVEZZ will not be responsible for any inadequacy of any form.<br>\r\n<br>\r\nCheck the Baggage Allowance – Cabin and Check-in – No Free Baggage Allowance for Infants. Meals, Seats, Special Requests are not guaranteed. USER needs to check this with Vendor directly.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Booking Confirmation</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nUser should not take any action based on information on the Marketplace until User has received a confirmation of User’s transaction. In case of confirmations to be received by email, if User does not receive any confirmation of User’s purchase/transaction within the stipulated time period, User may first look into \"spam\" or \"junk\" folder to verify that it has not been misdirected, and if still not found, please contact SVEZZ\'s call centre or login into the User Account section of SVEZZ.<br>\r\n<br>\r\nIn case a booking confirmation e-mail or SMS gets delayed or fails because of technical reasons or as a result of incorrect e-mail ID / phone number provided by the user etc, a ticket will be considered \'booked\' as long as the ticket shows up on the confirmation page or in the User Account section of SVEZZ.<br>\r\n<br>\r\nThe total price payable will be displayed to the User before making payment to the Vendor. Users are hereby informed that in case of a booking request being rejected by a Vendor (i.e. not confirmed by the applicable Vendor), any amounts collected by SVEZZ for such booking will be refunded to the User’s Account used for making the payments.<o:p></o:p></span></p><p style=\"margin:0in;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">&nbsp;<o:p></o:p></span></p><p style=\"margin:3.75pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:\r\n&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">Offer Fares / Series Fares / Group Fare or any other similar fares are non-refundable, non-changeable under any circumstances. In these types of bookings, more than one (nonrelated) passenger is added in the same pre-purchased PNR. Names in this type of fares are updated between 8pm and 11pm, one night before the travel date. Hence, web check-in needs to be done by the passenger or the travel agency once the names are updated. Do note Airlines counter are not very friendly at some airports and machines may / may not operate. Also, airlines may levy service charges for issuing boarding pass from the airport counter. Since these are collective passengers’ tickets, normal web check-in, meal selection, extra baggage purchase, wheel chair addition, GST or any other special services cannot be added in these tickets. Lastly in these types of fares, our fare rules supersede airlines and hence no refund requests are entertained unless flight is cancelled or flight date/timing is changed by more than 6 hours in domestic flights and over 24 hours in international flights.<o:p></o:p></span></p><p style=\"margin:0in;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">&nbsp;<o:p></o:p></span></p><p style=\"margin:3.75pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:\r\n&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">Name changes (minor or major) in any form cannot be done in these fares. In this type of fares (Offer Fares / Series Fares / Group Fare or any other similar fares), you are not supposed to contact airlines directly or any other body for any reason. SVEZZ should be your only point of contact for any purpose and the decision of SVEZZ will be final. In case you contact airlines or any other body, your account might be disabled and your balance will be forfeited.<o:p></o:p></span></p><p style=\"margin:0in;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">&nbsp;<o:p></o:p></span></p><p style=\"margin:3.75pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:\r\n&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">In case of schedule change and airlines provides multiple options, agent/customer has the choice to choose among the given options only within the given time. However, once names are updated in the revised itinerary, thereafter no changes will be accepted of any type. Also note if the agent/customer does not respond in the given time then Airlines / SVEZZ can choose any option.<o:p></o:p></span></p><p style=\"margin:0in;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\"><strong><span lang=\"EN-IN\" style=\"font-size:13.5pt;line-height:\r\n107%;font-family:Oswald;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:\r\nminor-bidi;color:#222222\">Offline Booking</span></strong><span lang=\"EN-IN\" style=\"font-size:13.5pt;line-height:107%;font-family:Oswald;mso-bidi-font-family:\r\n&quot;Times New Roman&quot;;color:#222222\"><o:p></o:p></span></p><p style=\"margin-top:0in;margin-right:3.75pt;margin-bottom:0in;margin-left:\r\n3.75pt;margin-bottom:.0001pt;text-align:justify\"><font color=\"#222222\" face=\"Arial, sans-serif\">SVEZZ avoids and do not recommend travel agents for doing offline booking with us. However, if the travel agents insist, SVEZZ can do the booking on behalf of the travel agent as a courtesy. Having said that SVEZZ will not be responsible for any type of mistake like date, origin city, destination city, itinerary details, pricing, name &amp; details of the passenger etc. Travel Agent will be responsible for any mistake or issue in offline booking from SVEZZ. SVEZZ on any circumstances will not bear any expense or refund any part of the booking amount.</font><br></p><p style=\"margin:0in;margin-bottom:.0001pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">&nbsp;<o:p></o:p></span></p><p style=\"margin-top:0in;margin-right:3.75pt;margin-bottom:0in;margin-left:\r\n3.75pt;margin-bottom:.0001pt;text-align:justify\"><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:Arial;color:#222222\">Promo Codes</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nSVEZZ may generate promotion codes from time to time which may be availed on the site for discount, if applicable. SVEZZ at its discretion, could add new promo codes, change or withdraw existing ones without any prior notice. In case of any dispute with any party, SVEZZ\'s decision will be binding and final.<br>\r\n<br>\r\nWhen USER registers with SVEZZ, SVEZZ or any of its partners/affiliate/group companies/partners/vendors may contact User from time to time to provide information/offers of services that SVEZZ or such other group companies believe may benefit User.<br>\r\n<br>\r\n</span><strong><span lang=\"EN-IN\" style=\"font-family:Oswald;mso-bidi-font-family:\r\nArial;color:#222222\">Users Responsibility &amp; Liability</span></strong><span lang=\"EN-IN\" style=\"font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\"><br>\r\nUser shall be responsible for their own actions in utilizing the Services purchased by User, and SVEZZ shall not be liable for any such action. SVEZZ is only providing a platform for communication and it is agreed that the contract for Service shall be a strictly bipartite contract between the Vendor and User.<br>\r\n<br>\r\nUser represents that User is of legal age to form a binding contract with SVEZZ and is not a person barred from receiving Services under the laws as applicable in India.<br>\r\n<br>\r\nAny references to a Vendor being \"verified\" (or similar language) only indicate that the Vendor has completed a reasonable verification process. Any such description is not an endorsement, certification or guarantee by SVEZZ about any Vendor, including of the Vendor\'s identity and credibility. SVEZZ therefore recommends that you always exercise due diligence and care when deciding whether to avail services from a Vendor, or while having any other interaction with them.<br>\r\n<br>\r\nUpon receiving User’s complaint, SVEZZ shall inform the relevant Vendor of such complaint and request for an explanation. Users are required to refrain from raising frivolous and baseless complaints. User expressly acknowledges that the Vendor providing the deficient Service will be solely responsible to User for any claims that User may have in relation to such defective service and SVEZZ shall not in any manner be held liable for the same.<br>\r\n<br>\r\nUnless due to User’s negligence, in the event the Vendor fails to complete a delivery of any Service, User acknowledges that the Vendor will be liable to make any applicable refunds or payments. User agrees that SVEZZ will not be held liable for failure of the Vendor to make available any Service therein.<br>\r\n<br>\r\nSVEZZ reserves the right at all times to disclose any information as is necessary to satisfy or comply with any applicable law, regulation, legal process or governmental request, or to edit, refuse to post or to remove any information or materials, in whole or in part, in SVEZZ\'s sole discretion.<br>\r\n<br>\r\nIn no event shall SVEZZ, its officers, directors, employees, partners or vendors be liable to User, the Vendor or any third party for any special, incidental, indirect, consequential or punitive damages whatsoever, including those resulting from loss of use, data or profits, whether or not foreseeable or whether or not SVEZZ has been advised of the possibility of such damages, or based on any theory of liability, including breach of contract or warranty, negligence or other tortuous action, or any other claim arising out of or in connection with User’s purchase of the services herein.<br>\r\n<br>\r\nSVEZZ shall not assume any liability for the non-availability of the Services where required or any action or inaction that might be taken by the Vendor.<o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p style=\"margin:3.75pt;text-align:justify\"><span lang=\"EN-IN\" style=\"font-family:\r\n&quot;Arial&quot;,&quot;sans-serif&quot;;color:#222222\">ALL LINKED TERMS AND CONDITIONS HEREUNDER\r\nARE ASSUMED TO BE READ, UNDERSTOOD AND AGREED BY USER.<o:p></o:p></span></p>','','','','162_1647516077.png','Activate',0,'1','2018-01-12 00:00:00','2022-07-20 14:51:56',0,NULL,'0'),(167,'PRIVACY POLICY','privacy-policy','<p class=\"MsoNormal\"><b style=\"font-family: Verdana, &quot;sans-serif&quot;; font-size: 9pt;\"><br></b></p><p class=\"MsoNormal\"><b style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Privacy Policy</b><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><font face=\"Verdana, sans-serif\">We respect and are committed towards protecting your privacy. Publishing, selling or renting any personal data or information to any third party, without your consent, is against our ethics.</font><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">The privacy\r\npractices of this statement apply to our services available under the domain\r\nand subdomains of the Site. By visiting this Site you agree to be bound by the\r\nterms and conditions of this privacy policy. If you do not agree, please do not\r\nuse or access our site.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">This\r\nprivacy policy does not apply to sites maintained by other companies or\r\norganizations to which we link and we are not responsible for any personal\r\ninformation you submit to third parties via our website. Please ensure that you\r\nread the privacy policy of such other companies or organizations before\r\nsubmitting your details.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">This\r\nprivacy policy describes the information, as part of the normal operation of\r\nour services, we collect from you and what may happen to that information. This\r\npolicy is inter alia formulated and displayed, to inform you about our\r\ninformation collection/retention policies and practices so that you can make an\r\ninformed decision, in relation to the sharing of your personal information with\r\nus. By accepting the privacy policy and the user agreement or the use of the\r\nsite in general, you give your consent to our use and disclosure of your\r\npersonal information in accordance with this privacy policy. This Privacy\r\nPolicy is incorporated into and subject to the terms of the User Agreement.\r\nThis privacy policy is effective upon acceptance of access by you to the site.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\"><b><br></b></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\"><b>Privacy\r\nGuarantee</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><font face=\"Verdana, sans-serif\">We agree that we will not sell or rent your personal information to third parties for their marketing purposes without your explicit consent. From time to time, we may reveal general statistical information about our Site and visitors, such as number of visitors, number and type of goods and services purchased, etc. Only those of our employees who need access to your information in order to perform their duties, are allowed such access. Any employee who violates our privacy and/or security policies is subjected to disciplinary action, including possible termination and civil and/or criminal prosecution.</font><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">&nbsp;<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\"><b>Information\r\nWe Collect</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><font face=\"Verdana, sans-serif\">The Personal Information is used for two general purposes: to process your order, and to provide you with the best possible services. Unless otherwise stated explicitly, this policy applies to personal information as disclosed on any of the media.</font><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><font face=\"Verdana, sans-serif\">In furtherance of the confidentiality with which we treat Personal Information, we have put in place appropriate physical, electronic, and managerial procedures to safeguard and secure the information we collect online. We use data collection devices such as \"cookies\" on certain pages of the Site to help and analyse our web page flow, measure promotional effectiveness, and promote trust and safety. \"Cookies\" are small files placed on your hard drive that assist us in providing our services. We offer certain features that are only available through the use of a \"cookie\". Cookies can also help us provide information that is targeted to your interests. Most cookies are \"session cookies,\" which means that they are automatically deleted from your hard drive at the end of a session. You are always free to decline our cookies if your browser permits. Additionally, you may encounter \"cookies\" or other similar devices on certain pages of the Site that are placed by third parties. For example, if you view a web page created by a user, there may be a \"cookie\" placed within that web page. We do not control the use of cookies by third parties.</font><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><font face=\"Verdana, sans-serif\">You acknowledge that you are disclosing Personal Information voluntarily. We identify and use your IP address to help diagnose problems with our server, and to administer our website. Your IP address is also used to help identify you and to gather broad demographic information.</font><br></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\"><b><br></b></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\"><b>COOKIE\r\nPOLICY</b><o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><font face=\"Verdana, sans-serif\">www.svezz.com</font><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">&nbsp;operates a strict privacy policy and we are committed to being\r\ntransparent about how we use cookies on our website.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Why are\r\ncookies important?<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Cookies\r\nhelp you make your online experience more efficient and relevant to your\r\ninterests. For instance, they are used to remember your preferences on sites\r\nyou visit often, to remember your user ID and the contents of your shopping\r\nbaskets, and to help you navigate between pages efficiently.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">What is a\r\nCookie?<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">A cookie\r\nis a small file, or files on your computer, phone, or other device with a\r\nbrowser to save snippets of text for reference by the website you are visiting.\r\nAll cookies have expiration dates in them that determine how long they stay in\r\nyour browser:<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Session\r\ncookies - these are temporary cookies that expire (and are automatically\r\nerased) whenever you close your browser.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Persistent\r\ncookies - these usually have an expiration date and so stay in your browser\r\nuntil they expire, or until you manually delete them. For example we use\r\npersistent cookies to better understand usage patterns so that we can improve\r\nthe site for our customers.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Cookies\r\nare grouped into the following categories:<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Essential\r\n- these are cookies that are required for the regular operation of our\r\nwebsites.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Functional\r\n- these remember your preferences, and are intended to make your experience on\r\nour websites better for you.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Analytics</span><span style=\"font-family: Verdana, &quot;sans-serif&quot;;\">&nbsp;-&nbsp;</span><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">these cookies are used for performance measurement to understand things\r\nincluding how many people visit our websites, how they navigate our sites, and\r\nwhat content is popular. This allows us to improve your experience with us.\r\nAdditionally, you can see how Google Analytics (one of our analytics tools)\r\nuses cookie information when you use our partners\' sites by visiting\r\nwww.google.com/policies/privacy/partners, or any other URL Google may provide\r\nfrom time to time<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">Advertising\r\n- these cookies enable us and our advertising partners to serve you with\r\nrelevant advertisements that we think will interest you. You might see these\r\nadvertisements on our sites on other sites you visit. These cookies record your\r\nvisit to our website and the content you interact with. They may be placed by\r\nus, or by advertising partners with our permission.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">To ensure\r\ncompliance with our policies, we restrict the use of third-party cookies to\r\ntrusted partners.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">We also\r\nuse third party information from third party sources to enable us deliver\r\nadvertising. These sources are validated by Third party, and not by us.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">To delete\r\ncookies from your browser, please note the following simple steps. The\r\nfollowing steps are indicative for Google chrome and might vary of the\r\ndifferent browsers that you may use. Please refer Settings on your browser for\r\nfurther details.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">To ensure\r\ncompliance with our policies, we restrict the use of third-party cookies to\r\ntrusted partners.<o:p></o:p></span></p><p class=\"MsoNormal\" style=\"margin-bottom:7.5pt;line-height:normal\"><span style=\"font-size: 9pt; font-family: Verdana, &quot;sans-serif&quot;;\">You may\r\nalso change other setting related to Privacy and Security under the same section.<o:p></o:p></span></p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraph\"><span style=\"font-size:10.5pt;line-height:107%;\r\nfont-family:&quot;Arial&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;\r\ncolor:#666666;letter-spacing:.55pt\">&nbsp;</span></p>','','','','167_1657785593.jpg','Activate',0,'1','2018-01-12 00:00:00','2022-07-20 17:21:55',0,NULL,'0'),(184,'OFFERS','offers','','','','','184_1646890265.jpg','Deactivate',0,'1','2018-04-12 15:25:37','2022-07-20 19:35:26',0,NULL,'0'),(185,'INCREDIBLE INDIA','incredible-india','Enjoy the splendid national park of east to Runn of Katch in west, from Wonders of Kashmir to Heaven of South with us.','Indian Domestic Hotel and Holiday Packages - SVEZZ','India, Domestic Holiday, India Tour, Travell','Enjoy the splendid tea from Assam to Khaman dhokla in Gujrat, Chole bhature and lassi in north to Idli sambar in west, Get a tour of incredible India Now.','185_1660039116.jpg','Deactivate',0,'1','2021-01-05 16:27:20','2022-08-09 15:28:36',0,NULL,'0'),(190,'CONTACT US','contact-us','<br>','Contact Us | Svezz ','','Contact Svezz for best deals on flights, holidays packages, hotel booking online,  international tour packages, hotels offers, Cheap round trip flights.','190_1657783433.jpg','Activate',0,'1','2018-08-13 18:02:55','2022-08-15 14:46:47',0,NULL,'0'),(193,'A MEMBERS-ONLY WHOLESALE BOOKING SITE','a-members-only-wholesale-booking-site','<p><span style=\"color: rgb(139, 139, 139); font-family: Roboto, sans-serif; font-size: 14px;\">Now Search our best value Flights or BUILD YOUR OWN PACKAGE in few minutes for Kerala, Andaman, Leh</span></p><ul style=\"padding-right: 20px; padding-left: 20px; box-sizing: border-box; color: rgb(51, 51, 51); font-family: Roboto, sans-serif; font-size: 14px;\"><li style=\"line-height: 24px; color: rgb(98, 98, 98); font-size: 14px; box-sizing: border-box; padding: 5px 0px; margin: 0px;\"><span style=\"box-sizing: border-box; font-weight: 700;\">GUARANTEED</span>&nbsp;Best Hotel Prices</li><li style=\"line-height: 24px; color: rgb(98, 98, 98); font-size: 14px; box-sizing: border-box; padding: 5px 0px; margin: 0px;\"><span style=\"box-sizing: border-box; font-weight: 700;\">EXCLUSIVE</span>&nbsp;Member Wholesale Rates</li><li style=\"line-height: 24px; color: rgb(98, 98, 98); font-size: 14px; box-sizing: border-box; padding: 5px 0px; margin: 0px;\"><span style=\"box-sizing: border-box; font-weight: 700;\">100%</span>&nbsp;Lowest Price Guarantee*</li></ul><p><br></p>','','','','','Activate',1,'1','2021-03-08 12:56:33','2022-05-09 12:42:00',1,NULL,'0'),(194,'BLOGS | SVEZZ','blogs-svezz','','Travel & Explore the world with us','Travel, Blogs, Travel blogs, Explore, World tour,','Get knowledge on places to visit in various month in India, best places to visit, full itinerary, cheapest country to visit, different traditional, food @SVEZZ blog.','194_1654520765.png','Activate',0,'1','2021-01-05 16:27:20','2022-08-15 14:47:10',0,NULL,'0'),(195,'CAREER','career','<p><br></p>','','','','195_1657779287.jpg','Deactivate',0,'1','2021-01-05 16:27:20','2022-07-20 19:35:06',0,NULL,'0'),(204,'SVEZZ INTERNATIONAL TOUR – CHEAP TRIPS ABROAD | OUT OF INDIA TOUR','svezz-international-tour-–-cheap-trips-abroad-out-of-india-tour','International Packages','Svezz International Tour – Cheap Trips Abroad | Out of India Tour','international holidays, holidays to international destinations, europe, rome, paris, france, turkey, world tourism,','Wants to Trip around the world? Get cheapest foreign tour, low cost holidays, best trip packages with best international travel agency @SVEZZ.','204_1660039019.jpg','Deactivate',0,'1','2021-01-05 16:27:20','2022-09-02 15:11:34',0,NULL,'0'),(205,'FAQ','faq','','','','','205_1646142689.png','Deactivate',0,'1','2021-01-05 16:27:20','2022-03-02 15:20:58',0,NULL,'0'),(206,'DIRECTOR\'S DESK','director-s-desk','','','','','','Deactivate',0,'1','2021-01-05 16:27:20','2022-03-02 15:20:47',0,NULL,'0');
/*!40000 ALTER TABLE `tbl_static_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_support`
--

DROP TABLE IF EXISTS `tbl_support`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_support` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `image` varchar(255) NOT NULL,
  `isDisplayOnHome` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1',
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('0','1') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_support`
--

LOCK TABLES `tbl_support` WRITE;
/*!40000 ALTER TABLE `tbl_support` DISABLE KEYS */;
INSERT INTO `tbl_support` VALUES (1,'asdsadsad','asda','1658146566.png','1','1','0');
/*!40000 ALTER TABLE `tbl_support` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_team`
--

DROP TABLE IF EXISTS `tbl_team`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_team` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(500) NOT NULL,
  `designation` varchar(500) NOT NULL,
  `description` text NOT NULL,
  `image` varchar(256) NOT NULL,
  `display` enum('1','0') NOT NULL DEFAULT '1',
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `isMarkForDel` enum('1','0') NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_team`
--

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

--
-- Table structure for table `tbl_temp_data`
--

DROP TABLE IF EXISTS `tbl_temp_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_temp_data` (
  `id` int NOT NULL AUTO_INCREMENT,
  `TraceId` varchar(200) NOT NULL,
  `json_data` longtext NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=788 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_temp_data`
--

LOCK TABLES `tbl_temp_data` WRITE;
/*!40000 ALTER TABLE `tbl_temp_data` DISABLE KEYS */;
INSERT INTO `tbl_temp_data` VALUES (1,'1','{\"_sessiondata\":{\"EmailId\":\"komal@hellogtx.com\",\"UserSysId\":\"13988\",\"CustomerSysId\":\"192887\",\"AgencySysId\":\"12606\",\"MasterAgencySysId\":\"12211\",\"FirstName\":\"Komal\",\"LastName\":\"Malhotra\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"38066\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"8244B825-75AC-4683-81BE-270476663917\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.travelshop.co.in\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"1000\",\"RefrenceNo\":\"122\",\"CreditDate\":\"17\\/05\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.travelshop.co.in\\/dashboard\"}','2022-05-17 14:56:59'),(2,'2','{\"_sessiondata\":{\"EmailId\":\"aafan.irfan@yahoo.com\",\"UserSysId\":\"14087\",\"CustomerSysId\":\"198145\",\"AgencySysId\":\"12691\",\"MasterAgencySysId\":\"12211\",\"FirstName\":\"IRFAN\",\"LastName\":\"YOUSUF\",\"Password_cu\":\"\",\"AgencyName\":\"ABC\",\"AgencyCode\":\"38042\",\"ContactNo1\":\"9906729503\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"7056183D-8AA0-4232-A0E5-2CDDD6E678B8\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.travelshop.co.in\\/flight\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"10\",\"RefrenceNo\":\"\",\"CreditDate\":\"22\\/05\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.travelshop.co.in\\/flight\"}','2022-05-22 08:53:26'),(3,'3ecfe-372dd-89e25-1d9e9','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-909\",\"keyIndex\":30,\"SegFlightNumberArr\":\"AI-909\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-0813526690_30BOMDXBAI909_353995334942657\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"08:20\",\"ArrivalTime\":\"09:55\",\"TravelDate\":\"2022-05-28T08:20\",\"LocalFromTime\":\"2022-05-28 08:20\",\"FromUTCTime\":\"2022-05-28T08:20\",\"LocalToTime\":\"2022-05-28 09:55\",\"ToUTCTime\":\"2022-05-28T09:55\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sat, 28 May\",\"ArrivalDateTxt\":\"Sat, 28 May\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":13212,\"PublishedFareTxt\":\"13,212\",\"ApiResultIndex\":\"12-15-2-10-0813526690_30BOMDXBAI909_353995334942657\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3ecfe-372dd-89e25-1d9e9\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10000,\"Tax\":3093.7,\"YQTax\":0,\"OtherCharges\":2271,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":505,\"CarrierMiscFee\":100,\"MUFee\":200,\"intPublishedFare\":13093.7,\"PublishedFare\":13212,\"PublishedFarePerPax\":13212,\"OfferedFare\":12893.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-0813526690_30BOMDXBAI909_353995334942657\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3093.7,\"BaseFareCal\":12942.21,\"BaseFare\":10000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":505,\"MFT\":2.7,\"OT\":2271,\"MU\":200,\"YR\":100,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":13211.7,\"CostToCustomer\":13211.7,\"BaseFareCal\":12942.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":12942.21,\"intOfferedFare\":12893.7,\"intPublishFare\":13093.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"01H\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-05-28T09:55\",\"SegFlightNumber\":\"AI-909\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-05-28T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"09:55\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"AI-911\",\"keyIndex\":29,\"SegFlightNumberArr\":\"AI-911\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-0813526690_29BOMDXBAI911_353995334941163\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"01:05\",\"ArrivalTime\":\"02:40\",\"TravelDate\":\"2022-05-28T01:05\",\"LocalFromTime\":\"2022-05-28 01:05\",\"FromUTCTime\":\"2022-05-28T01:05\",\"LocalToTime\":\"2022-05-28 02:40\",\"ToUTCTime\":\"2022-05-28T02:40\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sat, 28 May\",\"ArrivalDateTxt\":\"Sat, 28 May\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":13212,\"PublishedFareTxt\":\"13,212\",\"ApiResultIndex\":\"12-15-2-10-0813526690_29BOMDXBAI911_353995334941163\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3ecfe-372dd-89e25-1d9e9\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10000,\"Tax\":3093.7,\"YQTax\":0,\"OtherCharges\":2271,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":505,\"CarrierMiscFee\":100,\"MUFee\":200,\"intPublishedFare\":13093.7,\"PublishedFare\":13212,\"PublishedFarePerPax\":13212,\"OfferedFare\":12893.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-0813526690_29BOMDXBAI911_353995334941163\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3093.7,\"BaseFareCal\":12942.21,\"BaseFare\":10000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":505,\"MFT\":2.7,\"OT\":2271,\"MU\":200,\"YR\":100,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":13211.7,\"CostToCustomer\":13211.7,\"BaseFareCal\":12942.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":12942.21,\"intOfferedFare\":12893.7,\"intPublishFare\":13093.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-05-28T02:40\",\"SegFlightNumber\":\"AI-911\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-05-28T01:05\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"01:05\",\"strArrivalDtTime\":\"02:40\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"01J\"},{\"FlightNumber\":\"AI-909\",\"keyIndex\":30,\"SegFlightNumberArr\":\"AI-909\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-0813526690_30BOMDXBAI909_353995334942657\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"08:20\",\"ArrivalTime\":\"09:55\",\"TravelDate\":\"2022-05-28T08:20\",\"LocalFromTime\":\"2022-05-28 08:20\",\"FromUTCTime\":\"2022-05-28T08:20\",\"LocalToTime\":\"2022-05-28 09:55\",\"ToUTCTime\":\"2022-05-28T09:55\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sat, 28 May\",\"ArrivalDateTxt\":\"Sat, 28 May\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":13212,\"PublishedFareTxt\":\"13,212\",\"ApiResultIndex\":\"12-15-2-10-0813526690_30BOMDXBAI909_353995334942657\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3ecfe-372dd-89e25-1d9e9\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10000,\"Tax\":3093.7,\"YQTax\":0,\"OtherCharges\":2271,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":505,\"CarrierMiscFee\":100,\"MUFee\":200,\"intPublishedFare\":13093.7,\"PublishedFare\":13212,\"PublishedFarePerPax\":13212,\"OfferedFare\":12893.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-0813526690_30BOMDXBAI909_353995334942657\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3093.7,\"BaseFareCal\":12942.21,\"BaseFare\":10000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":505,\"MFT\":2.7,\"OT\":2271,\"MU\":200,\"YR\":100,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":13211.7,\"CostToCustomer\":13211.7,\"BaseFareCal\":12942.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":12942.21,\"intOfferedFare\":12893.7,\"intPublishFare\":13093.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-05-28T09:55\",\"SegFlightNumber\":\"AI-909\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-05-28T08:20\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"08:20\",\"strArrivalDtTime\":\"09:55\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"01K\"}]}],\"FlightBookingDataInbound\":null}','2022-05-24 13:26:29'),(4,'61454-e518a-4d62a-019e8','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":30,\"FlightNumber\":\"915\",\"SegFlightNumberArr\":\"AI-915\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"OrFlightNumber\":\"AI-915\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:40\",\"TravelDate\":\"2022-06-14T16:30\",\"LocalFromTime\":\"2022-06-14 16:30\",\"FromUTCTime\":\"2022-06-14T16:30\",\"LocalToTime\":\"2022-06-14 18:40\",\"ToUTCTime\":\"2022-06-14T18:40\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Tue, 14 Jun\",\"ArrivalDateTxt\":\"Tue, 14 Jun\",\"FlightDuration\":\"3h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"61454-e518a-4d62a-019e8\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},\"destination\":{\"FlightNumber\":\"916\",\"SegFlightNumberArr\":\"AI-916\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"DeFlightNumber\":\"AI-916\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"17:20\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2022-06-15T17:20\",\"LocalFromTime\":\"2022-06-15 17:20\",\"FromUTCTime\":\"2022-06-15T17:20\",\"LocalToTime\":\"2022-06-15 22:05\",\"ToUTCTime\":\"2022-06-15T22:05\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Wed, 15 Jun\",\"ArrivalDateTxt\":\"Wed, 15 Jun\",\"FlightDuration\":\"3h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"61454-e518a-4d62a-019e8\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},\"AirlineName\":\"Air India\",\"PublishedFare\":23677.4,\"PublishedFareTxt\":\"23,677\",\"ApiResultIndex\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"apiTraceId\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18000,\"Tax\":5441.4,\"YQTax\":0,\"OtherCharges\":3896,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":910,\"CarrierMiscFee\":200,\"MUFee\":400,\"intPublishedFare\":23441.4,\"PublishedFare\":23678,\"PublishedFarePerPax\":23678,\"OfferedFare\":23041.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":4,\"intTotalGST\":97.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":5441.4,\"BaseFareCal\":23138.42,\"BaseFare\":18000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":910,\"MFT\":5.4,\"OT\":3896,\"MU\":400,\"YR\":200,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":97.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":338.98,\"apiTaxOnMarkup\":61.02,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":97.02,\"PublishFare\":23677.4,\"CostToCustomer\":23677.4,\"BaseFareCal\":23138.42,\"intCommisionEarnedForAgency\":538.98,\"CostToCompany\":23138.42,\"intOfferedFare\":23041.4,\"intPublishFare\":23441.4,\"TripjackMarkup\":400,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"01B\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-06-14T18:40\",\"SegFlightNumber\":\"AI-915\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-06-14T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:40\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-06-15T22:05\",\"SegFlightNumber\":\"AI-916\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-06-15T17:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":195,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"DepartureTime\":\"17:20\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"61454-e518a-4d62a-019e8\",\"keyIndex\":30,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":30,\"FlightNumber\":\"915\",\"SegFlightNumberArr\":\"AI-915\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"OrFlightNumber\":\"AI-915\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:40\",\"TravelDate\":\"2022-06-14T16:30\",\"LocalFromTime\":\"2022-06-14 16:30\",\"FromUTCTime\":\"2022-06-14T16:30\",\"LocalToTime\":\"2022-06-14 18:40\",\"ToUTCTime\":\"2022-06-14T18:40\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Tue, 14 Jun\",\"ArrivalDateTxt\":\"Tue, 14 Jun\",\"FlightDuration\":\"3h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"61454-e518a-4d62a-019e8\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},\"destination\":{\"FlightNumber\":\"916\",\"SegFlightNumberArr\":\"AI-916\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"DeFlightNumber\":\"AI-916\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"17:20\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2022-06-15T17:20\",\"LocalFromTime\":\"2022-06-15 17:20\",\"FromUTCTime\":\"2022-06-15T17:20\",\"LocalToTime\":\"2022-06-15 22:05\",\"ToUTCTime\":\"2022-06-15T22:05\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Wed, 15 Jun\",\"ArrivalDateTxt\":\"Wed, 15 Jun\",\"FlightDuration\":\"3h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"61454-e518a-4d62a-019e8\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},\"AirlineName\":\"Air India\",\"PublishedFare\":23677.4,\"PublishedFareTxt\":\"23,677\",\"ApiResultIndex\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"apiTraceId\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18000,\"Tax\":5441.4,\"YQTax\":0,\"OtherCharges\":3896,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":910,\"CarrierMiscFee\":200,\"MUFee\":400,\"intPublishedFare\":23441.4,\"PublishedFare\":23678,\"PublishedFarePerPax\":23678,\"OfferedFare\":23041.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-12-10-4827085708_30DELDXBAI915DXBDELAI916_20049417995843\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":4,\"intTotalGST\":97.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":5441.4,\"BaseFareCal\":23138.42,\"BaseFare\":18000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":910,\"MFT\":5.4,\"OT\":3896,\"MU\":400,\"YR\":200,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":97.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":338.98,\"apiTaxOnMarkup\":61.02,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":97.02,\"PublishFare\":23677.4,\"CostToCustomer\":23677.4,\"BaseFareCal\":23138.42,\"intCommisionEarnedForAgency\":538.98,\"CostToCompany\":23138.42,\"intOfferedFare\":23041.4,\"intPublishFare\":23441.4,\"TripjackMarkup\":400,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-06-14T18:40\",\"SegFlightNumber\":\"AI-915\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-06-14T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:40\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-06-15T22:05\",\"SegFlightNumber\":\"AI-916\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-06-15T17:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":195,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"DepartureTime\":\"17:20\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"61454-e518a-4d62a-019e8\",\"keyIndex\":30,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"01D\"}]}],\"FlightBookingDataInbound\":null}','2022-05-25 16:46:47'),(9,'a8bc3-1049d-f9d0a-81b9b','{\"FlightBookingData\":[{\"bookingId\":\"DMCS107700257382\",\"bookingId_TJ\":\"TJS107700257382\",\"FlightNumber\":\"SG-8374\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a8bc3-1049d-f9d0a-81b9b\",\"apiTraceId\":\"4-4150482732_2SXRDELSG8374_26149980155966\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:55\",\"ArrivalTime\":\"13:35\",\"TravelDate\":\"2022-05-27T11:55\",\"LocalFromTime\":\"2022-05-27 11:55\",\"FromUTCTime\":\"2022-05-27T11:55\",\"LocalToTime\":\"2022-05-27 13:35\",\"ToUTCTime\":\"2022-05-27T13:35\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Fri, 27 May\",\"ArrivalDateTxt\":\"Fri, 27 May\",\"FlightDuration\":\"02h 40m\",\"SourcePlaceSysId\":\"25897\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"SXR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,558\",\"ApiResultIndex\":\"4-4150482732_2SXRDELSG8374_26149980155966\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/agent.svezzair.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2935,\"Tax\":1610.7,\"YQTax\":500,\"OtherCharges\":719,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4545.7,\"PublishedFare\":4557.5,\"PublishedFareAgent\":4557.5,\"OfferedFareAgent\":4557.5,\"OfferedFare\":4345.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4150482732_0SXRDELSG8374_26162908326836\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":1,\"classOfBooking\":\"RS\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4557.5,\"CostToAgent\":4557.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1610.7,\"TotalBaseFare\":4545.7,\"BaseFareCal\":4347.5,\"BaseFare\":2935,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":500,\"AGST\":174,\"MFT\":2.7,\"OT\":719,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4557.5,\"CostToAgent\":4557.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":10,\"IntTaxOnAgencyFixMarkUp\":1.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":32.308474576271195,\"PublishFare\":4557.5,\"CostToCustomer\":4557.5,\"BaseFareCal\":4347.5,\"intCommisionEarnedForAgency\":210,\"CostToCompany\":4347.5,\"intOfferedFare\":4345.7,\"intPublishFare\":4545.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4557.5,\"CostToAgent\":4557.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"590\",\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-05-27T13:35\",\"SegFlightNumber\":\"SG-8374\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2022-05-27T11:55\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"13:35\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/agent.svezzair.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"JNSW\",\"Price\":262,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGSW\",\"Price\":229,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVSW\",\"Price\":229,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCVS\",\"Price\":244,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"LCNS\",\"Price\":244,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"JNSW\",\"Price\":262,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-4150482732_2SXRDELSG8374_26149980155966\",\"FareRuleData\":{\"fareRule\":{\"SXR-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCF\":50,\"ACF\":3500,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-05-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"SXR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"25897\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"1\"],\"ForCustomerSession\":[{\"AgencySysId\":\"12761\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"prince9716630144@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9716630144\",\"FirstName\":\"sohan\",\"LastName\":\"lal\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12761\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-05-25 18:28:59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"1\"]],\"SearchTraceId\":\"a8bc3-1049d-f9d0a-81b9b\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Srinagar (SXR)\",\"Sectors\"],\"to_des\":[\"Delhi (DEL)\",\"DEL\"],\"departure_date\":[\"27\\/05\\/2022\",\"\"],\"source_city\":[\"SXR\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"DEL\"],\"source\":[\"Srinagar, IN - Srinagar Arpt (SXR)\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\"],\"from_mytrip_city\":[\" IN - Srinagar Arpt (SXR)\"],\"to_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Srinagar (SXR)\",\"Sectors\"],\"to_city\":[\"Delhi (DEL)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-05-27\"],\"strReturnDate\":\"\",\"sourceCityId\":[25897],\"intCountryCode\":\"IN\",\"destinationCityId\":[7701],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"a8bc3-1049d-f9d0a-81b9b\",\"sourceCityAirportCode\":[\"SXR\"],\"destinationCityAirportCode\":[\"DEL\"],\"from\":[\"SXR\"],\"to\":[\"DEL\"],\"sourceCityText\":[\"Srinagar, IN - Srinagar Arpt (SXR)\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"27\\/05\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"27 May Fri\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-05-25 18:28:18\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":{\"590\":{\"1\":{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"}}},\"SelectedMealSessionNew\":{\"590\":{\"1\":{\"Currency\":\"INR\",\"key\":\"590\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"}}},\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"a8bc3-1049d-f9d0a-81b9b\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Srinagar (SXR)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"27\\\\\\/05\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"SXR\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"DEL\\\"],\\\"source\\\":[\\\"Srinagar, IN - Srinagar Arpt (SXR)\\\"],\\\"destination\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Srinagar Arpt (SXR)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"from_city\\\":[\\\"Srinagar (SXR)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-05-27\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[25897],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[7701],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"a8bc3-1049d-f9d0a-81b9b\\\",\\\"sourceCityAirportCode\\\":[\\\"SXR\\\"],\\\"destinationCityAirportCode\\\":[\\\"DEL\\\"],\\\"from\\\":[\\\"SXR\\\"],\\\"to\\\":[\\\"DEL\\\"],\\\"sourceCityText\\\":[\\\"Srinagar, IN - Srinagar Arpt (SXR)\\\"],\\\"destinationCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"27\\\\\\/05\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"27 May Fri\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-05-25 18:28:18\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS107700257382\\\",\\\"bookingId_TJ\\\":\\\"TJS107700257382\\\",\\\"FlightNumber\\\":\\\"SG-8374\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"a8bc3-1049d-f9d0a-81b9b\\\",\\\"apiTraceId\\\":\\\"4-4150482732_2SXRDELSG8374_26149980155966\\\",\\\"AirlineSysId\\\":\\\"463\\\",\\\"DepartureTime\\\":\\\"11:55\\\",\\\"ArrivalTime\\\":\\\"13:35\\\",\\\"TravelDate\\\":\\\"2022-05-27T11:55\\\",\\\"LocalFromTime\\\":\\\"2022-05-27 11:55\\\",\\\"FromUTCTime\\\":\\\"2022-05-27T11:55\\\",\\\"LocalToTime\\\":\\\"2022-05-27 13:35\\\",\\\"ToUTCTime\\\":\\\"2022-05-27T13:35\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"RS\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":100,\\\"DepartureDateTxt\\\":\\\"Fri, 27 May\\\",\\\"ArrivalDateTxt\\\":\\\"Fri, 27 May\\\",\\\"FlightDuration\\\":\\\"02h 40m\\\",\\\"SourcePlaceSysId\\\":\\\"25897\\\",\\\"DestPlaceSysId\\\":\\\"7701\\\",\\\"SourceAirportCode\\\":\\\"SXR\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":1,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"4,558\\\",\\\"ApiResultIndex\\\":\\\"4-4150482732_2SXRDELSG8374_26149980155966\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/agent.svezzair.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":2935,\\\"Tax\\\":1610.7,\\\"YQTax\\\":500,\\\"OtherCharges\\\":719,\\\"Discount\\\":0,\\\"ServiceFee\\\":15,\\\"ManagementFeeTax\\\":2.7,\\\"AirlineGSTComponent\\\":174,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":200,\\\"intPublishedFare\\\":4545.7,\\\"PublishedFare\\\":4557.5,\\\"PublishedFareAgent\\\":4557.5,\\\"OfferedFareAgent\\\":4557.5,\\\"OfferedFare\\\":4345.7,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"4-4150482732_0SXRDELSG8374_26162908326836\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":1,\\\"classOfBooking\\\":\\\"RS\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":32.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":10,\\\"GSTOnMarkUp\\\":1.8,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4557.5,\\\"CostToAgent\\\":4557.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1610.7,\\\"TotalBaseFare\\\":4545.7,\\\"BaseFareCal\\\":4347.5,\\\"BaseFare\\\":2935,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":15,\\\"YQ\\\":500,\\\"AGST\\\":174,\\\"MFT\\\":2.7,\\\"OT\\\":719,\\\"MU\\\":200,\\\"YR\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":32.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":10,\\\"GSTOnMarkUp\\\":1.8,\\\"CommEarned\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4557.5,\\\"CostToAgent\\\":4557.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":169.4915254237288,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":10,\\\"IntTaxOnAgencyFixMarkUp\\\":1.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":32.308474576271195,\\\"PublishFare\\\":4557.5,\\\"CostToCustomer\\\":4557.5,\\\"BaseFareCal\\\":4347.5,\\\"intCommisionEarnedForAgency\\\":210,\\\"CostToCompany\\\":4347.5,\\\"intOfferedFare\\\":4345.7,\\\"intPublishFare\\\":4545.7,\\\"TripjackMarkup\\\":200,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4557.5,\\\"CostToAgent\\\":4557.5,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"590\\\",\\\"originAirportName\\\":\\\"Srinagar Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Srinagar\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2022-05-27T13:35\\\",\\\"SegFlightNumber\\\":\\\"SG-8374\\\",\\\"AirlineCode\\\":\\\"SG\\\",\\\"AirlineName\\\":\\\"SpiceJet\\\",\\\"FareClass\\\":\\\"RS\\\",\\\"originAirportCode\\\":\\\"SXR\\\",\\\"originDepTime\\\":\\\"2022-05-27T11:55\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":100,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":1,\\\"strDepartureDtTime\\\":\\\"11:55\\\",\\\"strArrivalDtTime\\\":\\\"13:35\\\",\\\"FlightDuration\\\":\\\"1h 40m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/agent.svezzair.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/SG.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":229,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":229,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":244,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":244,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":262,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":229,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":229,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":244,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":244,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":262,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"4-4150482732_2SXRDELSG8374_26149980155966\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"SXR-DEL\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\\\",\\\"fcs\\\":{\\\"ARF\\\":3000,\\\"ARFT\\\":150,\\\"CRFT\\\":9,\\\"CRF\\\":50}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\\\",\\\"fcs\\\":{\\\"ACFT\\\":175,\\\"CCF\\\":50,\\\"ACF\\\":3500,\\\"CCFT\\\":9}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Paid Seat\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-05-26 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"SXR\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"25897\\\",\\\"intDestinationCityId\\\":\\\"7701\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"JNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFVG\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFNV\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Gluten-free Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"GFCM\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Gluten-free Cold Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"DNVL\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Non Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Diabetic Hot Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kids meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VGSW\\\",\\\"Price\\\":229,\\\"Description\\\":\\\"Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NVSW\\\",\\\"Price\\\":229,\\\"Description\\\":\\\"Non Veg Sandwich\\\\\\/Wrap\\\\\\/Sub\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"LCVS\\\",\\\"Price\\\":244,\\\"Description\\\":\\\"Low cal salad Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"LCNS\\\",\\\"Price\\\":244,\\\"Description\\\":\\\"Low cal salad Non Vegetarian\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"JNSW\\\",\\\"Price\\\":262,\\\"Description\\\":\\\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Vegetable in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC6\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken schezwan on bed of fried rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC5\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC4\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC2\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Chicken in Red Thai Curry with Steamed Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"NCC1\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF2\\\",\\\"Price\\\":200,\\\"Weight\\\":\\\"Bag Out First with 2 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF3\\\",\\\"Price\\\":300,\\\"Weight\\\":\\\"Bag Out First with 3 Bag\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB05\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB10\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB15\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB20\\\",\\\"Price\\\":9000,\\\"Weight\\\":\\\"20KG\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"EB30\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30KG\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"{\\\"590\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"BOF1\\\",\\\"Price\\\":100,\\\"Weight\\\":\\\"Bag Out First with 1 Bag\\\"}}}\",\"SelectedMealSessionNew\":\"{\\\"590\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"590\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Veg Meal\\\"}}}\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"9716630144\",\"leadEmail\":\"prince9716630144@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"sohan\",\"passenger-lastname-1\":\"lal\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Noida\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"19543\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"SelectMeals\":[\"0\"],\"SelectBaggage\":[\"0\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"12761\",\"Salutation\":\"1\",\"EmailId\":\"prince9716630144@gmail.com\",\"FirstName\":\"sohan\",\"LastName\":\"lal\",\"CountryCode\":\"91\",\"MobileNo\":\"9716630144\"},\"_sessiondata\":{\"EmailId\":\"prince9716630144@gmail.com\",\"UserSysId\":\"14161\",\"CustomerSysId\":\"201600\",\"AgencySysId\":\"12761\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"prince\",\"LastName\":\",\",\"Password_cu\":\"\",\"AgencyName\":\"Prince test\",\"AgencyCode\":\"99520\",\"ContactNo1\":\"9716630144\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"FF067821-69AC-436F-85F4-2F914B0411A0\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":1,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":\"0\",\"paymentMode\":\"3\",\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CPAmountWithTax\":0}','2022-05-25 18:29:21'),(10,'5583b-53d7e-7b9a4-b75e0','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"DELHI (INDIA)\",\"check_in\":\"26\\/05\\/2022\",\"check_out\":\"27\\/05\\/2022\",\"Nationality\":\"106\",\"adult\":[\"2\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"infant\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"child1_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child2_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"cityid\":\"0\",\"TBBCityId\":\"725862\",\"destination\":\"DELHI\",\"hotel_countryCode\":\"\",\"GuestNationality\":\"IN\",\"room\":\"1\",\"totadlt\":\"2\",\"totchld\":\"0\",\"totinfnt\":\"0\",\"travelers\":\"\",\"roominfojson\":\"[{\\\"totalRoom\\\" : 1},{\\\"totalTraveler\\\" : 2},{\\\"totaladult\\\" : 2},{\\\"totalchild\\\" : 0},{\\\"totalinfant\\\" : 0}]\",\"memberdata\":[{\"NoOfAdults\":\"2\",\"NoOfChild\":\"0\",\"ChildAge\":null}],\"TBOdata\":{\"CheckInDate\":\"26\\/05\\/2022\",\"NoOfNights\":1,\"CityId\":\"725862\",\"CountryCode\":\"\",\"IsTBOMapped\":true,\"ResultCount\":null,\"PreferredCurrency\":\"INR\",\"GuestNationality\":\"IN\",\"NoOfRooms\":\"1\",\"RoomGuests\":[{\"NoOfAdults\":\"2\",\"NoOfChild\":\"0\",\"ChildAge\":null}],\"PreferredHotel\":\"\",\"MaxRating\":5,\"MinRating\":0,\"ReviewScore\":null,\"IsNearBySearchAllowed\":false},\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2022-05-26\",\"checkoutDate\":\"2022-05-27\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"725862\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2022-05-26\",\"strCheckout\":\"2022-05-27\",\"SearchHotelTraceId\":\"5583b-53d7e-7b9a4-b75e0\",\"interNationalSearch\":false,\"searchIds\":\"hsid0360119960\"}','2022-05-25 18:31:24'),(12,'13bac-0ee31-9d964-20036','{\"FlightBookingData\":[{\"bookingId\":\"TJS107300260493\",\"FlightNumber\":\"I5-941\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-9986396649_0BOMJAII5941_175810105020115\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-06-08T07:55\",\"LocalFromTime\":\"2022-06-08 07:55\",\"FromUTCTime\":\"2022-06-08T07:55\",\"LocalToTime\":\"2022-06-08 09:50\",\"ToUTCTime\":\"2022-06-08T09:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 08 Jun\",\"ArrivalDateTxt\":\"Wed, 08 Jun\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3256.7,\"PublishedFareTxt\":\"3,257\",\"ApiResultIndex\":\"22-9986396649_0BOMJAII5941_175810105020115\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":796.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3256.7,\"PublishedFare\":3374.7,\"OfferedFare\":3056.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-9986396649_0BOMJAII5941_175917704648483\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":796.7,\"BaseFareCal\":3105.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":453,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3374.7,\"CostToCustomer\":3374.7,\"BaseFareCal\":3105.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3105.21,\"intOfferedFare\":3056.7,\"intPublishFare\":3256.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"675\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-06-08T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-06-08T07:55\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"PBAB\",\"Price\":2025,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"PBAC\",\"Price\":4050,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"PBAD\",\"Price\":6075,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"PBAF\",\"Price\":10125,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"RPCB\",\"Price\":300,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"MOCB\",\"Price\":400,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"675\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"13bac-0ee31-9d964-20036\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-9986396649_0BOMJAII5941_175810105020115\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-06-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107300260493\",\"FlightNumber\":\"I5-941\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-9986396649_0BOMJAII5941_175810105020115\",\"strTraceId\":\"22-9986396649_0BOMJAII5941_175810105020115\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-06-08T07:55\",\"LocalFromTime\":\"2022-06-08 07:55\",\"FromUTCTime\":\"2022-06-08T07:55\",\"LocalToTime\":\"2022-06-08 09:50\",\"ToUTCTime\":\"2022-06-08T09:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 08 Jun\",\"ArrivalDateTxt\":\"Wed, 08 Jun\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3256.7,\"ApiResultIndex\":\"22-9986396649_0BOMJAII5941_175810105020115\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"13bac-0ee31-9d964-20036\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":796.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3256.7,\"PublishedFare\":3374.7,\"OfferedFare\":3056.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":796.7,\"BaseFareCal\":3105.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":453,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"675\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-06-08T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-06-08T07:55\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezzair.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-9986396649_0BOMJAII5941_175810105020115\",\"localFromDateTime\":\"2022-06-08 07:55\",\"localToDateTime\":\"2022-06-08 09:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"2\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_id\":[\"2\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"mybharatyatra@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9930301095\",\"FirstName\":\"bharat\",\"LastName\":\"bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-05-30-14-35-19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"2\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_customer\":[[\"2\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"08\\/06\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/06\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-06-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"13bac-0ee31-9d964-20036\",\"from_city_\":\"1__BOM-JAI\"},\"sessionData\":{\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_id\":[\"2\"]}}','2022-05-30 14:35:19'),(13,'214ca-6a87f-0bde3-538d4','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-423\",\"keyIndex\":128,\"SegFlightNumberArr\":\"I5-423\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-6236788306_0BOMCOKI5423_459397774254964\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"14:55\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-06-18T14:55\",\"LocalFromTime\":\"2022-06-18 14:55\",\"FromUTCTime\":\"2022-06-18T14:55\",\"LocalToTime\":\"2022-06-18 16:50\",\"ToUTCTime\":\"2022-06-18T16:50\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Sat, 18 Jun\",\"ArrivalDateTxt\":\"Sat, 18 Jun\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3024,\"PublishedFareTxt\":\"3,024\",\"ApiResultIndex\":\"22-6236788306_0BOMCOKI5423_459397774254964\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"214ca-6a87f-0bde3-538d4\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2200,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":110,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2905.7,\"PublishedFare\":3024,\"PublishedFarePerPax\":3024,\"OfferedFare\":2705.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-6236788306_0BOMCOKI5423_459397774254964\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"BaseFareCal\":2754.21,\"BaseFare\":2200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":110,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3023.7,\"CostToCustomer\":3023.7,\"BaseFareCal\":2754.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2754.21,\"intOfferedFare\":2705.7,\"intPublishFare\":2905.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"00X\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2022-06-18T16:50\",\"SegFlightNumber\":\"I5-423\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-06-18T14:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:55\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-06 18:18:05'),(15,'34f5e-3de92-37a58-b1ffc','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6261\",\"keyIndex\":33,\"SegFlightNumberArr\":\"6E-6261\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7848801651_1DELBOM6E6261_461354200846509\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:20\",\"ArrivalTime\":\"00:25\",\"TravelDate\":\"2022-06-23T22:20\",\"LocalFromTime\":\"2022-06-23 22:20\",\"FromUTCTime\":\"2022-06-23T22:20\",\"LocalToTime\":\"2022-06-24 00:25\",\"ToUTCTime\":\"2022-06-24T00:25\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 23 Jun\",\"ArrivalDateTxt\":\"Fri, 24 Jun\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":6,\"CurrencyType\":null,\"PublishedFare\":18125,\"PublishedFareTxt\":\"18,124\",\"ApiResultIndex\":\"5-7848801651_1DELBOM6E6261_461354200846509\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"34f5e-3de92-37a58-b1ffc\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13194,\"Tax\":4930.200000000001,\"YQTax\":0,\"OtherCharges\":3624,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1200,\"intPublishedFare\":18124.199999999997,\"PublishedFare\":18125,\"PublishedFarePerPax\":3021,\"OfferedFare\":16924.199999999997,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7848801651_1DELBOM6E6261_461354200846509\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FAMILY\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":183.05,\"apiMarkup\":1016.95,\"IntCommission\":0,\"apiTaxOnMarkup\":183.05,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"6\",\"TaxIN\":4930.200000000001,\"BaseFareCal\":17107.25,\"BaseFare\":13194,\"CommissionEarned\":0,\"TDS\":0,\"MF\":90,\"YQ\":0,\"AGST\":0,\"MFT\":16.200000000000003,\"OT\":3624,\"MU\":1200,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":183.05,\"apiMarkup\":1016.95,\"IntCommission\":0,\"apiTaxOnMarkup\":183.05,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":1016.95,\"apiTaxOnMarkup\":183.05,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":183.05,\"PublishFare\":18124.2,\"CostToCustomer\":18124.2,\"BaseFareCal\":17107.25,\"intCommisionEarnedForAgency\":1016.95,\"CostToCompany\":17107.25,\"intOfferedFare\":16924.199999999997,\"intPublishFare\":18124.199999999997,\"TripjackMarkup\":1200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"01K\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-06-24T00:25\",\"SegFlightNumber\":\"6E-6261\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"A\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-06-23T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"00:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"35001-40000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-06 18:50:21'),(17,'cb086-f60c6-30bc7-dbe8e','{\"FlightBookingData\":[{\"bookingId\":\"TJS107900266162\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4639546513_3BOMDEL6E2111_530201212270619\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-06-19T02:40\",\"LocalFromTime\":\"2022-06-19 02:40\",\"FromUTCTime\":\"2022-06-19T02:40\",\"LocalToTime\":\"2022-06-19 04:50\",\"ToUTCTime\":\"2022-06-19T04:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sun, 19 Jun\",\"ArrivalDateTxt\":\"Sun, 19 Jun\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4270.7,\"PublishedFareTxt\":\"4,271\",\"ApiResultIndex\":\"5-4639546513_3BOMDEL6E2111_530201212270619\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"CRF\":50,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":870.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4270.7,\"PublishedFare\":4388.7,\"OfferedFare\":4070.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4639546513_0BOMDEL6E2111_530237292881205\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.7,\"BaseFareCal\":4119.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4388.7,\"CostToCustomer\":4388.7,\"BaseFareCal\":4119.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4119.21,\"intOfferedFare\":4070.7,\"intPublishFare\":4270.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"695\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-06-19T04:50\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-06-19T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"695\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cb086-f60c6-30bc7-dbe8e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4639546513_3BOMDEL6E2111_530201212270619\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-06-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107900266162\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4639546513_3BOMDEL6E2111_530201212270619\",\"strTraceId\":\"5-4639546513_3BOMDEL6E2111_530201212270619\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-06-19T02:40\",\"LocalFromTime\":\"2022-06-19 02:40\",\"FromUTCTime\":\"2022-06-19T02:40\",\"LocalToTime\":\"2022-06-19 04:50\",\"ToUTCTime\":\"2022-06-19T04:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sun, 19 Jun\",\"ArrivalDateTxt\":\"Sun, 19 Jun\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4270.7,\"ApiResultIndex\":\"5-4639546513_3BOMDEL6E2111_530201212270619\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"cb086-f60c6-30bc7-dbe8e\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":870.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4270.7,\"PublishedFare\":4388.7,\"OfferedFare\":4070.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.7,\"BaseFareCal\":4119.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"695\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-06-19T04:50\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-06-19T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4639546513_3BOMDEL6E2111_530201212270619\",\"localFromDateTime\":\"2022-06-19 02:40\",\"localToDateTime\":\"2022-06-19 04:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"3\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"3\",\"CustomerMemSysId\":[\"3\"],\"flight_booking_id\":[\"3\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"KUMAR.SAUJANYA@GMAIL.COM\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9699883388\",\"FirstName\":\"SAUJANYA\",\"LastName\":\"KUMAR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-06-07-13-58-33\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"3\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"3\",\"CustomerMemSysId\":[\"3\"],\"flight_booking_customer\":[[\"3\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"19\\/06\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/06\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-06-19\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"cb086-f60c6-30bc7-dbe8e\",\"from_city_\":\"1__BOM-DEL\"},\"sessionData\":{\"CustomerSysId\":\"3\",\"CustomerMemSysId\":[\"3\"],\"flight_booking_id\":[\"3\"]}}','2022-06-07 13:58:33'),(18,'2b3af-e0b92-f7d8f-6ad4b','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-236\",\"keyIndex\":35,\"SegFlightNumberArr\":\"6E-236\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7284494466_8BOMBLR6E236_800675152516302\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:20\",\"TravelDate\":\"2022-07-06T17:35\",\"LocalFromTime\":\"2022-07-06 17:35\",\"FromUTCTime\":\"2022-07-06T17:35\",\"LocalToTime\":\"2022-07-06 19:20\",\"ToUTCTime\":\"2022-07-06T19:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3864,\"PublishedFareTxt\":\"3,864\",\"ApiResultIndex\":\"5-7284494466_8BOMBLR6E236_800675152516302\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"2b3af-e0b92-f7d8f-6ad4b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2900,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3745.7,\"PublishedFare\":3864,\"PublishedFarePerPax\":3864,\"OfferedFare\":3545.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7284494466_8BOMBLR6E236_800675152516302\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":3594.21,\"BaseFare\":2900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":628,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3863.7,\"CostToCustomer\":3863.7,\"BaseFareCal\":3594.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3594.21,\"intOfferedFare\":3545.7,\"intPublishFare\":3745.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"045\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T19:20\",\"SegFlightNumber\":\"6E-236\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-19 01:01:09'),(19,'d1b14-b8d8a-0717d-4c72e','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-236\",\"keyIndex\":35,\"SegFlightNumberArr\":\"6E-236\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6666432870_8BOMBLR6E236_846333648731277\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:20\",\"TravelDate\":\"2022-07-06T17:35\",\"LocalFromTime\":\"2022-07-06 17:35\",\"FromUTCTime\":\"2022-07-06T17:35\",\"LocalToTime\":\"2022-07-06 19:20\",\"ToUTCTime\":\"2022-07-06T19:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3864,\"PublishedFareTxt\":\"3,864\",\"ApiResultIndex\":\"5-6666432870_8BOMBLR6E236_846333648731277\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d1b14-b8d8a-0717d-4c72e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2900,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3745.7,\"PublishedFare\":3864,\"PublishedFarePerPax\":3864,\"OfferedFare\":3545.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6666432870_8BOMBLR6E236_846333648731277\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":3594.21,\"BaseFare\":2900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":628,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3863.7,\"CostToCustomer\":3863.7,\"BaseFareCal\":3594.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3594.21,\"intOfferedFare\":3545.7,\"intPublishFare\":3745.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"045\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T19:20\",\"SegFlightNumber\":\"6E-236\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-19 13:42:02'),(20,'d7fad-ac2ba-2d00c-66c5c','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-236\",\"keyIndex\":35,\"SegFlightNumberArr\":\"6E-236\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2576417398_8BOMBLR6E236_846755905427692\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:20\",\"TravelDate\":\"2022-07-06T17:35\",\"LocalFromTime\":\"2022-07-06 17:35\",\"FromUTCTime\":\"2022-07-06T17:35\",\"LocalToTime\":\"2022-07-06 19:20\",\"ToUTCTime\":\"2022-07-06T19:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3864,\"PublishedFareTxt\":\"3,864\",\"ApiResultIndex\":\"5-2576417398_8BOMBLR6E236_846755905427692\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d7fad-ac2ba-2d00c-66c5c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2900,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3745.7,\"PublishedFare\":3864,\"PublishedFarePerPax\":3864,\"OfferedFare\":3545.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2576417398_8BOMBLR6E236_846755905427692\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":3594.21,\"BaseFare\":2900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":628,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3863.7,\"CostToCustomer\":3863.7,\"BaseFareCal\":3594.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3594.21,\"intOfferedFare\":3545.7,\"intPublishFare\":3745.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"045\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T19:20\",\"SegFlightNumber\":\"6E-236\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-19 13:49:25'),(21,'db8dd-1ee70-b5190-f1cfa','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-236\",\"keyIndex\":35,\"SegFlightNumberArr\":\"6E-236\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7813491455_8BOMBLR6E236_846988130208187\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:20\",\"TravelDate\":\"2022-07-06T17:35\",\"LocalFromTime\":\"2022-07-06 17:35\",\"FromUTCTime\":\"2022-07-06T17:35\",\"LocalToTime\":\"2022-07-06 19:20\",\"ToUTCTime\":\"2022-07-06T19:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3864,\"PublishedFareTxt\":\"3,864\",\"ApiResultIndex\":\"5-7813491455_8BOMBLR6E236_846988130208187\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"db8dd-1ee70-b5190-f1cfa\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2900,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3745.7,\"PublishedFare\":3864,\"PublishedFarePerPax\":3864,\"OfferedFare\":3545.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7813491455_8BOMBLR6E236_846988130208187\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":3594.21,\"BaseFare\":2900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":628,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3863.7,\"CostToCustomer\":3863.7,\"BaseFareCal\":3594.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3594.21,\"intOfferedFare\":3545.7,\"intPublishFare\":3745.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"045\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T19:20\",\"SegFlightNumber\":\"6E-236\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-19 13:52:39'),(22,'73d38-84e2b-6a9e3-b5a39','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-236\",\"keyIndex\":35,\"SegFlightNumberArr\":\"6E-236\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6029726530_8BOMBLR6E236_847109903321799\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:20\",\"TravelDate\":\"2022-07-06T17:35\",\"LocalFromTime\":\"2022-07-06 17:35\",\"FromUTCTime\":\"2022-07-06T17:35\",\"LocalToTime\":\"2022-07-06 19:20\",\"ToUTCTime\":\"2022-07-06T19:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3864,\"PublishedFareTxt\":\"3,864\",\"ApiResultIndex\":\"5-6029726530_8BOMBLR6E236_847109903321799\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"73d38-84e2b-6a9e3-b5a39\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2900,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":628,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3745.7,\"PublishedFare\":3864,\"PublishedFarePerPax\":3864,\"OfferedFare\":3545.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6029726530_8BOMBLR6E236_847109903321799\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":3594.21,\"BaseFare\":2900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":628,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3863.7,\"CostToCustomer\":3863.7,\"BaseFareCal\":3594.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3594.21,\"intOfferedFare\":3545.7,\"intPublishFare\":3745.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"045\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T19:20\",\"SegFlightNumber\":\"6E-236\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-19 13:54:32'),(24,'93efb-83f8b-ecf6c-c7d36','{\"FlightBookingData\":[{\"bookingId\":\"TJS105000274442\",\"FlightNumber\":\"6E-236\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4337680252_8BOMBLR6E236_847235127941054\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:20\",\"TravelDate\":\"2022-07-06T17:35\",\"LocalFromTime\":\"2022-07-06 17:35\",\"FromUTCTime\":\"2022-07-06T17:35\",\"LocalToTime\":\"2022-07-06 19:20\",\"ToUTCTime\":\"2022-07-06T19:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3745.7,\"PublishedFareTxt\":\"3,746\",\"ApiResultIndex\":\"5-4337680252_8BOMBLR6E236_847235127941054\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARFT\":150,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2900,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":150,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3745.7,\"PublishedFare\":3863.7,\"OfferedFare\":3545.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4337680252_0BOMBLR6E236_847367825789176\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":3594.21,\"BaseFare\":2900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":150,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3863.7,\"CostToCustomer\":3863.7,\"BaseFareCal\":3594.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3594.21,\"intOfferedFare\":3545.7,\"intPublishFare\":3745.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"103\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T19:20\",\"SegFlightNumber\":\"6E-236\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"103\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"93efb-83f8b-ecf6c-c7d36\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4337680252_8BOMBLR6E236_847235127941054\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105000274442\",\"FlightNumber\":\"6E-236\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4337680252_8BOMBLR6E236_847235127941054\",\"strTraceId\":\"5-4337680252_8BOMBLR6E236_847235127941054\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:20\",\"TravelDate\":\"2022-07-06T17:35\",\"LocalFromTime\":\"2022-07-06 17:35\",\"FromUTCTime\":\"2022-07-06T17:35\",\"LocalToTime\":\"2022-07-06 19:20\",\"ToUTCTime\":\"2022-07-06T19:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3745.7,\"ApiResultIndex\":\"5-4337680252_8BOMBLR6E236_847235127941054\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"93efb-83f8b-ecf6c-c7d36\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2900,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":150,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3745.7,\"PublishedFare\":3863.7,\"OfferedFare\":3545.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":3594.21,\"BaseFare\":2900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":150,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"103\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T19:20\",\"SegFlightNumber\":\"6E-236\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:20\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4337680252_8BOMBLR6E236_847235127941054\",\"localFromDateTime\":\"2022-07-06 17:35\",\"localToDateTime\":\"2022-07-06 19:20\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"4\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"4\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"amith.c.shetty@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8105807501\",\"FirstName\":\"AMITH\",\"LastName\":\"C SHETTY\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-06-19-13-58-55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"1\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_customer\":[[\"4\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Bengaluru (BLR)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"departure_date\":\"06\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"BOM\",\"to\":\"BLR\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"sourceCityId\":18676,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"93efb-83f8b-ecf6c-c7d36\",\"from_city_\":\"1__BOM-BLR\"},\"sessionData\":{\"CustomerSysId\":\"1\",\"CustomerMemSysId\":[\"1\"],\"flight_booking_id\":[\"4\"]}}','2022-06-19 13:58:55'),(25,'a76b9-a18db-537cf-ac659','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2111\",\"keyIndex\":69,\"SegFlightNumberArr\":\"6E-2111\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5203909402_36BOMDEL6E2111_1209745458305666\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-06-24T02:40\",\"LocalFromTime\":\"2022-06-24 02:40\",\"FromUTCTime\":\"2022-06-24T02:40\",\"LocalToTime\":\"2022-06-24 04:50\",\"ToUTCTime\":\"2022-06-24T04:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 24 Jun\",\"ArrivalDateTxt\":\"Fri, 24 Jun\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4389,\"PublishedFareTxt\":\"4,389\",\"ApiResultIndex\":\"5-5203909402_36BOMDEL6E2111_1209745458305666\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a76b9-a18db-537cf-ac659\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":870.7,\"YQTax\":0,\"OtherCharges\":653,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4270.7,\"PublishedFare\":4389,\"PublishedFarePerPax\":4389,\"OfferedFare\":4070.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5203909402_36BOMDEL6E2111_1209745458305666\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.7,\"BaseFareCal\":4119.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":653,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4388.7,\"CostToCustomer\":4388.7,\"BaseFareCal\":4119.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4119.21,\"intOfferedFare\":4070.7,\"intPublishFare\":4270.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"03B\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-06-24T04:50\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-06-24T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-23 18:39:22'),(26,'62866-2e4a4-21fca-d9fdb','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5355\",\"keyIndex\":70,\"SegFlightNumberArr\":\"6E-5355, 6E-6235\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2376454496_35BOMRPR6E5355RPRDEL6E6235_27403900921409\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:10\",\"ArrivalTime\":\"23:00\",\"TravelDate\":\"2022-06-26T17:10\",\"LocalFromTime\":\"2022-06-26 17:10\",\"FromUTCTime\":\"2022-06-26T17:10\",\"LocalToTime\":\"2022-06-26 23:00\",\"ToUTCTime\":\"2022-06-26T23:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Raipur\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":350,\"DepartureDateTxt\":\"Sun, 26 Jun\",\"ArrivalDateTxt\":\"Sun, 26 Jun\",\"FlightDuration\":\"5h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3077,\"PublishedFareTxt\":\"3,077\",\"ApiResultIndex\":\"5-2376454496_35BOMRPR6E5355RPRDEL6E6235_27403900921409\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"62866-2e4a4-21fca-d9fdb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2100,\"Tax\":858.7,\"YQTax\":0,\"OtherCharges\":641,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2958.7,\"PublishedFare\":3077,\"PublishedFarePerPax\":3077,\"OfferedFare\":2758.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2376454496_35BOMRPR6E5355RPRDEL6E6235_27403900921409\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":858.7,\"BaseFareCal\":2807.21,\"BaseFare\":2100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":641,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3076.7,\"CostToCustomer\":3076.7,\"BaseFareCal\":2807.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2807.21,\"intOfferedFare\":2758.7,\"intPublishFare\":2958.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02N\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Raipur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Raipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"RPR\",\"destinationArrTime\":\"2022-06-26T19:05\",\"SegFlightNumber\":\"6E-5355\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-06-26T17:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":120,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:10\",\"strArrivalDtTime\":\"19:05\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Raipur\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Raipur Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Raipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-06-26T23:00\",\"SegFlightNumber\":\"6E-6235\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"RPR\",\"originDepTime\":\"2022-06-26T21:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:05\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-06-24 17:42:37'),(28,'53d29-55c70-7720a-56569','{\"FlightBookingData\":[{\"bookingId\":\"TJS106900281906\",\"FlightNumber\":\"UK-523\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-7437293808_3BOMBLRUK523_85351649548792\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:15\",\"TravelDate\":\"2022-07-06T16:30\",\"LocalFromTime\":\"2022-07-06 16:30\",\"FromUTCTime\":\"2022-07-06T16:30\",\"LocalToTime\":\"2022-07-06 18:15\",\"ToUTCTime\":\"2022-07-06T18:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5339.7,\"PublishedFareTxt\":\"5,340\",\"ApiResultIndex\":\"15-2-10-7437293808_3BOMBLRUK523_85351649548792\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARFT\":196,\"ARF\":3920,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure at a charge of INR 3920 per sector per Passenger\",\"fcs\":{\"CCFT\":9,\"ACF\":3920,\"CCF\":50,\"ACFT\":196}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4388,\"Tax\":951.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":226,\"CarrierMiscFee\":130,\"MUFee\":200,\"intPublishedFare\":5339.7,\"PublishedFare\":5457.7,\"OfferedFare\":5139.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-7437293808_0BOMBLRUK523_85393498203614\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":951.7,\"BaseFareCal\":5188.21,\"BaseFare\":4388,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":130,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":5457.7,\"CostToCustomer\":5457.7,\"BaseFareCal\":5188.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":5188.21,\"intOfferedFare\":5139.7,\"intPublishFare\":5339.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"710\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T18:15\",\"SegFlightNumber\":\"UK-523\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"710\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"53d29-55c70-7720a-56569\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-7437293808_3BOMBLRUK523_85351649548792\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106900281906\",\"FlightNumber\":\"UK-523\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-7437293808_3BOMBLRUK523_85351649548792\",\"strTraceId\":\"15-2-10-7437293808_3BOMBLRUK523_85351649548792\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:15\",\"TravelDate\":\"2022-07-06T16:30\",\"LocalFromTime\":\"2022-07-06 16:30\",\"FromUTCTime\":\"2022-07-06T16:30\",\"LocalToTime\":\"2022-07-06 18:15\",\"ToUTCTime\":\"2022-07-06T18:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5339.7,\"ApiResultIndex\":\"15-2-10-7437293808_3BOMBLRUK523_85351649548792\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"53d29-55c70-7720a-56569\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4388,\"Tax\":951.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":226,\"CarrierMiscFee\":130,\"MUFee\":200,\"intPublishedFare\":5339.7,\"PublishedFare\":5457.7,\"OfferedFare\":5139.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":951.7,\"BaseFareCal\":5188.21,\"BaseFare\":4388,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":226,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":130,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"710\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-07-06T18:15\",\"SegFlightNumber\":\"UK-523\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-06T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-7437293808_3BOMBLRUK523_85351649548792\",\"localFromDateTime\":\"2022-07-06 16:30\",\"localToDateTime\":\"2022-07-06 18:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"5\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_id\":[\"5\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"amith.c.shetty@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8105807501\",\"FirstName\":\"AMITH\",\"LastName\":\"C SHETTY\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-06-25-09-49-17\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"2\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_customer\":[[\"5\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Bengaluru (BLR)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"departure_date\":\"06\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"BOM\",\"to\":\"BLR\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"sourceCityId\":18676,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"53d29-55c70-7720a-56569\",\"from_city_\":\"1__BOM-BLR\"},\"sessionData\":{\"CustomerSysId\":\"2\",\"CustomerMemSysId\":[\"2\"],\"flight_booking_id\":[\"5\"]}}','2022-06-25 09:49:17'),(29,'76ba8-5c6a1-31b26-3d2d9','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6784\",\"keyIndex\":6,\"SegFlightNumberArr\":\"6E-6784\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9821711308_2BOMVNS6E6784_970807636182703\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"20:30\",\"TravelDate\":\"2022-07-05T18:20\",\"LocalFromTime\":\"2022-07-05 18:20\",\"FromUTCTime\":\"2022-07-05T18:20\",\"LocalToTime\":\"2022-07-05 20:30\",\"ToUTCTime\":\"2022-07-05T20:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 05 Jul\",\"ArrivalDateTxt\":\"Tue, 05 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"28449\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"VNS\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":1869,\"PublishedFareTxt\":\"1,869\",\"ApiResultIndex\":\"5-9821711308_2BOMVNS6E6784_970807636182703\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"76ba8-5c6a1-31b26-3d2d9\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1000,\"Tax\":750.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":55,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":1750.7,\"PublishedFare\":1869,\"PublishedFarePerPax\":1869,\"OfferedFare\":1550.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9821711308_2BOMVNS6E6784_970807636182703\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":750.7,\"BaseFareCal\":1599.21,\"BaseFare\":1000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":55,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":1868.7,\"CostToCustomer\":1868.7,\"BaseFareCal\":1599.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":1599.21,\"intOfferedFare\":1550.7,\"intPublishFare\":1750.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02J\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-05T20:30\",\"SegFlightNumber\":\"6E-6784\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-05T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-05 15:49:38'),(31,'db7f6-35b85-c2324-6ecad','{\"FlightBookingData\":[{\"bookingId\":\"TJS109300289985\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5590734702_12DELVNS6E167VNSBOM6E6813_2107340089007\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-06T17:55\",\"LocalFromTime\":\"2022-07-06 17:55\",\"FromUTCTime\":\"2022-07-06T17:55\",\"LocalToTime\":\"2022-07-06 23:20\",\"ToUTCTime\":\"2022-07-06T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2864.7,\"PublishedFareTxt\":\"2,865\",\"ApiResultIndex\":\"5-5590734702_12DELVNS6E167VNSBOM6E6813_2107340089007\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2982.7,\"OfferedFare\":2664.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5590734702_0DELVNS6E167VNSBOM6E6813_2123517415793\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"BaseFareCal\":2713.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":2982.7,\"CostToCustomer\":2982.7,\"BaseFareCal\":2713.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2713.21,\"intOfferedFare\":2664.7,\"intPublishFare\":2864.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"571\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-06T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-06T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"572\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-06T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-06T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"571\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"571\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"571\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"571\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"571\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"571\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"db7f6-35b85-c2324-6ecad\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5590734702_12DELVNS6E167VNSBOM6E6813_2107340089007\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109300289985\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5590734702_12DELVNS6E167VNSBOM6E6813_2107340089007\",\"strTraceId\":\"5-5590734702_12DELVNS6E167VNSBOM6E6813_2107340089007\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-06T17:55\",\"LocalFromTime\":\"2022-07-06 17:55\",\"FromUTCTime\":\"2022-07-06T17:55\",\"LocalToTime\":\"2022-07-06 23:20\",\"ToUTCTime\":\"2022-07-06T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2864.7,\"ApiResultIndex\":\"5-5590734702_12DELVNS6E167VNSBOM6E6813_2107340089007\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"db7f6-35b85-c2324-6ecad\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2982.7,\"OfferedFare\":2664.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"BaseFareCal\":2713.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"571\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-06T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-06T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"572\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-06T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-06T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5590734702_12DELVNS6E167VNSBOM6E6813_2107340089007\",\"localFromDateTime\":\"2022-07-06 17:55\",\"localToDateTime\":\"2022-07-06 23:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"6\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"6\",\"CustomerMemSysId\":[\"6\"],\"flight_booking_id\":[\"6\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"komal@hellogtx.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"9999977655\",\"FirstName\":\"Komal\",\"LastName\":\"Malhotra\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-06-12-56-54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"6\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"6\",\"CustomerMemSysId\":[\"6\"],\"flight_booking_customer\":[[\"6\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"06\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"db7f6-35b85-c2324-6ecad\",\"from_city_\":\"1__DEL-BOM\"},\"sessionData\":{\"CustomerSysId\":\"6\",\"CustomerMemSysId\":[\"6\"],\"flight_booking_id\":[\"6\"]}}','2022-07-06 12:56:54'),(36,'533ee-df4d0-226e8-140b6','{\"FlightBookingData\":[{\"bookingId\":\"TJS107000289986\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-7780066941_0JAIBOMI5679_2129228185429\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2022-07-06T20:25\",\"LocalFromTime\":\"2022-07-06 20:25\",\"FromUTCTime\":\"2022-07-06T20:25\",\"LocalToTime\":\"2022-07-06 22:25\",\"ToUTCTime\":\"2022-07-06T22:25\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3579.7,\"PublishedFareTxt\":\"3,580\",\"ApiResultIndex\":\"22-7780066941_0JAIBOMI5679_2129228185429\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":1119.7,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3579.7,\"PublishedFare\":3697.7,\"OfferedFare\":3379.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-7780066941_0JAIBOMI5679_2167546162039\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1119.7,\"BaseFareCal\":3428.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":776,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3697.7,\"CostToCustomer\":3697.7,\"BaseFareCal\":3428.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3428.21,\"intOfferedFare\":3379.7,\"intPublishFare\":3579.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"702\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-06T22:25\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-06T20:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"702\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"702\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"702\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"702\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"702\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"533ee-df4d0-226e8-140b6\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-7780066941_0JAIBOMI5679_2129228185429\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107000289986\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-7780066941_0JAIBOMI5679_2129228185429\",\"strTraceId\":\"22-7780066941_0JAIBOMI5679_2129228185429\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2022-07-06T20:25\",\"LocalFromTime\":\"2022-07-06 20:25\",\"FromUTCTime\":\"2022-07-06T20:25\",\"LocalToTime\":\"2022-07-06 22:25\",\"ToUTCTime\":\"2022-07-06T22:25\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 06 Jul\",\"ArrivalDateTxt\":\"Wed, 06 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3579.7,\"ApiResultIndex\":\"22-7780066941_0JAIBOMI5679_2129228185429\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"533ee-df4d0-226e8-140b6\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":1119.7,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3579.7,\"PublishedFare\":3697.7,\"OfferedFare\":3379.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1119.7,\"BaseFareCal\":3428.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":776,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"702\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-06T22:25\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-06T20:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-7780066941_0JAIBOMI5679_2129228185429\",\"localFromDateTime\":\"2022-07-06 20:25\",\"localToDateTime\":\"2022-07-06 22:25\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"7\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"7\",\"CustomerMemSysId\":[\"7\"],\"flight_booking_id\":[\"7\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"ajay\",\"LastName\":\"khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-06-12-58-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"7\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"7\",\"CustomerMemSysId\":[\"7\"],\"flight_booking_customer\":[[\"7\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jaipur (JAI)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"JAI\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"06\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"JAI\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"JAI\",\"to\":\"BOM\",\"sourceCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":12995,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"533ee-df4d0-226e8-140b6\",\"from_city_\":\"1__JAI-BOM\"},\"sessionData\":{\"CustomerSysId\":\"7\",\"CustomerMemSysId\":[\"7\"],\"flight_booking_id\":[\"7\"]}}','2022-07-06 12:58:11'),(37,'ae23a-8f216-173f2-500af','{\"FlightBookingData\":[{\"bookingId\":\"TJS103400289988\",\"FlightNumber\":\"I5-942\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8924697863_0JAIBOMI5942_2191216820650\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"12:25\",\"TravelDate\":\"2022-07-07T10:25\",\"LocalFromTime\":\"2022-07-07 10:25\",\"FromUTCTime\":\"2022-07-07T10:25\",\"LocalToTime\":\"2022-07-07 12:25\",\"ToUTCTime\":\"2022-07-07T12:25\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Thu, 07 Jul\",\"ArrivalDateTxt\":\"Thu, 07 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3579.7,\"PublishedFareTxt\":\"3,580\",\"ApiResultIndex\":\"22-8924697863_0JAIBOMI5942_2191216820650\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":1119.7,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3579.7,\"PublishedFare\":3697.7,\"OfferedFare\":3379.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-8924697863_0JAIBOMI5942_2219390683309\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1119.7,\"BaseFareCal\":3428.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":776,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3697.7,\"CostToCustomer\":3697.7,\"BaseFareCal\":3428.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3428.21,\"intOfferedFare\":3379.7,\"intPublishFare\":3579.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"513\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-07T12:25\",\"SegFlightNumber\":\"I5-942\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-07T10:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"MOCB\",\"Price\":400,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"513\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ae23a-8f216-173f2-500af\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-8924697863_0JAIBOMI5942_2191216820650\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103400289988\",\"FlightNumber\":\"I5-942\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8924697863_0JAIBOMI5942_2191216820650\",\"strTraceId\":\"22-8924697863_0JAIBOMI5942_2191216820650\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"12:25\",\"TravelDate\":\"2022-07-07T10:25\",\"LocalFromTime\":\"2022-07-07 10:25\",\"FromUTCTime\":\"2022-07-07T10:25\",\"LocalToTime\":\"2022-07-07 12:25\",\"ToUTCTime\":\"2022-07-07T12:25\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Thu, 07 Jul\",\"ArrivalDateTxt\":\"Thu, 07 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3579.7,\"ApiResultIndex\":\"22-8924697863_0JAIBOMI5942_2191216820650\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"ae23a-8f216-173f2-500af\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":1119.7,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3579.7,\"PublishedFare\":3697.7,\"OfferedFare\":3379.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1119.7,\"BaseFareCal\":3428.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":776,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"513\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-07T12:25\",\"SegFlightNumber\":\"I5-942\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-07T10:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-8924697863_0JAIBOMI5942_2191216820650\",\"localFromDateTime\":\"2022-07-07 10:25\",\"localToDateTime\":\"2022-07-07 12:25\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"8\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"8\",\"CustomerMemSysId\":[\"8\"],\"flight_booking_id\":[\"8\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"bharatbhanushali21@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9930301095\",\"FirstName\":\"bharat\",\"LastName\":\"bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-06-12-58-34\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"8\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"8\",\"CustomerMemSysId\":[\"8\"],\"flight_booking_customer\":[[\"8\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jaipur (JAI)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"JAI\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"07\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"JAI\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"JAI\",\"to\":\"BOM\",\"sourceCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":12995,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-07\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"ae23a-8f216-173f2-500af\",\"from_city_\":\"1__JAI-BOM\"},\"sessionData\":{\"CustomerSysId\":\"8\",\"CustomerMemSysId\":[\"8\"],\"flight_booking_id\":[\"8\"]}}','2022-07-06 12:58:34'),(39,'e93ca-18456-f458d-8aba9','{\"FlightBookingData\":[{\"bookingId\":\"TJS109100290468\",\"FlightNumber\":\"AI-673\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-4026626832_1BOMPATAI673_16214217777776\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2022-07-27T06:00\",\"LocalFromTime\":\"2022-07-27 06:00\",\"FromUTCTime\":\"2022-07-27T06:00\",\"LocalToTime\":\"2022-07-27 08:45\",\"ToUTCTime\":\"2022-07-27T08:45\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8365.7,\"PublishedFareTxt\":\"8,366\",\"ApiResultIndex\":\"15-2-10-4026626832_1BOMPATAI673_16214217777776\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-PAT\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 02 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 02 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7230,\"Tax\":1135.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":370,\"CarrierMiscFee\":170,\"MUFee\":200,\"intPublishedFare\":8365.7,\"PublishedFare\":8483.7,\"OfferedFare\":8165.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-4026626832_0BOMPATAI673_16275091475245\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1135.7,\"BaseFareCal\":8214.21,\"BaseFare\":7230,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":370,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":8483.7,\"CostToCustomer\":8483.7,\"BaseFareCal\":8214.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":8214.21,\"intOfferedFare\":8165.7,\"intPublishFare\":8365.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"839\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-27T08:45\",\"SegFlightNumber\":\"AI-673\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-27T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"839\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"e93ca-18456-f458d-8aba9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-4026626832_1BOMPATAI673_16214217777776\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109100290468\",\"FlightNumber\":\"AI-673\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-4026626832_1BOMPATAI673_16214217777776\",\"strTraceId\":\"15-2-10-4026626832_1BOMPATAI673_16214217777776\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2022-07-27T06:00\",\"LocalFromTime\":\"2022-07-27 06:00\",\"FromUTCTime\":\"2022-07-27T06:00\",\"LocalToTime\":\"2022-07-27 08:45\",\"ToUTCTime\":\"2022-07-27T08:45\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8365.7,\"ApiResultIndex\":\"15-2-10-4026626832_1BOMPATAI673_16214217777776\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"e93ca-18456-f458d-8aba9\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7230,\"Tax\":1135.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":370,\"CarrierMiscFee\":170,\"MUFee\":200,\"intPublishedFare\":8365.7,\"PublishedFare\":8483.7,\"OfferedFare\":8165.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1135.7,\"BaseFareCal\":8214.21,\"BaseFare\":7230,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":370,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"839\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-27T08:45\",\"SegFlightNumber\":\"AI-673\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-27T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-4026626832_1BOMPATAI673_16214217777776\",\"localFromDateTime\":\"2022-07-27 06:00\",\"localToDateTime\":\"2022-07-27 08:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"9\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"9\",\"CustomerMemSysId\":[\"9\"],\"flight_booking_id\":[\"9\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"kumar.saujanya@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9699883388\",\"FirstName\":\"SAUJANYA\",\"LastName\":\"KUMAR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-06-16-52-50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"9\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"9\",\"CustomerMemSysId\":[\"9\"],\"flight_booking_customer\":[[\"9\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Patna (PAT)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"PAT\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"departure_date\":\"27\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Jai Prakash Narayan Arpt (PAT)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"PAT\",\"from\":\"BOM\",\"to\":\"PAT\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"sourceCityId\":18676,\"destinationCityId\":20918,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"27\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-27\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"e93ca-18456-f458d-8aba9\",\"from_city_\":\"1__BOM-PAT\"},\"sessionData\":{\"CustomerSysId\":\"9\",\"CustomerMemSysId\":[\"9\"],\"flight_booking_id\":[\"9\"]}}','2022-07-06 16:52:50'),(40,'3779b-4c5ba-e00ea-ea3ff','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-167\",\"keyIndex\":28,\"SegFlightNumberArr\":\"6E-167, 6E-6813\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2844432341_13DELVNS6E167VNSBOM6E6813_85751722654440\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-07T17:55\",\"LocalFromTime\":\"2022-07-07 17:55\",\"FromUTCTime\":\"2022-07-07T17:55\",\"LocalToTime\":\"2022-07-07 23:20\",\"ToUTCTime\":\"2022-07-07T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Thu, 07 Jul\",\"ArrivalDateTxt\":\"Thu, 07 Jul\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2983,\"PublishedFareTxt\":\"2,983\",\"ApiResultIndex\":\"5-2844432341_13DELVNS6E167VNSBOM6E6813_85751722654440\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3779b-4c5ba-e00ea-ea3ff\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":647,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2983,\"PublishedFarePerPax\":2983,\"OfferedFare\":2664.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2844432341_13DELVNS6E167VNSBOM6E6813_85751722654440\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"BaseFareCal\":2713.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":647,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":2982.7,\"CostToCustomer\":2982.7,\"BaseFareCal\":2713.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2713.21,\"intOfferedFare\":2664.7,\"intPublishFare\":2864.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02N\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-07T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-07T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-07T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-07T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-07 12:10:27'),(44,'fdab1-f0e09-ba5f6-4dfa6','{\"BookingData\":[{\"bookingId\":\"TJS106100291196\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-07T17:55\",\"LocalFromTime\":\"2022-07-07 17:55\",\"FromUTCTime\":\"2022-07-07T17:55\",\"LocalToTime\":\"2022-07-07 23:20\",\"ToUTCTime\":\"2022-07-07T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Thu, 07 Jul\",\"ArrivalDateTxt\":\"Thu, 07 Jul\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2864.7,\"PublishedFareTxt\":\"2,865\",\"ApiResultIndex\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2982.7,\"OfferedFare\":2664.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2914742667_0DELVNS6E167VNSBOM6E6813_86006090671071\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"BaseFareCal\":2713.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":2982.7,\"CostToCustomer\":2982.7,\"BaseFareCal\":2713.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2713.21,\"intOfferedFare\":2664.7,\"intPublishFare\":2864.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"136\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-07T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-07T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"137\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-07T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-07T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"136\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"fdab1-f0e09-ba5f6-4dfa6\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-07 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106100291196\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"strTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-07T17:55\",\"LocalFromTime\":\"2022-07-07 17:55\",\"FromUTCTime\":\"2022-07-07T17:55\",\"LocalToTime\":\"2022-07-07 23:20\",\"ToUTCTime\":\"2022-07-07T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Thu, 07 Jul\",\"ArrivalDateTxt\":\"Thu, 07 Jul\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2864.7,\"ApiResultIndex\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"fdab1-f0e09-ba5f6-4dfa6\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2982.7,\"OfferedFare\":2664.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"BaseFareCal\":2713.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"136\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-07T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-07T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"137\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-07T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-07T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2914742667_13DELVNS6E167VNSBOM6E6813_85949631867171\",\"localFromDateTime\":\"2022-07-07 17:55\",\"localToDateTime\":\"2022-07-07 23:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"07\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-07\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"fdab1-f0e09-ba5f6-4dfa6\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=07%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"komal@hellogtx.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"9999977655\",\"FirstName\":\"Komal\",\"LastName\":\"Test\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-07-12-15-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"10\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"403949\",\"TPSysId\":\"403950\",\"VersionId\":[\"81255\"],\"CustomerSysId\":\"214169\",\"TrxId\":\"28993\",\"FareBreakdownid\":[\"356149\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"10\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"10\",\"CustomerMemSysId\":[\"10\"],\"flight_booking_id\":[\"10\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"10\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":2982.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-07 12:16:18'),(48,'bde17-05e94-739f9-c4190','{\"BookingData\":[{\"bookingId\":\"TJS102000291382\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2022-07-12T20:25\",\"LocalFromTime\":\"2022-07-12 20:25\",\"FromUTCTime\":\"2022-07-12T20:25\",\"LocalToTime\":\"2022-07-12 22:25\",\"ToUTCTime\":\"2022-07-12T22:25\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Tue, 12 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3579.7,\"PublishedFareTxt\":\"3,580\",\"ApiResultIndex\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":1119.7,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3579.7,\"PublishedFare\":3697.7,\"OfferedFare\":3379.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-4451558222_0JAIBOMI5679_94143747330849\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1119.7,\"BaseFareCal\":3428.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":776,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3697.7,\"CostToCustomer\":3697.7,\"BaseFareCal\":3428.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3428.21,\"intOfferedFare\":3379.7,\"intPublishFare\":3579.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"361\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-12T22:25\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-12T20:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"MOCB\",\"Price\":400,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"bde17-05e94-739f9-c4190\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS102000291382\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"strTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"20:25\",\"ArrivalTime\":\"22:25\",\"TravelDate\":\"2022-07-12T20:25\",\"LocalFromTime\":\"2022-07-12 20:25\",\"FromUTCTime\":\"2022-07-12T20:25\",\"LocalToTime\":\"2022-07-12 22:25\",\"ToUTCTime\":\"2022-07-12T22:25\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Tue, 12 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3579.7,\"ApiResultIndex\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"bde17-05e94-739f9-c4190\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":1119.7,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3579.7,\"PublishedFare\":3697.7,\"OfferedFare\":3379.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1119.7,\"BaseFareCal\":3428.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":776,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"361\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-12T22:25\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-12T20:25\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:25\",\"strArrivalDtTime\":\"22:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-4451558222_0JAIBOMI5679_94103155066505\",\"localFromDateTime\":\"2022-07-12 20:25\",\"localToDateTime\":\"2022-07-12 22:25\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jaipur (JAI)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"JAI\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"12\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"JAI\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"JAI\",\"to\":\"BOM\",\"sourceCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":12995,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-12\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"bde17-05e94-739f9-c4190\",\"from_city_\":\"1__JAI-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jaipur+%28JAI%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=JAI&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=12%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-07-14-33-15\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"11\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404130\",\"TPSysId\":\"404131\",\"VersionId\":[\"81332\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29012\",\"FareBreakdownid\":[\"356163\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"11\":{\"Currency\":\"INR\",\"key\":\"361\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"}},\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"11\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"11\",\"CustomerMemSysId\":[\"11\"],\"flight_booking_id\":[\"11\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"11\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3697.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-07 14:34:53'),(49,'d1712-0de15-f1876-29835','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-915\",\"keyIndex\":19,\"SegFlightNumberArr\":\"AI-915\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-4198441378_19DELDXBAI915_100550243593862\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"16:50\",\"ArrivalTime\":\"19:00\",\"TravelDate\":\"2022-08-15T16:50\",\"LocalFromTime\":\"2022-08-15 16:50\",\"FromUTCTime\":\"2022-08-15T16:50\",\"LocalToTime\":\"2022-08-15 19:00\",\"ToUTCTime\":\"2022-08-15T19:00\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":220,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"3h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":18624,\"PublishedFareTxt\":\"18,624\",\"ApiResultIndex\":\"12-15-2-10-4198441378_19DELDXBAI915_100550243593862\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d1712-0de15-f1876-29835\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16000,\"Tax\":2505.7,\"YQTax\":0,\"OtherCharges\":1383,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":805,\"CarrierMiscFee\":100,\"MUFee\":200,\"intPublishedFare\":18505.7,\"PublishedFare\":18624,\"PublishedFarePerPax\":18624,\"OfferedFare\":18305.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-4198441378_19DELDXBAI915_100550243593862\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2505.7,\"BaseFareCal\":18354.21,\"BaseFare\":16000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":805,\"MFT\":2.7,\"OT\":1383,\"MU\":200,\"YR\":100,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":18623.7,\"CostToCustomer\":18623.7,\"BaseFareCal\":18354.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":18354.21,\"intOfferedFare\":18305.7,\"intPublishFare\":18505.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"03G\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-15T19:00\",\"SegFlightNumber\":\"AI-915\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-15T16:50\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"16:50\",\"strArrivalDtTime\":\"19:00\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"AI-915\",\"keyIndex\":19,\"SegFlightNumberArr\":\"AI-915\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-4198441378_19DELDXBAI915_100550243593862\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"16:50\",\"ArrivalTime\":\"19:00\",\"TravelDate\":\"2022-08-15T16:50\",\"LocalFromTime\":\"2022-08-15 16:50\",\"FromUTCTime\":\"2022-08-15T16:50\",\"LocalToTime\":\"2022-08-15 19:00\",\"ToUTCTime\":\"2022-08-15T19:00\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":220,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"3h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":18624,\"PublishedFareTxt\":\"18,624\",\"ApiResultIndex\":\"12-15-2-10-4198441378_19DELDXBAI915_100550243593862\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d1712-0de15-f1876-29835\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16000,\"Tax\":2505.7,\"YQTax\":0,\"OtherCharges\":1383,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":805,\"CarrierMiscFee\":100,\"MUFee\":200,\"intPublishedFare\":18505.7,\"PublishedFare\":18624,\"PublishedFarePerPax\":18624,\"OfferedFare\":18305.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-4198441378_19DELDXBAI915_100550243593862\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2505.7,\"BaseFareCal\":18354.21,\"BaseFare\":16000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":805,\"MFT\":2.7,\"OT\":1383,\"MU\":200,\"YR\":100,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":18623.7,\"CostToCustomer\":18623.7,\"BaseFareCal\":18354.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":18354.21,\"intOfferedFare\":18305.7,\"intPublishFare\":18505.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}}],\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-15T19:00\",\"SegFlightNumber\":\"AI-915\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-15T16:50\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"16:50\",\"strArrivalDtTime\":\"19:00\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03I\"}]}],\"FlightBookingDataInbound\":null}','2022-07-07 16:26:12'),(53,'fb658-42ab6-b967a-b9b8a','{\"BookingData\":[{\"bookingId\":\"TJS100700291789\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:50\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-31T17:50\",\"LocalFromTime\":\"2022-08-31 17:50\",\"FromUTCTime\":\"2022-08-31T17:50\",\"LocalToTime\":\"2022-08-31 19:50\",\"ToUTCTime\":\"2022-08-31T19:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3256.7,\"PublishedFareTxt\":\"3,257\",\"ApiResultIndex\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":796.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3256.7,\"PublishedFare\":3374.7,\"OfferedFare\":3056.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"22-8352631570_0BOMJAII5678_107818176727963\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":[],\"CabinBaggage\":[],\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":796.7,\"BaseFareCal\":3105.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":453,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3374.7,\"CostToCustomer\":3374.7,\"BaseFareCal\":3105.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3105.21,\"intOfferedFare\":3056.7,\"intPublishFare\":3256.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"829\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-31T19:50\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-31T17:50\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:50\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 kg Check-in Baggage\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg Check-in Baggage\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"VPML\",\"Price\":212,\"Description\":\"No Meal\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"MOCB\",\"Price\":400,\"Description\":\"Matar Paneer with Tikona Paratha\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"829\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"fb658-42ab6-b967a-b9b8a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100700291789\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsRefundable\":null,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"strTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:50\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-31T17:50\",\"LocalFromTime\":\"2022-08-31 17:50\",\"FromUTCTime\":\"2022-08-31T17:50\",\"LocalToTime\":\"2022-08-31 19:50\",\"ToUTCTime\":\"2022-08-31T19:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3256.7,\"ApiResultIndex\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"fb658-42ab6-b967a-b9b8a\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2460,\"Tax\":796.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3256.7,\"PublishedFare\":3374.7,\"OfferedFare\":3056.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":796.7,\"BaseFareCal\":3105.21,\"BaseFare\":2460,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":453,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"829\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-31T19:50\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-31T17:50\",\"TripIndicator\":\"\",\"Baggage\":null,\"CabinBaggage\":null,\"IsBaggage\":false,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:50\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-8352631570_0BOMJAII5678_107797954194465\",\"localFromDateTime\":\"2022-08-31 17:50\",\"localToDateTime\":\"2022-08-31 19:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"31\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"31\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-31\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"fb658-42ab6-b967a-b9b8a\",\"from_city_\":\"1__BOM-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Jaipur+%28JAI%29&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&departure_date=31%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-07-18-18-49\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"3\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404479\",\"TPSysId\":\"404480\",\"VersionId\":[\"81427\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29030\",\"FareBreakdownid\":[\"356174\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"12\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"3\",\"CustomerMemSysId\":[\"3\"],\"flight_booking_id\":[\"12\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"12\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3374.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-07 18:20:22'),(57,'6c858-644be-0d764-9a961','{\"BookingData\":[{\"bookingId\":\"TJS107600291866\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:05\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-07-08T06:05\",\"LocalFromTime\":\"2022-07-08 06:05\",\"FromUTCTime\":\"2022-07-08T06:05\",\"LocalToTime\":\"2022-07-08 08:05\",\"ToUTCTime\":\"2022-07-08T08:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Fri, 08 Jul\",\"ArrivalDateTxt\":\"Fri, 08 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4224.7,\"PublishedFareTxt\":\"4,225\",\"ApiResultIndex\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2870,\"Tax\":1354.7,\"YQTax\":500,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4224.7,\"PublishedFare\":4342.7,\"OfferedFare\":4024.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7079368131_0BOMJAISG276_112529041391271\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1354.7,\"BaseFareCal\":4073.21,\"BaseFare\":2870,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":500,\"AGST\":176,\"MFT\":2.7,\"OT\":461,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4342.7,\"CostToCustomer\":4342.7,\"BaseFareCal\":4073.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4073.21,\"intOfferedFare\":4024.7,\"intPublishFare\":4224.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"430\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-08T08:05\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-08T06:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:05\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NVML\",\"Price\":275,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"VCC2\",\"Price\":300,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC6\",\"Price\":300,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC5\",\"Price\":300,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC4\",\"Price\":300,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC2\",\"Price\":300,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NCC1\",\"Price\":300,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"VGSW\",\"Price\":385,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"430\",\"Code\":\"NVSW\",\"Price\":434,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6c858-644be-0d764-9a961\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107600291866\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"strTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:05\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-07-08T06:05\",\"LocalFromTime\":\"2022-07-08 06:05\",\"FromUTCTime\":\"2022-07-08T06:05\",\"LocalToTime\":\"2022-07-08 08:05\",\"ToUTCTime\":\"2022-07-08T08:05\",\"IsDirect\":0,\"FareClass\":\"RS\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Fri, 08 Jul\",\"ArrivalDateTxt\":\"Fri, 08 Jul\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4224.7,\"ApiResultIndex\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"6c858-644be-0d764-9a961\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2870,\"Tax\":1354.7,\"YQTax\":500,\"OtherCharges\":461,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4224.7,\"PublishedFare\":4342.7,\"OfferedFare\":4024.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1354.7,\"BaseFareCal\":4073.21,\"BaseFare\":2870,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":500,\"AGST\":176,\"MFT\":2.7,\"OT\":461,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"430\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-08T08:05\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"RS\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-08T06:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"06:05\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7079368131_0BOMJAISG276_112498234808609\",\"localFromDateTime\":\"2022-07-08 06:05\",\"localToDateTime\":\"2022-07-08 08:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"08\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"6c858-644be-0d764-9a961\",\"from_city_\":\"1__BOM-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Jaipur+%28JAI%29&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&departure_date=08%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"bharatbhanushali21@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9930301095\",\"FirstName\":\"Bharat \",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-07-19-37-13\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404594\",\"TPSysId\":\"404595\",\"VersionId\":[\"81483\"],\"CustomerSysId\":\"214171\",\"TrxId\":\"29038\",\"FareBreakdownid\":[\"356178\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"13\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"12\",\"CustomerMemSysId\":[\"12\"],\"flight_booking_id\":[\"13\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"13\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4342.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-07 19:37:55'),(61,'00bce-5e0c2-fd03b-044ae','{\"BookingData\":[{\"bookingId\":\"TJS106500291869\",\"FlightNumber\":\"6E-648\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:10\",\"ArrivalTime\":\"00:25\",\"TravelDate\":\"2022-07-27T20:10\",\"LocalFromTime\":\"2022-07-27 20:10\",\"FromUTCTime\":\"2022-07-27T20:10\",\"LocalToTime\":\"2022-07-28 00:25\",\"ToUTCTime\":\"2022-07-28T00:25\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":255,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Thu, 28 Jul\",\"FlightDuration\":\"4h 15m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3433.7,\"PublishedFareTxt\":\"3,434\",\"ApiResultIndex\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"JAI-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2738,\"Tax\":695.7,\"YQTax\":0,\"OtherCharges\":336,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":142,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3433.7,\"PublishedFare\":3551.7,\"OfferedFare\":3233.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4789925805_0JAIDEL6E648DELBOM6E6261_112780096502806\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":695.7,\"BaseFareCal\":3282.21,\"BaseFare\":2738,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":142,\"MFT\":2.7,\"OT\":336,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3551.7,\"CostToCustomer\":3551.7,\"BaseFareCal\":3282.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3282.21,\"intOfferedFare\":3233.7,\"intPublishFare\":3433.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"732\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-27T21:15\",\"SegFlightNumber\":\"6E-648\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-27T20:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":65,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:10\",\"strArrivalDtTime\":\"21:15\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"733\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-28T00:25\",\"SegFlightNumber\":\"6E-6261\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"00:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"732\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"00bce-5e0c2-fd03b-044ae\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106500291869\",\"FlightNumber\":\"6E-648\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"strTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:10\",\"ArrivalTime\":\"00:25\",\"TravelDate\":\"2022-07-27T20:10\",\"LocalFromTime\":\"2022-07-27 20:10\",\"FromUTCTime\":\"2022-07-27T20:10\",\"LocalToTime\":\"2022-07-28 00:25\",\"ToUTCTime\":\"2022-07-28T00:25\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":65,\"LAYOVERDuration\":\"1h 5m\",\"FlyingMinutes\":255,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Thu, 28 Jul\",\"FlightDuration\":\"4h 15m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3433.7,\"ApiResultIndex\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"00bce-5e0c2-fd03b-044ae\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2738,\"Tax\":695.7,\"YQTax\":0,\"OtherCharges\":336,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":142,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3433.7,\"PublishedFare\":3551.7,\"OfferedFare\":3233.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":695.7,\"BaseFareCal\":3282.21,\"BaseFare\":2738,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":142,\"MFT\":2.7,\"OT\":336,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"732\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-27T21:15\",\"SegFlightNumber\":\"6E-648\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-27T20:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":65,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:10\",\"strArrivalDtTime\":\"21:15\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"1h 5m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"733\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-28T00:25\",\"SegFlightNumber\":\"6E-6261\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T22:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:20\",\"strArrivalDtTime\":\"00:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4789925805_23JAIDEL6E648DELBOM6E6261_112708440424681\",\"localFromDateTime\":\"2022-07-27 20:10\",\"localToDateTime\":\"2022-07-28 00:25\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jaipur (JAI)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"JAI\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"27\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"JAI\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"JAI\",\"to\":\"BOM\",\"sourceCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":12995,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"27\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-27\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"00bce-5e0c2-fd03b-044ae\",\"from_city_\":\"1__JAI-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jaipur+%28JAI%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=JAI&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=27%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-07-19-41-35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"4\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404598\",\"TPSysId\":\"404599\",\"VersionId\":[\"81486\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29039\",\"FareBreakdownid\":[\"356179\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"14\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"4\"],\"flight_booking_id\":[\"14\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"14\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3551.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-07 19:42:32'),(65,'45d95-b117e-3ca28-0f8ed','{\"BookingData\":[{\"bookingId\":\"TJS101400291881\",\"FlightNumber\":\"AI-673\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2022-07-31T06:00\",\"LocalFromTime\":\"2022-07-31 06:00\",\"FromUTCTime\":\"2022-07-31T06:00\",\"LocalToTime\":\"2022-07-31 08:45\",\"ToUTCTime\":\"2022-07-31T08:45\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 31 Jul\",\"ArrivalDateTxt\":\"Sun, 31 Jul\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8365.7,\"PublishedFareTxt\":\"8,366\",\"ApiResultIndex\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-PAT\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 02 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 02 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7230,\"Tax\":1135.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":370,\"CarrierMiscFee\":170,\"MUFee\":200,\"intPublishedFare\":8365.7,\"PublishedFare\":8483.7,\"OfferedFare\":8165.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-2613019004_0BOMPATAI673_114378456502877\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1135.7,\"BaseFareCal\":8214.21,\"BaseFare\":7230,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":370,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":8483.7,\"CostToCustomer\":8483.7,\"BaseFareCal\":8214.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":8214.21,\"intOfferedFare\":8165.7,\"intPublishFare\":8365.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"175\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-31T08:45\",\"SegFlightNumber\":\"AI-673\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-31T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"175\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"45d95-b117e-3ca28-0f8ed\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS101400291881\",\"FlightNumber\":\"AI-673\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"strTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2022-07-31T06:00\",\"LocalFromTime\":\"2022-07-31 06:00\",\"FromUTCTime\":\"2022-07-31T06:00\",\"LocalToTime\":\"2022-07-31 08:45\",\"ToUTCTime\":\"2022-07-31T08:45\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 31 Jul\",\"ArrivalDateTxt\":\"Sun, 31 Jul\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":8365.7,\"ApiResultIndex\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"45d95-b117e-3ca28-0f8ed\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7230,\"Tax\":1135.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":370,\"CarrierMiscFee\":170,\"MUFee\":200,\"intPublishedFare\":8365.7,\"PublishedFare\":8483.7,\"OfferedFare\":8165.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1135.7,\"BaseFareCal\":8214.21,\"BaseFare\":7230,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":370,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":170,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"175\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-31T08:45\",\"SegFlightNumber\":\"AI-673\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-31T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-2613019004_1BOMPATAI673_114349417505402\",\"localFromDateTime\":\"2022-07-31 06:00\",\"localToDateTime\":\"2022-07-31 08:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Patna (PAT)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"PAT\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"departure_date\":\"31\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Jai Prakash Narayan Arpt (PAT)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"PAT\",\"from\":\"BOM\",\"to\":\"PAT\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"sourceCityId\":18676,\"destinationCityId\":20918,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"31\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-31\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"45d95-b117e-3ca28-0f8ed\",\"from_city_\":\"1__BOM-PAT\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Patna+%28PAT%29&source_city=BOM&ContSysId_1=101&destination_city=PAT&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Patna%2C+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29%2C+India&departure_date=31%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"KUMAR.SAUJANYA@GMAIL.COM\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9699883388\",\"FirstName\":\"SAUJANYA\",\"LastName\":\"KUMAR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-07-20-07-52\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"404601\",\"TPSysId\":\"404602\",\"VersionId\":[\"81490\"],\"CustomerSysId\":\"205552\",\"TrxId\":\"29040\",\"FareBreakdownid\":[\"356180\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"15\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"13\",\"CustomerMemSysId\":[\"13\"],\"flight_booking_id\":[\"15\"]},\"selectedSeatSession\":{\"175\":{\"13\":{\"seatNo\":\"16C\",\"seatPosition\":{\"row\":16,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"key\":\"16-C\",\"code\":\"16C\",\"amount\":0,\"desc\":\"16C\"}}},\"flight_booking_id_Arr\":[\"15\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":8483.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-07 20:09:03'),(66,'4cf06-34a20-e8f05-037f6','{\"module\":\"hotels\",\"controller\":\"search\",\"action\":\"request-search\",\"selectDestination\":\"Mumbai\",\"check_in\":\"20\\/07\\/2022\",\"check_out\":\"21\\/07\\/2022\",\"Nationality\":\"106\",\"adult\":[\"2\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"infant\":[\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\",\"0\"],\"child1_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"child2_age\":[\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\",\"1\"],\"cityid\":\"\",\"TBBCityId\":\"\",\"destination\":\"\",\"hotel_countryCode\":\"\",\"GuestNationality\":\"IN\",\"room\":\"1\",\"totadlt\":\"2\",\"totchld\":\"0\",\"totinfnt\":\"0\",\"travelers\":\"\",\"roominfojson\":\"[{\\\"totalRoom\\\" : 1},{\\\"totalTraveler\\\" : 2},{\\\"totaladult\\\" : 2},{\\\"totalchild\\\" : 0},{\\\"totalinfant\\\" : 0}]\",\"memberdata\":[{\"NoOfAdults\":\"2\",\"NoOfChild\":\"0\",\"ChildAge\":null}],\"TBOdata\":{\"CheckInDate\":\"20\\/07\\/2022\",\"NoOfNights\":1,\"CityId\":\"\",\"CountryCode\":\"\",\"IsTBOMapped\":true,\"ResultCount\":null,\"PreferredCurrency\":\"INR\",\"GuestNationality\":\"IN\",\"NoOfRooms\":\"1\",\"RoomGuests\":[{\"NoOfAdults\":\"2\",\"NoOfChild\":\"0\",\"ChildAge\":null}],\"PreferredHotel\":\"\",\"MaxRating\":5,\"MinRating\":0,\"ReviewScore\":null,\"IsNearBySearchAllowed\":false},\"hotelsearchdata\":{\"searchQuery\":{\"checkinDate\":\"2022-07-20\",\"checkoutDate\":\"2022-07-21\",\"roomInfo\":[{\"numberOfAdults\":\"2\",\"numberOfChild\":\"0\",\"childAge\":null}],\"searchCriteria\":{\"city\":\"\",\"currency\":\"INR\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"fsc\":true}},\"sync\":false},\"nightCount\":1,\"strCheckin\":\"2022-07-20\",\"strCheckout\":\"2022-07-21\",\"SearchHotelTraceId\":\"4cf06-34a20-e8f05-037f6\",\"interNationalSearch\":false}','2022-07-08 14:08:22'),(69,'b2dc9-5ee86-6da33-f7b6b','{\"FlightBookingData\":[{\"bookingId\":\"TJS103500292648\",\"FlightNumber\":\"6E-218\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:05\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-07-09T11:05\",\"LocalFromTime\":\"2022-07-09 11:05\",\"FromUTCTime\":\"2022-07-09T11:05\",\"LocalToTime\":\"2022-07-09 13:15\",\"ToUTCTime\":\"2022-07-09T13:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 09 Jul\",\"ArrivalDateTxt\":\"Sat, 09 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"PublishedFareTxt\":\"4,282\",\"ApiResultIndex\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3579427625_0DELBOM6E218_198151075108214\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4399.7,\"CostToCustomer\":4399.7,\"BaseFareCal\":4130.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4130.21,\"intOfferedFare\":4081.7,\"intPublishFare\":4281.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"645\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-09T13:15\",\"SegFlightNumber\":\"6E-218\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-09T11:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:05\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"645\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b2dc9-5ee86-6da33-f7b6b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS103500292648\",\"FlightNumber\":\"6E-218\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"strTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:05\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-07-09T11:05\",\"LocalFromTime\":\"2022-07-09 11:05\",\"FromUTCTime\":\"2022-07-09T11:05\",\"LocalToTime\":\"2022-07-09 13:15\",\"ToUTCTime\":\"2022-07-09T13:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 09 Jul\",\"ArrivalDateTxt\":\"Sat, 09 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"ApiResultIndex\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"b2dc9-5ee86-6da33-f7b6b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"645\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-09T13:15\",\"SegFlightNumber\":\"6E-218\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-09T11:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:05\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3579427625_44DELBOM6E218_198131410573268\",\"localFromDateTime\":\"2022-07-09 11:05\",\"localToDateTime\":\"2022-07-09 13:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"16\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"14\",\"CustomerMemSysId\":[\"14\"],\"flight_booking_id\":[\"16\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"mybharatyatra@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9560102821\",\"FirstName\":\"NAMRATA\",\"LastName\":\"NIGAM\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-08-19-28-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"14\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"14\",\"CustomerMemSysId\":[\"14\"],\"flight_booking_customer\":[[\"16\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"09\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"b2dc9-5ee86-6da33-f7b6b\",\"from_city_\":\"1__DEL-BOM\"},\"sessionData\":{\"CustomerSysId\":\"14\",\"CustomerMemSysId\":[\"14\"],\"flight_booking_id\":[\"16\"]},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"405489\",\"TPSysId\":\"405490\",\"VersionId\":[\"81897\"],\"CustomerSysId\":\"202990\",\"TrxId\":\"29143\",\"FareBreakdownid\":[\"356269\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}}','2022-07-08 19:28:49'),(73,'450ac-ecfe5-ad96d-731bf','{\"BookingData\":[{\"bookingId\":\"TJS104400292683\",\"FlightNumber\":\"6E-5023\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2022-07-09T06:30\",\"LocalFromTime\":\"2022-07-09 06:30\",\"FromUTCTime\":\"2022-07-09T06:30\",\"LocalToTime\":\"2022-07-09 08:35\",\"ToUTCTime\":\"2022-07-09T08:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 09 Jul\",\"ArrivalDateTxt\":\"Sat, 09 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"PublishedFareTxt\":\"4,282\",\"ApiResultIndex\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0337876994_0DELBOM6E5023_199495063009013\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4399.7,\"CostToCustomer\":4399.7,\"BaseFareCal\":4130.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4130.21,\"intOfferedFare\":4081.7,\"intPublishFare\":4281.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"410\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-09T08:35\",\"SegFlightNumber\":\"6E-5023\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-09T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"410\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"450ac-ecfe5-ad96d-731bf\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS104400292683\",\"FlightNumber\":\"6E-5023\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"strTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2022-07-09T06:30\",\"LocalFromTime\":\"2022-07-09 06:30\",\"FromUTCTime\":\"2022-07-09T06:30\",\"LocalToTime\":\"2022-07-09 08:35\",\"ToUTCTime\":\"2022-07-09T08:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 09 Jul\",\"ArrivalDateTxt\":\"Sat, 09 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"ApiResultIndex\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"450ac-ecfe5-ad96d-731bf\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"410\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-09T08:35\",\"SegFlightNumber\":\"6E-5023\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-09T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0337876994_0DELBOM6E5023_199476034420106\",\"localFromDateTime\":\"2022-07-09 06:30\",\"localToDateTime\":\"2022-07-09 08:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"09\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"450ac-ecfe5-ad96d-731bf\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=09%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"mybharatyatra@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9560102821\",\"FirstName\":\"NAMRATA\",\"LastName\":\"NIGAM\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-08-19-46-35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"5\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"405498\",\"TPSysId\":\"405499\",\"VersionId\":[\"81900\"],\"CustomerSysId\":\"202990\",\"TrxId\":\"29144\",\"FareBreakdownid\":[\"356270\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"17\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"5\",\"CustomerMemSysId\":[\"5\"],\"flight_booking_id\":[\"17\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"17\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4399.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-08 19:47:13'),(75,'3836b-a0cde-49fcb-94bab','{\"FlightBookingData\":[{\"bookingId\":\"TJS100900292686\",\"FlightNumber\":\"6E-6784\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"00:00\",\"TravelDate\":\"2022-07-12T18:20\",\"LocalFromTime\":\"2022-07-12 18:20\",\"FromUTCTime\":\"2022-07-12T18:20\",\"LocalToTime\":\"2022-07-13 00:00\",\"ToUTCTime\":\"2022-07-13T00:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Wed, 13 Jul\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2853.7,\"PublishedFareTxt\":\"2,854\",\"ApiResultIndex\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":853.7,\"YQTax\":0,\"OtherCharges\":528,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2853.7,\"PublishedFare\":2971.7,\"OfferedFare\":2653.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6225714243_0BOMVNS6E6784VNSDEL6E2105_200003927071868\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":853.7,\"BaseFareCal\":2702.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":528,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":2971.7,\"CostToCustomer\":2971.7,\"BaseFareCal\":2702.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2702.21,\"intOfferedFare\":2653.7,\"intPublishFare\":2853.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"854\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-12T20:30\",\"SegFlightNumber\":\"6E-6784\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-12T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":115,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"1h 55m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"855\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-13T00:00\",\"SegFlightNumber\":\"6E-2105\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-12T22:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"00:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"854\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"3836b-a0cde-49fcb-94bab\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100900292686\",\"FlightNumber\":\"6E-6784\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"strTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"00:00\",\"TravelDate\":\"2022-07-12T18:20\",\"LocalFromTime\":\"2022-07-12 18:20\",\"FromUTCTime\":\"2022-07-12T18:20\",\"LocalToTime\":\"2022-07-13 00:00\",\"ToUTCTime\":\"2022-07-13T00:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Wed, 13 Jul\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2853.7,\"ApiResultIndex\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"3836b-a0cde-49fcb-94bab\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":853.7,\"YQTax\":0,\"OtherCharges\":528,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2853.7,\"PublishedFare\":2971.7,\"OfferedFare\":2653.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":853.7,\"BaseFareCal\":2702.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":528,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"854\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-12T20:30\",\"SegFlightNumber\":\"6E-6784\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-12T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":115,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"1h 55m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"855\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-13T00:00\",\"SegFlightNumber\":\"6E-2105\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-12T22:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"00:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6225714243_34BOMVNS6E6784VNSDEL6E2105_199989446151774\",\"localFromDateTime\":\"2022-07-12 18:20\",\"localToDateTime\":\"2022-07-13 00:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"18\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"6\",\"CustomerMemSysId\":[\"6\"],\"flight_booking_id\":[\"18\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"Param Karmanya\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-08-19-55-04\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"6\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"6\",\"CustomerMemSysId\":[\"6\"],\"flight_booking_customer\":[[\"18\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"12\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-12\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"3836b-a0cde-49fcb-94bab\",\"from_city_\":\"1__BOM-DEL\"},\"sessionData\":{\"CustomerSysId\":\"6\",\"CustomerMemSysId\":[\"6\"],\"flight_booking_id\":[\"18\"]}}','2022-07-08 19:55:04'),(79,'d0abb-2f7e4-5fef2-ada57','{\"BookingData\":[{\"bookingId\":\"TJS100400292694\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-07-12T02:40\",\"LocalFromTime\":\"2022-07-12 02:40\",\"FromUTCTime\":\"2022-07-12T02:40\",\"LocalToTime\":\"2022-07-12 04:50\",\"ToUTCTime\":\"2022-07-12T04:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Tue, 12 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4270.7,\"PublishedFareTxt\":\"4,271\",\"ApiResultIndex\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":870.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4270.7,\"PublishedFare\":4388.7,\"OfferedFare\":4070.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9166134328_0BOMDEL6E2111_200089756958544\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.7,\"BaseFareCal\":4119.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4388.7,\"CostToCustomer\":4388.7,\"BaseFareCal\":4119.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4119.21,\"intOfferedFare\":4070.7,\"intPublishFare\":4270.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"76\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-12T04:50\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-12T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"76\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d0abb-2f7e4-5fef2-ada57\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100400292694\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"strTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-07-12T02:40\",\"LocalFromTime\":\"2022-07-12 02:40\",\"FromUTCTime\":\"2022-07-12T02:40\",\"LocalToTime\":\"2022-07-12 04:50\",\"ToUTCTime\":\"2022-07-12T04:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 12 Jul\",\"ArrivalDateTxt\":\"Tue, 12 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4270.7,\"ApiResultIndex\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"d0abb-2f7e4-5fef2-ada57\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":870.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4270.7,\"PublishedFare\":4388.7,\"OfferedFare\":4070.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.7,\"BaseFareCal\":4119.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"76\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-12T04:50\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-12T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9166134328_14BOMDEL6E2111_200072916363265\",\"localFromDateTime\":\"2022-07-12 02:40\",\"localToDateTime\":\"2022-07-12 04:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"DirectFlight\":\"1\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"12\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-12\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"d0abb-2f7e4-5fef2-ada57\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&DirectFlight=1&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=12%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"Param Karmanya\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-08-19-56-36\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"7\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"405504\",\"TPSysId\":\"405505\",\"VersionId\":[\"81907\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29145\",\"FareBreakdownid\":[\"356271\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"19\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"7\",\"CustomerMemSysId\":[\"7\"],\"flight_booking_id\":[\"19\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"19\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4388.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-08 19:57:12'),(80,'fa0c5-6bf83-fb140-14e3a','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6326\",\"keyIndex\":45,\"SegFlightNumberArr\":\"6E-6326, 6E-895\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8312018104_22BOMCCU6E6326CCUPAT6E895_287469104162006\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:20\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2022-07-27T13:20\",\"LocalFromTime\":\"2022-07-27 13:20\",\"FromUTCTime\":\"2022-07-27T13:20\",\"LocalToTime\":\"2022-07-27 18:50\",\"ToUTCTime\":\"2022-07-27T18:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":330,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"5h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5877,\"PublishedFareTxt\":\"5,877\",\"ApiResultIndex\":\"5-8312018104_22BOMCCU6E6326CCUPAT6E895_287469104162006\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"fa0c5-6bf83-fb140-14e3a\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4767,\"Tax\":991.7,\"YQTax\":0,\"OtherCharges\":774,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":5758.7,\"PublishedFare\":5877,\"PublishedFarePerPax\":5877,\"OfferedFare\":5558.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8312018104_22BOMCCU6E6326CCUPAT6E895_287469104162006\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":991.7,\"BaseFareCal\":5607.21,\"BaseFare\":4767,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":774,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":5876.7,\"CostToCustomer\":5876.7,\"BaseFareCal\":5607.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":5607.21,\"intOfferedFare\":5558.7,\"intPublishFare\":5758.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"00Z\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-07-27T16:00\",\"SegFlightNumber\":\"6E-6326\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-27T13:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":160,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:20\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-27T18:50\",\"SegFlightNumber\":\"6E-895\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-07-27T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-09 20:12:44'),(82,'2dab7-3a7a6-14ca1-02bdd','{\"FlightBookingData\":[{\"bookingId\":\"TJS106900292872\",\"FlightNumber\":\"UK-853\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-03T16:00\",\"LocalFromTime\":\"2022-08-03 16:00\",\"FromUTCTime\":\"2022-08-03T16:00\",\"LocalToTime\":\"2022-08-03 17:45\",\"ToUTCTime\":\"2022-08-03T17:45\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 03 Aug\",\"ArrivalDateTxt\":\"Wed, 03 Aug\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4218.7,\"PublishedFareTxt\":\"4,219\",\"ApiResultIndex\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARFT\":196,\"ARF\":3920,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure at a charge of INR 3920 per sector per Passenger\",\"fcs\":{\"ACFT\":196,\"ACF\":3920,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3320,\"Tax\":898.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":130,\"MUFee\":200,\"intPublishedFare\":4218.7,\"PublishedFare\":4336.7,\"OfferedFare\":4018.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-3547428775_0BOMBLRUK853_369309118368549\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":898.7,\"BaseFareCal\":4067.21,\"BaseFare\":3320,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":173,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":130,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4336.7,\"CostToCustomer\":4336.7,\"BaseFareCal\":4067.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4067.21,\"intOfferedFare\":4018.7,\"intPublishFare\":4218.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"964\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-03T17:45\",\"SegFlightNumber\":\"UK-853\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-03T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"964\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2dab7-3a7a6-14ca1-02bdd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS106900292872\",\"FlightNumber\":\"UK-853\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"strTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-03T16:00\",\"LocalFromTime\":\"2022-08-03 16:00\",\"FromUTCTime\":\"2022-08-03T16:00\",\"LocalToTime\":\"2022-08-03 17:45\",\"ToUTCTime\":\"2022-08-03T17:45\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 03 Aug\",\"ArrivalDateTxt\":\"Wed, 03 Aug\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4218.7,\"ApiResultIndex\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"2dab7-3a7a6-14ca1-02bdd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3320,\"Tax\":898.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":173,\"CarrierMiscFee\":130,\"MUFee\":200,\"intPublishedFare\":4218.7,\"PublishedFare\":4336.7,\"OfferedFare\":4018.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":898.7,\"BaseFareCal\":4067.21,\"BaseFare\":3320,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":173,\"MFT\":2.7,\"OT\":378,\"MU\":200,\"YR\":130,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"964\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-03T17:45\",\"SegFlightNumber\":\"UK-853\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-03T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-3547428775_0BOMBLRUK853_369300352565748\",\"localFromDateTime\":\"2022-08-03 16:00\",\"localToDateTime\":\"2022-08-03 17:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"20\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"4\"],\"flight_booking_id\":[\"20\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"amith.c.shetty@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8105807501\",\"FirstName\":\"AMITH\",\"LastName\":\"SHETTY\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-10-18-56-58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"4\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"4\"],\"flight_booking_customer\":[[\"20\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Bengaluru (BLR)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"departure_date\":\"03\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"BOM\",\"to\":\"BLR\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"sourceCityId\":18676,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-03\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"2dab7-3a7a6-14ca1-02bdd\",\"from_city_\":\"1__BOM-BLR\"},\"sessionData\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"4\"],\"flight_booking_id\":[\"20\"]}}','2022-07-10 18:56:58'),(86,'5b7cc-276fc-0a05c-a8aa8','{\"BookingData\":[{\"bookingId\":\"TJS105000293026\",\"FlightNumber\":\"6E-212\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:00\",\"ArrivalTime\":\"13:50\",\"TravelDate\":\"2022-07-27T13:00\",\"LocalFromTime\":\"2022-07-27 13:00\",\"FromUTCTime\":\"2022-07-27T13:00\",\"LocalToTime\":\"2022-07-27 13:50\",\"ToUTCTime\":\"2022-07-27T13:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":50,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"0h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":764.7,\"PublishedFareTxt\":\"765\",\"ApiResultIndex\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":100,\"Tax\":664.7,\"YQTax\":0,\"OtherCharges\":439,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":8,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":764.7,\"PublishedFare\":882.7,\"OfferedFare\":564.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5918287073_0DELJAI6E212_430971354198719\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":664.7,\"BaseFareCal\":613.21,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":8,\"MFT\":2.7,\"OT\":439,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":882.7,\"CostToCustomer\":882.7,\"BaseFareCal\":613.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":613.21,\"intOfferedFare\":564.7,\"intPublishFare\":764.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"818\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-27T13:50\",\"SegFlightNumber\":\"6E-212\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"13:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"818\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5b7cc-276fc-0a05c-a8aa8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105000293026\",\"FlightNumber\":\"6E-212\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"strTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:00\",\"ArrivalTime\":\"13:50\",\"TravelDate\":\"2022-07-27T13:00\",\"LocalFromTime\":\"2022-07-27 13:00\",\"FromUTCTime\":\"2022-07-27T13:00\",\"LocalToTime\":\"2022-07-27 13:50\",\"ToUTCTime\":\"2022-07-27T13:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":50,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"0h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":764.7,\"ApiResultIndex\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"5b7cc-276fc-0a05c-a8aa8\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":100,\"Tax\":664.7,\"YQTax\":0,\"OtherCharges\":439,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":8,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":764.7,\"PublishedFare\":882.7,\"OfferedFare\":564.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":664.7,\"BaseFareCal\":613.21,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":8,\"MFT\":2.7,\"OT\":439,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"818\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-27T13:50\",\"SegFlightNumber\":\"6E-212\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":50,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"13:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5918287073_2DELJAI6E212_430941512757471\",\"localFromDateTime\":\"2022-07-27 13:00\",\"localToDateTime\":\"2022-07-27 13:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"27\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"DEL\",\"to\":\"JAI\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":7701,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"27\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-27\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"5b7cc-276fc-0a05c-a8aa8\",\"from_city_\":\"1__DEL-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Jaipur+%28JAI%29&source_city=DEL&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&departure_date=27%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-11-12-04-32\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"8\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"406526\",\"TPSysId\":\"406527\",\"VersionId\":[\"82204\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"29223\",\"FareBreakdownid\":[\"356338\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"21\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"8\",\"CustomerMemSysId\":[\"8\"],\"flight_booking_id\":[\"21\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"21\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":882.7},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-11 12:05:46'),(90,'49fd8-fa47d-c7f90-78838','{\"BookingData\":[{\"bookingId\":\"TJS107200295165\",\"FlightNumber\":\"AI-610\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"19:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-07-15T19:10\",\"LocalFromTime\":\"2022-07-15 19:10\",\"FromUTCTime\":\"2022-07-15T19:10\",\"LocalToTime\":\"2022-07-16 18:20\",\"ToUTCTime\":\"2022-07-16T18:20\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1135,\"LAYOVERDuration\":\"18h 55m\",\"FlyingMinutes\":1390,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"23h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":15776.7,\"PublishedFareTxt\":\"15,777\",\"ApiResultIndex\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 02 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 02 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13860,\"Tax\":1916.7,\"YQTax\":0,\"OtherCharges\":649,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":710,\"CarrierMiscFee\":340,\"MUFee\":200,\"intPublishedFare\":15776.7,\"PublishedFare\":15894.7,\"OfferedFare\":15576.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-2823094429_0BLRBOMAI610BOMDELAI687_539734775823323\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1916.7,\"BaseFareCal\":15625.21,\"BaseFare\":13860,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":710,\"MFT\":2.7,\"OT\":649,\"MU\":200,\"YR\":340,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":15894.7,\"CostToCustomer\":15894.7,\"BaseFareCal\":15625.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":15625.21,\"intOfferedFare\":15576.7,\"intPublishFare\":15776.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"869\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-15T21:05\",\"SegFlightNumber\":\"AI-610\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-07-15T19:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":1135,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:10\",\"strArrivalDtTime\":\"21:05\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"18h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"870\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-16T18:20\",\"SegFlightNumber\":\"AI-687\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-16T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"869\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"49fd8-fa47d-c7f90-78838\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS107200295165\",\"FlightNumber\":\"AI-610\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"strTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"19:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-07-15T19:10\",\"LocalFromTime\":\"2022-07-15 19:10\",\"FromUTCTime\":\"2022-07-15T19:10\",\"LocalToTime\":\"2022-07-16 18:20\",\"ToUTCTime\":\"2022-07-16T18:20\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":1135,\"LAYOVERDuration\":\"18h 55m\",\"FlyingMinutes\":1390,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"23h 10m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":15776.7,\"ApiResultIndex\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"49fd8-fa47d-c7f90-78838\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13860,\"Tax\":1916.7,\"YQTax\":0,\"OtherCharges\":649,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":710,\"CarrierMiscFee\":340,\"MUFee\":200,\"intPublishedFare\":15776.7,\"PublishedFare\":15894.7,\"OfferedFare\":15576.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1916.7,\"BaseFareCal\":15625.21,\"BaseFare\":13860,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":710,\"MFT\":2.7,\"OT\":649,\"MU\":200,\"YR\":340,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"869\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-15T21:05\",\"SegFlightNumber\":\"AI-610\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-07-15T19:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":1135,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:10\",\"strArrivalDtTime\":\"21:05\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"18h 55m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"870\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-16T18:20\",\"SegFlightNumber\":\"AI-687\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-16T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-2823094429_92BLRBOMAI610BOMDELAI687_539382645753314\",\"localFromDateTime\":\"2022-07-15 19:10\",\"localToDateTime\":\"2022-07-16 18:20\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2262,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Bengaluru (BLR)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"BLR\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"15\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BLR\",\"to\":\"DEL\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":2262,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"49fd8-fa47d-c7f90-78838\",\"from_city_\":\"1__BLR-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Bengaluru+%28BLR%29&mytrip_city_to=Delhi+%28DEL%29&source_city=BLR&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=15%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"navratan@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9997513572\",\"FirstName\":\"Navratan\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-12-18-17-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"15\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"407740\",\"TPSysId\":\"407741\",\"VersionId\":[\"82585\"],\"CustomerSysId\":\"216027\",\"TrxId\":\"29327\",\"FareBreakdownid\":[\"356428\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"22\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"15\",\"CustomerMemSysId\":[\"15\"],\"flight_booking_id\":[\"22\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"22\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":15894.7},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216027\",\"TPSysId\":\"407741\",\"MasterTPSysId\":\"407740\",\"ProposalID\":\"407741\\/V1\",\"InvoiceDate\":\"2022-07-12\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-12\",\"PaymentDate\":\"2022-07-12\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":15858.7,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":15894.7,\"TotalDueAmount\":0,\"InvoiceValue\":15894.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-DEL-Air India AI-610\",\"ItemQty\":1,\"ItemRates\":15658.7,\"Total\":15658.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":15894.7,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":15858.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-12 18:19:17'),(95,'e2db5-a786d-a857a-db53e','{\"BookingData\":[{\"bookingId\":\"TJS100400295658\",\"FlightNumber\":\"6E-2112\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2022-08-08T05:30\",\"LocalFromTime\":\"2022-08-08 05:30\",\"FromUTCTime\":\"2022-08-08T05:30\",\"LocalToTime\":\"2022-08-08 07:40\",\"ToUTCTime\":\"2022-08-08T07:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"PublishedFareTxt\":\"4,072\",\"ApiResultIndex\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3200,\"Tax\":871.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4071.7,\"PublishedFare\":4189.7,\"OfferedFare\":3871.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9143696010_0DELBOM6E2112_602733691552995\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":871.7,\"BaseFareCal\":3920.21,\"BaseFare\":3200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4189.7,\"CostToCustomer\":4189.7,\"BaseFareCal\":3920.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3920.21,\"intOfferedFare\":3871.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"244\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T07:40\",\"SegFlightNumber\":\"6E-2112\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"244\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"e2db5-a786d-a857a-db53e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS100400295658\",\"FlightNumber\":\"6E-2112\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"strTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2022-08-08T05:30\",\"LocalFromTime\":\"2022-08-08 05:30\",\"FromUTCTime\":\"2022-08-08T05:30\",\"LocalToTime\":\"2022-08-08 07:40\",\"ToUTCTime\":\"2022-08-08T07:40\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4071.7,\"ApiResultIndex\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"e2db5-a786d-a857a-db53e\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3200,\"Tax\":871.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4071.7,\"PublishedFare\":4189.7,\"OfferedFare\":3871.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":871.7,\"BaseFareCal\":3920.21,\"BaseFare\":3200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"244\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T07:40\",\"SegFlightNumber\":\"6E-2112\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9143696010_1DELBOM6E2112_602556819388763\",\"localFromDateTime\":\"2022-08-08 05:30\",\"localToDateTime\":\"2022-08-08 07:40\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"e2db5-a786d-a857a-db53e\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=08%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-11-47-38\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408046\",\"TPSysId\":\"408047\",\"VersionId\":[\"82655\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29362\",\"FareBreakdownid\":[\"356453\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"23\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\"],\"flight_booking_id\":[\"23\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"23\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4189.7},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408047\",\"MasterTPSysId\":\"408046\",\"ProposalID\":\"408047\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4153.7,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4189.7,\"TotalDueAmount\":0,\"InvoiceValue\":4189.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-IndiGo 6E-2112\",\"ItemQty\":1,\"ItemRates\":3953.7,\"Total\":3953.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4189.7,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":4153.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 11:48:44'),(99,'9a82a-a192f-c0f0c-11e37','{\"BookingData\":[{\"bookingId\":\"TJS108700295674\",\"FlightNumber\":\"AI-469\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-6761490418_74DELRPRAI469RPRVTZAI651VTZBOMAI651_603347894959947\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"05:20\",\"ArrivalTime\":\"16:25\",\"TravelDate\":\"2022-08-08T05:20\",\"LocalFromTime\":\"2022-08-08 05:20\",\"FromUTCTime\":\"2022-08-08T05:20\",\"LocalToTime\":\"2022-08-08 16:25\",\"ToUTCTime\":\"2022-08-08T16:25\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"Raipur\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":665,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"11h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":11277.7,\"PublishedFareTxt\":\"11,278\",\"ApiResultIndex\":\"15-2-10-6761490418_74DELRPRAI469RPRVTZAI651VTZBOMAI651_603347894959947\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non refundable (Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 02 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 02 Hrs before scheduled departure__nls__Cancellation Penalty : INR 3,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9260,\"Tax\":2017.7,\"YQTax\":0,\"OtherCharges\":980,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":480,\"CarrierMiscFee\":340,\"MUFee\":200,\"intPublishedFare\":11277.7,\"PublishedFare\":11395.7,\"OfferedFare\":11077.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-6761490418_0DELRPRAI469RPRVTZAI651VTZBOMAI651_603410654315840\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2017.7,\"BaseFareCal\":11126.21,\"BaseFare\":9260,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":480,\"MFT\":2.7,\"OT\":980,\"MU\":200,\"YR\":340,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":11395.7,\"CostToCustomer\":11395.7,\"BaseFareCal\":11126.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":11126.21,\"intOfferedFare\":11077.7,\"intPublishFare\":11277.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"270\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raipur Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Raipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"RPR\",\"destinationArrTime\":\"2022-08-08T07:10\",\"SegFlightNumber\":\"AI-469\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":315,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"5h 15m\",\"LAYOVERCity\":\"Raipur\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"271\",\"originAirportName\":\"Raipur Arpt\",\"destinationAirportName\":\"Vishakhapatnam\",\"originCityName\":\"Raipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Vishakhapatanam\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VTZ\",\"destinationArrTime\":\"2022-08-08T13:30\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"RPR\",\"originDepTime\":\"2022-08-08T12:25\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":40,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:25\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Vishakhapatanam\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"272\",\"originAirportName\":\"Vishakhapatnam\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Vishakhapatanam\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T16:25\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"VTZ\",\"originDepTime\":\"2022-08-08T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"16:25\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"270\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9a82a-a192f-c0f0c-11e37\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-10-6761490418_74DELRPRAI469RPRVTZAI651VTZBOMAI651_603347894959947\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS108700295674\",\"FlightNumber\":\"AI-469\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-10-6761490418_74DELRPRAI469RPRVTZAI651VTZBOMAI651_603347894959947\",\"strTraceId\":\"15-2-10-6761490418_74DELRPRAI469RPRVTZAI651VTZBOMAI651_603347894959947\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"05:20\",\"ArrivalTime\":\"16:25\",\"TravelDate\":\"2022-08-08T05:20\",\"LocalFromTime\":\"2022-08-08 05:20\",\"FromUTCTime\":\"2022-08-08T05:20\",\"LocalToTime\":\"2022-08-08 16:25\",\"ToUTCTime\":\"2022-08-08T16:25\",\"IsDirect\":0,\"FareClass\":\"L\",\"LAYOVERCity\":\"Raipur\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":665,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"11h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":11277.7,\"ApiResultIndex\":\"15-2-10-6761490418_74DELRPRAI469RPRVTZAI651VTZBOMAI651_603347894959947\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"9a82a-a192f-c0f0c-11e37\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9260,\"Tax\":2017.7,\"YQTax\":0,\"OtherCharges\":980,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":480,\"CarrierMiscFee\":340,\"MUFee\":200,\"intPublishedFare\":11277.7,\"PublishedFare\":11395.7,\"OfferedFare\":11077.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2017.7,\"BaseFareCal\":11126.21,\"BaseFare\":9260,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":480,\"MFT\":2.7,\"OT\":980,\"MU\":200,\"YR\":340,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"270\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raipur Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Raipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"RPR\",\"destinationArrTime\":\"2022-08-08T07:10\",\"SegFlightNumber\":\"AI-469\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":315,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:10\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":\"5h 15m\",\"LAYOVERCity\":\"Raipur\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"271\",\"originAirportName\":\"Raipur Arpt\",\"destinationAirportName\":\"Vishakhapatnam\",\"originCityName\":\"Raipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Vishakhapatanam\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VTZ\",\"destinationArrTime\":\"2022-08-08T13:30\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"RPR\",\"originDepTime\":\"2022-08-08T12:25\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":40,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"12:25\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Vishakhapatanam\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"272\",\"originAirportName\":\"Vishakhapatnam\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Vishakhapatanam\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T16:25\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"L\",\"originAirportCode\":\"VTZ\",\"originDepTime\":\"2022-08-08T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"16:25\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-10-6761490418_74DELRPRAI469RPRVTZAI651VTZBOMAI651_603347894959947\",\"localFromDateTime\":\"2022-08-08 05:20\",\"localToDateTime\":\"2022-08-08 16:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"9a82a-a192f-c0f0c-11e37\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=08%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-11-58-18\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408071\",\"TPSysId\":\"408072\",\"VersionId\":[\"82662\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29365\",\"FareBreakdownid\":[\"356456\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"24\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\"],\"flight_booking_id\":[\"24\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"24\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":11395.7},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408072\",\"MasterTPSysId\":\"408071\",\"ProposalID\":\"408072\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":11359.7,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":11395.7,\"TotalDueAmount\":0,\"InvoiceValue\":11395.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Air India AI-469\",\"ItemQty\":1,\"ItemRates\":11159.7,\"Total\":11159.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":11395.7,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":11359.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 11:59:47'),(104,'40604-91975-b03f5-43aca','{\"BookingData\":[{\"bookingId\":\"TJS118100295694\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-08-08T16:30\",\"LocalFromTime\":\"2022-08-08 16:30\",\"FromUTCTime\":\"2022-08-08T16:30\",\"LocalToTime\":\"2022-08-08 18:25\",\"ToUTCTime\":\"2022-08-08T18:25\",\"IsDirect\":0,\"FareClass\":\"XB\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":205,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":26130.8,\"PublishedFareTxt\":\"26,131\",\"ApiResultIndex\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DXB\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 4,000 + Fare Difference __nls__ Before 96 hrs Rs 3,500 + Fare Difference\",\"fcs\":{\"ARFT\":200,\"ARF\":4000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 5,000 __nls__ Before 96 hrs Rs 4,500\",\"fcs\":{\"ACFT\":250,\"ACF\":5000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21200,\"Tax\":4930.8,\"YQTax\":0,\"OtherCharges\":2972,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1088,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":26130.8,\"PublishedFare\":26130.8,\"OfferedFare\":25330.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1925110088_0DELDXBSG5_604041221578366\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FAMILY\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":122.03,\"apiMarkup\":677.97,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2465.4,\"BaseFareCal\":12726.42,\"BaseFare\":10600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":544,\"MFT\":5.4,\"OT\":1486,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":2465.4,\"BaseFareCal\":12726.42,\"BaseFare\":10600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":544,\"MFT\":5.4,\"OT\":1486,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":61.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":677.97,\"apiTaxOnMarkup\":122.03,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.03,\"PublishFare\":26130.8,\"CostToCustomer\":26130.8,\"BaseFareCal\":25452.83,\"intCommisionEarnedForAgency\":677.97,\"CostToCompany\":25452.83,\"intOfferedFare\":25330.8,\"intPublishFare\":26130.8,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}},\"Segments\":[{\"segmentid\":\"639\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-08T18:25\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XB\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"639\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"40604-91975-b03f5-43aca\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":4,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS118100295694\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"strTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-08-08T16:30\",\"LocalFromTime\":\"2022-08-08 16:30\",\"FromUTCTime\":\"2022-08-08T16:30\",\"LocalToTime\":\"2022-08-08 18:25\",\"ToUTCTime\":\"2022-08-08T18:25\",\"IsDirect\":0,\"FareClass\":\"XB\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":205,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":26130.8,\"ApiResultIndex\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"40604-91975-b03f5-43aca\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21200,\"Tax\":4930.8,\"YQTax\":0,\"OtherCharges\":2972,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1088,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":26130.8,\"PublishedFare\":26130.8,\"OfferedFare\":25330.8,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2465.4,\"BaseFareCal\":12726.42,\"BaseFare\":10600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":544,\"MFT\":5.4,\"OT\":1486,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":2465.4,\"BaseFareCal\":12726.42,\"BaseFare\":10600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":544,\"MFT\":5.4,\"OT\":1486,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"639\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-08T18:25\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XB\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1925110088_1DELDXBSG5_604003435889570\",\"localFromDateTime\":\"2022-08-08 16:30\",\"localToDateTime\":\"2022-08-08 18:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":4,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"DirectFlight\":\"1\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"40604-91975-b03f5-43aca\",\"from_city_\":\"1__DEL-DXB\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29%2C+United+Arab+Emirates&departure_date=08%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29&DirectFlight=1&adults=2&childs=2&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1968-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-16-35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"nehu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1968-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-16-35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"5645645646545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2014-07-12\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-16-35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"14\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2012-07-12\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-16-35\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"897564545678456\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"15\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408105\",\"TPSysId\":\"408106\",\"VersionId\":[\"82668\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29366\",\"FareBreakdownid\":[\"356457\",\"356458\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"25\",\"26\",\"27\",\"28\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"12\",\"13\",\"14\",\"15\"],\"flight_booking_id\":[\"25\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"25\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":26130.8},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408106\",\"MasterTPSysId\":\"408105\",\"ProposalID\":\"408106\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":26130.8,\"InvoiceStatus\":true,\"TotalCGST\":0,\"TotalSGST\":0,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":26130.8,\"TotalDueAmount\":0,\"InvoiceValue\":26130.8,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-DXB-SpiceJet SG-5\",\"ItemQty\":1,\"ItemRates\":26130.8,\"Total\":26130.8,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":26130.8,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":26130.8,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 12:17:30'),(109,'62a50-3fce4-41b48-07129','{\"BookingData\":[{\"bookingId\":\"TJS110400295707\",\"FlightNumber\":\"UK-877\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-6530949629_13BOMHYDUK877HYDCMBUL1178CMBSINUL308_604828617063759\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"10:45\",\"ArrivalTime\":\"19:30\",\"TravelDate\":\"2022-08-08T10:45\",\"LocalFromTime\":\"2022-08-08 10:45\",\"FromUTCTime\":\"2022-08-08T10:45\",\"LocalToTime\":\"2022-08-09 19:30\",\"ToUTCTime\":\"2022-08-09T19:30\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":1360,\"LAYOVERDuration\":\"22h 40m\",\"FlyingMinutes\":1815,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"32h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":25278,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":108180.8,\"PublishedFareTxt\":\"108,181\",\"ApiResultIndex\":\"12-15-2-10-6530949629_13BOMHYDUK877HYDCMBUL1178CMBSINUL308_604828617063759\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-SIN\":{\"fr\":{\"DATECHANGE\":{\"BEFORE_DEPARTURE\":{\"amount\":9000,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":450,\"ARF\":9000,\"CRFT\":9,\"CRF\":50}},\"AFTER_DEPARTURE\":{\"additionalFee\":50,\"policyInfo\":\"Not Applicable\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"NO_SHOW\":{\"BEFORE_DEPARTURE\":{\"amount\":11600,\"policyInfo\":\"Available with Penalty\"},\"AFTER_DEPARTURE\":{\"amount\":11600,\"policyInfo\":\"Available with Penalty\"}},\"CANCELLATION\":{\"BEFORE_DEPARTURE\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9}},\"AFTER_DEPARTURE\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":62050,\"Tax\":46130.8,\"YQTax\":30176,\"OtherCharges\":5916,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":4832,\"CarrierMiscFee\":4336,\"MUFee\":800,\"intPublishedFare\":108180.8,\"PublishedFare\":108298.8,\"OfferedFare\":107380.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-6530949629_0BOMHYDUK877HYDCMBUL1178CMBSINUL308_604866805705134\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":140.03,\"apiMarkup\":677.97,\"IntCommission\":0,\"apiTaxOnMarkup\":122.03,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":23153.4,\"BaseFareCal\":55602.42,\"BaseFare\":32770,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":15088,\"AGST\":2504,\"MFT\":5.4,\"OT\":2958,\"MU\":400,\"YR\":2168,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":79.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":22977.4,\"BaseFareCal\":51936.42,\"BaseFare\":29280,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":15088,\"AGST\":2328,\"MFT\":5.4,\"OT\":2958,\"MU\":400,\"YR\":2168,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":79.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":677.97,\"apiTaxOnMarkup\":122.03,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":140.03,\"PublishFare\":108298.8,\"CostToCustomer\":108298.8,\"BaseFareCal\":107520.83,\"intCommisionEarnedForAgency\":777.97,\"CostToCompany\":107520.83,\"intOfferedFare\":107380.8,\"intPublishFare\":108180.8,\"TripjackMarkup\":800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"790\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-08-08T12:15\",\"SegFlightNumber\":\"UK-877\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"A\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-08T10:45\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":90,\"GroundTime\":1030,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:45\",\"strArrivalDtTime\":\"12:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"17h 10m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"791\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Bandaranaike Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Colombo\",\"destinationCountryName\":\"Sri Lanka\",\"destinationAirportCode\":\"CMB\",\"destinationArrTime\":\"2022-08-09T07:20\",\"SegFlightNumber\":\"UL-1178\",\"AirlineCode\":\"UL\",\"AirlineName\":\"SriLankan Airlines\",\"FareClass\":\"A\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2022-08-09T05:25\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":115,\"GroundTime\":330,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"07:20\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"5h 30m\",\"LAYOVERCity\":\"Colombo\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UL.gif\"},{\"segmentid\":\"792\",\"originAirportName\":\"Bandaranaike Intl Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Colombo\",\"originCountryName\":\"Sri Lanka\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-08-09T19:30\",\"SegFlightNumber\":\"UL-308\",\"AirlineCode\":\"UL\",\"AirlineName\":\"SriLankan Airlines\",\"FareClass\":\"A\",\"originAirportCode\":\"CMB\",\"originDepTime\":\"2022-08-09T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UL.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"790\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"62a50-3fce4-41b48-07129\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"12-15-2-10-6530949629_13BOMHYDUK877HYDCMBUL1178CMBSINUL308_604828617063759\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"SIN\",\"intMemberCount\":4,\"intSourceCityId\":18676,\"intDestinationCityId\":25278,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS110400295707\",\"FlightNumber\":\"UK-877\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-6530949629_13BOMHYDUK877HYDCMBUL1178CMBSINUL308_604828617063759\",\"strTraceId\":\"12-15-2-10-6530949629_13BOMHYDUK877HYDCMBUL1178CMBSINUL308_604828617063759\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"10:45\",\"ArrivalTime\":\"19:30\",\"TravelDate\":\"2022-08-08T10:45\",\"LocalFromTime\":\"2022-08-08 10:45\",\"FromUTCTime\":\"2022-08-08T10:45\",\"LocalToTime\":\"2022-08-09 19:30\",\"ToUTCTime\":\"2022-08-09T19:30\",\"IsDirect\":0,\"FareClass\":\"A\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":1360,\"LAYOVERDuration\":\"22h 40m\",\"FlyingMinutes\":1815,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"32h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":25278,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":108180.8,\"ApiResultIndex\":\"12-15-2-10-6530949629_13BOMHYDUK877HYDCMBUL1178CMBSINUL308_604828617063759\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"62a50-3fce4-41b48-07129\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":62050,\"Tax\":46130.8,\"YQTax\":30176,\"OtherCharges\":5916,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":4832,\"CarrierMiscFee\":4336,\"MUFee\":800,\"intPublishedFare\":108180.8,\"PublishedFare\":108298.8,\"OfferedFare\":107380.8,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":23153.4,\"BaseFareCal\":55602.42,\"BaseFare\":32770,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":15088,\"AGST\":2504,\"MFT\":5.4,\"OT\":2958,\"MU\":400,\"YR\":2168,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":22977.4,\"BaseFareCal\":51936.42,\"BaseFare\":29280,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":15088,\"AGST\":2328,\"MFT\":5.4,\"OT\":2958,\"MU\":400,\"YR\":2168,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"790\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-08-08T12:15\",\"SegFlightNumber\":\"UK-877\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"A\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-08T10:45\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":90,\"GroundTime\":1030,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:45\",\"strArrivalDtTime\":\"12:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"17h 10m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"segmentid\":\"791\",\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Bandaranaike Intl Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Colombo\",\"destinationCountryName\":\"Sri Lanka\",\"destinationAirportCode\":\"CMB\",\"destinationArrTime\":\"2022-08-09T07:20\",\"SegFlightNumber\":\"UL-1178\",\"AirlineCode\":\"UL\",\"AirlineName\":\"SriLankan Airlines\",\"FareClass\":\"A\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2022-08-09T05:25\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":115,\"GroundTime\":330,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"07:20\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"5h 30m\",\"LAYOVERCity\":\"Colombo\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UL.gif\"},{\"segmentid\":\"792\",\"originAirportName\":\"Bandaranaike Intl Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Colombo\",\"originCountryName\":\"Sri Lanka\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-08-09T19:30\",\"SegFlightNumber\":\"UL-308\",\"AirlineCode\":\"UL\",\"AirlineName\":\"SriLankan Airlines\",\"FareClass\":\"A\",\"originAirportCode\":\"CMB\",\"originDepTime\":\"2022-08-09T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UL.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"12-15-2-10-6530949629_13BOMHYDUK877HYDCMBUL1178CMBSINUL308_604828617063759\",\"localFromDateTime\":\"2022-08-08 10:45\",\"localToDateTime\":\"2022-08-09 19:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"SIN\",\"intMemberCount\":4,\"intSourceCityId\":18676,\"intDestinationCityId\":25278,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Singapore (SIN)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"SIN\",\"ContSysId\":\"190\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Singapore, SG - Changi Intl Arpt (SIN), Singapore\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" SG - Changi Intl Arpt (SIN)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"SIN\",\"from\":\"BOM\",\"to\":\"SIN\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Singapore, SG - Changi Intl Arpt (SIN), Singapore\",\"sourceCityId\":18676,\"destinationCityId\":25278,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"62a50-3fce4-41b48-07129\",\"from_city_\":\"1__BOM-SIN\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Singapore+%28SIN%29&source_city=BOM&ContSysId_1=101&destination_city=SIN&ContSysId=190&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Singapore%2C+SG+-+Changi+Intl+Arpt+%28SIN%29%2C+Singapore&departure_date=08%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+SG+-+Changi+Intl+Arpt+%28SIN%29&adults=2&childs=2&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1996-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-28-53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerSysId\":\"21\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"nehu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1996-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-28-53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"9856646864545648\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"22\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2012-07-12\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-28-53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2020-07-20\",\"CustomerMemberSysId\":\"23\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2012-07-11\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-28-53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"897564545678456\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2012-07-20\",\"CustomerMemberSysId\":\"24\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408126\",\"TPSysId\":\"408127\",\"VersionId\":[\"82675\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29368\",\"FareBreakdownid\":[\"356460\",\"356461\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"29\",\"30\",\"31\",\"32\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"21\",\"22\",\"23\",\"24\"],\"flight_booking_id\":[\"26\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"26\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":108416.8},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408127\",\"MasterTPSysId\":\"408126\",\"ProposalID\":\"408127\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":108380.8,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":108416.8,\"TotalDueAmount\":0,\"InvoiceValue\":108416.8,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-SIN-Vistara UK-877\",\"ItemQty\":1,\"ItemRates\":108180.8,\"Total\":108180.8,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":108416.8,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":108380.8,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 12:29:56'),(113,'6812b-610e4-a3fa5-b8a93','{\"BookingData\":[{\"bookingId\":\"TJS110800295727\",\"FlightNumber\":\"TG-338\",\"AirlineName\":\"Thai Airways Intl\",\"AirlineCode\":\"TG\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-5153377085_0MAABKKTG338_605811928155960\",\"AirlineSysId\":\"493\",\"DepartureTime\":\"01:10\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2022-08-08T01:10\",\"LocalFromTime\":\"2022-08-08 01:10\",\"FromUTCTime\":\"2022-08-08T01:10\",\"LocalToTime\":\"2022-08-08 06:10\",\"ToUTCTime\":\"2022-08-08T06:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":61256.50000000001,\"PublishedFareTxt\":\"61,257\",\"ApiResultIndex\":\"12-15-2-10-5153377085_0MAABKKTG338_605811928155960\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-BKK\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":717100,\"additionalFee\":50,\"policyInfo\":\"Date change policy Info\",\"fcs\":{\"ARFT\":35855,\"ARF\":717100,\"CRFT\":9,\"CRF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":33756.5,\"YQTax\":22235,\"OtherCharges\":7945,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.500000000000002,\"AirlineGSTComponent\":2488,\"CarrierMiscFee\":0,\"MUFee\":1000,\"intPublishedFare\":61256.50000000001,\"PublishedFare\":61374.5,\"OfferedFare\":60256.50000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-5153377085_0MAABKKTG338_606028857300181\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":20345.1,\"BaseFareCal\":38184.63,\"BaseFare\":18330,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":13341,\"AGST\":1584,\"MFT\":8.100000000000001,\"OT\":4767,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":13411.4,\"BaseFareCal\":22260.42,\"BaseFare\":9170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":8894,\"AGST\":904,\"MFT\":5.4,\"OT\":3178,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":79.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":847.46,\"apiTaxOnMarkup\":152.54,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":170.54,\"PublishFare\":61374.5,\"CostToCustomer\":61374.5,\"BaseFareCal\":60427.04,\"intCommisionEarnedForAgency\":947.46,\"CostToCompany\":60427.04,\"intOfferedFare\":60256.50000000001,\"intPublishFare\":61256.50000000001,\"TripjackMarkup\":1000,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"604\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-08T06:10\",\"SegFlightNumber\":\"TG-338\",\"AirlineCode\":\"TG\",\"AirlineName\":\"Thai Airways Intl\",\"FareClass\":\"V\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-08-08T01:10\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"01:10\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"604\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6812b-610e4-a3fa5-b8a93\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"12-15-2-10-5153377085_0MAABKKTG338_605811928155960\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DMK\",\"intMemberCount\":5,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS110800295727\",\"FlightNumber\":\"TG-338\",\"AirlineName\":\"Thai Airways Intl\",\"AirlineCode\":\"TG\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-5153377085_0MAABKKTG338_605811928155960\",\"strTraceId\":\"12-15-2-10-5153377085_0MAABKKTG338_605811928155960\",\"AirlineSysId\":\"493\",\"DepartureTime\":\"01:10\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2022-08-08T01:10\",\"LocalFromTime\":\"2022-08-08 01:10\",\"FromUTCTime\":\"2022-08-08T01:10\",\"LocalToTime\":\"2022-08-08 06:10\",\"ToUTCTime\":\"2022-08-08T06:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":61256.50000000001,\"ApiResultIndex\":\"12-15-2-10-5153377085_0MAABKKTG338_605811928155960\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\",\"SearchFlightTraceId\":\"6812b-610e4-a3fa5-b8a93\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":33756.5,\"YQTax\":22235,\"OtherCharges\":7945,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.500000000000002,\"AirlineGSTComponent\":2488,\"CarrierMiscFee\":0,\"MUFee\":1000,\"intPublishedFare\":61256.50000000001,\"PublishedFare\":61374.5,\"OfferedFare\":60256.50000000001,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":20345.1,\"BaseFareCal\":38184.63,\"BaseFare\":18330,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":13341,\"AGST\":1584,\"MFT\":8.100000000000001,\"OT\":4767,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":13411.4,\"BaseFareCal\":22260.42,\"BaseFare\":9170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":8894,\"AGST\":904,\"MFT\":5.4,\"OT\":3178,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"604\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-08T06:10\",\"SegFlightNumber\":\"TG-338\",\"AirlineCode\":\"TG\",\"AirlineName\":\"Thai Airways Intl\",\"FareClass\":\"V\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-08-08T01:10\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"01:10\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"12-15-2-10-5153377085_0MAABKKTG338_605811928155960\",\"localFromDateTime\":\"2022-08-08 01:10\",\"localToDateTime\":\"2022-08-08 06:10\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":5,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai (MAA)\",\"mytrip_city_to\":\"Bangkok (DMK)\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DMK\",\"ContSysId\":\"215\",\"source\":\"Chennai, IN - Chennai Arpt (MAA), India\",\"destination\":\"Bangkok, BKK, TH - Don Mueang International Arpt (DMK), Thailand\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"to_mytrip_city\":\" BKK\",\"DirectFlight\":\"1\",\"adults\":\"3\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DMK\",\"from\":\"MAA\",\"to\":\"DMK\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt (MAA), India\",\"destinationCityText\":\"Bangkok, BKK, TH - Don Mueang International Arpt (DMK), Thailand\",\"sourceCityId\":6000,\"destinationCityId\":2266,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"6812b-610e4-a3fa5-b8a93\",\"from_city_\":\"1__MAA-DMK\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Chennai+%28MAA%29&mytrip_city_to=Bangkok+%28DMK%29&source_city=MAA&ContSysId_1=101&destination_city=DMK&ContSysId=215&source=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29%2C+India&destination=Bangkok%2C+BKK%2C+TH+-+Don+Mueang+International+Arpt+%28DMK%29%2C+Thailand&departure_date=08%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29&to_mytrip_city=+BKK&DirectFlight=1&adults=3&childs=2&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1982-07-29\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-46-44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerSysId\":\"25\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"nehu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1971-07-28\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-46-44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"2548784548789746\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"26\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"rishi\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1982-07-29\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-46-44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-07-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"27\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2016-07-15\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-46-44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"897564545678456\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"28\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2017-07-15\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-12-46-44\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"35487854878548\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408144\",\"TPSysId\":\"408145\",\"VersionId\":[\"82680\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29370\",\"FareBreakdownid\":[\"356463\",\"356464\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"33\",\"34\",\"35\",\"36\",\"37\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"25\",\"26\",\"27\",\"28\",\"29\"],\"flight_booking_id\":[\"27\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"27\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":61492.5},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408145\",\"MasterTPSysId\":\"408144\",\"ProposalID\":\"408145\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":61456.5,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":61492.5,\"TotalDueAmount\":0,\"InvoiceValue\":61492.5,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-BKK-Thai Airways Intl TG-338\",\"ItemQty\":1,\"ItemRates\":61256.5,\"Total\":61256.5,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":61492.5,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":61456.5,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 12:48:30'),(114,'79664-71060-7a22f-c8a59','{\"FlightBookingData\":[{\"FlightNumber\":\"EK-372\",\"keyIndex\":15,\"SegFlightNumberArr\":\"EK-372\",\"AirlineName\":\"Emirates airlines\",\"AirlineCode\":\"EK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-1110703879_8DXBBKKEK372_607861101001442\",\"AirlineSysId\":\"203\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2022-08-08T09:40\",\"LocalFromTime\":\"2022-08-08 09:40\",\"FromUTCTime\":\"2022-08-08T09:40\",\"LocalToTime\":\"2022-08-08 19:15\",\"ToUTCTime\":\"2022-08-08T19:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":395,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"6h 35m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2266\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":null,\"PublishedFare\":543486,\"PublishedFareTxt\":\"543,485\",\"ApiResultIndex\":\"12-15-2-10-1110703879_8DXBBKKEK372_607861101001442\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"79664-71060-7a22f-c8a59\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":459930,\"Tax\":83437.3,\"YQTax\":59712,\"OtherCharges\":21766,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.3,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1800,\"intPublishedFare\":543367.2999999999,\"PublishedFare\":543486,\"PublishedFarePerPax\":60388,\"OfferedFare\":541567.2999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-1110703879_8DXBBKKEK372_607861101001442\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":292.58,\"apiMarkup\":1525.42,\"IntCommission\":0,\"apiTaxOnMarkup\":274.58,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"35 Kg\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":51943.5,\"BaseFareCal\":363564.04,\"BaseFare\":312450,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":37320,\"AGST\":0,\"MFT\":13.5,\"OT\":13535,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"35 Kg\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":31166.100000000002,\"BaseFareCal\":171450.63,\"BaseFare\":140775,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":22392,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":8121,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"35 Kg\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":327.7,\"BaseFareCal\":6881.21,\"BaseFare\":6705,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":110,\"MFT\":2.7,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0Kg\"}],\"arrMarkUps\":{\"apiMarkup\":1525.42,\"apiTaxOnMarkup\":274.58,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":292.58,\"PublishFare\":543485.3,\"CostToCustomer\":543485.3,\"BaseFareCal\":541859.88,\"intCommisionEarnedForAgency\":1625.42,\"CostToCompany\":541859.88,\"intOfferedFare\":541567.2999999999,\"intPublishFare\":543367.2999999999,\"TripjackMarkup\":1800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"06L\"},\"Segments\":[{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-08T19:15\",\"SegFlightNumber\":\"EK-372\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-08T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"35 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":395,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"6h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\",\"$$hashKey\":\"08G\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"EK-372\",\"keyIndex\":15,\"SegFlightNumberArr\":\"EK-372\",\"AirlineName\":\"Emirates airlines\",\"AirlineCode\":\"EK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-1110703879_8DXBBKKEK372_607861101001442\",\"AirlineSysId\":\"203\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2022-08-08T09:40\",\"LocalFromTime\":\"2022-08-08 09:40\",\"FromUTCTime\":\"2022-08-08T09:40\",\"LocalToTime\":\"2022-08-08 19:15\",\"ToUTCTime\":\"2022-08-08T19:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":395,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"6h 35m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"2266\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":null,\"PublishedFare\":543486,\"PublishedFareTxt\":\"543,485\",\"ApiResultIndex\":\"12-15-2-10-1110703879_8DXBBKKEK372_607861101001442\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"79664-71060-7a22f-c8a59\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":459930,\"Tax\":83437.3,\"YQTax\":59712,\"OtherCharges\":21766,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.3,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1800,\"intPublishedFare\":543367.2999999999,\"PublishedFare\":543486,\"PublishedFarePerPax\":60388,\"OfferedFare\":541567.2999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-1110703879_8DXBBKKEK372_607861101001442\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":292.58,\"apiMarkup\":1525.42,\"IntCommission\":0,\"apiTaxOnMarkup\":274.58,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"35 Kg\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":51943.5,\"BaseFareCal\":363564.04,\"BaseFare\":312450,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":37320,\"AGST\":0,\"MFT\":13.5,\"OT\":13535,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"35 Kg\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":31166.100000000002,\"BaseFareCal\":171450.63,\"BaseFare\":140775,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":22392,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":8121,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"35 Kg\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":327.7,\"BaseFareCal\":6881.21,\"BaseFare\":6705,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":110,\"MFT\":2.7,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"0Kg\"}],\"arrMarkUps\":{\"apiMarkup\":1525.42,\"apiTaxOnMarkup\":274.58,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":292.58,\"PublishFare\":543485.3,\"CostToCustomer\":543485.3,\"BaseFareCal\":541859.88,\"intCommisionEarnedForAgency\":1625.42,\"CostToCompany\":541859.88,\"intOfferedFare\":541567.2999999999,\"intPublishFare\":543367.2999999999,\"TripjackMarkup\":1800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":459930,\"Tax\":83437.3,\"YQTax\":59712,\"OtherCharges\":21766,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.3,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1800,\"intPublishedFare\":543367.2999999999,\"PublishedFare\":543486,\"PublishedFarePerPax\":60388,\"OfferedFare\":541567.2999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-1110703879_8DXBBKKEK372_607861101001696\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":292.58,\"apiMarkup\":1525.42,\"IntCommission\":0,\"apiTaxOnMarkup\":274.58,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"35 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":51943.5,\"BaseFareCal\":363564.04,\"BaseFare\":312450,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":37320,\"AGST\":0,\"MFT\":13.5,\"OT\":13535,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"35 Kilograms\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":31166.100000000002,\"BaseFareCal\":171450.63,\"BaseFare\":140775,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":22392,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":8121,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"35 Kilograms\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":327.7,\"BaseFareCal\":6881.21,\"BaseFare\":6705,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":110,\"MFT\":2.7,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10 Kilograms\",\"CabinBaggage\":\"0Kg\"}],\"arrMarkUps\":{\"apiMarkup\":1525.42,\"apiTaxOnMarkup\":274.58,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":292.58,\"PublishFare\":543485.3,\"CostToCustomer\":543485.3,\"BaseFareCal\":541859.88,\"intCommisionEarnedForAgency\":1625.42,\"CostToCompany\":541859.88,\"intOfferedFare\":541567.2999999999,\"intPublishFare\":543367.2999999999,\"TripjackMarkup\":1800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}}],\"Segments\":[{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-08T19:15\",\"SegFlightNumber\":\"EK-372\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-08T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"35 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":395,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"6h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"06P\"}]}],\"FlightBookingDataInbound\":null}','2022-07-13 13:14:38'),(118,'cc219-00983-64483-0e304','{\"BookingData\":[{\"bookingId\":\"TJS119200295828\",\"FlightNumber\":\"EK-372\",\"AirlineName\":\"Emirates Airlines\",\"AirlineCode\":\"EK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-6513144409_0DXBBKKEK372_609026234805480\",\"AirlineSysId\":\"203\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2022-08-08T09:40\",\"LocalFromTime\":\"2022-08-08 09:40\",\"FromUTCTime\":\"2022-08-08T09:40\",\"LocalToTime\":\"2022-08-08 19:15\",\"ToUTCTime\":\"2022-08-08T19:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":395,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"9h 35m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":543367.2999999999,\"PublishedFareTxt\":\"543,367\",\"ApiResultIndex\":\"12-15-2-10-6513144409_0DXBBKKEK372_609026234805480\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DXB-BKK\":{\"fr\":{\"DATECHANGE\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":0,\"ARF\":0,\"CRFT\":9,\"CRF\":50}},\"AFTER_DEPARTURE\":{\"additionalFee\":50,\"policyInfo\":\"Not Applicable\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"NO_SHOW\":{\"BEFORE_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"},\"AFTER_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"}},\"CANCELLATION\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}},\"AFTER_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":459930,\"Tax\":83437.3,\"YQTax\":59712,\"OtherCharges\":21766,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.3,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1800,\"intPublishedFare\":543367.2999999999,\"PublishedFare\":543485.3,\"OfferedFare\":541567.2999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-6513144409_0DXBBKKEK372_609219676941907\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":292.58,\"apiMarkup\":1525.42,\"IntCommission\":0,\"apiTaxOnMarkup\":274.58,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"35KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":51943.5,\"BaseFareCal\":363564.04,\"BaseFare\":312450,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":37320,\"AGST\":0,\"MFT\":13.5,\"OT\":13535,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"35KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":31166.100000000002,\"BaseFareCal\":171450.63,\"BaseFare\":140775,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":22392,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":8121,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"35KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":327.7,\"BaseFareCal\":6881.21,\"BaseFare\":6705,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":110,\"MFT\":2.7,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":\"0Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":1525.42,\"apiTaxOnMarkup\":274.58,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":292.58,\"PublishFare\":543485.3,\"CostToCustomer\":543485.3,\"BaseFareCal\":541859.88,\"intCommisionEarnedForAgency\":1625.42,\"CostToCompany\":541859.88,\"intOfferedFare\":541567.2999999999,\"intPublishFare\":543367.2999999999,\"TripjackMarkup\":1800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"98\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-08T19:15\",\"SegFlightNumber\":\"EK-372\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-08T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"35KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":395,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"6h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cc219-00983-64483-0e304\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"12-15-2-10-6513144409_0DXBBKKEK372_609026234805480\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":9,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS119200295828\",\"FlightNumber\":\"EK-372\",\"AirlineName\":\"Emirates Airlines\",\"AirlineCode\":\"EK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-6513144409_0DXBBKKEK372_609026234805480\",\"strTraceId\":\"12-15-2-10-6513144409_0DXBBKKEK372_609026234805480\",\"AirlineSysId\":\"203\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2022-08-08T09:40\",\"LocalFromTime\":\"2022-08-08 09:40\",\"FromUTCTime\":\"2022-08-08T09:40\",\"LocalToTime\":\"2022-08-08 19:15\",\"ToUTCTime\":\"2022-08-08T19:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":395,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"9h 35m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":543367.2999999999,\"ApiResultIndex\":\"12-15-2-10-6513144409_0DXBBKKEK372_609026234805480\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\",\"SearchFlightTraceId\":\"cc219-00983-64483-0e304\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":459930,\"Tax\":83437.3,\"YQTax\":59712,\"OtherCharges\":21766,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.3,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1800,\"intPublishedFare\":543367.2999999999,\"PublishedFare\":543485.3,\"OfferedFare\":541567.2999999999,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":51943.5,\"BaseFareCal\":363564.04,\"BaseFare\":312450,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":37320,\"AGST\":0,\"MFT\":13.5,\"OT\":13535,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":31166.100000000002,\"BaseFareCal\":171450.63,\"BaseFare\":140775,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":22392,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":8121,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":327.7,\"BaseFareCal\":6881.21,\"BaseFare\":6705,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":110,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"98\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-08T19:15\",\"SegFlightNumber\":\"EK-372\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"R\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-08T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"35KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":395,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"6h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"12-15-2-10-6513144409_0DXBBKKEK372_609026234805480\",\"localFromDateTime\":\"2022-08-08 09:40\",\"localToDateTime\":\"2022-08-08 19:15\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":9,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Dubai (DXB)\",\"mytrip_city_to\":\"Bangkok (BKK)\",\"source_city\":\"DXB\",\"ContSysId_1\":\"228\",\"destination_city\":\"BKK\",\"ContSysId\":\"215\",\"source\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"destination\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"to_mytrip_city\":\" TH - Suvarnabhumi Intl Arpt (BKK)\",\"DirectFlight\":\"1\",\"adults\":\"5\",\"childs\":\"3\",\"infants\":\"1\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DXB\",\"destinationCityAirportCode\":\"BKK\",\"from\":\"DXB\",\"to\":\"BKK\",\"sourceCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"destinationCityText\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"sourceCityId\":8219,\"destinationCityId\":2266,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"3\",\"infant\":\"1\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"cc219-00983-64483-0e304\",\"from_city_\":\"1__DXB-BKK\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Dubai+%28DXB%29&mytrip_city_to=Bangkok+%28BKK%29&source_city=DXB&ContSysId_1=228&destination_city=BKK&ContSysId=215&source=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29%2C+United+Arab+Emirates&destination=Bangkok%2C+TH+-+Suvarnabhumi+Intl+Arpt+%28BKK%29%2C+Thailand&departure_date=08%2F08%2F2022&return_date=&from_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29&to_mytrip_city=+TH+-+Suvarnabhumi+Intl+Arpt+%28BKK%29&DirectFlight=1&adults=5&childs=3&infants=1&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1947-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-20\",\"passporIssue\":\"2019-07-20\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"riya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1968-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"kirti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1968-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"5645645646545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"kirtika\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1996-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"21\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"gulshan\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1996-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"9856646864545648\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"22\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"ritu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2010-08-18\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"pyal\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2013-08-09\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"21\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"chiya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2011-08-11\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"9856646864545648\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"22\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"rishi\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2021-08-02\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-13-40-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-07-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"27\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408217\",\"TPSysId\":\"408218\",\"VersionId\":[\"82714\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29377\",\"FareBreakdownid\":[\"356471\",\"356472\",\"356473\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"21\":{\"Currency\":\"INR\",\"key\":\"98\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"}},\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"38\",\"39\",\"40\",\"41\",\"42\",\"43\",\"44\",\"45\",\"46\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\",\"12\",\"13\",\"21\",\"22\",\"12\",\"21\",\"22\",\"27\"],\"flight_booking_id\":[\"28\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"28\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":543721.3},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408218\",\"MasterTPSysId\":\"408217\",\"ProposalID\":\"408218\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":543685.3,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":543721.3,\"TotalDueAmount\":0,\"InvoiceValue\":543721.3,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DXB-BKK-Emirates Airlines EK-372\",\"ItemQty\":1,\"ItemRates\":543485.3,\"Total\":543485.3,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":543721.3,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":543685.3,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 13:46:21'),(119,'71f81-f56c4-008c5-931af','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2111\",\"keyIndex\":65,\"SegFlightNumberArr\":\"6E-2111\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8940485243_37BOMDEL6E2111_612937618953659\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-07-14T02:40\",\"LocalFromTime\":\"2022-07-14 02:40\",\"FromUTCTime\":\"2022-07-14T02:40\",\"LocalToTime\":\"2022-07-14 04:50\",\"ToUTCTime\":\"2022-07-14T04:50\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 14 Jul\",\"ArrivalDateTxt\":\"Thu, 14 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4389,\"PublishedFareTxt\":\"4,389\",\"ApiResultIndex\":\"5-8940485243_37BOMDEL6E2111_612937618953659\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"71f81-f56c4-008c5-931af\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":870.7,\"YQTax\":0,\"OtherCharges\":653,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4270.7,\"PublishedFare\":4389,\"PublishedFarePerPax\":4389,\"OfferedFare\":4070.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8940485243_37BOMDEL6E2111_612937618953659\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3000 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.7,\"BaseFareCal\":4119.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":653,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4388.7,\"CostToCustomer\":4388.7,\"BaseFareCal\":4119.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4119.21,\"intOfferedFare\":4070.7,\"intPublishFare\":4270.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"023\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-14T04:50\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-14T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-13 14:37:03'),(123,'a6f22-77376-95819-ac42c','{\"BookingData\":[{\"bookingId\":\"TJS115500295994\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-08-08T16:30\",\"LocalFromTime\":\"2022-08-08 16:30\",\"FromUTCTime\":\"2022-08-08T16:30\",\"LocalToTime\":\"2022-08-08 18:25\",\"ToUTCTime\":\"2022-08-08T18:25\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":205,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 4,000 + Fare Difference __nls__ Before 96 hrs Rs 3,500 + Fare Difference\",\"fcs\":{\"ARFT\":200,\"ARF\":4000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 5,000 __nls__ Before 96 hrs Rs 4,500\",\"fcs\":{\"ACFT\":250,\"ACF\":5000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":34468,\"Tax\":15817.599999999999,\"YQTax\":0,\"OtherCharges\":13004,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":1072,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":50285.6,\"PublishedFare\":50852,\"OfferedFare\":47941.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9823945382_1DXBDELSG12_616557627959323\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":480,\"AddiTaxOnMarkup\":86.4,\"intTotalGST\":330.46,\"apiMarkup\":1355.94,\"IntCommission\":0,\"apiTaxOnMarkup\":244.06,\"FixedMarkUp\":480,\"GSTOnMarkUp\":86.4,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7908.799999999999,\"BaseFareCal\":24551.24,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":21.6,\"AddiMarkup\":120,\"intTotalGST\":208.44,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":480,\"GSTOnMarkUp\":86.4,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7908.799999999999,\"BaseFareCal\":24551.24,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":21.6,\"AddiMarkup\":120,\"intTotalGST\":208.44,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":480,\"GSTOnMarkUp\":86.4,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"segmentid\":\"398\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-08T18:25\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"VGSW\",\"Price\":445,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"VCC2\",\"Price\":461,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"NCC6\",\"Price\":461,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"NCC5\",\"Price\":461,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"NCC4\",\"Price\":461,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"NCC2\",\"Price\":461,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"NCC1\",\"Price\":461,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"NVSW\",\"Price\":495,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"LCVS\",\"Price\":595,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"LCNS\",\"Price\":595,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a6f22-77376-95819-ac42c\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"2022-08-10 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":4,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS115500295994\",\"FlightNumber\":\"SG-5\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005\",\"strTraceId\":\"4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-08-08T16:30\",\"LocalFromTime\":\"2022-08-08 16:30\",\"FromUTCTime\":\"2022-08-08T16:30\",\"LocalToTime\":\"2022-08-08 18:25\",\"ToUTCTime\":\"2022-08-08T18:25\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":205,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":50852,\"ApiResultIndex\":\"4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"a6f22-77376-95819-ac42c\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 4,000 + Fare Difference __nls__ Before 96 hrs Rs 3,500 + Fare Difference\",\"fcs\":{\"ARFT\":200,\"ARF\":4000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 5,000 __nls__ Before 96 hrs Rs 4,500\",\"fcs\":{\"ACFT\":250,\"ACF\":5000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":34468,\"Tax\":15817.599999999999,\"YQTax\":0,\"OtherCharges\":13004,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":1072,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":50285.6,\"PublishedFare\":50852,\"OfferedFare\":47941.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9823945382_1DXBDELSG12_616557627959323\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":480,\"AddiTaxOnMarkup\":86.4,\"intTotalGST\":330.46,\"apiMarkup\":1355.94,\"IntCommission\":0,\"apiTaxOnMarkup\":244.06,\"FixedMarkUp\":480,\"GSTOnMarkUp\":86.4,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7908.799999999999,\"BaseFareCal\":24551.24,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":21.6,\"AddiMarkup\":120,\"intTotalGST\":208.44,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":480,\"GSTOnMarkUp\":86.4,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":7908.799999999999,\"BaseFareCal\":24551.24,\"BaseFare\":17234,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":536,\"MFT\":10.8,\"OT\":6502,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":21.6,\"AddiMarkup\":120,\"intTotalGST\":208.44,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":480,\"GSTOnMarkUp\":86.4,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[[{\"segmentid\":\"398\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-08T18:25\",\"SegFlightNumber\":\"SG-5\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"399\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-11T03:55\",\"SegFlightNumber\":\"SG-12\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-10T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"03:55\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9823945382_3DELDXBSG5DXBDELSG12_616519022697005\",\"localFromDateTime\":\"2022-08-08 16:30\",\"localToDateTime\":\"2022-08-08 18:25\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":4,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS115500295994\",\"FlightNumber\":\"SG-12\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"463\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"03:55\",\"TravelDate\":\"2022-08-10T22:45\",\"LocalFromTime\":\"2022-08-10 22:45\",\"FromUTCTime\":\"2022-08-10T22:45\",\"LocalToTime\":\"2022-08-11 03:55\",\"ToUTCTime\":\"2022-08-11T03:55\",\"IsDirect\":0,\"FareClass\":\"XA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":220,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 11 Aug\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure  __nls__ Within 06-96 hrs Rs 4,000 + Fare Difference __nls__ Before 96 hrs Rs 3,500 + Fare Difference\",\"fcs\":{\"ARFT\":200,\"ARF\":4000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure __nls__ Within 06-96 hrs Rs 5,000 __nls__ Before 96 hrs Rs 4,500\",\"fcs\":{\"ACFT\":250,\"ACF\":5000,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"399\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-11T03:55\",\"SegFlightNumber\":\"SG-12\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"XA\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-10T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"30Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"03:55\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"EB10\",\"Price\":5250,\"Weight\":\"10KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"JNML\",\"Price\":0,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"GFVG\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"GFNV\",\"Price\":0,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"GFCM\",\"Price\":0,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"DNVL\",\"Price\":0,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"VGSW\",\"Price\":434,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"VCC2\",\"Price\":450,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"NCC6\",\"Price\":450,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"NCC5\",\"Price\":450,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"NCC4\",\"Price\":450,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"NCC2\",\"Price\":450,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"NCC1\",\"Price\":450,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"NVSW\",\"Price\":483,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"LCVS\",\"Price\":580,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"LCNS\",\"Price\":580,\"Description\":\"Low cal salad Non Vegetarian\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a6f22-77376-95819-ac42c\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"2022-08-10 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":4,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"DirectFlight\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"10\\/08\\/2022\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"10\\/08\\/2022\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":\"2022-08-10\",\"SearchFlightTraceId\":\"a6f22-77376-95819-ac42c\",\"from_city_\":\"2__DEL-DXB-DEL\"},\"FlightSearchUrl\":\"route=2&DirectFlight=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=2&childs=2&infants=0&class=2&DirectFlight=1&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29%2C+United+Arab+Emirates&departure_date=08%2F08%2F2022&return_date=10%2F08%2F2022&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-37-42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-20\",\"passporIssue\":\"2019-07-20\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"kirti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-37-43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"5645645646545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"nehu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-37-43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"2548784548789746\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"26\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"ritu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-37-43\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408352\",\"TPSysId\":\"408353\",\"VersionId\":[\"82773\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29387\",\"FareBreakdownid\":[\"356480\",\"356481\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":{\"16\":{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},\"13\":{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},\"26\":{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"},\"12\":{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"EB05\",\"Price\":2625,\"Weight\":\"5KG\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"47\",\"48\",\"49\",\"50\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\",\"13\",\"26\",\"12\"],\"flight_booking_id\":[\"29\",\"30\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"29\",\"30\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":61918.4},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408353\",\"MasterTPSysId\":\"408352\",\"ProposalID\":\"408353\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":61745.6,\"InvoiceStatus\":true,\"TotalCGST\":86.4,\"TotalSGST\":86.4,\"TotalIGST\":172.8,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":61918.4,\"TotalDueAmount\":0,\"InvoiceValue\":61918.4,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-DXB-SpiceJet SG-5\",\"ItemQty\":1,\"ItemRates\":50285.6,\"Total\":50285.6,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":51418.4,\"MarkupType\":\"\",\"Markup\":960,\"TotalMarkup\":960,\"SubTotal\":51245.6,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":172.8,\"SGST\":86.4,\"CGST\":86.4,\"IGST\":172.8,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DXB-DEL-SpiceJet SG-12\",\"ItemQty\":1,\"ItemRates\":0,\"Total\":0,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":0,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"MisxItems_name\":\"Add ons\",\"Description\":\"Baggage\",\"ItemQty\":1,\"ItemRates\":10500,\"Total\":10500,\"DiscountType\":0,\"Discount\":0,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":10500,\"ServiceFeeTotal\":0,\"GSTPercentage\":0,\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 15:38:49'),(127,'0da38-f85b6-f4771-7aa83','{\"BookingData\":[{\"bookingId\":\"TJS118600296010\",\"FlightNumber\":\"6E-1216\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"10:30\",\"TravelDate\":\"2022-08-08T02:00\",\"LocalFromTime\":\"2022-08-08 02:00\",\"FromUTCTime\":\"2022-08-08T02:00\",\"LocalToTime\":\"2022-08-08 10:30\",\"ToUTCTime\":\"2022-08-08T10:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":360,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"8h 30m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":25278,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 2,500 + Fare Difference__nls__Within 06-72 hrs: Rs 3,000 + Fare Difference__nls__ __bs__Ex India to South east, Middle East and Rest of Asia: __be____nls__ Before 72 hrs: Rs 3,500 + Fare Difference__nls__Within 06-72 hrs: Rs 4,000 + Fare Difference__nls__ __bs__ Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 4,500 + Fare Difference__nls__Within 06-72 hrs: Rs 5,000 + Fare Difference\",\"fcs\":{\"ARFT\":250,\"ARF\":5000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":6500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 3,000__nls__Within 06-72 hrs: Rs 3,500__nls____bs__Ex India to South East, Middle East and Rest of Asia: __be____nls__Before 72 hrs: Rs 4,500__nls__Within 06-72 hrs: Rs 5,000__nls____bs__Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 6,000__nls__Within 06-72 hrs: Rs 6,500\",\"fcs\":{\"ACFT\":325,\"ACF\":6500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":53488,\"Tax\":23201.6,\"YQTax\":0,\"OtherCharges\":19904,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":1556,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":76689.6,\"PublishedFare\":77161.6,\"OfferedFare\":68773.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3645284161_1SINBLR6E58BLRBOM6E5399_617099990068664\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":316.06,\"apiMarkup\":1355.94,\"IntCommission\":0,\"apiTaxOnMarkup\":244.06,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":11600.8,\"BaseFareCal\":37738.84,\"BaseFare\":26744,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":778,\"MFT\":10.8,\"OT\":9952,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":194.04,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":11600.8,\"BaseFareCal\":37738.84,\"BaseFare\":26744,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":778,\"MFT\":10.8,\"OT\":9952,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":194.04,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"segmentid\":\"232\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-08-08T10:30\",\"SegFlightNumber\":\"6E-1216\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-08T02:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":360,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"10:30\",\"FlightDuration\":\"6h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"XBPA\",\"Price\":2760,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"XBPB\",\"Price\":5520,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"XBPC\",\"Price\":8280,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"XBPD\",\"Price\":16560,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NPLW\",\"Price\":500,\"Description\":\"Neck Pillow\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"0da38-f85b6-f4771-7aa83\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"2022-08-10 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"SIN\",\"intMemberCount\":4,\"intSourceCityId\":18676,\"intDestinationCityId\":25278,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS118600296010\",\"FlightNumber\":\"6E-1216\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328\",\"strTraceId\":\"5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"10:30\",\"TravelDate\":\"2022-08-08T02:00\",\"LocalFromTime\":\"2022-08-08 02:00\",\"FromUTCTime\":\"2022-08-08T02:00\",\"LocalToTime\":\"2022-08-08 10:30\",\"ToUTCTime\":\"2022-08-08T10:30\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":360,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"8h 30m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":25278,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":77161.6,\"ApiResultIndex\":\"5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"0da38-f85b6-f4771-7aa83\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 2,500 + Fare Difference__nls__Within 06-72 hrs: Rs 3,000 + Fare Difference__nls__ __bs__Ex India to South east, Middle East and Rest of Asia: __be____nls__ Before 72 hrs: Rs 3,500 + Fare Difference__nls__Within 06-72 hrs: Rs 4,000 + Fare Difference__nls__ __bs__ Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 4,500 + Fare Difference__nls__Within 06-72 hrs: Rs 5,000 + Fare Difference\",\"fcs\":{\"ARFT\":250,\"ARF\":5000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":6500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 3,000__nls__Within 06-72 hrs: Rs 3,500__nls____bs__Ex India to South East, Middle East and Rest of Asia: __be____nls__Before 72 hrs: Rs 4,500__nls__Within 06-72 hrs: Rs 5,000__nls____bs__Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 6,000__nls__Within 06-72 hrs: Rs 6,500\",\"fcs\":{\"ACFT\":325,\"ACF\":6500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":53488,\"Tax\":23201.6,\"YQTax\":0,\"OtherCharges\":19904,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":1556,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":76689.6,\"PublishedFare\":77161.6,\"OfferedFare\":68773.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3645284161_1SINBLR6E58BLRBOM6E5399_617099990068664\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":316.06,\"apiMarkup\":1355.94,\"IntCommission\":0,\"apiTaxOnMarkup\":244.06,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":11600.8,\"BaseFareCal\":37738.84,\"BaseFare\":26744,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":778,\"MFT\":10.8,\"OT\":9952,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":194.04,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":11600.8,\"BaseFareCal\":37738.84,\"BaseFare\":26744,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":778,\"MFT\":10.8,\"OT\":9952,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":194.04,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[[{\"segmentid\":\"232\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-08-08T10:30\",\"SegFlightNumber\":\"6E-1216\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-08T02:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":360,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"10:30\",\"FlightDuration\":\"6h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"233\",\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-10T06:15\",\"SegFlightNumber\":\"6E-58\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-08-10T04:20\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":265,\"GroundTime\":405,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:20\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"6h 45m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"234\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-10T14:45\",\"SegFlightNumber\":\"6E-5399\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-08-10T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3645284161_417BOMSIN6E1216SINBLR6E58BLRBOM6E5399_617064843308328\",\"localFromDateTime\":\"2022-08-08 02:00\",\"localToDateTime\":\"2022-08-08 10:30\",\"strSourceAirportCode\":\"SIN\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":4,\"intSourceCityId\":18676,\"intDestinationCityId\":25278,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS118600296010\",\"FlightNumber\":\"6E-58\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:20\",\"ArrivalTime\":\"14:45\",\"TravelDate\":\"2022-08-10T04:20\",\"LocalFromTime\":\"2022-08-10 04:20\",\"FromUTCTime\":\"2022-08-10T04:20\",\"LocalToTime\":\"2022-08-10 14:45\",\"ToUTCTime\":\"2022-08-10T14:45\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":405,\"LAYOVERDuration\":\"6h 45m\",\"FlyingMinutes\":775,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"10h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":25278,\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":4,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 2,500 + Fare Difference__nls__Within 06-72 hrs: Rs 3,000 + Fare Difference__nls__ __bs__Ex India to South east, Middle East and Rest of Asia: __be____nls__ Before 72 hrs: Rs 3,500 + Fare Difference__nls__Within 06-72 hrs: Rs 4,000 + Fare Difference__nls__ __bs__ Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 4,500 + Fare Difference__nls__Within 06-72 hrs: Rs 5,000 + Fare Difference\",\"fcs\":{\"ARFT\":250,\"ARF\":5000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":6500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 3,000__nls__Within 06-72 hrs: Rs 3,500__nls____bs__Ex India to South East, Middle East and Rest of Asia: __be____nls__Before 72 hrs: Rs 4,500__nls__Within 06-72 hrs: Rs 5,000__nls____bs__Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 6,000__nls__Within 06-72 hrs: Rs 6,500\",\"fcs\":{\"ACFT\":325,\"ACF\":6500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"233\",\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-10T06:15\",\"SegFlightNumber\":\"6E-58\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-08-10T04:20\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":265,\"GroundTime\":405,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:20\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"6h 45m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"234\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-10T14:45\",\"SegFlightNumber\":\"6E-5399\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-08-10T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"14:45\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"XBPA\",\"Price\":1259,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"XBPB\",\"Price\":2265,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"XBPC\",\"Price\":3524,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"XBPD\",\"Price\":35895,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"NPLW\",\"Price\":500,\"Description\":\"Neck Pillow\"},{\"Currency\":\"INR\",\"key\":\"233\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"NPLW\",\"Price\":500,\"Description\":\"Neck Pillow\"},{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"0da38-f85b6-f4771-7aa83\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"2022-08-10 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"SIN\",\"intMemberCount\":4,\"intSourceCityId\":18676,\"intDestinationCityId\":25278,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Singapore (SIN)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"SIN\",\"ContSysId\":\"190\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Singapore, SG - Changi Intl Arpt (SIN), Singapore\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"10\\/08\\/2022\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" SG - Changi Intl Arpt (SIN)\",\"adults\":\"2\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"SIN\",\"from\":\"BOM\",\"to\":\"SIN\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Singapore, SG - Changi Intl Arpt (SIN), Singapore\",\"sourceCityId\":18676,\"destinationCityId\":25278,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"10\\/08\\/2022\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":\"2022-08-10\",\"SearchFlightTraceId\":\"0da38-f85b6-f4771-7aa83\",\"from_city_\":\"2__BOM-SIN-BOM\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Singapore+%28SIN%29&source_city=BOM&ContSysId_1=101&destination_city=SIN&ContSysId=190&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Singapore%2C+SG+-+Changi+Intl+Arpt+%28SIN%29%2C+Singapore&departure_date=08%2F08%2F2022&return_date=10%2F08%2F2022&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+SG+-+Changi+Intl+Arpt+%28SIN%29&adults=2&childs=2&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-46-59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-20\",\"passporIssue\":\"2019-07-20\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"kirti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-46-59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"5645645646545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"ritu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-46-59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-46-59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"14\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408359\",\"TPSysId\":\"408360\",\"VersionId\":[\"82774\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29388\",\"FareBreakdownid\":[\"356482\",\"356483\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":{\"16\":{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},\"13\":{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},\"12\":{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},\"14\":{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"}},\"SelectedBaggSessionNew\":{\"16\":{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"XBPA\",\"Price\":2760,\"Weight\":\"5 Kg\"},\"13\":{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"XBPA\",\"Price\":2760,\"Weight\":\"5 Kg\"},\"12\":{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"XBPA\",\"Price\":2760,\"Weight\":\"5 Kg\"},\"14\":{\"Currency\":\"INR\",\"key\":\"232\",\"Code\":\"XBPA\",\"Price\":2760,\"Weight\":\"5 Kg\"}},\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"51\",\"52\",\"53\",\"54\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\",\"13\",\"12\",\"14\"],\"flight_booking_id\":[\"31\",\"32\"]},\"selectedSeatSession\":{\"232\":{\"16\":{\"seatNo\":\"2B\",\"seatPosition\":{\"row\":2,\"column\":2},\"isBooked\":false,\"code\":\"2B\",\"amount\":550},\"13\":{\"seatNo\":\"2C\",\"seatPosition\":{\"row\":2,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"2C\",\"amount\":550},\"12\":{\"seatNo\":\"3B\",\"seatPosition\":{\"row\":3,\"column\":2},\"isBooked\":false,\"code\":\"3B\",\"amount\":550},\"14\":{\"seatNo\":\"3C\",\"seatPosition\":{\"row\":3,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"3C\",\"amount\":550}},\"233\":{\"16\":{\"seatNo\":\"3B\",\"seatPosition\":{\"row\":3,\"column\":2},\"isBooked\":false,\"code\":\"3B\",\"amount\":550},\"13\":{\"seatNo\":\"3C\",\"seatPosition\":{\"row\":3,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"3C\",\"amount\":550},\"12\":{\"seatNo\":\"2C\",\"seatPosition\":{\"row\":2,\"column\":3},\"isBooked\":false,\"isAisle\":true,\"code\":\"2C\",\"amount\":550},\"14\":{\"seatNo\":\"3A\",\"seatPosition\":{\"row\":3,\"column\":1},\"isBooked\":false,\"code\":\"3A\",\"amount\":550}},\"234\":{\"16\":{\"seatNo\":\"2A\",\"seatPosition\":{\"row\":2,\"column\":1},\"isBooked\":false,\"code\":\"2A\",\"amount\":400},\"13\":{\"seatNo\":\"3A\",\"seatPosition\":{\"row\":3,\"column\":1},\"isBooked\":false,\"code\":\"3A\",\"amount\":400},\"12\":{\"seatNo\":\"2B\",\"seatPosition\":{\"row\":2,\"column\":2},\"isBooked\":false,\"code\":\"2B\",\"amount\":400},\"14\":{\"seatNo\":\"3B\",\"seatPosition\":{\"row\":3,\"column\":2},\"isBooked\":false,\"code\":\"3B\",\"amount\":400}}},\"flight_booking_id_Arr\":[\"31\",\"32\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":95573.6},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408360\",\"MasterTPSysId\":\"408359\",\"ProposalID\":\"408360\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":95429.6,\"InvoiceStatus\":true,\"TotalCGST\":72,\"TotalSGST\":72,\"TotalIGST\":144,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":95573.6,\"TotalDueAmount\":0,\"InvoiceValue\":95573.6,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-SIN-IndiGo 6E-1216\",\"ItemQty\":1,\"ItemRates\":76689.6,\"Total\":76689.6,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":77633.6,\"MarkupType\":\"\",\"Markup\":800,\"TotalMarkup\":800,\"SubTotal\":77489.6,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":144,\"SGST\":72,\"CGST\":72,\"IGST\":144,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"SIN-BOM-IndiGo 6E-58\",\"ItemQty\":1,\"ItemRates\":0,\"Total\":0,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":0,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"MisxItems_name\":\"Add ons\",\"Description\":\"Baggage\",\"ItemQty\":1,\"ItemRates\":11040,\"Total\":11040,\"DiscountType\":0,\"Discount\":0,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":11040,\"ServiceFeeTotal\":0,\"GSTPercentage\":0,\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"MisxItems_name\":\"Add ons\",\"Description\":\"Meal\",\"ItemQty\":1,\"ItemRates\":900,\"Total\":900,\"DiscountType\":0,\"Discount\":0,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":900,\"ServiceFeeTotal\":0,\"GSTPercentage\":0,\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"MisxItems_name\":\"Add ons\",\"Description\":\"Seat\",\"ItemQty\":1,\"ItemRates\":6000,\"Total\":6000,\"DiscountType\":0,\"Discount\":0,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":6000,\"ServiceFeeTotal\":0,\"GSTPercentage\":0,\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 15:49:04'),(131,'36aaa-ae872-a477f-5d6a3','{\"BookingData\":[{\"bookingId\":\"TJS113800296013\",\"FlightNumber\":\"TG-338\",\"AirlineName\":\"Thai Airways Intl\",\"AirlineCode\":\"TG\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671\",\"AirlineSysId\":\"493\",\"DepartureTime\":\"01:10\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2022-08-08T01:10\",\"LocalFromTime\":\"2022-08-08 01:10\",\"FromUTCTime\":\"2022-08-08T01:10\",\"LocalToTime\":\"2022-08-08 06:10\",\"ToUTCTime\":\"2022-08-08T06:10\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":717100,\"additionalFee\":50,\"policyInfo\":\"Date change policy Info\",\"fcs\":{\"ARFT\":35855,\"ARF\":717100,\"CRFT\":9,\"CRF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":50900,\"Tax\":67613,\"YQTax\":44470,\"OtherCharges\":16195,\"Discount\":0,\"ServiceFee\":150,\"ManagementFeeTax\":27.000000000000004,\"AirlineGSTComponent\":4771,\"CarrierMiscFee\":0,\"MUFee\":2000,\"intPublishedFare\":118513,\"PublishedFare\":118985,\"OfferedFare\":1177,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"15-2-12-10-4240251777_1BKKMAATG337_617496061379197\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":377.08,\"apiMarkup\":1694.92,\"IntCommission\":0,\"apiTaxOnMarkup\":305.08,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":40738.200000000004,\"BaseFareCal\":73723.26000000001,\"BaseFare\":33930,\"CommissionEarned\":0,\"TDS\":0,\"MF\":90,\"YQ\":26682,\"AGST\":3033,\"MFT\":16.200000000000003,\"OT\":9717,\"MU\":1200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":255.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":26874.800000000003,\"BaseFareCal\":43238.84,\"BaseFare\":16970,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":17788,\"AGST\":1738,\"MFT\":10.8,\"OT\":6478,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":194.04,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\"}]},\"Segments\":[{\"segmentid\":\"159\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-08T06:10\",\"SegFlightNumber\":\"TG-338\",\"AirlineCode\":\"TG\",\"AirlineName\":\"Thai Airways Intl\",\"FareClass\":\"W\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-08-08T01:10\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"01:10\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"36aaa-ae872-a477f-5d6a3\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"2022-08-11 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DMK\",\"intMemberCount\":5,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS113800296013\",\"FlightNumber\":\"TG-338\",\"AirlineName\":\"Thai Airways Intl\",\"AirlineCode\":\"TG\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671\",\"strTraceId\":\"15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671\",\"AirlineSysId\":\"493\",\"DepartureTime\":\"01:10\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2022-08-08T01:10\",\"LocalFromTime\":\"2022-08-08 01:10\",\"FromUTCTime\":\"2022-08-08T01:10\",\"LocalToTime\":\"2022-08-08 06:10\",\"ToUTCTime\":\"2022-08-08T06:10\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":118985,\"ApiResultIndex\":\"15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"36aaa-ae872-a477f-5d6a3\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":717100,\"additionalFee\":50,\"policyInfo\":\"Date change policy Info\",\"fcs\":{\"ARFT\":35855,\"ARF\":717100,\"CRFT\":9,\"CRF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":50900,\"Tax\":67613,\"YQTax\":44470,\"OtherCharges\":16195,\"Discount\":0,\"ServiceFee\":150,\"ManagementFeeTax\":27.000000000000004,\"AirlineGSTComponent\":4771,\"CarrierMiscFee\":0,\"MUFee\":2000,\"intPublishedFare\":118513,\"PublishedFare\":118985,\"OfferedFare\":1177,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"15-2-12-10-4240251777_1BKKMAATG337_617496061379197\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":377.08,\"apiMarkup\":1694.92,\"IntCommission\":0,\"apiTaxOnMarkup\":305.08,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":40738.200000000004,\"BaseFareCal\":73723.26000000001,\"BaseFare\":33930,\"CommissionEarned\":0,\"TDS\":0,\"MF\":90,\"YQ\":26682,\"AGST\":3033,\"MFT\":16.200000000000003,\"OT\":9717,\"MU\":1200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":255.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":26874.800000000003,\"BaseFareCal\":43238.84,\"BaseFare\":16970,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":17788,\"AGST\":1738,\"MFT\":10.8,\"OT\":6478,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":194.04,\"apiMarkup\":677.96,\"IntCommission\":0,\"apiTaxOnMarkup\":122.04,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\"}]},\"Segments\":[[{\"segmentid\":\"159\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-08T06:10\",\"SegFlightNumber\":\"TG-338\",\"AirlineCode\":\"TG\",\"AirlineName\":\"Thai Airways Intl\",\"FareClass\":\"W\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-08-08T01:10\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"01:10\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\"}],[{\"segmentid\":\"160\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-08-12T00:01\",\"SegFlightNumber\":\"TG-337\",\"AirlineCode\":\"TG\",\"AirlineName\":\"Thai Airways Intl\",\"FareClass\":\"W\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2022-08-11T22:10\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":201,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:10\",\"strArrivalDtTime\":\"00:01\",\"FlightDuration\":\"3h 21m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-12-10-4240251777_0MAABKKTG338BKKMAATG337_617458031354671\",\"localFromDateTime\":\"2022-08-08 01:10\",\"localToDateTime\":\"2022-08-08 06:10\",\"strSourceAirportCode\":\"BKK\",\"strDestinationAirportCode\":\"MAA\",\"intMemberCount\":5,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS113800296013\",\"FlightNumber\":\"TG-337\",\"AirlineName\":\"Thai Airways Intl\",\"AirlineCode\":\"TG\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"493\",\"DepartureTime\":\"22:10\",\"ArrivalTime\":\"00:01\",\"TravelDate\":\"2022-08-11T22:10\",\"LocalFromTime\":\"2022-08-11 22:10\",\"FromUTCTime\":\"2022-08-11T22:10\",\"LocalToTime\":\"2022-08-12 00:01\",\"ToUTCTime\":\"2022-08-12T00:01\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":201,\"DepartureDateTxt\":\"Thu, 11 Aug\",\"ArrivalDateTxt\":\"Fri, 12 Aug\",\"FlightDuration\":\"1h 51m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"BKK\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-MAA\":{\"fr\":{\"DATECHANGE\":{\"DEFAULT\":{\"amount\":717100,\"additionalFee\":50,\"policyInfo\":\"Date change policy Info\",\"fcs\":{\"ARFT\":35855,\"ARF\":717100,\"CRFT\":9,\"CRF\":50}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"160\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-08-12T00:01\",\"SegFlightNumber\":\"TG-337\",\"AirlineCode\":\"TG\",\"AirlineName\":\"Thai Airways Intl\",\"FareClass\":\"W\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2022-08-11T22:10\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":201,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:10\",\"strArrivalDtTime\":\"00:01\",\"FlightDuration\":\"3h 21m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"160\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"36aaa-ae872-a477f-5d6a3\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"2022-08-11 12:00\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"DMK\",\"intMemberCount\":5,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Chennai (MAA)\",\"mytrip_city_to\":\"Bangkok (DMK)\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"DMK\",\"ContSysId\":\"215\",\"source\":\"Chennai, IN - Chennai Arpt (MAA), India\",\"destination\":\"Bangkok, BKK, TH - Don Mueang International Arpt (DMK), Thailand\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"11\\/08\\/2022\",\"from_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"to_mytrip_city\":\" BKK\",\"DirectFlight\":\"1\",\"adults\":\"3\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"DMK\",\"from\":\"MAA\",\"to\":\"DMK\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt (MAA), India\",\"destinationCityText\":\"Bangkok, BKK, TH - Don Mueang International Arpt (DMK), Thailand\",\"sourceCityId\":6000,\"destinationCityId\":2266,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"11\\/08\\/2022\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":\"2022-08-11\",\"SearchFlightTraceId\":\"36aaa-ae872-a477f-5d6a3\",\"from_city_\":\"2__MAA-DMK-MAA\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Chennai+%28MAA%29&mytrip_city_to=Bangkok+%28DMK%29&source_city=MAA&ContSysId_1=101&destination_city=DMK&ContSysId=215&source=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29%2C+India&destination=Bangkok%2C+BKK%2C+TH+-+Don+Mueang+International+Arpt+%28DMK%29%2C+Thailand&departure_date=08%2F08%2F2022&return_date=11%2F08%2F2022&from_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29&to_mytrip_city=+BKK&DirectFlight=1&adults=3&childs=2&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-53-09\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-20\",\"passporIssue\":\"2019-07-20\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"kirti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-53-10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"5645645646545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"ritu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-53-10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-53-10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"14\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-53-10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"897564545678456\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"15\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408365\",\"TPSysId\":\"408366\",\"VersionId\":[\"82778\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29389\",\"FareBreakdownid\":[\"356484\",\"356485\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"55\",\"56\",\"57\",\"58\",\"59\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\",\"13\",\"12\",\"14\",\"15\"],\"flight_booking_id\":[\"33\",\"34\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"33\",\"34\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":119457},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408366\",\"MasterTPSysId\":\"408365\",\"ProposalID\":\"408366\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":119313,\"InvoiceStatus\":true,\"TotalCGST\":72,\"TotalSGST\":72,\"TotalIGST\":144,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":119457,\"TotalDueAmount\":0,\"InvoiceValue\":119457,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-BKK-Thai Airways Intl TG-338\",\"ItemQty\":1,\"ItemRates\":118513,\"Total\":118513,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":119457,\"MarkupType\":\"\",\"Markup\":800,\"TotalMarkup\":800,\"SubTotal\":119313,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":144,\"SGST\":72,\"CGST\":72,\"IGST\":144,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BKK-MAA-Thai Airways Intl TG-337\",\"ItemQty\":1,\"ItemRates\":0,\"Total\":0,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":0,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 15:54:18'),(135,'884fa-abec5-53d88-470eb','{\"BookingData\":[{\"bookingId\":\"TJS110200296025\",\"FlightNumber\":\"EK-372\",\"AirlineName\":\"Emirates Airlines\",\"AirlineCode\":\"EK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557\",\"AirlineSysId\":\"203\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2022-08-07T09:40\",\"LocalFromTime\":\"2022-08-07 09:40\",\"FromUTCTime\":\"2022-08-07T09:40\",\"LocalToTime\":\"2022-08-07 19:15\",\"ToUTCTime\":\"2022-08-07T19:15\",\"IsDirect\":0,\"FareClass\":\"Y\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":395,\"DepartureDateTxt\":\"Sun, 07 Aug\",\"ArrivalDateTxt\":\"Sun, 07 Aug\",\"FlightDuration\":\"9h 35m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DXB-DXB\":{\"fr\":{\"DATECHANGE\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":0,\"ARF\":0,\"CRFT\":9,\"CRF\":50}},\"AFTER_DEPARTURE\":{\"additionalFee\":50,\"policyInfo\":\"Not Applicable\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"NO_SHOW\":{\"BEFORE_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"},\"AFTER_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"}},\"CANCELLATION\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}},\"AFTER_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":756805,\"Tax\":159290.6,\"YQTax\":119424,\"OtherCharges\":35948,\"Discount\":0,\"ServiceFee\":270,\"ManagementFeeTax\":48.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":3600,\"intPublishedFare\":916095.6,\"PublishedFare\":916567.6000000001,\"OfferedFare\":2118.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-12-10-3901988912_1BKKDXBEK373_617866294855295\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":621.16,\"apiMarkup\":3050.84,\"IntCommission\":0,\"apiTaxOnMarkup\":549.16,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":99147,\"BaseFareCal\":612149.0800000001,\"BaseFare\":514625,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":74640,\"AGST\":0,\"MFT\":27,\"OT\":22330,\"MU\":2000,\"YR\":0,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":377.08,\"apiMarkup\":1694.92,\"IntCommission\":0,\"apiTaxOnMarkup\":305.08,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":59488.200000000004,\"BaseFareCal\":290128.26,\"BaseFare\":231585,\"CommissionEarned\":0,\"TDS\":0,\"MF\":90,\"YQ\":44784,\"AGST\":0,\"MFT\":16.200000000000003,\"OT\":13398,\"MU\":1200,\"YR\":0,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":255.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":655.4,\"BaseFareCal\":10983.419999999998,\"BaseFare\":10595,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"OT\":220,\"MFT\":5.4,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":133.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":\"0Kg\"}]},\"Segments\":[{\"segmentid\":\"49\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-07T19:15\",\"SegFlightNumber\":\"EK-372\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"Y\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-07T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"35KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":395,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"6h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"49\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"884fa-abec5-53d88-470eb\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-07 12:00\",\"localToDateTime\":\"2022-08-10 12:00\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":9,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS110200296025\",\"FlightNumber\":\"EK-372\",\"AirlineName\":\"Emirates Airlines\",\"AirlineCode\":\"EK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557\",\"strTraceId\":\"15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557\",\"AirlineSysId\":\"203\",\"DepartureTime\":\"09:40\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2022-08-07T09:40\",\"LocalFromTime\":\"2022-08-07 09:40\",\"FromUTCTime\":\"2022-08-07T09:40\",\"LocalToTime\":\"2022-08-07 19:15\",\"ToUTCTime\":\"2022-08-07T19:15\",\"IsDirect\":0,\"FareClass\":\"Y\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":395,\"DepartureDateTxt\":\"Sun, 07 Aug\",\"ArrivalDateTxt\":\"Sun, 07 Aug\",\"FlightDuration\":\"9h 35m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":916567.6000000001,\"ApiResultIndex\":\"15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"884fa-abec5-53d88-470eb\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DXB-DXB\":{\"fr\":{\"DATECHANGE\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":0,\"ARF\":0,\"CRFT\":9,\"CRF\":50}},\"AFTER_DEPARTURE\":{\"additionalFee\":50,\"policyInfo\":\"Not Applicable\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"NO_SHOW\":{\"BEFORE_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"},\"AFTER_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"}},\"CANCELLATION\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}},\"AFTER_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":756805,\"Tax\":159290.6,\"YQTax\":119424,\"OtherCharges\":35948,\"Discount\":0,\"ServiceFee\":270,\"ManagementFeeTax\":48.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":3600,\"intPublishedFare\":916095.6,\"PublishedFare\":916567.6000000001,\"OfferedFare\":2118.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-12-10-3901988912_1BKKDXBEK373_617866294855295\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"intTotalGST\":621.16,\"apiMarkup\":3050.84,\"IntCommission\":0,\"apiTaxOnMarkup\":549.16,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":99147,\"BaseFareCal\":612149.0800000001,\"BaseFare\":514625,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":74640,\"AGST\":0,\"MFT\":27,\"OT\":22330,\"MU\":2000,\"YR\":0,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":377.08,\"apiMarkup\":1694.92,\"IntCommission\":0,\"apiTaxOnMarkup\":305.08,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":59488.200000000004,\"BaseFareCal\":290128.26,\"BaseFare\":231585,\"CommissionEarned\":0,\"TDS\":0,\"MF\":90,\"YQ\":44784,\"AGST\":0,\"MFT\":16.200000000000003,\"OT\":13398,\"MU\":1200,\"YR\":0,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":255.06,\"apiMarkup\":1016.94,\"IntCommission\":0,\"apiTaxOnMarkup\":183.06,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":655.4,\"BaseFareCal\":10983.419999999998,\"BaseFare\":10595,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"OT\":220,\"MFT\":5.4,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":133.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":\"0Kg\"}]},\"Segments\":[[{\"segmentid\":\"49\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-07T19:15\",\"SegFlightNumber\":\"EK-372\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"Y\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-07T09:40\",\"TripIndicator\":\"\",\"Baggage\":\"35KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":395,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:40\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"6h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}],[{\"segmentid\":\"50\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-11T00:50\",\"SegFlightNumber\":\"EK-373\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"M\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2022-08-10T21:25\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":385,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"6h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"15-2-12-10-3901988912_1DXBBKKEK372BKKDXBEK373_617825911023557\",\"localFromDateTime\":\"2022-08-07 09:40\",\"localToDateTime\":\"2022-08-07 19:15\",\"strSourceAirportCode\":\"BKK\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":9,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS110200296025\",\"FlightNumber\":\"EK-373\",\"AirlineName\":\"Emirates Airlines\",\"AirlineCode\":\"EK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"203\",\"DepartureTime\":\"21:25\",\"ArrivalTime\":\"00:50\",\"TravelDate\":\"2022-08-10T21:25\",\"LocalFromTime\":\"2022-08-10 21:25\",\"FromUTCTime\":\"2022-08-10T21:25\",\"LocalToTime\":\"2022-08-11 00:50\",\"ToUTCTime\":\"2022-08-11T00:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":385,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 11 Aug\",\"FlightDuration\":\"3h 25m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"BKK\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DXB-DXB\":{\"fr\":{\"DATECHANGE\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":0,\"ARF\":0,\"CRFT\":9,\"CRF\":50}},\"AFTER_DEPARTURE\":{\"additionalFee\":50,\"policyInfo\":\"Not Applicable\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"NO_SHOW\":{\"BEFORE_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"},\"AFTER_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"}},\"CANCELLATION\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}},\"AFTER_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"50\",\"originAirportName\":\"Suvarnabhumi Intl Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-11T00:50\",\"SegFlightNumber\":\"EK-373\",\"AirlineCode\":\"EK\",\"AirlineName\":\"Emirates Airlines\",\"FareClass\":\"M\",\"originAirportCode\":\"BKK\",\"originDepTime\":\"2022-08-10T21:25\",\"TripIndicator\":\"\",\"Baggage\":\"30KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":385,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"00:50\",\"FlightDuration\":\"6h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/EK.gif\"}],\"Baggage\":null,\"Meal\":[{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"50\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"884fa-abec5-53d88-470eb\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-07 12:00\",\"localToDateTime\":\"2022-08-10 12:00\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":9,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Dubai (DXB)\",\"mytrip_city_to\":\"Bangkok (BKK)\",\"source_city\":\"DXB\",\"ContSysId_1\":\"228\",\"destination_city\":\"BKK\",\"ContSysId\":\"215\",\"source\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"destination\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"departure_date\":\"07\\/08\\/2022\",\"return_date\":\"10\\/08\\/2022\",\"from_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"to_mytrip_city\":\" TH - Suvarnabhumi Intl Arpt (BKK)\",\"DirectFlight\":\"1\",\"adults\":\"5\",\"childs\":\"3\",\"infants\":\"1\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DXB\",\"destinationCityAirportCode\":\"BKK\",\"from\":\"DXB\",\"to\":\"BKK\",\"sourceCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"destinationCityText\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"sourceCityId\":8219,\"destinationCityId\":2266,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"3\",\"infant\":\"1\",\"departure_dates\":\"07\\/08\\/2022\",\"return_dates\":\"10\\/08\\/2022\",\"strDepatureDate\":\"2022-08-07\",\"strReturnDate\":\"2022-08-10\",\"SearchFlightTraceId\":\"884fa-abec5-53d88-470eb\",\"from_city_\":\"2__DXB-BKK-DXB\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Dubai+%28DXB%29&mytrip_city_to=Bangkok+%28BKK%29&source_city=DXB&ContSysId_1=228&destination_city=BKK&ContSysId=215&source=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29%2C+United+Arab+Emirates&destination=Bangkok%2C+TH+-+Suvarnabhumi+Intl+Arpt+%28BKK%29%2C+Thailand&departure_date=07%2F08%2F2022&return_date=10%2F08%2F2022&from_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29&to_mytrip_city=+TH+-+Suvarnabhumi+Intl+Arpt+%28BKK%29&DirectFlight=1&adults=5&childs=3&infants=1&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-20\",\"passporIssue\":\"2019-07-20\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"ritu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"kirti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"5645645646545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"14\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"897564545678456\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"15\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"pyal\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"21\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"piya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2020-07-20\",\"CustomerMemberSysId\":\"23\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"chiya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"9856646864545648\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"22\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"rishi\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2021-08-02\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-15-59-56\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2024-07-21\",\"passporIssue\":\"2019-07-20\",\"CustomerMemberSysId\":\"27\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408372\",\"TPSysId\":\"408373\",\"VersionId\":[\"82779\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29391\",\"FareBreakdownid\":[\"356486\",\"356487\",\"356488\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"60\",\"61\",\"62\",\"63\",\"64\",\"65\",\"66\",\"67\",\"68\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\",\"12\",\"13\",\"14\",\"15\",\"21\",\"23\",\"22\",\"27\"],\"flight_booking_id\":[\"35\",\"36\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"35\",\"36\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":917511.6},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408373\",\"MasterTPSysId\":\"408372\",\"ProposalID\":\"408373\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":917367.6,\"InvoiceStatus\":true,\"TotalCGST\":72,\"TotalSGST\":72,\"TotalIGST\":144,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":917511.6,\"TotalDueAmount\":0,\"InvoiceValue\":917511.6,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DXB-BKK-Emirates Airlines EK-372\",\"ItemQty\":1,\"ItemRates\":916567.6,\"Total\":916567.6,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":917511.6,\"MarkupType\":\"\",\"Markup\":800,\"TotalMarkup\":800,\"SubTotal\":917367.6,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":144,\"SGST\":72,\"CGST\":72,\"IGST\":144,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BKK-DXB-Emirates Airlines EK-373\",\"ItemQty\":1,\"ItemRates\":0,\"Total\":0,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":0,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 16:01:56'),(136,'8044c-8ff46-4242a-c4019','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6784\",\"SegFlightNumberArr\":\"6E-6784, 6E-2105\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7971051504_36BOMVNS6E6784VNSDEL6E2105_618744215982743\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"00:00\",\"TravelDate\":\"2022-08-09T18:20\",\"LocalFromTime\":\"2022-08-09 18:20\",\"FromUTCTime\":\"2022-08-09T18:20\",\"LocalToTime\":\"2022-08-10 00:00\",\"ToUTCTime\":\"2022-08-10T00:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":8,\"CurrencyType\":null,\"PublishedFare\":23027.6,\"PublishedFareTxt\":\"23,028\",\"ApiResultIndex\":\"5-7971051504_36BOMVNS6E6784VNSDEL6E2105_618744215982743\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"SearchFlightTraceId\":\"8044c-8ff46-4242a-c4019\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16080,\"Tax\":6829.6,\"YQTax\":0,\"OtherCharges\":5088,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":22909.6,\"PublishedFare\":23028,\"OfferedFare\":21309.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7971051504_36BOMVNS6E6784VNSDEL6E2105_618744215982743\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":262.07,\"apiMarkup\":1355.93,\"IntCommission\":0,\"apiTaxOnMarkup\":244.07,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":1455.93,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":4268.5,\"BaseFareCal\":13489.04,\"BaseFare\":10050,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":0,\"MFT\":13.5,\"OT\":3180,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":947.46,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2561.1000000000004,\"BaseFareCal\":8100.63,\"BaseFare\":6030,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":1908,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":608.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":1355.93,\"apiTaxOnMarkup\":244.07,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":262.07,\"PublishFare\":23027.6,\"CostToCustomer\":23027.6,\"BaseFareCal\":21571.67,\"intCommisionEarnedForAgency\":1455.93,\"CostToCompany\":21571.67,\"intOfferedFare\":21309.6,\"intPublishFare\":22909.6,\"TripjackMarkup\":1600,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"015\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-08-09T20:30\",\"SegFlightNumber\":\"6E-6784\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":115,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"1h 55m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-10T00:00\",\"SegFlightNumber\":\"6E-2105\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-08-09T22:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"00:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"0LG\"},{\"FlightNumber\":\"6E-167\",\"SegFlightNumberArr\":\"6E-167, 6E-6813\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7971051504_37DELVNS6E167VNSBOM6E6813_618744216360817\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-08-07T17:55\",\"LocalFromTime\":\"2022-08-07 17:55\",\"FromUTCTime\":\"2022-08-07T17:55\",\"LocalToTime\":\"2022-08-07 23:20\",\"ToUTCTime\":\"2022-08-07T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Sun, 07 Aug\",\"ArrivalDateTxt\":\"Sun, 07 Aug\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":8,\"CurrencyType\":null,\"PublishedFare\":23035.6,\"PublishedFareTxt\":\"23,036\",\"ApiResultIndex\":\"5-7971051504_37DELVNS6E167VNSBOM6E6813_618744216360817\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"SearchFlightTraceId\":\"8044c-8ff46-4242a-c4019\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16000,\"Tax\":6917.6,\"YQTax\":0,\"OtherCharges\":5176,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1600,\"intPublishedFare\":22917.6,\"PublishedFare\":23036,\"OfferedFare\":21317.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7971051504_37DELVNS6E167VNSBOM6E6813_618744216360817\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":262.07,\"apiMarkup\":1355.93,\"IntCommission\":0,\"apiTaxOnMarkup\":244.07,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":1455.93,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":4323.5,\"BaseFareCal\":13494.04,\"BaseFare\":10000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":0,\"MFT\":13.5,\"OT\":3235,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":947.46,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2594.1000000000004,\"BaseFareCal\":8103.63,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":1941,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":608.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":1355.93,\"apiTaxOnMarkup\":244.07,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":262.07,\"PublishFare\":23035.6,\"CostToCustomer\":23035.6,\"BaseFareCal\":21579.67,\"intCommisionEarnedForAgency\":1455.93,\"CostToCompany\":21579.67,\"intOfferedFare\":21317.6,\"intPublishFare\":22917.6,\"TripjackMarkup\":1600,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"0BK\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-08-07T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-07T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-07T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-08-07T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"45001-50000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"0LH\"}],\"FlightBookingDataInbound\":\"\"}','2022-07-13 16:14:03'),(137,'12d54-087ca-1ed32-c386b','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2111\",\"SegFlightNumberArr\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8313361091_0BOMDEL6E2111_619522707267305\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2022-08-10T02:40\",\"LocalFromTime\":\"2022-08-10 02:40\",\"FromUTCTime\":\"2022-08-10T02:40\",\"LocalToTime\":\"2022-08-10 04:35\",\"ToUTCTime\":\"2022-08-10T04:35\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3968.7,\"PublishedFareTxt\":\"3,969\",\"ApiResultIndex\":\"5-8313361091_0BOMDEL6E2111_619522707267305\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"SearchFlightTraceId\":\"12d54-087ca-1ed32-c386b\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3000,\"Tax\":850.7,\"YQTax\":0,\"OtherCharges\":633,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3850.7,\"PublishedFare\":3969,\"OfferedFare\":3650.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8313361091_0BOMDEL6E2111_619522707268520\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":269.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":850.7,\"BaseFareCal\":3699.21,\"BaseFare\":3000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":633,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":269.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":3968.7,\"CostToCustomer\":3968.7,\"BaseFareCal\":3699.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":3699.21,\"intOfferedFare\":3650.7,\"intPublishFare\":3850.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02U\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-10T04:35\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-10T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"0PD\"},{\"FlightNumber\":\"6E-167\",\"SegFlightNumberArr\":\"6E-167, 6E-6813\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8313361091_39DELVNS6E167VNSBOM6E6813_619522707792177\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-08-08T17:55\",\"LocalFromTime\":\"2022-08-08 17:55\",\"FromUTCTime\":\"2022-08-08T17:55\",\"LocalToTime\":\"2022-08-08 23:20\",\"ToUTCTime\":\"2022-08-08T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2982.7,\"PublishedFareTxt\":\"2,983\",\"ApiResultIndex\":\"5-8313361091_39DELVNS6E167VNSBOM6E6813_619522707792177\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"SearchFlightTraceId\":\"12d54-087ca-1ed32-c386b\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":647,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2983,\"OfferedFare\":2664.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8313361091_39DELVNS6E167VNSBOM6E6813_619522707792177\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":269.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"BaseFareCal\":2713.21,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":647,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":269.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":2982.7,\"CostToCustomer\":2982.7,\"BaseFareCal\":2713.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":2713.21,\"intOfferedFare\":2664.7,\"intPublishFare\":2864.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"09Q\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-08-08T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-08-08T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"0HU\"}],\"FlightBookingDataInbound\":\"\"}','2022-07-13 16:27:25'),(138,'cca5d-54e6e-9c0e0-9c26e','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6784\",\"SegFlightNumberArr\":\"6E-6784, 6E-2105\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9180087370_36BOMVNS6E6784VNSDEL6E2105_619917461654566\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"00:00\",\"TravelDate\":\"2022-08-10T18:20\",\"LocalFromTime\":\"2022-08-10 18:20\",\"FromUTCTime\":\"2022-08-10T18:20\",\"LocalToTime\":\"2022-08-11 00:00\",\"ToUTCTime\":\"2022-08-11T00:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":115,\"LAYOVERDuration\":\"1h 55m\",\"FlyingMinutes\":340,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Thu, 11 Aug\",\"FlightDuration\":\"5h 40m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":9,\"CurrencyType\":null,\"PublishedFare\":24745.3,\"PublishedFareTxt\":\"24,745\",\"ApiResultIndex\":\"5-9180087370_36BOMVNS6E6784VNSDEL6E2105_619917461654566\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"SearchFlightTraceId\":\"cca5d-54e6e-9c0e0-9c26e\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17580,\"Tax\":7047.3,\"YQTax\":0,\"OtherCharges\":5088,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.3,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1800,\"intPublishedFare\":24627.3,\"PublishedFare\":24746,\"OfferedFare\":22827.3,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9180087370_36BOMVNS6E6784VNSDEL6E2105_619917461654566\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":292.58,\"apiMarkup\":1525.42,\"IntCommission\":0,\"apiTaxOnMarkup\":274.58,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":1625.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":4268.5,\"BaseFareCal\":13489.04,\"BaseFare\":10050,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":0,\"MFT\":13.5,\"OT\":3180,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":947.46,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2561.1000000000004,\"BaseFareCal\":8100.63,\"BaseFare\":6030,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":1908,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":608.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":217.7,\"BaseFareCal\":1566.21,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":269.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":1525.42,\"apiTaxOnMarkup\":274.58,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":292.58,\"PublishFare\":24745.3,\"CostToCustomer\":24745.3,\"BaseFareCal\":23119.88,\"intCommisionEarnedForAgency\":1625.42,\"CostToCompany\":23119.88,\"intOfferedFare\":22827.3,\"intPublishFare\":24627.3,\"TripjackMarkup\":1800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"018\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-08-10T20:30\",\"SegFlightNumber\":\"6E-6784\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-10T18:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":115,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"20:30\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"1h 55m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-11T00:00\",\"SegFlightNumber\":\"6E-2105\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-08-10T22:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"00:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"51000-55000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"0LJ\"},{\"FlightNumber\":\"6E-167\",\"SegFlightNumberArr\":\"6E-167, 6E-6813\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9180087370_37DELVNS6E167VNSBOM6E6813_619917462065206\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-08-08T17:55\",\"LocalFromTime\":\"2022-08-08 17:55\",\"FromUTCTime\":\"2022-08-08T17:55\",\"LocalToTime\":\"2022-08-08 23:20\",\"ToUTCTime\":\"2022-08-08T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":9,\"CurrencyType\":null,\"PublishedFare\":24753.3,\"PublishedFareTxt\":\"24,753\",\"ApiResultIndex\":\"5-9180087370_37DELVNS6E167VNSBOM6E6813_619917462065206\",\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"\",\"SearchFlightTraceId\":\"cca5d-54e6e-9c0e0-9c26e\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17500,\"Tax\":7135.3,\"YQTax\":0,\"OtherCharges\":5176,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.3,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1800,\"intPublishedFare\":24635.3,\"PublishedFare\":24754,\"OfferedFare\":22835.3,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9180087370_37DELVNS6E167VNSBOM6E6813_619917462065206\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":292.58,\"apiMarkup\":1525.42,\"IntCommission\":0,\"apiTaxOnMarkup\":274.58,\"NoOfSeatAvailable\":null,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":1625.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":4323.5,\"BaseFareCal\":13494.04,\"BaseFare\":10000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":0,\"MFT\":13.5,\"OT\":3235,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":947.46,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2594.1000000000004,\"BaseFareCal\":8103.63,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":1941,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":608.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":217.7,\"BaseFareCal\":1566.21,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":269.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":1525.42,\"apiTaxOnMarkup\":274.58,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":292.58,\"PublishFare\":24753.3,\"CostToCustomer\":24753.3,\"BaseFareCal\":23127.88,\"intCommisionEarnedForAgency\":1625.42,\"CostToCompany\":23127.88,\"intOfferedFare\":22835.3,\"intPublishFare\":24635.3,\"TripjackMarkup\":1800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"0BN\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-08-08T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-08-08T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"45001-50000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"0LK\"}],\"FlightBookingDataInbound\":\"\"}','2022-07-13 16:34:16'),(139,'75c84-5d142-cb3d9-ce12b','{\"FlightBookingData\":[{\"PublishedFare\":200111.6,\"AirlineName\":\"Air India\",\"DepartureTime\":\"00:05\",\"FlyingMinutes\":\"3h 10m\",\"ArrivalTime\":\"04:45\",\"JourneyType\":1,\"TripType\":3,\"IsInternational\":\"1\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":154350,\"Tax\":45407.6,\"YQTax\":0,\"OtherCharges\":31880,\"Discount\":0,\"ServiceFee\":270,\"ManagementFeeTax\":48.6,\"AirlineGSTComponent\":7809,\"CarrierMiscFee\":1800,\"MUFee\":3600,\"intPublishedFare\":199757.6,\"PublishedFare\":200112,\"OfferedFare\":196157.6,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-12-10-2360539712_30DELDXBAI929DXBDELAI996_620143201324325\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"Economy\",\"intTotalGST\":603.15,\"apiMarkup\":3050.85,\"IntCommission\":0,\"apiTaxOnMarkup\":549.15,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":3350.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":300,\"AddiTaxOnMarkup\":54,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":28402,\"BaseFareCal\":131761.08,\"BaseFare\":105000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":150,\"YQ\":0,\"AGST\":5300,\"MFT\":27,\"OT\":19925,\"MU\":2000,\"YR\":1000,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":359.08,\"apiMarkup\":1694.92,\"IntCommission\":0,\"apiTaxOnMarkup\":305.08,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":1994.92,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":16255.199999999999,\"BaseFareCal\":62542.25,\"BaseFare\":47250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":90,\"YQ\":0,\"AGST\":2394,\"MFT\":16.200000000000003,\"OT\":11955,\"MU\":1200,\"YR\":600,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":237.05,\"apiMarkup\":1016.95,\"IntCommission\":0,\"apiTaxOnMarkup\":183.05,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":1316.95,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":750.4,\"BaseFareCal\":2565.42,\"BaseFare\":2100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":115,\"OT\":0,\"MFT\":5.4,\"MU\":400,\"YR\":200,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":115.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":638.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10 Kilograms\",\"CabinBaggage\":\"0Kg\"}],\"arrMarkUps\":{\"apiMarkup\":3050.85,\"apiTaxOnMarkup\":549.15,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":300,\"IntTaxOnAgencyFixMarkUp\":54,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":603.15,\"PublishFare\":200111.6,\"CostToCustomer\":200111.6,\"BaseFareCal\":196760.75,\"intCommisionEarnedForAgency\":3350.85,\"CostToCompany\":196760.75,\"intOfferedFare\":196157.6,\"intPublishFare\":199757.6,\"TripjackMarkup\":3600,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":300,\"AddiTaxOnMarkup\":54,\"IntAdddimarkup\":300},\"$$hashKey\":\"01G\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-08-07T09:40\",\"SegFlightNumber\":\"AI-929\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-07T07:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:40\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"ConectingTime\":0,\"SegmentNumber\":0,\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T04:45\",\"SegFlightNumber\":\"AI-996\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"G\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-08-09T00:05\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:05\",\"strArrivalDtTime\":\"04:45\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"ConectingTime\":0,\"SegmentNumber\":0,\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FlightData\":[{\"FlightNumber\":\"929\",\"SegFlightNumberArr\":\"AI-929\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"OrFlightNumber\":\"AI-929\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-2360539712_30DELDXBAI929DXBDELAI996_620143201324325\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"07:40\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2022-08-07T07:40\",\"LocalFromTime\":\"2022-08-07 07:40\",\"FromUTCTime\":\"2022-08-07T07:40\",\"LocalToTime\":\"2022-08-07 09:40\",\"ToUTCTime\":\"2022-08-07T09:40\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Sun, 07 Aug\",\"ArrivalDateTxt\":\"Sun, 07 Aug\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"SourcePlaceName\":\"Delhi\",\"DestPlaceName\":\"Dubai\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":3,\"IsInternational\":\"1\",\"strFlightRoute\":\"3\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"019\"},{\"FlightNumber\":\"996\",\"SegFlightNumberArr\":\"AI-996\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"OrFlightNumber\":\"AI-996\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"15-2-12-10-2360539712_30DELDXBAI929DXBDELAI996_620143201324325\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"00:05\",\"ArrivalTime\":\"04:45\",\"TravelDate\":\"2022-08-09T00:05\",\"LocalFromTime\":\"2022-08-09 00:05\",\"FromUTCTime\":\"2022-08-09T00:05\",\"LocalToTime\":\"2022-08-09 04:45\",\"ToUTCTime\":\"2022-08-09T04:45\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":null,\"DestPlaceSysId\":null,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"DEL\",\"SourcePlaceName\":\"Delhi\",\"DestPlaceName\":\"Dubai\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":3,\"IsInternational\":\"1\",\"strFlightRoute\":\"3\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01A\"}],\"MultiHead\":[{\"source\":\"Delhi\",\"destination\":\"Dubai\",\"soCode\":\"DEL\",\"deCode\":\"XNB\",\"departure_date\":\"2022\\/08\\/07\",\"dep_date\":\"07 Aug 2022\"},{\"source\":\"Dubai\",\"destination\":\"Delhi\",\"soCode\":\"XNB\",\"deCode\":\"DEL\",\"departure_date\":\"2022\\/08\\/09\",\"dep_date\":\"09 Aug 2022\"}],\"IsBagIncludes\":true,\"IsMealIncludes\":false,\"SearchFlightTraceId\":\"75c84-5d142-cb3d9-ce12b\",\"ICSourceSysId\":7,\"$$hashKey\":\"009\",\"apiTraceId\":\"15-2-12-10-2360539712_30DELDXBAI929DXBDELAI996_620143201324325\"},{\"bookingId\":\"TJS107700296146\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9180087370_37DELVNS6E167VNSBOM6E6813_619917462065206\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-08-08T17:55\",\"LocalFromTime\":\"2022-08-08 17:55\",\"FromUTCTime\":\"2022-08-08T17:55\",\"LocalToTime\":\"2022-08-08 23:20\",\"ToUTCTime\":\"2022-08-08T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"5h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":9,\"CurrencyType\":1,\"PublishedFare\":24635.3,\"PublishedFareTxt\":\"24,635\",\"ApiResultIndex\":\"5-9180087370_37DELVNS6E167VNSBOM6E6813_619917462065206\",\"JourneyType\":2,\"TripType\":\"3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17500,\"Tax\":7135.3,\"YQTax\":0,\"OtherCharges\":4312,\"Discount\":0,\"ServiceFee\":135,\"ManagementFeeTax\":24.3,\"AirlineGSTComponent\":864,\"CarrierMiscFee\":0,\"MUFee\":1800,\"intPublishedFare\":24635.3,\"PublishedFare\":24753.3,\"OfferedFare\":22835.3,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9180087370_1DELVNS6E167VNSBOM6E6813_619992705627080\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":292.58,\"apiMarkup\":1525.42,\"IntCommission\":0,\"apiTaxOnMarkup\":274.58,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":4323.5,\"BaseFareCal\":13494.04,\"BaseFare\":10000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":75,\"YQ\":0,\"AGST\":540,\"MFT\":13.5,\"OT\":2695,\"MU\":1000,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"3\",\"TaxIN\":2594.1000000000004,\"BaseFareCal\":8103.63,\"BaseFare\":6000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":324,\"MFT\":8.100000000000001,\"OT\":1617,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":217.7,\"BaseFareCal\":1566.21,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":1525.42,\"apiTaxOnMarkup\":274.58,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":292.58,\"PublishFare\":24753.3,\"CostToCustomer\":24753.3,\"BaseFareCal\":23127.88,\"intCommisionEarnedForAgency\":1625.42,\"CostToCompany\":23127.88,\"intOfferedFare\":22835.3,\"intPublishFare\":24635.3,\"TripjackMarkup\":1800,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"87\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-08-08T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"88\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-08-08T21:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"87\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cca5d-54e6e-9c0e0-9c26e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9180087370_37DELVNS6E167VNSBOM6E6813_619917462065206\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"1970-01-01 05:30\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":[\"DEL\",\"BOM\"],\"strDestinationAirportCode\":[\"BOM\",\"DEL\"],\"intMemberCount\":9,\"intSourceCityId\":[7701,18676],\"intDestinationCityId\":[18676,7701],\"JourneyType\":2,\"TripType\":\"3\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"FlightBookingDataInbound\":null}','2022-07-13 16:37:46'),(143,'5eaad-a2e4d-73954-6c859','{\"BookingData\":[{\"bookingId\":\"TJS109400296246\",\"FlightNumber\":\"6E-6939\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"21:00\",\"TravelDate\":\"2022-07-26T17:00\",\"LocalFromTime\":\"2022-07-26 17:00\",\"FromUTCTime\":\"2022-07-26T17:00\",\"LocalToTime\":\"2022-07-26 21:00\",\"ToUTCTime\":\"2022-07-26T21:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Tue, 26 Jul\",\"ArrivalDateTxt\":\"Tue, 26 Jul\",\"FlightDuration\":\"4h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4700.7,\"PublishedFareTxt\":\"4,701\",\"ApiResultIndex\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3749,\"Tax\":951.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":195,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4700.7,\"PublishedFare\":4818.7,\"OfferedFare\":4500.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3570162471_0DELAMD6E6939AMDBOM6E5325_622960826045744\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":951.7,\"BaseFareCal\":4549.21,\"BaseFare\":3749,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":195,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4818.7,\"CostToCustomer\":4818.7,\"BaseFareCal\":4549.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4549.21,\"intOfferedFare\":4500.7,\"intPublishFare\":4700.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"99\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-07-26T18:35\",\"SegFlightNumber\":\"6E-6939\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-26T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":70,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"100\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-26T21:00\",\"SegFlightNumber\":\"6E-5325\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-07-26T19:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:45\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5eaad-a2e4d-73954-6c859\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS109400296246\",\"FlightNumber\":\"6E-6939\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"strTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"21:00\",\"TravelDate\":\"2022-07-26T17:00\",\"LocalFromTime\":\"2022-07-26 17:00\",\"FromUTCTime\":\"2022-07-26T17:00\",\"LocalToTime\":\"2022-07-26 21:00\",\"ToUTCTime\":\"2022-07-26T21:00\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":70,\"LAYOVERDuration\":\"1h 10m\",\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Tue, 26 Jul\",\"ArrivalDateTxt\":\"Tue, 26 Jul\",\"FlightDuration\":\"4h 0m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4700.7,\"ApiResultIndex\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"5eaad-a2e4d-73954-6c859\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3749,\"Tax\":951.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":195,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4700.7,\"PublishedFare\":4818.7,\"OfferedFare\":4500.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":951.7,\"BaseFareCal\":4549.21,\"BaseFare\":3749,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":195,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"99\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-07-26T18:35\",\"SegFlightNumber\":\"6E-6939\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-26T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":70,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"1h 10m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"100\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-26T21:00\",\"SegFlightNumber\":\"6E-5325\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-07-26T19:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:45\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3570162471_62DELAMD6E6939AMDBOM6E5325_622946037351153\",\"localFromDateTime\":\"2022-07-26 17:00\",\"localToDateTime\":\"2022-07-26 21:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"26\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"26\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-26\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"5eaad-a2e4d-73954-6c859\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=26%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"komal@hellogtx.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8595077740\",\"FirstName\":\"Komal\",\"LastName\":\"Malhotra\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-17-23-59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"17\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408454\",\"TPSysId\":\"408455\",\"VersionId\":[\"82826\"],\"CustomerSysId\":\"214169\",\"TrxId\":\"29402\",\"FareBreakdownid\":[\"356496\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"69\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"17\",\"CustomerMemSysId\":[\"17\"],\"flight_booking_id\":[\"37\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"37\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4818.7},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"214169\",\"TPSysId\":\"408455\",\"MasterTPSysId\":\"408454\",\"ProposalID\":\"408455\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4782.7,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4818.7,\"TotalDueAmount\":0,\"InvoiceValue\":4818.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-IndiGo 6E-6939\",\"ItemQty\":1,\"ItemRates\":4582.7,\"Total\":4582.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4818.7,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":4782.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 17:24:23'),(147,'cee11-d017b-ef198-24085','{\"BookingData\":[{\"bookingId\":\"TJS118700296253\",\"FlightNumber\":\"ET-603\",\"AirlineName\":\"Ethiopian Air Lines\",\"AirlineCode\":\"ET\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"AirlineSysId\":\"209\",\"DepartureTime\":\"17:10\",\"ArrivalTime\":\"13:30\",\"TravelDate\":\"2022-07-21T17:10\",\"LocalFromTime\":\"2022-07-21 17:10\",\"FromUTCTime\":\"2022-07-21T17:10\",\"LocalToTime\":\"2022-07-22 13:30\",\"ToUTCTime\":\"2022-07-22T13:30\",\"IsDirect\":0,\"FareClass\":\"Y\",\"LAYOVERCity\":\"Addis Ababa\",\"GroundTime\":215,\"LAYOVERDuration\":\"3h 35m\",\"FlyingMinutes\":1040,\"DepartureDateTxt\":\"Thu, 21 Jul\",\"ArrivalDateTxt\":\"Fri, 22 Jul\",\"FlightDuration\":\"20h 20m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":138846.7,\"PublishedFareTxt\":\"138,847\",\"ApiResultIndex\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\",\"FareRuleDetails\":{\"fareRule\":{\"DXB-BKK\":{\"fr\":{\"DATECHANGE\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":0,\"ARF\":0,\"CRFT\":9,\"CRF\":50}},\"AFTER_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":0,\"ARF\":0,\"CRFT\":9,\"CRF\":50}}},\"NO_SHOW\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"policyInfo\":\"Available with Penalty\"},\"AFTER_DEPARTURE\":{\"amount\":0,\"policyInfo\":\"Available with Penalty\"}},\"CANCELLATION\":{\"BEFORE_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}},\"AFTER_DEPARTURE\":{\"amount\":0,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ACFT\":0,\"ACF\":0,\"CCF\":50,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":116545,\"Tax\":22301.7,\"YQTax\":794,\"OtherCharges\":2866,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":18424,\"MUFee\":200,\"intPublishedFare\":138846.7,\"PublishedFare\":138964.7,\"OfferedFare\":138646.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"12-15-2-10-7390955444_0DXBADDET603ADDBKKET608_623178603278161\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":22301.7,\"BaseFareCal\":138695.21,\"BaseFare\":116545,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":794,\"AGST\":0,\"MFT\":2.7,\"OT\":2866,\"MU\":200,\"YR\":18424,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":138964.7,\"CostToCustomer\":138964.7,\"BaseFareCal\":138695.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":138695.21,\"intOfferedFare\":138646.7,\"intPublishFare\":138846.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"619\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Bole Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Addis Ababa\",\"destinationCountryName\":\"Ethiopia\",\"destinationAirportCode\":\"ADD\",\"destinationArrTime\":\"2022-07-21T20:35\",\"SegFlightNumber\":\"ET-603\",\"AirlineCode\":\"ET\",\"AirlineName\":\"Ethiopian Air Lines\",\"FareClass\":\"Y\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-07-21T17:10\",\"TripIndicator\":\"\",\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":265,\"GroundTime\":215,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:10\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"3h 35m\",\"LAYOVERCity\":\"Addis Ababa\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\"},{\"segmentid\":\"620\",\"originAirportName\":\"Bole Airport\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Addis Ababa\",\"originCountryName\":\"Ethiopia\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-07-22T13:30\",\"SegFlightNumber\":\"ET-608\",\"AirlineCode\":\"ET\",\"AirlineName\":\"Ethiopian Air Lines\",\"FareClass\":\"Y\",\"originAirportCode\":\"ADD\",\"originDepTime\":\"2022-07-22T00:10\",\"TripIndicator\":\"\",\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":560,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"00:10\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"9h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"619\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"cee11-d017b-ef198-24085\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-21 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS118700296253\",\"FlightNumber\":\"ET-603\",\"AirlineName\":\"Ethiopian Air Lines\",\"AirlineCode\":\"ET\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"strTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"AirlineSysId\":\"209\",\"DepartureTime\":\"17:10\",\"ArrivalTime\":\"13:30\",\"TravelDate\":\"2022-07-21T17:10\",\"LocalFromTime\":\"2022-07-21 17:10\",\"FromUTCTime\":\"2022-07-21T17:10\",\"LocalToTime\":\"2022-07-22 13:30\",\"ToUTCTime\":\"2022-07-22T13:30\",\"IsDirect\":0,\"FareClass\":\"Y\",\"LAYOVERCity\":\"Addis Ababa\",\"GroundTime\":215,\"LAYOVERDuration\":\"3h 35m\",\"FlyingMinutes\":1040,\"DepartureDateTxt\":\"Thu, 21 Jul\",\"ArrivalDateTxt\":\"Fri, 22 Jul\",\"FlightDuration\":\"20h 20m\",\"SourcePlaceSysId\":8219,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":138846.7,\"ApiResultIndex\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\",\"SearchFlightTraceId\":\"cee11-d017b-ef198-24085\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":116545,\"Tax\":22301.7,\"YQTax\":794,\"OtherCharges\":2866,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":18424,\"MUFee\":200,\"intPublishedFare\":138846.7,\"PublishedFare\":138964.7,\"OfferedFare\":138646.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":22301.7,\"BaseFareCal\":138695.21,\"BaseFare\":116545,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":794,\"AGST\":0,\"MFT\":2.7,\"OT\":2866,\"MU\":200,\"YR\":18424,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"619\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Bole Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Addis Ababa\",\"destinationCountryName\":\"Ethiopia\",\"destinationAirportCode\":\"ADD\",\"destinationArrTime\":\"2022-07-21T20:35\",\"SegFlightNumber\":\"ET-603\",\"AirlineCode\":\"ET\",\"AirlineName\":\"Ethiopian Air Lines\",\"FareClass\":\"Y\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-07-21T17:10\",\"TripIndicator\":\"\",\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":265,\"GroundTime\":215,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:10\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"3h 35m\",\"LAYOVERCity\":\"Addis Ababa\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\"},{\"segmentid\":\"620\",\"originAirportName\":\"Bole Airport\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Addis Ababa\",\"originCountryName\":\"Ethiopia\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-07-22T13:30\",\"SegFlightNumber\":\"ET-608\",\"AirlineCode\":\"ET\",\"AirlineName\":\"Ethiopian Air Lines\",\"FareClass\":\"Y\",\"originAirportCode\":\"ADD\",\"originDepTime\":\"2022-07-22T00:10\",\"TripIndicator\":\"\",\"Baggage\":\"2PC\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":560,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"00:10\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"9h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/ET.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"12-15-2-10-7390955444_14DXBADDET603ADDBKKET608_623134715687995\",\"localFromDateTime\":\"2022-07-21 17:10\",\"localToDateTime\":\"2022-07-22 13:30\",\"strSourceAirportCode\":\"DXB\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":1,\"intSourceCityId\":8219,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Dubai (DXB)\",\"mytrip_city_to\":\"Bangkok (BKK)\",\"source_city\":\"DXB\",\"ContSysId_1\":\"228\",\"destination_city\":\"BKK\",\"ContSysId\":\"215\",\"source\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"destination\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"departure_date\":\"21\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"to_mytrip_city\":\" TH - Suvarnabhumi Intl Arpt (BKK)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DXB\",\"destinationCityAirportCode\":\"BKK\",\"from\":\"DXB\",\"to\":\"BKK\",\"sourceCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"destinationCityText\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"sourceCityId\":8219,\"destinationCityId\":2266,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"21\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-21\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"cee11-d017b-ef198-24085\",\"from_city_\":\"1__DXB-BKK\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Dubai+%28DXB%29&mytrip_city_to=Bangkok+%28BKK%29&source_city=DXB&ContSysId_1=228&destination_city=BKK&ContSysId=215&source=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29%2C+United+Arab+Emirates&destination=Bangkok%2C+TH+-+Suvarnabhumi+Intl+Arpt+%28BKK%29%2C+Thailand&departure_date=21%2F07%2F2022&return_date=&from_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29&to_mytrip_city=+TH+-+Suvarnabhumi+Intl+Arpt+%28BKK%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"komal@hellogtx.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8595077740\",\"FirstName\":\"Komal\",\"LastName\":\"Malhotra\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1947-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-17-28-19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"test\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-07-26\",\"passporIssue\":\"2022-07-23\",\"CustomerSysId\":\"30\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408461\",\"TPSysId\":\"408462\",\"VersionId\":[\"82828\"],\"CustomerSysId\":\"214169\",\"TrxId\":\"29403\",\"FareBreakdownid\":[\"356497\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"70\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"30\"],\"flight_booking_id\":[\"38\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"38\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":138964.7},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"214169\",\"TPSysId\":\"408462\",\"MasterTPSysId\":\"408461\",\"ProposalID\":\"408462\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":138928.7,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":138964.7,\"TotalDueAmount\":0,\"InvoiceValue\":138964.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DXB-BKK-Ethiopian Air Lines ET-603\",\"ItemQty\":1,\"ItemRates\":138728.7,\"Total\":138728.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":138964.7,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":138928.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 17:28:46'),(151,'b677e-9fcd6-f6662-d3604','{\"BookingData\":[{\"bookingId\":\"TJS112500296258\",\"FlightNumber\":\"6E-2061\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:10\",\"ArrivalTime\":\"11:45\",\"TravelDate\":\"2022-07-13T23:10\",\"LocalFromTime\":\"2022-07-13 23:10\",\"FromUTCTime\":\"2022-07-13T23:10\",\"LocalToTime\":\"2022-07-14 11:45\",\"ToUTCTime\":\"2022-07-14T11:45\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":845,\"DepartureDateTxt\":\"Wed, 13 Jul\",\"ArrivalDateTxt\":\"Thu, 14 Jul\",\"FlightDuration\":\"12h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":\"5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 2,500 + Fare Difference__nls__Within 06-72 hrs: Rs 3,000 + Fare Difference__nls__ __bs__Ex India to South east, Middle East and Rest of Asia: __be____nls__ Before 72 hrs: Rs 3,500 + Fare Difference__nls__Within 06-72 hrs: Rs 4,000 + Fare Difference__nls__ __bs__ Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 4,500 + Fare Difference__nls__Within 06-72 hrs: Rs 5,000 + Fare Difference\",\"fcs\":{\"ARFT\":250,\"ARF\":5000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":6500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 3,000__nls__Within 06-72 hrs: Rs 3,500__nls____bs__Ex India to South East, Middle East and Rest of Asia: __be____nls__Before 72 hrs: Rs 4,500__nls__Within 06-72 hrs: Rs 5,000__nls____bs__Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 6,000__nls__Within 06-72 hrs: Rs 6,500\",\"fcs\":{\"ACFT\":325,\"ACF\":6500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13958,\"Tax\":4772.4,\"YQTax\":0,\"OtherCharges\":3891,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":446,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":18730.4,\"PublishedFare\":19249.6,\"OfferedFare\":15369.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7198356284_1AUHDEL6E1771_623412949042413\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":440,\"AddiTaxOnMarkup\":79.2,\"intTotalGST\":140.22,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":440,\"GSTOnMarkUp\":79.2,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4772.4,\"BaseFareCal\":18470.62,\"BaseFare\":13958,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":446,\"MFT\":5.4,\"OT\":3891,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":43.2,\"AddiMarkup\":240,\"intTotalGST\":140.22,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":440,\"GSTOnMarkUp\":79.2,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[{\"segmentid\":\"354\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-07-14T02:05\",\"SegFlightNumber\":\"6E-2061\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-13T23:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":355,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:10\",\"strArrivalDtTime\":\"02:05\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"355\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-07-14T11:45\",\"SegFlightNumber\":\"6E-8991\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-07-14T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":315,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"11:45\",\"FlightDuration\":\"5h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"354\",\"Code\":\"XBPA\",\"Price\":2760,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"354\",\"Code\":\"XBPB\",\"Price\":5520,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"354\",\"Code\":\"XBPC\",\"Price\":8280,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"354\",\"Code\":\"XBPD\",\"Price\":16560,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"354\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b677e-9fcd6-f6662-d3604\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-13 12:00\",\"localToDateTime\":\"2022-07-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS112500296258\",\"FlightNumber\":\"6E-2061\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304\",\"strTraceId\":\"5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:10\",\"ArrivalTime\":\"11:45\",\"TravelDate\":\"2022-07-13T23:10\",\"LocalFromTime\":\"2022-07-13 23:10\",\"FromUTCTime\":\"2022-07-13T23:10\",\"LocalToTime\":\"2022-07-14 11:45\",\"ToUTCTime\":\"2022-07-14T11:45\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":355,\"LAYOVERDuration\":\"5h 55m\",\"FlyingMinutes\":845,\"DepartureDateTxt\":\"Wed, 13 Jul\",\"ArrivalDateTxt\":\"Thu, 14 Jul\",\"FlightDuration\":\"12h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":19249.6,\"ApiResultIndex\":\"5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304\",\"JourneyType\":1,\"TripType\":\"2\",\"SearchFlightTraceId\":\"b677e-9fcd6-f6662-d3604\",\"ICSourceSysId\":7,\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 2,500 + Fare Difference__nls__Within 06-72 hrs: Rs 3,000 + Fare Difference__nls__ __bs__Ex India to South east, Middle East and Rest of Asia: __be____nls__ Before 72 hrs: Rs 3,500 + Fare Difference__nls__Within 06-72 hrs: Rs 4,000 + Fare Difference__nls__ __bs__ Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 4,500 + Fare Difference__nls__Within 06-72 hrs: Rs 5,000 + Fare Difference\",\"fcs\":{\"ARFT\":250,\"ARF\":5000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":6500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 3,000__nls__Within 06-72 hrs: Rs 3,500__nls____bs__Ex India to South East, Middle East and Rest of Asia: __be____nls__Before 72 hrs: Rs 4,500__nls__Within 06-72 hrs: Rs 5,000__nls____bs__Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 6,000__nls__Within 06-72 hrs: Rs 6,500\",\"fcs\":{\"ACFT\":325,\"ACF\":6500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13958,\"Tax\":4772.4,\"YQTax\":0,\"OtherCharges\":3891,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":446,\"CarrierMiscFee\":0,\"MUFee\":400,\"intPublishedFare\":18730.4,\"PublishedFare\":19249.6,\"OfferedFare\":15369.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7198356284_1AUHDEL6E1771_623412949042413\",\"IsGSTRequired\":false,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"fareIdentifier\":\"SPECIAL RETURN\",\"FareClass\":\"ECONOMY\",\"AddiMarkup\":440,\"AddiTaxOnMarkup\":79.2,\"intTotalGST\":140.22,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":440,\"GSTOnMarkUp\":79.2,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"CancelCharge\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4772.4,\"BaseFareCal\":18470.62,\"BaseFare\":13958,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":446,\"MFT\":5.4,\"OT\":3891,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":43.2,\"AddiMarkup\":240,\"intTotalGST\":140.22,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":440,\"GSTOnMarkUp\":79.2,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}]},\"Segments\":[[{\"segmentid\":\"354\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-07-14T02:05\",\"SegFlightNumber\":\"6E-2061\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-13T23:10\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":355,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:10\",\"strArrivalDtTime\":\"02:05\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":\"5h 55m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"355\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-07-14T11:45\",\"SegFlightNumber\":\"6E-8991\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-07-14T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":315,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"11:45\",\"FlightDuration\":\"5h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],[{\"segmentid\":\"356\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-15T12:30\",\"SegFlightNumber\":\"6E-1771\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2022-07-15T10:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:00\",\"strArrivalDtTime\":\"12:30\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-7198356284_116DELMAA6E2061MAADXB6E8991AUHDEL6E1771_623390265569304\",\"localFromDateTime\":\"2022-07-13 23:10\",\"localToDateTime\":\"2022-07-14 11:45\",\"strSourceAirportCode\":\"AUH\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}},{\"bookingId\":\"TJS112500296258\",\"FlightNumber\":\"6E-1771\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:00\",\"ArrivalTime\":\"12:30\",\"TravelDate\":\"2022-07-15T10:00\",\"LocalFromTime\":\"2022-07-15 10:00\",\"FromUTCTime\":\"2022-07-15T10:00\",\"LocalToTime\":\"2022-07-15 12:30\",\"ToUTCTime\":\"2022-07-15T12:30\",\"IsDirect\":0,\"FareClass\":\"N\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":60,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Fri, 15 Jul\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"AUH\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 6 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":5000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 2,500 + Fare Difference__nls__Within 06-72 hrs: Rs 3,000 + Fare Difference__nls__ __bs__Ex India to South east, Middle East and Rest of Asia: __be____nls__ Before 72 hrs: Rs 3,500 + Fare Difference__nls__Within 06-72 hrs: Rs 4,000 + Fare Difference__nls__ __bs__ Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 4,500 + Fare Difference__nls__Within 06-72 hrs: Rs 5,000 + Fare Difference\",\"fcs\":{\"ARFT\":250,\"ARF\":5000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":6500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 06 Hrs before scheduled departure__nls__ __bs__Ex India to Indian-Sub continent:__be____nls__Before 72 hrs: Rs 3,000__nls__Within 06-72 hrs: Rs 3,500__nls____bs__Ex India to South East, Middle East and Rest of Asia: __be____nls__Before 72 hrs: Rs 4,500__nls__Within 06-72 hrs: Rs 5,000__nls____bs__Ex India to Europe & Istanbul & Codeshare Flights: __be____nls__Before 72 hrs: Rs 6,000__nls__Within 06-72 hrs: Rs 6,500\",\"fcs\":{\"ACFT\":325,\"ACF\":6500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"356\",\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-15T12:30\",\"SegFlightNumber\":\"6E-1771\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"N\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2022-07-15T10:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"10:00\",\"strArrivalDtTime\":\"12:30\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"XBPA\",\"Price\":3037,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"XBPB\",\"Price\":6074,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"XBPC\",\"Price\":9111,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"XBPD\",\"Price\":18221,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"NPLW\",\"Price\":500,\"Description\":\"Neck Pillow\"},{\"Currency\":\"INR\",\"key\":\"356\",\"Code\":\"BLKT\",\"Price\":500,\"Description\":\"Blanket\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"b677e-9fcd6-f6662-d3604\",\"ICSourceSysId\":7,\"IsPassMandatory\":false,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-13 12:00\",\"localToDateTime\":\"2022-07-15 12:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Dubai (DXB)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"DXB\",\"ContSysId\":\"228\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"departure_date\":\"13\\/07\\/2022\",\"return_date\":\"15\\/07\\/2022\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" AE - Dubai Intl Arpt (DXB)\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"DXB\",\"from\":\"DEL\",\"to\":\"DXB\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Dubai, AE - Dubai Intl Arpt (DXB), United Arab Emirates\",\"sourceCityId\":7701,\"destinationCityId\":8219,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"13\\/07\\/2022\",\"return_dates\":\"15\\/07\\/2022\",\"strDepatureDate\":\"2022-07-13\",\"strReturnDate\":\"2022-07-15\",\"SearchFlightTraceId\":\"b677e-9fcd6-f6662-d3604\",\"from_city_\":\"2__DEL-DXB-DEL\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Dubai+%28DXB%29&adults=1&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=DXB&ContSysId=228&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Dubai%2C+AE+-+Dubai+Intl+Arpt+%28DXB%29%2C+United+Arab+Emirates&departure_date=13%2F07%2F2022&return_date=15%2F07%2F2022&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+AE+-+Dubai+Intl+Arpt+%28DXB%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"komal@hellogtx.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8595077740\",\"FirstName\":\"Komal\",\"LastName\":\"Malhotra\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-17-31-48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"test\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2022-07-31\",\"passporIssue\":\"2022-07-03\",\"CustomerSysId\":\"31\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408470\",\"TPSysId\":\"408471\",\"VersionId\":[\"82832\"],\"CustomerSysId\":\"214169\",\"TrxId\":\"29404\",\"FareBreakdownid\":[\"356498\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"71\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"31\",\"CustomerMemSysId\":[\"31\"],\"flight_booking_id\":[\"39\",\"40\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"39\",\"40\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":19249.6},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"214169\",\"TPSysId\":\"408471\",\"MasterTPSysId\":\"408470\",\"ProposalID\":\"408471\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":19091.199999999997,\"InvoiceStatus\":true,\"TotalCGST\":79.2,\"TotalSGST\":79.2,\"TotalIGST\":158.4,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":19249.6,\"TotalDueAmount\":0,\"InvoiceValue\":19249.6,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-DXB-IndiGo 6E-2061\",\"ItemQty\":1,\"ItemRates\":18211.199999999997,\"Total\":18211.199999999997,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":19249.6,\"MarkupType\":\"\",\"Markup\":880,\"TotalMarkup\":880,\"SubTotal\":19091.199999999997,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":158.4,\"SGST\":79.2,\"CGST\":79.2,\"IGST\":158.4,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"AUH-DEL-IndiGo 6E-1771\",\"ItemQty\":1,\"ItemRates\":0,\"Total\":0,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":0,\"MarkupType\":\"\",\"Markup\":0,\"TotalMarkup\":0,\"SubTotal\":0,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":0,\"SGST\":0,\"CGST\":0,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 17:32:16'),(155,'a1856-b4f87-61516-729df','{\"BookingData\":[{\"bookingId\":\"TJS119100296333\",\"FlightNumber\":\"TG-338\",\"AirlineName\":\"Thai Airways Intl\",\"AirlineCode\":\"TG\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-8943629462_0MAABKKTG338_626718065747738\",\"AirlineSysId\":\"493\",\"DepartureTime\":\"01:10\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2022-08-14T01:10\",\"LocalFromTime\":\"2022-08-14 01:10\",\"FromUTCTime\":\"2022-08-14T01:10\",\"LocalToTime\":\"2022-08-14 06:10\",\"ToUTCTime\":\"2022-08-14T06:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Sun, 14 Aug\",\"ArrivalDateTxt\":\"Sun, 14 Aug\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":61261.50000000001,\"PublishedFareTxt\":\"61,262\",\"ApiResultIndex\":\"12-15-2-10-8943629462_0MAABKKTG338_626718065747738\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"MAA-BKK\":{\"fr\":{\"DATECHANGE\":{\"BEFORE_DEPARTURE\":{\"amount\":7945,\"additionalFee\":50,\"policyInfo\":\"Available with Penalty\",\"fcs\":{\"ARFT\":397.25,\"ARF\":7945,\"CRFT\":9,\"CRF\":50}},\"AFTER_DEPARTURE\":{\"additionalFee\":50,\"policyInfo\":\"Not Applicable\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"NO_SHOW\":{\"BEFORE_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"},\"AFTER_DEPARTURE\":{\"policyInfo\":\"Not Applicable\"}},\"CANCELLATION\":{\"BEFORE_DEPARTURE\":{\"additionalFee\":50,\"policyInfo\":\"Not Applicable\",\"fcs\":{\"CCF\":50,\"CCFT\":9}},\"AFTER_DEPARTURE\":{\"additionalFee\":50,\"policyInfo\":\"Not Applicable\",\"fcs\":{\"CCF\":50,\"CCFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":33761.5,\"YQTax\":22235,\"OtherCharges\":7945,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.500000000000002,\"AirlineGSTComponent\":2493,\"CarrierMiscFee\":0,\"MUFee\":1000,\"intPublishedFare\":61261.50000000001,\"PublishedFare\":61379.5,\"OfferedFare\":60261.50000000001,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"12-15-2-10-8943629462_0MAABKKTG338_626726844111086\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":170.54,\"apiMarkup\":847.46,\"IntCommission\":0,\"apiTaxOnMarkup\":152.54,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":20348.1,\"BaseFareCal\":38187.63,\"BaseFare\":18330,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":13341,\"AGST\":1587,\"MFT\":8.100000000000001,\"OT\":4767,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":109.53,\"apiMarkup\":508.47,\"IntCommission\":0,\"apiTaxOnMarkup\":91.53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":13413.4,\"BaseFareCal\":22262.42,\"BaseFare\":9170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":8894,\"AGST\":906,\"MFT\":5.4,\"OT\":3178,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":79.02,\"apiMarkup\":338.98,\"IntCommission\":0,\"apiTaxOnMarkup\":61.02,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":847.46,\"apiTaxOnMarkup\":152.54,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":170.54,\"PublishFare\":61379.5,\"CostToCustomer\":61379.5,\"BaseFareCal\":60432.04,\"intCommisionEarnedForAgency\":947.46,\"CostToCompany\":60432.04,\"intOfferedFare\":60261.50000000001,\"intPublishFare\":61261.50000000001,\"TripjackMarkup\":1000,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"230\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-14T06:10\",\"SegFlightNumber\":\"TG-338\",\"AirlineCode\":\"TG\",\"AirlineName\":\"Thai Airways Intl\",\"FareClass\":\"V\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-08-14T01:10\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"01:10\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"SPML\",\"Price\":0,\"Description\":\"Special Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"230\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a1856-b4f87-61516-729df\",\"ICSourceSysId\":7,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"12-15-2-10-8943629462_0MAABKKTG338_626718065747738\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-14 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":5,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS119100296333\",\"FlightNumber\":\"TG-338\",\"AirlineName\":\"Thai Airways Intl\",\"AirlineCode\":\"TG\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"12-15-2-10-8943629462_0MAABKKTG338_626718065747738\",\"strTraceId\":\"12-15-2-10-8943629462_0MAABKKTG338_626718065747738\",\"AirlineSysId\":\"493\",\"DepartureTime\":\"01:10\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2022-08-14T01:10\",\"LocalFromTime\":\"2022-08-14 01:10\",\"FromUTCTime\":\"2022-08-14T01:10\",\"LocalToTime\":\"2022-08-14 06:10\",\"ToUTCTime\":\"2022-08-14T06:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Sun, 14 Aug\",\"ArrivalDateTxt\":\"Sun, 14 Aug\",\"FlightDuration\":\"5h 0m\",\"SourcePlaceSysId\":6000,\"DestPlaceSysId\":2266,\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"BKK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":5,\"CurrencyType\":1,\"PublishedFare\":61261.50000000001,\"ApiResultIndex\":\"12-15-2-10-8943629462_0MAABKKTG338_626718065747738\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\",\"SearchFlightTraceId\":\"a1856-b4f87-61516-729df\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":33761.5,\"YQTax\":22235,\"OtherCharges\":7945,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.500000000000002,\"AirlineGSTComponent\":2493,\"CarrierMiscFee\":0,\"MUFee\":1000,\"intPublishedFare\":61261.50000000001,\"PublishedFare\":61379.5,\"OfferedFare\":60261.50000000001,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":20348.1,\"BaseFareCal\":38187.63,\"BaseFare\":18330,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":13341,\"AGST\":1587,\"MFT\":8.100000000000001,\"OT\":4767,\"MU\":600,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":13413.4,\"BaseFareCal\":22262.42,\"BaseFare\":9170,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":8894,\"AGST\":906,\"MFT\":5.4,\"OT\":3178,\"MU\":400,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"230\",\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Suvarnabhumi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"BKK\",\"destinationArrTime\":\"2022-08-14T06:10\",\"SegFlightNumber\":\"TG-338\",\"AirlineCode\":\"TG\",\"AirlineName\":\"Thai Airways Intl\",\"FareClass\":\"V\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-08-14T01:10\",\"TripIndicator\":\"\",\"Baggage\":\"20KG\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"01:10\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/TG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"12-15-2-10-8943629462_0MAABKKTG338_626718065747738\",\"localFromDateTime\":\"2022-08-14 01:10\",\"localToDateTime\":\"2022-08-14 06:10\",\"strSourceAirportCode\":\"MAA\",\"strDestinationAirportCode\":\"BKK\",\"intMemberCount\":5,\"intSourceCityId\":6000,\"intDestinationCityId\":2266,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"1\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Chennai (MAA)\",\"mytrip_city_to\":\"Bangkok (BKK)\",\"source_city\":\"MAA\",\"ContSysId_1\":\"101\",\"destination_city\":\"BKK\",\"ContSysId\":\"215\",\"source\":\"Chennai, IN - Chennai Arpt (MAA), India\",\"destination\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"departure_date\":\"14\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chennai Arpt (MAA)\",\"to_mytrip_city\":\" TH - Suvarnabhumi Intl Arpt (BKK)\",\"DirectFlight\":\"1\",\"adults\":\"3\",\"childs\":\"2\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":true,\"sourceCityAirportCode\":\"MAA\",\"destinationCityAirportCode\":\"BKK\",\"from\":\"MAA\",\"to\":\"BKK\",\"sourceCityText\":\"Chennai, IN - Chennai Arpt (MAA), India\",\"destinationCityText\":\"Bangkok, TH - Suvarnabhumi Intl Arpt (BKK), Thailand\",\"sourceCityId\":6000,\"destinationCityId\":2266,\"intCountryCode\":\"INT\",\"flight_class\":\"2\",\"child\":\"2\",\"infant\":\"0\",\"departure_dates\":\"14\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-14\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"a1856-b4f87-61516-729df\",\"from_city_\":\"1__MAA-BKK\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Chennai+%28MAA%29&mytrip_city_to=Bangkok+%28BKK%29&source_city=MAA&ContSysId_1=101&destination_city=BKK&ContSysId=215&source=Chennai%2C+IN+-+Chennai+Arpt+%28MAA%29%2C+India&destination=Bangkok%2C+TH+-+Suvarnabhumi+Intl+Arpt+%28BKK%29%2C+Thailand&departure_date=14%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chennai+Arpt+%28MAA%29&to_mytrip_city=+TH+-+Suvarnabhumi+Intl+Arpt+%28BKK%29&DirectFlight=1&adults=3&childs=2&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1951-07-26\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-18-27-07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-20\",\"passporIssue\":\"2019-07-20\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"ritu\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1960-06-27\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-18-27-07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"86556986465498789\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"12\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"kirti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"1955-07-28\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-18-27-07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"5645645646545\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niya\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2010-08-18\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-18-27-07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"8756434684556\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"14\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"16\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"niti\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2013-08-09\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-18-27-07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"PassportNo\":\"897564545678456\",\"PassportNation\":\"IN\",\"PassportExpiry\":\"2023-03-21\",\"passporIssue\":\"2018-07-20\",\"CustomerMemberSysId\":\"15\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408516\",\"TPSysId\":\"408517\",\"VersionId\":[\"82850\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29409\",\"FareBreakdownid\":[\"356502\",\"356503\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"72\",\"73\",\"74\",\"75\",\"76\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\",\"12\",\"13\",\"14\",\"15\"],\"flight_booking_id\":[\"41\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"41\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":61497.5},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408517\",\"MasterTPSysId\":\"408516\",\"ProposalID\":\"408517\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":61461.5,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":61497.5,\"TotalDueAmount\":0,\"InvoiceValue\":61497.5,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"MAA-BKK-Thai Airways Intl TG-338\",\"ItemQty\":1,\"ItemRates\":61261.5,\"Total\":61261.5,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":61497.5,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":61461.5,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 18:27:47'),(160,'5ceae-66b41-62173-aec79','{\"BookingData\":[{\"bookingId\":\"TJS105600296352\",\"FlightNumber\":\"6E-5023\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2022-07-16T06:30\",\"LocalFromTime\":\"2022-07-16 06:30\",\"FromUTCTime\":\"2022-07-16T06:30\",\"LocalToTime\":\"2022-07-16 08:35\",\"ToUTCTime\":\"2022-07-16T08:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 16 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"PublishedFareTxt\":\"4,282\",\"ApiResultIndex\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5529690426_0DELBOM6E5023_628246113230312\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":48.51,\"apiMarkup\":169.49,\"IntCommission\":0,\"apiTaxOnMarkup\":30.51,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":169.49,\"apiTaxOnMarkup\":30.51,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.51,\"PublishFare\":4399.7,\"CostToCustomer\":4399.7,\"BaseFareCal\":4130.21,\"intCommisionEarnedForAgency\":269.49,\"CostToCompany\":4130.21,\"intOfferedFare\":4081.7,\"intPublishFare\":4281.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"279\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-16T08:35\",\"SegFlightNumber\":\"6E-5023\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-16T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"279\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5ceae-66b41-62173-aec79\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJS105600296352\",\"FlightNumber\":\"6E-5023\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"strTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:35\",\"TravelDate\":\"2022-07-16T06:30\",\"LocalFromTime\":\"2022-07-16 06:30\",\"FromUTCTime\":\"2022-07-16T06:30\",\"LocalToTime\":\"2022-07-16 08:35\",\"ToUTCTime\":\"2022-07-16T08:35\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 16 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4281.7,\"ApiResultIndex\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"5ceae-66b41-62173-aec79\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":881.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4281.7,\"PublishedFare\":4399.7,\"OfferedFare\":4081.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":881.7,\"BaseFareCal\":4130.21,\"BaseFare\":3400,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"279\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-16T08:35\",\"SegFlightNumber\":\"6E-5023\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-16T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5529690426_0DELBOM6E5023_628183604162011\",\"localFromDateTime\":\"2022-07-16 06:30\",\"localToDateTime\":\"2022-07-16 08:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"16\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"16\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-16\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"5ceae-66b41-62173-aec79\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=16%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"sibo.sarso@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8447455883\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-18-52-09\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"18\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408544\",\"TPSysId\":\"408545\",\"VersionId\":[\"82875\"],\"CustomerSysId\":\"216297\",\"TrxId\":\"29411\",\"FareBreakdownid\":[\"356504\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"77\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"18\",\"CustomerMemSysId\":[\"18\"],\"flight_booking_id\":[\"42\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"42\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4399.7},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":null,\"TPSysId\":null,\"MasterTPSysId\":null,\"ProposalID\":\"\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4363.7,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4399.7,\"TotalDueAmount\":0,\"InvoiceValue\":4399.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-IndiGo 6E-5023\",\"ItemQty\":1,\"ItemRates\":4163.7,\"Total\":4163.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4399.7,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":4363.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 18:54:20'),(161,'bf58a-806bd-3958a-02e03','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8701\",\"keyIndex\":188,\"SegFlightNumberArr\":\"SG-8701, SG-453\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3312634119_15DELBOMSG8701BOMGOISG453_32970871675395\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"03:15\",\"TravelDate\":\"2022-07-22T07:20\",\"LocalFromTime\":\"2022-07-22 07:20\",\"FromUTCTime\":\"2022-07-22T07:20\",\"LocalToTime\":\"2022-07-23 03:15\",\"ToUTCTime\":\"2022-07-23T03:15\",\"IsDirect\":0,\"FareClass\":\"HR\",\"LAYOVERCity\":\"Mumbai\",\"GroundTime\":970,\"LAYOVERDuration\":\"16h 10m\",\"FlyingMinutes\":1195,\"DepartureDateTxt\":\"Fri, 22 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"19h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":69,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5748,\"PublishedFareTxt\":\"5,747\",\"ApiResultIndex\":\"4-3312634119_15DELBOMSG8701BOMGOISG453_32970871675395\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"bf58a-806bd-3958a-02e03\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4894,\"Tax\":781.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5675.7,\"PublishedFare\":5748,\"PublishedFarePerPax\":5748,\"OfferedFare\":5629.21,\"CommissionEarned\":46.49,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.45,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3312634119_15DELBOMSG8701BOMGOISG453_32970871675395\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":69,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":781.7,\"BaseFareCal\":5647.21,\"BaseFare\":4894,\"CommissionEarned\":46.49,\"TDS\":-2.45,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":46.49,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5747.21,\"CostToCustomer\":5747.21,\"BaseFareCal\":5647.21,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5647.21,\"intOfferedFare\":5629.21,\"intPublishFare\":5675.7,\"TripjackMarkup\":0,\"TripjackCommission\":46.49,\"TripjackTDS\":\"2.45\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04C\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-22T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"HR\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-22T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":970,\"NoOfSeatAvailable\":69,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"16h 10m\",\"LAYOVERCity\":\"Mumbai\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-23T03:15\",\"SegFlightNumber\":\"SG-453\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"HR\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T01:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":69,\"strDepartureDtTime\":\"01:45\",\"strArrivalDtTime\":\"03:15\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-13 18:57:33'),(165,'04fee-ed7f7-3a00e-a9242','{\"BookingData\":[{\"bookingId\":\"TJ102637843507\",\"FlightNumber\":\"I5-552\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-07-30T10:40\",\"LocalFromTime\":\"2022-07-30 10:40\",\"FromUTCTime\":\"2022-07-30T10:40\",\"LocalToTime\":\"2022-07-30 13:15\",\"ToUTCTime\":\"2022-07-30T13:15\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Sat, 30 Jul\",\"ArrivalDateTxt\":\"Sat, 30 Jul\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6695.7,\"PublishedFareTxt\":\"6,696\",\"ApiResultIndex\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-GOI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"amount\":0,\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference__nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":200,\"ARFT\":10}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACF\":200,\"ACFT\":4.95,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"amount\":0,\"policyInfo\":\"Standard Seats-FOC\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5914,\"Tax\":781.7,\"YQTax\":0,\"OtherCharges\":464,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":300,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6695.7,\"PublishedFare\":6690.09,\"OfferedFare\":6631.09,\"CommissionEarned\":64.61,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-2384492307_0DELGOII5552_115080251381973\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":781.7,\"BaseFareCal\":6640.09,\"BaseFare\":5914,\"CommissionEarned\":64.61,\"TDS\":-3.4,\"MF\":15,\"YQ\":0,\"AGST\":300,\"MFT\":2.7,\"OT\":464,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":64.61,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":6690.09,\"CostToCustomer\":6690.09,\"BaseFareCal\":6640.09,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":6640.09,\"intOfferedFare\":6631.09,\"intPublishFare\":6695.7,\"TripjackMarkup\":0,\"TripjackCommission\":64.61,\"TripjackTDS\":\"3.4\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"596\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-30T13:15\",\"SegFlightNumber\":\"I5-552\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-30T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBLD\",\"Price\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"SDAI\",\"Price\":200,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"JMCB\",\"Price\":300,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"KACB\",\"Price\":400,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"GACB\",\"Price\":400,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"596\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"04fee-ed7f7-3a00e-a9242\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102637843507\",\"FlightNumber\":\"I5-552\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"strTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-07-30T10:40\",\"LocalFromTime\":\"2022-07-30 10:40\",\"FromUTCTime\":\"2022-07-30T10:40\",\"LocalToTime\":\"2022-07-30 13:15\",\"ToUTCTime\":\"2022-07-30T13:15\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Sat, 30 Jul\",\"ArrivalDateTxt\":\"Sat, 30 Jul\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6695.7,\"ApiResultIndex\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"04fee-ed7f7-3a00e-a9242\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5914,\"Tax\":781.7,\"YQTax\":0,\"OtherCharges\":464,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":300,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6695.7,\"PublishedFare\":6690.09,\"OfferedFare\":6631.09,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":781.7,\"BaseFareCal\":6640.09,\"BaseFare\":5914,\"CommissionEarned\":64.61,\"TDS\":-3.4,\"MF\":15,\"YQ\":0,\"AGST\":300,\"MFT\":2.7,\"OT\":464,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"596\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-30T13:15\",\"SegFlightNumber\":\"I5-552\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-30T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-2384492307_0DELGOII5552_44163314895928\",\"localFromDateTime\":\"2022-07-30 10:40\",\"localToDateTime\":\"2022-07-30 13:15\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Goa In (GOI)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"GOI\",\"ContSysId\":\"0\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Goa In, IN - Dabolim Arpt (GOI), India\",\"departure_date\":\"30\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Dabolim Arpt (GOI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"GOI\",\"from\":\"DEL\",\"to\":\"GOI\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Goa In, IN - Dabolim Arpt (GOI), India\",\"sourceCityId\":7701,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"30\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-30\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"04fee-ed7f7-3a00e-a9242\",\"from_city_\":\"1__DEL-GOI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Goa+In+%28GOI%29&source_city=DEL&ContSysId_1=101&destination_city=GOI&ContSysId=0&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Goa+In%2C+IN+-+Dabolim+Arpt+%28GOI%29%2C+India&departure_date=30%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Dabolim+Arpt+%28GOI%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"sibo.sarso@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8447455883\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-18-59-25\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"18\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408555\",\"TPSysId\":\"408556\",\"VersionId\":[\"82882\"],\"CustomerSysId\":\"216297\",\"TrxId\":\"29413\",\"FareBreakdownid\":[\"356505\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"78\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"18\",\"CustomerMemSysId\":[\"18\"],\"flight_booking_id\":[\"43\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"43\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":6690.09},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216297\",\"TPSysId\":\"408556\",\"MasterTPSysId\":\"408555\",\"ProposalID\":\"408556\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":true,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":6672.09,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":6690.09,\"TotalDueAmount\":0,\"InvoiceValue\":6690.09,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-GOI-AirAsia India I5-552\",\"ItemQty\":1,\"ItemRates\":6572.09,\"Total\":6572.09,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6690.09,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":6672.09,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 19:00:07'),(169,'779d8-25bad-dc37a-ceb6b','{\"BookingData\":[{\"bookingId\":\"TJ100837852377\",\"FlightNumber\":\"SG-923\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-07-15T14:25\",\"LocalFromTime\":\"2022-07-15 14:25\",\"FromUTCTime\":\"2022-07-15T14:25\",\"LocalToTime\":\"2022-07-15 16:50\",\"ToUTCTime\":\"2022-07-15T16:50\",\"IsDirect\":0,\"FareClass\":\"SA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Fri, 15 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":84,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5748.7,\"PublishedFareTxt\":\"5,749\",\"ApiResultIndex\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-PAT\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":100,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":100,\"ARFT\":5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":1750,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 1,750 __nls__ Before 96 hrs Rs 1,500\",\"fcs\":{\"ACF\":1750,\"CCFT\":9,\"ACFT\":87.5,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4969,\"Tax\":779.7,\"YQTax\":0,\"OtherCharges\":508,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":254,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5748.7,\"PublishedFare\":5772.29,\"OfferedFare\":5713.29,\"CommissionEarned\":35.41,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.86,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4637880385_0BOMPATSG923_52776326168197\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":779.7,\"BaseFareCal\":5722.29,\"BaseFare\":4969,\"CommissionEarned\":35.41,\"TDS\":-1.86,\"MF\":15,\"YQ\":0,\"AGST\":254,\"MFT\":2.7,\"OT\":508,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":35.41,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5772.29,\"CostToCustomer\":5772.29,\"BaseFareCal\":5722.29,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5722.29,\"intOfferedFare\":5713.29,\"intPublishFare\":5748.7,\"TripjackMarkup\":0,\"TripjackCommission\":35.41,\"TripjackTDS\":\"1.86\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"797\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-15T16:50\",\"SegFlightNumber\":\"SG-923\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-15T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":84,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"797\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"779d8-25bad-dc37a-ceb6b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ100837852377\",\"FlightNumber\":\"SG-923\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"strTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-07-15T14:25\",\"LocalFromTime\":\"2022-07-15 14:25\",\"FromUTCTime\":\"2022-07-15T14:25\",\"LocalToTime\":\"2022-07-15 16:50\",\"ToUTCTime\":\"2022-07-15T16:50\",\"IsDirect\":0,\"FareClass\":\"SA\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Fri, 15 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":84,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5748.7,\"ApiResultIndex\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"779d8-25bad-dc37a-ceb6b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4969,\"Tax\":779.7,\"YQTax\":0,\"OtherCharges\":508,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":254,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5748.7,\"PublishedFare\":5772.29,\"OfferedFare\":5713.29,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":779.7,\"BaseFareCal\":5722.29,\"BaseFare\":4969,\"CommissionEarned\":35.41,\"TDS\":-1.86,\"MF\":15,\"YQ\":0,\"AGST\":254,\"MFT\":2.7,\"OT\":508,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"797\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-15T16:50\",\"SegFlightNumber\":\"SG-923\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"SA\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-15T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":84,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-4637880385_0BOMPATSG923_52029001707304\",\"localFromDateTime\":\"2022-07-15 14:25\",\"localToDateTime\":\"2022-07-15 16:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Patna (PAT)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"PAT\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"departure_date\":\"15\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Jai Prakash Narayan Arpt (PAT)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"PAT\",\"from\":\"BOM\",\"to\":\"PAT\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"sourceCityId\":18676,\"destinationCityId\":20918,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"779d8-25bad-dc37a-ceb6b\",\"from_city_\":\"1__BOM-PAT\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Patna+%28PAT%29&source_city=BOM&ContSysId_1=101&destination_city=PAT&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Patna%2C+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29%2C+India&departure_date=15%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"kumar.saujanya@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9699883388\",\"FirstName\":\"Saujanya \",\"LastName\":\"Kumar \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-21-10-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"32\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408614\",\"TPSysId\":\"408615\",\"VersionId\":[\"82902\"],\"CustomerSysId\":\"205552\",\"TrxId\":\"29416\",\"FareBreakdownid\":[\"356506\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"79\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"32\",\"CustomerMemSysId\":[\"32\"],\"flight_booking_id\":[\"44\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"44\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5772.29},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"205552\",\"TPSysId\":\"408615\",\"MasterTPSysId\":\"408614\",\"ProposalID\":\"408615\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":true,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5754.29,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5772.29,\"TotalDueAmount\":0,\"InvoiceValue\":5772.29,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-PAT-SpiceJet SG-923\",\"ItemQty\":1,\"ItemRates\":5654.29,\"Total\":5654.29,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5772.29,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":5754.29,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 21:11:01'),(173,'79abf-a3edb-821fc-be954','{\"BookingData\":[{\"bookingId\":\"TJ108637852788\",\"FlightNumber\":\"6E-5327\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:15\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2022-07-14T10:15\",\"LocalFromTime\":\"2022-07-14 10:15\",\"FromUTCTime\":\"2022-07-14T10:15\",\"LocalToTime\":\"2022-07-14 12:05\",\"ToUTCTime\":\"2022-07-14T12:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Thu, 14 Jul\",\"ArrivalDateTxt\":\"Thu, 14 Jul\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4733.7,\"PublishedFareTxt\":\"4,734\",\"ApiResultIndex\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"JAI-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARFT\":162.5,\"ARF\":3250,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3500,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3724,\"Tax\":1009.7,\"YQTax\":0,\"OtherCharges\":801,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":191,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4733.7,\"PublishedFare\":4766.17,\"OfferedFare\":4707.17,\"CommissionEarned\":26.53,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9383703328_0JAIBOM6E5327_52453071215819\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1009.7,\"BaseFareCal\":4716.17,\"BaseFare\":3724,\"CommissionEarned\":26.53,\"TDS\":-1.4,\"MF\":15,\"YQ\":0,\"AGST\":191,\"MFT\":2.7,\"OT\":801,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":26.53,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4766.17,\"CostToCustomer\":4766.17,\"BaseFareCal\":4716.17,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4716.17,\"intOfferedFare\":4707.17,\"intPublishFare\":4733.7,\"TripjackMarkup\":0,\"TripjackCommission\":26.53,\"TripjackTDS\":\"1.4\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"413\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-14T12:05\",\"SegFlightNumber\":\"6E-5327\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-14T10:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:15\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CTSW\",\"Price\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"413\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"79abf-a3edb-821fc-be954\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-14 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108637852788\",\"FlightNumber\":\"6E-5327\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"strTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:15\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2022-07-14T10:15\",\"LocalFromTime\":\"2022-07-14 10:15\",\"FromUTCTime\":\"2022-07-14T10:15\",\"LocalToTime\":\"2022-07-14 12:05\",\"ToUTCTime\":\"2022-07-14T12:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Thu, 14 Jul\",\"ArrivalDateTxt\":\"Thu, 14 Jul\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4733.7,\"ApiResultIndex\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"79abf-a3edb-821fc-be954\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3724,\"Tax\":1009.7,\"YQTax\":0,\"OtherCharges\":801,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":191,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4733.7,\"PublishedFare\":4766.17,\"OfferedFare\":4707.17,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1009.7,\"BaseFareCal\":4716.17,\"BaseFare\":3724,\"CommissionEarned\":26.53,\"TDS\":-1.4,\"MF\":15,\"YQ\":0,\"AGST\":191,\"MFT\":2.7,\"OT\":801,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"413\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-14T12:05\",\"SegFlightNumber\":\"6E-5327\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-07-14T10:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:15\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9383703328_1JAIBOM6E5327_45956529132043\",\"localFromDateTime\":\"2022-07-14 10:15\",\"localToDateTime\":\"2022-07-14 12:05\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jaipur (JAI)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"JAI\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"14\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"JAI\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"JAI\",\"to\":\"BOM\",\"sourceCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":12995,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"14\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-14\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"79abf-a3edb-821fc-be954\",\"from_city_\":\"1__JAI-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jaipur+%28JAI%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=JAI&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=14%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"jordankarpathy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9660614455\",\"FirstName\":\"Chinmay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-13-21-16-55\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"19\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408616\",\"TPSysId\":\"408617\",\"VersionId\":[\"82903\"],\"CustomerSysId\":\"214674\",\"TrxId\":\"29417\",\"FareBreakdownid\":[\"356507\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"80\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"19\",\"CustomerMemSysId\":[\"19\"],\"flight_booking_id\":[\"45\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"45\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4766.17},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"214674\",\"TPSysId\":\"408617\",\"MasterTPSysId\":\"408616\",\"ProposalID\":\"408617\\/V1\",\"InvoiceDate\":\"2022-07-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-13\",\"PaymentDate\":\"2022-07-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4748.17,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4766.17,\"TotalDueAmount\":0,\"InvoiceValue\":4766.17,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"JAI-BOM-IndiGo 6E-5327\",\"ItemQty\":1,\"ItemRates\":4648.17,\"Total\":4648.17,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4766.17,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":4748.17,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-13 21:17:34'),(177,'eae10-d0930-db9e6-19d40','{\"BookingData\":[{\"bookingId\":\"TJ103437885842\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2022-08-06T02:40\",\"LocalFromTime\":\"2022-08-06 02:40\",\"FromUTCTime\":\"2022-08-06T02:40\",\"LocalToTime\":\"2022-08-06 04:35\",\"ToUTCTime\":\"2022-08-06T04:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3888.7,\"PublishedFareTxt\":\"3,889\",\"ApiResultIndex\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARFT\":162.5,\"CRF\":50,\"CRFT\":9,\"ARF\":3250}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3500,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3227,\"Tax\":661.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":166,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3888.7,\"PublishedFare\":3924.71,\"OfferedFare\":3865.71,\"CommissionEarned\":22.99,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.21,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0229504763_0BOMDEL6E2111_9193680420777\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":661.7,\"BaseFareCal\":3874.71,\"BaseFare\":3227,\"CommissionEarned\":22.99,\"TDS\":-1.21,\"MF\":15,\"YQ\":0,\"AGST\":166,\"MFT\":2.7,\"OT\":478,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":22.99,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":3924.71,\"CostToCustomer\":3924.71,\"BaseFareCal\":3874.71,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":3874.71,\"intOfferedFare\":3865.71,\"intPublishFare\":3888.7,\"TripjackMarkup\":0,\"TripjackCommission\":22.99,\"TripjackTDS\":\"1.21\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"203\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-06T04:35\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-06T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"VPAV\",\"Price\":300,\"Description\":\"Vada Pav\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHBR\",\"Price\":400,\"Description\":\"Chicken Biryani\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"PITA\",\"Price\":550,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CKKU\",\"Price\":550,\"Description\":\"Chicken Keema with Kulcha\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CTSW\",\"Price\":600,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"},{\"Currency\":\"INR\",\"key\":\"203\",\"Code\":\"CHCT\",\"Price\":600,\"Description\":\"Chicken cucumber tomato sandwich\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eae10-d0930-db9e6-19d40\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103437885842\",\"FlightNumber\":\"6E-2111\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"strTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2022-08-06T02:40\",\"LocalFromTime\":\"2022-08-06 02:40\",\"FromUTCTime\":\"2022-08-06T02:40\",\"LocalToTime\":\"2022-08-06 04:35\",\"ToUTCTime\":\"2022-08-06T04:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3888.7,\"ApiResultIndex\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"eae10-d0930-db9e6-19d40\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3227,\"Tax\":661.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":166,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3888.7,\"PublishedFare\":3924.71,\"OfferedFare\":3865.71,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":661.7,\"BaseFareCal\":3874.71,\"BaseFare\":3227,\"CommissionEarned\":22.99,\"TDS\":-1.21,\"MF\":15,\"YQ\":0,\"AGST\":166,\"MFT\":2.7,\"OT\":478,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"203\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-06T04:35\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-06T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-0229504763_0BOMDEL6E2111_22467489050732\",\"localFromDateTime\":\"2022-08-06 02:40\",\"localToDateTime\":\"2022-08-06 04:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"06\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"eae10-d0930-db9e6-19d40\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=06%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-14-13-15-39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"16\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"408883\",\"TPSysId\":\"408884\",\"VersionId\":[\"82983\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29455\",\"FareBreakdownid\":[\"356537\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"81\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"16\",\"CustomerMemSysId\":[\"16\"],\"flight_booking_id\":[\"46\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"46\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3924.71},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"408884\",\"MasterTPSysId\":\"408883\",\"ProposalID\":\"408884\\/V1\",\"InvoiceDate\":\"2022-07-14\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-14\",\"PaymentDate\":\"2022-07-14\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":3906.71,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3924.71,\"TotalDueAmount\":0,\"InvoiceValue\":3924.71,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-IndiGo 6E-2111\",\"ItemQty\":1,\"ItemRates\":3806.71,\"Total\":3806.71,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3924.71,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":3906.71,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-14 13:17:05'),(178,'c6e15-c6014-6aeca-0a306','{\"FlightBookingData\":[{\"FlightNumber\":\"9I-625\",\"keyIndex\":0,\"SegFlightNumberArr\":\"9I-625\",\"AirlineName\":\"Alliance air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-2119000291_0BOMBHJ9I625_54161178489949\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"06:35\",\"ArrivalTime\":\"08:30\",\"TravelDate\":\"2022-07-16T06:35\",\"LocalFromTime\":\"2022-07-16 06:35\",\"FromUTCTime\":\"2022-07-16T06:35\",\"LocalToTime\":\"2022-07-16 08:30\",\"ToUTCTime\":\"2022-07-16T08:30\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Sat, 16 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"3142\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":8305,\"PublishedFareTxt\":\"8,304\",\"ApiResultIndex\":\"28-2119000291_0BOMBHJ9I625_54161178489139\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"c6e15-c6014-6aeca-0a306\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7500,\"Tax\":875.7,\"YQTax\":0,\"OtherCharges\":483,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":375,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8375.7,\"PublishedFare\":8305,\"PublishedFarePerPax\":8305,\"OfferedFare\":8304.45,\"CommissionEarned\":71.25,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.75,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"28-2119000291_0BOMBHJ9I625_54161178489949\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SUPSAV\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":875.7,\"BaseFareCal\":8304.45,\"BaseFare\":7500,\"CommissionEarned\":71.25,\"TDS\":-3.75,\"MF\":15,\"YQ\":0,\"AGST\":375,\"MFT\":2.7,\"OT\":483,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":71.25,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":8304.45,\"CostToCustomer\":8304.45,\"BaseFareCal\":8304.45,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":8304.45,\"intOfferedFare\":8304.45,\"intPublishFare\":8375.7,\"TripjackMarkup\":0,\"TripjackCommission\":71.25,\"TripjackTDS\":\"3.75\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"020\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Rudra Mata Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bhuj\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BHJ\",\"destinationArrTime\":\"2022-07-16T08:30\",\"SegFlightNumber\":\"9I-625\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"H\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-16T06:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:35\",\"strArrivalDtTime\":\"08:30\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-14 21:56:47'),(179,'03f2c-8454e-fccc9-4f821','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-2607\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-2607\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4041261382_0BOMJAIG82607_45665826347090\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:20\",\"ArrivalTime\":\"17:15\",\"TravelDate\":\"2022-07-15T15:20\",\"LocalFromTime\":\"2022-07-15 15:20\",\"FromUTCTime\":\"2022-07-15T15:20\",\"LocalToTime\":\"2022-07-15 17:15\",\"ToUTCTime\":\"2022-07-15T17:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Fri, 15 Jul\",\"ArrivalDateTxt\":\"Fri, 15 Jul\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3144,\"PublishedFareTxt\":\"3,143\",\"ApiResultIndex\":\"1-4041261382_0BOMJAIG82607_45665826344019\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"03f2c-8454e-fccc9-4f821\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2412,\"Tax\":654.7,\"YQTax\":0,\"OtherCharges\":637,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3066.7,\"PublishedFare\":3144,\"PublishedFarePerPax\":3144,\"OfferedFare\":3025.45,\"CommissionEarned\":41.25,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.17,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4041261382_0BOMJAIG82607_45665826347090\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":654.7,\"BaseFareCal\":3043.45,\"BaseFare\":2412,\"CommissionEarned\":41.25,\"TDS\":-2.17,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":637,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.25,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3143.45,\"CostToCustomer\":3143.45,\"BaseFareCal\":3043.45,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3043.45,\"intOfferedFare\":3025.45,\"intPublishFare\":3066.7,\"TripjackMarkup\":0,\"TripjackCommission\":41.25,\"TripjackTDS\":\"2.17\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-07-15T17:15\",\"SegFlightNumber\":\"G8-2607\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-15T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"17:15\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-14 22:00:15'),(180,'32307-bc6dc-f2410-cbe25','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-128\",\"keyIndex\":133,\"SegFlightNumberArr\":\"6E-128\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9564633300_0BOMGOI6E128_8047570981153\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"04:55\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2022-07-17T04:55\",\"LocalFromTime\":\"2022-07-17 04:55\",\"FromUTCTime\":\"2022-07-17T04:55\",\"LocalToTime\":\"2022-07-17 06:15\",\"ToUTCTime\":\"2022-07-17T06:15\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Sun, 17 Jul\",\"ArrivalDateTxt\":\"Sun, 17 Jul\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2461,\"PublishedFareTxt\":\"2,461\",\"ApiResultIndex\":\"5-9564633300_0BOMGOI6E128_8047570980313\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"32307-bc6dc-f2410-cbe25\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1823,\"Tax\":591.7,\"YQTax\":0,\"OtherCharges\":574,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2414.7,\"PublishedFare\":2461,\"PublishedFarePerPax\":2461,\"OfferedFare\":2401.71,\"CommissionEarned\":12.99,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.68,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9564633300_0BOMGOI6E128_8047570981153\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":591.7,\"BaseFareCal\":2410.71,\"BaseFare\":1823,\"CommissionEarned\":12.99,\"TDS\":-0.68,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":574,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":12.99,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":2460.71,\"CostToCustomer\":2460.71,\"BaseFareCal\":2410.71,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":2410.71,\"intOfferedFare\":2401.71,\"intPublishFare\":2414.7,\"TripjackMarkup\":0,\"TripjackCommission\":12.99,\"TripjackTDS\":\"0.68\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"02Q\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-17T06:15\",\"SegFlightNumber\":\"6E-128\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-17T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-15 09:49:58'),(181,'cb982-40355-182fd-3076d','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-244\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-244\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0426280970_0BOMGOIG8244_12314758149235\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:35\",\"ArrivalTime\":\"10:00\",\"TravelDate\":\"2022-07-17T08:35\",\"LocalFromTime\":\"2022-07-17 08:35\",\"FromUTCTime\":\"2022-07-17T08:35\",\"LocalToTime\":\"2022-07-17 10:00\",\"ToUTCTime\":\"2022-07-17T10:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Sun, 17 Jul\",\"ArrivalDateTxt\":\"Sun, 17 Jul\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":6936,\"PublishedFareTxt\":\"6,935\",\"ApiResultIndex\":\"1-0426280970_0BOMGOIG8244_12314758148395\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cb982-40355-182fd-3076d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5596,\"Tax\":1291.1000000000001,\"YQTax\":0,\"OtherCharges\":1238,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6887.099999999999,\"PublishedFare\":6936,\"PublishedFarePerPax\":2312,\"OfferedFare\":6817.0599999999995,\"CommissionEarned\":70.04,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.68,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0426280970_0BOMGOIG8244_12314758149235\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1273.4,\"BaseFareCal\":5317.36,\"BaseFare\":4096,\"CommissionEarned\":70.04,\"TDS\":-3.68,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1238,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":17.7,\"BaseFareCal\":1535.7,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"7 Kg\"}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":70.04,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6935.06,\"CostToCustomer\":6935.06,\"BaseFareCal\":6835.06,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6835.06,\"intOfferedFare\":6817.0599999999995,\"intPublishFare\":6887.099999999999,\"TripjackMarkup\":0,\"TripjackCommission\":70.04,\"TripjackTDS\":\"3.68\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04T\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-17T10:00\",\"SegFlightNumber\":\"G8-244\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-17T08:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:35\",\"strArrivalDtTime\":\"10:00\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-15 10:32:04'),(182,'2ec6d-bff93-be496-aa0b8','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8702\",\"keyIndex\":269,\"SegFlightNumberArr\":\"SG-8702\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-8366146318_0BOMDELSG8702_13650168838919\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-07-29T16:00\",\"LocalFromTime\":\"2022-07-29 16:00\",\"FromUTCTime\":\"2022-07-29T16:00\",\"LocalToTime\":\"2022-07-29 18:20\",\"ToUTCTime\":\"2022-07-29T18:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 29 Jul\",\"ArrivalDateTxt\":\"Fri, 29 Jul\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3922,\"PublishedFareTxt\":\"3,922\",\"ApiResultIndex\":\"11-8366146318_0BOMDELSG8702_13650168838919\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"2ec6d-bff93-be496-aa0b8\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3300,\"Tax\":267.7,\"YQTax\":0,\"OtherCharges\":250,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3567.7,\"PublishedFare\":3922,\"PublishedFarePerPax\":3922,\"OfferedFare\":3567.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-8366146318_0BOMDELSG8702_13650168838919\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":54,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":10,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"300.00\",\"AddiTaxOnMarkup\":54,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":267.7,\"BaseFareCal\":3621.7,\"BaseFare\":3300,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":250,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":54,\"AddiMarkup\":300,\"intTotalGST\":54,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":300,\"GSTOnMarkUp\":54,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":300,\"IntTaxOnAgencyFixMarkUp\":54,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":54,\"PublishFare\":3921.7,\"CostToCustomer\":3921.7,\"BaseFareCal\":3621.7,\"intCommisionEarnedForAgency\":300,\"CostToCompany\":3621.7,\"intOfferedFare\":3567.7,\"intPublishFare\":3567.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"300.00\",\"AddiTaxOnMarkup\":54,\"IntAdddimarkup\":300},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-29T18:20\",\"SegFlightNumber\":\"SG-8702\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-29T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-15 11:29:33'),(183,'6d6ab-e5edf-00db1-967ec','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-321\",\"keyIndex\":2,\"SegFlightNumberArr\":\"G8-321\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9861553952_2BOMDELG8321_24390251753746\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"12:10\",\"ArrivalTime\":\"14:20\",\"TravelDate\":\"2022-07-25T12:10\",\"LocalFromTime\":\"2022-07-25 12:10\",\"FromUTCTime\":\"2022-07-25T12:10\",\"LocalToTime\":\"2022-07-25 14:20\",\"ToUTCTime\":\"2022-07-25T14:20\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 25 Jul\",\"ArrivalDateTxt\":\"Mon, 25 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3877,\"PublishedFareTxt\":\"3,877\",\"ApiResultIndex\":\"1-9861553952_2BOMDELG8321_24390251753306\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"6d6ab-e5edf-00db1-967ec\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3059,\"Tax\":794.7,\"YQTax\":0,\"OtherCharges\":777,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3853.7,\"PublishedFare\":3877,\"PublishedFarePerPax\":3877,\"OfferedFare\":3699.68,\"CommissionEarned\":154.02,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.11,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-9861553952_2BOMDELG8321_24390251753746\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Travelidea Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"150.00\",\"AddiTaxOnMarkup\":27,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":794.7,\"BaseFareCal\":3726.68,\"BaseFare\":3059,\"CommissionEarned\":154.02,\"TDS\":-8.11,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":777,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":27,\"AddiMarkup\":150,\"intTotalGST\":27,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":150,\"GSTOnMarkUp\":27,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":154.02,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":150,\"IntTaxOnAgencyFixMarkUp\":27,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":27,\"PublishFare\":3876.68,\"CostToCustomer\":3876.68,\"BaseFareCal\":3726.68,\"intCommisionEarnedForAgency\":150,\"CostToCompany\":3726.68,\"intOfferedFare\":3699.68,\"intPublishFare\":3853.7,\"TripjackMarkup\":0,\"TripjackCommission\":154.02,\"TripjackTDS\":\"8.11\",\"AddiMarkup\":\"150.00\",\"AddiTaxOnMarkup\":27,\"IntAdddimarkup\":150},\"$$hashKey\":\"042\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-25T14:20\",\"SegFlightNumber\":\"G8-321\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-25T12:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:10\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-15 13:54:09');
INSERT INTO `tbl_temp_data` VALUES (184,'5d0e0-ddc87-45c23-112e8','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-168\",\"keyIndex\":249,\"SegFlightNumberArr\":\"6E-168\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2513361261_10BOMDEL6E168_16435512310048\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:05\",\"ArrivalTime\":\"14:10\",\"TravelDate\":\"2022-07-16T12:05\",\"LocalFromTime\":\"2022-07-16 12:05\",\"FromUTCTime\":\"2022-07-16T12:05\",\"LocalToTime\":\"2022-07-16 14:10\",\"ToUTCTime\":\"2022-07-16T14:10\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 16 Jul\",\"ArrivalDateTxt\":\"Sat, 16 Jul\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4326,\"PublishedFareTxt\":\"4,326\",\"ApiResultIndex\":\"5-2513361261_10BOMDEL6E168_16435512309868\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5d0e0-ddc87-45c23-112e8\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3611,\"Tax\":681.7,\"YQTax\":0,\"OtherCharges\":664,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4292.7,\"PublishedFare\":4326,\"PublishedFarePerPax\":4326,\"OfferedFare\":4266.97,\"CommissionEarned\":25.73,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.35,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2513361261_10BOMDEL6E168_16435512310048\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":681.7,\"BaseFareCal\":4275.97,\"BaseFare\":3611,\"CommissionEarned\":25.73,\"TDS\":-1.35,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":664,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":25.73,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4325.97,\"CostToCustomer\":4325.97,\"BaseFareCal\":4275.97,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4275.97,\"intOfferedFare\":4266.97,\"intPublishFare\":4292.7,\"TripjackMarkup\":0,\"TripjackCommission\":25.73,\"TripjackTDS\":\"1.35\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0D3\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-16T14:10\",\"SegFlightNumber\":\"6E-168\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-16T12:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:05\",\"strArrivalDtTime\":\"14:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-15 14:40:47'),(185,'3046e-2b5ad-71c54-45dea','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-752\",\"keyIndex\":0,\"SegFlightNumberArr\":\"6E-752\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0386041584_0JAIHYD6E752_43713332749825\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"06:55\",\"TravelDate\":\"2022-08-17T05:00\",\"LocalFromTime\":\"2022-08-17 05:00\",\"FromUTCTime\":\"2022-08-17T05:00\",\"LocalToTime\":\"2022-08-17 06:55\",\"ToUTCTime\":\"2022-08-17T06:55\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 17 Aug\",\"ArrivalDateTxt\":\"Wed, 17 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"12538\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5263,\"PublishedFareTxt\":\"5,263\",\"ApiResultIndex\":\"5-0386041584_0JAIHYD6E752_43713332749245\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3046e-2b5ad-71c54-45dea\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4200,\"Tax\":1033.7,\"YQTax\":0,\"OtherCharges\":801,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":215,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5233.7,\"PublishedFare\":5263,\"PublishedFarePerPax\":5263,\"OfferedFare\":5203.78,\"CommissionEarned\":29.92,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.58,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0386041584_0JAIHYD6E752_43713332749825\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1033.7,\"BaseFareCal\":5212.78,\"BaseFare\":4200,\"CommissionEarned\":29.92,\"TDS\":-1.58,\"MF\":15,\"YQ\":0,\"AGST\":215,\"MFT\":2.7,\"OT\":801,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":29.92,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5262.78,\"CostToCustomer\":5262.78,\"BaseFareCal\":5212.78,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5212.78,\"intOfferedFare\":5203.78,\"intPublishFare\":5233.7,\"TripjackMarkup\":0,\"TripjackCommission\":29.92,\"TripjackTDS\":\"1.58\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"027\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-08-17T06:55\",\"SegFlightNumber\":\"6E-752\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-17T05:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:00\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-15 19:26:29'),(186,'79697-60315-32180-db281','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-244\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-244\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4650547736_0BOMGOIG8244_37243967711536\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:35\",\"ArrivalTime\":\"10:00\",\"TravelDate\":\"2022-07-17T08:35\",\"LocalFromTime\":\"2022-07-17 08:35\",\"FromUTCTime\":\"2022-07-17T08:35\",\"LocalToTime\":\"2022-07-17 10:00\",\"ToUTCTime\":\"2022-07-17T10:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Sun, 17 Jul\",\"ArrivalDateTxt\":\"Sun, 17 Jul\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":7244,\"PublishedFareTxt\":\"7,244\",\"ApiResultIndex\":\"1-4650547736_0BOMGOIG8244_37243967711536\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"79697-60315-32180-db281\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5596,\"Tax\":1742.6000000000001,\"YQTax\":0,\"OtherCharges\":1689.5,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7338.599999999999,\"PublishedFare\":7244,\"PublishedFarePerPax\":2415,\"OfferedFare\":7125.599999999999,\"CommissionEarned\":213,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-11.22,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4650547736_0BOMGOIG8244_37243967711536\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1574.4,\"BaseFareCal\":5475.4,\"BaseFare\":4096,\"CommissionEarned\":213,\"TDS\":-11.22,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1539,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":168.2,\"BaseFareCal\":1686.2,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":150.5,\"MFT\":2.7,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"7 Kg\"}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":213,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7243.6,\"CostToCustomer\":7243.6,\"BaseFareCal\":7143.6,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7143.6,\"intOfferedFare\":7125.599999999999,\"intPublishFare\":7338.599999999999,\"TripjackMarkup\":0,\"TripjackCommission\":213,\"TripjackTDS\":\"11.22\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04E\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-17T10:00\",\"SegFlightNumber\":\"G8-244\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-17T08:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:35\",\"strArrivalDtTime\":\"10:00\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-15 19:39:35'),(188,'cbf7e-5e6ef-9cace-1a1bc','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5282\",\"keyIndex\":93,\"SegFlightNumberArr\":\"6E-5282\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3559668842_1BOMGOI6E5282_21795294121902\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:25\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2022-07-17T11:25\",\"LocalFromTime\":\"2022-07-17 11:25\",\"FromUTCTime\":\"2022-07-17T11:25\",\"LocalToTime\":\"2022-07-17 12:40\",\"ToUTCTime\":\"2022-07-17T12:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 17 Jul\",\"ArrivalDateTxt\":\"Sun, 17 Jul\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":10087,\"PublishedFareTxt\":\"10,087\",\"ApiResultIndex\":\"5-3559668842_1BOMGOI6E5282_21795294121402\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cbf7e-5e6ef-9cace-1a1bc\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6146,\"Tax\":1421.1000000000001,\"YQTax\":0,\"OtherCharges\":1368,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7567.099999999999,\"PublishedFare\":7391,\"PublishedFarePerPax\":2464,\"OfferedFare\":7390.5599999999995,\"CommissionEarned\":176.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.3,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3559668842_1BOMGOI6E5282_21795294121902\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1403.4,\"BaseFareCal\":5872.86,\"BaseFare\":4646,\"CommissionEarned\":176.54,\"TDS\":-9.3,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1368,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":17.7,\"BaseFareCal\":1517.7,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":176.54,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":7390.56,\"CostToCustomer\":7390.56,\"BaseFareCal\":7390.56,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":7390.56,\"intOfferedFare\":7390.5599999999995,\"intPublishFare\":7567.099999999999,\"TripjackMarkup\":0,\"TripjackCommission\":176.54,\"TripjackTDS\":\"9.3\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"099\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-07-17T12:40\",\"SegFlightNumber\":\"6E-5282\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-17T11:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"11:25\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-16 11:27:18'),(189,'63eec-3f9e8-78d3e-06e91','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8169\",\"keyIndex\":44,\"SegFlightNumberArr\":\"SG-8169\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4223190911_0DELBOMSG8169_34089153234496\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:45\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-07-18T19:45\",\"LocalFromTime\":\"2022-07-18 19:45\",\"FromUTCTime\":\"2022-07-18T19:45\",\"LocalToTime\":\"2022-07-18 22:00\",\"ToUTCTime\":\"2022-07-18T22:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Mon, 18 Jul\",\"ArrivalDateTxt\":\"Mon, 18 Jul\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":53,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":7875,\"PublishedFareTxt\":\"7,874\",\"ApiResultIndex\":\"4-4223190911_0DELBOMSG8169_34089153233446\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"63eec-3f9e8-78d3e-06e91\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6422,\"Tax\":1395.4,\"YQTax\":0,\"OtherCharges\":1028,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":332,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7817.4,\"PublishedFare\":7875,\"PublishedFarePerPax\":3938,\"OfferedFare\":7756.4,\"CommissionEarned\":61,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.22,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4223190911_0DELBOMSG8169_34089153234496\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":53,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1395.4,\"BaseFareCal\":7774.4,\"BaseFare\":6422,\"CommissionEarned\":61,\"TDS\":-3.22,\"MF\":30,\"YQ\":0,\"AGST\":332,\"MFT\":5.4,\"OT\":1028,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":61,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7874.4,\"CostToCustomer\":7874.4,\"BaseFareCal\":7774.4,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7774.4,\"intOfferedFare\":7756.4,\"intPublishFare\":7817.4,\"TripjackMarkup\":0,\"TripjackCommission\":61,\"TripjackTDS\":\"3.22\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-18T22:00\",\"SegFlightNumber\":\"SG-8169\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-18T19:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":53,\"strDepartureDtTime\":\"19:45\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"$$hashKey\":\"0AJ\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-18 17:34:35'),(190,'3','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"Komal\",\"LastName\":\"Malhotra\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/flight\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"3000\",\"RefrenceNo\":\"dsd\",\"CreditDate\":\"18\\/07\\/2022\",\"Remark\":\"sda\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/flight\"}','2022-07-18 17:50:03'),(196,'230ce-63b00-d965f-e230b','{\"FlightBookingData\":[{\"bookingId\":\"DMCS100900299099\",\"bookingId_TJ\":\"TJS100900299099\",\"FlightNumber\":\"6E-5087\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"230ce-63b00-d965f-e230b\",\"apiTraceId\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:20\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2022-07-27T21:20\",\"LocalFromTime\":\"2022-07-27 21:20\",\"FromUTCTime\":\"2022-07-27T21:20\",\"LocalToTime\":\"2022-07-27 23:25\",\"ToUTCTime\":\"2022-07-27T23:25\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"02h 05m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,084\",\"ApiResultIndex\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3200,\"Tax\":871.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":165,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4071.7,\"PublishedFare\":4083.5,\"PublishedFareAgent\":4083.5,\"OfferedFareAgent\":4083.5,\"OfferedFare\":3871.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0519797479_0DELBOM6E5087_1057225745913754\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":871.7,\"TotalBaseFare\":4071.7,\"BaseFareCal\":3873.5,\"BaseFare\":3200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":165,\"MFT\":2.7,\"OT\":489,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":32.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":10,\"GSTOnMarkUp\":1.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":10,\"IntTaxOnAgencyFixMarkUp\":1.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":32.308474576271195,\"PublishFare\":4083.5,\"CostToCustomer\":4083.5,\"BaseFareCal\":3873.5,\"intCommisionEarnedForAgency\":210,\"CostToCompany\":3873.5,\"intOfferedFare\":3871.7,\"intPublishFare\":4071.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4083.5,\"CostToAgent\":4083.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"465\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-27T23:25\",\"SegFlightNumber\":\"6E-5087\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-27T21:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:20\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"465\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-0519797479_40DELBOM6E5087_1057080800923404\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"47\"],\"ForCustomerSession\":[{\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9999977655\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12728\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-18 18:01:53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"20\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"20\",\"CustomerMemSysId\":[\"20\"],\"flight_booking_customer\":[[\"82\"]],\"SearchTraceId\":\"230ce-63b00-d965f-e230b\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\",\"Sectors\"],\"to_des\":[\"Mumbai (BOM)\",\"DEL\"],\"departure_date\":[\"27\\/07\\/2022\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"BOM\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Delhi (DEL)\",\"Sectors\"],\"to_city\":[\"Mumbai (BOM)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-07-27\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"230ce-63b00-d965f-e230b\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"DEL\"],\"to\":[\"BOM\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"27\\/07\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"27 Jul Wed\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-07-18 17:59:06\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"230ce-63b00-d965f-e230b\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"27\\\\\\/07\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"BOM\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Chhatrapati Shivaji (BOM)\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-07-27\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[18676],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"230ce-63b00-d965f-e230b\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BOM\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BOM\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"27\\\\\\/07\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"27 Jul Wed\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-07-18 17:59:06\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS100900299099\\\",\\\"bookingId_TJ\\\":\\\"TJS100900299099\\\",\\\"FlightNumber\\\":\\\"6E-5087\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"230ce-63b00-d965f-e230b\\\",\\\"apiTraceId\\\":\\\"5-0519797479_40DELBOM6E5087_1057080800923404\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"21:20\\\",\\\"ArrivalTime\\\":\\\"23:25\\\",\\\"TravelDate\\\":\\\"2022-07-27T21:20\\\",\\\"LocalFromTime\\\":\\\"2022-07-27 21:20\\\",\\\"FromUTCTime\\\":\\\"2022-07-27T21:20\\\",\\\"LocalToTime\\\":\\\"2022-07-27 23:25\\\",\\\"ToUTCTime\\\":\\\"2022-07-27T23:25\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"R\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":125,\\\"DepartureDateTxt\\\":\\\"Wed, 27 Jul\\\",\\\"ArrivalDateTxt\\\":\\\"Wed, 27 Jul\\\",\\\"FlightDuration\\\":\\\"02h 05m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"4,084\\\",\\\"ApiResultIndex\\\":\\\"5-0519797479_40DELBOM6E5087_1057080800923404\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":3200,\\\"Tax\\\":871.7,\\\"YQTax\\\":0,\\\"OtherCharges\\\":489,\\\"Discount\\\":0,\\\"ServiceFee\\\":15,\\\"ManagementFeeTax\\\":2.7,\\\"AirlineGSTComponent\\\":165,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":200,\\\"intPublishedFare\\\":4071.7,\\\"PublishedFare\\\":4083.5,\\\"PublishedFareAgent\\\":4083.5,\\\"OfferedFareAgent\\\":4083.5,\\\"OfferedFare\\\":3871.7,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"5-0519797479_0DELBOM6E5087_1057225745913754\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"R\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":32.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":10,\\\"GSTOnMarkUp\\\":1.8,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4083.5,\\\"CostToAgent\\\":4083.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":871.7,\\\"TotalBaseFare\\\":4071.7,\\\"BaseFareCal\\\":3873.5,\\\"BaseFare\\\":3200,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":15,\\\"YQ\\\":0,\\\"AGST\\\":165,\\\"MFT\\\":2.7,\\\"OT\\\":489,\\\"MU\\\":200,\\\"YR\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":32.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":10,\\\"GSTOnMarkUp\\\":1.8,\\\"CommEarned\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4083.5,\\\"CostToAgent\\\":4083.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":169.4915254237288,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":0,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":10,\\\"IntTaxOnAgencyFixMarkUp\\\":1.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":32.308474576271195,\\\"PublishFare\\\":4083.5,\\\"CostToCustomer\\\":4083.5,\\\"BaseFareCal\\\":3873.5,\\\"intCommisionEarnedForAgency\\\":210,\\\"CostToCompany\\\":3873.5,\\\"intOfferedFare\\\":3871.7,\\\"intPublishFare\\\":4071.7,\\\"TripjackMarkup\\\":200,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":4083.5,\\\"CostToAgent\\\":4083.5,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"465\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2022-07-27T23:25\\\",\\\"SegFlightNumber\\\":\\\"6E-5087\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"R\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2022-07-27T21:20\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":125,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"21:20\\\",\\\"strArrivalDtTime\\\":\\\"23:25\\\",\\\"FlightDuration\\\":\\\"2h 5m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 3\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"5-0519797479_40DELBOM6E5087_1057080800923404\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BOM\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\\\",\\\"fcs\\\":{\\\"ARFT\\\":150,\\\"ARF\\\":3000,\\\"CRFT\\\":9,\\\"CRF\\\":50}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\\\",\\\"fcs\\\":{\\\"ACFT\\\":175,\\\"ACF\\\":3500,\\\"CCF\\\":50,\\\"CCFT\\\":9}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Paid Seat\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-07-26 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"465\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"9999977655\",\"leadEmail\":\"komalmalhotra0101@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"Mohammad\",\"passenger-lastname-1\":\"sabir\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Delhi\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"7701\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"SelectMeals\":[\"\"],\"SelectBaggage\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"12728\",\"Salutation\":\"1\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"CountryCode\":\"91\",\"MobileNo\":\"9999977655\"},\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"Komal\",\"LastName\":\"Malhotra\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":1,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":\"0\",\"paymentMode\":\"1\",\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS100900299099\",\"amount\":3871.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"komalmalhotra0101@gmail.com\"],\"contacts\":[\"919999977655\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-18T18:04:19.032\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"74639\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"5087\",\"eT\":\"320\"},\"stops\":0,\"duration\":125,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 3\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-07-27T21:20\",\"at\":\"2022-07-27T23:25\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Mohammad\",\"lN\":\"sabir\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":871.7,\"BF\":3200,\"TF\":4071.7,\"IGST\":2.7,\"NF\":3871.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":165,\"OT\":489,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}}','2022-07-18 18:03:32'),(202,'e2c45-b65a8-4708e-fbbfb','{\"FlightBookingData\":[{\"bookingId\":\"DMCS103800299101\",\"bookingId_TJ\":\"TJS103800299101\",\"FlightNumber\":\"6E-167\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"e2c45-b65a8-4708e-fbbfb\",\"apiTraceId\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-07-26T17:55\",\"LocalFromTime\":\"2022-07-26 17:55\",\"FromUTCTime\":\"2022-07-26T17:55\",\"LocalToTime\":\"2022-07-26 23:20\",\"ToUTCTime\":\"2022-07-26T23:20\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":325,\"DepartureDateTxt\":\"Tue, 26 Jul\",\"ArrivalDateTxt\":\"Tue, 26 Jul\",\"FlightDuration\":\"05h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"2,995\",\"ApiResultIndex\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2000,\"Tax\":864.7,\"YQTax\":0,\"OtherCharges\":539,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":108,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":2864.7,\"PublishedFare\":2994.5,\"PublishedFareAgent\":2994.5,\"OfferedFareAgent\":2994.5,\"OfferedFare\":2664.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5475753872_0DELVNS6E167VNSBOM6E6813_1057434368435438\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":864.7,\"TotalBaseFare\":2864.7,\"BaseFareCal\":2684.5,\"BaseFare\":2000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":108,\"MFT\":2.7,\"OT\":539,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"showintax\":\"1\",\"ExtraMarkup\":677.9661016949152,\"ExtraMarkupOnGST\":122.03389830508479}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":2994.5,\"CostToCustomer\":2994.5,\"BaseFareCal\":2684.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":2684.5,\"intOfferedFare\":2664.7,\"intPublishFare\":2864.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":2994.5,\"CostToAgent\":2994.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0},\"showintax\":\"1\",\"ExtraMarkup\":677.9661016949152,\"ExtraMarkupOnGST\":122.03389830508479},\"Segments\":[{\"segmentid\":\"682\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-07-26T19:25\",\"SegFlightNumber\":\"6E-167\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-07-26T17:55\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":90,\"GroundTime\":95,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:25\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"683\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-26T23:20\",\"SegFlightNumber\":\"6E-6813\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-07-26T21:00\",\"TripIndicator\":2,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"21:00\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPE\",\"Price\":0,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPD\",\"Price\":0,\"Weight\":\"30 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPC\",\"Price\":0,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPB\",\"Price\":0,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"XBPA\",\"Price\":0,\"Weight\":\"5 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"683\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"682\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"ARF\":3000,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-25 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"48\"],\"ForCustomerSession\":[{\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9999977655\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12728\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-18 18:05:26\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"20\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"20\",\"CustomerMemSysId\":[\"20\"],\"flight_booking_customer\":[[\"83\"]],\"SearchTraceId\":\"e2c45-b65a8-4708e-fbbfb\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\",\"Sectors\"],\"to_des\":[\"Mumbai (BOM)\",\"DEL\"],\"departure_date\":[\"26\\/07\\/2022\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"BOM\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\"\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Delhi (DEL)\",\"Sectors\"],\"to_city\":[\"Mumbai (BOM)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-07-26\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"e2c45-b65a8-4708e-fbbfb\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"DEL\"],\"to\":[\"BOM\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"26\\/07\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"26 Jul Tue\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-07-18 18:04:23\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"e2c45-b65a8-4708e-fbbfb\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"26\\\\\\/07\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"BOM\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\"\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-07-26\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[18676],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"e2c45-b65a8-4708e-fbbfb\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BOM\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BOM\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"26\\\\\\/07\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"26 Jul Tue\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-07-18 18:04:23\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS103800299101\\\",\\\"bookingId_TJ\\\":\\\"TJS103800299101\\\",\\\"FlightNumber\\\":\\\"6E-167\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"e2c45-b65a8-4708e-fbbfb\\\",\\\"apiTraceId\\\":\\\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"17:55\\\",\\\"ArrivalTime\\\":\\\"23:20\\\",\\\"TravelDate\\\":\\\"2022-07-26T17:55\\\",\\\"LocalFromTime\\\":\\\"2022-07-26 17:55\\\",\\\"FromUTCTime\\\":\\\"2022-07-26T17:55\\\",\\\"LocalToTime\\\":\\\"2022-07-26 23:20\\\",\\\"ToUTCTime\\\":\\\"2022-07-26T23:20\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"R\\\",\\\"LAYOVERCity\\\":\\\"Varanasi\\\",\\\"GroundTime\\\":95,\\\"LAYOVERDuration\\\":\\\"1h 35m\\\",\\\"FlyingMinutes\\\":325,\\\"DepartureDateTxt\\\":\\\"Tue, 26 Jul\\\",\\\"ArrivalDateTxt\\\":\\\"Tue, 26 Jul\\\",\\\"FlightDuration\\\":\\\"05h 25m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"2,995\\\",\\\"ApiResultIndex\\\":\\\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":2000,\\\"Tax\\\":864.7,\\\"YQTax\\\":0,\\\"OtherCharges\\\":539,\\\"Discount\\\":0,\\\"ServiceFee\\\":15,\\\"ManagementFeeTax\\\":2.7,\\\"AirlineGSTComponent\\\":108,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":200,\\\"intPublishedFare\\\":2864.7,\\\"PublishedFare\\\":2994.5,\\\"PublishedFareAgent\\\":2994.5,\\\"OfferedFareAgent\\\":2994.5,\\\"OfferedFare\\\":2664.7,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"5-5475753872_0DELVNS6E167VNSBOM6E6813_1057434368435438\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"R\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2994.5,\\\"CostToAgent\\\":2994.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":864.7,\\\"TotalBaseFare\\\":2864.7,\\\"BaseFareCal\\\":2684.5,\\\"BaseFare\\\":2000,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":15,\\\"YQ\\\":0,\\\"AGST\\\":108,\\\"MFT\\\":2.7,\\\"OT\\\":539,\\\"MU\\\":200,\\\"YR\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2994.5,\\\"CostToAgent\\\":2994.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"showintax\\\":\\\"1\\\",\\\"ExtraMarkup\\\":677.9661016949152,\\\"ExtraMarkupOnGST\\\":122.03389830508479}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":169.4915254237288,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":50,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":110,\\\"IntTaxOnAgencyFixMarkUp\\\":19.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":50.308474576271195,\\\"PublishFare\\\":2994.5,\\\"CostToCustomer\\\":2994.5,\\\"BaseFareCal\\\":2684.5,\\\"intCommisionEarnedForAgency\\\":310,\\\"CostToCompany\\\":2684.5,\\\"intOfferedFare\\\":2664.7,\\\"intPublishFare\\\":2864.7,\\\"TripjackMarkup\\\":200,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":2994.5,\\\"CostToAgent\\\":2994.5,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0},\\\"showintax\\\":\\\"1\\\",\\\"ExtraMarkup\\\":677.9661016949152,\\\"ExtraMarkupOnGST\\\":122.03389830508479},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"682\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Varanasi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"VNS\\\",\\\"destinationArrTime\\\":\\\"2022-07-26T19:25\\\",\\\"SegFlightNumber\\\":\\\"6E-167\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"R\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2022-07-26T17:55\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":90,\\\"GroundTime\\\":95,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"17:55\\\",\\\"strArrivalDtTime\\\":\\\"19:25\\\",\\\"FlightDuration\\\":\\\"1h 30m\\\",\\\"LAYOVERDuration\\\":\\\"1h 35m\\\",\\\"LAYOVERCity\\\":\\\"Varanasi\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false},{\\\"segmentid\\\":\\\"683\\\",\\\"originAirportName\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Varanasi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2022-07-26T23:20\\\",\\\"SegFlightNumber\\\":\\\"6E-6813\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"R\\\",\\\"originAirportCode\\\":\\\"VNS\\\",\\\"originDepTime\\\":\\\"2022-07-26T21:00\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":140,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"21:00\\\",\\\"strArrivalDtTime\\\":\\\"23:20\\\",\\\"FlightDuration\\\":\\\"2h 20m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"30 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":0,\\\"Weight\\\":\\\"5 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"683\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"5-5475753872_34DELVNS6E167VNSBOM6E6813_1057397101756331\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BOM\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\\\",\\\"fcs\\\":{\\\"ARFT\\\":150,\\\"ARF\\\":3000,\\\"CRFT\\\":9,\\\"CRF\\\":50}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\\\",\\\"fcs\\\":{\\\"ACFT\\\":175,\\\"ACF\\\":3500,\\\"CCF\\\":50,\\\"CCFT\\\":9}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Paid Seat\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-07-25 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1350,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2250,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":4500,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":6750,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"682\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":13500,\\\"Weight\\\":\\\"30 Kg\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"{\\\"showintax\\\":\\\"1\\\",\\\"intExtraMarkup\\\":\\\"800\\\",\\\"ExtraMarkup\\\":677.9661016949152,\\\"ExtraMarkupOnGST\\\":122.03389830508479}\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"9999977655\",\"leadEmail\":\"komalmalhotra0101@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"20\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"Mohammad\",\"passenger-lastname-1\":\"sabir\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Delhi\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"7701\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"SelectMeals\":[\"\",\"\"],\"SelectBaggage\":[\"\",\"0_0_0\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"showintax\":\"1\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"12728\",\"Salutation\":\"1\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"CountryCode\":\"91\",\"MobileNo\":\"9999977655\"},\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"Komal\",\"LastName\":\"Malhotra\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":1,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":\"0\",\"paymentMode\":\"1\",\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS103800299101\",\"amount\":2664.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"komalmalhotra0101@gmail.com\"],\"contacts\":[\"919999977655\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-07-18T18:06:47.395\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"74640\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"167\",\"eT\":\"320\"},\"stops\":0,\"duration\":90,\"cT\":95,\"da\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"dt\":\"2022-07-26T17:55\",\"at\":\"2022-07-26T19:25\",\"iand\":false,\"isRs\":false,\"sN\":0},{\"id\":\"74641\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"6813\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"VNS\",\"name\":\"Lal Bahadur Shastri Arpt\",\"cityCode\":\"VNS\",\"city\":\"Varanasi\",\"country\":\"India\",\"countryCode\":\"IN\"},\"aa\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-07-26T21:00\",\"at\":\"2022-07-26T23:20\",\"iand\":false,\"isRs\":false,\"sN\":1}]}],\"travellerInfos\":[{\"pnrDetails\":{\"DEL-VNS\":\"TESTPNR\",\"VNS-BOM\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Mohammad\",\"lN\":\"sabir\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TAF\":864.7,\"BF\":2000,\"TF\":2864.7,\"IGST\":2.7,\"NF\":2664.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":108,\"OT\":539,\"YQ\":0,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}}','2022-07-18 18:06:00'),(210,'c8622-16314-94fb7-65f98','{\"BookingData\":[{\"bookingId\":\"TJ105638235197\",\"FlightNumber\":\"AI-664\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-07-20T15:15\",\"LocalFromTime\":\"2022-07-20 15:15\",\"FromUTCTime\":\"2022-07-20T15:15\",\"LocalToTime\":\"2022-07-20 16:35\",\"ToUTCTime\":\"2022-07-20T16:35\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 20 Jul\",\"ArrivalDateTxt\":\"Wed, 20 Jul\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":0,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":8992.1,\"PublishedFareTxt\":\"8,992\",\"ApiResultIndex\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"GOI-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non-Refundable (Basic fare forfeited, Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 26 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"CRFT\":9,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 26 Hrs before scheduled departure__nls__Cancellation Penalty : INR 4,000\\/- or basic fare whichever is lower\",\"fcs\":{\"CCFT\":9,\"CCF\":50,\"ACF\":4000,\"ACFT\":200}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6710,\"Tax\":2282.1,\"YQTax\":0,\"OtherCharges\":1358,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":361,\"CarrierMiscFee\":510,\"MUFee\":0,\"intPublishedFare\":8992.1,\"PublishedFare\":8545.86,\"OfferedFare\":8486.86,\"CommissionEarned\":505.24,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-26.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-0676070458_0GOIBOMAI664_18714158992832\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2023.4,\"BaseFareCal\":6987.16,\"BaseFare\":5460,\"CommissionEarned\":505.24,\"TDS\":-26.6,\"MF\":30,\"YQ\":0,\"AGST\":290,\"MFT\":5.4,\"OT\":1358,\"MU\":0,\"YR\":340,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1517.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10KG\",\"CabinBaggage\":[]}},\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":505.24,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":8545.86,\"CostToCustomer\":8545.86,\"BaseFareCal\":8495.86,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":8495.86,\"intOfferedFare\":8486.86,\"intPublishFare\":8992.1,\"TripjackMarkup\":0,\"TripjackCommission\":505.24,\"TripjackTDS\":\"26.6\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"831\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-20T16:35\",\"SegFlightNumber\":\"AI-664\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-07-20T15:15\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c8622-16314-94fb7-65f98\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-20 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":0,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105638235197\",\"FlightNumber\":\"AI-664\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"strTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-07-20T15:15\",\"LocalFromTime\":\"2022-07-20 15:15\",\"FromUTCTime\":\"2022-07-20T15:15\",\"LocalToTime\":\"2022-07-20 16:35\",\"ToUTCTime\":\"2022-07-20T16:35\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 20 Jul\",\"ArrivalDateTxt\":\"Wed, 20 Jul\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":0,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":8992.1,\"ApiResultIndex\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"c8622-16314-94fb7-65f98\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6710,\"Tax\":2282.1,\"YQTax\":0,\"OtherCharges\":1358,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":361,\"CarrierMiscFee\":510,\"MUFee\":0,\"intPublishedFare\":8992.1,\"PublishedFare\":8545.86,\"OfferedFare\":8486.86,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2023.4,\"BaseFareCal\":6987.16,\"BaseFare\":5460,\"CommissionEarned\":505.24,\"TDS\":-26.6,\"MF\":30,\"YQ\":0,\"AGST\":290,\"MFT\":5.4,\"OT\":1358,\"MU\":0,\"YR\":340,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1517.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"MFT\":2.7,\"OT\":0,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}}},\"Segments\":[[{\"segmentid\":\"831\",\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-20T16:35\",\"SegFlightNumber\":\"AI-664\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-07-20T15:15\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-0676070458_80GOIBOMAI664_9023875071625\",\"localFromDateTime\":\"2022-07-20 15:15\",\"localToDateTime\":\"2022-07-20 16:35\",\"strSourceAirportCode\":\"GOI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":0,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Goa In (GOI)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"GOI\",\"ContSysId_1\":\"0\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Goa In, IN - Dabolim Arpt (GOI), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"20\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Dabolim Arpt (GOI)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"1\",\"class\":\"3\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"GOI\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"GOI\",\"to\":\"BOM\",\"sourceCityText\":\"Goa In, IN - Dabolim Arpt (GOI), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":0,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"3\",\"child\":\"0\",\"infant\":\"1\",\"departure_dates\":\"20\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-20\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"c8622-16314-94fb7-65f98\",\"from_city_\":\"1__GOI-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Goa+In+%28GOI%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=GOI&ContSysId_1=0&destination_city=BOM&ContSysId=101&source=Goa+In%2C+IN+-+Dabolim+Arpt+%28GOI%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=20%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Dabolim+Arpt+%28GOI%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=2&childs=0&infants=1&class=3\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"mpiboxes@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9820918128\",\"FirstName\":\"Arjun\",\"LastName\":\"Gori\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-19-12-14-24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"22\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"22\",\"EmailId\":\"mpiboxes@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9820918128\",\"FirstName\":\"Darshna\",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-19-12-14-24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"35\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"22\",\"EmailId\":\"mpiboxes@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9820918128\",\"FirstName\":\"Ditya\",\"LastName\":\"Gori\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":\"2021-05-08\",\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"3\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-19-12-14-24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"36\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"411707\",\"TPSysId\":\"411708\",\"VersionId\":[\"84040\"],\"CustomerSysId\":\"217550\",\"TrxId\":\"29701\",\"FareBreakdownid\":[\"356753\",\"356754\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"87\",\"88\",\"89\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"22\",\"CustomerMemSysId\":[\"22\",\"35\",\"36\"],\"flight_booking_id\":[\"50\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"50\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":8604.86},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"217550\",\"TPSysId\":\"411708\",\"MasterTPSysId\":\"411707\",\"ProposalID\":\"411708\\/V1\",\"InvoiceDate\":\"2022-07-19\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-19\",\"PaymentDate\":\"2022-07-19\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":8586.86,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":8604.86,\"TotalDueAmount\":0,\"InvoiceValue\":8604.86,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"GOI-BOM-Air India AI-664\",\"ItemQty\":1,\"ItemRates\":8486.86,\"Total\":8486.86,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":8604.86,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":8586.86,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-19 12:15:02'),(211,'37aa5-7f328-ee57e-b6f26','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-664\",\"keyIndex\":52,\"SegFlightNumberArr\":\"AI-664\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5935313962_50GOIBOMAI664_25437554640672\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-07-20T15:15\",\"LocalFromTime\":\"2022-07-20 15:15\",\"FromUTCTime\":\"2022-07-20T15:15\",\"LocalToTime\":\"2022-07-20 16:35\",\"ToUTCTime\":\"2022-07-20T16:35\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 20 Jul\",\"ArrivalDateTxt\":\"Wed, 20 Jul\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":5057,\"PublishedFareTxt\":\"5,057\",\"ApiResultIndex\":\"21-10-15-2-5935313962_50GOIBOMAI664_25437554640672\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"37aa5-7f328-ee57e-b6f26\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3980,\"Tax\":1270.4,\"YQTax\":0,\"OtherCharges\":679,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":216,\"CarrierMiscFee\":340,\"MUFee\":0,\"intPublishedFare\":5250.4,\"PublishedFare\":5057,\"PublishedFarePerPax\":2529,\"OfferedFare\":4997.78,\"CommissionEarned\":252.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.3,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-5935313962_50GOIBOMAI664_25437554640672\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1011.7,\"BaseFareCal\":3498.08,\"BaseFare\":2730,\"CommissionEarned\":252.62,\"TDS\":-13.3,\"MF\":15,\"YQ\":0,\"AGST\":145,\"MFT\":2.7,\"OT\":679,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1517.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":[]}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":252.62,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5056.78,\"CostToCustomer\":5056.78,\"BaseFareCal\":5006.78,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5006.78,\"intOfferedFare\":4997.78,\"intPublishFare\":5250.4,\"TripjackMarkup\":0,\"TripjackCommission\":252.62,\"TripjackTDS\":\"13.3\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"030\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-20T16:35\",\"SegFlightNumber\":\"AI-664\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-07-20T15:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-19 14:46:15'),(212,'a1c7b-0509e-53428-356f8','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-664\",\"keyIndex\":59,\"SegFlightNumberArr\":\"AI-664\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-6533571070_57GOIBOMAI664_24855359171910\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-07-20T15:15\",\"LocalFromTime\":\"2022-07-20 15:15\",\"FromUTCTime\":\"2022-07-20T15:15\",\"LocalToTime\":\"2022-07-20 16:35\",\"ToUTCTime\":\"2022-07-20T16:35\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 20 Jul\",\"ArrivalDateTxt\":\"Wed, 20 Jul\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":8546,\"PublishedFareTxt\":\"8,546\",\"ApiResultIndex\":\"21-10-15-2-6533571070_57GOIBOMAI664_24855359171910\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a1c7b-0509e-53428-356f8\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6710,\"Tax\":2282.1,\"YQTax\":0,\"OtherCharges\":1358,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":361,\"CarrierMiscFee\":510,\"MUFee\":0,\"intPublishedFare\":8992.1,\"PublishedFare\":8546,\"PublishedFarePerPax\":2849,\"OfferedFare\":8486.86,\"CommissionEarned\":505.24,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-26.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-6533571070_57GOIBOMAI664_24855359171910\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2023.4,\"BaseFareCal\":6987.16,\"BaseFare\":5460,\"CommissionEarned\":505.24,\"TDS\":-26.6,\"MF\":30,\"YQ\":0,\"AGST\":290,\"MFT\":5.4,\"OT\":1358,\"MU\":0,\"YR\":340,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1517.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":[]}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":505.24,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":8545.86,\"CostToCustomer\":8545.86,\"BaseFareCal\":8495.86,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":8495.86,\"intOfferedFare\":8486.86,\"intPublishFare\":8992.1,\"TripjackMarkup\":0,\"TripjackCommission\":505.24,\"TripjackTDS\":\"26.6\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"06C\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-20T16:35\",\"SegFlightNumber\":\"AI-664\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-07-20T15:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-19 14:47:55'),(213,'1c868-e898c-84440-640b9','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-241\",\"keyIndex\":15,\"SegFlightNumberArr\":\"SG-241\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-1900357795_1BOMCCUSG241_33080260033155\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:55\",\"TravelDate\":\"2022-07-28T06:10\",\"LocalFromTime\":\"2022-07-28 06:10\",\"FromUTCTime\":\"2022-07-28T06:10\",\"LocalToTime\":\"2022-07-28 08:55\",\"ToUTCTime\":\"2022-07-28T08:55\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Thu, 28 Jul\",\"ArrivalDateTxt\":\"Thu, 28 Jul\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4908,\"PublishedFareTxt\":\"4,908\",\"ApiResultIndex\":\"11-1900357795_1BOMCCUSG241_33080260033155\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"1c868-e898c-84440-640b9\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4317.7,\"PublishedFare\":4908,\"PublishedFarePerPax\":4908,\"OfferedFare\":4317.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-1900357795_1BOMCCUSG241_33080260033155\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":4407.7,\"BaseFare\":4000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":4907.7,\"CostToCustomer\":4907.7,\"BaseFareCal\":4407.7,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":4407.7,\"intOfferedFare\":4317.7,\"intPublishFare\":4317.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-07-28T08:55\",\"SegFlightNumber\":\"SG-241\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-28T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:55\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-19 16:10:49'),(215,'60cc8-3d51e-bccf9-0e2ee','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-327\",\"keyIndex\":1,\"SegFlightNumberArr\":\"G8-327\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-1352648990_1BOMDELG8327_30318092145502\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"10:15\",\"TravelDate\":\"2022-07-23T08:05\",\"LocalFromTime\":\"2022-07-23 08:05\",\"FromUTCTime\":\"2022-07-23T08:05\",\"LocalToTime\":\"2022-07-23 10:15\",\"ToUTCTime\":\"2022-07-23T10:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":8056,\"PublishedFareTxt\":\"8,055\",\"ApiResultIndex\":\"1-1352648990_1BOMDELG8327_30318092144912\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"60cc8-3d51e-bccf9-0e2ee\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7207,\"Tax\":1146.7,\"YQTax\":0,\"OtherCharges\":1129,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8353.7,\"PublishedFare\":8109,\"PublishedFarePerPax\":8109,\"OfferedFare\":7990.83,\"CommissionEarned\":362.87,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-1352648990_1BOMDELG8327_30318092145502\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1146.7,\"BaseFareCal\":8008.83,\"BaseFare\":7207,\"CommissionEarned\":362.87,\"TDS\":-19.1,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1129,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":362.87,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":8108.83,\"CostToCustomer\":8108.83,\"BaseFareCal\":8008.83,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":8008.83,\"intOfferedFare\":7990.83,\"intPublishFare\":8353.7,\"TripjackMarkup\":0,\"TripjackCommission\":362.87,\"TripjackTDS\":\"19.1\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"0CU\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-07-23T10:15\",\"SegFlightNumber\":\"G8-327\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"10:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"$$hashKey\":\"0NV\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-19 18:07:23'),(218,'6716a-64f1d-d6a1b-27cfd','{\"FlightBookingData\":[{\"bookingId\":\"TJ109938287811\",\"FlightNumber\":\"G8-317\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:45\",\"ArrivalTime\":\"08:20\",\"TravelDate\":\"2022-08-04T06:45\",\"LocalFromTime\":\"2022-08-04 06:45\",\"FromUTCTime\":\"2022-08-04T06:45\",\"LocalToTime\":\"2022-08-04 08:20\",\"ToUTCTime\":\"2022-08-04T08:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Thu, 04 Aug\",\"ArrivalDateTxt\":\"Thu, 04 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3752.7,\"PublishedFareTxt\":\"3,753\",\"ApiResultIndex\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2603,\"Tax\":1149.7,\"YQTax\":0,\"OtherCharges\":996,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":136,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3752.7,\"PublishedFare\":3687.97,\"OfferedFare\":3569.97,\"CommissionEarned\":182.73,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2312665408_0BOMBLRG8317_227319773328113\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1149.7,\"BaseFareCal\":3587.97,\"BaseFare\":2603,\"CommissionEarned\":182.73,\"TDS\":-9.62,\"MF\":15,\"YQ\":0,\"AGST\":136,\"MFT\":2.7,\"OT\":996,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":182.73,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3687.97,\"CostToCustomer\":3687.97,\"BaseFareCal\":3587.97,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3587.97,\"intOfferedFare\":3569.97,\"intPublishFare\":3752.7,\"TripjackMarkup\":0,\"TripjackCommission\":182.73,\"TripjackTDS\":\"9.62\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"461\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-04T08:20\",\"SegFlightNumber\":\"G8-317\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-04T06:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"461\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6716a-64f1d-d6a1b-27cfd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109938287811\",\"FlightNumber\":\"G8-317\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"strTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:45\",\"ArrivalTime\":\"08:20\",\"TravelDate\":\"2022-08-04T06:45\",\"LocalFromTime\":\"2022-08-04 06:45\",\"FromUTCTime\":\"2022-08-04T06:45\",\"LocalToTime\":\"2022-08-04 08:20\",\"ToUTCTime\":\"2022-08-04T08:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Thu, 04 Aug\",\"ArrivalDateTxt\":\"Thu, 04 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3752.7,\"ApiResultIndex\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"6716a-64f1d-d6a1b-27cfd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2603,\"Tax\":1149.7,\"YQTax\":0,\"OtherCharges\":996,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":136,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3752.7,\"PublishedFare\":3687.97,\"OfferedFare\":3569.97,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1149.7,\"BaseFareCal\":3587.97,\"BaseFare\":2603,\"CommissionEarned\":182.73,\"TDS\":-9.62,\"MF\":15,\"YQ\":0,\"AGST\":136,\"MFT\":2.7,\"OT\":996,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"461\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-04T08:20\",\"SegFlightNumber\":\"G8-317\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-04T06:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2312665408_0BOMBLRG8317_47301813904163\",\"localFromDateTime\":\"2022-08-04 06:45\",\"localToDateTime\":\"2022-08-04 08:20\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"51\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"4\"],\"flight_booking_id\":[\"51\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"amith.c.shetty@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8105807501\",\"FirstName\":\"AMITH\",\"LastName\":\"SHETTY\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-19-22-38-54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"companyname\":\"\",\"gstnnumber\":\"\",\"gstaddress\":\"\",\"gstcity\":\"undefined\",\"gststate\":\"\",\"gstpincode\":\"undefined\",\"CustomerSysId\":\"4\",\"isgstapply\":\"1\",\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"4\"],\"flight_booking_customer\":[[\"90\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Bengaluru (BLR)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"departure_date\":\"04\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"BOM\",\"to\":\"BLR\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"sourceCityId\":18676,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"04\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-04\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"6716a-64f1d-d6a1b-27cfd\",\"from_city_\":\"1__BOM-BLR\"},\"sessionData\":{\"CustomerSysId\":\"4\",\"CustomerMemSysId\":[\"4\"],\"flight_booking_id\":[\"51\"]},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"412300\",\"TPSysId\":\"412301\",\"VersionId\":[\"84330\"],\"CustomerSysId\":\"208753\",\"TrxId\":\"29772\",\"FareBreakdownid\":[\"356823\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}}','2022-07-19 22:39:39'),(219,'ee20d-bbe72-f1a36-99f82','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-757\",\"keyIndex\":33,\"SegFlightNumberArr\":\"SG-757\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1546546459_0PNQPATSG757_62802699053748\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"12:00\",\"ArrivalTime\":\"14:10\",\"TravelDate\":\"2022-07-29T12:00\",\"LocalFromTime\":\"2022-07-29 12:00\",\"FromUTCTime\":\"2022-07-29T12:00\",\"LocalToTime\":\"2022-07-29 14:10\",\"ToUTCTime\":\"2022-07-29T14:10\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 29 Jul\",\"ArrivalDateTxt\":\"Fri, 29 Jul\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"22238\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":51,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6305,\"PublishedFareTxt\":\"6,305\",\"ApiResultIndex\":\"4-1546546459_0PNQPATSG757_62802699053128\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"ee20d-bbe72-f1a36-99f82\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5152,\"Tax\":1071.7,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":262,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6223.7,\"PublishedFare\":6305,\"PublishedFarePerPax\":6305,\"OfferedFare\":6186.99,\"CommissionEarned\":36.71,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.93,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1546546459_0PNQPATSG757_62802699053748\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":101,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1071.7,\"BaseFareCal\":6204.99,\"BaseFare\":5152,\"CommissionEarned\":36.71,\"TDS\":-1.93,\"MF\":15,\"YQ\":0,\"AGST\":262,\"MFT\":2.7,\"OT\":792,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":36.71,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6304.99,\"CostToCustomer\":6304.99,\"BaseFareCal\":6204.99,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6204.99,\"intOfferedFare\":6186.99,\"intPublishFare\":6223.7,\"TripjackMarkup\":0,\"TripjackCommission\":36.71,\"TripjackTDS\":\"1.93\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-07-29T14:10\",\"SegFlightNumber\":\"SG-757\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-07-29T12:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":51,\"strDepartureDtTime\":\"12:00\",\"strArrivalDtTime\":\"14:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-20 00:33:37'),(220,'cee75-dfe61-68a49-41f4d','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-2603\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-2603\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-1067749947_0BOMCJBG82603_54777373694500\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"11:50\",\"ArrivalTime\":\"13:45\",\"TravelDate\":\"2022-08-11T11:50\",\"LocalFromTime\":\"2022-08-11 11:50\",\"FromUTCTime\":\"2022-08-11T11:50\",\"LocalToTime\":\"2022-08-11 13:45\",\"ToUTCTime\":\"2022-08-11T13:45\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Thu, 11 Aug\",\"ArrivalDateTxt\":\"Thu, 11 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"6609\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CJB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":8,\"CurrencyType\":null,\"PublishedFare\":30815,\"PublishedFareTxt\":\"30,814\",\"ApiResultIndex\":\"1-1067749947_0BOMCJBG82603_54777373694500\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cee75-dfe61-68a49-41f4d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":25576,\"Tax\":5557.6,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":31133.6,\"PublishedFare\":30815,\"PublishedFarePerPax\":3852,\"OfferedFare\":30696.24,\"CommissionEarned\":437.36,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.04,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-1067749947_0BOMCJBG82603_54777373694500\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"8\",\"TaxIN\":5557.6,\"BaseFareCal\":30714.24,\"BaseFare\":25576,\"CommissionEarned\":437.36,\"TDS\":-23.04,\"MF\":120,\"YQ\":0,\"AGST\":0,\"MFT\":21.6,\"OT\":5416,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":437.36,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":30814.24,\"CostToCustomer\":30814.24,\"BaseFareCal\":30714.24,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":30714.24,\"intOfferedFare\":30696.24,\"intPublishFare\":31133.6,\"TripjackMarkup\":0,\"TripjackCommission\":437.36,\"TripjackTDS\":\"23.04\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"01Q\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Peelamedu Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Coimbatore\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CJB\",\"destinationArrTime\":\"2022-08-11T13:45\",\"SegFlightNumber\":\"G8-2603\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-11T11:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"11:50\",\"strArrivalDtTime\":\"13:45\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"$$hashKey\":\"0V3\"}],\"FilterPrice\":\"35001-40000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]},{\"keyIndex\":45,\"FlightNumber\":\"6E-5292\",\"SegFlightNumberArr\":\"6E-5292\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1067749947_0CJBBOM6E5292_54780630507586\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"08:25\",\"TravelDate\":\"2022-08-15T06:40\",\"LocalFromTime\":\"2022-08-15 06:40\",\"FromUTCTime\":\"2022-08-15T06:40\",\"LocalToTime\":\"2022-08-15 08:25\",\"ToUTCTime\":\"2022-08-15T08:25\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"6609\",\"SourceAirportCode\":\"CJB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":8,\"CurrencyType\":null,\"PublishedFare\":41776.88,\"PublishedFareTxt\":\"41,777\",\"ApiResultIndex\":\"5-1067749947_0CJBBOM6E5292_54780630507586\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"cee75-dfe61-68a49-41f4d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":34000,\"Tax\":7877.6,\"YQTax\":0,\"OtherCharges\":7736,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":41877.6,\"PublishedFare\":41777,\"PublishedFarePerPax\":5223,\"OfferedFare\":41635.28,\"CommissionEarned\":242.32,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-12.72,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1067749947_0CJBBOM6E5292_54780630508426\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Round Trip Special\",\"fareremarks\":\"Round Trip Special Discount\",\"FareClass\":\"Economy\",\"intTotalGST\":21.6,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":120,\"GSTOnMarkUp\":21.6,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"120.00\",\"AddiTaxOnMarkup\":21.6,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"8\",\"TaxIN\":7877.6,\"BaseFareCal\":41656.88,\"BaseFare\":34000,\"CommissionEarned\":242.32,\"TDS\":-12.72,\"MF\":120,\"YQ\":0,\"AGST\":0,\"MFT\":21.6,\"OT\":7736,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":21.6,\"AddiMarkup\":120,\"intTotalGST\":21.6,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":120,\"GSTOnMarkUp\":21.6,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":242.32,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":120,\"IntTaxOnAgencyFixMarkUp\":21.6,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":21.6,\"PublishFare\":41776.88,\"CostToCustomer\":41776.88,\"BaseFareCal\":41656.88,\"intCommisionEarnedForAgency\":120,\"CostToCompany\":41656.88,\"intOfferedFare\":41635.28,\"intPublishFare\":41877.6,\"TripjackMarkup\":0,\"TripjackCommission\":242.32,\"TripjackTDS\":\"12.72\",\"AddiMarkup\":\"120.00\",\"AddiTaxOnMarkup\":21.6,\"IntAdddimarkup\":120},\"$$hashKey\":\"0G1\"},\"Segments\":[{\"originAirportName\":\"Peelamedu Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Coimbatore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-15T08:25\",\"SegFlightNumber\":\"6E-5292\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":null,\"originAirportCode\":\"CJB\",\"originDepTime\":\"2022-08-15T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":45,\"FlightNumber\":\"6E-5292\",\"SegFlightNumberArr\":\"6E-5292\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1067749947_0CJBBOM6E5292_54780630507586\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"08:25\",\"TravelDate\":\"2022-08-15T06:40\",\"LocalFromTime\":\"2022-08-15 06:40\",\"FromUTCTime\":\"2022-08-15T06:40\",\"LocalToTime\":\"2022-08-15 08:25\",\"ToUTCTime\":\"2022-08-15T08:25\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"6609\",\"SourceAirportCode\":\"CJB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":8,\"CurrencyType\":null,\"PublishedFare\":41776.88,\"PublishedFareTxt\":\"41,777\",\"ApiResultIndex\":\"5-1067749947_0CJBBOM6E5292_54780630507586\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"cee75-dfe61-68a49-41f4d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":34000,\"Tax\":7877.6,\"YQTax\":0,\"OtherCharges\":7736,\"Discount\":0,\"ServiceFee\":120,\"ManagementFeeTax\":21.6,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":41877.6,\"PublishedFare\":41777,\"PublishedFarePerPax\":5223,\"OfferedFare\":41635.28,\"CommissionEarned\":242.32,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-12.72,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1067749947_0CJBBOM6E5292_54780630508426\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Round Trip Special\",\"fareremarks\":\"Round Trip Special Discount\",\"FareClass\":\"Economy\",\"intTotalGST\":21.6,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":120,\"GSTOnMarkUp\":21.6,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"120.00\",\"AddiTaxOnMarkup\":21.6,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"8\",\"TaxIN\":7877.6,\"BaseFareCal\":41656.88,\"BaseFare\":34000,\"CommissionEarned\":242.32,\"TDS\":-12.72,\"MF\":120,\"YQ\":0,\"AGST\":0,\"MFT\":21.6,\"OT\":7736,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":21.6,\"AddiMarkup\":120,\"intTotalGST\":21.6,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":120,\"GSTOnMarkUp\":21.6,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":242.32,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":120,\"IntTaxOnAgencyFixMarkUp\":21.6,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":21.6,\"PublishFare\":41776.88,\"CostToCustomer\":41776.88,\"BaseFareCal\":41656.88,\"intCommisionEarnedForAgency\":120,\"CostToCompany\":41656.88,\"intOfferedFare\":41635.28,\"intPublishFare\":41877.6,\"TripjackMarkup\":0,\"TripjackCommission\":242.32,\"TripjackTDS\":\"12.72\",\"AddiMarkup\":\"120.00\",\"AddiTaxOnMarkup\":21.6,\"IntAdddimarkup\":120},\"$$hashKey\":\"0G1\"},\"Segments\":[{\"originAirportName\":\"Peelamedu Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Coimbatore\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-15T08:25\",\"SegFlightNumber\":\"6E-5292\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":null,\"originAirportCode\":\"CJB\",\"originDepTime\":\"2022-08-15T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\"}}','2022-07-20 00:44:57'),(221,'302ef-554c2-62c15-c459b','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-653\",\"keyIndex\":9,\"SegFlightNumberArr\":\"UK-653\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1305412999_0BOMIXCUK653_89295654761281\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:15\",\"TravelDate\":\"2022-09-02T06:00\",\"LocalFromTime\":\"2022-09-02 06:00\",\"FromUTCTime\":\"2022-09-02T06:00\",\"LocalToTime\":\"2022-09-02 08:15\",\"ToUTCTime\":\"2022-09-02T08:15\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Fri, 02 Sep\",\"ArrivalDateTxt\":\"Fri, 02 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"5765\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXC\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4464,\"PublishedFareTxt\":\"4,464\",\"ApiResultIndex\":\"21-10-15-2-1305412999_0BOMIXCUK653_89295654759721\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"302ef-554c2-62c15-c459b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4072,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4807.7,\"PublishedFare\":4464,\"PublishedFarePerPax\":4464,\"OfferedFare\":4404.83,\"CommissionEarned\":402.87,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-21.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-1305412999_0BOMIXCUK653_89295654761281\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4413.83,\"BaseFare\":4072,\"CommissionEarned\":402.87,\"TDS\":-21.2,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":402.87,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4463.83,\"CostToCustomer\":4463.83,\"BaseFareCal\":4413.83,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4413.83,\"intOfferedFare\":4404.83,\"intPublishFare\":4807.7,\"TripjackMarkup\":0,\"TripjackCommission\":402.87,\"TripjackTDS\":\"21.2\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"01K\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Chandigarh Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chandigarh\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXC\",\"destinationArrTime\":\"2022-09-02T08:15\",\"SegFlightNumber\":\"UK-653\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-02T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]},{\"keyIndex\":8,\"FlightNumber\":\"UK-652\",\"SegFlightNumberArr\":\"UK-652\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1305412999_1IXCBOMUK652_89295654362692\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"22:20\",\"TravelDate\":\"2022-09-08T19:55\",\"LocalFromTime\":\"2022-09-08 19:55\",\"FromUTCTime\":\"2022-09-08T19:55\",\"LocalToTime\":\"2022-09-08 22:20\",\"ToUTCTime\":\"2022-09-08T22:20\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"5765\",\"SourceAirportCode\":\"IXC\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4472.23,\"PublishedFareTxt\":\"4,472\",\"ApiResultIndex\":\"21-10-15-2-1305412999_1IXCBOMUK652_89295654362692\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"302ef-554c2-62c15-c459b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3389,\"Tax\":1415.7,\"YQTax\":0,\"OtherCharges\":1092,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4804.7,\"PublishedFare\":4473,\"PublishedFarePerPax\":4473,\"OfferedFare\":4413.23,\"CommissionEarned\":391.47,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-20.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-1305412999_1IXCBOMUK652_89295654363692\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1415.7,\"BaseFareCal\":4422.23,\"BaseFare\":3389,\"CommissionEarned\":391.47,\"TDS\":-20.6,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":1092,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":391.47,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4472.23,\"CostToCustomer\":4472.23,\"BaseFareCal\":4422.23,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4422.23,\"intOfferedFare\":4413.23,\"intPublishFare\":4804.7,\"TripjackMarkup\":0,\"TripjackCommission\":391.47,\"TripjackTDS\":\"20.6\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0J2\"},\"Segments\":[{\"originAirportName\":\"Chandigarh Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Chandigarh\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-08T22:20\",\"SegFlightNumber\":\"UK-652\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":null,\"originAirportCode\":\"IXC\",\"originDepTime\":\"2022-09-08T19:55\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"22:20\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\"}],\"FlightBookingDataInbound\":{\"keyIndex\":8,\"FlightNumber\":\"UK-652\",\"SegFlightNumberArr\":\"UK-652\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1305412999_1IXCBOMUK652_89295654362692\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"22:20\",\"TravelDate\":\"2022-09-08T19:55\",\"LocalFromTime\":\"2022-09-08 19:55\",\"FromUTCTime\":\"2022-09-08T19:55\",\"LocalToTime\":\"2022-09-08 22:20\",\"ToUTCTime\":\"2022-09-08T22:20\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"5765\",\"SourceAirportCode\":\"IXC\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4472.23,\"PublishedFareTxt\":\"4,472\",\"ApiResultIndex\":\"21-10-15-2-1305412999_1IXCBOMUK652_89295654362692\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"302ef-554c2-62c15-c459b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3389,\"Tax\":1415.7,\"YQTax\":0,\"OtherCharges\":1092,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":176,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4804.7,\"PublishedFare\":4473,\"PublishedFarePerPax\":4473,\"OfferedFare\":4413.23,\"CommissionEarned\":391.47,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-20.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-1305412999_1IXCBOMUK652_89295654363692\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1415.7,\"BaseFareCal\":4422.23,\"BaseFare\":3389,\"CommissionEarned\":391.47,\"TDS\":-20.6,\"MF\":15,\"YQ\":0,\"AGST\":176,\"MFT\":2.7,\"OT\":1092,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":391.47,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4472.23,\"CostToCustomer\":4472.23,\"BaseFareCal\":4422.23,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4422.23,\"intOfferedFare\":4413.23,\"intPublishFare\":4804.7,\"TripjackMarkup\":0,\"TripjackCommission\":391.47,\"TripjackTDS\":\"20.6\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0J2\"},\"Segments\":[{\"originAirportName\":\"Chandigarh Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Chandigarh\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-08T22:20\",\"SegFlightNumber\":\"UK-652\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":null,\"originAirportCode\":\"IXC\",\"originDepTime\":\"2022-09-08T19:55\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"22:20\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\"}}','2022-07-20 10:19:39'),(225,'5e392-46cec-16db0-d700b','{\"BookingData\":[{\"bookingId\":\"TJ105938318294\",\"FlightNumber\":\"G8-395\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:55\",\"ArrivalTime\":\"10:35\",\"TravelDate\":\"2022-08-10T08:55\",\"LocalFromTime\":\"2022-08-10 08:55\",\"FromUTCTime\":\"2022-08-10T08:55\",\"LocalToTime\":\"2022-08-10 10:35\",\"ToUTCTime\":\"2022-08-10T10:35\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":15233.099999999999,\"PublishedFareTxt\":\"15,233\",\"ApiResultIndex\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BLR-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8190,\"Tax\":7043.099999999999,\"YQTax\":0,\"OtherCharges\":6990,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":15233.099999999999,\"PublishedFare\":13946.51,\"OfferedFare\":13887.51,\"CommissionEarned\":1345.59,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-70.83,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2869890705_0BLRBOMG8395_2937901299441\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":13736.1,\"oldFare\":10070.1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":7043.099999999999,\"BaseFareCal\":13896.51,\"BaseFare\":8190,\"CommissionEarned\":1345.59,\"TDS\":-70.83,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":6990,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1345.59,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":13946.51,\"CostToCustomer\":13946.51,\"BaseFareCal\":13896.51,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":13896.51,\"intOfferedFare\":13887.51,\"intPublishFare\":15233.099999999999,\"TripjackMarkup\":0,\"TripjackCommission\":1345.59,\"TripjackTDS\":\"70.83\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"342\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-10T10:35\",\"SegFlightNumber\":\"G8-395\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-08-10T08:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:55\",\"strArrivalDtTime\":\"10:35\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"342\",\"Code\":\"CRPX\",\"Price\":0,\"Description\":\"Free Corporate Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5e392-46cec-16db0-d700b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-10 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":2262,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105938318294\",\"FlightNumber\":\"G8-395\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"strTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:55\",\"ArrivalTime\":\"10:35\",\"TravelDate\":\"2022-08-10T08:55\",\"LocalFromTime\":\"2022-08-10 08:55\",\"FromUTCTime\":\"2022-08-10T08:55\",\"LocalToTime\":\"2022-08-10 10:35\",\"ToUTCTime\":\"2022-08-10T10:35\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":2262,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":15233.099999999999,\"ApiResultIndex\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"5e392-46cec-16db0-d700b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8190,\"Tax\":7043.099999999999,\"YQTax\":0,\"OtherCharges\":6990,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":15233.099999999999,\"PublishedFare\":13946.51,\"OfferedFare\":13887.51,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":7043.099999999999,\"BaseFareCal\":13896.51,\"BaseFare\":8190,\"CommissionEarned\":1345.59,\"TDS\":-70.83,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":6990,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"342\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-10T10:35\",\"SegFlightNumber\":\"G8-395\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-08-10T08:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:55\",\"strArrivalDtTime\":\"10:35\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2869890705_0BLRBOMG8395_17433504907638\",\"localFromDateTime\":\"2022-08-10 08:55\",\"localToDateTime\":\"2022-08-10 10:35\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":2262,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Bengaluru (BLR)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"BLR\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"10\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"3\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BLR\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"BLR\",\"to\":\"BOM\",\"sourceCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":2262,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"10\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-10\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"5e392-46cec-16db0-d700b\",\"from_city_\":\"1__BLR-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Bengaluru+%28BLR%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=BLR&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=10%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=3&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"bharatbhanushali21@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8422931095\",\"FirstName\":\"bharat\",\"LastName\":\"bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-20-13-04-04\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"24\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"24\",\"EmailId\":\"bharatbhanushali21@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"8422931095\",\"FirstName\":\"ekta\",\"LastName\":\"bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-20-13-04-04\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"37\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"24\",\"EmailId\":\"bharatbhanushali21@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8422931095\",\"FirstName\":\"bhavya\",\"LastName\":\"bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-20-13-04-04\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"38\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"412537\",\"TPSysId\":\"412538\",\"VersionId\":[\"84484\"],\"CustomerSysId\":\"214171\",\"TrxId\":\"29799\",\"FareBreakdownid\":[\"356855\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"91\",\"92\",\"93\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"24\",\"CustomerMemSysId\":[\"24\",\"37\",\"38\"],\"flight_booking_id\":[\"52\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"52\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":13946.51},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"214171\",\"TPSysId\":\"412538\",\"MasterTPSysId\":\"412537\",\"ProposalID\":\"412538\\/V1\",\"InvoiceDate\":\"2022-07-20\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-20\",\"PaymentDate\":\"2022-07-20\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":13928.51,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":13946.51,\"TotalDueAmount\":0,\"InvoiceValue\":13946.51,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-BOM-Go First G8-395\",\"ItemQty\":1,\"ItemRates\":13828.51,\"Total\":13828.51,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":13946.51,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":13928.51,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-20 13:05:00'),(228,'25ca0-44bad-fc267-ff71d','{\"FlightBookingData\":[{\"bookingId\":\"TJ105538321186\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5518.7,\"PublishedFareTxt\":\"5,519\",\"ApiResultIndex\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARFT\":150,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4031,\"Tax\":1487.7,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":208,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5518.7,\"PublishedFare\":5211.04,\"OfferedFare\":5093.04,\"CommissionEarned\":425.66,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-22.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-5189263874_0BOMLKOG8306_106214019671093\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1487.7,\"BaseFareCal\":5111.04,\"BaseFare\":4031,\"CommissionEarned\":425.66,\"TDS\":-22.4,\"MF\":15,\"YQ\":0,\"AGST\":208,\"MFT\":2.7,\"OT\":1262,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":425.66,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5211.04,\"CostToCustomer\":5211.04,\"BaseFareCal\":5111.04,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5111.04,\"intOfferedFare\":5093.04,\"intPublishFare\":5518.7,\"TripjackMarkup\":0,\"TripjackCommission\":425.66,\"TripjackTDS\":\"22.4\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"243\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"243\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"25ca0-44bad-fc267-ff71d\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105538321186\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"strTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5518.7,\"ApiResultIndex\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"25ca0-44bad-fc267-ff71d\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4031,\"Tax\":1487.7,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":208,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5518.7,\"PublishedFare\":5211.04,\"OfferedFare\":5093.04,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1487.7,\"BaseFareCal\":5111.04,\"BaseFare\":4031,\"CommissionEarned\":425.66,\"TDS\":-22.4,\"MF\":15,\"YQ\":0,\"AGST\":208,\"MFT\":2.7,\"OT\":1262,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"243\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-5189263874_0BOMLKOG8306_21605172032692\",\"localFromDateTime\":\"2022-07-23 10:40\",\"localToDateTime\":\"2022-07-23 13:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"53\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"25\",\"CustomerMemSysId\":[\"25\"],\"flight_booking_id\":[\"53\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"bharat@svezz.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9702278610\",\"FirstName\":\"RAJKUMAR\",\"LastName\":\"VARMA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-20-13-30-47\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"25\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"25\",\"CustomerMemSysId\":[\"25\"],\"flight_booking_customer\":[[\"94\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Lucknow (LKO)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Lucknow, IN - Amausi Arpt (LKO), India\",\"departure_date\":\"23\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Amausi Arpt (LKO)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"BOM\",\"to\":\"LKO\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Lucknow, IN - Amausi Arpt (LKO), India\",\"sourceCityId\":18676,\"destinationCityId\":16028,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"23\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-23\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"25ca0-44bad-fc267-ff71d\",\"from_city_\":\"1__BOM-LKO\"},\"sessionData\":{\"CustomerSysId\":\"25\",\"CustomerMemSysId\":[\"25\"],\"flight_booking_id\":[\"53\"]},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"412568\",\"TPSysId\":\"412569\",\"VersionId\":[\"84490\"],\"CustomerSysId\":\"217861\",\"TrxId\":\"29801\",\"FareBreakdownid\":[\"356858\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"}}','2022-07-20 13:30:54'),(233,'38063-a3741-a653e-e5a4f','{\"BookingData\":[{\"bookingId\":\"TJ102938323541\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4817.7,\"PublishedFareTxt\":\"4,818\",\"ApiResultIndex\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"No Refund| Seats are Subject to availability | In case of non availability of the seats, we will refund the amount | \\\"Sunday is Non Working day for Special Fare Team\\\"| Booking done after 18:00 Hrs or 6 PM, PNR will be updated next working day after 11:00 Hrs or 11 AM\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Changes are not permitted | Booking confirmation will take minimum 60 Minutes\",\"fcs\":{\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Cancellation is not permitted | For more details contact us\",\"fcs\":{\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Note : Now you can do the web checkin directly on the airline website by yourself.  Enter PNR and LAST NAME. Select your passengers and process the web checkin( 1 Day before departure after 6PM ). Seats are chargeable as per airline |Name Change is not permitted |\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4500,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4817.7,\"PublishedFare\":5407.7,\"OfferedFare\":4817.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9697146831_0BOMLKOG8306_102711090551092\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITHOUT PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":4907.7,\"BaseFare\":4500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":5407.7,\"CostToCustomer\":5407.7,\"BaseFareCal\":4907.7,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":4907.7,\"intOfferedFare\":4817.7,\"intPublishFare\":4817.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500}},\"Segments\":[{\"segmentid\":\"662\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"38063-a3741-a653e-e5a4f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102938323541\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"strTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4817.7,\"ApiResultIndex\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"38063-a3741-a653e-e5a4f\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4500,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4817.7,\"PublishedFare\":5407.7,\"OfferedFare\":4817.7,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":500,\"AddiTaxOnMarkup\":90,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":4907.7,\"BaseFare\":4500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"662\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-9697146831_1BOMLKOG8306_22751265712406\",\"localFromDateTime\":\"2022-07-23 10:40\",\"localToDateTime\":\"2022-07-23 13:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Lucknow (LKO)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Lucknow, IN - Amausi Arpt (LKO), India\",\"departure_date\":\"23\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Amausi Arpt (LKO)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"BOM\",\"to\":\"LKO\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Lucknow, IN - Amausi Arpt (LKO), India\",\"sourceCityId\":18676,\"destinationCityId\":16028,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"23\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-23\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"38063-a3741-a653e-e5a4f\",\"from_city_\":\"1__BOM-LKO\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Lucknow+%28LKO%29&source_city=BOM&ContSysId_1=101&destination_city=LKO&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Lucknow%2C+IN+-+Amausi+Arpt+%28LKO%29%2C+India&departure_date=23%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Amausi+Arpt+%28LKO%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"bharat@svezz.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9930301095\",\"FirstName\":\"RAJKUMAR\",\"LastName\":\"VARMA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-20-13-56-17\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"26\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"412589\",\"TPSysId\":\"412590\",\"VersionId\":[\"84499\"],\"CustomerSysId\":\"217861\",\"TrxId\":\"29804\",\"FareBreakdownid\":[\"356861\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"95\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"26\",\"CustomerMemSysId\":[\"26\"],\"flight_booking_id\":[\"54\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"54\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5407.7},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":null,\"TPSysId\":null,\"MasterTPSysId\":null,\"ProposalID\":\"\\/V1\",\"InvoiceDate\":\"2022-07-20\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-20\",\"PaymentDate\":\"2022-07-20\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5227.7,\"InvoiceStatus\":true,\"TotalCGST\":90,\"TotalSGST\":90,\"TotalIGST\":180,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5407.7,\"TotalDueAmount\":0,\"InvoiceValue\":5407.7,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-LKO-Go First G8-306\",\"ItemQty\":1,\"ItemRates\":4227.7,\"Total\":4227.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5407.7,\"MarkupType\":\"\",\"Markup\":1000,\"TotalMarkup\":1000,\"SubTotal\":5227.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":180,\"SGST\":90,\"CGST\":90,\"IGST\":180,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-20 13:58:50'),(237,'f0372-a1b0e-2a7df-12fb0','{\"BookingData\":[{\"bookingId\":\"TJ109638329632\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4767.7,\"PublishedFareTxt\":\"4,768\",\"ApiResultIndex\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCFT\":9,\"ACFT\":175,\"CCF\":50,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4031,\"Tax\":736.7,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":208,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4767.7,\"PublishedFare\":4816.77,\"OfferedFare\":4698.77,\"CommissionEarned\":68.93,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.63,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2645047823_0BOMLKOG8306_111783222777219\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":736.7,\"BaseFareCal\":4716.77,\"BaseFare\":4031,\"CommissionEarned\":68.93,\"TDS\":-3.63,\"MF\":15,\"YQ\":0,\"AGST\":208,\"MFT\":2.7,\"OT\":511,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":68.93,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4816.77,\"CostToCustomer\":4816.77,\"BaseFareCal\":4716.77,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4716.77,\"intOfferedFare\":4698.77,\"intPublishFare\":4767.7,\"TripjackMarkup\":0,\"TripjackCommission\":68.93,\"TripjackTDS\":\"3.63\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"908\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"908\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f0372-a1b0e-2a7df-12fb0\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-07-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109638329632\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"strTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"13:05\",\"TravelDate\":\"2022-07-23T10:40\",\"LocalFromTime\":\"2022-07-23 10:40\",\"FromUTCTime\":\"2022-07-23T10:40\",\"LocalToTime\":\"2022-07-23 13:05\",\"ToUTCTime\":\"2022-07-23T13:05\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 23 Jul\",\"ArrivalDateTxt\":\"Sat, 23 Jul\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4767.7,\"ApiResultIndex\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"f0372-a1b0e-2a7df-12fb0\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4031,\"Tax\":736.7,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":208,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4767.7,\"PublishedFare\":4816.77,\"OfferedFare\":4698.77,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":736.7,\"BaseFareCal\":4716.77,\"BaseFare\":4031,\"CommissionEarned\":68.93,\"TDS\":-3.63,\"MF\":15,\"YQ\":0,\"AGST\":208,\"MFT\":2.7,\"OT\":511,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"908\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-07-23T13:05\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-23T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2645047823_0BOMLKOG8306_26812715921459\",\"localFromDateTime\":\"2022-07-23 10:40\",\"localToDateTime\":\"2022-07-23 13:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Lucknow (LKO)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Lucknow, IN - Amausi Arpt (LKO), India\",\"departure_date\":\"23\\/07\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Amausi Arpt (LKO)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"BOM\",\"to\":\"LKO\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Lucknow, IN - Amausi Arpt (LKO), India\",\"sourceCityId\":18676,\"destinationCityId\":16028,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"23\\/07\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-07-23\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"f0372-a1b0e-2a7df-12fb0\",\"from_city_\":\"1__BOM-LKO\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Lucknow+%28LKO%29&adults=1&childs=0&infants=0&class=2&source_city=BOM&ContSysId_1=101&destination_city=LKO&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Lucknow%2C+IN+-+Amausi+Arpt+%28LKO%29%2C+India&departure_date=23%2F07%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Amausi+Arpt+%28LKO%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"bharat@svezz.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9930301095\",\"FirstName\":\"RAJKUMAR\",\"LastName\":\"VARMA\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-20-15-03-47\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"39\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"412631\",\"TPSysId\":\"412632\",\"VersionId\":[\"84515\"],\"CustomerSysId\":\"217861\",\"TrxId\":\"29807\",\"FareBreakdownid\":[\"356862\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"96\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"39\",\"CustomerMemSysId\":[\"39\"],\"flight_booking_id\":[\"55\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"55\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4816.77},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"217861\",\"TPSysId\":\"412632\",\"MasterTPSysId\":\"412631\",\"ProposalID\":\"412632\\/V1\",\"InvoiceDate\":\"2022-07-20\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-20\",\"PaymentDate\":\"2022-07-20\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4780.77,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4816.77,\"TotalDueAmount\":0,\"InvoiceValue\":4816.77,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-LKO-Go First G8-306\",\"ItemQty\":1,\"ItemRates\":4580.77,\"Total\":4580.77,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4816.77,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":4780.77,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-20 15:04:31'),(241,'39440-70ac5-1a0a3-97625','{\"BookingData\":[{\"bookingId\":\"TJ106638333070\",\"FlightNumber\":\"G8-334\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2022-08-08T08:00\",\"LocalFromTime\":\"2022-08-08 08:00\",\"FromUTCTime\":\"2022-08-08T08:00\",\"LocalToTime\":\"2022-08-08 10:10\",\"ToUTCTime\":\"2022-08-08T10:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4067.7,\"PublishedFareTxt\":\"4,068\",\"ApiResultIndex\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3362,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4067.7,\"PublishedFare\":4128.21,\"OfferedFare\":4010.21,\"CommissionEarned\":57.49,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.03,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-5236216186_0DELBOMG8334_27426468367249\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"BaseFareCal\":4028.21,\"BaseFare\":3362,\"CommissionEarned\":57.49,\"TDS\":-3.03,\"MF\":15,\"YQ\":0,\"AGST\":174,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":57.49,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4128.21,\"CostToCustomer\":4128.21,\"BaseFareCal\":4028.21,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4028.21,\"intOfferedFare\":4010.21,\"intPublishFare\":4067.7,\"TripjackMarkup\":0,\"TripjackCommission\":57.49,\"TripjackTDS\":\"3.03\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"398\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T10:10\",\"SegFlightNumber\":\"G8-334\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"398\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"39440-70ac5-1a0a3-97625\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106638333070\",\"FlightNumber\":\"G8-334\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"strTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2022-08-08T08:00\",\"LocalFromTime\":\"2022-08-08 08:00\",\"FromUTCTime\":\"2022-08-08T08:00\",\"LocalToTime\":\"2022-08-08 10:10\",\"ToUTCTime\":\"2022-08-08T10:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4067.7,\"ApiResultIndex\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"39440-70ac5-1a0a3-97625\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3362,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":174,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4067.7,\"PublishedFare\":4128.21,\"OfferedFare\":4010.21,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"BaseFareCal\":4028.21,\"BaseFare\":3362,\"CommissionEarned\":57.49,\"TDS\":-3.03,\"MF\":15,\"YQ\":0,\"AGST\":174,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"398\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-08T10:10\",\"SegFlightNumber\":\"G8-334\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-08T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-5236216186_0DELBOMG8334_24122305667030\",\"localFromDateTime\":\"2022-08-08 08:00\",\"localToDateTime\":\"2022-08-08 10:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"39440-70ac5-1a0a3-97625\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=08%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nehakumari@catpl.co.in\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"8923963627\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-07-20-15-44-24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"13\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"412696\",\"TPSysId\":\"412697\",\"VersionId\":[\"84543\"],\"CustomerSysId\":\"216129\",\"TrxId\":\"29814\",\"FareBreakdownid\":[\"356867\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"97\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"13\",\"CustomerMemSysId\":[\"13\"],\"flight_booking_id\":[\"56\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"56\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4128.21},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"216129\",\"TPSysId\":\"412697\",\"MasterTPSysId\":\"412696\",\"ProposalID\":\"412697\\/V1\",\"InvoiceDate\":\"2022-07-20\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-07-20\",\"PaymentDate\":\"2022-07-20\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4092.21,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4128.21,\"TotalDueAmount\":0,\"InvoiceValue\":4128.21,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Go First G8-334\",\"ItemQty\":1,\"ItemRates\":3892.21,\"Total\":3892.21,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4128.21,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":4092.21,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-07-20 15:45:08'),(242,'40127-03d4e-92ea5-3cc91','{\"FlightBookingData\":[{\"FlightNumber\":\"S5-112\",\"keyIndex\":137,\"SegFlightNumberArr\":\"S5-112, S5-107\",\"AirlineName\":\"Starair\",\"AirlineCode\":\"S5\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"29-2417118364_0BOMIXGS5112IXGAMDS5107_35867160603771\",\"AirlineSysId\":\"453\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2022-08-10T12:50\",\"LocalFromTime\":\"2022-08-10 12:50\",\"FromUTCTime\":\"2022-08-10T12:50\",\"LocalToTime\":\"2022-08-10 15:30\",\"ToUTCTime\":\"2022-08-10T15:30\",\"IsDirect\":0,\"FareClass\":\"C\",\"LAYOVERCity\":\"Belgaum\",\"GroundTime\":30,\"LAYOVERDuration\":\"0h 30m\",\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"296\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":8875,\"PublishedFareTxt\":\"8,875\",\"ApiResultIndex\":\"29-2417118364_0BOMIXGS5112IXGAMDS5107_35867160602931\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"40127-03d4e-92ea5-3cc91\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8393,\"Tax\":422.7,\"YQTax\":0,\"OtherCharges\":0,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":405,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8815.7,\"PublishedFare\":8875,\"PublishedFarePerPax\":8875,\"OfferedFare\":8815.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"29-2417118364_0BOMIXGS5112IXGAMDS5107_35867160603771\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":422.7,\"BaseFareCal\":8824.7,\"BaseFare\":8393,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":405,\"MFT\":2.7,\"OT\":0,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":8874.7,\"CostToCustomer\":8874.7,\"BaseFareCal\":8824.7,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":8824.7,\"intOfferedFare\":8815.7,\"intPublishFare\":8815.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0CH\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Belagavi airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Belgaum\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXG\",\"destinationArrTime\":\"2022-08-10T13:45\",\"SegFlightNumber\":\"S5-112\",\"AirlineCode\":\"S5\",\"AirlineName\":\"StarAir\",\"FareClass\":\"C\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-10T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":55,\"GroundTime\":30,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"13:45\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"0h 30m\",\"LAYOVERCity\":\"Belgaum\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"originAirportName\":\"Belagavi airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Belgaum\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-08-10T15:30\",\"SegFlightNumber\":\"S5-107\",\"AirlineCode\":\"S5\",\"AirlineName\":\"StarAir\",\"FareClass\":\"C\",\"originAirportCode\":\"IXG\",\"originDepTime\":\"2022-08-10T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-22 15:22:33'),(243,'85d81-835c6-0c048-529bb','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-923\",\"keyIndex\":5,\"SegFlightNumberArr\":\"SG-923\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9112950898_0BOMPATSG923_9289054659769\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-08-10T14:25\",\"LocalFromTime\":\"2022-08-10 14:25\",\"FromUTCTime\":\"2022-08-10T14:25\",\"LocalToTime\":\"2022-08-10 16:50\",\"ToUTCTime\":\"2022-08-10T16:50\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5558,\"PublishedFareTxt\":\"5,558\",\"ApiResultIndex\":\"11-9112950898_0BOMPATSG923_9289054659769\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"85d81-835c6-0c048-529bb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4650,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4967.7,\"PublishedFare\":5558,\"PublishedFarePerPax\":5558,\"OfferedFare\":4967.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9112950898_0BOMPATSG923_9289054659769\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":8,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":5057.7,\"BaseFare\":4650,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":5557.7,\"CostToCustomer\":5557.7,\"BaseFareCal\":5057.7,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":5057.7,\"intOfferedFare\":4967.7,\"intPublishFare\":4967.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02B\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-08-10T16:50\",\"SegFlightNumber\":\"SG-923\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-10T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-23 11:18:22'),(244,'6bd0d-14242-a0629-8ed5d','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-651\",\"keyIndex\":95,\"SegFlightNumberArr\":\"AI-651, AI-651\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-6337120702_95RPRVTZAI651VTZBOMAI651_8686785318004\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:25\",\"ArrivalTime\":\"16:25\",\"TravelDate\":\"2022-07-27T12:25\",\"LocalFromTime\":\"2022-07-27 12:25\",\"FromUTCTime\":\"2022-07-27T12:25\",\"LocalToTime\":\"2022-07-27 16:25\",\"ToUTCTime\":\"2022-07-27T16:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Vishakhapatanam\",\"GroundTime\":40,\"LAYOVERDuration\":\"0h 40m\",\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"4h 0m\",\"SourcePlaceSysId\":\"22508\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"RPR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4832,\"PublishedFareTxt\":\"4,832\",\"ApiResultIndex\":\"21-10-15-2-6337120702_95RPRVTZAI651VTZBOMAI651_8686785318004\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"6bd0d-14242-a0629-8ed5d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4030,\"Tax\":1223.7,\"YQTax\":0,\"OtherCharges\":826,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5253.7,\"PublishedFare\":4832,\"PublishedFarePerPax\":4832,\"OfferedFare\":4772.54,\"CommissionEarned\":481.16,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-25.32,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-6337120702_95RPRVTZAI651VTZBOMAI651_8686785318004\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1223.7,\"BaseFareCal\":4781.54,\"BaseFare\":4030,\"CommissionEarned\":481.16,\"TDS\":-25.32,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":826,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":481.16,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4831.54,\"CostToCustomer\":4831.54,\"BaseFareCal\":4781.54,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4781.54,\"intOfferedFare\":4772.54,\"intPublishFare\":5253.7,\"TripjackMarkup\":0,\"TripjackCommission\":481.16,\"TripjackTDS\":\"25.32\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"02I\"},\"Segments\":[{\"originAirportName\":\"Raipur Arpt\",\"destinationAirportName\":\"Vishakhapatnam\",\"originCityName\":\"Raipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Vishakhapatanam\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VTZ\",\"destinationArrTime\":\"2022-07-27T13:30\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"RPR\",\"originDepTime\":\"2022-07-27T12:25\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":40,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:25\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Vishakhapatanam\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"originAirportName\":\"Vishakhapatnam\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Vishakhapatanam\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-27T16:25\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"VTZ\",\"originDepTime\":\"2022-07-27T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"16:25\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-26 14:19:09'),(245,'1cc15-1cee4-faeb6-7fdac','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-651\",\"keyIndex\":54,\"SegFlightNumberArr\":\"AI-651, AI-651\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5836185250_54RPRVTZAI651VTZBOMAI651_19708549484954\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:25\",\"ArrivalTime\":\"16:25\",\"TravelDate\":\"2022-07-27T12:25\",\"LocalFromTime\":\"2022-07-27 12:25\",\"FromUTCTime\":\"2022-07-27T12:25\",\"LocalToTime\":\"2022-07-27 16:25\",\"ToUTCTime\":\"2022-07-27T16:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Vishakhapatanam\",\"GroundTime\":40,\"LAYOVERDuration\":\"0h 40m\",\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"4h 0m\",\"SourcePlaceSysId\":\"22508\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"RPR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4832,\"PublishedFareTxt\":\"4,832\",\"ApiResultIndex\":\"21-10-15-2-5836185250_54RPRVTZAI651VTZBOMAI651_19708549484954\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"1cc15-1cee4-faeb6-7fdac\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4030,\"Tax\":1223.7,\"YQTax\":0,\"OtherCharges\":826,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5253.7,\"PublishedFare\":4832,\"PublishedFarePerPax\":4832,\"OfferedFare\":4772.54,\"CommissionEarned\":481.16,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-25.32,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-5836185250_54RPRVTZAI651VTZBOMAI651_19708549484954\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1223.7,\"BaseFareCal\":4781.54,\"BaseFare\":4030,\"CommissionEarned\":481.16,\"TDS\":-25.32,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":826,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":481.16,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4831.54,\"CostToCustomer\":4831.54,\"BaseFareCal\":4781.54,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4781.54,\"intOfferedFare\":4772.54,\"intPublishFare\":5253.7,\"TripjackMarkup\":0,\"TripjackCommission\":481.16,\"TripjackTDS\":\"25.32\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"01K\"},\"Segments\":[{\"originAirportName\":\"Raipur Arpt\",\"destinationAirportName\":\"Vishakhapatnam\",\"originCityName\":\"Raipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Vishakhapatanam\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VTZ\",\"destinationArrTime\":\"2022-07-27T13:30\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"RPR\",\"originDepTime\":\"2022-07-27T12:25\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":40,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:25\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Vishakhapatanam\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"originAirportName\":\"Vishakhapatnam\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Vishakhapatanam\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-27T16:25\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"VTZ\",\"originDepTime\":\"2022-07-27T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"16:25\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]},{\"keyIndex\":62,\"FlightNumber\":\"6E-6227\",\"SegFlightNumberArr\":\"6E-6227\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5836185250_0BOMRPR6E6227_19705673568252\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:20\",\"ArrivalTime\":\"14:15\",\"TravelDate\":\"2022-07-29T12:20\",\"LocalFromTime\":\"2022-07-29 12:20\",\"FromUTCTime\":\"2022-07-29T12:20\",\"LocalToTime\":\"2022-07-29 14:15\",\"ToUTCTime\":\"2022-07-29T14:15\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Fri, 29 Jul\",\"ArrivalDateTxt\":\"Fri, 29 Jul\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"22508\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"RPR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5230.95,\"PublishedFareTxt\":\"5,231\",\"ApiResultIndex\":\"5-5836185250_0BOMRPR6E6227_19705673568252\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"1cc15-1cee4-faeb6-7fdac\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4400,\"Tax\":720.7,\"YQTax\":0,\"OtherCharges\":703,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5120.7,\"PublishedFare\":5231,\"PublishedFarePerPax\":5231,\"OfferedFare\":5089.35,\"CommissionEarned\":31.35,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.65,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5836185250_0BOMRPR6E6227_19705673569642\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Round Trip Special\",\"fareremarks\":\"Round Trip Special Discount\",\"FareClass\":\"Economy\",\"intTotalGST\":21.6,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":120,\"GSTOnMarkUp\":21.6,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"120.00\",\"AddiTaxOnMarkup\":21.6,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":720.7,\"BaseFareCal\":5110.95,\"BaseFare\":4400,\"CommissionEarned\":31.35,\"TDS\":-1.65,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":703,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":21.6,\"AddiMarkup\":120,\"intTotalGST\":21.6,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":120,\"GSTOnMarkUp\":21.6,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":31.35,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":120,\"IntTaxOnAgencyFixMarkUp\":21.6,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":21.6,\"PublishFare\":5230.95,\"CostToCustomer\":5230.95,\"BaseFareCal\":5110.95,\"intCommisionEarnedForAgency\":120,\"CostToCompany\":5110.95,\"intOfferedFare\":5089.35,\"intPublishFare\":5120.7,\"TripjackMarkup\":0,\"TripjackCommission\":31.35,\"TripjackTDS\":\"1.65\",\"AddiMarkup\":\"120.00\",\"AddiTaxOnMarkup\":21.6,\"IntAdddimarkup\":120},\"$$hashKey\":\"0DS\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raipur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Raipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"RPR\",\"destinationArrTime\":\"2022-07-29T14:15\",\"SegFlightNumber\":\"6E-6227\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":null,\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-29T12:20\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:20\",\"strArrivalDtTime\":\"14:15\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":62,\"FlightNumber\":\"6E-6227\",\"SegFlightNumberArr\":\"6E-6227\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5836185250_0BOMRPR6E6227_19705673568252\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:20\",\"ArrivalTime\":\"14:15\",\"TravelDate\":\"2022-07-29T12:20\",\"LocalFromTime\":\"2022-07-29 12:20\",\"FromUTCTime\":\"2022-07-29T12:20\",\"LocalToTime\":\"2022-07-29 14:15\",\"ToUTCTime\":\"2022-07-29T14:15\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Fri, 29 Jul\",\"ArrivalDateTxt\":\"Fri, 29 Jul\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"22508\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"RPR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5230.95,\"PublishedFareTxt\":\"5,231\",\"ApiResultIndex\":\"5-5836185250_0BOMRPR6E6227_19705673568252\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"1cc15-1cee4-faeb6-7fdac\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4400,\"Tax\":720.7,\"YQTax\":0,\"OtherCharges\":703,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5120.7,\"PublishedFare\":5231,\"PublishedFarePerPax\":5231,\"OfferedFare\":5089.35,\"CommissionEarned\":31.35,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.65,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5836185250_0BOMRPR6E6227_19705673569642\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Round Trip Special\",\"fareremarks\":\"Round Trip Special Discount\",\"FareClass\":\"Economy\",\"intTotalGST\":21.6,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":120,\"GSTOnMarkUp\":21.6,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"120.00\",\"AddiTaxOnMarkup\":21.6,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":720.7,\"BaseFareCal\":5110.95,\"BaseFare\":4400,\"CommissionEarned\":31.35,\"TDS\":-1.65,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":703,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":21.6,\"AddiMarkup\":120,\"intTotalGST\":21.6,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":120,\"GSTOnMarkUp\":21.6,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":31.35,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":120,\"IntTaxOnAgencyFixMarkUp\":21.6,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":21.6,\"PublishFare\":5230.95,\"CostToCustomer\":5230.95,\"BaseFareCal\":5110.95,\"intCommisionEarnedForAgency\":120,\"CostToCompany\":5110.95,\"intOfferedFare\":5089.35,\"intPublishFare\":5120.7,\"TripjackMarkup\":0,\"TripjackCommission\":31.35,\"TripjackTDS\":\"1.65\",\"AddiMarkup\":\"120.00\",\"AddiTaxOnMarkup\":21.6,\"IntAdddimarkup\":120},\"$$hashKey\":\"0DS\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raipur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Raipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"RPR\",\"destinationArrTime\":\"2022-07-29T14:15\",\"SegFlightNumber\":\"6E-6227\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":null,\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-07-29T12:20\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:20\",\"strArrivalDtTime\":\"14:15\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\"}}','2022-07-26 15:05:05'),(246,'e6149-8c26d-232ff-428c8','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-651\",\"keyIndex\":85,\"SegFlightNumberArr\":\"AI-651, AI-651\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4361058090_85RPRVTZAI651VTZBOMAI651_16594524750838\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"12:25\",\"ArrivalTime\":\"16:25\",\"TravelDate\":\"2022-07-27T12:25\",\"LocalFromTime\":\"2022-07-27 12:25\",\"FromUTCTime\":\"2022-07-27T12:25\",\"LocalToTime\":\"2022-07-27 16:25\",\"ToUTCTime\":\"2022-07-27T16:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Vishakhapatanam\",\"GroundTime\":40,\"LAYOVERDuration\":\"0h 40m\",\"FlyingMinutes\":240,\"DepartureDateTxt\":\"Wed, 27 Jul\",\"ArrivalDateTxt\":\"Wed, 27 Jul\",\"FlightDuration\":\"4h 0m\",\"SourcePlaceSysId\":\"22508\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"RPR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4832,\"PublishedFareTxt\":\"4,832\",\"ApiResultIndex\":\"21-10-15-2-4361058090_85RPRVTZAI651VTZBOMAI651_16594524750838\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"e6149-8c26d-232ff-428c8\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4030,\"Tax\":1223.7,\"YQTax\":0,\"OtherCharges\":826,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5253.7,\"PublishedFare\":4832,\"PublishedFarePerPax\":4832,\"OfferedFare\":4772.54,\"CommissionEarned\":481.16,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-25.32,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4361058090_85RPRVTZAI651VTZBOMAI651_16594524750838\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1223.7,\"BaseFareCal\":4781.54,\"BaseFare\":4030,\"CommissionEarned\":481.16,\"TDS\":-25.32,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":826,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":481.16,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4831.54,\"CostToCustomer\":4831.54,\"BaseFareCal\":4781.54,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4781.54,\"intOfferedFare\":4772.54,\"intPublishFare\":5253.7,\"TripjackMarkup\":0,\"TripjackCommission\":481.16,\"TripjackTDS\":\"25.32\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"02I\"},\"Segments\":[{\"originAirportName\":\"Raipur Arpt\",\"destinationAirportName\":\"Vishakhapatnam\",\"originCityName\":\"Raipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Vishakhapatanam\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VTZ\",\"destinationArrTime\":\"2022-07-27T13:30\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"RPR\",\"originDepTime\":\"2022-07-27T12:25\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":40,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:25\",\"strArrivalDtTime\":\"13:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"0h 40m\",\"LAYOVERCity\":\"Vishakhapatanam\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"originAirportName\":\"Vishakhapatnam\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Vishakhapatanam\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-07-27T16:25\",\"SegFlightNumber\":\"AI-651\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"VTZ\",\"originDepTime\":\"2022-07-27T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"16:25\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-07-26 16:18:19'),(250,'21347-cf9ba-9b82e-20671','{\"BookingData\":[{\"bookingId\":\"TJ103439176273\",\"FlightNumber\":\"6E-2022\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-06T06:30\",\"LocalFromTime\":\"2022-08-06 06:30\",\"FromUTCTime\":\"2022-08-06T06:30\",\"LocalToTime\":\"2022-08-06 08:05\",\"ToUTCTime\":\"2022-08-06T08:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3142.7,\"PublishedFareTxt\":\"3,143\",\"ApiResultIndex\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-PAT\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3250,\"ARFT\":162.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"ACF\":3500,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2506,\"Tax\":636.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3142.7,\"PublishedFare\":3242.84,\"OfferedFare\":3124.84,\"CommissionEarned\":17.86,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.94,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1382445469_0DELPAT6E2022_30886217562702\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":636.7,\"BaseFareCal\":3142.84,\"BaseFare\":2506,\"CommissionEarned\":17.86,\"TDS\":-0.94,\"MF\":15,\"YQ\":0,\"AGST\":130,\"MFT\":2.7,\"OT\":489,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":17.86,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3242.84,\"CostToCustomer\":3242.84,\"BaseFareCal\":3142.84,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3142.84,\"intOfferedFare\":3124.84,\"intPublishFare\":3142.7,\"TripjackMarkup\":0,\"TripjackCommission\":17.86,\"TripjackTDS\":\"0.94\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"771\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-08-06T08:05\",\"SegFlightNumber\":\"6E-2022\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-06T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHBR\",\"Price\":400,\"Description\":\"Chicken Biryani\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"771\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"21347-cf9ba-9b82e-20671\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103439176273\",\"FlightNumber\":\"6E-2022\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"strTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:30\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-06T06:30\",\"LocalFromTime\":\"2022-08-06 06:30\",\"FromUTCTime\":\"2022-08-06T06:30\",\"LocalToTime\":\"2022-08-06 08:05\",\"ToUTCTime\":\"2022-08-06T08:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":20918,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3142.7,\"ApiResultIndex\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"21347-cf9ba-9b82e-20671\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2506,\"Tax\":636.7,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":130,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3142.7,\"PublishedFare\":3242.84,\"OfferedFare\":3124.84,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":636.7,\"BaseFareCal\":3142.84,\"BaseFare\":2506,\"CommissionEarned\":17.86,\"TDS\":-0.94,\"MF\":15,\"YQ\":0,\"AGST\":130,\"MFT\":2.7,\"OT\":489,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"771\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-08-06T08:05\",\"SegFlightNumber\":\"6E-2022\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-06T06:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:30\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1382445469_0DELPAT6E2022_29436790715433\",\"localFromDateTime\":\"2022-08-06 06:30\",\"localToDateTime\":\"2022-08-06 08:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":20918,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Patna (PAT)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"PAT\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"departure_date\":\"06\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Jai Prakash Narayan Arpt (PAT)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"PAT\",\"from\":\"DEL\",\"to\":\"PAT\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"sourceCityId\":7701,\"destinationCityId\":20918,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"21347-cf9ba-9b82e-20671\",\"from_city_\":\"1__DEL-PAT\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Patna+%28PAT%29&source_city=DEL&ContSysId_1=101&destination_city=PAT&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Patna%2C+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29%2C+India&departure_date=06%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"email2vs@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9811643365\",\"FirstName\":\"Vishal\",\"LastName\":\"Singh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-01-15-52-50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"27\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"419900\",\"TPSysId\":\"419901\",\"VersionId\":[\"88374\"],\"CustomerSysId\":\"220916\",\"TrxId\":\"30623\",\"FareBreakdownid\":[\"357563\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"98\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"27\",\"CustomerMemSysId\":[\"27\"],\"flight_booking_id\":[\"57\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"57\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3242.84},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"220916\",\"TPSysId\":\"419901\",\"MasterTPSysId\":\"419900\",\"ProposalID\":\"419901\\/V1\",\"InvoiceDate\":\"2022-08-01\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-01\",\"PaymentDate\":\"2022-08-01\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":3206.84,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3242.84,\"TotalDueAmount\":0,\"InvoiceValue\":3242.84,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-PAT-IndiGo 6E-2022\",\"ItemQty\":1,\"ItemRates\":3006.84,\"Total\":3006.84,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3242.84,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":3206.84,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-01 15:53:43'),(251,'06ee0-c169c-880f5-d53aa','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-910\",\"keyIndex\":20,\"SegFlightNumberArr\":\"UK-910\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4976191524_13BOMDELUK910_23159759577286\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2022-08-09T17:35\",\"LocalFromTime\":\"2022-08-09 17:35\",\"FromUTCTime\":\"2022-08-09T17:35\",\"LocalToTime\":\"2022-08-09 19:40\",\"ToUTCTime\":\"2022-08-09T19:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5161,\"PublishedFareTxt\":\"5,161\",\"ApiResultIndex\":\"21-10-15-2-4976191524_13BOMDELUK910_23159759576966\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"06ee0-c169c-880f5-d53aa\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5161,\"PublishedFarePerPax\":5161,\"OfferedFare\":5101.72,\"CommissionEarned\":261.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.79,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4976191524_13BOMDELUK910_23159759577286\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":261.98,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5160.72,\"CostToCustomer\":5160.72,\"BaseFareCal\":5110.72,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5110.72,\"intOfferedFare\":5101.72,\"intPublishFare\":5363.7,\"TripjackMarkup\":0,\"TripjackCommission\":261.98,\"TripjackTDS\":\"13.79\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0EA\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T19:40\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"45001-50000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-02 18:14:37'),(255,'f9920-03ab5-b23c8-b2e02','{\"BookingData\":[{\"bookingId\":\"TJ109039264707\",\"FlightNumber\":\"UK-910\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2022-08-09T17:35\",\"LocalFromTime\":\"2022-08-09 17:35\",\"FromUTCTime\":\"2022-08-09T17:35\",\"LocalToTime\":\"2022-08-09 19:40\",\"ToUTCTime\":\"2022-08-09T19:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5363.7,\"PublishedFareTxt\":\"5,364\",\"ApiResultIndex\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":null,\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5160.72,\"OfferedFare\":5101.72,\"CommissionEarned\":261.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.79,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-1099354911_0BOMDELUK910_26822299478735\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":261.98,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5160.72,\"CostToCustomer\":5160.72,\"BaseFareCal\":5110.72,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5110.72,\"intOfferedFare\":5101.72,\"intPublishFare\":5363.7,\"TripjackMarkup\":0,\"TripjackCommission\":261.98,\"TripjackTDS\":\"13.79\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"615\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T19:40\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f9920-03ab5-b23c8-b2e02\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109039264707\",\"FlightNumber\":\"UK-910\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"strTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2022-08-09T17:35\",\"LocalFromTime\":\"2022-08-09 17:35\",\"FromUTCTime\":\"2022-08-09T17:35\",\"LocalToTime\":\"2022-08-09 19:40\",\"ToUTCTime\":\"2022-08-09T19:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5363.7,\"ApiResultIndex\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"f9920-03ab5-b23c8-b2e02\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5160.72,\"OfferedFare\":5101.72,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"615\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T19:40\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-1099354911_13BOMDELUK910_41162136598526\",\"localFromDateTime\":\"2022-08-09 17:35\",\"localToDateTime\":\"2022-08-09 19:40\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"09\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"f9920-03ab5-b23c8-b2e02\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=09%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"samaniageeta@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"09873463822\",\"FirstName\":\"Megha\",\"LastName\":\"Paghda\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-02-18-41-10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"28\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"420989\",\"TPSysId\":\"420990\",\"VersionId\":[\"88832\"],\"CustomerSysId\":\"221323\",\"TrxId\":\"30730\",\"FareBreakdownid\":[\"357643\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"99\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"28\",\"CustomerMemSysId\":[\"28\"],\"flight_booking_id\":[\"58\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"58\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5160.72},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"221323\",\"TPSysId\":\"420990\",\"MasterTPSysId\":\"420989\",\"ProposalID\":\"420990\\/V1\",\"InvoiceDate\":\"2022-08-02\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-02\",\"PaymentDate\":\"2022-08-02\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5142.72,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5160.72,\"TotalDueAmount\":0,\"InvoiceValue\":5160.72,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-Vistara UK-910\",\"ItemQty\":1,\"ItemRates\":5042.72,\"Total\":5042.72,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5160.72,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":5142.72,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-02 18:46:38'),(256,'f9e86-2d5e0-0b4cd-3ec2e','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-910\",\"keyIndex\":20,\"SegFlightNumberArr\":\"UK-910\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-8133445221_13BOMDELUK910_134523609929648\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2022-08-09T17:35\",\"LocalFromTime\":\"2022-08-09 17:35\",\"FromUTCTime\":\"2022-08-09T17:35\",\"LocalToTime\":\"2022-08-09 19:40\",\"ToUTCTime\":\"2022-08-09T19:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5161,\"PublishedFareTxt\":\"5,161\",\"ApiResultIndex\":\"21-10-15-2-8133445221_13BOMDELUK910_134523609929448\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"f9e86-2d5e0-0b4cd-3ec2e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5161,\"PublishedFarePerPax\":5161,\"OfferedFare\":5101.72,\"CommissionEarned\":261.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.79,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-8133445221_13BOMDELUK910_134523609929648\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":261.98,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5160.72,\"CostToCustomer\":5160.72,\"BaseFareCal\":5110.72,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5110.72,\"intOfferedFare\":5101.72,\"intPublishFare\":5363.7,\"TripjackMarkup\":0,\"TripjackCommission\":261.98,\"TripjackTDS\":\"13.79\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0EA\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T19:40\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"45001-50000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-02 18:52:17'),(261,'f2ecf-89979-9b737-31e50','{\"BookingData\":[{\"bookingId\":\"TJ100739265875\",\"FlightNumber\":\"UK-902\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2022-08-09T15:45\",\"LocalFromTime\":\"2022-08-09 15:45\",\"FromUTCTime\":\"2022-08-09T15:45\",\"LocalToTime\":\"2022-08-09 18:05\",\"ToUTCTime\":\"2022-08-09T18:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5363.7,\"PublishedFareTxt\":\"5,364\",\"ApiResultIndex\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":157.5,\"ARF\":3150,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACF\":3675,\"CCF\":50,\"ACFT\":183.75,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5160.72,\"OfferedFare\":5101.72,\"CommissionEarned\":261.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.79,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-9203315280_0BOMDELUK902_38554386574057\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":261.98,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5160.72,\"CostToCustomer\":5160.72,\"BaseFareCal\":5110.72,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5110.72,\"intOfferedFare\":5101.72,\"intPublishFare\":5363.7,\"TripjackMarkup\":0,\"TripjackCommission\":261.98,\"TripjackTDS\":\"13.79\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"191\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T18:05\",\"SegFlightNumber\":\"UK-902\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f2ecf-89979-9b737-31e50\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ100739265875\",\"FlightNumber\":\"UK-902\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"strTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2022-08-09T15:45\",\"LocalFromTime\":\"2022-08-09 15:45\",\"FromUTCTime\":\"2022-08-09T15:45\",\"LocalToTime\":\"2022-08-09 18:05\",\"ToUTCTime\":\"2022-08-09T18:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5363.7,\"ApiResultIndex\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"f2ecf-89979-9b737-31e50\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5160.72,\"OfferedFare\":5101.72,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"191\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T18:05\",\"SegFlightNumber\":\"UK-902\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-9203315280_13BOMDELUK902_30940101882449\",\"localFromDateTime\":\"2022-08-09 15:45\",\"localToDateTime\":\"2022-08-09 18:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"09\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"f2ecf-89979-9b737-31e50\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=09%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"samaniamohit@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"7011644515\",\"FirstName\":\"Megha \",\"LastName\":\"Mandar pagade \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-02-18-55-06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"421015\",\"TPSysId\":\"421016\",\"VersionId\":[\"88836\"],\"CustomerSysId\":\"221337\",\"TrxId\":\"30731\",\"FareBreakdownid\":[\"357645\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"100\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\"],\"flight_booking_id\":[\"59\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"59\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5160.72},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":null,\"TPSysId\":null,\"MasterTPSysId\":null,\"ProposalID\":\"\\/V1\",\"InvoiceDate\":\"2022-08-02\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-02\",\"PaymentDate\":\"2022-08-02\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5142.72,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5160.72,\"TotalDueAmount\":0,\"InvoiceValue\":5160.72,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-Vistara UK-902\",\"ItemQty\":1,\"ItemRates\":5042.72,\"Total\":5042.72,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5160.72,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":5142.72,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-02 18:59:35'),(262,'61c8e-d3862-82018-737da','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-945\",\"keyIndex\":29,\"SegFlightNumberArr\":\"UK-945\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5702471182_7DELBOMUK945_58198333512731\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"11:40\",\"ArrivalTime\":\"14:00\",\"TravelDate\":\"2022-08-21T11:40\",\"LocalFromTime\":\"2022-08-21 11:40\",\"FromUTCTime\":\"2022-08-21T11:40\",\"LocalToTime\":\"2022-08-21 14:00\",\"ToUTCTime\":\"2022-08-21T14:00\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 21 Aug\",\"ArrivalDateTxt\":\"Sun, 21 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":10287,\"PublishedFareTxt\":\"10,286\",\"ApiResultIndex\":\"21-10-15-2-5702471182_7DELBOMUK945_58198333512491\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"61c8e-d3862-82018-737da\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9202,\"Tax\":1549.4,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":474,\"CarrierMiscFee\":260,\"MUFee\":0,\"intPublishedFare\":10751.4,\"PublishedFare\":10287,\"PublishedFarePerPax\":5144,\"OfferedFare\":10227.1,\"CommissionEarned\":524.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-27.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-5702471182_7DELBOMUK945_58198333512731\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1549.4,\"BaseFareCal\":10236.1,\"BaseFare\":9202,\"CommissionEarned\":524.3,\"TDS\":-27.6,\"MF\":30,\"YQ\":0,\"AGST\":474,\"MFT\":5.4,\"OT\":780,\"MU\":0,\"YR\":260,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":524.3,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":10286.1,\"CostToCustomer\":10286.1,\"BaseFareCal\":10236.1,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":10236.1,\"intOfferedFare\":10227.1,\"intPublishFare\":10751.4,\"TripjackMarkup\":0,\"TripjackCommission\":524.3,\"TripjackTDS\":\"27.6\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0OH\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-21T14:00\",\"SegFlightNumber\":\"UK-945\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-21T11:40\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:40\",\"strArrivalDtTime\":\"14:00\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-03 11:05:12'),(263,'4b3b5-a7c11-f4e7e-1f4d0','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2519\",\"keyIndex\":71,\"SegFlightNumberArr\":\"6E-2519\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0556158861_2DELBOM6E2519_111181044799016\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:35\",\"ArrivalTime\":\"01:40\",\"TravelDate\":\"2022-08-04T23:35\",\"LocalFromTime\":\"2022-08-04 23:35\",\"FromUTCTime\":\"2022-08-04T23:35\",\"LocalToTime\":\"2022-08-05 01:40\",\"ToUTCTime\":\"2022-08-05T01:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 04 Aug\",\"ArrivalDateTxt\":\"Fri, 05 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4122,\"PublishedFareTxt\":\"4,122\",\"ApiResultIndex\":\"5-0556158861_2DELBOM6E2519_111181044798796\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"4b3b5-a7c11-f4e7e-1f4d0\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3349,\"Tax\":678.7,\"YQTax\":0,\"OtherCharges\":661,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4027.7,\"PublishedFare\":4122,\"PublishedFarePerPax\":4122,\"OfferedFare\":4003.84,\"CommissionEarned\":23.86,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0556158861_2DELBOM6E2519_111181044799016\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":678.7,\"BaseFareCal\":4021.84,\"BaseFare\":3349,\"CommissionEarned\":23.86,\"TDS\":-1.26,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":661,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":23.86,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4121.84,\"CostToCustomer\":4121.84,\"BaseFareCal\":4021.84,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4021.84,\"intOfferedFare\":4003.84,\"intPublishFare\":4027.7,\"TripjackMarkup\":0,\"TripjackCommission\":23.86,\"TripjackTDS\":\"1.26\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-05T01:40\",\"SegFlightNumber\":\"6E-2519\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-04T23:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:35\",\"strArrivalDtTime\":\"01:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"$$hashKey\":\"0A9\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-04 14:58:55'),(264,'e33c6-73e24-e31f9-1cf5c','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-712\",\"keyIndex\":5,\"SegFlightNumberArr\":\"SG-712, SG-2978\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3987494359_1BOMDELSG712DELJAISG2978_114225048813264\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"00:35\",\"ArrivalTime\":\"21:15\",\"TravelDate\":\"2022-08-10T00:35\",\"LocalFromTime\":\"2022-08-10 00:35\",\"FromUTCTime\":\"2022-08-10T00:35\",\"LocalToTime\":\"2022-08-10 21:15\",\"ToUTCTime\":\"2022-08-10T21:15\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":1020,\"LAYOVERDuration\":\"17h 0m\",\"FlyingMinutes\":1240,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"20h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5809,\"PublishedFareTxt\":\"5,809\",\"ApiResultIndex\":\"4-3987494359_1BOMDELSG712DELJAISG2978_114225048812964\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"e33c6-73e24-e31f9-1cf5c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4958,\"Tax\":779.7,\"YQTax\":0,\"OtherCharges\":508,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":254,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5737.7,\"PublishedFare\":5809,\"PublishedFarePerPax\":5809,\"OfferedFare\":5690.6,\"CommissionEarned\":47.1,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3987494359_1BOMDELSG712DELJAISG2978_114225048813264\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":779.7,\"BaseFareCal\":5708.6,\"BaseFare\":4958,\"CommissionEarned\":47.1,\"TDS\":-2.48,\"MF\":15,\"YQ\":0,\"AGST\":254,\"MFT\":2.7,\"OT\":508,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":47.1,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5808.6,\"CostToCustomer\":5808.6,\"BaseFareCal\":5708.6,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5708.6,\"intOfferedFare\":5690.6,\"intPublishFare\":5737.7,\"TripjackMarkup\":0,\"TripjackCommission\":47.1,\"TripjackTDS\":\"2.48\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-10T03:00\",\"SegFlightNumber\":\"SG-712\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-10T00:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":1020,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:35\",\"strArrivalDtTime\":\"03:00\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":\"17h 0m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1C\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-10T21:15\",\"SegFlightNumber\":\"SG-2978\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-10T20:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"20:00\",\"strArrivalDtTime\":\"21:15\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1D\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-04 18:07:39'),(265,'dd6f9-78cf2-65879-5d930','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8702\",\"keyIndex\":30,\"SegFlightNumberArr\":\"SG-8702\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9238106879_2BOMDELSG8702_36799540175558\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-08-11T16:00\",\"LocalFromTime\":\"2022-08-11 16:00\",\"FromUTCTime\":\"2022-08-11T16:00\",\"LocalToTime\":\"2022-08-11 18:20\",\"ToUTCTime\":\"2022-08-11T18:20\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Thu, 11 Aug\",\"ArrivalDateTxt\":\"Thu, 11 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":32,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4053,\"PublishedFareTxt\":\"4,053\",\"ApiResultIndex\":\"4-9238106879_2BOMDELSG8702_36799540175338\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"dd6f9-78cf2-65879-5d930\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3270,\"Tax\":695.7,\"YQTax\":0,\"OtherCharges\":508,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3965.7,\"PublishedFare\":4053,\"PublishedFarePerPax\":4053,\"OfferedFare\":3934.64,\"CommissionEarned\":31.06,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.64,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9238106879_2BOMDELSG8702_36799540175558\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":695.7,\"BaseFareCal\":3952.64,\"BaseFare\":3270,\"CommissionEarned\":31.06,\"TDS\":-1.64,\"MF\":15,\"YQ\":0,\"AGST\":170,\"MFT\":2.7,\"OT\":508,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":31.06,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4052.64,\"CostToCustomer\":4052.64,\"BaseFareCal\":3952.64,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3952.64,\"intOfferedFare\":3934.64,\"intPublishFare\":3965.7,\"TripjackMarkup\":0,\"TripjackCommission\":31.06,\"TripjackTDS\":\"1.64\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-11T18:20\",\"SegFlightNumber\":\"SG-8702\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-11T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":32,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"$$hashKey\":\"0DQ\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-04 22:07:39'),(266,'1dfd1-a6e48-1d50a-ce0cc','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-954\",\"keyIndex\":18,\"SegFlightNumberArr\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2172819734_0BOMDELUK954_17210280307503\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-06T06:00\",\"LocalFromTime\":\"2022-08-06 06:00\",\"FromUTCTime\":\"2022-08-06T06:00\",\"LocalToTime\":\"2022-08-06 08:05\",\"ToUTCTime\":\"2022-08-06T08:05\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 06 Aug\",\"ArrivalDateTxt\":\"Sat, 06 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5161,\"PublishedFareTxt\":\"5,161\",\"ApiResultIndex\":\"21-10-15-2-2172819734_0BOMDELUK954_17210280306883\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"1dfd1-a6e48-1d50a-ce0cc\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":762.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5363.7,\"PublishedFare\":5161,\"PublishedFarePerPax\":5161,\"OfferedFare\":5101.72,\"CommissionEarned\":261.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.79,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2172819734_0BOMDELUK954_17210280307503\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":762.7,\"BaseFareCal\":5110.72,\"BaseFare\":4601,\"CommissionEarned\":261.98,\"TDS\":-13.79,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":261.98,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5160.72,\"CostToCustomer\":5160.72,\"BaseFareCal\":5110.72,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5110.72,\"intOfferedFare\":5101.72,\"intPublishFare\":5363.7,\"TripjackMarkup\":0,\"TripjackCommission\":261.98,\"TripjackTDS\":\"13.79\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"05L\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-06T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-06T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"$$hashKey\":\"0Q6\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-05 16:35:39'),(270,'30541-221d9-5639f-e75bb','{\"BookingData\":[{\"bookingId\":\"TJ101539587120\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2022-08-08T15:25\",\"LocalFromTime\":\"2022-08-08 15:25\",\"FromUTCTime\":\"2022-08-08T15:25\",\"LocalToTime\":\"2022-08-08 17:25\",\"ToUTCTime\":\"2022-08-08T17:25\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6783.7,\"PublishedFareTxt\":\"6,784\",\"ApiResultIndex\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":249,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference__nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ARFT\":12.45,\"ARF\":249,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":499,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACF\":499,\"ACFT\":24.95,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Standard Seats-FOC\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6009,\"Tax\":774.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":304,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6783.7,\"PublishedFare\":6836.06,\"OfferedFare\":6718.06,\"CommissionEarned\":65.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.46,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-8857762293_0BOMJAII5678_13808478888547\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":774.7,\"BaseFareCal\":6736.06,\"BaseFare\":6009,\"CommissionEarned\":65.64,\"TDS\":-3.46,\"MF\":15,\"YQ\":0,\"AGST\":304,\"MFT\":2.7,\"OT\":453,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":65.64,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6836.06,\"CostToCustomer\":6836.06,\"BaseFareCal\":6736.06,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6736.06,\"intOfferedFare\":6718.06,\"intPublishFare\":6783.7,\"TripjackMarkup\":0,\"TripjackCommission\":65.64,\"TripjackTDS\":\"3.46\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"892\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-08T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-08T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBLD\",\"Price\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"RPCM\",\"Price\":0,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"SDAI\",\"Price\":200,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"JMCB\",\"Price\":300,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"KACB\",\"Price\":400,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"GACB\",\"Price\":400,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"892\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"30541-221d9-5639f-e75bb\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101539587120\",\"FlightNumber\":\"I5-678\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"strTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:25\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2022-08-08T15:25\",\"LocalFromTime\":\"2022-08-08 15:25\",\"FromUTCTime\":\"2022-08-08T15:25\",\"LocalToTime\":\"2022-08-08 17:25\",\"ToUTCTime\":\"2022-08-08T17:25\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 08 Aug\",\"ArrivalDateTxt\":\"Mon, 08 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6783.7,\"ApiResultIndex\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"30541-221d9-5639f-e75bb\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6009,\"Tax\":774.7,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":304,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6783.7,\"PublishedFare\":6836.06,\"OfferedFare\":6718.06,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":774.7,\"BaseFareCal\":6736.06,\"BaseFare\":6009,\"CommissionEarned\":65.64,\"TDS\":-3.46,\"MF\":15,\"YQ\":0,\"AGST\":304,\"MFT\":2.7,\"OT\":453,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"892\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-08T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-08T15:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"15:25\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-8857762293_0BOMJAII5678_104769324996625\",\"localFromDateTime\":\"2022-08-08 15:25\",\"localToDateTime\":\"2022-08-08 17:25\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"08\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"30541-221d9-5639f-e75bb\",\"from_city_\":\"1__BOM-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Jaipur+%28JAI%29&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&departure_date=08%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"AJAY\",\"LastName\":\"KHATRI\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-06-16-38-15\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"40\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"424098\",\"TPSysId\":\"424099\",\"VersionId\":[\"90290\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"30993\",\"FareBreakdownid\":[\"357849\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"101\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"40\",\"CustomerMemSysId\":[\"40\"],\"flight_booking_id\":[\"60\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"60\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":6836.06},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"214170\",\"TPSysId\":\"424099\",\"MasterTPSysId\":\"424098\",\"ProposalID\":\"424099\\/V1\",\"InvoiceDate\":\"2022-08-06\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-06\",\"PaymentDate\":\"2022-08-06\",\"ClientGST\":true,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":6800.06,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":6836.06,\"TotalDueAmount\":0,\"InvoiceValue\":6836.06,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-JAI-AirAsia India I5-678\",\"ItemQty\":1,\"ItemRates\":6600.06,\"Total\":6600.06,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6836.06,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":6800.06,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-06 16:39:05'),(274,'06634-e300f-1e490-9a566','{\"BookingData\":[{\"bookingId\":\"TJ109839595532\",\"FlightNumber\":\"6E-2019\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:10\",\"ArrivalTime\":\"12:10\",\"TravelDate\":\"2022-08-27T10:10\",\"LocalFromTime\":\"2022-08-27 10:10\",\"FromUTCTime\":\"2022-08-27T10:10\",\"LocalToTime\":\"2022-08-27 12:10\",\"ToUTCTime\":\"2022-08-27T12:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Sat, 27 Aug\",\"ArrivalDateTxt\":\"Sat, 27 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3722.7,\"PublishedFareTxt\":\"3,723\",\"ApiResultIndex\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXB-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"ARF\":3250,\"ARFT\":162.5,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACFT\":175,\"CCF\":50,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3242,\"Tax\":480.7,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3722.7,\"PublishedFare\":3817.6,\"OfferedFare\":3699.6,\"CommissionEarned\":23.1,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.22,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9989068070_0IXBDEL6E2019_110911946906345\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":480.7,\"BaseFareCal\":3717.6,\"BaseFare\":3242,\"CommissionEarned\":23.1,\"TDS\":-1.22,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":463,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":23.1,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3817.6,\"CostToCustomer\":3817.6,\"BaseFareCal\":3717.6,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3717.6,\"intOfferedFare\":3699.6,\"intPublishFare\":3722.7,\"TripjackMarkup\":0,\"TripjackCommission\":23.1,\"TripjackTDS\":\"1.22\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"167\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-27T12:10\",\"SegFlightNumber\":\"6E-2019\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-27T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"167\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"06634-e300f-1e490-9a566\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-27 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109839595532\",\"FlightNumber\":\"6E-2019\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"strTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"10:10\",\"ArrivalTime\":\"12:10\",\"TravelDate\":\"2022-08-27T10:10\",\"LocalFromTime\":\"2022-08-27 10:10\",\"FromUTCTime\":\"2022-08-27T10:10\",\"LocalToTime\":\"2022-08-27 12:10\",\"ToUTCTime\":\"2022-08-27T12:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Sat, 27 Aug\",\"ArrivalDateTxt\":\"Sat, 27 Aug\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3722.7,\"ApiResultIndex\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"06634-e300f-1e490-9a566\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3242,\"Tax\":480.7,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3722.7,\"PublishedFare\":3817.6,\"OfferedFare\":3699.6,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":480.7,\"BaseFareCal\":3717.6,\"BaseFare\":3242,\"CommissionEarned\":23.1,\"TDS\":-1.22,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":463,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"167\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-27T12:10\",\"SegFlightNumber\":\"6E-2019\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-27T10:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:10\",\"strArrivalDtTime\":\"12:10\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-9989068070_0IXBDEL6E2019_199085307537772\",\"localFromDateTime\":\"2022-08-27 10:10\",\"localToDateTime\":\"2022-08-27 12:10\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Bagdogra (IXB)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"IXB\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Bagdogra, IN - Bagdogra Arpt (IXB), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"27\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Bagdogra Arpt (IXB)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXB\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"IXB\",\"to\":\"DEL\",\"sourceCityText\":\"Bagdogra, IN - Bagdogra Arpt (IXB), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":2012,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"27\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-27\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"06634-e300f-1e490-9a566\",\"from_city_\":\"1__IXB-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Bagdogra+%28IXB%29&mytrip_city_to=Delhi+%28DEL%29&source_city=IXB&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Bagdogra%2C+IN+-+Bagdogra+Arpt+%28IXB%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=27%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Bagdogra+Arpt+%28IXB%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nikhil.dugar@outlook.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9783576789\",\"FirstName\":\"Narendra kumar \",\"LastName\":\"Dugar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-06-18-30-30\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"30\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"424205\",\"TPSysId\":\"424206\",\"VersionId\":[\"90326\"],\"CustomerSysId\":\"223018\",\"TrxId\":\"31009\",\"FareBreakdownid\":[\"357868\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"102\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"30\",\"CustomerMemSysId\":[\"30\"],\"flight_booking_id\":[\"61\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"61\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3817.6},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"223018\",\"TPSysId\":\"424206\",\"MasterTPSysId\":\"424205\",\"ProposalID\":\"424206\\/V1\",\"InvoiceDate\":\"2022-08-06\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-06\",\"PaymentDate\":\"2022-08-06\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":3781.6,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3817.6,\"TotalDueAmount\":0,\"InvoiceValue\":3817.6,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXB-DEL-IndiGo 6E-2019\",\"ItemQty\":1,\"ItemRates\":3581.6,\"Total\":3581.6,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3817.6,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":3781.6,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-06 18:31:24'),(275,'2669c-23a3c-04924-e9514','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-109\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-109\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0515984329_0AMDLKOG8109_87353491570867\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"14:50\",\"TravelDate\":\"2022-12-09T13:10\",\"LocalFromTime\":\"2022-12-09 13:10\",\"FromUTCTime\":\"2022-12-09T13:10\",\"LocalToTime\":\"2022-12-09 14:50\",\"ToUTCTime\":\"2022-12-09T14:50\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"296\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4813,\"PublishedFareTxt\":\"4,812\",\"ApiResultIndex\":\"1-0515984329_0AMDLKOG8109_87353491570867\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"2669c-23a3c-04924-e9514\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4075,\"Tax\":688.7,\"YQTax\":0,\"OtherCharges\":671,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4763.7,\"PublishedFare\":4813,\"PublishedFarePerPax\":4813,\"OfferedFare\":4694.02,\"CommissionEarned\":69.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.67,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0515984329_0AMDLKOG8109_87353491570867\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":688.7,\"BaseFareCal\":4712.02,\"BaseFare\":4075,\"CommissionEarned\":69.68,\"TDS\":-3.67,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":671,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":69.68,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4812.02,\"CostToCustomer\":4812.02,\"BaseFareCal\":4712.02,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4712.02,\"intOfferedFare\":4694.02,\"intPublishFare\":4763.7,\"TripjackMarkup\":0,\"TripjackCommission\":69.68,\"TripjackTDS\":\"3.67\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"024\"},\"Segments\":[{\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-12-09T14:50\",\"SegFlightNumber\":\"G8-109\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-12-09T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"14:50\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"$$hashKey\":\"03N\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-07 11:58:26'),(277,'c8168-b56e3-19054-36bc9','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5261\",\"keyIndex\":27,\"SegFlightNumberArr\":\"6E-5261\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5965347430_1BOMNAG6E5261_384795970905757\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:45\",\"ArrivalTime\":\"15:00\",\"TravelDate\":\"2022-08-15T13:45\",\"LocalFromTime\":\"2022-08-15 13:45\",\"FromUTCTime\":\"2022-08-15T13:45\",\"LocalToTime\":\"2022-08-15 15:00\",\"ToUTCTime\":\"2022-08-15T15:00\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"18876\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"NAG\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6668,\"PublishedFareTxt\":\"6,667\",\"ApiResultIndex\":\"5-5965347430_1BOMNAG6E5261_384795970905417\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"c8168-b56e3-19054-36bc9\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5800,\"Tax\":790.7,\"YQTax\":0,\"OtherCharges\":773,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6590.7,\"PublishedFare\":6668,\"PublishedFarePerPax\":6668,\"OfferedFare\":6549.38,\"CommissionEarned\":41.32,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5965347430_1BOMNAG6E5261_384795970905757\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":790.7,\"BaseFareCal\":6567.38,\"BaseFare\":5800,\"CommissionEarned\":41.32,\"TDS\":-2.18,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":773,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.32,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6667.38,\"CostToCustomer\":6667.38,\"BaseFareCal\":6567.38,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6567.38,\"intOfferedFare\":6549.38,\"intPublishFare\":6590.7,\"TripjackMarkup\":0,\"TripjackCommission\":41.32,\"TripjackTDS\":\"2.18\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04V\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dr Ambedkar Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Nagpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"NAG\",\"destinationArrTime\":\"2022-08-15T15:00\",\"SegFlightNumber\":\"6E-5261\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-15T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:00\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"$$hashKey\":\"0B9\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-07 19:17:33'),(278,'05fee-f0518-7f079-6db96','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-2504\",\"keyIndex\":10,\"SegFlightNumberArr\":\"G8-2504, G8-714\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4771588394_10BOMAMDG82504AMDDELG8714_1499925054074\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:50\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2022-08-12T16:50\",\"LocalFromTime\":\"2022-08-12 16:50\",\"FromUTCTime\":\"2022-08-12T16:50\",\"LocalToTime\":\"2022-08-12 23:25\",\"ToUTCTime\":\"2022-08-12T23:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":215,\"LAYOVERDuration\":\"3h 35m\",\"FlyingMinutes\":395,\"DepartureDateTxt\":\"Fri, 12 Aug\",\"ArrivalDateTxt\":\"Fri, 12 Aug\",\"FlightDuration\":\"6h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4991,\"PublishedFareTxt\":\"4,991\",\"ApiResultIndex\":\"1-4771588394_10BOMAMDG82504AMDDELG8714_1499925054074\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"05fee-f0518-7f079-6db96\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4200,\"Tax\":744.7,\"YQTax\":0,\"OtherCharges\":727,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4944.7,\"PublishedFare\":4991,\"PublishedFarePerPax\":4991,\"OfferedFare\":4872.88,\"CommissionEarned\":71.82,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.78,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4771588394_10BOMAMDG82504AMDDELG8714_1499925054074\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":744.7,\"BaseFareCal\":4890.88,\"BaseFare\":4200,\"CommissionEarned\":71.82,\"TDS\":-3.78,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":727,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":71.82,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4990.88,\"CostToCustomer\":4990.88,\"BaseFareCal\":4890.88,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4890.88,\"intOfferedFare\":4872.88,\"intPublishFare\":4944.7,\"TripjackMarkup\":0,\"TripjackCommission\":71.82,\"TripjackTDS\":\"3.78\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-08-12T18:05\",\"SegFlightNumber\":\"G8-2504\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-12T16:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":215,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:50\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"3h 35m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-12T23:25\",\"SegFlightNumber\":\"G8-714\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-08-12T21:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:40\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-08 12:42:59'),(279,'9a252-9b85d-bfdf0-159c4','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8152\",\"keyIndex\":181,\"SegFlightNumberArr\":\"SG-8152\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8094186186_0BOMDELSG8152_23230269814422\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-08-09T07:20\",\"LocalFromTime\":\"2022-08-09 07:20\",\"FromUTCTime\":\"2022-08-09T07:20\",\"LocalToTime\":\"2022-08-09 09:35\",\"ToUTCTime\":\"2022-08-09T09:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 09 Aug\",\"ArrivalDateTxt\":\"Tue, 09 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4251,\"PublishedFareTxt\":\"4,251\",\"ApiResultIndex\":\"4-8094186186_0BOMDELSG8152_23230269813302\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9a252-9b85d-bfdf0-159c4\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3460,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":508,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":180,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4165.7,\"PublishedFare\":4251,\"PublishedFarePerPax\":4251,\"OfferedFare\":4132.83,\"CommissionEarned\":32.87,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.73,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8094186186_0BOMDELSG8152_23230269814422\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"BaseFareCal\":4150.83,\"BaseFare\":3460,\"CommissionEarned\":32.87,\"TDS\":-1.73,\"MF\":15,\"YQ\":0,\"AGST\":180,\"MFT\":2.7,\"OT\":508,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":32.87,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4250.83,\"CostToCustomer\":4250.83,\"BaseFareCal\":4150.83,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4150.83,\"intOfferedFare\":4132.83,\"intPublishFare\":4165.7,\"TripjackMarkup\":0,\"TripjackCommission\":32.87,\"TripjackTDS\":\"1.73\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-09T09:35\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-09T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-08 17:42:06'),(280,'b2b61-2b662-7be8b-d31a4','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-843\",\"keyIndex\":125,\"SegFlightNumberArr\":\"6E-843\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1566420730_2BOMIDR6E843_43995192724066\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2022-08-29T15:00\",\"LocalFromTime\":\"2022-08-29 15:00\",\"FromUTCTime\":\"2022-08-29T15:00\",\"LocalToTime\":\"2022-08-29 16:10\",\"ToUTCTime\":\"2022-08-29T16:10\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Mon, 29 Aug\",\"ArrivalDateTxt\":\"Mon, 29 Aug\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12706\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IDR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":7586,\"PublishedFareTxt\":\"7,585\",\"ApiResultIndex\":\"5-1566420730_2BOMIDR6E843_43995192723886\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b2b61-2b662-7be8b-d31a4\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6200,\"Tax\":1311.4,\"YQTax\":0,\"OtherCharges\":1276,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7511.4,\"PublishedFare\":7586,\"PublishedFarePerPax\":3793,\"OfferedFare\":7467.22,\"CommissionEarned\":44.18,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.32,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1566420730_2BOMIDR6E843_43995192724066\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1311.4,\"BaseFareCal\":7485.22,\"BaseFare\":6200,\"CommissionEarned\":44.18,\"TDS\":-2.32,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1276,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":44.18,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7585.22,\"CostToCustomer\":7585.22,\"BaseFareCal\":7485.22,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7485.22,\"intOfferedFare\":7467.22,\"intPublishFare\":7511.4,\"TripjackMarkup\":0,\"TripjackCommission\":44.18,\"TripjackTDS\":\"2.32\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"03W\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Devi Ahilya Bai Holkar Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Indore\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IDR\",\"destinationArrTime\":\"2022-08-29T16:10\",\"SegFlightNumber\":\"6E-843\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-29T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-09 08:31:16'),(281,'8c090-f3b4b-53ef8-01c2d','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8724\",\"keyIndex\":27,\"SegFlightNumberArr\":\"SG-8724\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4140964173_0DELPATSG8724_250490277915615\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:40\",\"ArrivalTime\":\"12:45\",\"TravelDate\":\"2022-08-11T10:40\",\"LocalFromTime\":\"2022-08-11 10:40\",\"FromUTCTime\":\"2022-08-11T10:40\",\"LocalToTime\":\"2022-08-11 12:45\",\"ToUTCTime\":\"2022-08-11T12:45\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 11 Aug\",\"ArrivalDateTxt\":\"Thu, 11 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":28,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3204,\"PublishedFareTxt\":\"3,203\",\"ApiResultIndex\":\"4-4140964173_0DELPATSG8724_250490277914105\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"8c090-f3b4b-53ef8-01c2d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2443,\"Tax\":659.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":128,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3102.7,\"PublishedFare\":3204,\"PublishedFarePerPax\":3204,\"OfferedFare\":3085.3,\"CommissionEarned\":17.4,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4140964173_0DELPATSG8724_250490277915615\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":28,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":659.7,\"BaseFareCal\":3103.3,\"BaseFare\":2443,\"CommissionEarned\":17.4,\"TDS\":-0.92,\"MF\":15,\"YQ\":0,\"AGST\":128,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":17.4,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3203.3,\"CostToCustomer\":3203.3,\"BaseFareCal\":3103.3,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3103.3,\"intOfferedFare\":3085.3,\"intPublishFare\":3102.7,\"TripjackMarkup\":0,\"TripjackCommission\":17.4,\"TripjackTDS\":\"0.92\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-08-11T12:45\",\"SegFlightNumber\":\"SG-8724\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-11T10:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":28,\"strDepartureDtTime\":\"10:40\",\"strArrivalDtTime\":\"12:45\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-09 10:16:49'),(282,'d4a20-fe9c6-0d8b9-69a07','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-992\",\"keyIndex\":190,\"SegFlightNumberArr\":\"I5-992\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-3796362185_0BLRCCUI5992_67811421457393\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"23:30\",\"ArrivalTime\":\"02:05\",\"TravelDate\":\"2022-08-12T23:30\",\"LocalFromTime\":\"2022-08-12 23:30\",\"FromUTCTime\":\"2022-08-12T23:30\",\"LocalToTime\":\"2022-08-13 02:05\",\"ToUTCTime\":\"2022-08-13T02:05\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Fri, 12 Aug\",\"ArrivalDateTxt\":\"Sat, 13 Aug\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6508,\"PublishedFareTxt\":\"6,508\",\"ApiResultIndex\":\"11-3796362185_0BLRCCUI5992_67811421457393\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d4a20-fe9c6-0d8b9-69a07\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5600,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5917.7,\"PublishedFare\":6508,\"PublishedFarePerPax\":6508,\"OfferedFare\":5917.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-3796362185_0BLRCCUI5992_67811421457393\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":23,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":6007.7,\"BaseFare\":5600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":6507.7,\"CostToCustomer\":6507.7,\"BaseFareCal\":6007.7,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":6007.7,\"intOfferedFare\":5917.7,\"intPublishFare\":5917.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-13T02:05\",\"SegFlightNumber\":\"I5-992\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-08-12T23:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"23:30\",\"strArrivalDtTime\":\"02:05\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-09 10:55:51'),(283,'eb05f-a115b-85a50-a648d','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-385\",\"keyIndex\":14,\"SegFlightNumberArr\":\"SG-385\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-4795382962_0BOMGOPSG385_12946982963584\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:50\",\"ArrivalTime\":\"08:25\",\"TravelDate\":\"2022-08-10T05:50\",\"LocalFromTime\":\"2022-08-10 05:50\",\"FromUTCTime\":\"2022-08-10T05:50\",\"LocalToTime\":\"2022-08-10 08:25\",\"ToUTCTime\":\"2022-08-10T08:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"10685\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOP\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5608,\"PublishedFareTxt\":\"5,608\",\"ApiResultIndex\":\"11-4795382962_0BOMGOPSG385_12946982963584\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"eb05f-a115b-85a50-a648d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4700,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5017.7,\"PublishedFare\":5608,\"PublishedFarePerPax\":5608,\"OfferedFare\":5017.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-4795382962_0BOMGOPSG385_12946982963584\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":5107.7,\"BaseFare\":4700,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":5607.7,\"CostToCustomer\":5607.7,\"BaseFareCal\":5107.7,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":5107.7,\"intOfferedFare\":5017.7,\"intPublishFare\":5017.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02G\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Gorakhpur Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Gorakhpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOP\",\"destinationArrTime\":\"2022-08-10T08:25\",\"SegFlightNumber\":\"SG-385\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-10T05:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"05:50\",\"strArrivalDtTime\":\"08:25\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-09 13:00:08'),(284,'100e5-3e63e-43aff-b0c22','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-510\",\"keyIndex\":8,\"SegFlightNumberArr\":\"I5-510\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-0072644722_0HYDMAAI5510_5191158734289\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"09:20\",\"TravelDate\":\"2022-08-10T08:00\",\"LocalFromTime\":\"2022-08-10 08:00\",\"FromUTCTime\":\"2022-08-10T08:00\",\"LocalToTime\":\"2022-08-10 09:20\",\"ToUTCTime\":\"2022-08-10T09:20\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"12538\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"HYD\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5691,\"PublishedFareTxt\":\"5,691\",\"ApiResultIndex\":\"22-16-0072644722_0HYDMAAI5510_5191158733699\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"100e5-3e63e-43aff-b0c22\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4499,\"Tax\":1122.7,\"YQTax\":0,\"OtherCharges\":877,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":228,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5621.7,\"PublishedFare\":5691,\"PublishedFarePerPax\":5691,\"OfferedFare\":5572.55,\"CommissionEarned\":49.15,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.59,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-0072644722_0HYDMAAI5510_5191158734289\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Instant HOT DEAL\",\"fareremarks\":\"Issues Instantly , Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1122.7,\"BaseFareCal\":5590.55,\"BaseFare\":4499,\"CommissionEarned\":49.15,\"TDS\":-2.59,\"MF\":15,\"YQ\":0,\"AGST\":228,\"MFT\":2.7,\"OT\":877,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":49.15,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5690.55,\"CostToCustomer\":5690.55,\"BaseFareCal\":5590.55,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5590.55,\"intOfferedFare\":5572.55,\"intPublishFare\":5621.7,\"TripjackMarkup\":0,\"TripjackCommission\":49.15,\"TripjackTDS\":\"2.59\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"01D\"},\"Segments\":[{\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-08-10T09:20\",\"SegFlightNumber\":\"I5-510\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2022-08-10T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]},{\"keyIndex\":7,\"FlightNumber\":\"I5-517\",\"SegFlightNumberArr\":\"I5-517\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-0072644722_0MAAHYDI5517_5191230057501\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:15\",\"ArrivalTime\":\"11:25\",\"TravelDate\":\"2022-08-10T10:15\",\"LocalFromTime\":\"2022-08-10 10:15\",\"FromUTCTime\":\"2022-08-10T10:15\",\"LocalToTime\":\"2022-08-10 11:25\",\"ToUTCTime\":\"2022-08-10T11:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"12538\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5107.7,\"PublishedFareTxt\":\"5,108\",\"ApiResultIndex\":\"11-0072644722_0MAAHYDI5517_5191230057501\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"100e5-3e63e-43aff-b0c22\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4200,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4517.7,\"PublishedFare\":5108,\"PublishedFarePerPax\":5108,\"OfferedFare\":4517.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-0072644722_0MAAHYDI5517_5191230057501\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":4607.7,\"BaseFare\":4200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":5107.7,\"CostToCustomer\":5107.7,\"BaseFareCal\":4607.7,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":4607.7,\"intOfferedFare\":4517.7,\"intPublishFare\":4517.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"07W\"},\"Segments\":[{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-08-10T11:25\",\"SegFlightNumber\":\"I5-517\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":null,\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-08-10T10:15\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:15\",\"strArrivalDtTime\":\"11:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":7,\"FlightNumber\":\"I5-517\",\"SegFlightNumberArr\":\"I5-517\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-0072644722_0MAAHYDI5517_5191230057501\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:15\",\"ArrivalTime\":\"11:25\",\"TravelDate\":\"2022-08-10T10:15\",\"LocalFromTime\":\"2022-08-10 10:15\",\"FromUTCTime\":\"2022-08-10T10:15\",\"LocalToTime\":\"2022-08-10 11:25\",\"ToUTCTime\":\"2022-08-10T11:25\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Wed, 10 Aug\",\"ArrivalDateTxt\":\"Wed, 10 Aug\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"12538\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"MAA\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5107.7,\"PublishedFareTxt\":\"5,108\",\"ApiResultIndex\":\"11-0072644722_0MAAHYDI5517_5191230057501\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"100e5-3e63e-43aff-b0c22\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4200,\"Tax\":317.7,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4517.7,\"PublishedFare\":5108,\"PublishedFarePerPax\":5108,\"OfferedFare\":4517.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-0072644722_0MAAHYDI5517_5191230057501\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.7,\"BaseFareCal\":4607.7,\"BaseFare\":4200,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":5107.7,\"CostToCustomer\":5107.7,\"BaseFareCal\":4607.7,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":4607.7,\"intOfferedFare\":4517.7,\"intPublishFare\":4517.7,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"07W\"},\"Segments\":[{\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-08-10T11:25\",\"SegFlightNumber\":\"I5-517\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":null,\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-08-10T10:15\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:15\",\"strArrivalDtTime\":\"11:25\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\"}}','2022-08-09 15:15:37'),(285,'d5f5f-1de0a-72371-1c970','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6324\",\"keyIndex\":0,\"SegFlightNumberArr\":\"6E-6324\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4278007950_0CCUPAT6E6324_21471749214228\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:05\",\"ArrivalTime\":\"08:30\",\"TravelDate\":\"2022-08-12T07:05\",\"LocalFromTime\":\"2022-08-12 07:05\",\"FromUTCTime\":\"2022-08-12T07:05\",\"LocalToTime\":\"2022-08-12 08:30\",\"ToUTCTime\":\"2022-08-12T08:30\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Fri, 12 Aug\",\"ArrivalDateTxt\":\"Fri, 12 Aug\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":\"14323\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4961,\"PublishedFareTxt\":\"4,961\",\"ApiResultIndex\":\"5-4278007950_0CCUPAT6E6324_21471749213208\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d5f5f-1de0a-72371-1c970\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3600,\"Tax\":1376.7,\"YQTax\":0,\"OtherCharges\":1359,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4976.7,\"PublishedFare\":4840,\"PublishedFarePerPax\":4840,\"OfferedFare\":4839.9,\"CommissionEarned\":136.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-7.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4278007950_0CCUPAT6E6324_21471749214228\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1376.7,\"BaseFareCal\":4839.9,\"BaseFare\":3600,\"CommissionEarned\":136.8,\"TDS\":-7.2,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1359,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":136.8,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":4839.9,\"CostToCustomer\":4839.9,\"BaseFareCal\":4839.9,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":4839.9,\"intOfferedFare\":4839.9,\"intPublishFare\":4976.7,\"TripjackMarkup\":0,\"TripjackCommission\":136.8,\"TripjackTDS\":\"7.2\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"00N\"},\"Segments\":[{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-08-12T08:30\",\"SegFlightNumber\":\"6E-6324\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-12T07:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"07:05\",\"strArrivalDtTime\":\"08:30\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]},{\"keyIndex\":0,\"FlightNumber\":\"6E-485\",\"SegFlightNumberArr\":\"6E-485\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4278007950_0PATCCU6E485_21471748834781\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:50\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2022-08-16T19:50\",\"LocalFromTime\":\"2022-08-16 19:50\",\"FromUTCTime\":\"2022-08-16T19:50\",\"LocalToTime\":\"2022-08-16 20:55\",\"ToUTCTime\":\"2022-08-16T20:55\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":\"14323\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4889.2,\"PublishedFareTxt\":\"4,889\",\"ApiResultIndex\":\"5-4278007950_0PATCCU6E485_21471748834781\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"d5f5f-1de0a-72371-1c970\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":799.7,\"YQTax\":0,\"OtherCharges\":577,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":205,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4890,\"PublishedFarePerPax\":4890,\"OfferedFare\":4771.2,\"CommissionEarned\":28.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4278007950_0PATCCU6E485_21471748835711\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":799.7,\"BaseFareCal\":4789.2,\"BaseFare\":4000,\"CommissionEarned\":28.5,\"TDS\":-1.5,\"MF\":15,\"YQ\":0,\"AGST\":205,\"MFT\":2.7,\"OT\":577,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":28.5,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4889.2,\"CostToCustomer\":4889.2,\"BaseFareCal\":4789.2,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4789.2,\"intOfferedFare\":4771.2,\"intPublishFare\":4799.7,\"TripjackMarkup\":0,\"TripjackCommission\":28.5,\"TripjackTDS\":\"1.5\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"035\"},\"Segments\":[{\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-16T20:55\",\"SegFlightNumber\":\"6E-485\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":null,\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-08-16T19:50\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:50\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\"}],\"FlightBookingDataInbound\":{\"keyIndex\":0,\"FlightNumber\":\"6E-485\",\"SegFlightNumberArr\":\"6E-485\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4278007950_0PATCCU6E485_21471748834781\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:50\",\"ArrivalTime\":\"20:55\",\"TravelDate\":\"2022-08-16T19:50\",\"LocalFromTime\":\"2022-08-16 19:50\",\"FromUTCTime\":\"2022-08-16T19:50\",\"LocalToTime\":\"2022-08-16 20:55\",\"ToUTCTime\":\"2022-08-16T20:55\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":\"14323\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4889.2,\"PublishedFareTxt\":\"4,889\",\"ApiResultIndex\":\"5-4278007950_0PATCCU6E485_21471748834781\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"d5f5f-1de0a-72371-1c970\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4000,\"Tax\":799.7,\"YQTax\":0,\"OtherCharges\":577,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":205,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4890,\"PublishedFarePerPax\":4890,\"OfferedFare\":4771.2,\"CommissionEarned\":28.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4278007950_0PATCCU6E485_21471748835711\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":799.7,\"BaseFareCal\":4789.2,\"BaseFare\":4000,\"CommissionEarned\":28.5,\"TDS\":-1.5,\"MF\":15,\"YQ\":0,\"AGST\":205,\"MFT\":2.7,\"OT\":577,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":28.5,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4889.2,\"CostToCustomer\":4889.2,\"BaseFareCal\":4789.2,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4789.2,\"intOfferedFare\":4771.2,\"intPublishFare\":4799.7,\"TripjackMarkup\":0,\"TripjackCommission\":28.5,\"TripjackTDS\":\"1.5\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"035\"},\"Segments\":[{\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-16T20:55\",\"SegFlightNumber\":\"6E-485\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":null,\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-08-16T19:50\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:50\",\"strArrivalDtTime\":\"20:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\"}}','2022-08-10 22:11:04'),(286,'5498d-e1cab-7ae68-9cb83','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-648\",\"keyIndex\":0,\"SegFlightNumberArr\":\"AI-648\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-8136600383_0JGABOMAI648_34668716331212\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"13:00\",\"ArrivalTime\":\"14:10\",\"TravelDate\":\"2022-08-18T13:00\",\"LocalFromTime\":\"2022-08-18 13:00\",\"FromUTCTime\":\"2022-08-18T13:00\",\"LocalToTime\":\"2022-08-18 14:10\",\"ToUTCTime\":\"2022-08-18T14:10\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Thu, 18 Aug\",\"ArrivalDateTxt\":\"Thu, 18 Aug\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"13022\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"JGA\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7092,\"PublishedFareTxt\":\"7,091\",\"ApiResultIndex\":\"21-10-15-2-8136600383_0JGABOMAI648_34668716331212\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5498d-e1cab-7ae68-9cb83\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6480,\"Tax\":933.7,\"YQTax\":0,\"OtherCharges\":413,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":333,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":7413.7,\"PublishedFare\":7092,\"PublishedFarePerPax\":7092,\"OfferedFare\":7032.01,\"CommissionEarned\":381.69,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-20.09,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-8136600383_0JGABOMAI648_34668716331212\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":933.7,\"BaseFareCal\":7041.01,\"BaseFare\":6480,\"CommissionEarned\":381.69,\"TDS\":-20.09,\"MF\":15,\"YQ\":0,\"AGST\":333,\"MFT\":2.7,\"OT\":413,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":381.69,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":7091.01,\"CostToCustomer\":7091.01,\"BaseFareCal\":7041.01,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":7041.01,\"intOfferedFare\":7032.01,\"intPublishFare\":7413.7,\"TripjackMarkup\":0,\"TripjackCommission\":381.69,\"TripjackTDS\":\"20.09\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"020\"},\"Segments\":[{\"originAirportName\":\"Govardhanpur Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jamnagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-18T14:10\",\"SegFlightNumber\":\"AI-648\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"JGA\",\"originDepTime\":\"2022-08-18T13:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:00\",\"strArrivalDtTime\":\"14:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"$$hashKey\":\"025\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-11 10:26:34'),(290,'41a3a-36d88-d14b6-2f14b','{\"FlightBookingData\":[{\"bookingId\":\"TJ106339927792\",\"FlightNumber\":\"G8-719\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"07:35\",\"TravelDate\":\"2022-08-12T06:00\",\"LocalFromTime\":\"2022-08-12 06:00\",\"FromUTCTime\":\"2022-08-12T06:00\",\"LocalToTime\":\"2022-08-12 07:35\",\"ToUTCTime\":\"2022-08-12T07:35\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Fri, 12 Aug\",\"ArrivalDateTxt\":\"Fri, 12 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3056.7,\"PublishedFareTxt\":\"3,057\",\"ApiResultIndex\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-AMD\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARFT\":150,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2399,\"Tax\":657.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3056.7,\"PublishedFare\":3133.68,\"OfferedFare\":3015.68,\"CommissionEarned\":41.02,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.16,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3447008646_0DELAMDG8719_2266089012757\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":657.7,\"BaseFareCal\":3033.68,\"BaseFare\":2399,\"CommissionEarned\":41.02,\"TDS\":-2.16,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.02,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3133.68,\"CostToCustomer\":3133.68,\"BaseFareCal\":3033.68,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3033.68,\"intOfferedFare\":3015.68,\"intPublishFare\":3056.7,\"TripjackMarkup\":0,\"TripjackCommission\":41.02,\"TripjackTDS\":\"2.16\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"573\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-08-12T07:35\",\"SegFlightNumber\":\"G8-719\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-12T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"573\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"41a3a-36d88-d14b6-2f14b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106339927792\",\"FlightNumber\":\"G8-719\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"strTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"07:35\",\"TravelDate\":\"2022-08-12T06:00\",\"LocalFromTime\":\"2022-08-12 06:00\",\"FromUTCTime\":\"2022-08-12T06:00\",\"LocalToTime\":\"2022-08-12 07:35\",\"ToUTCTime\":\"2022-08-12T07:35\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Fri, 12 Aug\",\"ArrivalDateTxt\":\"Fri, 12 Aug\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3056.7,\"ApiResultIndex\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"41a3a-36d88-d14b6-2f14b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2399,\"Tax\":657.7,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":126,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3056.7,\"PublishedFare\":3133.68,\"OfferedFare\":3015.68,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":657.7,\"BaseFareCal\":3033.68,\"BaseFare\":2399,\"CommissionEarned\":41.02,\"TDS\":-2.16,\"MF\":15,\"YQ\":0,\"AGST\":126,\"MFT\":2.7,\"OT\":514,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"573\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-08-12T07:35\",\"SegFlightNumber\":\"G8-719\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-12T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"07:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-3447008646_0DELAMDG8719_74823579248441\",\"localFromDateTime\":\"2022-08-12 06:00\",\"localToDateTime\":\"2022-08-12 07:35\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"63\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"35\",\"CustomerMemSysId\":[\"35\"],\"flight_booking_id\":[\"63\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"rahulkumar@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7478747899\",\"FirstName\":\"RAHUL\",\"LastName\":\"KUMAR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-11-10-32-24\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"35\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"35\",\"CustomerMemSysId\":[\"35\"],\"flight_booking_customer\":[[\"104\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Ahmedabad (AMD)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"AMD\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt (AMD), India\",\"departure_date\":\"12\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Sardar Vallabh Bhai Patel Intl Arpt (AMD)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"AMD\",\"from\":\"DEL\",\"to\":\"AMD\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt (AMD), India\",\"sourceCityId\":7701,\"destinationCityId\":296,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-12\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"41a3a-36d88-d14b6-2f14b\",\"from_city_\":\"1__DEL-AMD\"},\"sessionData\":{\"CustomerSysId\":\"35\",\"CustomerMemSysId\":[\"35\"],\"flight_booking_id\":[\"63\"]},\"validateCoupon\":null,\"validateData\":null,\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"427037\",\"TPSysId\":\"427038\",\"VersionId\":[\"91630\"],\"CustomerSysId\":\"224459\",\"TrxId\":\"31278\",\"FareBreakdownid\":[\"358082\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"7478747899\",\"leadEmail\":\"rahulkumar@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"relation-1\":\"0\",\"passenger-firstname-1\":\"RAHUL\",\"passenger-lastname-1\":\"KUMAR\",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"\",\"passenger-country-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"41a3a-36d88-d14b6-2f14b\",\"countryCodeISO\":\"IN\"}}','2022-08-11 10:32:50'),(294,'ecfdb-01a14-737d7-a7662','{\"BookingData\":[{\"bookingId\":\"TJ107139928839\",\"FlightNumber\":\"I5-554\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"21:40\",\"ArrivalTime\":\"00:05\",\"TravelDate\":\"2022-09-24T21:40\",\"LocalFromTime\":\"2022-09-24 21:40\",\"FromUTCTime\":\"2022-09-24T21:40\",\"LocalToTime\":\"2022-09-25 00:05\",\"ToUTCTime\":\"2022-09-25T00:05\",\"IsDirect\":0,\"FareClass\":\"EP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 24 Sep\",\"ArrivalDateTxt\":\"Sun, 25 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":22238,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"PNQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5024.7,\"PublishedFareTxt\":\"5,025\",\"ApiResultIndex\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"CCU-PNQ\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-72 hrs Rs 3,250 + Fare Difference __nls__ Before 72 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3826,\"Tax\":1198.7,\"YQTax\":0,\"OtherCharges\":987,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":194,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5024.7,\"PublishedFare\":5100.9,\"OfferedFare\":4982.9,\"CommissionEarned\":41.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-5783709117_0CCUPNQI5554_7764604024793\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1198.7,\"BaseFareCal\":5000.9,\"BaseFare\":3826,\"CommissionEarned\":41.8,\"TDS\":-2.2,\"MF\":15,\"YQ\":0,\"AGST\":194,\"MFT\":2.7,\"OT\":987,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.8,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5100.9,\"CostToCustomer\":5100.9,\"BaseFareCal\":5000.9,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5000.9,\"intOfferedFare\":4982.9,\"intPublishFare\":5024.7,\"TripjackMarkup\":0,\"TripjackCommission\":41.8,\"TripjackTDS\":\"2.2\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"43\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lohegaon Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Pune\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PNQ\",\"destinationArrTime\":\"2022-09-25T00:05\",\"SegFlightNumber\":\"I5-554\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-24T21:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:40\",\"strArrivalDtTime\":\"00:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"SDAI\",\"Price\":200,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"RPCB\",\"Price\":300,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"JMCB\",\"Price\":300,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"FTCB\",\"Price\":300,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"XCCB\",\"Price\":400,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"SICB\",\"Price\":400,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"RICB\",\"Price\":400,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"PTCB\",\"Price\":400,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"KACB\",\"Price\":400,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"GACB\",\"Price\":400,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"COCB\",\"Price\":400,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"CJCB\",\"Price\":400,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"43\",\"Code\":\"AMCB\",\"Price\":400,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ecfdb-01a14-737d7-a7662\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"PNQ\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":22238,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107139928839\",\"FlightNumber\":\"I5-554\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"strTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"21:40\",\"ArrivalTime\":\"00:05\",\"TravelDate\":\"2022-09-24T21:40\",\"LocalFromTime\":\"2022-09-24 21:40\",\"FromUTCTime\":\"2022-09-24T21:40\",\"LocalToTime\":\"2022-09-25 00:05\",\"ToUTCTime\":\"2022-09-25T00:05\",\"IsDirect\":0,\"FareClass\":\"EP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sat, 24 Sep\",\"ArrivalDateTxt\":\"Sun, 25 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":22238,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"PNQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5024.7,\"ApiResultIndex\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"ecfdb-01a14-737d7-a7662\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3826,\"Tax\":1198.7,\"YQTax\":0,\"OtherCharges\":987,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":194,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5024.7,\"PublishedFare\":5100.9,\"OfferedFare\":4982.9,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1198.7,\"BaseFareCal\":5000.9,\"BaseFare\":3826,\"CommissionEarned\":41.8,\"TDS\":-2.2,\"MF\":15,\"YQ\":0,\"AGST\":194,\"MFT\":2.7,\"OT\":987,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"43\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lohegaon Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Pune\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PNQ\",\"destinationArrTime\":\"2022-09-25T00:05\",\"SegFlightNumber\":\"I5-554\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EP\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-24T21:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:40\",\"strArrivalDtTime\":\"00:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-5783709117_0CCUPNQI5554_39045646072797\",\"localFromDateTime\":\"2022-09-24 21:40\",\"localToDateTime\":\"2022-09-25 00:05\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"PNQ\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":22238,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Kolkata (CCU)\",\"mytrip_city_to\":\"Pune (PNQ)\",\"source_city\":\"CCU\",\"ContSysId_1\":\"101\",\"destination_city\":\"PNQ\",\"ContSysId\":\"101\",\"source\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"destination\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"departure_date\":\"24\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"to_mytrip_city\":\" IN - Lohegaon Arpt (PNQ)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"CCU\",\"destinationCityAirportCode\":\"PNQ\",\"from\":\"CCU\",\"to\":\"PNQ\",\"sourceCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"destinationCityText\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"sourceCityId\":14323,\"destinationCityId\":22238,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"24\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-24\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"ecfdb-01a14-737d7-a7662\",\"from_city_\":\"1__CCU-PNQ\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Kolkata+%28CCU%29&mytrip_city_to=Pune+%28PNQ%29&source_city=CCU&ContSysId_1=101&destination_city=PNQ&ContSysId=101&source=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29%2C+India&destination=Pune%2C+IN+-+Lohegaon+Arpt+%28PNQ%29%2C+India&departure_date=24%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29&to_mytrip_city=+IN+-+Lohegaon+Arpt+%28PNQ%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"psujoy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9767334589\",\"FirstName\":\"Sujoy\",\"LastName\":\"Paul\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-11-10-45-27\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"36\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"427045\",\"TPSysId\":\"427046\",\"VersionId\":[\"91634\"],\"CustomerSysId\":\"224463\",\"TrxId\":\"31279\",\"FareBreakdownid\":[\"358083\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"105\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"36\",\"CustomerMemSysId\":[\"36\"],\"flight_booking_id\":[\"64\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"64\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5100.9},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"224463\",\"TPSysId\":\"427046\",\"MasterTPSysId\":\"427045\",\"ProposalID\":\"427046\\/V1\",\"InvoiceDate\":\"2022-08-11\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-11\",\"PaymentDate\":\"2022-08-11\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5064.9,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5100.9,\"TotalDueAmount\":0,\"InvoiceValue\":5100.9,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"CCU-PNQ-AirAsia India I5-554\",\"ItemQty\":1,\"ItemRates\":4864.9,\"Total\":4864.9,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5100.9,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":5064.9,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-11 10:46:12'),(295,'9bd12-4c5b2-c3df7-c42a3','{\"FlightBookingData\":[{\"FlightNumber\":\"IX-251\",\"keyIndex\":85,\"SegFlightNumberArr\":\"IX-251\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-7218560125_0BOMSHJIX251_51578331182364\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:20\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-08-16T02:20\",\"LocalFromTime\":\"2022-08-16 02:20\",\"FromUTCTime\":\"2022-08-16T02:20\",\"LocalToTime\":\"2022-08-16 04:00\",\"ToUTCTime\":\"2022-08-16T04:00\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"24993\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":22691,\"PublishedFareTxt\":\"22,691\",\"ApiResultIndex\":\"8-7218560125_0BOMSHJIX251_51578331182364\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9bd12-4c5b2-c3df7-c42a3\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14900,\"Tax\":7790.98,\"YQTax\":4200,\"OtherCharges\":2603.28,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":970,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":22690.98,\"PublishedFare\":22691,\"PublishedFarePerPax\":22691,\"OfferedFare\":22690.98,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-7218560125_0BOMSHJIX251_51578331182364\",\"IsGSTRequired\":false,\"fareIdentifier\":\"EXPRESS VALUE\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":8,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7790.98,\"BaseFareCal\":22690.98,\"BaseFare\":14900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":4200,\"AGST\":970,\"MFT\":2.7,\"OT\":2603.28,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":22690.98,\"CostToCustomer\":22690.98,\"BaseFareCal\":22690.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":22690.98,\"intOfferedFare\":22690.98,\"intPublishFare\":22690.98,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"02P\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-08-16T04:00\",\"SegFlightNumber\":\"IX-251\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T02:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 KG Included\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"02:20\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"IX-251\",\"keyIndex\":85,\"SegFlightNumberArr\":\"IX-251\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-7218560125_0BOMSHJIX251_51578331182364\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:20\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-08-16T02:20\",\"LocalFromTime\":\"2022-08-16 02:20\",\"FromUTCTime\":\"2022-08-16T02:20\",\"LocalToTime\":\"2022-08-16 04:00\",\"ToUTCTime\":\"2022-08-16T04:00\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"24993\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":22691,\"PublishedFareTxt\":\"22,691\",\"ApiResultIndex\":\"8-7218560125_0BOMSHJIX251_51578331182364\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9bd12-4c5b2-c3df7-c42a3\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14900,\"Tax\":7790.98,\"YQTax\":4200,\"OtherCharges\":2603.28,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":970,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":22690.98,\"PublishedFare\":22691,\"PublishedFarePerPax\":22691,\"OfferedFare\":22690.98,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-7218560125_0BOMSHJIX251_51578331182364\",\"IsGSTRequired\":false,\"fareIdentifier\":\"EXPRESS VALUE\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":8,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7790.98,\"BaseFareCal\":22690.98,\"BaseFare\":14900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":4200,\"AGST\":970,\"MFT\":2.7,\"OT\":2603.28,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":22690.98,\"CostToCustomer\":22690.98,\"BaseFareCal\":22690.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":22690.98,\"intOfferedFare\":22690.98,\"intPublishFare\":22690.98,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-08-16T04:00\",\"SegFlightNumber\":\"IX-251\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T02:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 KG Included\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"02:20\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"02R\"}]}],\"FlightBookingDataInbound\":null}','2022-08-11 12:37:51'),(296,'4c38d-14bdf-6db31-ccef4','{\"FlightBookingData\":[{\"FlightNumber\":\"IX-251\",\"keyIndex\":0,\"SegFlightNumberArr\":\"IX-251\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-0620219905_0BOMSHJIX251_65671275447231\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:20\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-08-16T02:20\",\"LocalFromTime\":\"2022-08-16 02:20\",\"FromUTCTime\":\"2022-08-16T02:20\",\"LocalToTime\":\"2022-08-16 04:00\",\"ToUTCTime\":\"2022-08-16T04:00\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"24993\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":22691,\"PublishedFareTxt\":\"22,691\",\"ApiResultIndex\":\"8-0620219905_0BOMSHJIX251_65671275447231\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"4c38d-14bdf-6db31-ccef4\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14900,\"Tax\":7790.98,\"YQTax\":4200,\"OtherCharges\":2603.28,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":970,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":22690.98,\"PublishedFare\":22691,\"PublishedFarePerPax\":22691,\"OfferedFare\":22690.98,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-0620219905_0BOMSHJIX251_65671275447231\",\"IsGSTRequired\":false,\"fareIdentifier\":\"EXPRESS VALUE\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7790.98,\"BaseFareCal\":22690.98,\"BaseFare\":14900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":4200,\"AGST\":970,\"MFT\":2.7,\"OT\":2603.28,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":22690.98,\"CostToCustomer\":22690.98,\"BaseFareCal\":22690.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":22690.98,\"intOfferedFare\":22690.98,\"intPublishFare\":22690.98,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"021\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-08-16T04:00\",\"SegFlightNumber\":\"IX-251\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T02:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 KG Included\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"02:20\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"IX-251\",\"keyIndex\":0,\"SegFlightNumberArr\":\"IX-251\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-0620219905_0BOMSHJIX251_65671275447231\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:20\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-08-16T02:20\",\"LocalFromTime\":\"2022-08-16 02:20\",\"FromUTCTime\":\"2022-08-16T02:20\",\"LocalToTime\":\"2022-08-16 04:00\",\"ToUTCTime\":\"2022-08-16T04:00\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"24993\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":22691,\"PublishedFareTxt\":\"22,691\",\"ApiResultIndex\":\"8-0620219905_0BOMSHJIX251_65671275447231\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"4c38d-14bdf-6db31-ccef4\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14900,\"Tax\":7790.98,\"YQTax\":4200,\"OtherCharges\":2603.28,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":970,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":22690.98,\"PublishedFare\":22691,\"PublishedFarePerPax\":22691,\"OfferedFare\":22690.98,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-0620219905_0BOMSHJIX251_65671275447231\",\"IsGSTRequired\":false,\"fareIdentifier\":\"EXPRESS VALUE\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7790.98,\"BaseFareCal\":22690.98,\"BaseFare\":14900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":4200,\"AGST\":970,\"MFT\":2.7,\"OT\":2603.28,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":22690.98,\"CostToCustomer\":22690.98,\"BaseFareCal\":22690.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":22690.98,\"intOfferedFare\":22690.98,\"intPublishFare\":22690.98,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-08-16T04:00\",\"SegFlightNumber\":\"IX-251\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T02:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 KG Included\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"02:20\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"023\"}]}],\"FlightBookingDataInbound\":null}','2022-08-11 13:56:13'),(297,'7b1ed-e549e-96c36-ccc93','{\"FlightBookingData\":[{\"FlightNumber\":\"IX-251\",\"keyIndex\":0,\"SegFlightNumberArr\":\"IX-251\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-9221214864_0BOMSHJIX251_6712044028299\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:20\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-08-16T02:20\",\"LocalFromTime\":\"2022-08-16 02:20\",\"FromUTCTime\":\"2022-08-16T02:20\",\"LocalToTime\":\"2022-08-16 04:00\",\"ToUTCTime\":\"2022-08-16T04:00\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"24993\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":22691,\"PublishedFareTxt\":\"22,691\",\"ApiResultIndex\":\"8-9221214864_0BOMSHJIX251_6712044028299\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"7b1ed-e549e-96c36-ccc93\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14900,\"Tax\":7790.98,\"YQTax\":4200,\"OtherCharges\":2603.28,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":970,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":22690.98,\"PublishedFare\":22691,\"PublishedFarePerPax\":22691,\"OfferedFare\":22690.98,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-9221214864_0BOMSHJIX251_6712044028299\",\"IsGSTRequired\":false,\"fareIdentifier\":\"EXPRESS VALUE\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7790.98,\"BaseFareCal\":22690.98,\"BaseFare\":14900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":4200,\"AGST\":970,\"MFT\":2.7,\"OT\":2603.28,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":22690.98,\"CostToCustomer\":22690.98,\"BaseFareCal\":22690.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":22690.98,\"intOfferedFare\":22690.98,\"intPublishFare\":22690.98,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"021\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-08-16T04:00\",\"SegFlightNumber\":\"IX-251\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T02:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 KG Included\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:20\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"IX-251\",\"keyIndex\":0,\"SegFlightNumberArr\":\"IX-251\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-9221214864_0BOMSHJIX251_6712044028299\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:20\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-08-16T02:20\",\"LocalFromTime\":\"2022-08-16 02:20\",\"FromUTCTime\":\"2022-08-16T02:20\",\"LocalToTime\":\"2022-08-16 04:00\",\"ToUTCTime\":\"2022-08-16T04:00\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"24993\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":22691,\"PublishedFareTxt\":\"22,691\",\"ApiResultIndex\":\"8-9221214864_0BOMSHJIX251_6712044028299\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"7b1ed-e549e-96c36-ccc93\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14900,\"Tax\":7790.98,\"YQTax\":4200,\"OtherCharges\":2603.28,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":970,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":22690.98,\"PublishedFare\":22691,\"PublishedFarePerPax\":22691,\"OfferedFare\":22690.98,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-9221214864_0BOMSHJIX251_6712044028299\",\"IsGSTRequired\":false,\"fareIdentifier\":\"EXPRESS VALUE\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7790.98,\"BaseFareCal\":22690.98,\"BaseFare\":14900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":4200,\"AGST\":970,\"MFT\":2.7,\"OT\":2603.28,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":22690.98,\"CostToCustomer\":22690.98,\"BaseFareCal\":22690.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":22690.98,\"intOfferedFare\":22690.98,\"intPublishFare\":22690.98,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-08-16T04:00\",\"SegFlightNumber\":\"IX-251\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T02:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 KG Included\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:20\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"023\"}]}],\"FlightBookingDataInbound\":null}','2022-08-11 15:03:52'),(298,'3da52-84be0-fe18b-79d9a','{\"FlightBookingData\":[{\"FlightNumber\":\"IX-251\",\"keyIndex\":0,\"SegFlightNumberArr\":\"IX-251\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-0180609842_0BOMSHJIX251_94808161504570\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:20\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-08-16T02:20\",\"LocalFromTime\":\"2022-08-16 02:20\",\"FromUTCTime\":\"2022-08-16T02:20\",\"LocalToTime\":\"2022-08-16 04:00\",\"ToUTCTime\":\"2022-08-16T04:00\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"24993\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":22691,\"PublishedFareTxt\":\"22,691\",\"ApiResultIndex\":\"8-0180609842_0BOMSHJIX251_94808161504570\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3da52-84be0-fe18b-79d9a\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14900,\"Tax\":7790.98,\"YQTax\":4200,\"OtherCharges\":2603.28,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":970,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":22690.98,\"PublishedFare\":22691,\"PublishedFarePerPax\":22691,\"OfferedFare\":22690.98,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-0180609842_0BOMSHJIX251_94808161504570\",\"IsGSTRequired\":false,\"fareIdentifier\":\"EXPRESS VALUE\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7790.98,\"BaseFareCal\":22690.98,\"BaseFare\":14900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":4200,\"AGST\":970,\"MFT\":2.7,\"OT\":2603.28,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":22690.98,\"CostToCustomer\":22690.98,\"BaseFareCal\":22690.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":22690.98,\"intOfferedFare\":22690.98,\"intPublishFare\":22690.98,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"021\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-08-16T04:00\",\"SegFlightNumber\":\"IX-251\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T02:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 KG Included\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"02:20\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"IX-251\",\"keyIndex\":0,\"SegFlightNumberArr\":\"IX-251\",\"AirlineName\":\"Ai express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-0180609842_0BOMSHJIX251_94808161504570\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"02:20\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-08-16T02:20\",\"LocalFromTime\":\"2022-08-16 02:20\",\"FromUTCTime\":\"2022-08-16T02:20\",\"LocalToTime\":\"2022-08-16 04:00\",\"ToUTCTime\":\"2022-08-16T04:00\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"24993\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":22691,\"PublishedFareTxt\":\"22,691\",\"ApiResultIndex\":\"8-0180609842_0BOMSHJIX251_94808161504570\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3da52-84be0-fe18b-79d9a\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14900,\"Tax\":7790.98,\"YQTax\":4200,\"OtherCharges\":2603.28,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":970,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":22690.98,\"PublishedFare\":22691,\"PublishedFarePerPax\":22691,\"OfferedFare\":22690.98,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-0180609842_0BOMSHJIX251_94808161504570\",\"IsGSTRequired\":false,\"fareIdentifier\":\"EXPRESS VALUE\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7790.98,\"BaseFareCal\":22690.98,\"BaseFare\":14900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":4200,\"AGST\":970,\"MFT\":2.7,\"OT\":2603.28,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":0,\"PublishFare\":22690.98,\"CostToCustomer\":22690.98,\"BaseFareCal\":22690.98,\"intCommisionEarnedForAgency\":0,\"CostToCompany\":22690.98,\"intOfferedFare\":22690.98,\"intPublishFare\":22690.98,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-08-16T04:00\",\"SegFlightNumber\":\"IX-251\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T02:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 KG Included\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"02:20\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"023\"}]}],\"FlightBookingDataInbound\":null}','2022-08-11 16:01:47'),(299,'fbab5-e46a4-84936-4cd69','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-242\",\"keyIndex\":131,\"SegFlightNumberArr\":\"SG-242\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6887599718_0CCUBOMSG242_53972978502699\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"09:35\",\"ArrivalTime\":\"12:20\",\"TravelDate\":\"2022-08-13T09:35\",\"LocalFromTime\":\"2022-08-13 09:35\",\"FromUTCTime\":\"2022-08-13T09:35\",\"LocalToTime\":\"2022-08-13 12:20\",\"ToUTCTime\":\"2022-08-13T12:20\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sat, 13 Aug\",\"ArrivalDateTxt\":\"Sat, 13 Aug\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"14323\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":20,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":11444,\"PublishedFareTxt\":\"11,443\",\"ApiResultIndex\":\"4-6887599718_0CCUBOMSG242_53972978502699\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"fbab5-e46a4-84936-4cd69\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8750,\"Tax\":2561.4,\"YQTax\":0,\"OtherCharges\":2082,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":444,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11311.4,\"PublishedFare\":11347,\"PublishedFarePerPax\":5674,\"OfferedFare\":11228.28,\"CommissionEarned\":83.12,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6887599718_0CCUBOMSG242_53972978502699\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":20,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2561.4,\"BaseFareCal\":11246.28,\"BaseFare\":8750,\"CommissionEarned\":83.12,\"TDS\":-4.38,\"MF\":30,\"YQ\":0,\"AGST\":444,\"MFT\":5.4,\"OT\":2082,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":83.12,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":11346.28,\"CostToCustomer\":11346.28,\"BaseFareCal\":11246.28,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":11246.28,\"intOfferedFare\":11228.28,\"intPublishFare\":11311.4,\"TripjackMarkup\":0,\"TripjackCommission\":83.12,\"TripjackTDS\":\"4.38\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-13T12:20\",\"SegFlightNumber\":\"SG-242\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-13T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":20,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-12 11:53:20'),(300,'76b23-2d3d7-b21cb-fb17e','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5034\",\"keyIndex\":36,\"SegFlightNumberArr\":\"6E-5034\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4970720987_0STVBLR6E5034_600746592271\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:25\",\"ArrivalTime\":\"21:15\",\"TravelDate\":\"2022-08-14T19:25\",\"LocalFromTime\":\"2022-08-14 19:25\",\"FromUTCTime\":\"2022-08-14T19:25\",\"LocalToTime\":\"2022-08-14 21:15\",\"ToUTCTime\":\"2022-08-14T21:15\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Sun, 14 Aug\",\"ArrivalDateTxt\":\"Sun, 14 Aug\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"26438\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"STV\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":17345,\"PublishedFareTxt\":\"17,345\",\"ApiResultIndex\":\"5-4970720987_0STVBLR6E5034_600746591321\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"76b23-2d3d7-b21cb-fb17e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15648,\"Tax\":1749.4,\"YQTax\":0,\"OtherCharges\":1714,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17397.4,\"PublishedFare\":17345,\"PublishedFarePerPax\":8673,\"OfferedFare\":17285.9,\"CommissionEarned\":111.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.86,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4970720987_0STVBLR6E5034_600746592271\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1749.4,\"BaseFareCal\":17294.9,\"BaseFare\":15648,\"CommissionEarned\":111.5,\"TDS\":-5.86,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1714,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":111.5,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":17344.9,\"CostToCustomer\":17344.9,\"BaseFareCal\":17294.9,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":17294.9,\"intOfferedFare\":17285.9,\"intPublishFare\":17397.4,\"TripjackMarkup\":0,\"TripjackCommission\":111.5,\"TripjackTDS\":\"5.86\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"02I\"},\"Segments\":[{\"originAirportName\":\"Surat Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Surat\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-14T21:15\",\"SegFlightNumber\":\"6E-5034\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"STV\",\"originDepTime\":\"2022-08-14T19:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"19:25\",\"strArrivalDtTime\":\"21:15\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-13 11:58:15'),(301,'ac66c-48338-aa22e-b252b','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":147,\"FlightNumber\":\"603\",\"SegFlightNumberArr\":\"AI-603, AI-265\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"OrFlightNumber\":\"AI-603\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"13:45\",\"TravelDate\":\"2022-11-14T06:10\",\"LocalFromTime\":\"2022-11-14 06:10\",\"FromUTCTime\":\"2022-11-14T06:10\",\"LocalToTime\":\"2022-11-14 13:45\",\"ToUTCTime\":\"2022-11-14T13:45\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":585,\"DepartureDateTxt\":\"Mon, 14 Nov\",\"ArrivalDateTxt\":\"Mon, 14 Nov\",\"FlightDuration\":\"8h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"16508\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MLE\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"ac66c-48338-aa22e-b252b\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},\"destination\":{\"FlightNumber\":\"268\",\"SegFlightNumberArr\":\"AI-268\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"DeFlightNumber\":\"AI-268\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"14:45\",\"ArrivalTime\":\"18:00\",\"TravelDate\":\"2022-11-18T14:45\",\"LocalFromTime\":\"2022-11-18 14:45\",\"FromUTCTime\":\"2022-11-18T14:45\",\"LocalToTime\":\"2022-11-18 18:00\",\"ToUTCTime\":\"2022-11-18T18:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Fri, 18 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"16508\",\"SourceAirportCode\":\"MLE\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"ac66c-48338-aa22e-b252b\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},\"AirlineName\":\"Air India\",\"PublishedFare\":35904.9,\"PublishedFareTxt\":\"35,905\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"apiTraceId\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9730,\"Tax\":26434.8,\"YQTax\":12000,\"OtherCharges\":12500,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1124,\"CarrierMiscFee\":740,\"MUFee\":0,\"intPublishedFare\":36164.8,\"PublishedFare\":35905,\"PublishedFarePerPax\":17953,\"OfferedFare\":35786.9,\"CommissionEarned\":377.9,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.88,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":26434.8,\"BaseFareCal\":35804.9,\"BaseFare\":9730,\"CommissionEarned\":377.9,\"TDS\":-19.88,\"MF\":60,\"YQ\":12000,\"AGST\":1124,\"MFT\":10.8,\"OT\":12500,\"MU\":0,\"YR\":740,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":377.9,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":35904.9,\"CostToCustomer\":35904.9,\"BaseFareCal\":35804.9,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":35804.9,\"intOfferedFare\":35786.9,\"intPublishFare\":36164.8,\"TripjackMarkup\":0,\"TripjackCommission\":377.9,\"TripjackTDS\":\"19.88\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"016\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-11-14T07:50\",\"SegFlightNumber\":\"AI-603\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-14T06:10\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":100,\"GroundTime\":255,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Male Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Male\",\"destinationCountryName\":\"Maldives\",\"destinationAirportCode\":\"MLE\",\"destinationArrTime\":\"2022-11-14T13:45\",\"SegFlightNumber\":\"AI-265\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-11-14T12:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"12:05\",\"strArrivalDtTime\":\"13:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Male Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Male\",\"originCountryName\":\"Maldives\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-18T18:00\",\"SegFlightNumber\":\"AI-268\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"MLE\",\"originDepTime\":\"2022-11-18T14:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"18:00\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"DepartureTime\":\"14:45\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"ac66c-48338-aa22e-b252b\",\"keyIndex\":147,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":147,\"FlightNumber\":\"603\",\"SegFlightNumberArr\":\"AI-603, AI-265\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"OrFlightNumber\":\"AI-603\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"13:45\",\"TravelDate\":\"2022-11-14T06:10\",\"LocalFromTime\":\"2022-11-14 06:10\",\"FromUTCTime\":\"2022-11-14T06:10\",\"LocalToTime\":\"2022-11-14 13:45\",\"ToUTCTime\":\"2022-11-14T13:45\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":585,\"DepartureDateTxt\":\"Mon, 14 Nov\",\"ArrivalDateTxt\":\"Mon, 14 Nov\",\"FlightDuration\":\"8h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"16508\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"MLE\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"ac66c-48338-aa22e-b252b\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},\"destination\":{\"FlightNumber\":\"268\",\"SegFlightNumberArr\":\"AI-268\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"DeFlightNumber\":\"AI-268\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"14:45\",\"ArrivalTime\":\"18:00\",\"TravelDate\":\"2022-11-18T14:45\",\"LocalFromTime\":\"2022-11-18 14:45\",\"FromUTCTime\":\"2022-11-18T14:45\",\"LocalToTime\":\"2022-11-18 18:00\",\"ToUTCTime\":\"2022-11-18T18:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Fri, 18 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"16508\",\"SourceAirportCode\":\"MLE\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"ac66c-48338-aa22e-b252b\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},\"AirlineName\":\"Air India\",\"PublishedFare\":35904.9,\"PublishedFareTxt\":\"35,905\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"apiTraceId\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9730,\"Tax\":26434.8,\"YQTax\":12000,\"OtherCharges\":12500,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1124,\"CarrierMiscFee\":740,\"MUFee\":0,\"intPublishedFare\":36164.8,\"PublishedFare\":35905,\"PublishedFarePerPax\":17953,\"OfferedFare\":35786.9,\"CommissionEarned\":377.9,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.88,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5829942506_107BOMBLRAI603BLRMLEAI265MLEBOMAI268_5603395890196\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":26434.8,\"BaseFareCal\":35804.9,\"BaseFare\":9730,\"CommissionEarned\":377.9,\"TDS\":-19.88,\"MF\":60,\"YQ\":12000,\"AGST\":1124,\"MFT\":10.8,\"OT\":12500,\"MU\":0,\"YR\":740,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":377.9,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":35904.9,\"CostToCustomer\":35904.9,\"BaseFareCal\":35804.9,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":35804.9,\"intOfferedFare\":35786.9,\"intPublishFare\":36164.8,\"TripjackMarkup\":0,\"TripjackCommission\":377.9,\"TripjackTDS\":\"19.88\",\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-11-14T07:50\",\"SegFlightNumber\":\"AI-603\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-14T06:10\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":100,\"GroundTime\":255,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Male Intl Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Male\",\"destinationCountryName\":\"Maldives\",\"destinationAirportCode\":\"MLE\",\"destinationArrTime\":\"2022-11-14T13:45\",\"SegFlightNumber\":\"AI-265\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-11-14T12:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"12:05\",\"strArrivalDtTime\":\"13:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Male Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Male\",\"originCountryName\":\"Maldives\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-18T18:00\",\"SegFlightNumber\":\"AI-268\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"MLE\",\"originDepTime\":\"2022-11-18T14:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"14:45\",\"strArrivalDtTime\":\"18:00\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"DepartureTime\":\"14:45\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"ac66c-48338-aa22e-b252b\",\"keyIndex\":147,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"018\"}]}],\"FlightBookingDataInbound\":null}','2022-08-13 14:58:12'),(302,'59e3f-3e204-8e155-9167e','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-715\",\"keyIndex\":10,\"SegFlightNumberArr\":\"UK-715\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2009585493_0DELPATUK715_68611418420411\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"18:15\",\"ArrivalTime\":\"19:55\",\"TravelDate\":\"2022-12-23T18:15\",\"LocalFromTime\":\"2022-12-23 18:15\",\"FromUTCTime\":\"2022-12-23T18:15\",\"LocalToTime\":\"2022-12-23 19:55\",\"ToUTCTime\":\"2022-12-23T19:55\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Fri, 23 Dec\",\"ArrivalDateTxt\":\"Fri, 23 Dec\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2743,\"PublishedFareTxt\":\"2,742\",\"ApiResultIndex\":\"21-10-15-2-2009585493_0DELPATUK715_68611418419741\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"59e3f-3e204-8e155-9167e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2237,\"Tax\":655.7,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":118,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":2892.7,\"PublishedFare\":2743,\"PublishedFarePerPax\":2743,\"OfferedFare\":2683.24,\"CommissionEarned\":209.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-11.02,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2009585493_0DELPATUK715_68611418420411\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":655.7,\"BaseFareCal\":2692.24,\"BaseFare\":2237,\"CommissionEarned\":209.46,\"TDS\":-11.02,\"MF\":15,\"YQ\":0,\"AGST\":118,\"MFT\":2.7,\"OT\":390,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":209.46,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":2742.24,\"CostToCustomer\":2742.24,\"BaseFareCal\":2692.24,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":2692.24,\"intOfferedFare\":2683.24,\"intPublishFare\":2892.7,\"TripjackMarkup\":0,\"TripjackCommission\":209.46,\"TripjackTDS\":\"11.02\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"01W\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-12-23T19:55\",\"SegFlightNumber\":\"UK-715\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Z\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-12-23T18:15\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"18:15\",\"strArrivalDtTime\":\"19:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]},{\"keyIndex\":11,\"FlightNumber\":\"UK-716\",\"SegFlightNumberArr\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2009585493_0PATDELUK716_68611418216166\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:20\",\"TravelDate\":\"2023-01-02T20:30\",\"LocalFromTime\":\"2023-01-02 20:30\",\"FromUTCTime\":\"2023-01-02T20:30\",\"LocalToTime\":\"2023-01-02 22:20\",\"ToUTCTime\":\"2023-01-02T22:20\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Mon, 02 Jan\",\"ArrivalDateTxt\":\"Mon, 02 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2741.86,\"PublishedFareTxt\":\"2,742\",\"ApiResultIndex\":\"21-10-15-2-2009585493_0PATDELUK716_68611418216166\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"59e3f-3e204-8e155-9167e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2153,\"Tax\":738.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":114,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":2891.7,\"PublishedFare\":2742,\"PublishedFarePerPax\":2742,\"OfferedFare\":2682.86,\"CommissionEarned\":208.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.99,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2009585493_0PATDELUK716_68611418216946\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":738.7,\"BaseFareCal\":2691.86,\"BaseFare\":2153,\"CommissionEarned\":208.84,\"TDS\":-10.99,\"MF\":15,\"YQ\":0,\"AGST\":114,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":208.84,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":2741.86,\"CostToCustomer\":2741.86,\"BaseFareCal\":2691.86,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":2691.86,\"intOfferedFare\":2682.86,\"intPublishFare\":2891.7,\"TripjackMarkup\":0,\"TripjackCommission\":208.84,\"TripjackTDS\":\"10.99\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0CG\"},\"Segments\":[{\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-02T22:20\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":null,\"originAirportCode\":\"PAT\",\"originDepTime\":\"2023-01-02T20:30\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\"}],\"FlightBookingDataInbound\":{\"keyIndex\":11,\"FlightNumber\":\"UK-716\",\"SegFlightNumberArr\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2009585493_0PATDELUK716_68611418216166\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:20\",\"TravelDate\":\"2023-01-02T20:30\",\"LocalFromTime\":\"2023-01-02 20:30\",\"FromUTCTime\":\"2023-01-02T20:30\",\"LocalToTime\":\"2023-01-02 22:20\",\"ToUTCTime\":\"2023-01-02T22:20\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Mon, 02 Jan\",\"ArrivalDateTxt\":\"Mon, 02 Jan\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2741.86,\"PublishedFareTxt\":\"2,742\",\"ApiResultIndex\":\"21-10-15-2-2009585493_0PATDELUK716_68611418216166\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"59e3f-3e204-8e155-9167e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2153,\"Tax\":738.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":114,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":2891.7,\"PublishedFare\":2742,\"PublishedFarePerPax\":2742,\"OfferedFare\":2682.86,\"CommissionEarned\":208.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.99,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2009585493_0PATDELUK716_68611418216946\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":738.7,\"BaseFareCal\":2691.86,\"BaseFare\":2153,\"CommissionEarned\":208.84,\"TDS\":-10.99,\"MF\":15,\"YQ\":0,\"AGST\":114,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":208.84,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":2741.86,\"CostToCustomer\":2741.86,\"BaseFareCal\":2691.86,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":2691.86,\"intOfferedFare\":2682.86,\"intPublishFare\":2891.7,\"TripjackMarkup\":0,\"TripjackCommission\":208.84,\"TripjackTDS\":\"10.99\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0CG\"},\"Segments\":[{\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-02T22:20\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":null,\"originAirportCode\":\"PAT\",\"originDepTime\":\"2023-01-02T20:30\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\"}}','2022-08-13 18:45:18'),(303,'9c30c-4fdf1-869b3-6d803','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-941\",\"keyIndex\":26,\"SegFlightNumberArr\":\"I5-941\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-4252404825_0BOMJAII5941_75211374725124\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-08-15T07:55\",\"LocalFromTime\":\"2022-08-15 07:55\",\"FromUTCTime\":\"2022-08-15T07:55\",\"LocalToTime\":\"2022-08-15 09:50\",\"ToUTCTime\":\"2022-08-15T09:50\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":14444,\"PublishedFareTxt\":\"14,443\",\"ApiResultIndex\":\"11-4252404825_0BOMJAII5941_75211374725124\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9c30c-4fdf1-869b3-6d803\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12900,\"Tax\":953.0999999999999,\"YQTax\":0,\"OtherCharges\":900,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13853.099999999999,\"PublishedFare\":14444,\"PublishedFarePerPax\":4815,\"OfferedFare\":13853.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-4252404825_0BOMJAII5941_75211374725124\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":953.0999999999999,\"BaseFareCal\":13943.1,\"BaseFare\":12900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":900,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":14443.1,\"CostToCustomer\":14443.1,\"BaseFareCal\":13943.1,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":13943.1,\"intOfferedFare\":13853.099999999999,\"intPublishFare\":13853.099999999999,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-15T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-15T07:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-14 11:23:24'),(309,'abca5-ec992-96bf6-934fe','{\"BookingData\":[{\"bookingId\":\"TJ103540179735\",\"FlightNumber\":\"I5-941\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-08-15T07:55\",\"LocalFromTime\":\"2022-08-15 07:55\",\"FromUTCTime\":\"2022-08-15T07:55\",\"LocalToTime\":\"2022-08-15 09:50\",\"ToUTCTime\":\"2022-08-15T09:50\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":13853.099999999999,\"PublishedFareTxt\":\"13,853\",\"ApiResultIndex\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"No Refund| Seats are Subject to availability | In case of non availability of the seats, we will refund the amount | \\\"Sunday is Non Working day for Special Fare Team\\\"| Booking done after 18:00 Hrs or 6 PM, PNR will be updated next working day after 11:00 Hrs or 11 AM\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Changes are not permitted | Booking confirmation will take minimum 60 Minutes\",\"fcs\":{\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Cancellation is not permitted | For more details contact us\",\"fcs\":{\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Note : Now you can do the web checkin directly on the airline website by yourself.  Enter PNR and LAST NAME. Select your passengers and process the web checkin( 1 Day before departure after 6PM ). Seats are chargeable as per airline |Name Change is not permitted |\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12900,\"Tax\":953.0999999999999,\"YQTax\":0,\"OtherCharges\":900,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13853.099999999999,\"PublishedFare\":14443.1,\"OfferedFare\":13853.099999999999,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-3140097188_0BOMJAII5941_53284800451709\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITHOUT PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":953.0999999999999,\"BaseFareCal\":13943.1,\"BaseFare\":12900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":900,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":14443.1,\"CostToCustomer\":14443.1,\"BaseFareCal\":13943.1,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":13943.1,\"intOfferedFare\":13853.099999999999,\"intPublishFare\":13853.099999999999,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500}},\"Segments\":[{\"segmentid\":\"319\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-15T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-15T07:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"abca5-ec992-96bf6-934fe\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103540179735\",\"FlightNumber\":\"I5-941\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"strTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-08-15T07:55\",\"LocalFromTime\":\"2022-08-15 07:55\",\"FromUTCTime\":\"2022-08-15T07:55\",\"LocalToTime\":\"2022-08-15 09:50\",\"ToUTCTime\":\"2022-08-15T09:50\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":13853.099999999999,\"ApiResultIndex\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"abca5-ec992-96bf6-934fe\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12900,\"Tax\":953.0999999999999,\"YQTax\":0,\"OtherCharges\":900,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13853.099999999999,\"PublishedFare\":14443.1,\"OfferedFare\":13853.099999999999,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":500,\"AddiTaxOnMarkup\":90,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":953.0999999999999,\"BaseFareCal\":13943.1,\"BaseFare\":12900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":900,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"319\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-15T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-15T07:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-3140097188_0BOMJAII5941_4828997321946\",\"localFromDateTime\":\"2022-08-15 07:55\",\"localToDateTime\":\"2022-08-15 09:50\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"15\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"adults\":\"3\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"abca5-ec992-96bf6-934fe\",\"from_city_\":\"1__BOM-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Jaipur+%28JAI%29&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&departure_date=15%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&adults=3&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"helppower@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9768860440\",\"FirstName\":\"lokhandwala moiz\",\"LastName\":\"shabbir\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-14-11-29-49\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"44\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"24\",\"EmailId\":\"helppower@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9768860440\",\"FirstName\":\"shabbir maula\",\"LastName\":\"shaikh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-14-11-29-49\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"37\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"24\",\"EmailId\":\"helppower@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9768860440\",\"FirstName\":\"sabhanaz  mohamad s\",\"LastName\":\"shiekh\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-14-11-29-49\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"37\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"428527\",\"TPSysId\":\"428528\",\"VersionId\":[\"92375\"],\"CustomerSysId\":\"224506\",\"TrxId\":\"31442\",\"FareBreakdownid\":[\"358227\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"109\",\"110\",\"111\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"37\",\"CustomerMemSysId\":[\"44\",\"37\",\"37\"],\"flight_booking_id\":[\"66\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"66\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":14443.1},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"224506\",\"TPSysId\":\"428528\",\"MasterTPSysId\":\"428527\",\"ProposalID\":\"428528\\/V1\",\"InvoiceDate\":\"2022-08-14\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-14\",\"PaymentDate\":\"2022-08-14\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":14263.1,\"InvoiceStatus\":true,\"TotalCGST\":90,\"TotalSGST\":90,\"TotalIGST\":180,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":14443.1,\"TotalDueAmount\":0,\"InvoiceValue\":14443.1,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-JAI-AirAsia India I5-941\",\"ItemQty\":1,\"ItemRates\":13263.1,\"Total\":13263.1,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":14443.1,\"MarkupType\":\"\",\"Markup\":1000,\"TotalMarkup\":1000,\"SubTotal\":14263.1,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":180,\"SGST\":90,\"CGST\":90,\"IGST\":180,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-14 11:30:19'),(311,'eef9e-39902-4d7d4-fb4d8','{\"FlightBookingData\":[{\"bookingId\":\"TJ103540188154\",\"FlightNumber\":\"6E-2109\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"18:35\",\"TravelDate\":\"2022-09-06T09:45\",\"LocalFromTime\":\"2022-09-06 09:45\",\"FromUTCTime\":\"2022-09-06T09:45\",\"LocalToTime\":\"2022-09-06 18:35\",\"ToUTCTime\":\"2022-09-06T18:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":340,\"LAYOVERDuration\":\"5h 40m\",\"FlyingMinutes\":530,\"DepartureDateTxt\":\"Tue, 06 Sep\",\"ArrivalDateTxt\":\"Tue, 06 Sep\",\"FlightDuration\":\"8h 50m\",\"SourcePlaceSysId\":22511,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"RAJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6361.7,\"PublishedFareTxt\":\"6,362\",\"ApiResultIndex\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"RAJ-ATQ\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3250,\"ARFT\":162.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"ACF\":3500,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5549,\"Tax\":812.7,\"YQTax\":0,\"OtherCharges\":513,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":282,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6361.7,\"PublishedFare\":6440.16,\"OfferedFare\":6322.16,\"CommissionEarned\":39.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.08,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_6992383220722\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":812.7,\"BaseFareCal\":6340.16,\"BaseFare\":5549,\"CommissionEarned\":39.54,\"TDS\":-2.08,\"MF\":15,\"YQ\":0,\"AGST\":282,\"MFT\":2.7,\"OT\":513,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":39.54,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6440.16,\"CostToCustomer\":6440.16,\"BaseFareCal\":6340.16,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6340.16,\"intOfferedFare\":6322.16,\"intPublishFare\":6361.7,\"TripjackMarkup\":0,\"TripjackCommission\":39.54,\"TripjackTDS\":\"2.08\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"674\",\"originAirportName\":\"Rajkot Civil Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Rajkot\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-06T11:40\",\"SegFlightNumber\":\"6E-2109\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"RAJ\",\"originDepTime\":\"2022-09-06T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":340,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"5h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"675\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-06T18:35\",\"SegFlightNumber\":\"6E-5654\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-06T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"674\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eef9e-39902-4d7d4-fb4d8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-06 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"RAJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":22511,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103540188154\",\"FlightNumber\":\"6E-2109\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"strTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:45\",\"ArrivalTime\":\"18:35\",\"TravelDate\":\"2022-09-06T09:45\",\"LocalFromTime\":\"2022-09-06 09:45\",\"FromUTCTime\":\"2022-09-06T09:45\",\"LocalToTime\":\"2022-09-06 18:35\",\"ToUTCTime\":\"2022-09-06T18:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":340,\"LAYOVERDuration\":\"5h 40m\",\"FlyingMinutes\":530,\"DepartureDateTxt\":\"Tue, 06 Sep\",\"ArrivalDateTxt\":\"Tue, 06 Sep\",\"FlightDuration\":\"8h 50m\",\"SourcePlaceSysId\":22511,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"RAJ\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":6361.7,\"ApiResultIndex\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"eef9e-39902-4d7d4-fb4d8\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5549,\"Tax\":812.7,\"YQTax\":0,\"OtherCharges\":513,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":282,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6361.7,\"PublishedFare\":6440.16,\"OfferedFare\":6322.16,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":812.7,\"BaseFareCal\":6340.16,\"BaseFare\":5549,\"CommissionEarned\":39.54,\"TDS\":-2.08,\"MF\":15,\"YQ\":0,\"AGST\":282,\"MFT\":2.7,\"OT\":513,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"674\",\"originAirportName\":\"Rajkot Civil Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Rajkot\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-06T11:40\",\"SegFlightNumber\":\"6E-2109\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"RAJ\",\"originDepTime\":\"2022-09-06T09:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":340,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"5h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"675\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-06T18:35\",\"SegFlightNumber\":\"6E-5654\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-06T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"18:35\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8885257664_0RAJDEL6E2109DELATQ6E5654_68134110631428\",\"localFromDateTime\":\"2022-09-06 09:45\",\"localToDateTime\":\"2022-09-06 18:35\",\"strSourceAirportCode\":\"RAJ\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":22511,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"67\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"39\",\"CustomerMemSysId\":[\"39\"],\"flight_booking_id\":[\"67\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"vyas.harshad@ymail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9879457702\",\"FirstName\":\"Harshad \",\"LastName\":\"Vyas \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-14-13-16-10\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"39\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"39\",\"CustomerMemSysId\":[\"39\"],\"flight_booking_customer\":[[\"112\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Rajkot (RAJ)\",\"mytrip_city_to\":\"Amritsar (ATQ)\",\"source_city\":\"RAJ\",\"ContSysId_1\":\"101\",\"destination_city\":\"ATQ\",\"ContSysId\":\"101\",\"source\":\"Rajkot, IN - Rajkot Civil Arpt (RAJ), India\",\"destination\":\"Amritsar, IN - Raja Sansi Arpt (ATQ), India\",\"departure_date\":\"06\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Rajkot Civil Arpt (RAJ)\",\"to_mytrip_city\":\" IN - Raja Sansi Arpt (ATQ)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"RAJ\",\"destinationCityAirportCode\":\"ATQ\",\"from\":\"RAJ\",\"to\":\"ATQ\",\"sourceCityText\":\"Rajkot, IN - Rajkot Civil Arpt (RAJ), India\",\"destinationCityText\":\"Amritsar, IN - Raja Sansi Arpt (ATQ), India\",\"sourceCityId\":22511,\"destinationCityId\":974,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"06\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-06\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"eef9e-39902-4d7d4-fb4d8\",\"from_city_\":\"1__RAJ-ATQ\"},\"sessionData\":{\"CustomerSysId\":\"39\",\"CustomerMemSysId\":[\"39\"],\"flight_booking_id\":[\"67\"]},\"validateCoupon\":null,\"validateData\":null}','2022-08-14 13:16:10'),(313,'cacad-b84e6-b63fa-7aaf9','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8701\",\"keyIndex\":205,\"SegFlightNumberArr\":\"SG-8701\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9721395025_0DELBOMSG8701_2889182677534\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-08-15T07:20\",\"LocalFromTime\":\"2022-08-15 07:20\",\"FromUTCTime\":\"2022-08-15T07:20\",\"LocalToTime\":\"2022-08-15 09:35\",\"ToUTCTime\":\"2022-08-15T09:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":17861,\"PublishedFareTxt\":\"17,861\",\"ApiResultIndex\":\"11-9721395025_0DELBOMSG8701_2889182677534\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cacad-b84e6-b63fa-7aaf9\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16000,\"Tax\":1270.8,\"YQTax\":0,\"OtherCharges\":1200,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17270.8,\"PublishedFare\":17861,\"PublishedFarePerPax\":4466,\"OfferedFare\":17270.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9721395025_0DELBOMSG8701_2889182677534\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":1270.8,\"BaseFareCal\":17360.8,\"BaseFare\":16000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":1200,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":17860.8,\"CostToCustomer\":17860.8,\"BaseFareCal\":17360.8,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":17360.8,\"intOfferedFare\":17270.8,\"intPublishFare\":17270.8,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-15T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-15T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-14 14:06:56'),(314,'0f3df-8828d-490e3-230da','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8701\",\"keyIndex\":205,\"SegFlightNumberArr\":\"SG-8701\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9133305745_0DELBOMSG8701_750331713825\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-08-15T07:20\",\"LocalFromTime\":\"2022-08-15 07:20\",\"FromUTCTime\":\"2022-08-15T07:20\",\"LocalToTime\":\"2022-08-15 09:35\",\"ToUTCTime\":\"2022-08-15T09:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":17861,\"PublishedFareTxt\":\"17,861\",\"ApiResultIndex\":\"11-9133305745_0DELBOMSG8701_750331713825\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"0f3df-8828d-490e3-230da\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16000,\"Tax\":1270.8,\"YQTax\":0,\"OtherCharges\":1200,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17270.8,\"PublishedFare\":17861,\"PublishedFarePerPax\":4466,\"OfferedFare\":17270.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9133305745_0DELBOMSG8701_750331713825\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":1270.8,\"BaseFareCal\":17360.8,\"BaseFare\":16000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":1200,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":17860.8,\"CostToCustomer\":17860.8,\"BaseFareCal\":17360.8,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":17360.8,\"intOfferedFare\":17270.8,\"intPublishFare\":17270.8,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-15T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-15T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-14 14:34:23'),(315,'e6738-e2292-40944-90ca3','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2112\",\"keyIndex\":198,\"SegFlightNumberArr\":\"6E-2112\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6521009277_0DELBOM6E2112_14423385222314\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2022-08-16T05:30\",\"LocalFromTime\":\"2022-08-16 05:30\",\"FromUTCTime\":\"2022-08-16T05:30\",\"LocalToTime\":\"2022-08-16 07:40\",\"ToUTCTime\":\"2022-08-16T07:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":10591,\"PublishedFareTxt\":\"10,591\",\"ApiResultIndex\":\"5-6521009277_0DELBOM6E2112_14423385221793\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"e6738-e2292-40944-90ca3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9060,\"Tax\":1477.4,\"YQTax\":0,\"OtherCharges\":1442,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10537.4,\"PublishedFare\":10591,\"PublishedFarePerPax\":5296,\"OfferedFare\":10472.84,\"CommissionEarned\":64.56,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6521009277_0DELBOM6E2112_14423385222314\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1477.4,\"BaseFareCal\":10490.84,\"BaseFare\":9060,\"CommissionEarned\":64.56,\"TDS\":-3.4,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1442,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":64.56,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":10590.84,\"CostToCustomer\":10590.84,\"BaseFareCal\":10490.84,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":10490.84,\"intOfferedFare\":10472.84,\"intPublishFare\":10537.4,\"TripjackMarkup\":0,\"TripjackCommission\":64.56,\"TripjackTDS\":\"3.4\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"033\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-16T07:40\",\"SegFlightNumber\":\"6E-2112\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-16T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-14 14:38:03'),(317,'88530-71996-e702e-4a126','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8701\",\"keyIndex\":205,\"SegFlightNumberArr\":\"SG-8701\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-1907920486_0DELBOMSG8701_15042822641206\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-08-15T07:20\",\"LocalFromTime\":\"2022-08-15 07:20\",\"FromUTCTime\":\"2022-08-15T07:20\",\"LocalToTime\":\"2022-08-15 09:35\",\"ToUTCTime\":\"2022-08-15T09:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Mon, 15 Aug\",\"ArrivalDateTxt\":\"Mon, 15 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":17861,\"PublishedFareTxt\":\"17,861\",\"ApiResultIndex\":\"11-1907920486_0DELBOMSG8701_15042822641206\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"88530-71996-e702e-4a126\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16000,\"Tax\":1270.8,\"YQTax\":0,\"OtherCharges\":1200,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":17270.8,\"PublishedFare\":17861,\"PublishedFarePerPax\":4466,\"OfferedFare\":17270.8,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-1907920486_0DELBOMSG8701_15042822641206\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":635.4,\"BaseFareCal\":8725.4,\"BaseFare\":8000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":600,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":45,\"AddiMarkup\":250,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":635.4,\"BaseFareCal\":8725.4,\"BaseFare\":8000,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":600,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":45,\"AddiMarkup\":250,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":17860.8,\"CostToCustomer\":17860.8,\"BaseFareCal\":17360.8,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":17360.8,\"intOfferedFare\":17270.8,\"intPublishFare\":17270.8,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-15T09:35\",\"SegFlightNumber\":\"SG-8701\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-15T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-14 14:46:47'),(318,'60706-7060b-dfa68-ef0ce','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2336\",\"keyIndex\":177,\"SegFlightNumberArr\":\"6E-2336\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0111973327_2GOIDEL6E2336_27220391741275\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:00\",\"ArrivalTime\":\"00:35\",\"TravelDate\":\"2022-08-17T22:00\",\"LocalFromTime\":\"2022-08-17 22:00\",\"FromUTCTime\":\"2022-08-17T22:00\",\"LocalToTime\":\"2022-08-18 00:35\",\"ToUTCTime\":\"2022-08-18T00:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Wed, 17 Aug\",\"ArrivalDateTxt\":\"Thu, 18 Aug\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":10552,\"PublishedFareTxt\":\"10,551\",\"ApiResultIndex\":\"5-0111973327_2GOIDEL6E2336_27220391741115\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"60706-7060b-dfa68-ef0ce\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8466,\"Tax\":2027.4,\"YQTax\":0,\"OtherCharges\":1992,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":10493.4,\"PublishedFare\":10552,\"PublishedFarePerPax\":5276,\"OfferedFare\":10433.08,\"CommissionEarned\":60.32,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0111973327_2GOIDEL6E2336_27220391741275\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2027.4,\"BaseFareCal\":10451.08,\"BaseFare\":8466,\"CommissionEarned\":60.32,\"TDS\":-3.18,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1992,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":60.32,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":10551.08,\"CostToCustomer\":10551.08,\"BaseFareCal\":10451.08,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":10451.08,\"intOfferedFare\":10433.08,\"intPublishFare\":10493.4,\"TripjackMarkup\":0,\"TripjackCommission\":60.32,\"TripjackTDS\":\"3.18\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-18T00:35\",\"SegFlightNumber\":\"6E-2336\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-08-17T22:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"22:00\",\"strArrivalDtTime\":\"00:35\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-14 16:57:41'),(319,'1316e-61af5-286fe-c88b3','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-653\",\"keyIndex\":5,\"SegFlightNumberArr\":\"UK-653\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-8546848613_0BOMIXCUK653_16338744559308\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:15\",\"TravelDate\":\"2022-11-19T06:00\",\"LocalFromTime\":\"2022-11-19 06:00\",\"FromUTCTime\":\"2022-11-19T06:00\",\"LocalToTime\":\"2022-11-19 08:15\",\"ToUTCTime\":\"2022-11-19T08:15\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 19 Nov\",\"ArrivalDateTxt\":\"Sat, 19 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"5765\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXC\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5345,\"PublishedFareTxt\":\"5,345\",\"ApiResultIndex\":\"21-10-15-2-8546848613_0BOMIXCUK653_16338744558768\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"1316e-61af5-286fe-c88b3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4780,\"Tax\":771.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":246,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5551.7,\"PublishedFare\":5345,\"PublishedFarePerPax\":5345,\"OfferedFare\":5285.73,\"CommissionEarned\":265.97,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-14,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-8546848613_0BOMIXCUK653_16338744559308\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":771.7,\"BaseFareCal\":5294.73,\"BaseFare\":4780,\"CommissionEarned\":265.97,\"TDS\":-14,\"MF\":15,\"YQ\":0,\"AGST\":246,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":265.97,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5344.73,\"CostToCustomer\":5344.73,\"BaseFareCal\":5294.73,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5294.73,\"intOfferedFare\":5285.73,\"intPublishFare\":5551.7,\"TripjackMarkup\":0,\"TripjackCommission\":265.97,\"TripjackTDS\":\"14\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"032\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Chandigarh Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chandigarh\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXC\",\"destinationArrTime\":\"2022-11-19T08:15\",\"SegFlightNumber\":\"UK-653\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-14 22:57:24'),(320,'5bbc7-250dc-b42f4-35033','{\"FlightBookingData\":[{\"FlightNumber\":\"QR-24\",\"keyIndex\":0,\"SegFlightNumberArr\":\"QR-24, QR-4770\",\"AirlineName\":\"Qatar airways\",\"AirlineCode\":\"QR\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-2-15-10-1367704449_0MANDOHQR24DOHBOMQR4770_30874631472429\",\"AirlineSysId\":\"405\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"14:10\",\"TravelDate\":\"2022-08-30T21:30\",\"LocalFromTime\":\"2022-08-30 21:30\",\"FromUTCTime\":\"2022-08-30T21:30\",\"LocalToTime\":\"2022-08-31 14:10\",\"ToUTCTime\":\"2022-08-31T14:10\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"Doha\",\"GroundTime\":100,\"LAYOVERDuration\":\"1h 40m\",\"FlyingMinutes\":730,\"DepartureDateTxt\":\"Tue, 30 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"12h 10m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"MAN\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":35869,\"PublishedFareTxt\":\"35,869\",\"ApiResultIndex\":\"27-21-20-12-2-15-10-1367704449_0MANDOHQR24DOHBOMQR4770_30874631472429\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5bbc7-250dc-b42f4-35033\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/QR.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12325,\"Tax\":23769.7,\"YQTax\":0,\"OtherCharges\":23752,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":36094.7,\"PublishedFare\":35869,\"PublishedFarePerPax\":35869,\"OfferedFare\":35809.7,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-2-15-10-1367704449_0MANDOHQR24DOHBOMQR4770_30874631472429\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kg\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":23769.7,\"BaseFareCal\":35818.7,\"BaseFare\":12325,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":23752,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":35868.7,\"CostToCustomer\":35868.7,\"BaseFareCal\":35818.7,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":35818.7,\"intOfferedFare\":35809.7,\"intPublishFare\":36094.7,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"03C\"},\"Segments\":[{\"originAirportName\":\"Manchester Intl\",\"destinationAirportName\":\"Doha International Arpt\",\"originCityName\":\"Manchester\",\"originCountryName\":\"United Kingdom\",\"destinationCityName\":\"Doha\",\"destinationCountryName\":\"Qatar\",\"destinationAirportCode\":\"DOH\",\"destinationArrTime\":\"2022-08-31T06:20\",\"SegFlightNumber\":\"QR-24\",\"AirlineCode\":\"QR\",\"AirlineName\":\"Qatar Airways\",\"FareClass\":\"O\",\"originAirportCode\":\"MAN\",\"originDepTime\":\"2022-08-30T21:30\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":410,\"GroundTime\":100,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"06:20\",\"FlightDuration\":\"6h 50m\",\"LAYOVERDuration\":\"1h 40m\",\"LAYOVERCity\":\"Doha\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/QR.gif\"},{\"originAirportName\":\"Doha International Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Doha\",\"originCountryName\":\"Qatar\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-31T14:10\",\"SegFlightNumber\":\"QR-4770\",\"AirlineCode\":\"QR\",\"AirlineName\":\"Qatar Airways\",\"FareClass\":\"O\",\"originAirportCode\":\"DOH\",\"originDepTime\":\"2022-08-31T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"14:10\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/QR.gif\"}],\"FilterPrice\":\"35001-40000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"QR-24\",\"keyIndex\":0,\"SegFlightNumberArr\":\"QR-24, QR-4770\",\"AirlineName\":\"Qatar airways\",\"AirlineCode\":\"QR\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-2-15-10-1367704449_0MANDOHQR24DOHBOMQR4770_30874631472429\",\"AirlineSysId\":\"405\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"14:10\",\"TravelDate\":\"2022-08-30T21:30\",\"LocalFromTime\":\"2022-08-30 21:30\",\"FromUTCTime\":\"2022-08-30T21:30\",\"LocalToTime\":\"2022-08-31 14:10\",\"ToUTCTime\":\"2022-08-31T14:10\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"Doha\",\"GroundTime\":100,\"LAYOVERDuration\":\"1h 40m\",\"FlyingMinutes\":730,\"DepartureDateTxt\":\"Tue, 30 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"12h 10m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"MAN\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":35869,\"PublishedFareTxt\":\"35,869\",\"ApiResultIndex\":\"27-21-20-12-2-15-10-1367704449_0MANDOHQR24DOHBOMQR4770_30874631472429\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5bbc7-250dc-b42f4-35033\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/QR.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12325,\"Tax\":23769.7,\"YQTax\":0,\"OtherCharges\":23752,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":36094.7,\"PublishedFare\":35869,\"PublishedFarePerPax\":35869,\"OfferedFare\":35809.7,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-2-15-10-1367704449_0MANDOHQR24DOHBOMQR4770_30874631472429\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kg\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":23769.7,\"BaseFareCal\":35818.7,\"BaseFare\":12325,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":23752,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":35868.7,\"CostToCustomer\":35868.7,\"BaseFareCal\":35818.7,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":35818.7,\"intOfferedFare\":35809.7,\"intPublishFare\":36094.7,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12325,\"Tax\":23769.7,\"YQTax\":9025,\"OtherCharges\":13291,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":1436,\"MUFee\":0,\"intPublishedFare\":36094.7,\"PublishedFare\":35869,\"PublishedFarePerPax\":35869,\"OfferedFare\":35809.7,\"CommissionEarned\":285,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-2-15-10-1367704449_0MANDOHQR24DOHBOMQR4770_30874631473349\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":23769.7,\"BaseFareCal\":35818.7,\"BaseFare\":12325,\"CommissionEarned\":285,\"TDS\":-15,\"MF\":15,\"YQ\":9025,\"AGST\":0,\"MFT\":2.7,\"OT\":13291,\"MU\":0,\"YR\":1436,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":35868.7,\"CostToCustomer\":35868.7,\"BaseFareCal\":35818.7,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":35818.7,\"intOfferedFare\":35809.7,\"intPublishFare\":36094.7,\"TripjackMarkup\":0,\"TripjackCommission\":285,\"TripjackTDS\":\"15\",\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}}],\"Segments\":[{\"originAirportName\":\"Manchester Intl\",\"destinationAirportName\":\"Doha International Arpt\",\"originCityName\":\"Manchester\",\"originCountryName\":\"United Kingdom\",\"destinationCityName\":\"Doha\",\"destinationCountryName\":\"Qatar\",\"destinationAirportCode\":\"DOH\",\"destinationArrTime\":\"2022-08-31T06:20\",\"SegFlightNumber\":\"QR-24\",\"AirlineCode\":\"QR\",\"AirlineName\":\"Qatar Airways\",\"FareClass\":\"O\",\"originAirportCode\":\"MAN\",\"originDepTime\":\"2022-08-30T21:30\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":410,\"GroundTime\":100,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"06:20\",\"FlightDuration\":\"6h 50m\",\"LAYOVERDuration\":\"1h 40m\",\"LAYOVERCity\":\"Doha\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/QR.gif\"},{\"originAirportName\":\"Doha International Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Doha\",\"originCountryName\":\"Qatar\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-31T14:10\",\"SegFlightNumber\":\"QR-4770\",\"AirlineCode\":\"QR\",\"AirlineName\":\"Qatar Airways\",\"FareClass\":\"O\",\"originAirportCode\":\"DOH\",\"originDepTime\":\"2022-08-31T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":220,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"14:10\",\"FlightDuration\":\"3h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/QR.gif\"}],\"FilterPrice\":\"35001-40000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"03G\"}]}],\"FlightBookingDataInbound\":null}','2022-08-15 04:05:43'),(324,'644e6-ef528-65f97-09b86','{\"BookingData\":[{\"bookingId\":\"TJ108940248079\",\"FlightNumber\":\"UK-771\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2022-08-16T07:00\",\"LocalFromTime\":\"2022-08-16 07:00\",\"FromUTCTime\":\"2022-08-16T07:00\",\"LocalToTime\":\"2022-08-16 09:40\",\"ToUTCTime\":\"2022-08-16T09:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5244.7,\"PublishedFareTxt\":\"5,245\",\"ApiResultIndex\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARFT\":157.5,\"CRFT\":9,\"CRF\":50,\"ARF\":3150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"CCFT\":9,\"CCF\":50,\"ACF\":3675,\"ACFT\":183.75}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4488,\"Tax\":756.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":231,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5244.7,\"PublishedFare\":4949.25,\"OfferedFare\":4890.25,\"CommissionEarned\":354.45,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-18.66,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2466195810_0BOMCCUUK771_10937673749617\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":756.7,\"BaseFareCal\":4899.25,\"BaseFare\":4488,\"CommissionEarned\":354.45,\"TDS\":-18.66,\"MF\":15,\"YQ\":0,\"AGST\":231,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":354.45,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4949.25,\"CostToCustomer\":4949.25,\"BaseFareCal\":4899.25,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4899.25,\"intOfferedFare\":4890.25,\"intPublishFare\":5244.7,\"TripjackMarkup\":0,\"TripjackCommission\":354.45,\"TripjackTDS\":\"18.66\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"873\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-16T09:40\",\"SegFlightNumber\":\"UK-771\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"644e6-ef528-65f97-09b86\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108940248079\",\"FlightNumber\":\"UK-771\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"strTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2022-08-16T07:00\",\"LocalFromTime\":\"2022-08-16 07:00\",\"FromUTCTime\":\"2022-08-16T07:00\",\"LocalToTime\":\"2022-08-16 09:40\",\"ToUTCTime\":\"2022-08-16T09:40\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Tue, 16 Aug\",\"ArrivalDateTxt\":\"Tue, 16 Aug\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5244.7,\"ApiResultIndex\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"644e6-ef528-65f97-09b86\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4488,\"Tax\":756.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":231,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5244.7,\"PublishedFare\":4949.25,\"OfferedFare\":4890.25,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":756.7,\"BaseFareCal\":4899.25,\"BaseFare\":4488,\"CommissionEarned\":354.45,\"TDS\":-18.66,\"MF\":15,\"YQ\":0,\"AGST\":231,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"873\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-16T09:40\",\"SegFlightNumber\":\"UK-771\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-16T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-2466195810_0BOMCCUUK771_85464842653013\",\"localFromDateTime\":\"2022-08-16 07:00\",\"localToDateTime\":\"2022-08-16 09:40\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Kolkata (CCU)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"CCU\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"departure_date\":\"16\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"CCU\",\"from\":\"BOM\",\"to\":\"CCU\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"sourceCityId\":18676,\"destinationCityId\":14323,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"16\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-16\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"644e6-ef528-65f97-09b86\",\"from_city_\":\"1__BOM-CCU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Kolkata+%28CCU%29&source_city=BOM&ContSysId_1=101&destination_city=CCU&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29%2C+India&departure_date=16%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"helppower@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9768860440\",\"FirstName\":\"NADEEM FEROZ\",\"LastName\":\"KHAN\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-15-12-02-58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"45\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"428797\",\"TPSysId\":\"428798\",\"VersionId\":[\"92470\"],\"CustomerSysId\":\"224506\",\"TrxId\":\"31483\",\"FareBreakdownid\":[\"358267\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"113\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"45\",\"CustomerMemSysId\":[\"45\"],\"flight_booking_id\":[\"68\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"68\"],\"_sessiondata\":{\"EmailId\":\"helppower@gmail.com\",\"CustomerSysId\":\"224506\",\"AgencySysId\":\"12577\",\"FirstName\":\"Lokhandwala moiz\",\"LastName\":\"Shabbir\",\"Password_cu\":\"f91e15dbec69fc40f81f0876e7009648\",\"ContactNo1\":\"9768860440\",\"redirect_link_r\":\"https:\\/\\/www.svezz.com\\/flight\\/travellers\\/644e6-ef528-65f97-09b86\"},\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4949.25},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"224506\",\"TPSysId\":\"428798\",\"MasterTPSysId\":\"428797\",\"ProposalID\":\"428798\\/V1\",\"InvoiceDate\":\"2022-08-15\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-15\",\"PaymentDate\":\"2022-08-15\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4931.25,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4949.25,\"TotalDueAmount\":0,\"InvoiceValue\":4949.25,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-CCU-Vistara UK-771\",\"ItemQty\":1,\"ItemRates\":4831.25,\"Total\":4831.25,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4949.25,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":4931.25,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-15 12:03:45'),(325,'81d96-ff92c-f43b8-58c97','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8152\",\"keyIndex\":263,\"SegFlightNumberArr\":\"SG-8152\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9211633875_1BOMDELSG8152_2907781326143\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"07:20\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-08-28T07:20\",\"LocalFromTime\":\"2022-08-28 07:20\",\"FromUTCTime\":\"2022-08-28T07:20\",\"LocalToTime\":\"2022-08-28 09:35\",\"ToUTCTime\":\"2022-08-28T09:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 28 Aug\",\"ArrivalDateTxt\":\"Sun, 28 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":7,\"CurrencyType\":null,\"PublishedFare\":27564,\"PublishedFareTxt\":\"27,564\",\"ApiResultIndex\":\"11-9211633875_1BOMDELSG8152_2907781326143\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"81d96-ff92c-f43b8-58c97\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":25150,\"Tax\":1823.8999999999999,\"YQTax\":0,\"OtherCharges\":1700,\"Discount\":0,\"ServiceFee\":105,\"ManagementFeeTax\":18.900000000000002,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":26973.899999999998,\"PublishedFare\":27564,\"PublishedFarePerPax\":3938,\"OfferedFare\":26973.899999999998,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9211633875_1BOMDELSG8152_2907781326143\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":10,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":1070.8,\"BaseFareCal\":16760.8,\"BaseFare\":15600,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":1000,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":30,\"AddiMarkup\":166.66666666666666,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":535.4,\"BaseFareCal\":8425.4,\"BaseFare\":7800,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":500,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":30,\"AddiMarkup\":166.66666666666666,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":217.7,\"BaseFareCal\":2057.7,\"BaseFare\":1750,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":200,\"MFT\":2.7,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":30,\"AddiMarkup\":166.66666666666666,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"0 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":27563.9,\"CostToCustomer\":27563.9,\"BaseFareCal\":27063.9,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":27063.9,\"intOfferedFare\":26973.899999999998,\"intPublishFare\":26973.899999999998,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-28T09:35\",\"SegFlightNumber\":\"SG-8152\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-28T07:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"07:20\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-15 13:05:22'),(326,'2ee42-5ab49-0e818-629d9','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-941\",\"keyIndex\":33,\"SegFlightNumberArr\":\"UK-941\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4929973051_10DELBOMUK941_24648200660689\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:55\",\"ArrivalTime\":\"19:05\",\"TravelDate\":\"2022-08-20T16:55\",\"LocalFromTime\":\"2022-08-20 16:55\",\"FromUTCTime\":\"2022-08-20T16:55\",\"LocalToTime\":\"2022-08-20 19:05\",\"ToUTCTime\":\"2022-08-20T19:05\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4983,\"PublishedFareTxt\":\"4,983\",\"ApiResultIndex\":\"21-10-15-2-4929973051_10DELBOMUK941_24648200660488\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"2ee42-5ab49-0e818-629d9\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":774.7,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5375.7,\"PublishedFare\":4983,\"PublishedFarePerPax\":4983,\"OfferedFare\":4923.55,\"CommissionEarned\":452.15,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.8,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4929973051_10DELBOMUK941_24648200660689\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":774.7,\"BaseFareCal\":4932.55,\"BaseFare\":4601,\"CommissionEarned\":452.15,\"TDS\":-23.8,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":390,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":452.15,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4982.55,\"CostToCustomer\":4982.55,\"BaseFareCal\":4932.55,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4932.55,\"intOfferedFare\":4923.55,\"intPublishFare\":5375.7,\"TripjackMarkup\":0,\"TripjackCommission\":452.15,\"TripjackTDS\":\"23.8\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0II\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-20T19:05\",\"SegFlightNumber\":\"UK-941\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-20T16:55\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"16:55\",\"strArrivalDtTime\":\"19:05\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-15 17:03:15'),(327,'c783b-3ebb9-4e080-e2b78','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-2607\",\"keyIndex\":31,\"SegFlightNumberArr\":\"G8-2607\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-5124374828_0BOMJAIG82607_2936177472070\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:55\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-17T15:55\",\"LocalFromTime\":\"2022-08-17 15:55\",\"FromUTCTime\":\"2022-08-17T15:55\",\"LocalToTime\":\"2022-08-17 17:45\",\"ToUTCTime\":\"2022-08-17T17:45\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Wed, 17 Aug\",\"ArrivalDateTxt\":\"Wed, 17 Aug\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":8026,\"PublishedFareTxt\":\"8,025\",\"ApiResultIndex\":\"11-5124374828_0BOMJAIG82607_2936177472070\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"c783b-3ebb9-4e080-e2b78\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6900,\"Tax\":535.4,\"YQTax\":0,\"OtherCharges\":500,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7435.4,\"PublishedFare\":8026,\"PublishedFarePerPax\":4013,\"OfferedFare\":7435.4,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-5124374828_0BOMJAIG82607_2936177472070\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":535.4,\"BaseFareCal\":7525.4,\"BaseFare\":6900,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":500,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":8025.4,\"CostToCustomer\":8025.4,\"BaseFareCal\":7525.4,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":7525.4,\"intOfferedFare\":7435.4,\"intPublishFare\":7435.4,\"TripjackMarkup\":0,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-17T17:45\",\"SegFlightNumber\":\"G8-2607\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-17T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-15 17:42:41'),(328,'fb90f-3a607-8db59-f6796','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-653\",\"keyIndex\":3,\"SegFlightNumberArr\":\"UK-653\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-3099510385_0BOMIXCUK653_29318344208935\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"07:50\",\"TravelDate\":\"2022-10-30T05:30\",\"LocalFromTime\":\"2022-10-30 05:30\",\"FromUTCTime\":\"2022-10-30T05:30\",\"LocalToTime\":\"2022-10-30 07:50\",\"ToUTCTime\":\"2022-10-30T07:50\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 30 Oct\",\"ArrivalDateTxt\":\"Sun, 30 Oct\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"5765\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXC\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":7,\"CurrencyType\":null,\"PublishedFare\":33294,\"PublishedFareTxt\":\"33,293\",\"ApiResultIndex\":\"21-10-15-2-3099510385_0BOMIXCUK653_29318344208565\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"fb90f-3a607-8db59-f6796\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":29980,\"Tax\":4849.900000000001,\"YQTax\":0,\"OtherCharges\":2268,\"Discount\":0,\"ServiceFee\":105,\"ManagementFeeTax\":18.900000000000002,\"AirlineGSTComponent\":1548,\"CarrierMiscFee\":910,\"MUFee\":0,\"intPublishedFare\":34829.899999999994,\"PublishedFare\":33294,\"PublishedFarePerPax\":4757,\"OfferedFare\":33234.079999999994,\"CommissionEarned\":1595.8200000000002,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-84,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3099510385_0BOMIXCUK653_29318344208935\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":3086.8,\"BaseFareCal\":21151.92,\"BaseFare\":19120,\"CommissionEarned\":1063.88,\"TDS\":-56,\"MF\":60,\"YQ\":0,\"AGST\":984,\"MFT\":10.8,\"OT\":1512,\"MU\":0,\"YR\":520,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":1543.4,\"BaseFareCal\":10580.46,\"BaseFare\":9560,\"CommissionEarned\":531.94,\"TDS\":-28,\"MF\":30,\"YQ\":0,\"AGST\":492,\"MFT\":5.4,\"OT\":756,\"MU\":0,\"YR\":260,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":219.7,\"BaseFareCal\":1528.7,\"BaseFare\":1300,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":72,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1595.82,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":33293.08,\"CostToCustomer\":33293.08,\"BaseFareCal\":33243.08,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":33243.08,\"intOfferedFare\":33234.079999999994,\"intPublishFare\":34829.899999999994,\"TripjackMarkup\":0,\"TripjackCommission\":1595.8200000000002,\"TripjackTDS\":\"84\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"02I\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Chandigarh Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chandigarh\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXC\",\"destinationArrTime\":\"2022-10-30T07:50\",\"SegFlightNumber\":\"UK-653\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-10-30T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"40001-45000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-15 18:38:57'),(329,'e9782-72cc8-ca4b3-adacc','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-1782\",\"keyIndex\":210,\"SegFlightNumberArr\":\"I5-1782\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-3512637195_0BLRBOMI51782_57869181558549\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"21:20\",\"TravelDate\":\"2022-08-17T19:30\",\"LocalFromTime\":\"2022-08-17 19:30\",\"FromUTCTime\":\"2022-08-17T19:30\",\"LocalToTime\":\"2022-08-17 21:20\",\"ToUTCTime\":\"2022-08-17T21:20\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Wed, 17 Aug\",\"ArrivalDateTxt\":\"Wed, 17 Aug\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":8705,\"PublishedFareTxt\":\"8,705\",\"ApiResultIndex\":\"22-16-3512637195_0BLRBOMI51782_57869181556259\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"e9782-72cc8-ca4b3-adacc\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6830,\"Tax\":1831.4,\"YQTax\":0,\"OtherCharges\":1448,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":348,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":8661.4,\"PublishedFare\":8705,\"PublishedFarePerPax\":4353,\"OfferedFare\":8586.78,\"CommissionEarned\":74.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-3512637195_0BLRBOMI51782_57869181558549\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Instant HOT DEAL\",\"fareremarks\":\"Issues Instantly , Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1831.4,\"BaseFareCal\":8604.78,\"BaseFare\":6830,\"CommissionEarned\":74.62,\"TDS\":-3.92,\"MF\":30,\"YQ\":0,\"AGST\":348,\"MFT\":5.4,\"OT\":1448,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":74.62,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":8704.78,\"CostToCustomer\":8704.78,\"BaseFareCal\":8604.78,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":8604.78,\"intOfferedFare\":8586.78,\"intPublishFare\":8661.4,\"TripjackMarkup\":0,\"TripjackCommission\":74.62,\"TripjackTDS\":\"3.92\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-17T21:20\",\"SegFlightNumber\":\"I5-1782\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-08-17T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"21:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-16 13:58:13'),(330,'91061-2508e-25141-e8205','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-382\",\"keyIndex\":2,\"SegFlightNumberArr\":\"G8-382\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9500419305_2BOMGOIG8382_4183602030074\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:20\",\"ArrivalTime\":\"16:45\",\"TravelDate\":\"2022-08-17T15:20\",\"LocalFromTime\":\"2022-08-17 15:20\",\"FromUTCTime\":\"2022-08-17T15:20\",\"LocalToTime\":\"2022-08-17 16:45\",\"ToUTCTime\":\"2022-08-17T16:45\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":85,\"DepartureDateTxt\":\"Wed, 17 Aug\",\"ArrivalDateTxt\":\"Wed, 17 Aug\",\"FlightDuration\":\"1h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":5914,\"PublishedFareTxt\":\"5,913\",\"ApiResultIndex\":\"1-9500419305_2BOMGOIG8382_4183602030074\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"91061-2508e-25141-e8205\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4596,\"Tax\":1297.4,\"YQTax\":0,\"OtherCharges\":1262,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5893.4,\"PublishedFare\":5914,\"PublishedFarePerPax\":2957,\"OfferedFare\":5795.18,\"CommissionEarned\":98.22,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-9500419305_2BOMGOIG8382_4183602030074\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1297.4,\"BaseFareCal\":5813.18,\"BaseFare\":4596,\"CommissionEarned\":98.22,\"TDS\":-5.18,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1262,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":98.22,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5913.18,\"CostToCustomer\":5913.18,\"BaseFareCal\":5813.18,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5813.18,\"intOfferedFare\":5795.18,\"intPublishFare\":5893.4,\"TripjackMarkup\":0,\"TripjackCommission\":98.22,\"TripjackTDS\":\"5.18\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"03F\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-08-17T16:45\",\"SegFlightNumber\":\"G8-382\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-17T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-16 14:45:26'),(332,'f86bb-cdabb-a4585-15d5a','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5126\",\"keyIndex\":32,\"SegFlightNumberArr\":\"6E-5126\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5448199625_1DELPAT6E5126_8847333535544\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:20\",\"ArrivalTime\":\"10:50\",\"TravelDate\":\"2022-08-18T09:20\",\"LocalFromTime\":\"2022-08-18 09:20\",\"FromUTCTime\":\"2022-08-18T09:20\",\"LocalToTime\":\"2022-08-18 10:50\",\"ToUTCTime\":\"2022-08-18T10:50\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Thu, 18 Aug\",\"ArrivalDateTxt\":\"Thu, 18 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3532,\"PublishedFareTxt\":\"3,531\",\"ApiResultIndex\":\"5-5448199625_1DELPAT6E5126_8847333535334\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"f86bb-cdabb-a4585-15d5a\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2789,\"Tax\":650.7,\"YQTax\":0,\"OtherCharges\":633,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3439.7,\"PublishedFare\":3532,\"PublishedFarePerPax\":3532,\"OfferedFare\":3413.2,\"CommissionEarned\":26.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.39,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5448199625_1DELPAT6E5126_8847333535544\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":650.7,\"BaseFareCal\":3431.2,\"BaseFare\":2789,\"CommissionEarned\":26.5,\"TDS\":-1.39,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":633,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":26.5,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3531.2,\"CostToCustomer\":3531.2,\"BaseFareCal\":3431.2,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3431.2,\"intOfferedFare\":3413.2,\"intPublishFare\":3439.7,\"TripjackMarkup\":0,\"TripjackCommission\":26.5,\"TripjackTDS\":\"1.39\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"040\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-08-18T10:50\",\"SegFlightNumber\":\"6E-5126\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-18T09:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:20\",\"strArrivalDtTime\":\"10:50\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-16 16:39:14'),(333,'42b58-9f4d0-06061-e38ac','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-679\",\"keyIndex\":30,\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-0918162758_2JAIBOMI5679_4803484026770\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-18T17:55\",\"LocalFromTime\":\"2022-08-18 17:55\",\"FromUTCTime\":\"2022-08-18T17:55\",\"LocalToTime\":\"2022-08-18 19:50\",\"ToUTCTime\":\"2022-08-18T19:50\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Thu, 18 Aug\",\"ArrivalDateTxt\":\"Thu, 18 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":16553,\"PublishedFareTxt\":\"16,552\",\"ApiResultIndex\":\"11-0918162758_2JAIBOMI5679_4803484026770\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"42b58-9f4d0-06061-e38ac\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15300,\"Tax\":953.0999999999999,\"YQTax\":0,\"OtherCharges\":900,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":16253.099999999999,\"PublishedFare\":16553,\"PublishedFarePerPax\":5518,\"OfferedFare\":15962.400000000001,\"CommissionEarned\":290.70000000000005,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15.299999999999999,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-0918162758_2JAIBOMI5679_4803484026770\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":953.0999999999999,\"BaseFareCal\":16052.4,\"BaseFare\":15300,\"CommissionEarned\":290.70000000000005,\"TDS\":-15.299999999999999,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":900,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":290.7,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":16552.4,\"CostToCustomer\":16552.4,\"BaseFareCal\":16052.4,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":16052.4,\"intOfferedFare\":15962.400000000001,\"intPublishFare\":16253.099999999999,\"TripjackMarkup\":0,\"TripjackCommission\":290.70000000000005,\"TripjackTDS\":\"15.3\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"036\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-18T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"G\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-18T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-16 17:59:19'),(334,'eb477-416e9-f675a-09560','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-679\",\"keyIndex\":30,\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-0163119386_1JAIBOMI5679_4842353520797\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-18T17:55\",\"LocalFromTime\":\"2022-08-18 17:55\",\"FromUTCTime\":\"2022-08-18T17:55\",\"LocalToTime\":\"2022-08-18 19:50\",\"ToUTCTime\":\"2022-08-18T19:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Thu, 18 Aug\",\"ArrivalDateTxt\":\"Thu, 18 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":20020,\"PublishedFareTxt\":\"20,020\",\"ApiResultIndex\":\"22-16-0163119386_1JAIBOMI5679_4842353520797\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"eb477-416e9-f675a-09560\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16869,\"Tax\":3233.1000000000004,\"YQTax\":0,\"OtherCharges\":2328,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":852,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":20102.1,\"PublishedFare\":20020,\"PublishedFarePerPax\":6674,\"OfferedFare\":19901.760000000002,\"CommissionEarned\":200.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.53,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-0163119386_1JAIBOMI5679_4842353520797\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":3233.1000000000004,\"BaseFareCal\":19919.76,\"BaseFare\":16869,\"CommissionEarned\":200.34,\"TDS\":-10.53,\"MF\":45,\"YQ\":0,\"AGST\":852,\"MFT\":8.100000000000001,\"OT\":2328,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":200.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":20019.76,\"CostToCustomer\":20019.76,\"BaseFareCal\":19919.76,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":19919.76,\"intOfferedFare\":19901.760000000002,\"intPublishFare\":20102.1,\"TripjackMarkup\":0,\"TripjackCommission\":200.34,\"TripjackTDS\":\"10.53\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04Z\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-18T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-18T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-16 18:50:46'),(335,'deaed-70f32-1a9a9-b2956','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-679\",\"keyIndex\":7,\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-1165218265_1JAIBOMI5679_17090648853601\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-18T17:55\",\"LocalFromTime\":\"2022-08-18 17:55\",\"FromUTCTime\":\"2022-08-18T17:55\",\"LocalToTime\":\"2022-08-18 19:50\",\"ToUTCTime\":\"2022-08-18T19:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Thu, 18 Aug\",\"ArrivalDateTxt\":\"Thu, 18 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":20020,\"PublishedFareTxt\":\"20,020\",\"ApiResultIndex\":\"22-16-1165218265_1JAIBOMI5679_17090648853601\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"deaed-70f32-1a9a9-b2956\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16869,\"Tax\":3233.1000000000004,\"YQTax\":0,\"OtherCharges\":2328,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":852,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":20102.1,\"PublishedFare\":20020,\"PublishedFarePerPax\":6674,\"OfferedFare\":19901.760000000002,\"CommissionEarned\":200.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.53,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-1165218265_1JAIBOMI5679_17090648853601\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":3233.1000000000004,\"BaseFareCal\":19919.76,\"BaseFare\":16869,\"CommissionEarned\":200.34,\"TDS\":-10.53,\"MF\":45,\"YQ\":0,\"AGST\":852,\"MFT\":8.100000000000001,\"OT\":2328,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":200.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":20019.76,\"CostToCustomer\":20019.76,\"BaseFareCal\":19919.76,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":19919.76,\"intOfferedFare\":19901.760000000002,\"intPublishFare\":20102.1,\"TripjackMarkup\":0,\"TripjackCommission\":200.34,\"TripjackTDS\":\"10.53\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04I\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-18T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-18T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-16 19:08:29'),(336,'5e58e-b1c77-b8147-468a3','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-679\",\"keyIndex\":28,\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7580743953_1JAIBOMI5679_5492160696292\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-18T17:55\",\"LocalFromTime\":\"2022-08-18 17:55\",\"FromUTCTime\":\"2022-08-18T17:55\",\"LocalToTime\":\"2022-08-18 19:50\",\"ToUTCTime\":\"2022-08-18T19:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Thu, 18 Aug\",\"ArrivalDateTxt\":\"Thu, 18 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":20020,\"PublishedFareTxt\":\"20,020\",\"ApiResultIndex\":\"22-16-7580743953_1JAIBOMI5679_5492160696292\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5e58e-b1c77-b8147-468a3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16869,\"Tax\":3233.1000000000004,\"YQTax\":0,\"OtherCharges\":2328,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":852,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":20102.1,\"PublishedFare\":20020,\"PublishedFarePerPax\":6674,\"OfferedFare\":19901.760000000002,\"CommissionEarned\":200.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.53,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-7580743953_1JAIBOMI5679_5492160696292\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":3233.1000000000004,\"BaseFareCal\":19919.76,\"BaseFare\":16869,\"CommissionEarned\":200.34,\"TDS\":-10.53,\"MF\":45,\"YQ\":0,\"AGST\":852,\"MFT\":8.100000000000001,\"OT\":2328,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":200.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":20019.76,\"CostToCustomer\":20019.76,\"BaseFareCal\":19919.76,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":19919.76,\"intOfferedFare\":19901.760000000002,\"intPublishFare\":20102.1,\"TripjackMarkup\":0,\"TripjackCommission\":200.34,\"TripjackTDS\":\"10.53\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04P\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-18T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-18T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-16 21:49:20'),(337,'cd405-ece2e-4c090-2f26b','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-993\",\"keyIndex\":18,\"SegFlightNumberArr\":\"UK-993\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2089203135_10DELBOMUK993_397083619605\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"12:45\",\"ArrivalTime\":\"15:00\",\"TravelDate\":\"2022-08-20T12:45\",\"LocalFromTime\":\"2022-08-20 12:45\",\"FromUTCTime\":\"2022-08-20T12:45\",\"LocalToTime\":\"2022-08-20 15:00\",\"ToUTCTime\":\"2022-08-20T15:00\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":10097,\"PublishedFareTxt\":\"10,096\",\"ApiResultIndex\":\"21-10-15-2-2089203135_10DELBOMUK993_397083618964\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cd405-ece2e-4c090-2f26b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9202,\"Tax\":1549.4,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":474,\"CarrierMiscFee\":260,\"MUFee\":0,\"intPublishedFare\":10751.4,\"PublishedFare\":10097,\"PublishedFarePerPax\":5049,\"OfferedFare\":10037.1,\"CommissionEarned\":714.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-37.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2089203135_10DELBOMUK993_397083619605\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1549.4,\"BaseFareCal\":10046.1,\"BaseFare\":9202,\"CommissionEarned\":714.3,\"TDS\":-37.6,\"MF\":30,\"YQ\":0,\"AGST\":474,\"MFT\":5.4,\"OT\":780,\"MU\":0,\"YR\":260,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":714.3,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":10096.1,\"CostToCustomer\":10096.1,\"BaseFareCal\":10046.1,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":10046.1,\"intOfferedFare\":10037.1,\"intPublishFare\":10751.4,\"TripjackMarkup\":0,\"TripjackCommission\":714.3,\"TripjackTDS\":\"37.6\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0F4\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-20T15:00\",\"SegFlightNumber\":\"UK-993\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"P\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-20T12:45\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"12:45\",\"strArrivalDtTime\":\"15:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-17 09:51:01'),(338,'fc60f-6e5ae-91314-2422a','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-679\",\"keyIndex\":29,\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-8153581835_1JAIBOMI5679_6636482101016\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-18T17:55\",\"LocalFromTime\":\"2022-08-18 17:55\",\"FromUTCTime\":\"2022-08-18T17:55\",\"LocalToTime\":\"2022-08-18 19:50\",\"ToUTCTime\":\"2022-08-18T19:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Thu, 18 Aug\",\"ArrivalDateTxt\":\"Thu, 18 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":20020,\"PublishedFareTxt\":\"20,020\",\"ApiResultIndex\":\"22-16-8153581835_1JAIBOMI5679_6636482101016\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"fc60f-6e5ae-91314-2422a\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16869,\"Tax\":3233.1000000000004,\"YQTax\":0,\"OtherCharges\":2328,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":852,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":20102.1,\"PublishedFare\":20020,\"PublishedFarePerPax\":6674,\"OfferedFare\":19901.760000000002,\"CommissionEarned\":200.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.53,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-8153581835_1JAIBOMI5679_6636482101016\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":3233.1000000000004,\"BaseFareCal\":19919.76,\"BaseFare\":16869,\"CommissionEarned\":200.34,\"TDS\":-10.53,\"MF\":45,\"YQ\":0,\"AGST\":852,\"MFT\":8.100000000000001,\"OT\":2328,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":200.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":20019.76,\"CostToCustomer\":20019.76,\"BaseFareCal\":19919.76,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":19919.76,\"intOfferedFare\":19901.760000000002,\"intPublishFare\":20102.1,\"TripjackMarkup\":0,\"TripjackCommission\":200.34,\"TripjackTDS\":\"10.53\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04F\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-18T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-18T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-17 11:14:33'),(339,'60299-0fa13-9b5a7-e5382','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-941\",\"keyIndex\":32,\"SegFlightNumberArr\":\"UK-941\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-0271614850_10DELBOMUK941_11962904496120\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:55\",\"ArrivalTime\":\"19:05\",\"TravelDate\":\"2022-08-20T16:55\",\"LocalFromTime\":\"2022-08-20 16:55\",\"FromUTCTime\":\"2022-08-20T16:55\",\"LocalToTime\":\"2022-08-20 19:05\",\"ToUTCTime\":\"2022-08-20T19:05\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4983,\"PublishedFareTxt\":\"4,983\",\"ApiResultIndex\":\"21-10-15-2-0271614850_10DELBOMUK941_11962904495880\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"60299-0fa13-9b5a7-e5382\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":774.7,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5375.7,\"PublishedFare\":4983,\"PublishedFarePerPax\":4983,\"OfferedFare\":4923.55,\"CommissionEarned\":452.15,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.8,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-0271614850_10DELBOMUK941_11962904496120\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":774.7,\"BaseFareCal\":4932.55,\"BaseFare\":4601,\"CommissionEarned\":452.15,\"TDS\":-23.8,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":390,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":452.15,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4982.55,\"CostToCustomer\":4982.55,\"BaseFareCal\":4932.55,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4932.55,\"intOfferedFare\":4923.55,\"intPublishFare\":5375.7,\"TripjackMarkup\":0,\"TripjackCommission\":452.15,\"TripjackTDS\":\"23.8\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0C9\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-20T19:05\",\"SegFlightNumber\":\"UK-941\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-20T16:55\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"16:55\",\"strArrivalDtTime\":\"19:05\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-17 13:50:10'),(344,'8d65a-23fba-f2ef2-ba890','{\"BookingData\":[{\"bookingId\":\"TJ102640489775\",\"FlightNumber\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-19T06:00\",\"LocalFromTime\":\"2022-08-19 06:00\",\"FromUTCTime\":\"2022-08-19T06:00\",\"LocalToTime\":\"2022-08-19 08:05\",\"ToUTCTime\":\"2022-08-19T08:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4799.7,\"PublishedFareTxt\":\"4,800\",\"ApiResultIndex\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3150,\"CRFT\":9,\"ARFT\":157.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACFT\":183.75,\"CCFT\":9,\"CCF\":50,\"ACF\":3675}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4064,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4418.69,\"OfferedFare\":4359.69,\"CommissionEarned\":440.01,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.16,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-7598176729_0BOMDELUK954_139851917259118\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4368.69,\"BaseFare\":4064,\"CommissionEarned\":440.01,\"TDS\":-23.16,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":440.01,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4418.69,\"CostToCustomer\":4418.69,\"BaseFareCal\":4368.69,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4368.69,\"intOfferedFare\":4359.69,\"intPublishFare\":4799.7,\"TripjackMarkup\":0,\"TripjackCommission\":440.01,\"TripjackTDS\":\"23.16\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"283\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-19T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"8d65a-23fba-f2ef2-ba890\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102640489775\",\"FlightNumber\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"strTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-19T06:00\",\"LocalFromTime\":\"2022-08-19 06:00\",\"FromUTCTime\":\"2022-08-19T06:00\",\"LocalToTime\":\"2022-08-19 08:05\",\"ToUTCTime\":\"2022-08-19T08:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4799.7,\"ApiResultIndex\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"8d65a-23fba-f2ef2-ba890\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4064,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4418.69,\"OfferedFare\":4359.69,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4368.69,\"BaseFare\":4064,\"CommissionEarned\":440.01,\"TDS\":-23.16,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"283\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-19T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-7598176729_0BOMDELUK954_92969157417634\",\"localFromDateTime\":\"2022-08-19 06:00\",\"localToDateTime\":\"2022-08-19 08:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"19\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-19\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"8d65a-23fba-f2ef2-ba890\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=19%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"narwalveer@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8307741492\",\"FirstName\":\"Karmveer\",\"LastName\":\"Karmveer\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-18-13-26-53\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"40\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"430886\",\"TPSysId\":\"430887\",\"VersionId\":[\"93375\"],\"CustomerSysId\":\"226511\",\"TrxId\":\"31693\",\"FareBreakdownid\":[\"358442\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"114\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"40\",\"CustomerMemSysId\":[\"40\"],\"flight_booking_id\":[\"69\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"69\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4418.6900000000005},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":null,\"TPSysId\":null,\"MasterTPSysId\":null,\"ProposalID\":\"\\/V1\",\"InvoiceDate\":\"2022-08-18\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-18\",\"PaymentDate\":\"2022-08-18\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4400.6900000000005,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4418.6900000000005,\"TotalDueAmount\":0,\"InvoiceValue\":4418.6900000000005,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-Vistara UK-954\",\"ItemQty\":1,\"ItemRates\":4300.6900000000005,\"Total\":4300.6900000000005,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4418.6900000000005,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":4400.6900000000005,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-18 13:30:26'),(349,'89d33-0b3e4-09b94-2c6ca','{\"BookingData\":[{\"bookingId\":\"TJ105040490274\",\"FlightNumber\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-19T06:00\",\"LocalFromTime\":\"2022-08-19 06:00\",\"FromUTCTime\":\"2022-08-19T06:00\",\"LocalToTime\":\"2022-08-19 08:05\",\"ToUTCTime\":\"2022-08-19T08:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4799.7,\"PublishedFareTxt\":\"4,800\",\"ApiResultIndex\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARFT\":157.5,\"ARF\":3150,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACFT\":183.75,\"ACF\":3675,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4064,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4418.69,\"OfferedFare\":4359.69,\"CommissionEarned\":440.01,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.16,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-5872214121_0BOMDELUK954_4587962578377\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4368.69,\"BaseFare\":4064,\"CommissionEarned\":440.01,\"TDS\":-23.16,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":440.01,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":4418.69,\"CostToCustomer\":4418.69,\"BaseFareCal\":4368.69,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":4368.69,\"intOfferedFare\":4359.69,\"intPublishFare\":4799.7,\"TripjackMarkup\":0,\"TripjackCommission\":440.01,\"TripjackTDS\":\"23.16\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"148\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-19T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"89d33-0b3e4-09b94-2c6ca\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105040490274\",\"FlightNumber\":\"UK-954\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"strTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:05\",\"TravelDate\":\"2022-08-19T06:00\",\"LocalFromTime\":\"2022-08-19 06:00\",\"FromUTCTime\":\"2022-08-19T06:00\",\"LocalToTime\":\"2022-08-19 08:05\",\"ToUTCTime\":\"2022-08-19T08:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4799.7,\"ApiResultIndex\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"89d33-0b3e4-09b94-2c6ca\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4064,\"Tax\":735.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":4799.7,\"PublishedFare\":4418.69,\"OfferedFare\":4359.69,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":735.7,\"BaseFareCal\":4368.69,\"BaseFare\":4064,\"CommissionEarned\":440.01,\"TDS\":-23.16,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"148\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-19T08:05\",\"SegFlightNumber\":\"UK-954\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-19T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-5872214121_0BOMDELUK954_7817689905853\",\"localFromDateTime\":\"2022-08-19 06:00\",\"localToDateTime\":\"2022-08-19 08:05\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"19\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-19\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"89d33-0b3e4-09b94-2c6ca\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=19%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"narwalveer@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8307741492\",\"FirstName\":\"Karmveer\",\"LastName\":\"Karmveer\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-18-13-34-22\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"46\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"430902\",\"TPSysId\":\"430903\",\"VersionId\":[\"93377\"],\"CustomerSysId\":\"226511\",\"TrxId\":\"31695\",\"FareBreakdownid\":[\"358444\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"115\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"46\",\"CustomerMemSysId\":[\"46\"],\"flight_booking_id\":[\"70\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"70\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4418.6900000000005},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":null,\"TPSysId\":null,\"MasterTPSysId\":null,\"ProposalID\":\"\\/V1\",\"InvoiceDate\":\"2022-08-18\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-18\",\"PaymentDate\":\"2022-08-18\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4400.6900000000005,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4418.6900000000005,\"TotalDueAmount\":0,\"InvoiceValue\":4418.6900000000005,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-Vistara UK-954\",\"ItemQty\":1,\"ItemRates\":4300.6900000000005,\"Total\":4300.6900000000005,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4418.6900000000005,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":4400.6900000000005,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-18 13:36:10'),(350,'8e632-45d01-76921-0f63a','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-487\",\"keyIndex\":119,\"SegFlightNumberArr\":\"SG-487\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3671451268_1GOIBOMSG487_103345225014111\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2022-08-19T17:35\",\"LocalFromTime\":\"2022-08-19 17:35\",\"FromUTCTime\":\"2022-08-19T17:35\",\"LocalToTime\":\"2022-08-19 18:50\",\"ToUTCTime\":\"2022-08-19T18:50\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":13,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":15347,\"PublishedFareTxt\":\"15,347\",\"ApiResultIndex\":\"4-3671451268_1GOIBOMSG487_103345225013661\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"8e632-45d01-76921-0f63a\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9376,\"Tax\":3670.8,\"YQTax\":0,\"OtherCharges\":3112,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":488,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13046.8,\"PublishedFare\":13054,\"PublishedFarePerPax\":3264,\"OfferedFare\":12935.44,\"CommissionEarned\":111.36,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.84,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3671451268_1GOIBOMSG487_103345225014111\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":18,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":3670.8,\"BaseFareCal\":12953.44,\"BaseFare\":9376,\"CommissionEarned\":111.36,\"TDS\":-5.84,\"MF\":60,\"YQ\":0,\"AGST\":488,\"MFT\":10.8,\"OT\":3112,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":111.36,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":13053.44,\"CostToCustomer\":13053.44,\"BaseFareCal\":12953.44,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":12953.44,\"intOfferedFare\":12935.44,\"intPublishFare\":13046.8,\"TripjackMarkup\":0,\"TripjackCommission\":111.36,\"TripjackTDS\":\"5.84\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"06W\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-19T18:50\",\"SegFlightNumber\":\"SG-487\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-08-19T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":13,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-18 17:40:19'),(351,'b3e55-2a14b-b0b07-448a1','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8252\",\"keyIndex\":9,\"SegFlightNumberArr\":\"SG-8252\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2681538014_1CCUDELSG8252_167716641536958\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"22:05\",\"ArrivalTime\":\"00:15\",\"TravelDate\":\"2022-08-19T22:05\",\"LocalFromTime\":\"2022-08-19 22:05\",\"FromUTCTime\":\"2022-08-19T22:05\",\"LocalToTime\":\"2022-08-20 00:15\",\"ToUTCTime\":\"2022-08-20T00:15\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"14323\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":67,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5452,\"PublishedFareTxt\":\"5,452\",\"ApiResultIndex\":\"4-2681538014_1CCUDELSG8252_167716641536688\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b3e55-2a14b-b0b07-448a1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4114,\"Tax\":1268.7,\"YQTax\":0,\"OtherCharges\":1041,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":210,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5382.7,\"PublishedFare\":5452,\"PublishedFarePerPax\":5452,\"OfferedFare\":5333.85,\"CommissionEarned\":48.85,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2681538014_1CCUDELSG8252_167716641536958\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":57,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1268.7,\"BaseFareCal\":5351.85,\"BaseFare\":4114,\"CommissionEarned\":48.85,\"TDS\":-2.57,\"MF\":15,\"YQ\":0,\"AGST\":210,\"MFT\":2.7,\"OT\":1041,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":48.85,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5451.85,\"CostToCustomer\":5451.85,\"BaseFareCal\":5351.85,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5351.85,\"intOfferedFare\":5333.85,\"intPublishFare\":5382.7,\"TripjackMarkup\":0,\"TripjackCommission\":48.85,\"TripjackTDS\":\"2.57\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"03G\"},\"Segments\":[{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-20T00:15\",\"SegFlightNumber\":\"SG-8252\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":67,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"00:15\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-19 08:11:07'),(355,'d4375-89284-90228-9c8b1','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-856\",\"keyIndex\":1,\"SegFlightNumberArr\":\"6E-856\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3447559421_1CCUJAI6E856_72581352906937\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2022-08-19T18:30\",\"LocalFromTime\":\"2022-08-19 18:30\",\"FromUTCTime\":\"2022-08-19T18:30\",\"LocalToTime\":\"2022-08-19 20:35\",\"ToUTCTime\":\"2022-08-19T20:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"14323\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7738,\"PublishedFareTxt\":\"7,738\",\"ApiResultIndex\":\"5-3447559421_1CCUJAI6E856_72581352906667\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d4375-89284-90228-9c8b1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6300,\"Tax\":1379.7,\"YQTax\":0,\"OtherCharges\":1362,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7679.7,\"PublishedFare\":7738,\"PublishedFarePerPax\":7738,\"OfferedFare\":7619.85,\"CommissionEarned\":59.85,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3447559421_1CCUJAI6E856_72581352906937\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.7,\"BaseFareCal\":7637.85,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":-3.15,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1362,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":59.85,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7737.85,\"CostToCustomer\":7737.85,\"BaseFareCal\":7637.85,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7637.85,\"intOfferedFare\":7619.85,\"intPublishFare\":7679.7,\"TripjackMarkup\":0,\"TripjackCommission\":59.85,\"TripjackTDS\":\"3.15\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"021\"},\"Segments\":[{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-19T20:35\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-19T18:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:30\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"flight_booking_id_Arr\":[\"71\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"41\",\"CustomerMemSysId\":[\"41\"],\"flight_booking_id\":[\"71\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ashishbaid.1994@yahoo.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8955465384\",\"FirstName\":\"Bimal kumar \",\"LastName\":\"Baid\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-19-09-37-22\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"41\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"41\",\"CustomerMemSysId\":[\"41\"],\"flight_booking_customer\":[[\"116\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Kolkata (CCU)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"CCU\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"19\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"CCU\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"CCU\",\"to\":\"JAI\",\"sourceCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":14323,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-19\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"d4375-89284-90228-9c8b1\",\"from_city_\":\"1__CCU-JAI\"},\"sessionData\":{\"CustomerSysId\":\"41\",\"CustomerMemSysId\":[\"41\"],\"flight_booking_id\":[\"71\"]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingDataInbound\":null}','2022-08-19 09:39:32'),(361,'3cf3b-3261b-008b9-58a00','{\"BookingData\":[{\"bookingId\":\"TJ105640549973\",\"FlightNumber\":\"6E-856\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2022-08-19T18:30\",\"LocalFromTime\":\"2022-08-19 18:30\",\"FromUTCTime\":\"2022-08-19T18:30\",\"LocalToTime\":\"2022-08-19 20:35\",\"ToUTCTime\":\"2022-08-19T20:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7679.7,\"PublishedFareTxt\":\"7,680\",\"ApiResultIndex\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"CCU-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARF\":3250,\"CRF\":50,\"ARFT\":162.5,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6300,\"Tax\":1379.7,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":320,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7679.7,\"PublishedFare\":7737.85,\"OfferedFare\":7619.85,\"CommissionEarned\":59.85,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4741806359_0CCUJAI6E856_72929084126735\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.7,\"BaseFareCal\":7637.85,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":-3.15,\"MF\":15,\"YQ\":0,\"AGST\":320,\"MFT\":2.7,\"OT\":1042,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":59.85,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7737.85,\"CostToCustomer\":7737.85,\"BaseFareCal\":7637.85,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7637.85,\"intOfferedFare\":7619.85,\"intPublishFare\":7679.7,\"TripjackMarkup\":0,\"TripjackCommission\":59.85,\"TripjackTDS\":\"3.15\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"309\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-19T20:35\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-19T18:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:30\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"309\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"3cf3b-3261b-008b9-58a00\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105640549973\",\"FlightNumber\":\"6E-856\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"strTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:30\",\"ArrivalTime\":\"20:35\",\"TravelDate\":\"2022-08-19T18:30\",\"LocalFromTime\":\"2022-08-19 18:30\",\"FromUTCTime\":\"2022-08-19T18:30\",\"LocalToTime\":\"2022-08-19 20:35\",\"ToUTCTime\":\"2022-08-19T20:35\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 19 Aug\",\"ArrivalDateTxt\":\"Fri, 19 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7679.7,\"ApiResultIndex\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"3cf3b-3261b-008b9-58a00\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6300,\"Tax\":1379.7,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":320,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7679.7,\"PublishedFare\":7737.85,\"OfferedFare\":7619.85,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.7,\"BaseFareCal\":7637.85,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":-3.15,\"MF\":15,\"YQ\":0,\"AGST\":320,\"MFT\":2.7,\"OT\":1042,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"309\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-19T20:35\",\"SegFlightNumber\":\"6E-856\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-19T18:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:30\",\"strArrivalDtTime\":\"20:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4741806359_0CCUJAI6E856_161110572937463\",\"localFromDateTime\":\"2022-08-19 18:30\",\"localToDateTime\":\"2022-08-19 20:35\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":14323,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Kolkata (CCU)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"CCU\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"19\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"CCU\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"CCU\",\"to\":\"JAI\",\"sourceCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":14323,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-19\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"3cf3b-3261b-008b9-58a00\",\"from_city_\":\"1__CCU-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Kolkata+%28CCU%29&mytrip_city_to=Jaipur+%28JAI%29&source_city=CCU&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&departure_date=19%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29&to_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"tripllvgvailor@outlook.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7699017380\",\"FirstName\":\"Nikhb\",\"LastName\":\"Ja\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-19-09-45-19\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"43\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"431454\",\"TPSysId\":\"431455\",\"VersionId\":[\"93593\"],\"CustomerSysId\":\"226796\",\"TrxId\":\"31758\",\"FareBreakdownid\":[\"358494\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"118\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"43\",\"CustomerMemSysId\":[\"43\"],\"flight_booking_id\":[\"73\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"73\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":7737.85},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"226796\",\"TPSysId\":\"431455\",\"MasterTPSysId\":\"431454\",\"ProposalID\":\"431455\\/V1\",\"InvoiceDate\":\"2022-08-19\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-19\",\"PaymentDate\":\"2022-08-19\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":7701.85,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":7737.85,\"TotalDueAmount\":0,\"InvoiceValue\":7737.85,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"CCU-JAI-IndiGo 6E-856\",\"ItemQty\":1,\"ItemRates\":7501.85,\"Total\":7501.85,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":7737.85,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":7701.85,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-19 09:51:41'),(362,'62cdd-f8c43-4bc25-2ae8a','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-963\",\"keyIndex\":21,\"SegFlightNumberArr\":\"UK-963\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1289014105_5DELBOMUK963_71930530565010\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2022-08-21T08:50\",\"LocalFromTime\":\"2022-08-21 08:50\",\"FromUTCTime\":\"2022-08-21T08:50\",\"LocalToTime\":\"2022-08-21 11:10\",\"ToUTCTime\":\"2022-08-21T11:10\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 21 Aug\",\"ArrivalDateTxt\":\"Sun, 21 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5067,\"PublishedFareTxt\":\"5,067\",\"ApiResultIndex\":\"21-10-15-2-1289014105_5DELBOMUK963_71930530564830\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"62cdd-f8c43-4bc25-2ae8a\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":774.7,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":5375.7,\"PublishedFare\":5067,\"PublishedFarePerPax\":5067,\"OfferedFare\":5007.62,\"CommissionEarned\":368.08,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.37,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-1289014105_5DELBOMUK963_71930530565010\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":774.7,\"BaseFareCal\":5016.62,\"BaseFare\":4601,\"CommissionEarned\":368.08,\"TDS\":-19.37,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":390,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":368.08,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5066.62,\"CostToCustomer\":5066.62,\"BaseFareCal\":5016.62,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5016.62,\"intOfferedFare\":5007.62,\"intPublishFare\":5375.7,\"TripjackMarkup\":0,\"TripjackCommission\":368.08,\"TripjackTDS\":\"19.37\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"05B\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-21T11:10\",\"SegFlightNumber\":\"UK-963\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-21T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-19 10:13:54'),(366,'4d243-0055d-55299-aa194','{\"BookingData\":[{\"bookingId\":\"TJ107640552099\",\"FlightNumber\":\"UK-955\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:45\",\"ArrivalTime\":\"20:05\",\"TravelDate\":\"2022-08-20T17:45\",\"LocalFromTime\":\"2022-08-20 17:45\",\"FromUTCTime\":\"2022-08-20T17:45\",\"LocalToTime\":\"2022-08-20 20:05\",\"ToUTCTime\":\"2022-08-20T20:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":10751.4,\"PublishedFareTxt\":\"10,751\",\"ApiResultIndex\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3150,\"ARFT\":157.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACF\":3675,\"ACFT\":183.75,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9202,\"Tax\":1549.4,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":474,\"CarrierMiscFee\":260,\"MUFee\":0,\"intPublishedFare\":10751.4,\"PublishedFare\":9884.24,\"OfferedFare\":9825.24,\"CommissionEarned\":926.16,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-48.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4690545359_0DELBOMUK955_73818428887086\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1549.4,\"BaseFareCal\":9834.24,\"BaseFare\":9202,\"CommissionEarned\":926.16,\"TDS\":-48.74,\"MF\":30,\"YQ\":0,\"AGST\":474,\"MFT\":5.4,\"OT\":780,\"MU\":0,\"YR\":260,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":926.16,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":9884.24,\"CostToCustomer\":9884.24,\"BaseFareCal\":9834.24,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":9834.24,\"intOfferedFare\":9825.24,\"intPublishFare\":10751.4,\"TripjackMarkup\":0,\"TripjackCommission\":926.16,\"TripjackTDS\":\"48.74\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"464\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-20T20:05\",\"SegFlightNumber\":\"UK-955\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-20T17:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:45\",\"strArrivalDtTime\":\"20:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d243-0055d-55299-aa194\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-20 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107640552099\",\"FlightNumber\":\"UK-955\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"strTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:45\",\"ArrivalTime\":\"20:05\",\"TravelDate\":\"2022-08-20T17:45\",\"LocalFromTime\":\"2022-08-20 17:45\",\"FromUTCTime\":\"2022-08-20T17:45\",\"LocalToTime\":\"2022-08-20 20:05\",\"ToUTCTime\":\"2022-08-20T20:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":10751.4,\"ApiResultIndex\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"4d243-0055d-55299-aa194\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9202,\"Tax\":1549.4,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":474,\"CarrierMiscFee\":260,\"MUFee\":0,\"intPublishedFare\":10751.4,\"PublishedFare\":9884.24,\"OfferedFare\":9825.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1549.4,\"BaseFareCal\":9834.24,\"BaseFare\":9202,\"CommissionEarned\":926.16,\"TDS\":-48.74,\"MF\":30,\"YQ\":0,\"AGST\":474,\"MFT\":5.4,\"OT\":780,\"MU\":0,\"YR\":260,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"464\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-20T20:05\",\"SegFlightNumber\":\"UK-955\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-20T17:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"17:45\",\"strArrivalDtTime\":\"20:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-4690545359_13DELBOMUK955_208594713829498\",\"localFromDateTime\":\"2022-08-20 17:45\",\"localToDateTime\":\"2022-08-20 20:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"20\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"20\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-20\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"4d243-0055d-55299-aa194\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=20%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"m.s.samania@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"83778144563\",\"FirstName\":\"geeta\",\"LastName\":\"samania\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-19-10-25-51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"44\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"44\",\"EmailId\":\"m.s.samania@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"83778144563\",\"FirstName\":\"megha\",\"LastName\":\"pagade\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-19-10-25-51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"47\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"431467\",\"TPSysId\":\"431468\",\"VersionId\":[\"93606\"],\"CustomerSysId\":\"226809\",\"TrxId\":\"31760\",\"FareBreakdownid\":[\"358495\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"119\",\"120\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"44\",\"CustomerMemSysId\":[\"44\",\"47\"],\"flight_booking_id\":[\"74\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"74\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":9884.24},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"226809\",\"TPSysId\":\"431468\",\"MasterTPSysId\":\"431467\",\"ProposalID\":\"431468\\/V1\",\"InvoiceDate\":\"2022-08-19\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-19\",\"PaymentDate\":\"2022-08-19\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":9866.24,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":9884.24,\"TotalDueAmount\":0,\"InvoiceValue\":9884.24,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Vistara UK-955\",\"ItemQty\":1,\"ItemRates\":9766.24,\"Total\":9766.24,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":9884.24,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":9866.24,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-19 10:27:18'),(367,'03d86-059dd-31762-2a7b4','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-941\",\"keyIndex\":14,\"SegFlightNumberArr\":\"UK-941\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-3147587802_6DELBOMUK941_214445376506979\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"16:55\",\"ArrivalTime\":\"19:05\",\"TravelDate\":\"2022-08-20T16:55\",\"LocalFromTime\":\"2022-08-20 16:55\",\"FromUTCTime\":\"2022-08-20T16:55\",\"LocalToTime\":\"2022-08-20 19:05\",\"ToUTCTime\":\"2022-08-20T19:05\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":9885,\"PublishedFareTxt\":\"9,884\",\"ApiResultIndex\":\"21-10-15-2-3147587802_6DELBOMUK941_214445376506769\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"03d86-059dd-31762-2a7b4\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9202,\"Tax\":1549.4,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":474,\"CarrierMiscFee\":260,\"MUFee\":0,\"intPublishedFare\":10751.4,\"PublishedFare\":9885,\"PublishedFarePerPax\":4943,\"OfferedFare\":9825.24,\"CommissionEarned\":926.16,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-48.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3147587802_6DELBOMUK941_214445376506979\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1549.4,\"BaseFareCal\":9834.24,\"BaseFare\":9202,\"CommissionEarned\":926.16,\"TDS\":-48.74,\"MF\":30,\"YQ\":0,\"AGST\":474,\"MFT\":5.4,\"OT\":780,\"MU\":0,\"YR\":260,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":926.16,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":9884.24,\"CostToCustomer\":9884.24,\"BaseFareCal\":9834.24,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":9834.24,\"intOfferedFare\":9825.24,\"intPublishFare\":10751.4,\"TripjackMarkup\":0,\"TripjackCommission\":926.16,\"TripjackTDS\":\"48.74\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0A4\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-20T19:05\",\"SegFlightNumber\":\"UK-941\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"P\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-20T16:55\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"16:55\",\"strArrivalDtTime\":\"19:05\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-19 11:57:52'),(368,'429df-ab9eb-a63ed-c892b','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-394\",\"keyIndex\":31,\"SegFlightNumberArr\":\"6E-394\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6304729246_1CCUJAI6E394_4520037654374\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:50\",\"ArrivalTime\":\"17:10\",\"TravelDate\":\"2022-08-20T14:50\",\"LocalFromTime\":\"2022-08-20 14:50\",\"FromUTCTime\":\"2022-08-20T14:50\",\"LocalToTime\":\"2022-08-20 17:10\",\"ToUTCTime\":\"2022-08-20T17:10\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 20 Aug\",\"ArrivalDateTxt\":\"Sat, 20 Aug\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"14323\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7738,\"PublishedFareTxt\":\"7,738\",\"ApiResultIndex\":\"5-6304729246_1CCUJAI6E394_4520037654214\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"429df-ab9eb-a63ed-c892b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6300,\"Tax\":1379.7,\"YQTax\":0,\"OtherCharges\":1362,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":7679.7,\"PublishedFare\":7738,\"PublishedFarePerPax\":7738,\"OfferedFare\":7619.85,\"CommissionEarned\":59.85,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6304729246_1CCUJAI6E394_4520037654374\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.7,\"BaseFareCal\":7637.85,\"BaseFare\":6300,\"CommissionEarned\":59.85,\"TDS\":-3.15,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1362,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":59.85,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":7737.85,\"CostToCustomer\":7737.85,\"BaseFareCal\":7637.85,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":7637.85,\"intOfferedFare\":7619.85,\"intPublishFare\":7679.7,\"TripjackMarkup\":0,\"TripjackCommission\":59.85,\"TripjackTDS\":\"3.15\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"048\"},\"Segments\":[{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-20T17:10\",\"SegFlightNumber\":\"6E-394\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-08-20T14:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"14:50\",\"strArrivalDtTime\":\"17:10\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-19 20:08:30'),(369,'7e518-6d15b-1f474-38cde','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-125\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-125\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2628773082_0HYDCOKG8125_21379881108273\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"19:00\",\"TravelDate\":\"2022-08-22T17:30\",\"LocalFromTime\":\"2022-08-22 17:30\",\"FromUTCTime\":\"2022-08-22T17:30\",\"LocalToTime\":\"2022-08-22 19:00\",\"ToUTCTime\":\"2022-08-22T19:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Mon, 22 Aug\",\"ArrivalDateTxt\":\"Mon, 22 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"12538\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"HYD\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":11635,\"PublishedFareTxt\":\"11,635\",\"ApiResultIndex\":\"1-2628773082_0HYDCOKG8125_21379881107213\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"7e518-6d15b-1f474-38cde\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8732,\"Tax\":2691.4,\"YQTax\":0,\"OtherCharges\":2656,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":11423.4,\"PublishedFare\":11065,\"PublishedFarePerPax\":5533,\"OfferedFare\":10946.42,\"CommissionEarned\":476.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-25.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2628773082_0HYDCOKG8125_21379881108273\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2691.4,\"BaseFareCal\":10964.42,\"BaseFare\":8732,\"CommissionEarned\":476.98,\"TDS\":-25.1,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2656,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":476.98,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":11064.42,\"CostToCustomer\":11064.42,\"BaseFareCal\":10964.42,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":10964.42,\"intOfferedFare\":10946.42,\"intPublishFare\":11423.4,\"TripjackMarkup\":0,\"TripjackCommission\":476.98,\"TripjackTDS\":\"25.1\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"025\"},\"Segments\":[{\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2022-08-22T19:00\",\"SegFlightNumber\":\"G8-125\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2022-08-22T17:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"19:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-19 21:20:09'),(370,'c966c-23692-83c69-b89c3','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-712\",\"keyIndex\":26,\"SegFlightNumberArr\":\"I5-712, I5-560\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-2947438818_0VTZDELI5712DELJAII5560_53879893437182\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"09:00\",\"ArrivalTime\":\"21:35\",\"TravelDate\":\"2022-10-09T09:00\",\"LocalFromTime\":\"2022-10-09 09:00\",\"FromUTCTime\":\"2022-10-09T09:00\",\"LocalToTime\":\"2022-10-09 21:35\",\"ToUTCTime\":\"2022-10-09T21:35\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":550,\"LAYOVERDuration\":\"9h 10m\",\"FlyingMinutes\":755,\"DepartureDateTxt\":\"Sun, 09 Oct\",\"ArrivalDateTxt\":\"Sun, 09 Oct\",\"FlightDuration\":\"12h 35m\",\"SourcePlaceSysId\":\"28993\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"VTZ\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5709,\"PublishedFareTxt\":\"5,709\",\"ApiResultIndex\":\"22-16-2947438818_0VTZDELI5712DELJAII5560_53879893436242\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"c966c-23692-83c69-b89c3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4805,\"Tax\":901.7,\"YQTax\":0,\"OtherCharges\":642,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":242,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5706.7,\"PublishedFare\":5709,\"PublishedFarePerPax\":5709,\"OfferedFare\":5649.64,\"CommissionEarned\":57.06,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-2947438818_0VTZDELI5712DELJAII5560_53879893437182\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":901.7,\"BaseFareCal\":5658.64,\"BaseFare\":4805,\"CommissionEarned\":57.06,\"TDS\":-3,\"MF\":15,\"YQ\":0,\"AGST\":242,\"MFT\":2.7,\"OT\":642,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":57.06,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5708.64,\"CostToCustomer\":5708.64,\"BaseFareCal\":5658.64,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5658.64,\"intOfferedFare\":5649.64,\"intPublishFare\":5706.7,\"TripjackMarkup\":0,\"TripjackCommission\":57.06,\"TripjackTDS\":\"3\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"02I\"},\"Segments\":[{\"originAirportName\":\"Vishakhapatnam\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Vishakhapatanam\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-10-09T11:20\",\"SegFlightNumber\":\"I5-712\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"VTZ\",\"originDepTime\":\"2022-10-09T09:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":550,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:00\",\"strArrivalDtTime\":\"11:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"9h 10m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-10-09T21:35\",\"SegFlightNumber\":\"I5-560\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-10-09T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"21:35\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-20 11:01:22'),(371,'25513-7aed8-7e32c-6f4ff','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-889\",\"keyIndex\":88,\"SegFlightNumberArr\":\"6E-889\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9971356028_1DELGAU6E889_22040727733730\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:10\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2022-08-21T20:10\",\"LocalFromTime\":\"2022-08-21 20:10\",\"FromUTCTime\":\"2022-08-21T20:10\",\"LocalToTime\":\"2022-08-21 22:35\",\"ToUTCTime\":\"2022-08-21T22:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sun, 21 Aug\",\"ArrivalDateTxt\":\"Sun, 21 Aug\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"11240\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5429,\"PublishedFareTxt\":\"5,428\",\"ApiResultIndex\":\"5-9971356028_1DELGAU6E889_22040727733490\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"25513-7aed8-7e32c-6f4ff\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4900,\"Tax\":456.7,\"YQTax\":0,\"OtherCharges\":439,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5356.7,\"PublishedFare\":5429,\"PublishedFarePerPax\":5429,\"OfferedFare\":5310.15,\"CommissionEarned\":46.55,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.45,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9971356028_1DELGAU6E889_22040727733730\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":456.7,\"BaseFareCal\":5328.15,\"BaseFare\":4900,\"CommissionEarned\":46.55,\"TDS\":-2.45,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":439,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":46.55,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5428.15,\"CostToCustomer\":5428.15,\"BaseFareCal\":5328.15,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5328.15,\"intOfferedFare\":5310.15,\"intPublishFare\":5356.7,\"TripjackMarkup\":0,\"TripjackCommission\":46.55,\"TripjackTDS\":\"2.45\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-08-21T22:35\",\"SegFlightNumber\":\"6E-889\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-21T20:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:10\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-20 19:55:28'),(375,'e7403-2bd0d-da555-5cacf','{\"BookingData\":[{\"bookingId\":\"TJ102340681746\",\"FlightNumber\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3461.7,\"PublishedFareTxt\":\"3,462\",\"ApiResultIndex\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PAT-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARFT\":157.5,\"ARF\":3150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"CCFT\":9,\"ACFT\":183.75,\"CCF\":50,\"ACF\":3675}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3103.36,\"OfferedFare\":3044.36,\"CommissionEarned\":417.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-21.97,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4778138565_0PATDELUK716_12727816697231\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":417.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":3103.36,\"CostToCustomer\":3103.36,\"BaseFareCal\":3053.36,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":3053.36,\"intOfferedFare\":3044.36,\"intPublishFare\":3461.7,\"TripjackMarkup\":0,\"TripjackCommission\":417.34,\"TripjackTDS\":\"21.97\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"607\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"e7403-2bd0d-da555-5cacf\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":20918,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102340681746\",\"FlightNumber\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"strTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3461.7,\"ApiResultIndex\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"e7403-2bd0d-da555-5cacf\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3103.36,\"OfferedFare\":3044.36,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"607\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-4778138565_1PATDELUK716_20926416088410\",\"localFromDateTime\":\"2022-09-03 20:30\",\"localToDateTime\":\"2022-09-03 22:00\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":20918,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Patna (PAT)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"PAT\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"03\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Jai Prakash Narayan Arpt (PAT)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"PAT\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"PAT\",\"to\":\"DEL\",\"sourceCityText\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":20918,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-03\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"e7403-2bd0d-da555-5cacf\",\"from_city_\":\"1__PAT-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Patna+%28PAT%29&mytrip_city_to=Delhi+%28DEL%29&source_city=PAT&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Patna%2C+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=03%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"arnavkarn@hotmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9869558770\",\"FirstName\":\"UPENDRA KUMAR \",\"LastName\":\"KARN\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-20-23-56-14\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"45\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"432683\",\"TPSysId\":\"432684\",\"VersionId\":[\"94145\"],\"CustomerSysId\":\"227507\",\"TrxId\":\"31873\",\"FareBreakdownid\":[\"358578\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"121\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"45\",\"CustomerMemSysId\":[\"45\"],\"flight_booking_id\":[\"75\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"75\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3103.36},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"227507\",\"TPSysId\":\"432684\",\"MasterTPSysId\":\"432683\",\"ProposalID\":\"432684\\/V1\",\"InvoiceDate\":\"2022-08-20\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-20\",\"PaymentDate\":\"2022-08-20\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":3085.36,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3103.36,\"TotalDueAmount\":0,\"InvoiceValue\":3103.36,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"PAT-DEL-Vistara UK-716\",\"ItemQty\":1,\"ItemRates\":2985.36,\"Total\":2985.36,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3103.36,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":3085.36,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-20 23:57:34'),(376,'aed72-640da-910d7-cb90c','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2111\",\"keyIndex\":245,\"SegFlightNumberArr\":\"6E-2111\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1507503425_0BOMDEL6E2111_8874297192936\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:35\",\"TravelDate\":\"2022-09-20T02:40\",\"LocalFromTime\":\"2022-09-20 02:40\",\"FromUTCTime\":\"2022-09-20T02:40\",\"LocalToTime\":\"2022-09-20 04:35\",\"ToUTCTime\":\"2022-09-20T04:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Tue, 20 Sep\",\"ArrivalDateTxt\":\"Tue, 20 Sep\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4632,\"PublishedFareTxt\":\"4,631\",\"ApiResultIndex\":\"5-1507503425_0BOMDEL6E2111_8874297190686\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"aed72-640da-910d7-cb90c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3856,\"Tax\":693.7,\"YQTax\":0,\"OtherCharges\":676,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4549.7,\"PublishedFare\":4632,\"PublishedFarePerPax\":4632,\"OfferedFare\":4513.07,\"CommissionEarned\":36.63,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.93,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1507503425_0BOMDEL6E2111_8874297192936\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":693.7,\"BaseFareCal\":4531.07,\"BaseFare\":3856,\"CommissionEarned\":36.63,\"TDS\":-1.93,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":676,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":36.63,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4631.07,\"CostToCustomer\":4631.07,\"BaseFareCal\":4531.07,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":4531.07,\"intOfferedFare\":4513.07,\"intPublishFare\":4549.7,\"TripjackMarkup\":0,\"TripjackCommission\":36.63,\"TripjackTDS\":\"1.93\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"0GU\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-20T04:35\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-20T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:35\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-21 00:10:24'),(380,'ababa-8b8bd-b98e8-bd1c9','{\"BookingData\":[{\"bookingId\":\"TJ108240692423\",\"FlightNumber\":\"G8-383\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-09-07T16:30\",\"LocalFromTime\":\"2022-09-07 16:30\",\"FromUTCTime\":\"2022-09-07T16:30\",\"LocalToTime\":\"2022-09-07 18:20\",\"ToUTCTime\":\"2022-09-07T18:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Wed, 07 Sep\",\"ArrivalDateTxt\":\"Wed, 07 Sep\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2350.7,\"PublishedFareTxt\":\"2,351\",\"ApiResultIndex\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1730,\"Tax\":620.7,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2350.7,\"PublishedFare\":2431.73,\"OfferedFare\":2313.73,\"CommissionEarned\":36.97,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0546920386_0BOMBLRG8383_55815972643819\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":620.7,\"BaseFareCal\":2331.73,\"BaseFare\":1730,\"CommissionEarned\":36.97,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":92,\"MFT\":2.7,\"OT\":511,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":36.97,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":2431.73,\"CostToCustomer\":2431.73,\"BaseFareCal\":2331.73,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":2331.73,\"intOfferedFare\":2313.73,\"intPublishFare\":2350.7,\"TripjackMarkup\":0,\"TripjackCommission\":36.97,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"934\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-07T18:20\",\"SegFlightNumber\":\"G8-383\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-07T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"934\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ababa-8b8bd-b98e8-bd1c9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-07 12:00\",\"localToDateTime\":\"2022-09-08 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108240692423\",\"FlightNumber\":\"G8-383\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"strTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-09-07T16:30\",\"LocalFromTime\":\"2022-09-07 16:30\",\"FromUTCTime\":\"2022-09-07T16:30\",\"LocalToTime\":\"2022-09-07 18:20\",\"ToUTCTime\":\"2022-09-07T18:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Wed, 07 Sep\",\"ArrivalDateTxt\":\"Wed, 07 Sep\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4670.4,\"ApiResultIndex\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"ababa-8b8bd-b98e8-bd1c9\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3204,\"Tax\":1466.4,\"YQTax\":0,\"OtherCharges\":1260,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":171,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4670.4,\"PublishedFare\":4855.43,\"OfferedFare\":4619.43,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1466.4,\"BaseFareCal\":4655.43,\"BaseFare\":3204,\"CommissionEarned\":50.97,\"TDS\":-2.69,\"MF\":30,\"YQ\":0,\"AGST\":171,\"MFT\":5.4,\"OT\":1260,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"934\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-07T18:20\",\"SegFlightNumber\":\"G8-383\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-07T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],[{\"segmentid\":\"919\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-08T23:00\",\"SegFlightNumber\":\"6E-6818\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-08T21:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-0546920386_1BOMBLRG8383_47043583970839\",\"localFromDateTime\":\"2022-09-07 16:30\",\"localToDateTime\":\"2022-09-07 18:20\",\"strSourceAirportCode\":\"BLR\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJ108240692423\",\"FlightNumber\":\"6E-6818\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0546920386_5BLRBOM6E6818_47044737436599\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:25\",\"ArrivalTime\":\"23:00\",\"TravelDate\":\"2022-09-08T21:25\",\"LocalFromTime\":\"2022-09-08 21:25\",\"FromUTCTime\":\"2022-09-08T21:25\",\"LocalToTime\":\"2022-09-08 23:00\",\"ToUTCTime\":\"2022-09-08T23:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2319.7,\"PublishedFareTxt\":\"2,320\",\"ApiResultIndex\":\"5-0546920386_5BLRBOM6E6818_47044737436599\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1474,\"Tax\":845.7,\"YQTax\":0,\"OtherCharges\":749,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":79,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":2319.7,\"PublishedFare\":2423.7,\"OfferedFare\":2305.7,\"CommissionEarned\":14,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0546920386_1BLRBOM6E6818_55815973372501\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.7,\"BaseFareCal\":2323.7,\"BaseFare\":1474,\"CommissionEarned\":14,\"TDS\":-0.74,\"MF\":15,\"YQ\":0,\"AGST\":79,\"MFT\":2.7,\"OT\":749,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":14,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":2423.7,\"CostToCustomer\":2423.7,\"BaseFareCal\":2323.7,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":2323.7,\"intOfferedFare\":2305.7,\"intPublishFare\":2319.7,\"TripjackMarkup\":0,\"TripjackCommission\":14,\"TripjackTDS\":\"0.74\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"919\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-08T23:00\",\"SegFlightNumber\":\"6E-6818\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-08T21:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"919\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ababa-8b8bd-b98e8-bd1c9\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-0546920386_5BLRBOM6E6818_47044737436599\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-07 12:00\",\"localToDateTime\":\"2022-09-08 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"DirectFlight\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Bengaluru (BLR)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"departure_date\":\"07\\/09\\/2022\",\"return_date\":\"08\\/09\\/2022\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"BOM\",\"to\":\"BLR\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"sourceCityId\":18676,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"07\\/09\\/2022\",\"return_dates\":\"08\\/09\\/2022\",\"strDepatureDate\":\"2022-09-07\",\"strReturnDate\":\"2022-09-08\",\"SearchFlightTraceId\":\"ababa-8b8bd-b98e8-bd1c9\",\"from_city_\":\"2__BOM-BLR-BOM\"},\"FlightSearchUrl\":\"route=2&DirectFlight=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Bengaluru+%28BLR%29&adults=1&childs=0&infants=0&class=2&DirectFlight=1&source_city=BOM&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29%2C+India&departure_date=07%2F09%2F2022&return_date=08%2F09%2F2022&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"amith.c.shetty@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8105807501\",\"FirstName\":\"AMITH\",\"LastName\":\"C SHETTY\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-21-10-00-16\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"48\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"432701\",\"TPSysId\":\"432702\",\"VersionId\":[\"94157\",\"94158\"],\"CustomerSysId\":\"208753\",\"TrxId\":\"31882\",\"FareBreakdownid\":[\"358585\",\"358586\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"122\"],[\"123\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"48\",\"CustomerMemSysId\":[\"48\"],\"flight_booking_id\":[\"76\",\"77\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"76\",\"77\"],\"_sessiondata\":{\"EmailId\":\"amith.c.shetty@gmail.com\",\"CustomerSysId\":\"208753\",\"AgencySysId\":\"12577\",\"FirstName\":\"AMITH\",\"LastName\":\"C SHETTY\",\"Password_cu\":\"425fa731424d67d0eb551d328f38ae7e\",\"ContactNo1\":\"8105807501\",\"redirect_link_r\":\"https:\\/\\/www.svezz.com\\/\"},\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4855.43},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"208753\",\"TPSysId\":\"432702\",\"MasterTPSysId\":\"432701\",\"ProposalID\":\"432702\\/V1\",\"InvoiceDate\":\"2022-08-21\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-21\",\"PaymentDate\":\"2022-08-21\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4783.43,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4855.43,\"TotalDueAmount\":0,\"InvoiceValue\":4855.43,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-BLR-Go First G8-383\",\"ItemQty\":1,\"ItemRates\":2195.73,\"Total\":2195.73,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":2431.73,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":2395.73,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BLR-BOM-IndiGo 6E-6818\",\"ItemQty\":1,\"ItemRates\":2187.7,\"Total\":2187.7,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":2423.7,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":2387.7,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-21 10:01:43'),(381,'09452-6c730-b3dae-baf2e','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-643\",\"keyIndex\":84,\"SegFlightNumberArr\":\"AI-643\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-1747413810_84BOMUDRAI643_59169436436577\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"14:20\",\"ArrivalTime\":\"15:50\",\"TravelDate\":\"2022-08-24T14:20\",\"LocalFromTime\":\"2022-08-24 14:20\",\"FromUTCTime\":\"2022-08-24T14:20\",\"LocalToTime\":\"2022-08-24 15:50\",\"ToUTCTime\":\"2022-08-24T15:50\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Wed, 24 Aug\",\"ArrivalDateTxt\":\"Wed, 24 Aug\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"28058\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"UDR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":9604,\"PublishedFareTxt\":\"9,604\",\"ApiResultIndex\":\"21-10-15-2-1747413810_84BOMUDRAI643_59169436436577\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"09452-6c730-b3dae-baf2e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8310,\"Tax\":1760.1000000000001,\"YQTax\":0,\"OtherCharges\":756,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":441,\"CarrierMiscFee\":510,\"MUFee\":0,\"intPublishedFare\":10070.1,\"PublishedFare\":9604,\"PublishedFarePerPax\":3202,\"OfferedFare\":9544.52,\"CommissionEarned\":525.58,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-27.66,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-1747413810_84BOMUDRAI643_59169436436577\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1501.4,\"BaseFareCal\":8044.82,\"BaseFare\":7060,\"CommissionEarned\":525.58,\"TDS\":-27.66,\"MF\":30,\"YQ\":0,\"AGST\":370,\"MFT\":5.4,\"OT\":756,\"MU\":0,\"YR\":340,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1517.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":3,\"AddiMarkup\":16.666666666666668,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":[]}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":525.58,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":9603.52,\"CostToCustomer\":9603.52,\"BaseFareCal\":9553.52,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":9553.52,\"intOfferedFare\":9544.52,\"intPublishFare\":10070.1,\"TripjackMarkup\":0,\"TripjackCommission\":525.58,\"TripjackTDS\":\"27.66\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"02I\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Maharana Pratap Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Udaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"UDR\",\"destinationArrTime\":\"2022-08-24T15:50\",\"SegFlightNumber\":\"AI-643\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-24T14:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:20\",\"strArrivalDtTime\":\"15:50\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-21 11:20:04'),(383,'646a6-b000f-4e5b9-c5080','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-716\",\"keyIndex\":9,\"SegFlightNumberArr\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7561282858_1PATDELUK716_3552480767954\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"20918\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3104,\"PublishedFareTxt\":\"3,103\",\"ApiResultIndex\":\"21-10-15-2-7561282858_1PATDELUK716_3552480767794\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"646a6-b000f-4e5b9-c5080\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3104,\"PublishedFarePerPax\":3104,\"OfferedFare\":3044.36,\"CommissionEarned\":417.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-21.97,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-7561282858_1PATDELUK716_3552480767954\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":417.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":3103.36,\"CostToCustomer\":3103.36,\"BaseFareCal\":3053.36,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":3053.36,\"intOfferedFare\":3044.36,\"intPublishFare\":3461.7,\"TripjackMarkup\":0,\"TripjackCommission\":417.34,\"TripjackTDS\":\"21.97\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"036\"},\"Segments\":[{\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Z\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-21 13:04:51'),(387,'90697-b1ab0-17302-7aefd','{\"BookingData\":[{\"bookingId\":\"TJ101940706511\",\"FlightNumber\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3461.7,\"PublishedFareTxt\":\"3,462\",\"ApiResultIndex\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PAT-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARFT\":157.5,\"ARF\":3150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACF\":3675,\"ACFT\":183.75,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3103.36,\"OfferedFare\":3044.36,\"CommissionEarned\":417.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-21.97,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-5133791766_0PATDELUK716_53622742693316\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":417.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":3103.36,\"CostToCustomer\":3103.36,\"BaseFareCal\":3053.36,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":3053.36,\"intOfferedFare\":3044.36,\"intPublishFare\":3461.7,\"TripjackMarkup\":0,\"TripjackCommission\":417.34,\"TripjackTDS\":\"21.97\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50}},\"Segments\":[{\"segmentid\":\"355\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"90697-b1ab0-17302-7aefd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-03 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":20918,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101940706511\",\"FlightNumber\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"strTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3461.7,\"ApiResultIndex\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"90697-b1ab0-17302-7aefd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3103.36,\"OfferedFare\":3044.36,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":50,\"AddiTaxOnMarkup\":9,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"355\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-5133791766_1PATDELUK716_679076261789\",\"localFromDateTime\":\"2022-09-03 20:30\",\"localToDateTime\":\"2022-09-03 22:00\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":20918,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Patna (PAT)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"PAT\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"03\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Jai Prakash Narayan Arpt (PAT)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"PAT\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"PAT\",\"to\":\"DEL\",\"sourceCityText\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":20918,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-03\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"90697-b1ab0-17302-7aefd\",\"from_city_\":\"1__PAT-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Patna+%28PAT%29&mytrip_city_to=Delhi+%28DEL%29&source_city=PAT&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Patna%2C+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=03%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"atulkarn@hotmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7506645196\",\"FirstName\":\"UPENDRA KUMAR \",\"LastName\":\"KARN\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-21-13-29-49\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"46\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"432732\",\"TPSysId\":\"432733\",\"VersionId\":[\"94188\"],\"CustomerSysId\":\"227575\",\"TrxId\":\"31896\",\"FareBreakdownid\":[\"358599\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"124\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"46\",\"CustomerMemSysId\":[\"46\"],\"flight_booking_id\":[\"78\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"78\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3103.36},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"227575\",\"TPSysId\":\"432733\",\"MasterTPSysId\":\"432732\",\"ProposalID\":\"432733\\/V1\",\"InvoiceDate\":\"2022-08-21\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-21\",\"PaymentDate\":\"2022-08-21\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":3085.36,\"InvoiceStatus\":true,\"TotalCGST\":9,\"TotalSGST\":9,\"TotalIGST\":18,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3103.36,\"TotalDueAmount\":0,\"InvoiceValue\":3103.36,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"PAT-DEL-Vistara UK-716\",\"ItemQty\":1,\"ItemRates\":2985.36,\"Total\":2985.36,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3103.36,\"MarkupType\":\"\",\"Markup\":100,\"TotalMarkup\":100,\"SubTotal\":3085.36,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":18,\"SGST\":9,\"CGST\":9,\"IGST\":18,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-21 13:31:09'),(388,'a7b7a-70d4e-dcf95-5e4b5','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-716\",\"keyIndex\":9,\"SegFlightNumberArr\":\"UK-716\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-8099538305_1PATDELUK716_10385903808797\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-03T20:30\",\"LocalFromTime\":\"2022-09-03 20:30\",\"FromUTCTime\":\"2022-09-03T20:30\",\"LocalToTime\":\"2022-09-03 22:00\",\"ToUTCTime\":\"2022-09-03T22:00\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"20918\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3104,\"PublishedFareTxt\":\"3,103\",\"ApiResultIndex\":\"21-10-15-2-8099538305_1PATDELUK716_10385903808407\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a7b7a-70d4e-dcf95-5e4b5\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2696,\"Tax\":765.7,\"YQTax\":0,\"OtherCharges\":477,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":141,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3461.7,\"PublishedFare\":3104,\"PublishedFarePerPax\":3104,\"OfferedFare\":3044.36,\"CommissionEarned\":417.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-21.97,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-8099538305_1PATDELUK716_10385903808797\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":765.7,\"BaseFareCal\":3053.36,\"BaseFare\":2696,\"CommissionEarned\":417.34,\"TDS\":-21.97,\"MF\":15,\"YQ\":0,\"AGST\":141,\"MFT\":2.7,\"OT\":477,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":417.34,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":3103.36,\"CostToCustomer\":3103.36,\"BaseFareCal\":3053.36,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":3053.36,\"intOfferedFare\":3044.36,\"intPublishFare\":3461.7,\"TripjackMarkup\":0,\"TripjackCommission\":417.34,\"TripjackTDS\":\"21.97\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"036\"},\"Segments\":[{\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-03T22:00\",\"SegFlightNumber\":\"UK-716\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Z\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-03T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-21 14:58:50'),(389,'23220-81274-36c5e-ca9b6','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-639\",\"keyIndex\":113,\"SegFlightNumberArr\":\"AI-639\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-9562506604_110BOMBLRAI639_13158257024882\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"09:30\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2022-08-23T09:30\",\"LocalFromTime\":\"2022-08-23 09:30\",\"FromUTCTime\":\"2022-08-23T09:30\",\"LocalToTime\":\"2022-08-23 11:10\",\"ToUTCTime\":\"2022-08-23T11:10\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Tue, 23 Aug\",\"ArrivalDateTxt\":\"Tue, 23 Aug\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5424,\"PublishedFareTxt\":\"5,423\",\"ApiResultIndex\":\"21-10-15-2-9562506604_110BOMBLRAI639_13158257024882\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"23220-81274-36c5e-ca9b6\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4830,\"Tax\":815.7,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":250,\"CarrierMiscFee\":170,\"MUFee\":0,\"intPublishedFare\":5645.7,\"PublishedFare\":5424,\"PublishedFarePerPax\":5424,\"OfferedFare\":5364.08,\"CommissionEarned\":281.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-14.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-9562506604_110BOMBLRAI639_13158257024882\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":8,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":815.7,\"BaseFareCal\":5373.08,\"BaseFare\":4830,\"CommissionEarned\":281.62,\"TDS\":-14.82,\"MF\":15,\"YQ\":0,\"AGST\":250,\"MFT\":2.7,\"OT\":378,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":281.62,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":5423.08,\"CostToCustomer\":5423.08,\"BaseFareCal\":5373.08,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":5373.08,\"intOfferedFare\":5364.08,\"intPublishFare\":5645.7,\"TripjackMarkup\":0,\"TripjackCommission\":281.62,\"TripjackTDS\":\"14.82\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"0JE\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-08-23T11:10\",\"SegFlightNumber\":\"AI-639\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-23T09:30\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-21 21:40:23'),(394,'bb173-4755c-8f5b0-97489','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-330\",\"keyIndex\":264,\"SegFlightNumberArr\":\"G8-330\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"11-8658915369_1DELBOMG8330_626763827926\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"20:50\",\"ArrivalTime\":\"23:05\",\"TravelDate\":\"2022-08-25T20:50\",\"LocalFromTime\":\"2022-08-25 20:50\",\"FromUTCTime\":\"2022-08-25T20:50\",\"LocalToTime\":\"2022-08-25 23:05\",\"ToUTCTime\":\"2022-08-25T23:05\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 25 Aug\",\"ArrivalDateTxt\":\"Thu, 25 Aug\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4016,\"PublishedFareTxt\":\"4,015\",\"ApiResultIndex\":\"11-8658915369_1DELBOMG8330_626763827926\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"bb173-4755c-8f5b0-97489\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3700,\"Tax\":267.7,\"YQTax\":0,\"OtherCharges\":250,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3967.7,\"PublishedFare\":4016,\"PublishedFarePerPax\":4016,\"OfferedFare\":3897.4,\"CommissionEarned\":70.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.7,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"11-8658915369_1DELBOMG8330_626763827926\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefit\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":267.7,\"BaseFareCal\":3915.4,\"BaseFare\":3700,\"CommissionEarned\":70.3,\"TDS\":-3.7,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":250,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":70.3,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":4015.4,\"CostToCustomer\":4015.4,\"BaseFareCal\":3915.4,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3915.4,\"intOfferedFare\":3897.4,\"intPublishFare\":3967.7,\"TripjackMarkup\":0,\"TripjackCommission\":70.3,\"TripjackTDS\":\"3.7\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-25T23:05\",\"SegFlightNumber\":\"G8-330\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-25T20:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"20:50\",\"strArrivalDtTime\":\"23:05\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-21 23:05:42'),(398,'9354e-06eb7-177ad-3d2f2','{\"BookingData\":[{\"bookingId\":\"TJ108240744796\",\"FlightNumber\":\"6E-534\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:50\",\"ArrivalTime\":\"18:45\",\"TravelDate\":\"2022-08-24T16:50\",\"LocalFromTime\":\"2022-08-24 16:50\",\"FromUTCTime\":\"2022-08-24T16:50\",\"LocalToTime\":\"2022-08-24 18:45\",\"ToUTCTime\":\"2022-08-24T18:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 24 Aug\",\"ArrivalDateTxt\":\"Wed, 24 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3492.7,\"PublishedFareTxt\":\"3,493\",\"ApiResultIndex\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXB-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"ARFT\":162.5,\"CRFT\":9,\"ARF\":3250}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCFT\":9,\"ACFT\":175,\"ACF\":3500,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3012,\"Tax\":480.7,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3492.7,\"PublishedFare\":3582.09,\"OfferedFare\":3464.09,\"CommissionEarned\":28.61,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.51,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4275999863_0IXBDEL6E534_30818496332928\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":480.7,\"BaseFareCal\":3482.09,\"BaseFare\":3012,\"CommissionEarned\":28.61,\"TDS\":-1.51,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":463,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":28.61,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":3582.09,\"CostToCustomer\":3582.09,\"BaseFareCal\":3482.09,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":3482.09,\"intOfferedFare\":3464.09,\"intPublishFare\":3492.7,\"TripjackMarkup\":0,\"TripjackCommission\":28.61,\"TripjackTDS\":\"1.51\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100}},\"Segments\":[{\"segmentid\":\"646\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-24T18:45\",\"SegFlightNumber\":\"6E-534\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-24T16:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:50\",\"strArrivalDtTime\":\"18:45\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"AOAT\",\"Price\":350,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"646\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9354e-06eb7-177ad-3d2f2\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-24 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108240744796\",\"FlightNumber\":\"6E-534\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"strTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:50\",\"ArrivalTime\":\"18:45\",\"TravelDate\":\"2022-08-24T16:50\",\"LocalFromTime\":\"2022-08-24 16:50\",\"FromUTCTime\":\"2022-08-24T16:50\",\"LocalToTime\":\"2022-08-24 18:45\",\"ToUTCTime\":\"2022-08-24T18:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 24 Aug\",\"ArrivalDateTxt\":\"Wed, 24 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3492.7,\"ApiResultIndex\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"9354e-06eb7-177ad-3d2f2\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3012,\"Tax\":480.7,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":3492.7,\"PublishedFare\":3582.09,\"OfferedFare\":3464.09,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":100,\"AddiTaxOnMarkup\":18,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":480.7,\"BaseFareCal\":3482.09,\"BaseFare\":3012,\"CommissionEarned\":28.61,\"TDS\":-1.51,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":463,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"646\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-24T18:45\",\"SegFlightNumber\":\"6E-534\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-24T16:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:50\",\"strArrivalDtTime\":\"18:45\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-4275999863_1IXBDEL6E534_35101962481827\",\"localFromDateTime\":\"2022-08-24 16:50\",\"localToDateTime\":\"2022-08-24 18:45\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Bagdogra (IXB)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"IXB\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Bagdogra, IN - Bagdogra Arpt (IXB), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"24\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Bagdogra Arpt (IXB)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXB\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"IXB\",\"to\":\"DEL\",\"sourceCityText\":\"Bagdogra, IN - Bagdogra Arpt (IXB), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":2012,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"24\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-24\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"9354e-06eb7-177ad-3d2f2\",\"from_city_\":\"1__IXB-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Bagdogra+%28IXB%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&source_city=IXB&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Bagdogra%2C+IN+-+Bagdogra+Arpt+%28IXB%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=24%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Bagdogra+Arpt+%28IXB%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nikhil.dugar@outlook.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9783576789\",\"FirstName\":\"Narendra kumar\",\"LastName\":\"Dugar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-22-06-39-36\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"432857\",\"TPSysId\":\"432858\",\"VersionId\":[\"94290\"],\"CustomerSysId\":\"223018\",\"TrxId\":\"31923\",\"FareBreakdownid\":[\"358624\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"125\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\"],\"flight_booking_id\":[\"79\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"79\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3582.09},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"223018\",\"TPSysId\":\"432858\",\"MasterTPSysId\":\"432857\",\"ProposalID\":\"432858\\/V1\",\"InvoiceDate\":\"2022-08-22\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-22\",\"PaymentDate\":\"2022-08-22\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":3546.09,\"InvoiceStatus\":true,\"TotalCGST\":18,\"TotalSGST\":18,\"TotalIGST\":36,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3582.09,\"TotalDueAmount\":0,\"InvoiceValue\":3582.09,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXB-DEL-IndiGo 6E-534\",\"ItemQty\":1,\"ItemRates\":3346.09,\"Total\":3346.09,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3582.09,\"MarkupType\":\"\",\"Markup\":200,\"TotalMarkup\":200,\"SubTotal\":3546.09,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":36,\"SGST\":18,\"CGST\":18,\"IGST\":36,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-22 06:40:50'),(399,'670a6-e88a1-682b0-7877f','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5261\",\"keyIndex\":4,\"SegFlightNumberArr\":\"6E-5261\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9068411353_1BOMNAG6E5261_3496479392441\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:45\",\"ArrivalTime\":\"15:00\",\"TravelDate\":\"2022-09-25T13:45\",\"LocalFromTime\":\"2022-09-25 13:45\",\"FromUTCTime\":\"2022-09-25T13:45\",\"LocalToTime\":\"2022-09-25 15:00\",\"ToUTCTime\":\"2022-09-25T15:00\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 25 Sep\",\"ArrivalDateTxt\":\"Sun, 25 Sep\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"18876\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"NAG\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":6195,\"PublishedFareTxt\":\"6,194\",\"ApiResultIndex\":\"5-9068411353_1BOMNAG6E5261_3496479392221\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"670a6-e88a1-682b0-7877f\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5400,\"Tax\":713.4000000000001,\"YQTax\":0,\"OtherCharges\":678,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6113.4,\"PublishedFare\":6195,\"PublishedFarePerPax\":3098,\"OfferedFare\":6076.349999999999,\"CommissionEarned\":37.05,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9068411353_1BOMNAG6E5261_3496479392441\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":695.7,\"BaseFareCal\":4576.65,\"BaseFare\":3900,\"CommissionEarned\":37.05,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":678,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":17.7,\"BaseFareCal\":1535.7,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":37.05,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6194.35,\"CostToCustomer\":6194.35,\"BaseFareCal\":6094.35,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6094.35,\"intOfferedFare\":6076.349999999999,\"intPublishFare\":6113.4,\"TripjackMarkup\":0,\"TripjackCommission\":37.05,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04B\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dr Ambedkar Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Nagpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"NAG\",\"destinationArrTime\":\"2022-09-25T15:00\",\"SegFlightNumber\":\"6E-5261\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-25T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:00\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-22 11:58:54');
INSERT INTO `tbl_temp_data` VALUES (402,'85f44-abadd-55037-6df24','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5261\",\"keyIndex\":4,\"SegFlightNumberArr\":\"6E-5261\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3365217979_1BOMNAG6E5261_48640068850242\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:45\",\"ArrivalTime\":\"15:00\",\"TravelDate\":\"2022-09-25T13:45\",\"LocalFromTime\":\"2022-09-25 13:45\",\"FromUTCTime\":\"2022-09-25T13:45\",\"LocalToTime\":\"2022-09-25 15:00\",\"ToUTCTime\":\"2022-09-25T15:00\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 25 Sep\",\"ArrivalDateTxt\":\"Sun, 25 Sep\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"18876\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"NAG\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":6195,\"PublishedFareTxt\":\"6,194\",\"ApiResultIndex\":\"5-3365217979_1BOMNAG6E5261_48640068850082\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"85f44-abadd-55037-6df24\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5400,\"Tax\":713.4000000000001,\"YQTax\":0,\"OtherCharges\":678,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":6113.4,\"PublishedFare\":6195,\"PublishedFarePerPax\":3098,\"OfferedFare\":6076.349999999999,\"CommissionEarned\":37.05,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3365217979_1BOMNAG6E5261_48640068850242\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":695.7,\"BaseFareCal\":4576.65,\"BaseFare\":3900,\"CommissionEarned\":37.05,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":678,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":17.7,\"BaseFareCal\":1535.7,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":\"01 Small Handbag under the seat\"}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":37.05,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":6194.35,\"CostToCustomer\":6194.35,\"BaseFareCal\":6094.35,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":6094.35,\"intOfferedFare\":6076.349999999999,\"intPublishFare\":6113.4,\"TripjackMarkup\":0,\"TripjackCommission\":37.05,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"02H\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dr Ambedkar Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Nagpur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"NAG\",\"destinationArrTime\":\"2022-09-25T15:00\",\"SegFlightNumber\":\"6E-5261\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-25T13:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"15:00\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]},{\"keyIndex\":0,\"FlightNumber\":\"G8-141\",\"SegFlightNumberArr\":\"G8-141\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3365217979_0NAGBOMG8141_48638993519257\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-10-06T08:00\",\"LocalFromTime\":\"2022-10-06 08:00\",\"FromUTCTime\":\"2022-10-06T08:00\",\"LocalToTime\":\"2022-10-06 09:35\",\"ToUTCTime\":\"2022-10-06T09:35\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Thu, 06 Oct\",\"ArrivalDateTxt\":\"Thu, 06 Oct\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"18876\",\"SourceAirportCode\":\"NAG\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":5833.16,\"PublishedFareTxt\":\"5,833\",\"ApiResultIndex\":\"1-3365217979_0NAGBOMG8141_48638993519257\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"85f44-abadd-55037-6df24\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4786,\"Tax\":999.4000000000001,\"YQTax\":0,\"OtherCharges\":964,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5785.4,\"PublishedFare\":5834,\"PublishedFarePerPax\":2917,\"OfferedFare\":5715.16,\"CommissionEarned\":70.24,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.7,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3365217979_0NAGBOMG8141_48638993519257\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":981.7,\"BaseFareCal\":4215.46,\"BaseFare\":3286,\"CommissionEarned\":70.24,\"TDS\":-3.7,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":964,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":17.7,\"BaseFareCal\":1535.7,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"7 Kg\"}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":70.24,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5833.16,\"CostToCustomer\":5833.16,\"BaseFareCal\":5733.16,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5733.16,\"intOfferedFare\":5715.16,\"intPublishFare\":5785.4,\"TripjackMarkup\":0,\"TripjackCommission\":70.24,\"TripjackTDS\":\"3.7\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"0BN\"},\"Segments\":[{\"originAirportName\":\"Dr Ambedkar Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Nagpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-10-06T09:35\",\"SegFlightNumber\":\"G8-141\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":null,\"originAirportCode\":\"NAG\",\"originDepTime\":\"2022-10-06T08:00\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":0,\"FlightNumber\":\"G8-141\",\"SegFlightNumberArr\":\"G8-141\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3365217979_0NAGBOMG8141_48638993519257\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-10-06T08:00\",\"LocalFromTime\":\"2022-10-06 08:00\",\"FromUTCTime\":\"2022-10-06T08:00\",\"LocalToTime\":\"2022-10-06 09:35\",\"ToUTCTime\":\"2022-10-06T09:35\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Thu, 06 Oct\",\"ArrivalDateTxt\":\"Thu, 06 Oct\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"18876\",\"SourceAirportCode\":\"NAG\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":5833.16,\"PublishedFareTxt\":\"5,833\",\"ApiResultIndex\":\"1-3365217979_0NAGBOMG8141_48638993519257\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"85f44-abadd-55037-6df24\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4786,\"Tax\":999.4000000000001,\"YQTax\":0,\"OtherCharges\":964,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5785.4,\"PublishedFare\":5834,\"PublishedFarePerPax\":2917,\"OfferedFare\":5715.16,\"CommissionEarned\":70.24,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.7,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3365217979_0NAGBOMG8141_48638993519257\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":981.7,\"BaseFareCal\":4215.46,\"BaseFare\":3286,\"CommissionEarned\":70.24,\"TDS\":-3.7,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":964,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":17.7,\"BaseFareCal\":1535.7,\"BaseFare\":1500,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":6,\"AddiMarkup\":33.333333333333336,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"0 Kg\",\"CabinBaggage\":\"7 Kg\"}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":70.24,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5833.16,\"CostToCustomer\":5833.16,\"BaseFareCal\":5733.16,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5733.16,\"intOfferedFare\":5715.16,\"intPublishFare\":5785.4,\"TripjackMarkup\":0,\"TripjackCommission\":70.24,\"TripjackTDS\":\"3.7\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"0BN\"},\"Segments\":[{\"originAirportName\":\"Dr Ambedkar Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Nagpur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-10-06T09:35\",\"SegFlightNumber\":\"G8-141\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":null,\"originAirportCode\":\"NAG\",\"originDepTime\":\"2022-10-06T08:00\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\"}}','2022-08-22 12:24:45'),(403,'6ddc8-890b6-f3d06-024c0','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6474\",\"keyIndex\":5,\"SegFlightNumberArr\":\"6E-6474\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0821160756_0BOMIXC6E6474_96628767900241\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:35\",\"ArrivalTime\":\"11:50\",\"TravelDate\":\"2022-11-19T09:35\",\"LocalFromTime\":\"2022-11-19 09:35\",\"FromUTCTime\":\"2022-11-19T09:35\",\"LocalToTime\":\"2022-11-19 11:50\",\"ToUTCTime\":\"2022-11-19T11:50\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 19 Nov\",\"ArrivalDateTxt\":\"Sat, 19 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"5765\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXC\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":12714,\"PublishedFareTxt\":\"12,714\",\"ApiResultIndex\":\"5-0821160756_0BOMIXC6E6474_96628767899331\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"6ddc8-890b6-f3d06-024c0\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11200,\"Tax\":1561.4,\"YQTax\":0,\"OtherCharges\":1526,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":12761.4,\"PublishedFare\":12714,\"PublishedFarePerPax\":6357,\"OfferedFare\":12655,\"CommissionEarned\":106.4,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0821160756_0BOMIXC6E6474_96628767900241\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1561.4,\"BaseFareCal\":12664,\"BaseFare\":11200,\"CommissionEarned\":106.4,\"TDS\":-5.6,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1526,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":106.4,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":12714,\"CostToCustomer\":12714,\"BaseFareCal\":12664,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":12664,\"intOfferedFare\":12655,\"intPublishFare\":12761.4,\"TripjackMarkup\":0,\"TripjackCommission\":106.4,\"TripjackTDS\":\"5.6\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"030\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Chandigarh Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chandigarh\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXC\",\"destinationArrTime\":\"2022-11-19T11:50\",\"SegFlightNumber\":\"6E-6474\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-19T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-22 14:14:16'),(404,'b6677-77874-1f83b-8593b','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-123\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-123\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-1794103218_0COKHYDG8123_22141798203752\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:15\",\"ArrivalTime\":\"07:55\",\"TravelDate\":\"2022-08-24T06:15\",\"LocalFromTime\":\"2022-08-24 06:15\",\"FromUTCTime\":\"2022-08-24T06:15\",\"LocalToTime\":\"2022-08-24 07:55\",\"ToUTCTime\":\"2022-08-24T07:55\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 24 Aug\",\"ArrivalDateTxt\":\"Wed, 24 Aug\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"14275\",\"DestPlaceSysId\":\"12538\",\"SourceAirportCode\":\"COK\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":13192,\"PublishedFareTxt\":\"13,191\",\"ApiResultIndex\":\"1-1794103218_0COKHYDG8123_22141798202941\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b6677-77874-1f83b-8593b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10726,\"Tax\":2135.4,\"YQTax\":0,\"OtherCharges\":2100,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":12861.4,\"PublishedFare\":12394,\"PublishedFarePerPax\":6197,\"OfferedFare\":12275.5,\"CommissionEarned\":585.9,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-30.84,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-1794103218_0COKHYDG8123_22141798203752\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2135.4,\"BaseFareCal\":12293.5,\"BaseFare\":10726,\"CommissionEarned\":585.9,\"TDS\":-30.84,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2100,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":585.9,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":12393.5,\"CostToCustomer\":12393.5,\"BaseFareCal\":12293.5,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":12293.5,\"intOfferedFare\":12275.5,\"intPublishFare\":12861.4,\"TripjackMarkup\":0,\"TripjackCommission\":585.9,\"TripjackTDS\":\"30.84\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"03Q\"},\"Segments\":[{\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-08-24T07:55\",\"SegFlightNumber\":\"G8-123\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2022-08-24T06:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:15\",\"strArrivalDtTime\":\"07:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-23 16:14:44'),(405,'c6627-af8fb-25077-0bbba','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-123\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-123\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8649537158_0COKHYDG8123_327888600813\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:15\",\"ArrivalTime\":\"07:55\",\"TravelDate\":\"2022-08-24T06:15\",\"LocalFromTime\":\"2022-08-24 06:15\",\"FromUTCTime\":\"2022-08-24T06:15\",\"LocalToTime\":\"2022-08-24 07:55\",\"ToUTCTime\":\"2022-08-24T07:55\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 24 Aug\",\"ArrivalDateTxt\":\"Wed, 24 Aug\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"14275\",\"DestPlaceSysId\":\"12538\",\"SourceAirportCode\":\"COK\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":12394,\"PublishedFareTxt\":\"12,394\",\"ApiResultIndex\":\"1-8649537158_0COKHYDG8123_327888599123\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"c6627-af8fb-25077-0bbba\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10726,\"Tax\":2135.4,\"YQTax\":0,\"OtherCharges\":2100,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":12861.4,\"PublishedFare\":12394,\"PublishedFarePerPax\":6197,\"OfferedFare\":12275.5,\"CommissionEarned\":585.9,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-30.84,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-8649537158_0COKHYDG8123_327888600813\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2135.4,\"BaseFareCal\":12293.5,\"BaseFare\":10726,\"CommissionEarned\":585.9,\"TDS\":-30.84,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2100,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":585.9,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":12393.5,\"CostToCustomer\":12393.5,\"BaseFareCal\":12293.5,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":12293.5,\"intOfferedFare\":12275.5,\"intPublishFare\":12861.4,\"TripjackMarkup\":0,\"TripjackCommission\":585.9,\"TripjackTDS\":\"30.84\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"03L\"},\"Segments\":[{\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-08-24T07:55\",\"SegFlightNumber\":\"G8-123\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2022-08-24T06:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:15\",\"strArrivalDtTime\":\"07:55\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-23 17:17:22'),(406,'ec1b2-88c01-47ba0-6b708','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-203\",\"keyIndex\":52,\"SegFlightNumberArr\":\"6E-203\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3416463018_0COKHYD6E203_189389468489062\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-08-24T07:55\",\"LocalFromTime\":\"2022-08-24 07:55\",\"FromUTCTime\":\"2022-08-24T07:55\",\"LocalToTime\":\"2022-08-24 09:35\",\"ToUTCTime\":\"2022-08-24T09:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 24 Aug\",\"ArrivalDateTxt\":\"Wed, 24 Aug\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"14275\",\"DestPlaceSysId\":\"12538\",\"SourceAirportCode\":\"COK\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":13328,\"PublishedFareTxt\":\"13,327\",\"ApiResultIndex\":\"5-3416463018_0COKHYD6E203_189389468488252\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"ec1b2-88c01-47ba0-6b708\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11598,\"Tax\":1721.4,\"YQTax\":0,\"OtherCharges\":1686,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":13319.4,\"PublishedFare\":13328,\"PublishedFarePerPax\":6664,\"OfferedFare\":13209.22,\"CommissionEarned\":110.18,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.8,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3416463018_0COKHYD6E203_189389468489062\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1721.4,\"BaseFareCal\":13227.22,\"BaseFare\":11598,\"CommissionEarned\":110.18,\"TDS\":-5.8,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1686,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":110.18,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":13327.22,\"CostToCustomer\":13327.22,\"BaseFareCal\":13227.22,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":13227.22,\"intOfferedFare\":13209.22,\"intPublishFare\":13319.4,\"TripjackMarkup\":0,\"TripjackCommission\":110.18,\"TripjackTDS\":\"5.8\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"04Z\"},\"Segments\":[{\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-08-24T09:35\",\"SegFlightNumber\":\"6E-203\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2022-08-24T07:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-23 17:18:22'),(407,'2407e-0ca3d-79462-3b012','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-389\",\"keyIndex\":29,\"SegFlightNumberArr\":\"G8-389\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-5183227851_0JAIBOMG8389_87982481406417\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:25\",\"ArrivalTime\":\"10:20\",\"TravelDate\":\"2022-08-30T08:25\",\"LocalFromTime\":\"2022-08-30 08:25\",\"FromUTCTime\":\"2022-08-30T08:25\",\"LocalToTime\":\"2022-08-30 10:20\",\"ToUTCTime\":\"2022-08-30T10:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Tue, 30 Aug\",\"ArrivalDateTxt\":\"Tue, 30 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":15199,\"PublishedFareTxt\":\"15,199\",\"ApiResultIndex\":\"11-5183227851_0JAIBOMG8389_87982481406417\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"2407e-0ca3d-79462-3b012\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13800,\"Tax\":1070.8,\"YQTax\":0,\"OtherCharges\":1000,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":14870.8,\"PublishedFare\":15199,\"PublishedFarePerPax\":3800,\"OfferedFare\":14608.6,\"CommissionEarned\":262.2,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.8,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-5183227851_0JAIBOMG8389_87982481406417\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":535.4,\"BaseFareCal\":7394.3,\"BaseFare\":6900,\"CommissionEarned\":131.1,\"TDS\":-6.9,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":500,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":45,\"AddiMarkup\":250,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"2\",\"TaxIN\":535.4,\"BaseFareCal\":7394.3,\"BaseFare\":6900,\"CommissionEarned\":131.1,\"TDS\":-6.9,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":500,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":45,\"AddiMarkup\":250,\"intTotalGST\":90,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":262.2,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90,\"PublishFare\":15198.6,\"CostToCustomer\":15198.6,\"BaseFareCal\":14698.6,\"intCommisionEarnedForAgency\":500,\"CostToCompany\":14698.6,\"intOfferedFare\":14608.6,\"intPublishFare\":14870.8,\"TripjackMarkup\":0,\"TripjackCommission\":262.2,\"TripjackTDS\":\"13.8\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-30T10:20\",\"SegFlightNumber\":\"G8-389\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-30T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"10:20\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-24 11:50:16'),(408,'b8dd5-38987-c6333-9e698','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6265\",\"keyIndex\":117,\"SegFlightNumberArr\":\"6E-6265\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8274980566_1UDRDEL6E6265_14260573628205\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:20\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2022-08-25T19:20\",\"LocalFromTime\":\"2022-08-25 19:20\",\"FromUTCTime\":\"2022-08-25T19:20\",\"LocalToTime\":\"2022-08-25 20:25\",\"ToUTCTime\":\"2022-08-25T20:25\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Thu, 25 Aug\",\"ArrivalDateTxt\":\"Thu, 25 Aug\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":\"28058\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"UDR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5545,\"PublishedFareTxt\":\"5,544\",\"ApiResultIndex\":\"5-8274980566_1UDRDEL6E6265_14260573627935\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b8dd5-38987-c6333-9e698\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4700,\"Tax\":770.7,\"YQTax\":0,\"OtherCharges\":753,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":5470.7,\"PublishedFare\":5545,\"PublishedFarePerPax\":5545,\"OfferedFare\":5426.05,\"CommissionEarned\":44.65,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.35,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8274980566_1UDRDEL6E6265_14260573628205\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":770.7,\"BaseFareCal\":5444.05,\"BaseFare\":4700,\"CommissionEarned\":44.65,\"TDS\":-2.35,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":753,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":18,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":100,\"GSTOnMarkUp\":18,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":44.65,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":100,\"IntTaxOnAgencyFixMarkUp\":18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":18,\"PublishFare\":5544.05,\"CostToCustomer\":5544.05,\"BaseFareCal\":5444.05,\"intCommisionEarnedForAgency\":100,\"CostToCompany\":5444.05,\"intOfferedFare\":5426.05,\"intPublishFare\":5470.7,\"TripjackMarkup\":0,\"TripjackCommission\":44.65,\"TripjackTDS\":\"2.35\",\"AddiMarkup\":\"100.00\",\"AddiTaxOnMarkup\":18,\"IntAdddimarkup\":100},\"$$hashKey\":\"03H\"},\"Segments\":[{\"originAirportName\":\"Maharana Pratap Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Udaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-25T20:25\",\"SegFlightNumber\":\"6E-6265\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"UDR\",\"originDepTime\":\"2022-08-25T19:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:20\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-24 19:33:34'),(409,'0f4a8-3b2cb-ccda3-13d79','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-717\",\"keyIndex\":7,\"SegFlightNumberArr\":\"UK-717\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-3704059348_0DELPATUK717_23032411002217\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-09-09T08:00\",\"LocalFromTime\":\"2022-09-09 08:00\",\"FromUTCTime\":\"2022-09-09T08:00\",\"LocalToTime\":\"2022-09-09 09:35\",\"ToUTCTime\":\"2022-09-09T09:35\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Fri, 09 Sep\",\"ArrivalDateTxt\":\"Fri, 09 Sep\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2826,\"PublishedFareTxt\":\"2,825\",\"ApiResultIndex\":\"21-10-15-2-3704059348_0DELPATUK717_23032411001117\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"0f4a8-3b2cb-ccda3-13d79\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2491,\"Tax\":668.7,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":131,\"CarrierMiscFee\":130,\"MUFee\":0,\"intPublishedFare\":3159.7,\"PublishedFare\":2826,\"PublishedFarePerPax\":2826,\"OfferedFare\":2766.12,\"CommissionEarned\":393.58,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-20.72,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3704059348_0DELPATUK717_23032411002217\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":668.7,\"BaseFareCal\":2775.12,\"BaseFare\":2491,\"CommissionEarned\":393.58,\"TDS\":-20.72,\"MF\":15,\"YQ\":0,\"AGST\":131,\"MFT\":2.7,\"OT\":390,\"MU\":0,\"YR\":130,\"AddiTaxOnMarkup\":9,\"AddiMarkup\":50,\"intTotalGST\":9,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":50,\"GSTOnMarkUp\":9,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":393.58,\"IntCommissionValInPercentage\":0,\"IntCommission\":0,\"IntAgencyFixMarkUp\":50,\"IntTaxOnAgencyFixMarkUp\":9,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":9,\"PublishFare\":2825.12,\"CostToCustomer\":2825.12,\"BaseFareCal\":2775.12,\"intCommisionEarnedForAgency\":50,\"CostToCompany\":2775.12,\"intOfferedFare\":2766.12,\"intPublishFare\":3159.7,\"TripjackMarkup\":0,\"TripjackCommission\":393.58,\"TripjackTDS\":\"20.72\",\"AddiMarkup\":\"50.00\",\"AddiTaxOnMarkup\":9,\"IntAdddimarkup\":50},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-09-09T09:35\",\"SegFlightNumber\":\"UK-717\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Z\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-09T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-24 19:37:19'),(410,'b7003-2cac1-3c795-b5e70','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-2501\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-2501\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9662301407_0DELBOMG82501_14524334936354\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:50\",\"TravelDate\":\"2022-08-31T02:40\",\"LocalFromTime\":\"2022-08-31 02:40\",\"FromUTCTime\":\"2022-08-31T02:40\",\"LocalToTime\":\"2022-08-31 04:50\",\"ToUTCTime\":\"2022-08-31T04:50\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4400,\"PublishedFareTxt\":\"4,400\",\"ApiResultIndex\":\"1-9662301407_0DELBOMG82501_14524334936354\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b7003-2cac1-3c795-b5e70\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3524,\"Tax\":713.7,\"YQTax\":0,\"OtherCharges\":696,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":0,\"intPublishedFare\":4237.7,\"PublishedFare\":4400,\"PublishedFarePerPax\":4400,\"OfferedFare\":4162.37,\"CommissionEarned\":75.33,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.96,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-9662301407_0DELBOMG82501_14524334936354\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":36,\"apiMarkup\":0,\"IntCommission\":1.51,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.51,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":713.7,\"BaseFareCal\":4198.37,\"BaseFare\":3524,\"CommissionEarned\":75.33,\"TDS\":-3.96,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":696,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":36,\"apiMarkup\":0,\"IntCommission\":1.51,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.51,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":75.33,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.51,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":36,\"PublishFare\":4399.88,\"CostToCustomer\":4399.88,\"BaseFareCal\":4198.37,\"intCommisionEarnedForAgency\":201.51,\"CostToCompany\":4198.37,\"intOfferedFare\":4162.37,\"intPublishFare\":4237.7,\"TripjackMarkup\":0,\"TripjackCommission\":75.33,\"TripjackTDS\":\"3.96\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-31T04:50\",\"SegFlightNumber\":\"G8-2501\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-31T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:50\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-24 20:37:53'),(411,'4107e-683ff-94b49-a38ba','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-707\",\"keyIndex\":10,\"SegFlightNumberArr\":\"UK-707\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-3528988576_2DELCCUUK707_7911844294726\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-08-26T17:30\",\"LocalFromTime\":\"2022-08-26 17:30\",\"FromUTCTime\":\"2022-08-26T17:30\",\"LocalToTime\":\"2022-08-26 19:35\",\"ToUTCTime\":\"2022-08-26T19:35\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5359,\"PublishedFareTxt\":\"5,358\",\"ApiResultIndex\":\"21-10-15-2-3528988576_2DELCCUUK707_7911844294496\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"4107e-683ff-94b49-a38ba\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4601,\"Tax\":882.21,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":237,\"CarrierMiscFee\":130,\"MUFee\":107.51,\"intPublishedFare\":5483.21,\"PublishedFare\":5359,\"PublishedFarePerPax\":5359,\"OfferedFare\":5007.62,\"CommissionEarned\":368.08,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.37,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3528988576_2DELCCUUK707_7911844294726\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":52.4,\"apiMarkup\":91.11,\"IntCommission\":7.36,\"apiTaxOnMarkup\":16.4,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":7.36,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":882.21,\"BaseFareCal\":5060.02,\"BaseFare\":4601,\"CommissionEarned\":368.08,\"TDS\":-19.37,\"MF\":15,\"YQ\":0,\"AGST\":237,\"MFT\":2.7,\"OT\":390,\"MU\":107.51,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":52.4,\"apiMarkup\":91.11,\"IntCommission\":7.36,\"apiTaxOnMarkup\":16.4,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":7.36,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":91.11,\"apiTaxOnMarkup\":16.4,\"IntNetCommission\":368.08,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.36,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":52.4,\"PublishFare\":5358.49,\"CostToCustomer\":5358.49,\"BaseFareCal\":5060.02,\"intCommisionEarnedForAgency\":298.47,\"CostToCompany\":5060.02,\"intOfferedFare\":5007.62,\"intPublishFare\":5483.21,\"TripjackMarkup\":107.51,\"TripjackCommission\":368.08,\"TripjackTDS\":\"19.37\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"0CE\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-26T19:35\",\"SegFlightNumber\":\"UK-707\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T17:30\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-25 11:54:26'),(416,'2271d-51f78-4f9da-b9ae6','{\"BookingData\":[{\"bookingId\":\"TJ100441037963\",\"FlightNumber\":\"UK-721\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:20\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-26T15:20\",\"LocalFromTime\":\"2022-08-26 15:20\",\"FromUTCTime\":\"2022-08-26T15:20\",\"LocalToTime\":\"2022-08-26 17:45\",\"ToUTCTime\":\"2022-08-26T17:45\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":11240,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11421.34,\"PublishedFareTxt\":\"11,421\",\"ApiResultIndex\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-GAU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARF\":3150,\"CRF\":50,\"CRFT\":9,\"ARFT\":157.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"ACF\":3675,\"ACFT\":183.75,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10222,\"Tax\":1199.34,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":160,\"MUFee\":223.94,\"intPublishedFare\":11421.34,\"PublishedFare\":10733.91,\"OfferedFare\":10255.12,\"CommissionEarned\":942.28,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-49.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-7645385340_0DELGAUUK721_8514433590420\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":70.16,\"apiMarkup\":189.78,\"IntCommission\":18.85,\"apiTaxOnMarkup\":34.16,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":18.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1199.34,\"BaseFareCal\":10325.28,\"BaseFare\":10222,\"CommissionEarned\":942.28,\"TDS\":-49.6,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":780,\"MU\":223.94,\"YR\":160,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":70.16,\"apiMarkup\":189.78,\"IntCommission\":18.85,\"apiTaxOnMarkup\":34.16,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":18.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":189.78,\"apiTaxOnMarkup\":34.16,\"IntNetCommission\":942.28,\"IntCommissionValInPercentage\":2,\"IntCommission\":18.85,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":70.16,\"PublishFare\":10733.91,\"CostToCustomer\":10733.91,\"BaseFareCal\":10325.28,\"intCommisionEarnedForAgency\":408.63,\"CostToCompany\":10325.28,\"intOfferedFare\":10255.12,\"intPublishFare\":11421.34,\"TripjackMarkup\":223.94,\"TripjackCommission\":942.28,\"TripjackTDS\":\"49.6\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"855\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-08-26T17:45\",\"SegFlightNumber\":\"UK-721\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"2271d-51f78-4f9da-b9ae6\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GAU\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":11240,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ100441037963\",\"FlightNumber\":\"UK-721\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"strTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:20\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-08-26T15:20\",\"LocalFromTime\":\"2022-08-26 15:20\",\"FromUTCTime\":\"2022-08-26T15:20\",\"LocalToTime\":\"2022-08-26 17:45\",\"ToUTCTime\":\"2022-08-26T17:45\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":11240,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11421.34,\"ApiResultIndex\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"2271d-51f78-4f9da-b9ae6\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10222,\"Tax\":1199.34,\"YQTax\":0,\"OtherCharges\":780,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":160,\"MUFee\":223.94,\"intPublishedFare\":11421.34,\"PublishedFare\":10733.91,\"OfferedFare\":10255.12,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":18.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1199.34,\"BaseFareCal\":10325.28,\"BaseFare\":10222,\"CommissionEarned\":942.28,\"TDS\":-49.6,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":780,\"MU\":223.94,\"YR\":160,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":18.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"855\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-08-26T17:45\",\"SegFlightNumber\":\"UK-721\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T15:20\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"15:20\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-7645385340_1DELGAUUK721_88382985125281\",\"localFromDateTime\":\"2022-08-26 15:20\",\"localToDateTime\":\"2022-08-26 17:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GAU\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":11240,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Guwahati (GAU)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"GAU\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Guwahati, IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU), India\",\"departure_date\":\"26\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"GAU\",\"from\":\"DEL\",\"to\":\"GAU\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Guwahati, IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU), India\",\"sourceCityId\":7701,\"destinationCityId\":11240,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"26\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-26\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"2271d-51f78-4f9da-b9ae6\",\"from_city_\":\"1__DEL-GAU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Guwahati+%28GAU%29&adults=2&childs=0&infants=0&class=2&source_city=DEL&ContSysId_1=101&destination_city=GAU&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Guwahati%2C+IN+-+Lokpriya+Gopinath+Bordoloi+Intl+Arpt+%28GAU%29%2C+India&departure_date=26%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Lokpriya+Gopinath+Bordoloi+Intl+Arpt+%28GAU%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"das2techconsultancy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7085589052\",\"FirstName\":\"Raju\",\"LastName\":\"Das\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-25-21-16-13\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"47\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"47\",\"EmailId\":\"das2techconsultancy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7085589052\",\"FirstName\":\"Amir\",\"LastName\":\"Khan\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-25-21-16-13\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"50\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"436279\",\"TPSysId\":\"436280\",\"VersionId\":[\"95534\"],\"CustomerSysId\":\"229600\",\"TrxId\":\"32246\",\"FareBreakdownid\":[\"358855\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"126\",\"127\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"47\",\"CustomerMemSysId\":[\"47\",\"50\"],\"flight_booking_id\":[\"80\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"80\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":10733.91},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"229600\",\"TPSysId\":\"436280\",\"MasterTPSysId\":\"436279\",\"ProposalID\":\"436280\\/V1\",\"InvoiceDate\":\"2022-08-25\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-25\",\"PaymentDate\":\"2022-08-25\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":10661.91,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":10733.91,\"TotalDueAmount\":0,\"InvoiceValue\":10733.91,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-GAU-Vistara UK-721\",\"ItemQty\":1,\"ItemRates\":10261.91,\"Total\":10261.91,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":10733.91,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":10661.91,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-25 21:18:40'),(421,'bbe72-9cc7f-dd56e-57d93','{\"BookingData\":[{\"bookingId\":\"TJ104241039445\",\"FlightNumber\":\"SG-8251\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:00\",\"TravelDate\":\"2022-08-26T18:50\",\"LocalFromTime\":\"2022-08-26 18:50\",\"FromUTCTime\":\"2022-08-26T18:50\",\"LocalToTime\":\"2022-08-26 21:00\",\"ToUTCTime\":\"2022-08-26T21:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":41,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4673.33,\"PublishedFareTxt\":\"4,673\",\"ApiResultIndex\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"ARFT\":167.5,\"CRFT\":9,\"ARF\":3350,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"CCF\":50,\"ACF\":3600,\"CCFT\":9,\"ACFT\":180}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3852,\"Tax\":821.33,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":198,\"CarrierMiscFee\":0,\"MUFee\":91.63,\"intPublishedFare\":4673.33,\"PublishedFare\":4864.5,\"OfferedFare\":4535.96,\"CommissionEarned\":45.74,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.41,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0445495529_0DELCCUSG8251_4255137213621\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":49.98,\"apiMarkup\":77.65,\"IntCommission\":0.91,\"apiTaxOnMarkup\":13.98,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":821.33,\"BaseFareCal\":4585.94,\"BaseFare\":3852,\"CommissionEarned\":45.74,\"TDS\":-2.41,\"MF\":15,\"YQ\":0,\"AGST\":198,\"MFT\":2.7,\"OT\":514,\"MU\":91.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.98,\"apiMarkup\":77.65,\"IntCommission\":0.91,\"apiTaxOnMarkup\":13.98,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":77.65,\"apiTaxOnMarkup\":13.98,\"IntNetCommission\":45.74,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.91,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.98,\"PublishFare\":4864.5,\"CostToCustomer\":4864.5,\"BaseFareCal\":4585.94,\"intCommisionEarnedForAgency\":278.57,\"CostToCompany\":4585.94,\"intOfferedFare\":4535.96,\"intPublishFare\":4673.33,\"TripjackMarkup\":91.63,\"TripjackCommission\":45.74,\"TripjackTDS\":\"2.41\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"234\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-26T21:00\",\"SegFlightNumber\":\"SG-8251\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":41,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"234\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"bbe72-9cc7f-dd56e-57d93\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104241039445\",\"FlightNumber\":\"SG-8251\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"strTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"18:50\",\"ArrivalTime\":\"21:00\",\"TravelDate\":\"2022-08-26T18:50\",\"LocalFromTime\":\"2022-08-26 18:50\",\"FromUTCTime\":\"2022-08-26T18:50\",\"LocalToTime\":\"2022-08-26 21:00\",\"ToUTCTime\":\"2022-08-26T21:00\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 26 Aug\",\"ArrivalDateTxt\":\"Fri, 26 Aug\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":41,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4673.33,\"ApiResultIndex\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"bbe72-9cc7f-dd56e-57d93\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3852,\"Tax\":821.33,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":198,\"CarrierMiscFee\":0,\"MUFee\":91.63,\"intPublishedFare\":4673.33,\"PublishedFare\":4864.5,\"OfferedFare\":4535.96,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":821.33,\"BaseFareCal\":4585.94,\"BaseFare\":3852,\"CommissionEarned\":45.74,\"TDS\":-2.41,\"MF\":15,\"YQ\":0,\"AGST\":198,\"MFT\":2.7,\"OT\":514,\"MU\":91.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"234\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-26T21:00\",\"SegFlightNumber\":\"SG-8251\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-08-26T18:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":41,\"strDepartureDtTime\":\"18:50\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0445495529_1DELCCUSG8251_2685675102509\",\"localFromDateTime\":\"2022-08-26 18:50\",\"localToDateTime\":\"2022-08-26 21:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Kolkata (CCU)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"CCU\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"departure_date\":\"26\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"CCU\",\"from\":\"DEL\",\"to\":\"CCU\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"sourceCityId\":7701,\"destinationCityId\":14323,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"26\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-26\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"bbe72-9cc7f-dd56e-57d93\",\"from_city_\":\"1__DEL-CCU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Kolkata+%28CCU%29&source_city=DEL&ContSysId_1=101&destination_city=CCU&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29%2C+India&departure_date=26%2F08%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"das2techconsultancy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7003083313\",\"FirstName\":\"Goutam\",\"LastName\":\"Das\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-25-21-35-16\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"48\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"436285\",\"TPSysId\":\"436286\",\"VersionId\":[\"95537\"],\"CustomerSysId\":\"229600\",\"TrxId\":\"32248\",\"FareBreakdownid\":[\"358857\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"128\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"48\",\"CustomerMemSysId\":[\"48\"],\"flight_booking_id\":[\"81\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"81\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4864.5},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"229600\",\"TPSysId\":\"436286\",\"MasterTPSysId\":\"436285\",\"ProposalID\":\"436286\\/V1\",\"InvoiceDate\":\"2022-08-25\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-25\",\"PaymentDate\":\"2022-08-25\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4792.5,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4864.5,\"TotalDueAmount\":0,\"InvoiceValue\":4864.5,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-CCU-SpiceJet SG-8251\",\"ItemQty\":1,\"ItemRates\":4392.5,\"Total\":4392.5,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4864.5,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":4792.5,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-25 21:36:25'),(426,'27756-47023-244eb-9a768','{\"FlightBookingData\":[{\"bookingId\":\"DMCS100400325916\",\"bookingId_TJ\":\"TJS100400325916\",\"FlightNumber\":\"6E-248\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"27756-47023-244eb-9a768\",\"apiTraceId\":\"5-5489156712_29BOMDEL6E248_195582301523113\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-08-27T22:45\",\"LocalFromTime\":\"2022-08-27 22:45\",\"FromUTCTime\":\"2022-08-27T22:45\",\"LocalToTime\":\"2022-08-28 01:00\",\"ToUTCTime\":\"2022-08-28T01:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 27 Aug\",\"ArrivalDateTxt\":\"Sun, 28 Aug\",\"FlightDuration\":\"02h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"936\",\"ApiResultIndex\":\"5-5489156712_29BOMDEL6E248_195582301523113\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":100,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":10,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":805.7,\"PublishedFare\":935.5,\"PublishedFareAgent\":935.5,\"OfferedFareAgent\":935.5,\"OfferedFare\":605.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5489156712_0BOMDEL6E248_195673949488026\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"fareIdentifierSP\":\"TACTICAL\",\"SeatAvailable\":null,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"TotalBaseFare\":805.7,\"BaseFareCal\":625.5,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":10,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":935.5,\"CostToCustomer\":935.5,\"BaseFareCal\":625.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":625.5,\"intOfferedFare\":605.7,\"intPublishFare\":805.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"951\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-28T01:00\",\"SegFlightNumber\":\"6E-248\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-27T22:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-5489156712_29BOMDEL6E248_195582301523113\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"ARFT\":150,\"CRF\":50,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-26 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"82\"],\"ForCustomerSession\":[{\"AgencySysId\":\"16498\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"am0856754@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9137879250\",\"FirstName\":\"gaurav\",\"LastName\":\"gupta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"16498\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-26 18:16:26\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"49\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"49\",\"CustomerMemSysId\":[\"49\"],\"flight_booking_customer\":[[\"129\"]],\"SearchTraceId\":\"27756-47023-244eb-9a768\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_des\":[\"Delhi (DEL)\",\"DEL\"],\"departure_date\":[\"27\\/08\\/2022\",\"\"],\"source_city\":[\"BOM\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"DEL\"],\"source\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM)\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"from_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"to_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_city\":[\"Delhi (DEL)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-08-27\"],\"strReturnDate\":\"\",\"sourceCityId\":[18676],\"intCountryCode\":\"IN\",\"destinationCityId\":[7701],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"27756-47023-244eb-9a768\",\"sourceCityAirportCode\":[\"BOM\"],\"destinationCityAirportCode\":[\"DEL\"],\"from\":[\"BOM\"],\"to\":[\"DEL\"],\"sourceCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM)\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"27\\/08\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"27 Aug Sat\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-08-26 18:13:53\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":{\"951\":{\"1\":{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"}}},\"SelectedMealSessionNew\":{\"951\":{\"1\":{\"Currency\":\"INR\",\"key\":\"951\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"}}},\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"27756-47023-244eb-9a768\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"27\\\\\\/08\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"BOM\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"DEL\\\"],\\\"source\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM)\\\"],\\\"destination\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Chhatrapati Shivaji (BOM)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"from_city\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-08-27\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[18676],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[7701],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"27756-47023-244eb-9a768\\\",\\\"sourceCityAirportCode\\\":[\\\"BOM\\\"],\\\"destinationCityAirportCode\\\":[\\\"DEL\\\"],\\\"from\\\":[\\\"BOM\\\"],\\\"to\\\":[\\\"DEL\\\"],\\\"sourceCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM)\\\"],\\\"destinationCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"27\\\\\\/08\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"27 Aug Sat\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-08-26 18:13:53\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS100400325916\\\",\\\"bookingId_TJ\\\":\\\"TJS100400325916\\\",\\\"FlightNumber\\\":\\\"6E-248\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"27756-47023-244eb-9a768\\\",\\\"apiTraceId\\\":\\\"5-5489156712_29BOMDEL6E248_195582301523113\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"22:45\\\",\\\"ArrivalTime\\\":\\\"01:00\\\",\\\"TravelDate\\\":\\\"2022-08-27T22:45\\\",\\\"LocalFromTime\\\":\\\"2022-08-27 22:45\\\",\\\"FromUTCTime\\\":\\\"2022-08-27T22:45\\\",\\\"LocalToTime\\\":\\\"2022-08-28 01:00\\\",\\\"ToUTCTime\\\":\\\"2022-08-28T01:00\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"T\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":135,\\\"DepartureDateTxt\\\":\\\"Sat, 27 Aug\\\",\\\"ArrivalDateTxt\\\":\\\"Sun, 28 Aug\\\",\\\"FlightDuration\\\":\\\"02h 15m\\\",\\\"SourcePlaceSysId\\\":\\\"18676\\\",\\\"DestPlaceSysId\\\":\\\"7701\\\",\\\"SourceAirportCode\\\":\\\"BOM\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"936\\\",\\\"ApiResultIndex\\\":\\\"5-5489156712_29BOMDEL6E248_195582301523113\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":100,\\\"Tax\\\":705.7,\\\"YQTax\\\":0,\\\"OtherCharges\\\":478,\\\"Discount\\\":0,\\\"ServiceFee\\\":15,\\\"ManagementFeeTax\\\":2.7,\\\"AirlineGSTComponent\\\":10,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":200,\\\"intPublishedFare\\\":805.7,\\\"PublishedFare\\\":935.5,\\\"PublishedFareAgent\\\":935.5,\\\"OfferedFareAgent\\\":935.5,\\\"OfferedFare\\\":605.7,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"5-5489156712_0BOMDEL6E248_195673949488026\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"TACTICAL\\\",\\\"fareIdentifierSP\\\":\\\"TACTICAL\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"T\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":935.5,\\\"CostToAgent\\\":935.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":705.7,\\\"TotalBaseFare\\\":805.7,\\\"BaseFareCal\\\":625.5,\\\"BaseFare\\\":100,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":15,\\\"YQ\\\":0,\\\"AGST\\\":10,\\\"MFT\\\":2.7,\\\"OT\\\":478,\\\"MU\\\":200,\\\"YR\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":935.5,\\\"CostToAgent\\\":935.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":169.4915254237288,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":50,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":110,\\\"IntTaxOnAgencyFixMarkUp\\\":19.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":50.308474576271195,\\\"PublishFare\\\":935.5,\\\"CostToCustomer\\\":935.5,\\\"BaseFareCal\\\":625.5,\\\"intCommisionEarnedForAgency\\\":310,\\\"CostToCompany\\\":625.5,\\\"intOfferedFare\\\":605.7,\\\"intPublishFare\\\":805.7,\\\"TripjackMarkup\\\":200,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":935.5,\\\"CostToAgent\\\":935.5,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"951\\\",\\\"originAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Mumbai\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2022-08-28T01:00\\\",\\\"SegFlightNumber\\\":\\\"6E-248\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"T\\\",\\\"originAirportCode\\\":\\\"BOM\\\",\\\"originDepTime\\\":\\\"2022-08-27T22:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":135,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"22:45\\\",\\\"strArrivalDtTime\\\":\\\"01:00\\\",\\\"FlightDuration\\\":\\\"2h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"5-5489156712_29BOMDEL6E248_195582301523113\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"BOM-DEL\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\\\",\\\"fcs\\\":{\\\"ARFT\\\":150,\\\"CRF\\\":50,\\\"ARF\\\":3000,\\\"CRFT\\\":9}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\\\",\\\"fcs\\\":{\\\"CCF\\\":50,\\\"ACFT\\\":175,\\\"CCFT\\\":9,\\\"ACF\\\":3500}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Paid Seat\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-08-26 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BOM\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"18676\\\",\\\"intDestinationCityId\\\":\\\"7701\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"{\\\"951\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"}}}\",\"SelectedMealSessionNew\":\"{\\\"951\\\":{\\\"1\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"951\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"}}}\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"9137879250\",\"leadEmail\":\"am0856754@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"gaurav\",\"passenger-lastname-1\":\"gupta\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Vashi\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"28479\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"SelectMeals\":[\"2\"],\"SelectBaggage\":[\"1\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"16498\",\"Salutation\":\"1\",\"EmailId\":\"am0856754@gmail.com\",\"FirstName\":\"gaurav\",\"LastName\":\"gupta\",\"CountryCode\":\"91\",\"MobileNo\":\"9137879250\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[],\"_sessiondata\":{\"EmailId\":\"am0856754@gmail.com\",\"UserSysId\":\"18173\",\"CustomerSysId\":\"230121\",\"AgencySysId\":\"16498\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"AALAM ZEB SALIM\",\"LastName\":\"QURESHI\",\"Password_cu\":\"\",\"AgencyName\":\"S K TRAVEL SERVICES\",\"AgencyCode\":\"61385\",\"ContactNo1\":\"9137879250\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"34E3D118-AB07-4868-BB91-16F38EB87454\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":1,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":\"0\",\"paymentMode\":\"2\",\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CPAmountWithTax\":0}','2022-08-26 18:16:40'),(431,'a9dd3-5f6de-aceef-6ab3c','{\"FlightBookingData\":[{\"bookingId\":\"DMCS109900326048\",\"bookingId_TJ\":\"TJS109900326048\",\"FlightNumber\":\"6E-832\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"a9dd3-5f6de-aceef-6ab3c\",\"apiTraceId\":\"5-1237710232_3BOMLKO6E832_2285839480756\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:15\",\"TravelDate\":\"2022-09-01T06:00\",\"LocalFromTime\":\"2022-09-01 06:00\",\"FromUTCTime\":\"2022-09-01T06:00\",\"LocalToTime\":\"2022-09-01 08:15\",\"ToUTCTime\":\"2022-09-01T08:15\",\"IsDirect\":0,\"FareClass\":\"R\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Thu, 01 Sep\",\"ArrivalDateTxt\":\"Thu, 01 Sep\",\"FlightDuration\":\"02h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"16028\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"3,759\",\"ApiResultIndex\":\"5-1237710232_3BOMLKO6E832_2285839480756\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2789,\"Tax\":839.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":144,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":3628.7,\"PublishedFare\":3758.5,\"PublishedFareAgent\":3758.5,\"OfferedFareAgent\":3758.5,\"OfferedFare\":3428.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1237710232_0BOMLKO6E832_2311902232833\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"R\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3758.5,\"CostToAgent\":3758.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":839.7,\"TotalBaseFare\":3628.7,\"BaseFareCal\":3448.5,\"BaseFare\":2789,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":144,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3758.5,\"CostToAgent\":3758.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":3758.5,\"CostToCustomer\":3758.5,\"BaseFareCal\":3448.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":3448.5,\"intOfferedFare\":3428.7,\"intPublishFare\":3628.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":3758.5,\"CostToAgent\":3758.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"767\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-09-01T08:15\",\"SegFlightNumber\":\"6E-832\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"R\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-01T06:00\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"TCSW\",\"Price\":400,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"767\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-1237710232_3BOMLKO6E832_2285839480756\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCF\":50,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"16028\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"83\"],\"ForCustomerSession\":[{\"AgencySysId\":\"13985\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9829015180\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"13985\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-26 19:54:08\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"50\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"50\",\"CustomerMemSysId\":[\"50\"],\"flight_booking_customer\":[[\"130\"]],\"SearchTraceId\":\"a9dd3-5f6de-aceef-6ab3c\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_des\":[\"Lucknow (LKO)\",\"DEL\"],\"departure_date\":[\"01\\/09\\/2022\",\"\"],\"source_city\":[\"BOM\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"LKO\"],\"source\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destination\":[\"Lucknow, IN - Amausi Arpt (LKO)\"],\"from_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"to_mytrip_city\":[\" IN - Amausi Arpt (LKO)\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"DirectFlight\":\"1\",\"from_city\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_city\":[\"Lucknow (LKO)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-09-01\"],\"strReturnDate\":\"\",\"sourceCityId\":[18676],\"intCountryCode\":\"IN\",\"destinationCityId\":[16028],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"a9dd3-5f6de-aceef-6ab3c\",\"sourceCityAirportCode\":[\"BOM\"],\"destinationCityAirportCode\":[\"LKO\"],\"from\":[\"BOM\"],\"to\":[\"LKO\"],\"sourceCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destinationCityText\":[\"Lucknow, IN - Amausi Arpt (LKO)\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"01\\/09\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"01 Sep Thu\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-08-26 19:52:50\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"a9dd3-5f6de-aceef-6ab3c\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Lucknow (LKO)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"01\\\\\\/09\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"BOM\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"LKO\\\"],\\\"source\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"destination\\\":[\\\"Lucknow, IN - Amausi Arpt (LKO)\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Chhatrapati Shivaji (BOM)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Amausi Arpt (LKO)\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"DirectFlight\\\":\\\"1\\\",\\\"from_city\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Lucknow (LKO)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-09-01\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[18676],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[16028],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"a9dd3-5f6de-aceef-6ab3c\\\",\\\"sourceCityAirportCode\\\":[\\\"BOM\\\"],\\\"destinationCityAirportCode\\\":[\\\"LKO\\\"],\\\"from\\\":[\\\"BOM\\\"],\\\"to\\\":[\\\"LKO\\\"],\\\"sourceCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"destinationCityText\\\":[\\\"Lucknow, IN - Amausi Arpt (LKO)\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"01\\\\\\/09\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"01 Sep Thu\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-08-26 19:52:50\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS109900326048\\\",\\\"bookingId_TJ\\\":\\\"TJS109900326048\\\",\\\"FlightNumber\\\":\\\"6E-832\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"a9dd3-5f6de-aceef-6ab3c\\\",\\\"apiTraceId\\\":\\\"5-1237710232_3BOMLKO6E832_2285839480756\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"06:00\\\",\\\"ArrivalTime\\\":\\\"08:15\\\",\\\"TravelDate\\\":\\\"2022-09-01T06:00\\\",\\\"LocalFromTime\\\":\\\"2022-09-01 06:00\\\",\\\"FromUTCTime\\\":\\\"2022-09-01T06:00\\\",\\\"LocalToTime\\\":\\\"2022-09-01 08:15\\\",\\\"ToUTCTime\\\":\\\"2022-09-01T08:15\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"R\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":135,\\\"DepartureDateTxt\\\":\\\"Thu, 01 Sep\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 01 Sep\\\",\\\"FlightDuration\\\":\\\"02h 15m\\\",\\\"SourcePlaceSysId\\\":\\\"18676\\\",\\\"DestPlaceSysId\\\":\\\"16028\\\",\\\"SourceAirportCode\\\":\\\"BOM\\\",\\\"DestAirportCode\\\":\\\"LKO\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"3,759\\\",\\\"ApiResultIndex\\\":\\\"5-1237710232_3BOMLKO6E832_2285839480756\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":2789,\\\"Tax\\\":839.7,\\\"YQTax\\\":0,\\\"OtherCharges\\\":478,\\\"Discount\\\":0,\\\"ServiceFee\\\":15,\\\"ManagementFeeTax\\\":2.7,\\\"AirlineGSTComponent\\\":144,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":200,\\\"intPublishedFare\\\":3628.7,\\\"PublishedFare\\\":3758.5,\\\"PublishedFareAgent\\\":3758.5,\\\"OfferedFareAgent\\\":3758.5,\\\"OfferedFare\\\":3428.7,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"5-1237710232_0BOMLKO6E832_2311902232833\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"R\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3758.5,\\\"CostToAgent\\\":3758.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":839.7,\\\"TotalBaseFare\\\":3628.7,\\\"BaseFareCal\\\":3448.5,\\\"BaseFare\\\":2789,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":15,\\\"YQ\\\":0,\\\"AGST\\\":144,\\\"MFT\\\":2.7,\\\"OT\\\":478,\\\"MU\\\":200,\\\"YR\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3758.5,\\\"CostToAgent\\\":3758.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":169.4915254237288,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":50,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":110,\\\"IntTaxOnAgencyFixMarkUp\\\":19.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":50.308474576271195,\\\"PublishFare\\\":3758.5,\\\"CostToCustomer\\\":3758.5,\\\"BaseFareCal\\\":3448.5,\\\"intCommisionEarnedForAgency\\\":310,\\\"CostToCompany\\\":3448.5,\\\"intOfferedFare\\\":3428.7,\\\"intPublishFare\\\":3628.7,\\\"TripjackMarkup\\\":200,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":3758.5,\\\"CostToAgent\\\":3758.5,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"767\\\",\\\"originAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"destinationAirportName\\\":\\\"Amausi Arpt\\\",\\\"originCityName\\\":\\\"Mumbai\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Lucknow\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"LKO\\\",\\\"destinationArrTime\\\":\\\"2022-09-01T08:15\\\",\\\"SegFlightNumber\\\":\\\"6E-832\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"R\\\",\\\"originAirportCode\\\":\\\"BOM\\\",\\\"originDepTime\\\":\\\"2022-09-01T06:00\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":135,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"06:00\\\",\\\"strArrivalDtTime\\\":\\\"08:15\\\",\\\"FlightDuration\\\":\\\"2h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 2\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"5-1237710232_3BOMLKO6E832_2285839480756\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"BOM-LKO\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\\\",\\\"fcs\\\":{\\\"CRF\\\":50,\\\"CRFT\\\":9,\\\"ARF\\\":3000,\\\"ARFT\\\":150}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\\\",\\\"fcs\\\":{\\\"ACFT\\\":175,\\\"CCF\\\":50,\\\"CCFT\\\":9,\\\"ACF\\\":3500}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Paid Seat\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-08-31 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BOM\\\",\\\"strDestinationAirportCode\\\":\\\"LKO\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"18676\\\",\\\"intDestinationCityId\\\":\\\"16028\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"767\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"9829015180\",\"leadEmail\":\"ajaykhatri5775@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"Ajay\",\"passenger-lastname-1\":\"Khatri\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Mumbai\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"18676\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"SelectMeals\":[\"\"],\"SelectBaggage\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"13985\",\"Salutation\":\"1\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"CountryCode\":\"91\",\"MobileNo\":\"9829015180\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[],\"_sessiondata\":{\"EmailId\":\"ajaykhatri5775@gmail.com\",\"UserSysId\":\"15506\",\"CustomerSysId\":\"214868\",\"AgencySysId\":\"13985\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"Chinmay\",\"LastName\":\"Khatri\",\"Password_cu\":\"\",\"AgencyName\":\"Trial company 1\",\"AgencyCode\":\"125771.221112416531E40\",\"ContactNo1\":\"9829015180\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"DDBA8401-2282-430F-AFFF-F34689BEE485\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":2,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"0\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"0\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":\"0\",\"paymentMode\":\"2\",\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CPAmountWithTax\":0}','2022-08-26 19:54:36'),(432,'6cdf1-0063a-3078f-3684d','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-942\",\"keyIndex\":30,\"SegFlightNumberArr\":\"I5-942\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-3908745279_0JAIBOMI5942_19719841977707\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"12:25\",\"TravelDate\":\"2022-09-02T10:25\",\"LocalFromTime\":\"2022-09-02 10:25\",\"FromUTCTime\":\"2022-09-02T10:25\",\"LocalToTime\":\"2022-09-02 12:25\",\"ToUTCTime\":\"2022-09-02T12:25\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Fri, 02 Sep\",\"ArrivalDateTxt\":\"Fri, 02 Sep\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":5,\"CurrencyType\":null,\"PublishedFare\":20599,\"PublishedFareTxt\":\"20,598\",\"ApiResultIndex\":\"22-16-3908745279_0JAIBOMI5942_19719841976947\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"6cdf1-0063a-3078f-3684d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15380,\"Tax\":5161.25,\"YQTax\":0,\"OtherCharges\":3880,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.5,\"AirlineGSTComponent\":790,\"CarrierMiscFee\":0,\"MUFee\":402.75,\"intPublishedFare\":20541.25,\"PublishedFare\":20599,\"PublishedFarePerPax\":4120,\"OfferedFare\":19955.85,\"CommissionEarned\":182.65,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-3908745279_0JAIBOMI5942_19719841977707\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefit\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":97.44,\"apiMarkup\":341.31,\"IntCommission\":3.65,\"apiTaxOnMarkup\":61.44,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":3.65,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":5161.25,\"BaseFareCal\":20053.29,\"BaseFare\":15380,\"CommissionEarned\":182.65,\"TDS\":-9.6,\"MF\":75,\"YQ\":0,\"AGST\":790,\"MFT\":13.5,\"OT\":3880,\"MU\":402.75,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":97.44,\"apiMarkup\":341.31,\"IntCommission\":3.65,\"apiTaxOnMarkup\":61.44,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":3.65,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":341.31,\"apiTaxOnMarkup\":61.44,\"IntNetCommission\":182.65,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.65,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":97.44,\"PublishFare\":20598.25,\"CostToCustomer\":20598.25,\"BaseFareCal\":20053.29,\"intCommisionEarnedForAgency\":544.97,\"CostToCompany\":20053.29,\"intOfferedFare\":19955.85,\"intPublishFare\":20541.25,\"TripjackMarkup\":402.75,\"TripjackCommission\":182.65,\"TripjackTDS\":\"9.6\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-02T12:25\",\"SegFlightNumber\":\"I5-942\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-09-02T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:25\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"35001-40000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-27 15:34:22'),(433,'91243-7b1bc-5cccb-07ded','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-726\",\"keyIndex\":1,\"SegFlightNumberArr\":\"UK-726\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-6855695458_0IXBDELUK726_3172042548516\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"16:20\",\"TravelDate\":\"2022-08-28T14:25\",\"LocalFromTime\":\"2022-08-28 14:25\",\"FromUTCTime\":\"2022-08-28T14:25\",\"LocalToTime\":\"2022-08-28 16:20\",\"ToUTCTime\":\"2022-08-28T16:20\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Sun, 28 Aug\",\"ArrivalDateTxt\":\"Sun, 28 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"2012\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3723,\"PublishedFareTxt\":\"3,722\",\"ApiResultIndex\":\"21-10-15-2-6855695458_0IXBDELUK726_3172042547696\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"91243-7b1bc-5cccb-07ded\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3319,\"Tax\":587.29,\"YQTax\":0,\"OtherCharges\":413,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":80,\"MUFee\":76.59,\"intPublishedFare\":3906.29,\"PublishedFare\":3723,\"PublishedFarePerPax\":3723,\"OfferedFare\":3401.13,\"CommissionEarned\":428.57,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-22.56,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-6855695458_0IXBDELUK726_3172042548516\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":47.68,\"apiMarkup\":64.91,\"IntCommission\":8.57,\"apiTaxOnMarkup\":11.68,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.57,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":587.29,\"BaseFareCal\":3448.81,\"BaseFare\":3319,\"CommissionEarned\":428.57,\"TDS\":-22.56,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":413,\"MU\":76.59,\"YR\":80,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":47.68,\"apiMarkup\":64.91,\"IntCommission\":8.57,\"apiTaxOnMarkup\":11.68,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.57,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":64.91,\"apiTaxOnMarkup\":11.68,\"IntNetCommission\":428.57,\"IntCommissionValInPercentage\":2,\"IntCommission\":8.57,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":47.68,\"PublishFare\":3722.29,\"CostToCustomer\":3722.29,\"BaseFareCal\":3448.81,\"intCommisionEarnedForAgency\":273.48,\"CostToCompany\":3448.81,\"intOfferedFare\":3401.13,\"intPublishFare\":3906.29,\"TripjackMarkup\":76.59,\"TripjackCommission\":428.57,\"TripjackTDS\":\"22.56\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-28T16:20\",\"SegFlightNumber\":\"UK-726\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-28T14:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg (01 small handbag under the seat)\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"16:20\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-27 22:28:56'),(435,'754b3-9725a-b7852-a53f4','{\"FlightBookingData\":[{\"bookingId\":\"TJ100441251563\",\"FlightNumber\":\"6E-6822\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2022-09-12T15:00\",\"LocalFromTime\":\"2022-09-12 15:00\",\"FromUTCTime\":\"2022-09-12T15:00\",\"LocalToTime\":\"2022-09-12 16:10\",\"ToUTCTime\":\"2022-09-12T16:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Mon, 12 Sep\",\"ArrivalDateTxt\":\"Mon, 12 Sep\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":3139,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BHO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4512.17,\"PublishedFareTxt\":\"4,512\",\"ApiResultIndex\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BHO\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":299,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ARF\":299,\"CRF\":50,\"ARFT\":14.95,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":499,\"additionalFee\":50,\"policyInfo\":\"__nls__ Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ACF\":499,\"ACFT\":24.95,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Free Seat*(standard seats)\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3600,\"Tax\":912.17,\"YQTax\":0,\"OtherCharges\":615,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":191,\"CarrierMiscFee\":0,\"MUFee\":88.47,\"intPublishedFare\":4512.17,\"PublishedFare\":4378.11,\"OfferedFare\":4286.9,\"CommissionEarned\":136.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-7.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6075947611_0DELBHO6E6822_8847645551209\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":13.5,\"apiMarkup\":74.97,\"IntCommission\":2.74,\"apiTaxOnMarkup\":13.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":2.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":912.17,\"BaseFareCal\":4300.4,\"BaseFare\":3600,\"CommissionEarned\":136.8,\"TDS\":-7.2,\"MF\":15,\"YQ\":0,\"AGST\":191,\"MFT\":2.7,\"OT\":615,\"MU\":88.47,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":13.5,\"apiMarkup\":74.97,\"IntCommission\":2.74,\"apiTaxOnMarkup\":13.5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":2.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":74.97,\"apiTaxOnMarkup\":13.5,\"IntNetCommission\":136.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.74,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":13.5,\"PublishFare\":4378.11,\"CostToCustomer\":4378.11,\"BaseFareCal\":4300.4,\"intCommisionEarnedForAgency\":77.71,\"CostToCompany\":4300.4,\"intOfferedFare\":4286.9,\"intPublishFare\":4512.17,\"TripjackMarkup\":88.47,\"TripjackCommission\":136.8,\"TripjackTDS\":\"7.2\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}},\"Segments\":[{\"segmentid\":\"630\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Bhoj Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bhopal\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BHO\",\"destinationArrTime\":\"2022-09-12T16:10\",\"SegFlightNumber\":\"6E-6822\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-12T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"ZCHK\",\"Price\":0,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"VBIR\",\"Price\":0,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"UPMA\",\"Price\":0,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"SAKD\",\"Price\":0,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"POHA\",\"Price\":0,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"PBMR\",\"Price\":0,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"MUYO\",\"Price\":0,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CPML\",\"Price\":0,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"COMI\",\"Price\":0,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CNWT\",\"Price\":0,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CCWT\",\"Price\":0,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"AOAT\",\"Price\":0,\"Description\":\"Apple Oat Meal\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"630\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"754b3-9725a-b7852-a53f4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-12 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BHO\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":3139,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ100441251563\",\"FlightNumber\":\"6E-6822\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"strTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2022-09-12T15:00\",\"LocalFromTime\":\"2022-09-12 15:00\",\"FromUTCTime\":\"2022-09-12T15:00\",\"LocalToTime\":\"2022-09-12 16:10\",\"ToUTCTime\":\"2022-09-12T16:10\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Mon, 12 Sep\",\"ArrivalDateTxt\":\"Mon, 12 Sep\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":3139,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BHO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4512.17,\"ApiResultIndex\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"754b3-9725a-b7852-a53f4\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3600,\"Tax\":912.17,\"YQTax\":0,\"OtherCharges\":615,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":191,\"CarrierMiscFee\":0,\"MUFee\":88.47,\"intPublishedFare\":4512.17,\"PublishedFare\":4378.11,\"OfferedFare\":4286.9,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":2.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":912.17,\"BaseFareCal\":4300.4,\"BaseFare\":3600,\"CommissionEarned\":136.8,\"TDS\":-7.2,\"MF\":15,\"YQ\":0,\"AGST\":191,\"MFT\":2.7,\"OT\":615,\"MU\":88.47,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":2.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"630\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Raja Bhoj Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bhopal\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BHO\",\"destinationArrTime\":\"2022-09-12T16:10\",\"SegFlightNumber\":\"6E-6822\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-12T15:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-6075947611_1DELBHO6E6822_2682747885444\",\"localFromDateTime\":\"2022-09-12 15:00\",\"localToDateTime\":\"2022-09-12 16:10\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BHO\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":3139,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"84\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"51\",\"CustomerMemSysId\":[\"51\"],\"flight_booking_id\":[\"84\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"arb@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9485994885\",\"FirstName\":\"Akshat\",\"LastName\":\"Sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-28-20-21-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"51\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"51\",\"CustomerMemSysId\":[\"51\"],\"flight_booking_customer\":[[\"131\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Bhopal (BHO)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BHO\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Bhopal, IN - Raja Bhoj Arpt (BHO), India\",\"departure_date\":\"12\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Raja Bhoj Arpt (BHO)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BHO\",\"from\":\"DEL\",\"to\":\"BHO\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Bhopal, IN - Raja Bhoj Arpt (BHO), India\",\"sourceCityId\":7701,\"destinationCityId\":3139,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"12\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-12\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"754b3-9725a-b7852-a53f4\",\"from_city_\":\"1__DEL-BHO\"},\"sessionData\":{\"CustomerSysId\":\"51\",\"CustomerMemSysId\":[\"51\"],\"flight_booking_id\":[\"84\"]},\"validateCoupon\":null,\"validateData\":null}','2022-08-28 20:21:21'),(436,'5','{\"_sessiondata\":{\"EmailId\":\"ajaykhatri5775@gmail.com\",\"UserSysId\":\"15506\",\"CustomerSysId\":\"214868\",\"AgencySysId\":\"13985\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"Chinmay\",\"LastName\":\"Khatri\",\"Password_cu\":\"\",\"AgencyName\":\"Trial company 1\",\"AgencyCode\":\"125771.221112416531E40\",\"ContactNo1\":\"9829015180\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"DDBA8401-2282-430F-AFFF-F34689BEE485\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"0\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"0\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/finance\\/deposit\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"1000\",\"RefrenceNo\":\"123\",\"CreditDate\":\"29\\/08\\/2022\",\"Remark\":\"bsadfasdf\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/finance\\/deposit\"}','2022-08-29 14:12:38'),(442,'46eee-0e0f0-8d5ef-616bb','{\"FlightBookingData\":[{\"bookingId\":\"DMCS108800327228\",\"bookingId_TJ\":\"TJS108800327228\",\"FlightNumber\":\"6E-168\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"46eee-0e0f0-8d5ef-616bb\",\"apiTraceId\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:35\",\"ArrivalTime\":\"13:55\",\"TravelDate\":\"2022-08-30T11:35\",\"LocalFromTime\":\"2022-08-30 11:35\",\"FromUTCTime\":\"2022-08-30T11:35\",\"LocalToTime\":\"2022-08-30 13:55\",\"ToUTCTime\":\"2022-08-30T13:55\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Tue, 30 Aug\",\"ArrivalDateTxt\":\"Tue, 30 Aug\",\"FlightDuration\":\"02h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"936\",\"ApiResultIndex\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":100,\"Tax\":705.7,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":10,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":805.7,\"PublishedFare\":935.5,\"PublishedFareAgent\":935.5,\"OfferedFareAgent\":935.5,\"OfferedFare\":605.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3374271150_0BOMDEL6E168_241106132512964\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"fareIdentifierSP\":\"TACTICAL\",\"SeatAvailable\":null,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":705.7,\"TotalBaseFare\":805.7,\"BaseFareCal\":625.5,\"BaseFare\":100,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":10,\"MFT\":2.7,\"OT\":478,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":0,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":50,\"IntCommission\":0,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":935.5,\"CostToCustomer\":935.5,\"BaseFareCal\":625.5,\"intCommisionEarnedForAgency\":310,\"CostToCompany\":625.5,\"intOfferedFare\":605.7,\"intPublishFare\":805.7,\"TripjackMarkup\":200,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":0,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":935.5,\"CostToAgent\":935.5,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"436\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-08-30T13:55\",\"SegFlightNumber\":\"6E-168\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-30T11:35\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:35\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"436\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-3374271150_32BOMDEL6E168_241087522664731\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCF\":50,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-29 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"85\"],\"ForCustomerSession\":[{\"AgencySysId\":\"13985\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9829015180\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"13985\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-29 14:13:38\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"50\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"50\",\"CustomerMemSysId\":[\"50\"],\"flight_booking_customer\":[[\"132\"]],\"SearchTraceId\":\"46eee-0e0f0-8d5ef-616bb\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_des\":[\"Delhi (DEL)\",\"DEL\"],\"departure_date\":[\"30\\/08\\/2022\",\"\"],\"source_city\":[\"BOM\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"DEL\"],\"source\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"from_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"to_mytrip_city\":[\"\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_city\":[\"Delhi (DEL)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-08-30\"],\"strReturnDate\":\"\",\"sourceCityId\":[18676],\"intCountryCode\":\"IN\",\"destinationCityId\":[7701],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"46eee-0e0f0-8d5ef-616bb\",\"sourceCityAirportCode\":[\"BOM\"],\"destinationCityAirportCode\":[\"DEL\"],\"from\":[\"BOM\"],\"to\":[\"DEL\"],\"sourceCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"30\\/08\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"30 Aug Tue\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-08-29 14:12:52\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"46eee-0e0f0-8d5ef-616bb\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"30\\\\\\/08\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"BOM\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"DEL\\\"],\\\"source\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"destination\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Chhatrapati Shivaji (BOM)\\\"],\\\"to_mytrip_city\\\":[\\\"\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"from_city\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-08-30\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[18676],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[7701],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"46eee-0e0f0-8d5ef-616bb\\\",\\\"sourceCityAirportCode\\\":[\\\"BOM\\\"],\\\"destinationCityAirportCode\\\":[\\\"DEL\\\"],\\\"from\\\":[\\\"BOM\\\"],\\\"to\\\":[\\\"DEL\\\"],\\\"sourceCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"destinationCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"30\\\\\\/08\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"30 Aug Tue\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-08-29 14:12:52\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS108800327228\\\",\\\"bookingId_TJ\\\":\\\"TJS108800327228\\\",\\\"FlightNumber\\\":\\\"6E-168\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"46eee-0e0f0-8d5ef-616bb\\\",\\\"apiTraceId\\\":\\\"5-3374271150_32BOMDEL6E168_241087522664731\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"11:35\\\",\\\"ArrivalTime\\\":\\\"13:55\\\",\\\"TravelDate\\\":\\\"2022-08-30T11:35\\\",\\\"LocalFromTime\\\":\\\"2022-08-30 11:35\\\",\\\"FromUTCTime\\\":\\\"2022-08-30T11:35\\\",\\\"LocalToTime\\\":\\\"2022-08-30 13:55\\\",\\\"ToUTCTime\\\":\\\"2022-08-30T13:55\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"T\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":140,\\\"DepartureDateTxt\\\":\\\"Tue, 30 Aug\\\",\\\"ArrivalDateTxt\\\":\\\"Tue, 30 Aug\\\",\\\"FlightDuration\\\":\\\"02h 20m\\\",\\\"SourcePlaceSysId\\\":\\\"18676\\\",\\\"DestPlaceSysId\\\":\\\"7701\\\",\\\"SourceAirportCode\\\":\\\"BOM\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"936\\\",\\\"ApiResultIndex\\\":\\\"5-3374271150_32BOMDEL6E168_241087522664731\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":100,\\\"Tax\\\":705.7,\\\"YQTax\\\":0,\\\"OtherCharges\\\":478,\\\"Discount\\\":0,\\\"ServiceFee\\\":15,\\\"ManagementFeeTax\\\":2.7,\\\"AirlineGSTComponent\\\":10,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":200,\\\"intPublishedFare\\\":805.7,\\\"PublishedFare\\\":935.5,\\\"PublishedFareAgent\\\":935.5,\\\"OfferedFareAgent\\\":935.5,\\\"OfferedFare\\\":605.7,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"5-3374271150_0BOMDEL6E168_241106132512964\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"TACTICAL\\\",\\\"fareIdentifierSP\\\":\\\"TACTICAL\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"T\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":0,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":935.5,\\\"CostToAgent\\\":935.5,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":705.7,\\\"TotalBaseFare\\\":805.7,\\\"BaseFareCal\\\":625.5,\\\"BaseFare\\\":100,\\\"CommissionEarned\\\":0,\\\"TDS\\\":0,\\\"MF\\\":15,\\\"YQ\\\":0,\\\"AGST\\\":10,\\\"MFT\\\":2.7,\\\"OT\\\":478,\\\"MU\\\":200,\\\"YR\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":0,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":935.5,\\\"CostToAgent\\\":935.5,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":169.4915254237288,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"IntNetCommission\\\":0,\\\"IntCommissionValInPercentage\\\":50,\\\"IntCommission\\\":0,\\\"IntAgencyFixMarkUp\\\":110,\\\"IntTaxOnAgencyFixMarkUp\\\":19.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":50.308474576271195,\\\"PublishFare\\\":935.5,\\\"CostToCustomer\\\":935.5,\\\"BaseFareCal\\\":625.5,\\\"intCommisionEarnedForAgency\\\":310,\\\"CostToCompany\\\":625.5,\\\"intOfferedFare\\\":605.7,\\\"intPublishFare\\\":805.7,\\\"TripjackMarkup\\\":200,\\\"TripjackCommission\\\":0,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":0,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":935.5,\\\"CostToAgent\\\":935.5,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"436\\\",\\\"originAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Mumbai\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2022-08-30T13:55\\\",\\\"SegFlightNumber\\\":\\\"6E-168\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"T\\\",\\\"originAirportCode\\\":\\\"BOM\\\",\\\"originDepTime\\\":\\\"2022-08-30T11:35\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":140,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"11:35\\\",\\\"strArrivalDtTime\\\":\\\"13:55\\\",\\\"FlightDuration\\\":\\\"2h 20m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"5-3374271150_32BOMDEL6E168_241087522664731\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"BOM-DEL\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\\\",\\\"fcs\\\":{\\\"CRF\\\":50,\\\"CRFT\\\":9,\\\"ARF\\\":3000,\\\"ARFT\\\":150}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\\\",\\\"fcs\\\":{\\\"ACFT\\\":175,\\\"CCF\\\":50,\\\"CCFT\\\":9,\\\"ACF\\\":3500}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Paid Seat\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-08-29 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BOM\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"18676\\\",\\\"intDestinationCityId\\\":\\\"7701\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"436\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"9829015180\",\"leadEmail\":\"ajaykhatri5775@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"50\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"Ajay\",\"passenger-lastname-1\":\"Khatri\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Mumbai\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"18676\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"SelectMeals\":[\"\"],\"SelectBaggage\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"13985\",\"Salutation\":\"1\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"CountryCode\":\"91\",\"MobileNo\":\"9829015180\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[],\"_sessiondata\":{\"EmailId\":\"ajaykhatri5775@gmail.com\",\"UserSysId\":\"15506\",\"CustomerSysId\":\"214868\",\"AgencySysId\":\"13985\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"Chinmay\",\"LastName\":\"Khatri\",\"Password_cu\":\"\",\"AgencyName\":\"Trial company 1\",\"AgencyCode\":\"125771.221112416531E40\",\"ContactNo1\":\"9829015180\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"DDBA8401-2282-430F-AFFF-F34689BEE485\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":2,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"0\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"0\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":\"0\",\"paymentMode\":\"1\",\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CPAmountWithTax\":0,\"FlightBookingTicketArr\":{\"order\":{\"bookingId\":\"TJS108800327228\",\"amount\":605.7,\"markup\":200,\"deliveryInfo\":{\"emails\":[\"ajaykhatri5775@gmail.com\"],\"contacts\":[\"919829015180\"]},\"status\":\"SUCCESS\",\"createdOn\":\"2022-08-29T14:15:01.864\"},\"itemInfos\":{\"AIR\":{\"tripInfos\":[{\"sI\":[{\"id\":\"80930\",\"fD\":{\"aI\":{\"code\":\"6E\",\"name\":\"IndiGo\",\"isLcc\":true},\"fN\":\"168\",\"eT\":\"320\"},\"stops\":0,\"duration\":140,\"da\":{\"code\":\"BOM\",\"name\":\"Chhatrapati Shivaji\",\"cityCode\":\"BOM\",\"city\":\"Mumbai\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"aa\":{\"code\":\"DEL\",\"name\":\"Delhi Indira Gandhi Intl\",\"cityCode\":\"DEL\",\"city\":\"Delhi\",\"country\":\"India\",\"countryCode\":\"IN\",\"terminal\":\"Terminal 1\"},\"dt\":\"2022-08-30T11:35\",\"at\":\"2022-08-30T13:55\",\"iand\":false,\"isRs\":false,\"sN\":0}]}],\"travellerInfos\":[{\"pnrDetails\":{\"BOM-DEL\":\"TESTPNR\"},\"ti\":\"Mr\",\"pt\":\"ADULT\",\"fN\":\"Ajay\",\"lN\":\"Khatri\"}],\"totalPriceInfo\":{\"totalFareDetail\":{\"fC\":{\"TF\":805.7,\"BF\":100,\"IGST\":2.7,\"NF\":605.7,\"TAF\":705.7},\"afC\":{\"TAF\":{\"MF\":15,\"MU\":200,\"AGST\":10,\"YQ\":0,\"OT\":478,\"MFT\":2.7}}}}}},\"gstInfo\":[],\"status\":{\"success\":true,\"httpStatus\":200}}}','2022-08-29 14:14:13'),(443,'8e79f-13646-13f43-c8533','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-941\",\"keyIndex\":22,\"SegFlightNumberArr\":\"I5-941\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-8440593292_1BOMJAII5941_15758516059705\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-08-31T07:55\",\"LocalFromTime\":\"2022-08-31 07:55\",\"FromUTCTime\":\"2022-08-31T07:55\",\"LocalToTime\":\"2022-08-31 09:50\",\"ToUTCTime\":\"2022-08-31T09:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6966,\"PublishedFareTxt\":\"6,965\",\"ApiResultIndex\":\"22-16-8440593292_1BOMJAII5941_15758516059705\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"8e79f-13646-13f43-c8533\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5896,\"Tax\":901.99,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":298,\"CarrierMiscFee\":0,\"MUFee\":133.29,\"intPublishedFare\":6797.99,\"PublishedFare\":6966,\"PublishedFarePerPax\":6966,\"OfferedFare\":6594.68,\"CommissionEarned\":70.02,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.68,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-8440593292_1BOMJAII5941_15758516059705\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":56.33,\"apiMarkup\":112.96,\"IntCommission\":1.4,\"apiTaxOnMarkup\":20.33,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.4,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":901.99,\"BaseFareCal\":6651.01,\"BaseFare\":5896,\"CommissionEarned\":70.02,\"TDS\":-3.68,\"MF\":15,\"YQ\":0,\"AGST\":298,\"MFT\":2.7,\"OT\":453,\"MU\":133.29,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.33,\"apiMarkup\":112.96,\"IntCommission\":1.4,\"apiTaxOnMarkup\":20.33,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.4,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":112.96,\"apiTaxOnMarkup\":20.33,\"IntNetCommission\":70.02,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.4,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.33,\"PublishFare\":6965.37,\"CostToCustomer\":6965.37,\"BaseFareCal\":6651.01,\"intCommisionEarnedForAgency\":314.36,\"CostToCompany\":6651.01,\"intOfferedFare\":6594.68,\"intPublishFare\":6797.99,\"TripjackMarkup\":133.29,\"TripjackCommission\":70.02,\"TripjackTDS\":\"3.68\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"07O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-08-31T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-08-31T07:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"$$hashKey\":\"0N4\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]},{\"keyIndex\":23,\"FlightNumber\":\"I5-679\",\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-8440593292_1JAIBOMI5679_15758515903662\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-31T17:55\",\"LocalFromTime\":\"2022-08-31 17:55\",\"FromUTCTime\":\"2022-08-31T17:55\",\"LocalToTime\":\"2022-08-31 19:50\",\"ToUTCTime\":\"2022-08-31T19:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7005.27,\"PublishedFareTxt\":\"7,005\",\"ApiResultIndex\":\"22-16-8440593292_1JAIBOMI5679_15758515903662\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"8e79f-13646-13f43-c8533\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5623,\"Tax\":1211.71,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":284,\"CarrierMiscFee\":0,\"MUFee\":134.01,\"intPublishedFare\":6834.71,\"PublishedFare\":7006,\"PublishedFarePerPax\":7006,\"OfferedFare\":6633.92,\"CommissionEarned\":66.78,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.51,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-8440593292_1JAIBOMI5679_15758515903662\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":56.44,\"apiMarkup\":113.57,\"IntCommission\":1.34,\"apiTaxOnMarkup\":20.44,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.34,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1211.71,\"BaseFareCal\":6690.36,\"BaseFare\":5623,\"CommissionEarned\":66.78,\"TDS\":-3.51,\"MF\":15,\"YQ\":0,\"AGST\":284,\"MFT\":2.7,\"OT\":776,\"MU\":134.01,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.44,\"apiMarkup\":113.57,\"IntCommission\":1.34,\"apiTaxOnMarkup\":20.44,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.34,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":113.57,\"apiTaxOnMarkup\":20.44,\"IntNetCommission\":66.78,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.34,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.44,\"PublishFare\":7005.27,\"CostToCustomer\":7005.27,\"BaseFareCal\":6690.36,\"intCommisionEarnedForAgency\":314.9,\"CostToCompany\":6690.36,\"intOfferedFare\":6633.92,\"intPublishFare\":6834.71,\"TripjackMarkup\":134.01,\"TripjackCommission\":66.78,\"TripjackTDS\":\"3.51\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"0GA\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-31T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":null,\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-31T17:55\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":23,\"FlightNumber\":\"I5-679\",\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-8440593292_1JAIBOMI5679_15758515903662\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-08-31T17:55\",\"LocalFromTime\":\"2022-08-31 17:55\",\"FromUTCTime\":\"2022-08-31T17:55\",\"LocalToTime\":\"2022-08-31 19:50\",\"ToUTCTime\":\"2022-08-31T19:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7005.27,\"PublishedFareTxt\":\"7,005\",\"ApiResultIndex\":\"22-16-8440593292_1JAIBOMI5679_15758515903662\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"8e79f-13646-13f43-c8533\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5623,\"Tax\":1211.71,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":284,\"CarrierMiscFee\":0,\"MUFee\":134.01,\"intPublishedFare\":6834.71,\"PublishedFare\":7006,\"PublishedFarePerPax\":7006,\"OfferedFare\":6633.92,\"CommissionEarned\":66.78,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.51,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-8440593292_1JAIBOMI5679_15758515903662\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":56.44,\"apiMarkup\":113.57,\"IntCommission\":1.34,\"apiTaxOnMarkup\":20.44,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.34,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1211.71,\"BaseFareCal\":6690.36,\"BaseFare\":5623,\"CommissionEarned\":66.78,\"TDS\":-3.51,\"MF\":15,\"YQ\":0,\"AGST\":284,\"MFT\":2.7,\"OT\":776,\"MU\":134.01,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.44,\"apiMarkup\":113.57,\"IntCommission\":1.34,\"apiTaxOnMarkup\":20.44,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.34,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":113.57,\"apiTaxOnMarkup\":20.44,\"IntNetCommission\":66.78,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.34,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.44,\"PublishFare\":7005.27,\"CostToCustomer\":7005.27,\"BaseFareCal\":6690.36,\"intCommisionEarnedForAgency\":314.9,\"CostToCompany\":6690.36,\"intOfferedFare\":6633.92,\"intPublishFare\":6834.71,\"TripjackMarkup\":134.01,\"TripjackCommission\":66.78,\"TripjackTDS\":\"3.51\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"0GA\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-08-31T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":null,\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-08-31T17:55\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"IsCabinBaggage\":true,\"Baggage\":null,\"CabinBaggage\":null,\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}}','2022-08-29 21:07:11'),(444,'f01e7-c427e-d5969-7d9a5','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5025\",\"keyIndex\":126,\"SegFlightNumberArr\":\"6E-5025\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-9257063088_2BLRDEL6E5025_90058579755242\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"20:30\",\"ArrivalTime\":\"23:15\",\"TravelDate\":\"2022-09-24T20:30\",\"LocalFromTime\":\"2022-09-24 20:30\",\"FromUTCTime\":\"2022-09-24T20:30\",\"LocalToTime\":\"2022-09-24 23:15\",\"ToUTCTime\":\"2022-09-24T23:15\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sat, 24 Sep\",\"ArrivalDateTxt\":\"Sat, 24 Sep\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7500,\"PublishedFareTxt\":\"7,499\",\"ApiResultIndex\":\"5-9257063088_2BLRDEL6E5025_90058579754472\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"f01e7-c427e-d5969-7d9a5\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6100,\"Tax\":1449.73,\"YQTax\":0,\"OtherCharges\":1284,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":148.03,\"intPublishedFare\":7549.73,\"PublishedFare\":7323,\"PublishedFarePerPax\":7323,\"OfferedFare\":7169.9,\"CommissionEarned\":231.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-12.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-9257063088_2BLRDEL6E5025_90058579755242\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":22.58,\"apiMarkup\":125.45,\"IntCommission\":4.64,\"apiTaxOnMarkup\":22.58,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":4.64,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1449.73,\"BaseFareCal\":7192.48,\"BaseFare\":6100,\"CommissionEarned\":231.8,\"TDS\":-12.2,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1284,\"MU\":148.03,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":22.58,\"apiMarkup\":125.45,\"IntCommission\":4.64,\"apiTaxOnMarkup\":22.58,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":4.64,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":125.45,\"apiTaxOnMarkup\":22.58,\"IntNetCommission\":231.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":4.64,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":22.58,\"PublishFare\":7322.57,\"CostToCustomer\":7322.57,\"BaseFareCal\":7192.48,\"intCommisionEarnedForAgency\":130.09,\"CostToCompany\":7192.48,\"intOfferedFare\":7169.9,\"intPublishFare\":7549.73,\"TripjackMarkup\":148.03,\"TripjackCommission\":231.8,\"TripjackTDS\":\"12.2\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"06A\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-24T23:15\",\"SegFlightNumber\":\"6E-5025\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-24T20:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"20:30\",\"strArrivalDtTime\":\"23:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-30 11:06:48'),(448,'906a0-a203e-b4e8d-20ef4','{\"BookingData\":[{\"bookingId\":\"TJ105441369261\",\"FlightNumber\":\"G8-2607\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-09-03T15:45\",\"LocalFromTime\":\"2022-09-03 15:45\",\"FromUTCTime\":\"2022-09-03T15:45\",\"LocalToTime\":\"2022-09-03 17:45\",\"ToUTCTime\":\"2022-09-03T17:45\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3537.05,\"PublishedFareTxt\":\"3,537\",\"ApiResultIndex\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3200,\"Tax\":337.05,\"YQTax\":0,\"OtherCharges\":250,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":69.35,\"intPublishedFare\":3537.05,\"PublishedFare\":4067.47,\"OfferedFare\":3406.9,\"CommissionEarned\":60.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9401995382_0BOMJAIG82607_70825130179110\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITHOUT PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":100.58,\"apiMarkup\":58.77,\"IntCommission\":1.22,\"apiTaxOnMarkup\":10.58,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":1.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":337.05,\"BaseFareCal\":3507.48,\"BaseFare\":3200,\"CommissionEarned\":60.8,\"TDS\":-3.2,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":250,\"MU\":69.35,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":100.58,\"apiMarkup\":58.77,\"IntCommission\":1.22,\"apiTaxOnMarkup\":10.58,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":1.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":58.77,\"apiTaxOnMarkup\":10.58,\"IntNetCommission\":60.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.22,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":100.58,\"PublishFare\":4067.47,\"CostToCustomer\":4067.47,\"BaseFareCal\":3507.48,\"intCommisionEarnedForAgency\":559.99,\"CostToCompany\":3507.48,\"intOfferedFare\":3406.9,\"intPublishFare\":3537.05,\"TripjackMarkup\":69.35,\"TripjackCommission\":60.8,\"TripjackTDS\":\"3.2\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500}},\"Segments\":[{\"segmentid\":\"667\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-09-03T17:45\",\"SegFlightNumber\":\"G8-2607\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-03T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"906a0-a203e-b4e8d-20ef4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-03 12:00\",\"localToDateTime\":\"2022-09-07 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105441369261\",\"FlightNumber\":\"G8-2607\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"strTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-09-03T15:45\",\"LocalFromTime\":\"2022-09-03 15:45\",\"FromUTCTime\":\"2022-09-03T15:45\",\"LocalToTime\":\"2022-09-03 17:45\",\"ToUTCTime\":\"2022-09-03T17:45\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Sat, 03 Sep\",\"ArrivalDateTxt\":\"Sat, 03 Sep\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":7941.1,\"ApiResultIndex\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"906a0-a203e-b4e8d-20ef4\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6026,\"Tax\":1915.1,\"YQTax\":0,\"OtherCharges\":1576,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":155.7,\"intPublishedFare\":7941.1,\"PublishedFare\":8660.16,\"OfferedFare\":7676.27,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":700,\"GSTOnMarkUp\":126,\"CommEarned\":2.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":700,\"AddiTaxOnMarkup\":126,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1915.1,\"BaseFareCal\":7826.02,\"BaseFare\":6026,\"CommissionEarned\":109.13,\"TDS\":-5.74,\"MF\":30,\"YQ\":0,\"AGST\":148,\"MFT\":5.4,\"OT\":1576,\"MU\":155.7,\"YR\":0,\"AddiTaxOnMarkup\":126,\"AddiMarkup\":700,\"FixedMarkUp\":700,\"GSTOnMarkUp\":126,\"CommEarned\":2.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"667\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-09-03T17:45\",\"SegFlightNumber\":\"G8-2607\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-03T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],[{\"segmentid\":\"343\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-07T10:10\",\"SegFlightNumber\":\"G8-389\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-09-07T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-9401995382_0BOMJAIG82607_157452885623741\",\"localFromDateTime\":\"2022-09-03 15:45\",\"localToDateTime\":\"2022-09-03 17:45\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJ105441369261\",\"FlightNumber\":\"G8-389\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9401995382_0JAIBOMG8389_157454028663550\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:25\",\"ArrivalTime\":\"10:10\",\"TravelDate\":\"2022-09-07T08:25\",\"LocalFromTime\":\"2022-09-07 08:25\",\"FromUTCTime\":\"2022-09-07T08:25\",\"LocalToTime\":\"2022-09-07 10:10\",\"ToUTCTime\":\"2022-09-07T10:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 07 Sep\",\"ArrivalDateTxt\":\"Wed, 07 Sep\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4404.05,\"PublishedFareTxt\":\"4,404\",\"ApiResultIndex\":\"1-9401995382_0JAIBOMG8389_157454028663550\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2826,\"Tax\":1578.05,\"YQTax\":0,\"OtherCharges\":1326,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":148,\"CarrierMiscFee\":0,\"MUFee\":86.35,\"intPublishedFare\":4404.05,\"PublishedFare\":4592.69,\"OfferedFare\":4269.37,\"CommissionEarned\":48.33,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.54,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"11-9401995382_1JAIBOMG8389_70825132029579\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":49.17,\"apiMarkup\":73.18,\"IntCommission\":0.97,\"apiTaxOnMarkup\":13.17,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1578.05,\"BaseFareCal\":4318.54,\"BaseFare\":2826,\"CommissionEarned\":48.33,\"TDS\":-2.54,\"MF\":15,\"YQ\":0,\"AGST\":148,\"MFT\":2.7,\"OT\":1326,\"MU\":86.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.17,\"apiMarkup\":73.18,\"IntCommission\":0.97,\"apiTaxOnMarkup\":13.17,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":73.18,\"apiTaxOnMarkup\":13.17,\"IntNetCommission\":48.33,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.97,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.17,\"PublishFare\":4592.69,\"CostToCustomer\":4592.69,\"BaseFareCal\":4318.54,\"intCommisionEarnedForAgency\":274.14,\"CostToCompany\":4318.54,\"intOfferedFare\":4269.37,\"intPublishFare\":4404.05,\"TripjackMarkup\":86.35,\"TripjackCommission\":48.33,\"TripjackTDS\":\"2.54\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"343\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-07T10:10\",\"SegFlightNumber\":\"G8-389\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-09-07T08:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:25\",\"strArrivalDtTime\":\"10:10\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"343\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"906a0-a203e-b4e8d-20ef4\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-9401995382_0JAIBOMG8389_157454028663550\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-03 12:00\",\"localToDateTime\":\"2022-09-07 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"03\\/09\\/2022\",\"return_date\":\"07\\/09\\/2022\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/09\\/2022\",\"return_dates\":\"07\\/09\\/2022\",\"strDepatureDate\":\"2022-09-03\",\"strReturnDate\":\"2022-09-07\",\"SearchFlightTraceId\":\"906a0-a203e-b4e8d-20ef4\",\"from_city_\":\"2__BOM-JAI-BOM\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Jaipur+%28JAI%29&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&departure_date=03%2F09%2F2022&return_date=07%2F09%2F2022&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"AJAYKHATRI5775@GMAIL.COM\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"AJAY \",\"LastName\":\"KHATRI\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-30-13-28-45\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"51\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"439146\",\"TPSysId\":\"439147\",\"VersionId\":[\"96811\",\"96812\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"32557\",\"FareBreakdownid\":[\"359144\",\"359145\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"133\"],[\"134\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"51\",\"CustomerMemSysId\":[\"51\"],\"flight_booking_id\":[\"86\",\"87\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"86\",\"87\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":8660.16},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"214170\",\"TPSysId\":\"439147\",\"MasterTPSysId\":\"439146\",\"ProposalID\":\"439147\\/V1\",\"InvoiceDate\":\"2022-08-30\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-08-30\",\"PaymentDate\":\"2022-08-30\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":8408.16,\"InvoiceStatus\":true,\"TotalCGST\":126,\"TotalSGST\":126,\"TotalIGST\":252,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":8660.16,\"TotalDueAmount\":0,\"InvoiceValue\":8660.16,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-JAI-Go First G8-2607\",\"ItemQty\":1,\"ItemRates\":2887.4700000000003,\"Total\":2887.4700000000003,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4067.4700000000003,\"MarkupType\":\"\",\"Markup\":1000,\"TotalMarkup\":1000,\"SubTotal\":3887.4700000000003,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":180,\"SGST\":90,\"CGST\":90,\"IGST\":180,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"JAI-BOM-Go First G8-389\",\"ItemQty\":1,\"ItemRates\":4120.6900000000005,\"Total\":4120.6900000000005,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4592.6900000000005,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":4520.6900000000005,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-08-30 13:29:59'),(451,'7f281-8e915-1c6f3-0339f','{\"FlightBookingData\":[{\"bookingId\":\"TJ102141413386\",\"FlightNumber\":\"I5-583\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:55\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2022-08-31T10:55\",\"LocalFromTime\":\"2022-08-31 10:55\",\"FromUTCTime\":\"2022-08-31T10:55\",\"LocalToTime\":\"2022-08-31 12:05\",\"ToUTCTime\":\"2022-08-31T12:05\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2282.45,\"PublishedFareTxt\":\"2,282\",\"ApiResultIndex\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"IXB-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-72 hrs Rs 3,250 + Fare Difference __nls__ Before 72 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1762,\"Tax\":520.45,\"YQTax\":0,\"OtherCharges\":458,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":44.75,\"intPublishedFare\":2282.45,\"PublishedFare\":2497.95,\"OfferedFare\":2216.78,\"CommissionEarned\":20.92,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-7794426568_0IXBCCUI5583_4684994412647\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":42.83,\"apiMarkup\":37.92,\"IntCommission\":0.42,\"apiTaxOnMarkup\":6.83,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":520.45,\"BaseFareCal\":2259.61,\"BaseFare\":1762,\"CommissionEarned\":20.92,\"TDS\":-1.1,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":458,\"MU\":44.75,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":42.83,\"apiMarkup\":37.92,\"IntCommission\":0.42,\"apiTaxOnMarkup\":6.83,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":37.92,\"apiTaxOnMarkup\":6.83,\"IntNetCommission\":20.92,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.42,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.83,\"PublishFare\":2497.95,\"CostToCustomer\":2497.95,\"BaseFareCal\":2259.61,\"intCommisionEarnedForAgency\":238.34,\"CostToCompany\":2259.61,\"intOfferedFare\":2216.78,\"intPublishFare\":2282.45,\"TripjackMarkup\":44.75,\"TripjackCommission\":20.92,\"TripjackTDS\":\"1.1\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"159\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-31T12:05\",\"SegFlightNumber\":\"I5-583\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-31T10:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:55\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBLD\",\"Price\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"RPCB\",\"Price\":400,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"JMCB\",\"Price\":400,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"159\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"7f281-8e915-1c6f3-0339f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-08-31 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102141413386\",\"FlightNumber\":\"I5-583\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"strTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"10:55\",\"ArrivalTime\":\"12:05\",\"TravelDate\":\"2022-08-31T10:55\",\"LocalFromTime\":\"2022-08-31 10:55\",\"FromUTCTime\":\"2022-08-31T10:55\",\"LocalToTime\":\"2022-08-31 12:05\",\"ToUTCTime\":\"2022-08-31T12:05\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Wed, 31 Aug\",\"ArrivalDateTxt\":\"Wed, 31 Aug\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":2012,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2282.45,\"ApiResultIndex\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"7f281-8e915-1c6f3-0339f\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1762,\"Tax\":520.45,\"YQTax\":0,\"OtherCharges\":458,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":44.75,\"intPublishedFare\":2282.45,\"PublishedFare\":2497.95,\"OfferedFare\":2216.78,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":520.45,\"BaseFareCal\":2259.61,\"BaseFare\":1762,\"CommissionEarned\":20.92,\"TDS\":-1.1,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":458,\"MU\":44.75,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"159\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-08-31T12:05\",\"SegFlightNumber\":\"I5-583\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-08-31T10:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"10:55\",\"strArrivalDtTime\":\"12:05\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-7794426568_0IXBCCUI5583_86382543777410\",\"localFromDateTime\":\"2022-08-31 10:55\",\"localToDateTime\":\"2022-08-31 12:05\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":2012,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"88\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"53\",\"CustomerMemSysId\":[\"53\"],\"flight_booking_id\":[\"88\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"barnali.saha.09@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7908364416\",\"FirstName\":\"Bapi\",\"LastName\":\"Saha\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-08-30-21-30-39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"53\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"53\",\"CustomerMemSysId\":[\"53\"],\"flight_booking_customer\":[[\"135\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Bagdogra (IXB)\",\"mytrip_city_to\":\"Kolkata (CCU)\",\"source_city\":\"IXB\",\"ContSysId_1\":\"101\",\"destination_city\":\"CCU\",\"ContSysId\":\"101\",\"source\":\"Bagdogra, IN - Bagdogra Arpt (IXB), India\",\"destination\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"departure_date\":\"31\\/08\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Bagdogra Arpt (IXB)\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"IXB\",\"destinationCityAirportCode\":\"CCU\",\"from\":\"IXB\",\"to\":\"CCU\",\"sourceCityText\":\"Bagdogra, IN - Bagdogra Arpt (IXB), India\",\"destinationCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"sourceCityId\":2012,\"destinationCityId\":14323,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"31\\/08\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-08-31\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"7f281-8e915-1c6f3-0339f\",\"from_city_\":\"1__IXB-CCU\"},\"sessionData\":{\"CustomerSysId\":\"53\",\"CustomerMemSysId\":[\"53\"],\"flight_booking_id\":[\"88\"]},\"validateCoupon\":null,\"validateData\":null,\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"439642\",\"TPSysId\":\"439643\",\"VersionId\":[\"97031\"],\"CustomerSysId\":\"231930\",\"TrxId\":\"32600\",\"FareBreakdownid\":[\"359188\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"7908364416\",\"leadEmail\":\"barnali.saha.09@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"relation-1\":\"0\",\"passenger-firstname-1\":\"Bapi\",\"passenger-lastname-1\":\"Saha\",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"\",\"passenger-country-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"7f281-8e915-1c6f3-0339f\",\"countryCodeISO\":\"IN\"}}','2022-08-30 21:31:14'),(452,'fb9ee-67d9f-ad0e3-2c906','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-511\",\"keyIndex\":185,\"SegFlightNumberArr\":\"G8-511\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-9528803725_0BOMCCUG8511_55611772028528\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:35\",\"ArrivalTime\":\"11:10\",\"TravelDate\":\"2022-09-01T08:35\",\"LocalFromTime\":\"2022-09-01 08:35\",\"FromUTCTime\":\"2022-09-01T08:35\",\"LocalToTime\":\"2022-09-01 11:10\",\"ToUTCTime\":\"2022-09-01T11:10\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Thu, 01 Sep\",\"ArrivalDateTxt\":\"Thu, 01 Sep\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5217,\"PublishedFareTxt\":\"5,216\",\"ApiResultIndex\":\"11-9528803725_0BOMCCUG8511_55611772028528\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"fb9ee-67d9f-ad0e3-2c906\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4650,\"Tax\":417.05,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":99.35,\"intPublishedFare\":5067.05,\"PublishedFare\":5217,\"PublishedFarePerPax\":5217,\"OfferedFare\":4879.35,\"CommissionEarned\":88.35,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.65,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-9528803725_0BOMCCUG8511_55611772028528\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefit\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":51.16,\"apiMarkup\":84.19,\"IntCommission\":1.77,\"apiTaxOnMarkup\":15.16,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.77,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":417.05,\"BaseFareCal\":4930.51,\"BaseFare\":4650,\"CommissionEarned\":88.35,\"TDS\":-4.65,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":99.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.16,\"apiMarkup\":84.19,\"IntCommission\":1.77,\"apiTaxOnMarkup\":15.16,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.77,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":84.19,\"apiTaxOnMarkup\":15.16,\"IntNetCommission\":88.35,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.77,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.16,\"PublishFare\":5216.47,\"CostToCustomer\":5216.47,\"BaseFareCal\":4930.51,\"intCommisionEarnedForAgency\":285.96,\"CostToCompany\":4930.51,\"intOfferedFare\":4879.35,\"intPublishFare\":5067.05,\"TripjackMarkup\":99.35,\"TripjackCommission\":88.35,\"TripjackTDS\":\"4.65\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-01T11:10\",\"SegFlightNumber\":\"G8-511\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-01T08:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"08:35\",\"strArrivalDtTime\":\"11:10\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-31 01:57:25'),(454,'3a3e3-58767-476da-a6a7d','{\"FlightBookingData\":[{\"FlightNumber\":\"9I-625\",\"keyIndex\":0,\"SegFlightNumberArr\":\"9I-625\",\"AirlineName\":\"Alliance air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-5522372342_0BOMBHJ9I625_645653919729\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"06:15\",\"ArrivalTime\":\"08:10\",\"TravelDate\":\"2022-09-29T06:15\",\"LocalFromTime\":\"2022-09-29 06:15\",\"FromUTCTime\":\"2022-09-29T06:15\",\"LocalToTime\":\"2022-09-29 08:10\",\"ToUTCTime\":\"2022-09-29T08:10\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Thu, 29 Sep\",\"ArrivalDateTxt\":\"Thu, 29 Sep\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"3142\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7604,\"PublishedFareTxt\":\"7,604\",\"ApiResultIndex\":\"28-5522372342_0BOMBHJ9I625_645653919729\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3a3e3-58767-476da-a6a7d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15750,\"Tax\":1629.47,\"YQTax\":0,\"OtherCharges\":483,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":788,\"CarrierMiscFee\":0,\"MUFee\":340.77,\"intPublishedFare\":17379.47,\"PublishedFare\":16940,\"PublishedFarePerPax\":16940,\"OfferedFare\":16589.82,\"CommissionEarned\":448.88,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"28-5522372342_0BOMBHJ9I625_645653919729\",\"IsGSTRequired\":false,\"fareIdentifier\":\"VAL\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":51.98,\"apiMarkup\":288.79,\"IntCommission\":8.98,\"apiTaxOnMarkup\":51.98,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":8.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1629.47,\"BaseFareCal\":16641.8,\"BaseFare\":15750,\"CommissionEarned\":448.88,\"TDS\":-23.62,\"MF\":15,\"YQ\":0,\"AGST\":788,\"MFT\":2.7,\"OT\":483,\"MU\":340.77,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":51.98,\"apiMarkup\":288.79,\"IntCommission\":8.98,\"apiTaxOnMarkup\":51.98,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":8.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":288.79,\"apiTaxOnMarkup\":51.98,\"IntNetCommission\":448.88,\"IntCommissionValInPercentage\":2,\"IntCommission\":8.98,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.98,\"PublishFare\":16939.57,\"CostToCustomer\":16939.57,\"BaseFareCal\":16641.8,\"intCommisionEarnedForAgency\":297.77,\"CostToCompany\":16641.8,\"intOfferedFare\":16589.82,\"intPublishFare\":17379.47,\"TripjackMarkup\":340.77,\"TripjackCommission\":448.88,\"TripjackTDS\":\"23.62\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"021\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Rudra Mata Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bhuj\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BHJ\",\"destinationArrTime\":\"2022-09-29T08:10\",\"SegFlightNumber\":\"9I-625\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"H\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-29T06:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:15\",\"strArrivalDtTime\":\"08:10\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-08-31 11:04:26'),(455,'b4461-83154-50940-c92ea','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6798\",\"keyIndex\":68,\"SegFlightNumberArr\":\"6E-6798\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0869314742_0BLRIXR6E6798_4317921885358\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:45\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2022-10-09T17:45\",\"LocalFromTime\":\"2022-10-09 17:45\",\"FromUTCTime\":\"2022-10-09T17:45\",\"LocalToTime\":\"2022-10-09 20:15\",\"ToUTCTime\":\"2022-10-09T20:15\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":150,\"DepartureDateTxt\":\"Sun, 09 Oct\",\"ArrivalDateTxt\":\"Sun, 09 Oct\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"22562\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"IXR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":17311,\"PublishedFareTxt\":\"17,311\",\"ApiResultIndex\":\"5-0869314742_0BLRIXR6E6798_4317921884198\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b4461-83154-50940-c92ea\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14600,\"Tax\":3159.62,\"YQTax\":0,\"OtherCharges\":2776,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":348.22,\"intPublishedFare\":17759.62,\"PublishedFare\":17216,\"PublishedFarePerPax\":8608,\"OfferedFare\":16856.6,\"CommissionEarned\":554.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-29.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0869314742_0BLRIXR6E6798_4317921885358\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":53.12,\"apiMarkup\":295.1,\"IntCommission\":11.1,\"apiTaxOnMarkup\":53.12,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":11.1,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":3159.62,\"BaseFareCal\":16909.72,\"BaseFare\":14600,\"CommissionEarned\":554.8,\"TDS\":-29.2,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2776,\"MU\":348.22,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":53.12,\"apiMarkup\":295.1,\"IntCommission\":11.1,\"apiTaxOnMarkup\":53.12,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":11.1,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":295.1,\"apiTaxOnMarkup\":53.12,\"IntNetCommission\":554.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":11.1,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":53.12,\"PublishFare\":17215.92,\"CostToCustomer\":17215.92,\"BaseFareCal\":16909.72,\"intCommisionEarnedForAgency\":306.2,\"CostToCompany\":16909.72,\"intOfferedFare\":16856.6,\"intPublishFare\":17759.62,\"TripjackMarkup\":348.22,\"TripjackCommission\":554.8,\"TripjackTDS\":\"29.2\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"084\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Birsa Munda Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ranchi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXR\",\"destinationArrTime\":\"2022-10-09T20:15\",\"SegFlightNumber\":\"6E-6798\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-10-09T17:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"17:45\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-02 16:36:30'),(457,'6828e-cc923-14906-ccf2f','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6175\",\"keyIndex\":37,\"SegFlightNumberArr\":\"6E-6175, 6E-725\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2950848592_0IXBCCU6E6175CCUHYD6E725_6740416334739\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:55\",\"ArrivalTime\":\"22:10\",\"TravelDate\":\"2022-09-05T11:55\",\"LocalFromTime\":\"2022-09-05 11:55\",\"FromUTCTime\":\"2022-09-05T11:55\",\"LocalToTime\":\"2022-09-05 22:10\",\"ToUTCTime\":\"2022-09-05T22:10\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":400,\"LAYOVERDuration\":\"6h 40m\",\"FlyingMinutes\":615,\"DepartureDateTxt\":\"Mon, 05 Sep\",\"ArrivalDateTxt\":\"Mon, 05 Sep\",\"FlightDuration\":\"10h 15m\",\"SourcePlaceSysId\":\"2012\",\"DestPlaceSysId\":\"12538\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"HYD\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6690,\"PublishedFareTxt\":\"6,690\",\"ApiResultIndex\":\"5-2950848592_0IXBCCU6E6175CCUHYD6E725_6740416334229\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"6828e-cc923-14906-ccf2f\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5850,\"Tax\":658.31,\"YQTax\":0,\"OtherCharges\":513,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":127.61,\"intPublishedFare\":6508.31,\"PublishedFare\":6690,\"PublishedFarePerPax\":6690,\"OfferedFare\":6325.12,\"CommissionEarned\":55.58,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2950848592_0IXBCCU6E6175CCUHYD6E725_6740416334739\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":55.47,\"apiMarkup\":108.14,\"IntCommission\":1.11,\"apiTaxOnMarkup\":19.47,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":658.31,\"BaseFareCal\":6380.59,\"BaseFare\":5850,\"CommissionEarned\":55.58,\"TDS\":-2.92,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":513,\"MU\":127.61,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":55.47,\"apiMarkup\":108.14,\"IntCommission\":1.11,\"apiTaxOnMarkup\":19.47,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":108.14,\"apiTaxOnMarkup\":19.47,\"IntNetCommission\":55.58,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.11,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":55.47,\"PublishFare\":6689.84,\"CostToCustomer\":6689.84,\"BaseFareCal\":6380.59,\"intCommisionEarnedForAgency\":309.26,\"CostToCompany\":6380.59,\"intOfferedFare\":6325.12,\"intPublishFare\":6508.31,\"TripjackMarkup\":127.61,\"TripjackCommission\":55.58,\"TripjackTDS\":\"2.92\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-05T13:15\",\"SegFlightNumber\":\"6E-6175\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-09-05T11:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":400,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:55\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"6h 40m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"$$hashKey\":\"0BK\"},{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-09-05T22:10\",\"SegFlightNumber\":\"6E-725\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-05T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"22:10\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"$$hashKey\":\"0BL\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-03 11:42:23'),(458,'360e8-39d6a-76e12-1594e','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6418\",\"keyIndex\":140,\"SegFlightNumberArr\":\"6E-6418\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7188915644_0BOMPAT6E6418_12087880890845\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2022-09-30T17:55\",\"LocalFromTime\":\"2022-09-30 17:55\",\"FromUTCTime\":\"2022-09-30T17:55\",\"LocalToTime\":\"2022-09-30 20:15\",\"ToUTCTime\":\"2022-09-30T20:15\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 30 Sep\",\"ArrivalDateTxt\":\"Fri, 30 Sep\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3986,\"PublishedFareTxt\":\"3,985\",\"ApiResultIndex\":\"5-7188915644_0BOMPAT6E6418_12087880890075\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"360e8-39d6a-76e12-1594e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3050,\"Tax\":727.77,\"YQTax\":0,\"OtherCharges\":636,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":74.07,\"intPublishedFare\":3777.77,\"PublishedFare\":3986,\"PublishedFarePerPax\":3986,\"OfferedFare\":3674.72,\"CommissionEarned\":28.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.52,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7188915644_0BOMPAT6E6418_12087880890845\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":47.3,\"apiMarkup\":62.77,\"IntCommission\":0.58,\"apiTaxOnMarkup\":11.3,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":727.77,\"BaseFareCal\":3722.02,\"BaseFare\":3050,\"CommissionEarned\":28.98,\"TDS\":-1.52,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":636,\"MU\":74.07,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":47.3,\"apiMarkup\":62.77,\"IntCommission\":0.58,\"apiTaxOnMarkup\":11.3,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":62.77,\"apiTaxOnMarkup\":11.3,\"IntNetCommission\":28.98,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.58,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":47.3,\"PublishFare\":3985.37,\"CostToCustomer\":3985.37,\"BaseFareCal\":3722.02,\"intCommisionEarnedForAgency\":263.35,\"CostToCompany\":3722.02,\"intOfferedFare\":3674.72,\"intPublishFare\":3777.77,\"TripjackMarkup\":74.07,\"TripjackCommission\":28.98,\"TripjackTDS\":\"1.52\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-09-30T20:15\",\"SegFlightNumber\":\"6E-6418\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-30T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-03 19:15:40'),(459,'33baf-98f4b-f143a-49234','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-383\",\"keyIndex\":1,\"SegFlightNumberArr\":\"G8-383\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-7967129994_1BOMBLRG8383_5691435897930\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:10\",\"TravelDate\":\"2022-09-07T16:30\",\"LocalFromTime\":\"2022-09-07 16:30\",\"FromUTCTime\":\"2022-09-07T16:30\",\"LocalToTime\":\"2022-09-07 18:10\",\"ToUTCTime\":\"2022-09-07T18:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Wed, 07 Sep\",\"ArrivalDateTxt\":\"Wed, 07 Sep\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2221,\"PublishedFareTxt\":\"2,220\",\"ApiResultIndex\":\"1-7967129994_1BOMBLRG8383_5691435896850\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"33baf-98f4b-f143a-49234\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1371,\"Tax\":642.17,\"YQTax\":0,\"OtherCharges\":585,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":39.47,\"intPublishedFare\":2013.17,\"PublishedFare\":2221,\"PublishedFarePerPax\":2221,\"OfferedFare\":1944.39,\"CommissionEarned\":29.31,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.54,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-7967129994_1BOMBLRG8383_5691435897930\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":42.02,\"apiMarkup\":33.45,\"IntCommission\":0.59,\"apiTaxOnMarkup\":6.02,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":642.17,\"BaseFareCal\":1986.41,\"BaseFare\":1371,\"CommissionEarned\":29.31,\"TDS\":-1.54,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":585,\"MU\":39.47,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":42.02,\"apiMarkup\":33.45,\"IntCommission\":0.59,\"apiTaxOnMarkup\":6.02,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":33.45,\"apiTaxOnMarkup\":6.02,\"IntNetCommission\":29.31,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.59,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":42.02,\"PublishFare\":2220.45,\"CostToCustomer\":2220.45,\"BaseFareCal\":1986.41,\"intCommisionEarnedForAgency\":234.04,\"CostToCompany\":1986.41,\"intOfferedFare\":1944.39,\"intPublishFare\":2013.17,\"TripjackMarkup\":39.47,\"TripjackCommission\":29.31,\"TripjackTDS\":\"1.54\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"04O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-07T18:10\",\"SegFlightNumber\":\"G8-383\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-07T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:10\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-04 19:28:55'),(460,'d49b7-85477-a8f49-abced','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-993\",\"keyIndex\":52,\"SegFlightNumberArr\":\"6E-993\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6399992101_16BOMDEL6E993_2328946621665\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:35\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-09-12T14:35\",\"LocalFromTime\":\"2022-09-12 14:35\",\"FromUTCTime\":\"2022-09-12T14:35\",\"LocalToTime\":\"2022-09-12 16:35\",\"ToUTCTime\":\"2022-09-12T16:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Mon, 12 Sep\",\"ArrivalDateTxt\":\"Mon, 12 Sep\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4366,\"PublishedFareTxt\":\"4,366\",\"ApiResultIndex\":\"5-6399992101_16BOMDEL6E993_2328946621385\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d49b7-85477-a8f49-abced\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3409,\"Tax\":752.29,\"YQTax\":0,\"OtherCharges\":653,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":81.59,\"intPublishedFare\":4161.29,\"PublishedFare\":4366,\"PublishedFarePerPax\":4366,\"OfferedFare\":4047.31,\"CommissionEarned\":32.39,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.7,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6399992101_16BOMDEL6E993_2328946621665\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":48.45,\"apiMarkup\":69.14,\"IntCommission\":0.65,\"apiTaxOnMarkup\":12.45,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.65,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":752.29,\"BaseFareCal\":4095.76,\"BaseFare\":3409,\"CommissionEarned\":32.39,\"TDS\":-1.7,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":653,\"MU\":81.59,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.45,\"apiMarkup\":69.14,\"IntCommission\":0.65,\"apiTaxOnMarkup\":12.45,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.65,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":69.14,\"apiTaxOnMarkup\":12.45,\"IntNetCommission\":32.39,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.65,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.45,\"PublishFare\":4365.55,\"CostToCustomer\":4365.55,\"BaseFareCal\":4095.76,\"intCommisionEarnedForAgency\":269.79,\"CostToCompany\":4095.76,\"intOfferedFare\":4047.31,\"intPublishFare\":4161.29,\"TripjackMarkup\":81.59,\"TripjackCommission\":32.39,\"TripjackTDS\":\"1.7\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"0BD\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-12T16:35\",\"SegFlightNumber\":\"6E-993\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-12T14:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:35\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-05 11:27:17'),(461,'e79de-cec22-19f85-0c537','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":981,\"FlightNumber\":\"247\",\"SegFlightNumberArr\":\"IX-247\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"OrFlightNumber\":\"IX-247\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-11-26T15:15\",\"LocalFromTime\":\"2022-11-26 15:15\",\"FromUTCTime\":\"2022-11-26T15:15\",\"LocalToTime\":\"2022-11-26 17:05\",\"ToUTCTime\":\"2022-11-26T17:05\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Sat, 26 Nov\",\"ArrivalDateTxt\":\"Sat, 26 Nov\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e79de-cec22-19f85-0c537\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"},\"destination\":{\"FlightNumber\":\"248\",\"SegFlightNumberArr\":\"IX-248\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"DeFlightNumber\":\"IX-248\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"00:35\",\"TravelDate\":\"2022-12-01T19:55\",\"LocalFromTime\":\"2022-12-01 19:55\",\"FromUTCTime\":\"2022-12-01T19:55\",\"LocalToTime\":\"2022-12-02 00:35\",\"ToUTCTime\":\"2022-12-02T00:35\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 01 Dec\",\"ArrivalDateTxt\":\"Fri, 02 Dec\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e79de-cec22-19f85-0c537\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"},\"AirlineName\":\"AI Express\",\"PublishedFare\":55890.18,\"PublishedFareTxt\":\"55,890\",\"ApiResultIndex\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"apiTraceId\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18248.5,\"Tax\":37641.68,\"YQTax\":19271.36,\"OtherCharges\":16176.099999999999,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":1097.5,\"CarrierMiscFee\":0,\"MUFee\":990.52,\"intPublishedFare\":55890.18,\"PublishedFare\":55891,\"PublishedFarePerPax\":18631,\"OfferedFare\":54899.66,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":151.1,\"apiMarkup\":839.42,\"IntCommission\":0,\"apiTaxOnMarkup\":151.1,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":32268.74,\"BaseFareCal\":49677.82,\"BaseFare\":18248.5,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":19271.36,\"AGST\":980,\"MFT\":10.8,\"OT\":10956.06,\"MU\":990.52,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":151.1,\"apiMarkup\":839.42,\"IntCommission\":0,\"apiTaxOnMarkup\":151.1,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":5372.94,\"BaseFareCal\":5372.94,\"BaseFare\":0,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":117.5,\"OT\":5220.04,\"MFT\":5.4,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10 KG Included\",\"CabinBaggage\":[]}},\"IsMealIncludes\":false,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":839.42,\"apiTaxOnMarkup\":151.1,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":151.1,\"PublishFare\":55890.18,\"CostToCustomer\":55890.18,\"BaseFareCal\":55050.76,\"intCommisionEarnedForAgency\":839.42,\"CostToCompany\":55050.76,\"intOfferedFare\":54899.66,\"intPublishFare\":55890.18,\"TripjackMarkup\":990.52,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"023\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-26T17:05\",\"SegFlightNumber\":\"IX-247\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-26T15:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 KG Included\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-02T00:35\",\"SegFlightNumber\":\"IX-248\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-12-01T19:55\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 KG Included\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"00:35\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"DepartureTime\":\"19:55\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"e79de-cec22-19f85-0c537\",\"keyIndex\":981,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":981,\"FlightNumber\":\"247\",\"SegFlightNumberArr\":\"IX-247\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"OrFlightNumber\":\"IX-247\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-11-26T15:15\",\"LocalFromTime\":\"2022-11-26 15:15\",\"FromUTCTime\":\"2022-11-26T15:15\",\"LocalToTime\":\"2022-11-26 17:05\",\"ToUTCTime\":\"2022-11-26T17:05\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Sat, 26 Nov\",\"ArrivalDateTxt\":\"Sat, 26 Nov\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e79de-cec22-19f85-0c537\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"},\"destination\":{\"FlightNumber\":\"248\",\"SegFlightNumberArr\":\"IX-248\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"DeFlightNumber\":\"IX-248\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"AirlineSysId\":\"82\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"00:35\",\"TravelDate\":\"2022-12-01T19:55\",\"LocalFromTime\":\"2022-12-01 19:55\",\"FromUTCTime\":\"2022-12-01T19:55\",\"LocalToTime\":\"2022-12-02 00:35\",\"ToUTCTime\":\"2022-12-02T00:35\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 20kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 01 Dec\",\"ArrivalDateTxt\":\"Fri, 02 Dec\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e79de-cec22-19f85-0c537\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"},\"AirlineName\":\"AI Express\",\"PublishedFare\":55890.18,\"PublishedFareTxt\":\"55,890\",\"ApiResultIndex\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"apiTraceId\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18248.5,\"Tax\":37641.68,\"YQTax\":19271.36,\"OtherCharges\":16176.099999999999,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":1097.5,\"CarrierMiscFee\":0,\"MUFee\":990.52,\"intPublishedFare\":55890.18,\"PublishedFare\":55891,\"PublishedFarePerPax\":18631,\"OfferedFare\":54899.66,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"8-3707522663_0BOMDXBIX247DXBBOMIX248_5925201593022\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":151.1,\"apiMarkup\":839.42,\"IntCommission\":0,\"apiTaxOnMarkup\":151.1,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":32268.74,\"BaseFareCal\":49677.82,\"BaseFare\":18248.5,\"CommissionEarned\":0,\"TDS\":0,\"MF\":60,\"YQ\":19271.36,\"AGST\":980,\"MFT\":10.8,\"OT\":10956.06,\"MU\":990.52,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":151.1,\"apiMarkup\":839.42,\"IntCommission\":0,\"apiTaxOnMarkup\":151.1,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":5372.94,\"BaseFareCal\":5372.94,\"BaseFare\":0,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":117.5,\"OT\":5220.04,\"MFT\":5.4,\"MU\":0,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":0,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10 KG Included\",\"CabinBaggage\":[]}},\"IsMealIncludes\":false,\"Baggage\":\"20 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":839.42,\"apiTaxOnMarkup\":151.1,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":151.1,\"PublishFare\":55890.18,\"CostToCustomer\":55890.18,\"BaseFareCal\":55050.76,\"intCommisionEarnedForAgency\":839.42,\"CostToCompany\":55050.76,\"intOfferedFare\":54899.66,\"intPublishFare\":55890.18,\"TripjackMarkup\":990.52,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-26T17:05\",\"SegFlightNumber\":\"IX-247\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-26T15:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 KG Included\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-02T00:35\",\"SegFlightNumber\":\"IX-248\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 20kg)\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-12-01T19:55\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 KG Included\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"00:35\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"DepartureTime\":\"19:55\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"e79de-cec22-19f85-0c537\",\"keyIndex\":981,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"025\"}]}],\"FlightBookingDataInbound\":null}','2022-09-05 13:57:06'),(462,'5823e-17708-16d1d-4e2b4','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":404,\"FlightNumber\":\"1768\",\"SegFlightNumberArr\":\"6E-1768\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-1768\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-11-26T02:00\",\"LocalFromTime\":\"2022-11-26 02:00\",\"FromUTCTime\":\"2022-11-26T02:00\",\"LocalToTime\":\"2022-11-26 04:00\",\"ToUTCTime\":\"2022-11-26T04:00\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Sat, 26 Nov\",\"ArrivalDateTxt\":\"Sat, 26 Nov\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"62\",\"SegFlightNumberArr\":\"6E-62\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-62\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:25\",\"ArrivalTime\":\"01:55\",\"TravelDate\":\"2022-12-01T21:25\",\"LocalFromTime\":\"2022-12-01 21:25\",\"FromUTCTime\":\"2022-12-01T21:25\",\"LocalToTime\":\"2022-12-02 01:55\",\"ToUTCTime\":\"2022-12-02T01:55\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Thu, 01 Dec\",\"ArrivalDateTxt\":\"Fri, 02 Dec\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":51293.73,\"PublishedFareTxt\":\"51,294\",\"ApiResultIndex\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097197\",\"apiTraceId\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097837\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":39540,\"Tax\":11925.92,\"YQTax\":0,\"OtherCharges\":10846,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1009.12,\"intPublishedFare\":51465.92,\"PublishedFare\":51294,\"PublishedFarePerPax\":25647,\"OfferedFare\":49799.46,\"CommissionEarned\":657.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-34.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097837\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":225.93,\"apiMarkup\":855.19,\"IntCommission\":13.15,\"apiTaxOnMarkup\":153.93,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":13.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":11925.92,\"BaseFareCal\":50025.39,\"BaseFare\":39540,\"CommissionEarned\":657.34,\"TDS\":-34.6,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":10846,\"MU\":1009.12,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":225.93,\"apiMarkup\":855.19,\"IntCommission\":13.15,\"apiTaxOnMarkup\":153.93,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":13.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":855.19,\"apiTaxOnMarkup\":153.93,\"IntNetCommission\":657.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":13.15,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":225.93,\"PublishFare\":51293.73,\"CostToCustomer\":51293.73,\"BaseFareCal\":50025.39,\"intCommisionEarnedForAgency\":1268.33,\"CostToCompany\":50025.39,\"intOfferedFare\":49799.46,\"intPublishFare\":51465.92,\"TripjackMarkup\":1009.12,\"TripjackCommission\":657.34,\"TripjackTDS\":\"34.6\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400},\"$$hashKey\":\"01Z\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-26T04:00\",\"SegFlightNumber\":\"6E-1768\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-26T02:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-02T01:55\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-12-01T21:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"01:55\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"21:25\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"keyIndex\":404,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":402,\"FlightNumber\":\"1768\",\"SegFlightNumberArr\":\"6E-1768\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-1768\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3081500548_0BOMDXB6E1768DXBBOM6E1769_7366038086177\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-11-26T02:00\",\"LocalFromTime\":\"2022-11-26 02:00\",\"FromUTCTime\":\"2022-11-26T02:00\",\"LocalToTime\":\"2022-11-26 04:00\",\"ToUTCTime\":\"2022-11-26T04:00\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sat, 26 Nov\",\"ArrivalDateTxt\":\"Sat, 26 Nov\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"1769\",\"SegFlightNumberArr\":\"6E-1769\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-1769\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3081500548_0BOMDXB6E1768DXBBOM6E1769_7366038086177\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"09:35\",\"TravelDate\":\"2022-12-01T05:00\",\"LocalFromTime\":\"2022-12-01 05:00\",\"FromUTCTime\":\"2022-12-01T05:00\",\"LocalToTime\":\"2022-12-01 09:35\",\"ToUTCTime\":\"2022-12-01T09:35\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Thu, 01 Dec\",\"ArrivalDateTxt\":\"Thu, 01 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":51293.73,\"PublishedFareTxt\":\"51,294\",\"ApiResultIndex\":\"5-3081500548_0BOMDXB6E1768DXBBOM6E1769_7366038086177\",\"apiTraceId\":\"5-3081500548_0BOMDXB6E1768DXBBOM6E1769_7366038086177\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":39540,\"Tax\":11925.92,\"YQTax\":0,\"OtherCharges\":10846,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1009.12,\"intPublishedFare\":51465.92,\"PublishedFare\":51294,\"PublishedFarePerPax\":25647,\"OfferedFare\":49799.46,\"CommissionEarned\":657.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-34.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_0BOMDXB6E1768DXBBOM6E1769_7366038087567\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":225.93,\"apiMarkup\":855.19,\"IntCommission\":13.15,\"apiTaxOnMarkup\":153.93,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":13.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":11925.92,\"BaseFareCal\":50025.39,\"BaseFare\":39540,\"CommissionEarned\":657.34,\"TDS\":-34.6,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":10846,\"MU\":1009.12,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":225.93,\"apiMarkup\":855.19,\"IntCommission\":13.15,\"apiTaxOnMarkup\":153.93,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":13.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":855.19,\"apiTaxOnMarkup\":153.93,\"IntNetCommission\":657.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":13.15,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":225.93,\"PublishFare\":51293.73,\"CostToCustomer\":51293.73,\"BaseFareCal\":50025.39,\"intCommisionEarnedForAgency\":1268.33,\"CostToCompany\":50025.39,\"intOfferedFare\":49799.46,\"intPublishFare\":51465.92,\"TripjackMarkup\":1009.12,\"TripjackCommission\":657.34,\"TripjackTDS\":\"34.6\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":43540,\"Tax\":12107.92,\"YQTax\":0,\"OtherCharges\":10946,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1091.12,\"intPublishedFare\":55647.92,\"PublishedFare\":55411,\"PublishedFarePerPax\":27706,\"OfferedFare\":53832.96,\"CommissionEarned\":723.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-38.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_0BOMDXB6E1768DXBBOM6E1769_7366038087237\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":238.44,\"apiMarkup\":924.68,\"IntCommission\":14.48,\"apiTaxOnMarkup\":166.44,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":14.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":12107.92,\"BaseFareCal\":54071.4,\"BaseFare\":43540,\"CommissionEarned\":723.84,\"TDS\":-38.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":10946,\"MU\":1091.12,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":238.44,\"apiMarkup\":924.68,\"IntCommission\":14.48,\"apiTaxOnMarkup\":166.44,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":14.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":924.68,\"apiTaxOnMarkup\":166.44,\"IntNetCommission\":723.84,\"IntCommissionValInPercentage\":2,\"IntCommission\":14.48,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":238.44,\"PublishFare\":55410.56,\"CostToCustomer\":55410.56,\"BaseFareCal\":54071.4,\"intCommisionEarnedForAgency\":1339.15,\"CostToCompany\":54071.4,\"intOfferedFare\":53832.96,\"intPublishFare\":55647.92,\"TripjackMarkup\":1091.12,\"TripjackCommission\":723.84,\"TripjackTDS\":\"38.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":42340,\"Tax\":13605.76,\"YQTax\":0,\"OtherCharges\":12438,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1096.96,\"intPublishedFare\":55945.76,\"PublishedFare\":54172,\"PublishedFarePerPax\":27086,\"OfferedFare\":53038.76,\"CommissionEarned\":1810.04,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-95.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_0BOMDXB6E1768DXBBOM6E1769_7366038086177\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":167.33,\"apiMarkup\":929.63,\"IntCommission\":36.2,\"apiTaxOnMarkup\":167.33,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":36.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":13605.76,\"BaseFareCal\":53206.09,\"BaseFare\":42340,\"CommissionEarned\":1810.04,\"TDS\":-95.26,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12438,\"MU\":1096.96,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":167.33,\"apiMarkup\":929.63,\"IntCommission\":36.2,\"apiTaxOnMarkup\":167.33,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":36.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":929.63,\"apiTaxOnMarkup\":167.33,\"IntNetCommission\":1810.04,\"IntCommissionValInPercentage\":2,\"IntCommission\":36.2,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":167.33,\"PublishFare\":54171.92,\"CostToCustomer\":54171.92,\"BaseFareCal\":53206.09,\"intCommisionEarnedForAgency\":965.83,\"CostToCompany\":53206.09,\"intOfferedFare\":53038.76,\"intPublishFare\":55945.76,\"TripjackMarkup\":1096.96,\"TripjackCommission\":1810.04,\"TripjackTDS\":\"95.26\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":60140,\"Tax\":12699,\"YQTax\":0,\"OtherCharges\":11200,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1428.2,\"intPublishedFare\":72839,\"PublishedFare\":72332,\"PublishedFarePerPax\":36166,\"OfferedFare\":70410.98,\"CommissionEarned\":999.82,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-52.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_0BOMDXB6E1768DXBBOM6E1769_7366038087967\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":289.86,\"apiMarkup\":1210.34,\"IntCommission\":20,\"apiTaxOnMarkup\":217.86,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":20,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":12699,\"BaseFareCal\":70700.84,\"BaseFare\":60140,\"CommissionEarned\":999.82,\"TDS\":-52.62,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":11200,\"MU\":1428.2,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":289.86,\"apiMarkup\":1210.34,\"IntCommission\":20,\"apiTaxOnMarkup\":217.86,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":20,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":1210.34,\"apiTaxOnMarkup\":217.86,\"IntNetCommission\":999.82,\"IntCommissionValInPercentage\":2,\"IntCommission\":20,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":289.86,\"PublishFare\":72331.18,\"CostToCustomer\":72331.18,\"BaseFareCal\":70700.84,\"intCommisionEarnedForAgency\":1630.34,\"CostToCompany\":70700.84,\"intOfferedFare\":70410.98,\"intPublishFare\":72839,\"TripjackMarkup\":1428.2,\"TripjackCommission\":999.82,\"TripjackTDS\":\"52.62\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-26T04:00\",\"SegFlightNumber\":\"6E-1768\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-26T02:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-01T09:35\",\"SegFlightNumber\":\"6E-1769\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-12-01T05:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"05:00\",\"strArrivalDtTime\":\"09:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"05:00\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"keyIndex\":402,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"027\"},{\"origin\":{\"keyIndex\":403,\"FlightNumber\":\"1768\",\"SegFlightNumberArr\":\"6E-1768\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-1768\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3081500548_1BOMDXB6E1768DXBBOM6E84_7366038092687\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-11-26T02:00\",\"LocalFromTime\":\"2022-11-26 02:00\",\"FromUTCTime\":\"2022-11-26T02:00\",\"LocalToTime\":\"2022-11-26 04:00\",\"ToUTCTime\":\"2022-11-26T04:00\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Sat, 26 Nov\",\"ArrivalDateTxt\":\"Sat, 26 Nov\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"84\",\"SegFlightNumberArr\":\"6E-84\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-84\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3081500548_1BOMDXB6E1768DXBBOM6E84_7366038092687\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:20\",\"ArrivalTime\":\"22:50\",\"TravelDate\":\"2022-12-01T18:20\",\"LocalFromTime\":\"2022-12-01 18:20\",\"FromUTCTime\":\"2022-12-01T18:20\",\"LocalToTime\":\"2022-12-01 22:50\",\"ToUTCTime\":\"2022-12-01T22:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Thu, 01 Dec\",\"ArrivalDateTxt\":\"Thu, 01 Dec\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":51293.73,\"PublishedFareTxt\":\"51,294\",\"ApiResultIndex\":\"5-3081500548_1BOMDXB6E1768DXBBOM6E84_7366038092687\",\"apiTraceId\":\"5-3081500548_1BOMDXB6E1768DXBBOM6E84_7366038092687\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":39540,\"Tax\":11925.92,\"YQTax\":0,\"OtherCharges\":10846,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1009.12,\"intPublishedFare\":51465.92,\"PublishedFare\":51294,\"PublishedFarePerPax\":25647,\"OfferedFare\":49799.46,\"CommissionEarned\":657.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-34.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_1BOMDXB6E1768DXBBOM6E84_7366038093317\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":225.93,\"apiMarkup\":855.19,\"IntCommission\":13.15,\"apiTaxOnMarkup\":153.93,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":13.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":11925.92,\"BaseFareCal\":50025.39,\"BaseFare\":39540,\"CommissionEarned\":657.34,\"TDS\":-34.6,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":10846,\"MU\":1009.12,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":225.93,\"apiMarkup\":855.19,\"IntCommission\":13.15,\"apiTaxOnMarkup\":153.93,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":13.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":855.19,\"apiTaxOnMarkup\":153.93,\"IntNetCommission\":657.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":13.15,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":225.93,\"PublishFare\":51293.73,\"CostToCustomer\":51293.73,\"BaseFareCal\":50025.39,\"intCommisionEarnedForAgency\":1268.33,\"CostToCompany\":50025.39,\"intOfferedFare\":49799.46,\"intPublishFare\":51465.92,\"TripjackMarkup\":1009.12,\"TripjackCommission\":657.34,\"TripjackTDS\":\"34.6\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":43540,\"Tax\":12107.92,\"YQTax\":0,\"OtherCharges\":10946,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1091.12,\"intPublishedFare\":55647.92,\"PublishedFare\":55411,\"PublishedFarePerPax\":27706,\"OfferedFare\":53832.96,\"CommissionEarned\":723.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-38.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_1BOMDXB6E1768DXBBOM6E84_7366038093007\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":238.44,\"apiMarkup\":924.68,\"IntCommission\":14.48,\"apiTaxOnMarkup\":166.44,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":14.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":12107.92,\"BaseFareCal\":54071.4,\"BaseFare\":43540,\"CommissionEarned\":723.84,\"TDS\":-38.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":10946,\"MU\":1091.12,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":238.44,\"apiMarkup\":924.68,\"IntCommission\":14.48,\"apiTaxOnMarkup\":166.44,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":14.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":924.68,\"apiTaxOnMarkup\":166.44,\"IntNetCommission\":723.84,\"IntCommissionValInPercentage\":2,\"IntCommission\":14.48,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":238.44,\"PublishFare\":55410.56,\"CostToCustomer\":55410.56,\"BaseFareCal\":54071.4,\"intCommisionEarnedForAgency\":1339.15,\"CostToCompany\":54071.4,\"intOfferedFare\":53832.96,\"intPublishFare\":55647.92,\"TripjackMarkup\":1091.12,\"TripjackCommission\":723.84,\"TripjackTDS\":\"38.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":42340,\"Tax\":13605.76,\"YQTax\":0,\"OtherCharges\":12438,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1096.96,\"intPublishedFare\":55945.76,\"PublishedFare\":54172,\"PublishedFarePerPax\":27086,\"OfferedFare\":53038.76,\"CommissionEarned\":1810.04,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-95.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_1BOMDXB6E1768DXBBOM6E84_7366038092687\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":167.33,\"apiMarkup\":929.63,\"IntCommission\":36.2,\"apiTaxOnMarkup\":167.33,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":36.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":13605.76,\"BaseFareCal\":53206.09,\"BaseFare\":42340,\"CommissionEarned\":1810.04,\"TDS\":-95.26,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12438,\"MU\":1096.96,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":167.33,\"apiMarkup\":929.63,\"IntCommission\":36.2,\"apiTaxOnMarkup\":167.33,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":36.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":929.63,\"apiTaxOnMarkup\":167.33,\"IntNetCommission\":1810.04,\"IntCommissionValInPercentage\":2,\"IntCommission\":36.2,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":167.33,\"PublishFare\":54171.92,\"CostToCustomer\":54171.92,\"BaseFareCal\":53206.09,\"intCommisionEarnedForAgency\":965.83,\"CostToCompany\":53206.09,\"intOfferedFare\":53038.76,\"intPublishFare\":55945.76,\"TripjackMarkup\":1096.96,\"TripjackCommission\":1810.04,\"TripjackTDS\":\"95.26\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":60140,\"Tax\":12699,\"YQTax\":0,\"OtherCharges\":11200,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1428.2,\"intPublishedFare\":72839,\"PublishedFare\":72332,\"PublishedFarePerPax\":36166,\"OfferedFare\":70410.98,\"CommissionEarned\":999.82,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-52.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_1BOMDXB6E1768DXBBOM6E84_7366038093637\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":289.86,\"apiMarkup\":1210.34,\"IntCommission\":20,\"apiTaxOnMarkup\":217.86,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":20,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":12699,\"BaseFareCal\":70700.84,\"BaseFare\":60140,\"CommissionEarned\":999.82,\"TDS\":-52.62,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":11200,\"MU\":1428.2,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":289.86,\"apiMarkup\":1210.34,\"IntCommission\":20,\"apiTaxOnMarkup\":217.86,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":20,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":1210.34,\"apiTaxOnMarkup\":217.86,\"IntNetCommission\":999.82,\"IntCommissionValInPercentage\":2,\"IntCommission\":20,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":289.86,\"PublishFare\":72331.18,\"CostToCustomer\":72331.18,\"BaseFareCal\":70700.84,\"intCommisionEarnedForAgency\":1630.34,\"CostToCompany\":70700.84,\"intOfferedFare\":70410.98,\"intPublishFare\":72839,\"TripjackMarkup\":1428.2,\"TripjackCommission\":999.82,\"TripjackTDS\":\"52.62\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-26T04:00\",\"SegFlightNumber\":\"6E-1768\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-26T02:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-01T22:50\",\"SegFlightNumber\":\"6E-84\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-12-01T18:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"18:20\",\"strArrivalDtTime\":\"22:50\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"18:20\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"keyIndex\":403,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"028\"},{\"origin\":{\"keyIndex\":404,\"FlightNumber\":\"1768\",\"SegFlightNumberArr\":\"6E-1768\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-1768\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:00\",\"ArrivalTime\":\"04:00\",\"TravelDate\":\"2022-11-26T02:00\",\"LocalFromTime\":\"2022-11-26 02:00\",\"FromUTCTime\":\"2022-11-26T02:00\",\"LocalToTime\":\"2022-11-26 04:00\",\"ToUTCTime\":\"2022-11-26T04:00\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Sat, 26 Nov\",\"ArrivalDateTxt\":\"Sat, 26 Nov\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"62\",\"SegFlightNumberArr\":\"6E-62\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-62\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097197\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"21:25\",\"ArrivalTime\":\"01:55\",\"TravelDate\":\"2022-12-01T21:25\",\"LocalFromTime\":\"2022-12-01 21:25\",\"FromUTCTime\":\"2022-12-01T21:25\",\"LocalToTime\":\"2022-12-02 01:55\",\"ToUTCTime\":\"2022-12-02T01:55\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Thu, 01 Dec\",\"ArrivalDateTxt\":\"Fri, 02 Dec\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":51293.73,\"PublishedFareTxt\":\"51,294\",\"ApiResultIndex\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097197\",\"apiTraceId\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097197\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":39540,\"Tax\":11925.92,\"YQTax\":0,\"OtherCharges\":10846,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1009.12,\"intPublishedFare\":51465.92,\"PublishedFare\":51294,\"PublishedFarePerPax\":25647,\"OfferedFare\":49799.46,\"CommissionEarned\":657.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-34.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097837\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":225.93,\"apiMarkup\":855.19,\"IntCommission\":13.15,\"apiTaxOnMarkup\":153.93,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":13.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":11925.92,\"BaseFareCal\":50025.39,\"BaseFare\":39540,\"CommissionEarned\":657.34,\"TDS\":-34.6,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":10846,\"MU\":1009.12,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":225.93,\"apiMarkup\":855.19,\"IntCommission\":13.15,\"apiTaxOnMarkup\":153.93,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":13.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":855.19,\"apiTaxOnMarkup\":153.93,\"IntNetCommission\":657.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":13.15,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":225.93,\"PublishFare\":51293.73,\"CostToCustomer\":51293.73,\"BaseFareCal\":50025.39,\"intCommisionEarnedForAgency\":1268.33,\"CostToCompany\":50025.39,\"intOfferedFare\":49799.46,\"intPublishFare\":51465.92,\"TripjackMarkup\":1009.12,\"TripjackCommission\":657.34,\"TripjackTDS\":\"34.6\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":43540,\"Tax\":12107.92,\"YQTax\":0,\"OtherCharges\":10946,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1091.12,\"intPublishedFare\":55647.92,\"PublishedFare\":55411,\"PublishedFarePerPax\":27706,\"OfferedFare\":53832.96,\"CommissionEarned\":723.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-38.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097407\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":238.44,\"apiMarkup\":924.68,\"IntCommission\":14.48,\"apiTaxOnMarkup\":166.44,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":14.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":12107.92,\"BaseFareCal\":54071.4,\"BaseFare\":43540,\"CommissionEarned\":723.84,\"TDS\":-38.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":10946,\"MU\":1091.12,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":238.44,\"apiMarkup\":924.68,\"IntCommission\":14.48,\"apiTaxOnMarkup\":166.44,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":14.48,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":924.68,\"apiTaxOnMarkup\":166.44,\"IntNetCommission\":723.84,\"IntCommissionValInPercentage\":2,\"IntCommission\":14.48,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":238.44,\"PublishFare\":55410.56,\"CostToCustomer\":55410.56,\"BaseFareCal\":54071.4,\"intCommisionEarnedForAgency\":1339.15,\"CostToCompany\":54071.4,\"intOfferedFare\":53832.96,\"intPublishFare\":55647.92,\"TripjackMarkup\":1091.12,\"TripjackCommission\":723.84,\"TripjackTDS\":\"38.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":42340,\"Tax\":13605.76,\"YQTax\":0,\"OtherCharges\":12438,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1096.96,\"intPublishedFare\":55945.76,\"PublishedFare\":54172,\"PublishedFarePerPax\":27086,\"OfferedFare\":53038.76,\"CommissionEarned\":1810.04,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-95.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038097197\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":167.33,\"apiMarkup\":929.63,\"IntCommission\":36.2,\"apiTaxOnMarkup\":167.33,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":36.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":13605.76,\"BaseFareCal\":53206.09,\"BaseFare\":42340,\"CommissionEarned\":1810.04,\"TDS\":-95.26,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12438,\"MU\":1096.96,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":167.33,\"apiMarkup\":929.63,\"IntCommission\":36.2,\"apiTaxOnMarkup\":167.33,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":36.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":929.63,\"apiTaxOnMarkup\":167.33,\"IntNetCommission\":1810.04,\"IntCommissionValInPercentage\":2,\"IntCommission\":36.2,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":167.33,\"PublishFare\":54171.92,\"CostToCustomer\":54171.92,\"BaseFareCal\":53206.09,\"intCommisionEarnedForAgency\":965.83,\"CostToCompany\":53206.09,\"intOfferedFare\":53038.76,\"intPublishFare\":55945.76,\"TripjackMarkup\":1096.96,\"TripjackCommission\":1810.04,\"TripjackTDS\":\"95.26\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":60140,\"Tax\":12699,\"YQTax\":0,\"OtherCharges\":11200,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1428.2,\"intPublishedFare\":72839,\"PublishedFare\":72332,\"PublishedFarePerPax\":36166,\"OfferedFare\":70410.98,\"CommissionEarned\":999.82,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-52.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3081500548_2BOMDXB6E1768DXBBOM6E62_7366038098257\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":3,\"intTotalGST\":289.86,\"apiMarkup\":1210.34,\"IntCommission\":20,\"apiTaxOnMarkup\":217.86,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":20,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":12699,\"BaseFareCal\":70700.84,\"BaseFare\":60140,\"CommissionEarned\":999.82,\"TDS\":-52.62,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":11200,\"MU\":1428.2,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":289.86,\"apiMarkup\":1210.34,\"IntCommission\":20,\"apiTaxOnMarkup\":217.86,\"FixedMarkUp\":400,\"GSTOnMarkUp\":72,\"CommEarned\":20,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":1210.34,\"apiTaxOnMarkup\":217.86,\"IntNetCommission\":999.82,\"IntCommissionValInPercentage\":2,\"IntCommission\":20,\"IntAgencyFixMarkUp\":400,\"IntTaxOnAgencyFixMarkUp\":72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":289.86,\"PublishFare\":72331.18,\"CostToCustomer\":72331.18,\"BaseFareCal\":70700.84,\"intCommisionEarnedForAgency\":1630.34,\"CostToCompany\":70700.84,\"intOfferedFare\":70410.98,\"intPublishFare\":72839,\"TripjackMarkup\":1428.2,\"TripjackCommission\":999.82,\"TripjackTDS\":\"52.62\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"IntAdddimarkup\":400}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-26T04:00\",\"SegFlightNumber\":\"6E-1768\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-26T02:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:00\",\"strArrivalDtTime\":\"04:00\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-02T01:55\",\"SegFlightNumber\":\"6E-62\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-12-01T21:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"21:25\",\"strArrivalDtTime\":\"01:55\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"21:25\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"5823e-17708-16d1d-4e2b4\",\"keyIndex\":404,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"029\"}]},{\"bookingId\":\"TJ112741868088\",\"FlightNumber\":\"IX-248\",\"AirlineName\":\"AI Express\",\"AirlineCode\":\"IX\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"82\",\"DepartureTime\":\"19:55\",\"ArrivalTime\":\"00:35\",\"TravelDate\":\"2022-12-01T19:55\",\"LocalFromTime\":\"2022-12-01 19:55\",\"FromUTCTime\":\"2022-12-01T19:55\",\"LocalToTime\":\"2022-12-02 00:35\",\"ToUTCTime\":\"2022-12-02T00:35\",\"IsDirect\":0,\"FareClass\":\"Express VALUE (FBA 30Kg)\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Thu, 01 Dec\",\"ArrivalDateTxt\":\"Fri, 02 Dec\",\"FlightDuration\":\"4h 40m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":8219,\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":13,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be Refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"+ Diff in Fare if any __nls__Changes permitted 26 Hrs before scheduled departure __nls__0hrs-26hrs Changes not permitted__nls__ Within 26-96 hrs Rs 3,000 + Difference in Fare if any__nls__ Before 96 hrs Rs 2,500 + Difference in Fare if any\",\"fcs\":{\"CRFT\":9,\"ARF\":3000,\"CRF\":50,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":4500,\"additionalFee\":100,\"policyInfo\":\"__nls__Cancellation permitted 26 Hrs before scheduled departure __nls__0hrs-26hrs No Refund__nls__ Within 26-96 hrs Rs 4,500 + Convenience Fee per Guest per Segment__nls__ Before 96 hrs Rs 4,000 + Convenience Fee per Guest per Segment__nls____bs__Please Note: Fare rules are subject to change without any notice__nls__ (Express Repatriation flights are Non Refundable)\",\"fcs\":{\"CCF\":100,\"ACF\":4500,\"ACFT\":225,\"CCFT\":18}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"820\",\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-02T00:35\",\"SegFlightNumber\":\"IX-248\",\"AirlineCode\":\"IX\",\"AirlineName\":\"AI Express\",\"FareClass\":\"Express VALUE (FBA 30Kg)\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-12-01T19:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 KG Included\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":13,\"strDepartureDtTime\":\"19:55\",\"strArrivalDtTime\":\"00:35\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/IX.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"BH05\",\"Price\":1800,\"Weight\":\"05 KG EXTRA BAGGAGE -INTO INDIA\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"BH10\",\"Price\":3600,\"Weight\":\"10 KG EXTRA BAGGAGE -INTO INDIA\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML01\",\"Price\":300,\"Description\":\"VEG BREAKFAST -TOMATO RAWA UPMA\\/MINI PEPPER VADA WITH SAMBAR, TOMATO CHUTNEY &CUT FRUITS\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML03\",\"Price\":350,\"Description\":\"NON VEG  BREAKFAST-HOME STYLE VEGETABLE OMELETTE WITH CHICKEN SAUSAGE LYONNAISE, POTATO WEDGES ,CROISSANT WITH BUTTER CHIPLET & CUT FRUITS\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML04\",\"Price\":350,\"Description\":\"VEG LUNCH\\/DINNER-CHINESE FRIED RICE WITH CAULIFLOWER MANCHURIAN & FRESH CHOPPED SALAD, CHILLI VINEGAR AND YUMMY CHOCOLATE BROWNIE\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML05\",\"Price\":350,\"Description\":\"VEG LUNCH\\/DINNER-BUTTER PANEER , ALOO GOBI WITH  PARATHA & JEERA RICE WITH FRESHLY CHOPPED SALAD &GULAB JAMUN\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML18\",\"Price\":350,\"Description\":\"ALL TIME FAVOURITE NON VEG-TANDOORI CHICKEN TIKKA IN WHITE LONG ROLL\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML21\",\"Price\":350,\"Description\":\"KIDS MEAL - CHICKEN NUGGETS WITH POTATO SMILEYS\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML26\",\"Price\":350,\"Description\":\"PIZZA VEG - CORN, OLIVES, ONION, BELL PEPPER FINISHED WITH CHEESE\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML22\",\"Price\":350,\"Description\":\"JAIN MEAL - PENNE ARRABIATA  WITH BREAD ROLLS AND CHOCOLATE BROWNIE\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML25\",\"Price\":400,\"Description\":\"PIZZA NOV VEG - CHICKEN, OLIVES, ONION, BELL PEPPER FINISHED WITH CHEESE\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML08\",\"Price\":450,\"Description\":\"NON VEG LUNCH\\/DINNER-CHINESE FRIED RICE WITH CHILLI CHICKEN  & FRESH CHOPPED SALAD, CHILLI VINEGAR AND YUMMY CHOCOLATE BROWNIE\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML07\",\"Price\":500,\"Description\":\"NON VEG LUNCH\\/DINNER-CHEF\\u2019S SPECIAL CHICKEN BIRYANI FINISHED WITH EGG & FRIED ONIONS WITH RAITA & PICKLE AND YUMMY GULAB JAMUN\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML17\",\"Price\":500,\"Description\":\"NON VEG LUNCH\\/DINNER-CHEF\'S SPECIAL MUTTON BIRIYANI WITH RAITA AND PICKLE AND GULAB JAMUN\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML20\",\"Price\":500,\"Description\":\"LUNCH \\/DINNER NORTH INDIAN NON VEG - MURGH TIKKA MASALA SERVED WITH LACCHA PARATHA & CHOCOLATE BROWNIE\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML23\",\"Price\":500,\"Description\":\"DIABETIC MEAL - CHICKEN PICCATA FINISHED IN MUSHROOM SAUCE WITH BUTTERED VEGETABLES AND CUT FRUITS\"},{\"Currency\":\"INR\",\"key\":\"820\",\"Code\":\"ML24\",\"Price\":500,\"Description\":\"GLUTEN FREE MEAL - SHISH TAOUK (CHICKEN) WITH GRILLED VEGETABLES, BIRIYANI RICE  & GARLIC SAUCE\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"e79de-cec22-19f85-0c537\",\"ICSourceSysId\":7,\"IsPassMandatory\":true,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-26 12:00\",\"localToDateTime\":\"2022-12-01 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DXB\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":8219,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"FlightBookingDataInbound\":null}','2022-09-05 14:03:48'),(463,'c2593-8a04b-07c34-6755d','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6965\",\"keyIndex\":86,\"SegFlightNumberArr\":\"6E-6965\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7241244365_8DIBBOM6E6965_10211433327913\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-09-06T13:10\",\"LocalFromTime\":\"2022-09-06 13:10\",\"FromUTCTime\":\"2022-09-06T13:10\",\"LocalToTime\":\"2022-09-06 18:20\",\"ToUTCTime\":\"2022-09-06T18:20\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Tue, 06 Sep\",\"ArrivalDateTxt\":\"Tue, 06 Sep\",\"FlightDuration\":\"5h 10m\",\"SourcePlaceSysId\":\"7852\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DIB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":20406,\"PublishedFareTxt\":\"20,405\",\"ApiResultIndex\":\"5-7241244365_8DIBBOM6E6965_10211433327513\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"c2593-8a04b-07c34-6755d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":19072,\"Tax\":2043.42,\"YQTax\":0,\"OtherCharges\":1594,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":414.02,\"intPublishedFare\":21115.42,\"PublishedFare\":20406,\"PublishedFarePerPax\":10203,\"OfferedFare\":19976.66,\"CommissionEarned\":724.74,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-38.14,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7241244365_8DIBBOM6E6965_10211433327913\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":63.16,\"apiMarkup\":350.86,\"IntCommission\":14.49,\"apiTaxOnMarkup\":63.16,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":14.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2043.42,\"BaseFareCal\":20039.82,\"BaseFare\":19072,\"CommissionEarned\":724.74,\"TDS\":-38.14,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1594,\"MU\":414.02,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":63.16,\"apiMarkup\":350.86,\"IntCommission\":14.49,\"apiTaxOnMarkup\":63.16,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":14.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":350.86,\"apiTaxOnMarkup\":63.16,\"IntNetCommission\":724.74,\"IntCommissionValInPercentage\":2,\"IntCommission\":14.49,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":63.16,\"PublishFare\":20405.17,\"CostToCustomer\":20405.17,\"BaseFareCal\":20039.82,\"intCommisionEarnedForAgency\":365.36,\"CostToCompany\":20039.82,\"intOfferedFare\":19976.66,\"intPublishFare\":21115.42,\"TripjackMarkup\":414.02,\"TripjackCommission\":724.74,\"TripjackTDS\":\"38.14\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"073\"},\"Segments\":[{\"originAirportName\":\"Mohanbari Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dibrugarh\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-06T18:20\",\"SegFlightNumber\":\"6E-6965\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DIB\",\"originDepTime\":\"2022-09-06T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"Duration\":310,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"5h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-05 14:08:27'),(465,'6f914-036e6-4f95a-40222','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-176\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-176\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8694780857_0PNQDELG8176_23931693786032\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:20\",\"ArrivalTime\":\"07:25\",\"TravelDate\":\"2022-09-08T05:20\",\"LocalFromTime\":\"2022-09-08 05:20\",\"FromUTCTime\":\"2022-09-08T05:20\",\"LocalToTime\":\"2022-09-08 07:25\",\"ToUTCTime\":\"2022-09-08T07:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"22238\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4271,\"PublishedFareTxt\":\"4,270\",\"ApiResultIndex\":\"1-8694780857_0PNQDELG8176_23931693786032\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"6f914-036e6-4f95a-40222\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3052,\"Tax\":1046.05,\"YQTax\":0,\"OtherCharges\":948,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":80.35,\"intPublishedFare\":4098.05,\"PublishedFare\":4271,\"PublishedFarePerPax\":4271,\"OfferedFare\":3952.46,\"CommissionEarned\":65.24,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.43,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-8694780857_0PNQDELG8176_23931693786032\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":48.26,\"apiMarkup\":68.09,\"IntCommission\":1.3,\"apiTaxOnMarkup\":12.26,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1046.05,\"BaseFareCal\":4000.72,\"BaseFare\":3052,\"CommissionEarned\":65.24,\"TDS\":-3.43,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":948,\"MU\":80.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.26,\"apiMarkup\":68.09,\"IntCommission\":1.3,\"apiTaxOnMarkup\":12.26,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":68.09,\"apiTaxOnMarkup\":12.26,\"IntNetCommission\":65.24,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.3,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.26,\"PublishFare\":4270.11,\"CostToCustomer\":4270.11,\"BaseFareCal\":4000.72,\"intCommisionEarnedForAgency\":269.4,\"CostToCompany\":4000.72,\"intOfferedFare\":3952.46,\"intPublishFare\":4098.05,\"TripjackMarkup\":80.35,\"TripjackCommission\":65.24,\"TripjackTDS\":\"3.43\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"03S\"},\"Segments\":[{\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T07:25\",\"SegFlightNumber\":\"G8-176\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-07 22:02:34'),(468,'ac10d-9538b-eeecc-5a4b5','{\"FlightBookingData\":[{\"bookingId\":\"TJ104942103794\",\"FlightNumber\":\"G8-176\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:20\",\"ArrivalTime\":\"07:25\",\"TravelDate\":\"2022-09-08T05:20\",\"LocalFromTime\":\"2022-09-08 05:20\",\"FromUTCTime\":\"2022-09-08T05:20\",\"LocalToTime\":\"2022-09-08 07:25\",\"ToUTCTime\":\"2022-09-08T07:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4098.05,\"PublishedFareTxt\":\"4,098\",\"ApiResultIndex\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCFT\":9,\"ACF\":3500,\"ACFT\":175,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3052,\"Tax\":1046.05,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":156,\"CarrierMiscFee\":0,\"MUFee\":80.35,\"intPublishedFare\":4098.05,\"PublishedFare\":4270.11,\"OfferedFare\":3952.46,\"CommissionEarned\":65.24,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.43,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-6160175290_0PNQDELG8176_15040348282155\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.26,\"apiMarkup\":68.09,\"IntCommission\":1.3,\"apiTaxOnMarkup\":12.26,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1046.05,\"BaseFareCal\":4000.72,\"BaseFare\":3052,\"CommissionEarned\":65.24,\"TDS\":-3.43,\"MF\":15,\"YQ\":0,\"AGST\":156,\"MFT\":2.7,\"OT\":792,\"MU\":80.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.26,\"apiMarkup\":68.09,\"IntCommission\":1.3,\"apiTaxOnMarkup\":12.26,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":68.09,\"apiTaxOnMarkup\":12.26,\"IntNetCommission\":65.24,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.3,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.26,\"PublishFare\":4270.11,\"CostToCustomer\":4270.11,\"BaseFareCal\":4000.72,\"intCommisionEarnedForAgency\":269.4,\"CostToCompany\":4000.72,\"intOfferedFare\":3952.46,\"intPublishFare\":4098.05,\"TripjackMarkup\":80.35,\"TripjackCommission\":65.24,\"TripjackTDS\":\"3.43\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"399\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T07:25\",\"SegFlightNumber\":\"G8-176\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"399\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ac10d-9538b-eeecc-5a4b5\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104942103794\",\"FlightNumber\":\"G8-176\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"strTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:20\",\"ArrivalTime\":\"07:25\",\"TravelDate\":\"2022-09-08T05:20\",\"LocalFromTime\":\"2022-09-08 05:20\",\"FromUTCTime\":\"2022-09-08T05:20\",\"LocalToTime\":\"2022-09-08 07:25\",\"ToUTCTime\":\"2022-09-08T07:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4098.05,\"ApiResultIndex\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"ac10d-9538b-eeecc-5a4b5\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3052,\"Tax\":1046.05,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":156,\"CarrierMiscFee\":0,\"MUFee\":80.35,\"intPublishedFare\":4098.05,\"PublishedFare\":4270.11,\"OfferedFare\":3952.46,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1046.05,\"BaseFareCal\":4000.72,\"BaseFare\":3052,\"CommissionEarned\":65.24,\"TDS\":-3.43,\"MF\":15,\"YQ\":0,\"AGST\":156,\"MFT\":2.7,\"OT\":792,\"MU\":80.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.3,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"399\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T07:25\",\"SegFlightNumber\":\"G8-176\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T05:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"05:20\",\"strArrivalDtTime\":\"07:25\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-6160175290_0PNQDELG8176_30133971377130\",\"localFromDateTime\":\"2022-09-08 05:20\",\"localToDateTime\":\"2022-09-08 07:25\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"89\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"54\",\"CustomerMemSysId\":[\"54\"],\"flight_booking_id\":[\"89\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"nancysrivastava1996@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"7091458187\",\"FirstName\":\"Nancy\",\"LastName\":\"Srivastava\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-07-22-04-48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"54\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"54\",\"CustomerMemSysId\":[\"54\"],\"flight_booking_customer\":[[\"136\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Pune (PNQ)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"PNQ\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"08\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Lohegaon Arpt (PNQ)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"PNQ\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"PNQ\",\"to\":\"DEL\",\"sourceCityText\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":22238,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"ac10d-9538b-eeecc-5a4b5\",\"from_city_\":\"1__PNQ-DEL\"},\"sessionData\":{\"CustomerSysId\":\"54\",\"CustomerMemSysId\":[\"54\"],\"flight_booking_id\":[\"89\"]},\"validateCoupon\":null,\"validateData\":null,\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"445702\",\"TPSysId\":\"445703\",\"VersionId\":[\"100027\"],\"CustomerSysId\":\"236638\",\"TrxId\":\"33258\",\"FareBreakdownid\":[\"359754\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"7091458187\",\"leadEmail\":\"nancysrivastava1996@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"2\",\"relation-1\":\"0\",\"passenger-firstname-1\":\"Nancy\",\"passenger-lastname-1\":\"Srivastava\",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"\",\"passenger-country-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"ac10d-9538b-eeecc-5a4b5\",\"countryCodeISO\":\"IN\"}}','2022-09-07 22:05:44'),(471,'4d5e0-f9125-67203-c3b4a','{\"FlightBookingData\":[{\"bookingId\":\"TJ107842108048\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"PublishedFareTxt\":\"4,174\",\"ApiResultIndex\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"ARFT\":167.5,\"CRFT\":9,\"ARF\":3350,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"CCF\":50,\"CCFT\":9,\"ACF\":3600,\"ACFT\":180}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"CommissionEarned\":37.07,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9753976171_0PNQDELSG8184_11429633873334\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":69.35,\"apiTaxOnMarkup\":12.48,\"IntNetCommission\":37.07,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.74,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.48,\"PublishFare\":4373.2,\"CostToCustomer\":4373.2,\"BaseFareCal\":4103.11,\"intCommisionEarnedForAgency\":270.09,\"CostToCompany\":4103.11,\"intOfferedFare\":4054.63,\"intPublishFare\":4173.53,\"TripjackMarkup\":81.83,\"TripjackCommission\":37.07,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"0\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"0\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d5e0-f9125-67203-c3b4a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107842108048\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"strTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"ApiResultIndex\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"4d5e0-f9125-67203-c3b4a\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"0\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9753976171_2PNQDELSG8184_24386742393656\",\"localFromDateTime\":\"2022-09-08 17:35\",\"localToDateTime\":\"2022-09-08 19:45\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"90\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"55\",\"CustomerMemSysId\":[\"55\"],\"flight_booking_id\":[\"90\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ritasriwastaw1996@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"7091458187\",\"FirstName\":\"Nancy \",\"LastName\":\"Srivastava \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-07-22-59-41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"55\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"55\",\"CustomerMemSysId\":[\"55\"],\"flight_booking_customer\":[[\"137\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Pune (PNQ)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"PNQ\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"08\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Lohegaon Arpt (PNQ)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"PNQ\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"PNQ\",\"to\":\"DEL\",\"sourceCityText\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":22238,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"4d5e0-f9125-67203-c3b4a\",\"from_city_\":\"1__PNQ-DEL\"},\"sessionData\":{\"CustomerSysId\":\"55\",\"CustomerMemSysId\":[\"55\"],\"flight_booking_id\":[\"90\"]},\"validateCoupon\":null,\"validateData\":null,\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"445711\",\"TPSysId\":\"445712\",\"VersionId\":[\"100032\"],\"CustomerSysId\":\"236662\",\"TrxId\":\"33262\",\"FareBreakdownid\":[\"359758\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"7091458187\",\"leadEmail\":\"ritasriwastaw1996@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"3\",\"relation-1\":\"0\",\"passenger-firstname-1\":\"Nancy \",\"passenger-lastname-1\":\"Srivastava \",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"\",\"passenger-country-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"4d5e0-f9125-67203-c3b4a\",\"countryCodeISO\":\"IN\"}}','2022-09-07 23:00:19'),(475,'da6b1-a9d9e-d1b70-52911','{\"BookingData\":[{\"bookingId\":\"TJ104942108903\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"PublishedFareTxt\":\"4,174\",\"ApiResultIndex\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARFT\":167.5,\"ARF\":3350}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"ACF\":3600,\"ACFT\":180,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"CommissionEarned\":37.07,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0222389769_0PNQDELSG8184_35221812518488\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":69.35,\"apiTaxOnMarkup\":12.48,\"IntNetCommission\":37.07,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.74,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.48,\"PublishFare\":4373.2,\"CostToCustomer\":4373.2,\"BaseFareCal\":4103.11,\"intCommisionEarnedForAgency\":270.09,\"CostToCompany\":4103.11,\"intOfferedFare\":4054.63,\"intPublishFare\":4173.53,\"TripjackMarkup\":81.83,\"TripjackCommission\":37.07,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"921\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"921\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"da6b1-a9d9e-d1b70-52911\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104942108903\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"strTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"ApiResultIndex\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"da6b1-a9d9e-d1b70-52911\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"921\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0222389769_2PNQDELSG8184_8551336563886\",\"localFromDateTime\":\"2022-09-08 17:35\",\"localToDateTime\":\"2022-09-08 19:45\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Pune (PNQ)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"PNQ\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"09\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Lohegaon Arpt (PNQ)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"PNQ\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"PNQ\",\"to\":\"DEL\",\"sourceCityText\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":22238,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"af6f0-aa4e5-248ba-e0d05\",\"from_city_\":\"1__PNQ-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Pune+%28PNQ%29&mytrip_city_to=Delhi+%28DEL%29&source_city=PNQ&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Pune%2C+IN+-+Lohegaon+Arpt+%28PNQ%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=09%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Lohegaon+Arpt+%28PNQ%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":null,\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"445714\",\"TPSysId\":\"445715\",\"VersionId\":[\"100033\"],\"CustomerSysId\":\"236662\",\"TrxId\":\"33263\",\"FareBreakdownid\":[\"359759\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"138\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"52\"],\"flight_booking_id\":[\"91\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"91\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4373.2},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"236662\",\"TPSysId\":\"445715\",\"MasterTPSysId\":\"445714\",\"ProposalID\":\"445715\\/V1\",\"InvoiceDate\":\"2022-09-07\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-07\",\"PaymentDate\":\"2022-09-07\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4301.2,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4373.2,\"TotalDueAmount\":0,\"InvoiceValue\":4373.2,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"PNQ-DEL-SpiceJet SG-8184\",\"ItemQty\":1,\"ItemRates\":3901.2,\"Total\":3901.2,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4373.2,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":4301.2,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-07 23:22:38'),(479,'a9ad5-a8f3b-b551c-bed5c','{\"BookingData\":[{\"bookingId\":\"TJ109542109894\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"PublishedFareTxt\":\"4,174\",\"ApiResultIndex\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3350,\"ARFT\":167.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"ACF\":3600,\"ACFT\":180,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"CommissionEarned\":37.07,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0829922692_0PNQDELSG8184_4736960659544\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":69.35,\"apiTaxOnMarkup\":12.48,\"IntNetCommission\":37.07,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.74,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.48,\"PublishFare\":4373.2,\"CostToCustomer\":4373.2,\"BaseFareCal\":4103.11,\"intCommisionEarnedForAgency\":270.09,\"CostToCompany\":4103.11,\"intOfferedFare\":4054.63,\"intPublishFare\":4173.53,\"TripjackMarkup\":81.83,\"TripjackCommission\":37.07,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"978\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"978\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a9ad5-a8f3b-b551c-bed5c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109542109894\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"strTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":23,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"ApiResultIndex\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"a9ad5-a8f3b-b551c-bed5c\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"978\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":23,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0829922692_2PNQDELSG8184_24855992049953\",\"localFromDateTime\":\"2022-09-08 17:35\",\"localToDateTime\":\"2022-09-08 19:45\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Pune (PNQ)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"PNQ\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"08\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Lohegaon Arpt (PNQ)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"PNQ\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"PNQ\",\"to\":\"DEL\",\"sourceCityText\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":22238,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"a9ad5-a8f3b-b551c-bed5c\",\"from_city_\":\"1__PNQ-DEL\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Pune+%28PNQ%29&mytrip_city_to=Delhi+%28DEL%29&source_city=PNQ&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Pune%2C+IN+-+Lohegaon+Arpt+%28PNQ%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=08%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Lohegaon+Arpt+%28PNQ%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ritasriwastaw1996@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"7091458187\",\"FirstName\":\"Nancy\",\"LastName\":\"Srivastava\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-07-23-24-41\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"53\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"445716\",\"TPSysId\":\"445717\",\"VersionId\":[\"100034\"],\"CustomerSysId\":\"236662\",\"TrxId\":\"33264\",\"FareBreakdownid\":[\"359760\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"139\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"53\",\"CustomerMemSysId\":[\"53\"],\"flight_booking_id\":[\"92\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"92\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4373.2},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"236662\",\"TPSysId\":\"445717\",\"MasterTPSysId\":\"445716\",\"ProposalID\":\"445717\\/V1\",\"InvoiceDate\":\"2022-09-07\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-07\",\"PaymentDate\":\"2022-09-07\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4301.2,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4373.2,\"TotalDueAmount\":0,\"InvoiceValue\":4373.2,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"PNQ-DEL-SpiceJet SG-8184\",\"ItemQty\":1,\"ItemRates\":3901.2,\"Total\":3901.2,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4373.2,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":4301.2,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-07 23:25:17'),(482,'6740c-5fc64-868ab-54c1a','{\"FlightBookingData\":[{\"bookingId\":\"TJ103442113271\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"PublishedFareTxt\":\"4,174\",\"ApiResultIndex\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PNQ-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":167.5,\"ARF\":3350,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"ACF\":3600,\"ACFT\":180,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"CommissionEarned\":37.07,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.95,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6847125169_0PNQDELSG8184_38383230977054\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.48,\"apiMarkup\":69.35,\"IntCommission\":0.74,\"apiTaxOnMarkup\":12.48,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":69.35,\"apiTaxOnMarkup\":12.48,\"IntNetCommission\":37.07,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.74,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.48,\"PublishFare\":4373.2,\"CostToCustomer\":4373.2,\"BaseFareCal\":4103.11,\"intCommisionEarnedForAgency\":270.09,\"CostToCompany\":4103.11,\"intOfferedFare\":4054.63,\"intPublishFare\":4173.53,\"TripjackMarkup\":81.83,\"TripjackCommission\":37.07,\"TripjackTDS\":\"1.95\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"817\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"817\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6740c-5fc64-868ab-54c1a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-08 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103442113271\",\"FlightNumber\":\"SG-8184\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"strTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-08T17:35\",\"LocalFromTime\":\"2022-09-08 17:35\",\"FromUTCTime\":\"2022-09-08T17:35\",\"LocalToTime\":\"2022-09-08 19:45\",\"ToUTCTime\":\"2022-09-08T19:45\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 08 Sep\",\"ArrivalDateTxt\":\"Thu, 08 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":22238,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":26,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4173.53,\"ApiResultIndex\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"6740c-5fc64-868ab-54c1a\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3122,\"Tax\":1051.53,\"YQTax\":0,\"OtherCharges\":792,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":160,\"CarrierMiscFee\":0,\"MUFee\":81.83,\"intPublishedFare\":4173.53,\"PublishedFare\":4373.2,\"OfferedFare\":4054.63,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1051.53,\"BaseFareCal\":4103.11,\"BaseFare\":3122,\"CommissionEarned\":37.07,\"TDS\":-1.95,\"MF\":15,\"YQ\":0,\"AGST\":160,\"MFT\":2.7,\"OT\":792,\"MU\":81.83,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"817\",\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-08T19:45\",\"SegFlightNumber\":\"SG-8184\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-09-08T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":26,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6847125169_2PNQDELSG8184_30323078736205\",\"localFromDateTime\":\"2022-09-08 17:35\",\"localToDateTime\":\"2022-09-08 19:45\",\"strSourceAirportCode\":\"PNQ\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":22238,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"93\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"54\",\"CustomerMemSysId\":[\"54\"],\"flight_booking_id\":[\"93\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ritasriwastaw1996@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"7091458187\",\"FirstName\":\"Nancy\",\"LastName\":\"Srivastava\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-08-00-21-32\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"54\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"54\",\"CustomerMemSysId\":[\"54\"],\"flight_booking_customer\":[[\"140\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Pune (PNQ)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"source_city\":\"PNQ\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"08\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Lohegaon Arpt (PNQ)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"PNQ\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"PNQ\",\"to\":\"DEL\",\"sourceCityText\":\"Pune, IN - Lohegaon Arpt (PNQ), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":22238,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"08\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-08\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"6740c-5fc64-868ab-54c1a\",\"from_city_\":\"1__PNQ-DEL\"},\"sessionData\":{\"CustomerSysId\":\"54\",\"CustomerMemSysId\":[\"54\"],\"flight_booking_id\":[\"93\"]},\"validateCoupon\":null,\"validateData\":null,\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"445734\",\"TPSysId\":\"445735\",\"VersionId\":[\"100040\"],\"CustomerSysId\":\"236662\",\"TrxId\":\"33270\",\"FareBreakdownid\":[\"359766\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"7091458187\",\"leadEmail\":\"ritasriwastaw1996@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"3\",\"relation-1\":\"0\",\"passenger-firstname-1\":\"Nancy\",\"passenger-lastname-1\":\"Srivastava\",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"0\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"0\",\"passenger-country-1\":\"0\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"6740c-5fc64-868ab-54c1a\",\"countryCodeISO\":\"IN\"}}','2022-09-08 00:21:40'),(484,'70dc6-25cbe-c80f7-9100f','{\"FlightBookingData\":[{\"bookingId\":\"DMCS109700337427\",\"bookingId_TJ\":\"TJS109700337427\",\"FlightNumber\":\"SG-923\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"70dc6-25cbe-c80f7-9100f\",\"apiTraceId\":\"4-5679236951_0BOMPATSG923_90212230843845\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"14:25\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-09-14T14:25\",\"LocalFromTime\":\"2022-09-14 14:25\",\"FromUTCTime\":\"2022-09-14T14:25\",\"LocalToTime\":\"2022-09-14 16:50\",\"ToUTCTime\":\"2022-09-14T16:50\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Wed, 14 Sep\",\"ArrivalDateTxt\":\"Wed, 14 Sep\",\"FlightDuration\":\"02h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":38,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"4,615\",\"ApiResultIndex\":\"4-5679236951_0BOMPATSG923_90212230843845\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":2992,\"Tax\":1636,\"YQTax\":0,\"OtherCharges\":808,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":156,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":4628,\"PublishedFare\":4615.3,\"PublishedFareAgent\":4615.3,\"OfferedFareAgent\":4615.3,\"OfferedFare\":4143,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5679236951_0BOMPATSG923_90308456505053\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"fareIdentifierSP\":\"COUPON\",\"SeatAvailable\":38,\"classOfBooking\":\"DD\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":142.5,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4615.3,\"CostToAgent\":4615.3,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1636,\"TotalBaseFare\":4628,\"BaseFareCal\":4162.8,\"BaseFare\":2992,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":156,\"MFT\":72,\"OT\":808,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":142.5,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4615.3,\"CostToAgent\":4615.3,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":50,\"IntCommission\":142.5,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":4615.3,\"CostToCustomer\":4615.3,\"BaseFareCal\":4162.8,\"intCommisionEarnedForAgency\":452.5,\"CostToCompany\":4162.8,\"intOfferedFare\":4143,\"intPublishFare\":4628,\"TripjackMarkup\":200,\"TripjackCommission\":285,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":4615.3,\"CostToAgent\":4615.3,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"85\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-09-14T16:50\",\"SegFlightNumber\":\"SG-923\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-14T14:25\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":38,\"strDepartureDtTime\":\"14:25\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"4-5679236951_0BOMPATSG923_90212230843845\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-PAT\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-96 hrs Rs 3,000 + Fare Difference __nls__ Before 96 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,500 __nls__ Before 96 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-13 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"PAT\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"20918\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"apiTraceId\":\"4-5679236951_0BOMPATSG923_90212230843845\",\"SearchTraceId\":\"70dc6-25cbe-c80f7-9100f\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_des\":[\"Patna (PAT)\",\"DEL\"],\"departure_date\":[\"14\\/09\\/2022\",\"\"],\"source_city\":[\"BOM\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"PAT\"],\"source\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destination\":[\"Patna, IN - Jai Prakash Narayan Arpt (PAT)\"],\"from_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"to_mytrip_city\":[\" IN - Jai Prakash Narayan Arpt (PAT)\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_city\":[\"Patna (PAT)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-09-14\"],\"strReturnDate\":\"\",\"sourceCityId\":[18676],\"intCountryCode\":\"IN\",\"destinationCityId\":[20918],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"70dc6-25cbe-c80f7-9100f\",\"sourceCityAirportCode\":[\"BOM\"],\"destinationCityAirportCode\":[\"PAT\"],\"from\":[\"BOM\"],\"to\":[\"PAT\"],\"sourceCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destinationCityText\":[\"Patna, IN - Jai Prakash Narayan Arpt (PAT)\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"14\\/09\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"14 Sep Wed\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-09-08 12:09:38\",\"IsChangeSearch\":1},\"SSRArr\":{\"Meal\":[[{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of  Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}]],\"Baggage\":[[{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"85\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}]],\"SeatPreference\":[]}}','2022-09-08 12:11:17'),(485,'00d11-81caf-3de72-77c10','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-972\",\"keyIndex\":27,\"SegFlightNumberArr\":\"6E-972, 6E-902\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1886088188_3DEDDEL6E972DELPAT6E902_2720030600350\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:10\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-10-06T12:10\",\"LocalFromTime\":\"2022-10-06 12:10\",\"FromUTCTime\":\"2022-10-06T12:10\",\"LocalToTime\":\"2022-10-06 17:45\",\"ToUTCTime\":\"2022-10-06T17:45\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":170,\"LAYOVERDuration\":\"2h 50m\",\"FlyingMinutes\":335,\"DepartureDateTxt\":\"Thu, 06 Oct\",\"ArrivalDateTxt\":\"Thu, 06 Oct\",\"FlightDuration\":\"5h 35m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"DED\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":27036,\"PublishedFareTxt\":\"27,036\",\"ApiResultIndex\":\"5-1886088188_3DEDDEL6E972DELPAT6E902_2720030599850\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"00d11-81caf-3de72-77c10\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":23850,\"Tax\":4065.4500000000003,\"YQTax\":0,\"OtherCharges\":3465,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":547.3499999999999,\"intPublishedFare\":27915.449999999997,\"PublishedFare\":27028,\"PublishedFarePerPax\":9010,\"OfferedFare\":26461.800000000003,\"CommissionEarned\":906.3000000000001,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-47.7,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1886088188_3DEDDEL6E972DELPAT6E902_2720030600350\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":83.49,\"apiMarkup\":463.86,\"IntCommission\":18.13,\"apiTaxOnMarkup\":83.49,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":18.13,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2710.3,\"BaseFareCal\":17696.86,\"BaseFare\":15900,\"CommissionEarned\":604.2,\"TDS\":-31.8,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2310,\"MU\":364.9,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":55.66,\"apiMarkup\":309.24,\"IntCommission\":12.08,\"apiTaxOnMarkup\":55.66,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":12.08,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1355.15,\"BaseFareCal\":8848.43,\"BaseFare\":7950,\"CommissionEarned\":302.1,\"TDS\":-15.9,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1155,\"MU\":182.45,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":27.83,\"apiMarkup\":154.62,\"IntCommission\":6.04,\"apiTaxOnMarkup\":27.83,\"FixedMarkUp\":0,\"GSTOnMarkUp\":0,\"CommEarned\":6.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":463.86,\"apiTaxOnMarkup\":83.49,\"IntNetCommission\":906.3,\"IntCommissionValInPercentage\":2,\"IntCommission\":18.13,\"IntAgencyFixMarkUp\":0,\"IntTaxOnAgencyFixMarkUp\":0,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":83.49,\"PublishFare\":27027.28,\"CostToCustomer\":27027.28,\"BaseFareCal\":26545.29,\"intCommisionEarnedForAgency\":481.98,\"CostToCompany\":26545.29,\"intOfferedFare\":26461.800000000003,\"intPublishFare\":27915.449999999997,\"TripjackMarkup\":547.3499999999999,\"TripjackCommission\":906.3000000000001,\"TripjackTDS\":\"47.7\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IntAdddimarkup\":0},\"$$hashKey\":\"044\"},\"Segments\":[{\"originAirportName\":\"Jolly Grant Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Dehra Dun\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-10-06T13:05\",\"SegFlightNumber\":\"6E-972\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DED\",\"originDepTime\":\"2022-10-06T12:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":55,\"GroundTime\":170,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:10\",\"strArrivalDtTime\":\"13:05\",\"FlightDuration\":\"0h 55m\",\"LAYOVERDuration\":\"2h 50m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-10-06T17:45\",\"SegFlightNumber\":\"6E-902\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-10-06T15:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:55\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"30001-35000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-08 20:21:14'),(490,'ceb01-1c8ff-5b7e3-635bd','{\"BookingData\":[{\"bookingId\":\"TJ101042204842\",\"FlightNumber\":\"G8-511\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:55\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2022-09-09T06:55\",\"LocalFromTime\":\"2022-09-09 06:55\",\"FromUTCTime\":\"2022-09-09T06:55\",\"LocalToTime\":\"2022-09-09 09:30\",\"ToUTCTime\":\"2022-09-09T09:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Fri, 09 Sep\",\"ArrivalDateTxt\":\"Fri, 09 Sep\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9197.03,\"PublishedFareTxt\":\"9,197\",\"ApiResultIndex\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"amount\":0,\"policyInfo\":\"If Cancelled 0 - 3 Hrs - Non Refundable, full fare will be forfeited.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":100,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ARF\":100,\"CRFT\":9,\"ARFT\":5,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":100,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACF\":100,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"amount\":0,\"policyInfo\":\"Complimentary seats, excluding first 3 rows and emergency exit rows\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7818,\"Tax\":1379.03,\"YQTax\":0,\"OtherCharges\":771,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":410,\"CarrierMiscFee\":0,\"MUFee\":180.33,\"intPublishedFare\":9197.03,\"PublishedFare\":9014.51,\"OfferedFare\":8589.64,\"CommissionEarned\":427.06,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-22.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0502253256_0BOMCCUG8511_137997977199299\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":63.51,\"apiMarkup\":152.82,\"IntCommission\":8.54,\"apiTaxOnMarkup\":27.51,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.03,\"BaseFareCal\":8653.15,\"BaseFare\":7818,\"CommissionEarned\":427.06,\"TDS\":-22.48,\"MF\":15,\"YQ\":0,\"AGST\":410,\"MFT\":2.7,\"OT\":771,\"MU\":180.33,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":63.51,\"apiMarkup\":152.82,\"IntCommission\":8.54,\"apiTaxOnMarkup\":27.51,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":152.82,\"apiTaxOnMarkup\":27.51,\"IntNetCommission\":427.06,\"IntCommissionValInPercentage\":2,\"IntCommission\":8.54,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":63.51,\"PublishFare\":9014.51,\"CostToCustomer\":9014.51,\"BaseFareCal\":8653.15,\"intCommisionEarnedForAgency\":361.36,\"CostToCompany\":8653.15,\"intOfferedFare\":8589.64,\"intPublishFare\":9197.03,\"TripjackMarkup\":180.33,\"TripjackCommission\":427.06,\"TripjackTDS\":\"22.48\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"104\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-09T09:30\",\"SegFlightNumber\":\"G8-511\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-09T06:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"06:55\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"104\",\"Code\":\"CRLM\",\"Price\":0,\"Description\":\"Free Corporate Meal before 12 Hrs\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ceb01-1c8ff-5b7e3-635bd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101042204842\",\"FlightNumber\":\"G8-511\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"strTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:55\",\"ArrivalTime\":\"09:30\",\"TravelDate\":\"2022-09-09T06:55\",\"LocalFromTime\":\"2022-09-09 06:55\",\"FromUTCTime\":\"2022-09-09T06:55\",\"LocalToTime\":\"2022-09-09 09:30\",\"ToUTCTime\":\"2022-09-09T09:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Fri, 09 Sep\",\"ArrivalDateTxt\":\"Fri, 09 Sep\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9197.03,\"ApiResultIndex\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"ceb01-1c8ff-5b7e3-635bd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7818,\"Tax\":1379.03,\"YQTax\":0,\"OtherCharges\":771,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":410,\"CarrierMiscFee\":0,\"MUFee\":180.33,\"intPublishedFare\":9197.03,\"PublishedFare\":9014.51,\"OfferedFare\":8589.64,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1379.03,\"BaseFareCal\":8653.15,\"BaseFare\":7818,\"CommissionEarned\":427.06,\"TDS\":-22.48,\"MF\":15,\"YQ\":0,\"AGST\":410,\"MFT\":2.7,\"OT\":771,\"MU\":180.33,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":8.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"104\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-09T09:30\",\"SegFlightNumber\":\"G8-511\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-09T06:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"06:55\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-0502253256_0BOMCCUG8511_27048648818590\",\"localFromDateTime\":\"2022-09-09 06:55\",\"localToDateTime\":\"2022-09-09 09:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Kolkata (CCU)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"CCU\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"departure_date\":\"09\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"CCU\",\"from\":\"BOM\",\"to\":\"CCU\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"sourceCityId\":18676,\"destinationCityId\":14323,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"ceb01-1c8ff-5b7e3-635bd\",\"from_city_\":\"1__BOM-CCU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Kolkata+%28CCU%29&source_city=BOM&ContSysId_1=101&destination_city=CCU&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29%2C+India&departure_date=09%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"itskamalraja@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"9091776621\",\"FirstName\":\"Rani\",\"LastName\":\"Begun\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-08-23-52-42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"55\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"446668\",\"TPSysId\":\"446669\",\"VersionId\":[\"100525\"],\"CustomerSysId\":\"230824\",\"TrxId\":\"33355\",\"FareBreakdownid\":[\"359854\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"141\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"55\",\"CustomerMemSysId\":[\"55\"],\"flight_booking_id\":[\"94\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"94\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":9014.51},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"230824\",\"TPSysId\":\"446669\",\"MasterTPSysId\":\"446668\",\"ProposalID\":\"446669\\/V1\",\"InvoiceDate\":\"2022-09-08\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-08\",\"PaymentDate\":\"2022-09-08\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":8942.51,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":9014.51,\"TotalDueAmount\":0,\"InvoiceValue\":9014.51,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-CCU-Go First G8-511\",\"ItemQty\":1,\"ItemRates\":8542.51,\"Total\":8542.51,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":9014.51,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":8942.51,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-08 23:55:11'),(491,'cb672-cbfd9-b7dd2-75ff3','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-643\",\"keyIndex\":98,\"SegFlightNumberArr\":\"AI-643\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4454190839_98BOMUDRAI643_62955911944479\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"14:20\",\"ArrivalTime\":\"15:50\",\"TravelDate\":\"2022-10-26T14:20\",\"LocalFromTime\":\"2022-10-26 14:20\",\"FromUTCTime\":\"2022-10-26T14:20\",\"LocalToTime\":\"2022-10-26 15:50\",\"ToUTCTime\":\"2022-10-26T15:50\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Wed, 26 Oct\",\"ArrivalDateTxt\":\"Wed, 26 Oct\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"28058\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"UDR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":18827,\"PublishedFareTxt\":\"18,826\",\"ApiResultIndex\":\"21-10-15-2-4454190839_98BOMUDRAI643_62955911944479\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cb672-cbfd9-b7dd2-75ff3\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16310,\"Tax\":2499.3199999999997,\"YQTax\":0,\"OtherCharges\":756,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":841,\"CarrierMiscFee\":510,\"MUFee\":339.22,\"intPublishedFare\":18809.32,\"PublishedFare\":18827,\"PublishedFarePerPax\":6276,\"OfferedFare\":18246.62,\"CommissionEarned\":223.48,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-11.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4454190839_98BOMUDRAI643_62955911944479\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":87.75,\"apiMarkup\":287.47,\"IntCommission\":4.47,\"apiTaxOnMarkup\":51.75,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":4.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2240.62,\"BaseFareCal\":16825.67,\"BaseFare\":15060,\"CommissionEarned\":223.48,\"TDS\":-11.76,\"MF\":30,\"YQ\":0,\"AGST\":770,\"MFT\":5.4,\"OT\":756,\"MU\":339.22,\"YR\":340,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":87.75,\"apiMarkup\":287.47,\"IntCommission\":4.47,\"apiTaxOnMarkup\":51.75,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":4.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1544.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":36,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}},\"arrMarkUps\":{\"apiMarkup\":287.47,\"apiTaxOnMarkup\":51.75,\"IntNetCommission\":223.48,\"IntCommissionValInPercentage\":2,\"IntCommission\":4.47,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":87.75,\"PublishFare\":18826.31,\"CostToCustomer\":18826.31,\"BaseFareCal\":18334.37,\"intCommisionEarnedForAgency\":491.94,\"CostToCompany\":18334.37,\"intOfferedFare\":18246.62,\"intPublishFare\":18809.32,\"TripjackMarkup\":339.22,\"TripjackCommission\":223.48,\"TripjackTDS\":\"11.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"03O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Maharana Pratap Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Udaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"UDR\",\"destinationArrTime\":\"2022-10-26T15:50\",\"SegFlightNumber\":\"AI-643\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"H\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-10-26T14:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:20\",\"strArrivalDtTime\":\"15:50\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-09 12:41:10'),(498,'b261a-d079d-56ee3-02acb','{\"FlightBookingData\":[{\"bookingId\":\"DMCS105100339127\",\"bookingId_TJ\":\"TJS105100339127\",\"FlightNumber\":\"6E-248\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"b261a-d079d-56ee3-02acb\",\"apiTraceId\":\"5-7052325277_35BOMDEL6E248_191663702836883\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-11T22:45\",\"LocalFromTime\":\"2022-09-11 22:45\",\"FromUTCTime\":\"2022-09-11T22:45\",\"LocalToTime\":\"2022-09-12 01:00\",\"ToUTCTime\":\"2022-09-12T01:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 11 Sep\",\"ArrivalDateTxt\":\"Mon, 12 Sep\",\"FlightDuration\":\"02h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"1,547\",\"ApiResultIndex\":\"5-7052325277_35BOMDEL6E248_191663702836883\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":100,\"Tax\":1460,\"YQTax\":0,\"OtherCharges\":778,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":10,\"CarrierMiscFee\":0,\"MUFee\":200,\"intPublishedFare\":1560,\"PublishedFare\":1547.3,\"PublishedFareAgent\":1647.3,\"OfferedFareAgent\":1547.3,\"OfferedFare\":1075,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7052325277_0BOMDEL6E248_191680535073545\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"fareIdentifierSP\":\"TACTICAL\",\"SeatAvailable\":null,\"classOfBooking\":\"T\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":142.5,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"CommEarnedAgent\":100,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":100,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":100,\"CostToAgentCustomer\":1647.3,\"CostToAgent\":1547.3,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1460,\"TotalBaseFare\":1560,\"BaseFareCal\":1094.8,\"BaseFare\":100,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":10,\"MFT\":72,\"OT\":778,\"MU\":200,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":50.308474576271195,\"apiMarkup\":169.4915254237288,\"IntCommission\":142.5,\"apiTaxOnMarkup\":30.508474576271198,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":100,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":100,\"CostToAgentCustomer\":1647.3,\"CostToAgent\":1547.3,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"newFare\":0,\"oldFare\":0,\"arrMarkUps\":{\"apiMarkup\":169.4915254237288,\"apiTaxOnMarkup\":30.508474576271198,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":50,\"IntCommission\":142.5,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.308474576271195,\"PublishFare\":1547.3,\"CostToCustomer\":1547.3,\"BaseFareCal\":1094.8,\"intCommisionEarnedForAgency\":452.5,\"CostToCompany\":1094.8,\"intOfferedFare\":1075,\"intPublishFare\":1560,\"TripjackMarkup\":200,\"TripjackCommission\":285,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":100,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":100,\"CostToAgentCustomer\":1647.3,\"CostToAgent\":1547.3,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0}},\"Segments\":[{\"segmentid\":\"940\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-12T01:00\",\"SegFlightNumber\":\"6E-248\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-11T22:45\",\"TripIndicator\":1,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"BAGGAGEARRAY\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"SegmentNumber\":0,\"isReturnSegment\":false}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPE\",\"Price\":1500,\"Weight\":\"3 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPA\",\"Price\":2500,\"Weight\":\"5 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPB\",\"Price\":5000,\"Weight\":\"10 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPC\",\"Price\":7500,\"Weight\":\"15 Kg\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"XBPD\",\"Price\":15000,\"Weight\":\"30 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"TCSW\",\"Price\":0,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"POHA\",\"Price\":225,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VBIR\",\"Price\":275,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"UPMA\",\"Price\":275,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"MUYO\",\"Price\":275,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"DACH\",\"Price\":275,\"Description\":\"DAL CHAWAL Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"COMI\",\"Price\":275,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VGML\",\"Price\":300,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"ZCHK\",\"Price\":325,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"NVML\",\"Price\":350,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PTSW\",\"Price\":400,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CTSW\",\"Price\":425,\"Description\":\"Chicken Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CJSW\",\"Price\":425,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHCT\",\"Price\":425,\"Description\":\"Chicken cucumber tomato sandwich\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHSS\",\"Price\":450,\"Description\":\"Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"CHFR\",\"Price\":450,\"Description\":\"Chinese Fried Rice\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"VGTR\",\"Price\":500,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"PITA\",\"Price\":500,\"Description\":\"2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"940\",\"Code\":\"NVTR\",\"Price\":500,\"Description\":\"Non veg trio sandwich\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"14:00\",\"strTraceId\":\"5-7052325277_35BOMDEL6E248_191663702836883\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-10 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"95\"],\"ForCustomerSession\":[{\"AgencySysId\":\"19895\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"info@mybharatyatra.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"8422931095\",\"FirstName\":\"BHARAT B\",\"LastName\":\"BHANUSHALI\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"19895\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-09 16:24:30\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"56\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"56\",\"CustomerMemSysId\":[\"56\"],\"flight_booking_customer\":[[\"142\"]],\"SearchTraceId\":\"b261a-d079d-56ee3-02acb\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_des\":[\"Delhi (DEL)\",\"DEL\"],\"departure_date\":[\"11\\/09\\/2022\",\"\"],\"source_city\":[\"BOM\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"DEL\"],\"source\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"from_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"to_mytrip_city\":[\"\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_city\":[\"Delhi (DEL)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-09-11\"],\"strReturnDate\":\"\",\"sourceCityId\":[18676],\"intCountryCode\":\"IN\",\"destinationCityId\":[7701],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"b261a-d079d-56ee3-02acb\",\"sourceCityAirportCode\":[\"BOM\"],\"destinationCityAirportCode\":[\"DEL\"],\"from\":[\"BOM\"],\"to\":[\"DEL\"],\"sourceCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"11\\/09\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"11 Sep Sun\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-09-09 16:20:21\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"b261a-d079d-56ee3-02acb\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"11\\\\\\/09\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"BOM\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"DEL\\\"],\\\"source\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"destination\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Chhatrapati Shivaji (BOM)\\\"],\\\"to_mytrip_city\\\":[\\\"\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"from_city\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-09-11\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[18676],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[7701],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"b261a-d079d-56ee3-02acb\\\",\\\"sourceCityAirportCode\\\":[\\\"BOM\\\"],\\\"destinationCityAirportCode\\\":[\\\"DEL\\\"],\\\"from\\\":[\\\"BOM\\\"],\\\"to\\\":[\\\"DEL\\\"],\\\"sourceCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"destinationCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"11\\\\\\/09\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"11 Sep Sun\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-09-09 16:20:21\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS105100339127\\\",\\\"bookingId_TJ\\\":\\\"TJS105100339127\\\",\\\"FlightNumber\\\":\\\"6E-248\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"b261a-d079d-56ee3-02acb\\\",\\\"apiTraceId\\\":\\\"5-7052325277_35BOMDEL6E248_191663702836883\\\",\\\"AirlineSysId\\\":\\\"267\\\",\\\"DepartureTime\\\":\\\"22:45\\\",\\\"ArrivalTime\\\":\\\"01:00\\\",\\\"TravelDate\\\":\\\"2022-09-11T22:45\\\",\\\"LocalFromTime\\\":\\\"2022-09-11 22:45\\\",\\\"FromUTCTime\\\":\\\"2022-09-11T22:45\\\",\\\"LocalToTime\\\":\\\"2022-09-12 01:00\\\",\\\"ToUTCTime\\\":\\\"2022-09-12T01:00\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"T\\\",\\\"LAYOVERCity\\\":\\\"\\\",\\\"GroundTime\\\":0,\\\"LAYOVERDuration\\\":null,\\\"FlyingMinutes\\\":135,\\\"DepartureDateTxt\\\":\\\"Sun, 11 Sep\\\",\\\"ArrivalDateTxt\\\":\\\"Mon, 12 Sep\\\",\\\"FlightDuration\\\":\\\"02h 15m\\\",\\\"SourcePlaceSysId\\\":\\\"18676\\\",\\\"DestPlaceSysId\\\":\\\"7701\\\",\\\"SourceAirportCode\\\":\\\"BOM\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"Non-stop\\\",\\\"Stops\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"1,547\\\",\\\"ApiResultIndex\\\":\\\"5-7052325277_35BOMDEL6E248_191663702836883\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":100,\\\"Tax\\\":1460,\\\"YQTax\\\":0,\\\"OtherCharges\\\":778,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":10,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":200,\\\"intPublishedFare\\\":1560,\\\"PublishedFare\\\":1547.3,\\\"PublishedFareAgent\\\":1647.3,\\\"OfferedFareAgent\\\":1547.3,\\\"OfferedFare\\\":1075,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"5-7052325277_0BOMDEL6E248_191680535073545\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"TACTICAL\\\",\\\"fareIdentifierSP\\\":\\\"TACTICAL\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"T\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":142.5,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":142.5,\\\"CommEarnedAgent\\\":100,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":100,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":100,\\\"CostToAgentCustomer\\\":1647.3,\\\"CostToAgent\\\":1547.3,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":1460,\\\"TotalBaseFare\\\":1560,\\\"BaseFareCal\\\":1094.8,\\\"BaseFare\\\":100,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":10,\\\"MFT\\\":72,\\\"OT\\\":778,\\\"MU\\\":200,\\\"YR\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":50.308474576271195,\\\"apiMarkup\\\":169.4915254237288,\\\"IntCommission\\\":142.5,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":142.5,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":100,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":100,\\\"CostToAgentCustomer\\\":1647.3,\\\"CostToAgent\\\":1547.3,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":169.4915254237288,\\\"apiTaxOnMarkup\\\":30.508474576271198,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":50,\\\"IntCommission\\\":142.5,\\\"IntAgencyFixMarkUp\\\":110,\\\"IntTaxOnAgencyFixMarkUp\\\":19.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":50.308474576271195,\\\"PublishFare\\\":1547.3,\\\"CostToCustomer\\\":1547.3,\\\"BaseFareCal\\\":1094.8,\\\"intCommisionEarnedForAgency\\\":452.5,\\\"CostToCompany\\\":1094.8,\\\"intOfferedFare\\\":1075,\\\"intPublishFare\\\":1560,\\\"TripjackMarkup\\\":200,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":100,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":100,\\\"CostToAgentCustomer\\\":1647.3,\\\"CostToAgent\\\":1547.3,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"940\\\",\\\"originAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Mumbai\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2022-09-12T01:00\\\",\\\"SegFlightNumber\\\":\\\"6E-248\\\",\\\"AirlineCode\\\":\\\"6E\\\",\\\"AirlineName\\\":\\\"IndiGo\\\",\\\"FareClass\\\":\\\"T\\\",\\\"originAirportCode\\\":\\\"BOM\\\",\\\"originDepTime\\\":\\\"2022-09-11T22:45\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg (01 Piece only)\\\",\\\"CabinBaggage\\\":\\\"01 Small Handbag under the seat\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":135,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"22:45\\\",\\\"strArrivalDtTime\\\":\\\"01:00\\\",\\\"FlightDuration\\\":\\\"2h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/6E.gif\\\",\\\"BAGGAGEARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"14:00\\\",\\\"strTraceId\\\":\\\"5-7052325277_35BOMDEL6E248_191663702836883\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"BOM-DEL\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3000,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + *fare diff if any* __nls__ Before 72 hrs Rs 2,500 + *fare diff if any*\\\",\\\"fcs\\\":{\\\"CRF\\\":50,\\\"CRFT\\\":9,\\\"ARF\\\":3000,\\\"ARFT\\\":150}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3500,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\\\",\\\"fcs\\\":{\\\"ACF\\\":3500,\\\"ACFT\\\":175,\\\"CCF\\\":50,\\\"CCFT\\\":9}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Paid Seat\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-09-10 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BOM\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"18676\\\",\\\"intDestinationCityId\\\":\\\"7701\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"TCSW\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Tomato Cucumber Cheese Lettuce Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"POHA\\\",\\\"Price\\\":225,\\\"Description\\\":\\\"POHA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VBIR\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"VEG BIRYANI Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"UPMA\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"RAVA UPMA Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"MUYO\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Muesli with yogurt\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"DACH\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"DAL CHAWAL Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"COMI\\\",\\\"Price\\\":275,\\\"Description\\\":\\\"Cornflakes with Milk\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":300,\\\"Description\\\":\\\"Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"ZCHK\\\",\\\"Price\\\":325,\\\"Description\\\":\\\"Nissin Zesty Chicken Keema Noodle\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"NVML\\\",\\\"Price\\\":350,\\\"Description\\\":\\\"Non Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"PTSW\\\",\\\"Price\\\":400,\\\"Description\\\":\\\"Paneer Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CTSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Tikka Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CJSW\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken Junglee Sandwich Combo\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHCT\\\",\\\"Price\\\":425,\\\"Description\\\":\\\"Chicken cucumber tomato sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHSS\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chicken Supreme Salad\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"CHFR\\\",\\\"Price\\\":450,\\\"Description\\\":\\\"Chinese Fried Rice\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"VGTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Veg Trio Sandwich\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"PITA\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"2 Dips with Baked Pita\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"NVTR\\\",\\\"Price\\\":500,\\\"Description\\\":\\\"Non veg trio sandwich\\\"}]],\\\"Baggage\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPE\\\",\\\"Price\\\":1500,\\\"Weight\\\":\\\"3 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPA\\\",\\\"Price\\\":2500,\\\"Weight\\\":\\\"5 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPB\\\",\\\"Price\\\":5000,\\\"Weight\\\":\\\"10 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPC\\\",\\\"Price\\\":7500,\\\"Weight\\\":\\\"15 Kg\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"940\\\",\\\"Code\\\":\\\"XBPD\\\",\\\"Price\\\":15000,\\\"Weight\\\":\\\"30 Kg\\\"}]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"8422931095\",\"leadEmail\":\"info@mybharatyatra.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"BHARAT B\",\"passenger-lastname-1\":\"BHANUSHALI\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Mumbai\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"18676\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"SelectMeals\":[\"\"],\"SelectBaggage\":[\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"19895\",\"Salutation\":\"1\",\"EmailId\":\"info@mybharatyatra.com\",\"FirstName\":\"BHARAT B\",\"LastName\":\"BHANUSHALI\",\"CountryCode\":\"91\",\"MobileNo\":\"8422931095\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[],\"_sessiondata\":{\"EmailId\":\"info@mybharatyatra.com\",\"UserSysId\":\"21600\",\"CustomerSysId\":\"237575\",\"AgencySysId\":\"19895\",\"MasterAgencySysId\":\"12577\",\"FirstName\":\"Bharat\",\"LastName\":\"Bhanushali\",\"Password_cu\":\"\",\"AgencyName\":\"Test Company\",\"AgencyCode\":\"21113\",\"ContactNo1\":\"8422931095\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"16F0108E-0BFE-4B0D-A6CA-D79C9F62A60C\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":1,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":\"0\",\"paymentMode\":\"2\",\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CPAmountWithTax\":0}','2022-09-09 16:25:15'),(499,'a051d-1a467-bde2c-24e4d','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-392\",\"keyIndex\":235,\"SegFlightNumberArr\":\"SG-392\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-6713381035_1PATBOMSG392_2408492661449\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:45\",\"ArrivalTime\":\"13:40\",\"TravelDate\":\"2022-10-08T10:45\",\"LocalFromTime\":\"2022-10-08 10:45\",\"FromUTCTime\":\"2022-10-08T10:45\",\"LocalToTime\":\"2022-10-08 13:40\",\"ToUTCTime\":\"2022-10-08T13:40\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":175,\"DepartureDateTxt\":\"Sat, 08 Oct\",\"ArrivalDateTxt\":\"Sat, 08 Oct\",\"FlightDuration\":\"2h 55m\",\"SourcePlaceSysId\":\"20918\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":8,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":17627,\"PublishedFareTxt\":\"17,627\",\"ApiResultIndex\":\"11-6713381035_1PATBOMSG392_2408492661449\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a051d-1a467-bde2c-24e4d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16500,\"Tax\":690.1500000000001,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":337.04999999999995,\"intPublishedFare\":17190.15,\"PublishedFare\":17627,\"PublishedFarePerPax\":5876,\"OfferedFare\":16696.35,\"CommissionEarned\":156.75,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.25,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-6713381035_1PATBOMSG392_2408492661449\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":141.41,\"apiMarkup\":285.64,\"IntCommission\":3.14,\"apiTaxOnMarkup\":51.41,\"NoOfSeatAvailable\":8,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":690.1500000000001,\"BaseFareCal\":16837.76,\"BaseFare\":16500,\"CommissionEarned\":156.75,\"TDS\":-8.25,\"MF\":45,\"YQ\":0,\"AGST\":0,\"MFT\":8.100000000000001,\"OT\":300,\"MU\":337.04999999999995,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":141.41,\"apiMarkup\":285.64,\"IntCommission\":3.14,\"apiTaxOnMarkup\":51.41,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":285.64,\"apiTaxOnMarkup\":51.41,\"IntNetCommission\":156.75,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.14,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":141.41,\"PublishFare\":17626.54,\"CostToCustomer\":17626.54,\"BaseFareCal\":16837.76,\"intCommisionEarnedForAgency\":788.77,\"CostToCompany\":16837.76,\"intOfferedFare\":16696.35,\"intPublishFare\":17190.15,\"TripjackMarkup\":337.04999999999995,\"TripjackCommission\":156.75,\"TripjackTDS\":\"8.25\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02W\"},\"Segments\":[{\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-10-08T13:40\",\"SegFlightNumber\":\"SG-392\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-10-08T10:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":8,\"strDepartureDtTime\":\"10:45\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-12 18:45:53'),(500,'5320d-62a02-5f1e5-68db2','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6917\",\"keyIndex\":18,\"SegFlightNumberArr\":\"6E-6917, 6E-2028\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3153379619_8JAIDEL6E6917DELVTZ6E2028_7615540612475\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:20\",\"ArrivalTime\":\"22:00\",\"TravelDate\":\"2022-09-17T14:20\",\"LocalFromTime\":\"2022-09-17 14:20\",\"FromUTCTime\":\"2022-09-17T14:20\",\"LocalToTime\":\"2022-09-17 22:00\",\"ToUTCTime\":\"2022-09-17T22:00\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":460,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"7h 40m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"28993\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"VTZ\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7268,\"PublishedFareTxt\":\"7,268\",\"ApiResultIndex\":\"5-3153379619_8JAIDEL6E6917DELVTZ6E2028_7615540612265\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5320d-62a02-5f1e5-68db2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5781,\"Tax\":1304.63,\"YQTax\":0,\"OtherCharges\":1148,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":138.93,\"intPublishedFare\":7085.63,\"PublishedFare\":7268,\"PublishedFarePerPax\":7268,\"OfferedFare\":6891.78,\"CommissionEarned\":54.92,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.89,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3153379619_8JAIDEL6E6917DELVTZ6E2028_7615540612475\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":57.19,\"apiMarkup\":117.74,\"IntCommission\":1.1,\"apiTaxOnMarkup\":21.19,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.1,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1304.63,\"BaseFareCal\":6948.97,\"BaseFare\":5781,\"CommissionEarned\":54.92,\"TDS\":-2.89,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1148,\"MU\":138.93,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":57.19,\"apiMarkup\":117.74,\"IntCommission\":1.1,\"apiTaxOnMarkup\":21.19,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.1,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":117.74,\"apiTaxOnMarkup\":21.19,\"IntNetCommission\":54.92,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.1,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":57.19,\"PublishFare\":7267.81,\"CostToCustomer\":7267.81,\"BaseFareCal\":6948.97,\"intCommisionEarnedForAgency\":318.84,\"CostToCompany\":6948.97,\"intOfferedFare\":6891.78,\"intPublishFare\":7085.63,\"TripjackMarkup\":138.93,\"TripjackCommission\":54.92,\"TripjackTDS\":\"2.89\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"08U\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-09-17T15:20\",\"SegFlightNumber\":\"6E-6917\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-09-17T14:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":60,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:20\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Vishakhapatnam\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Vishakhapatanam\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VTZ\",\"destinationArrTime\":\"2022-09-17T22:00\",\"SegFlightNumber\":\"6E-2028\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-17T19:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:35\",\"strArrivalDtTime\":\"22:00\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-12 22:54:49'),(502,'fa72d-5cc26-d70e4-eb167','{\"FlightBookingData\":[{\"bookingId\":\"TJ105642635332\",\"FlightNumber\":\"6E-864\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:15\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-09-23T16:15\",\"LocalFromTime\":\"2022-09-23 16:15\",\"FromUTCTime\":\"2022-09-23T16:15\",\"LocalToTime\":\"2022-09-23 18:25\",\"ToUTCTime\":\"2022-09-23T18:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 23 Sep\",\"ArrivalDateTxt\":\"Fri, 23 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3795.11,\"PublishedFareTxt\":\"3,795\",\"ApiResultIndex\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3250,\"ARFT\":162.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACFT\":175,\"CCFT\":9,\"CCF\":50,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3056,\"Tax\":739.11,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":158,\"CarrierMiscFee\":0,\"MUFee\":74.41,\"intPublishedFare\":3795.11,\"PublishedFare\":4002.66,\"OfferedFare\":3691.67,\"CommissionEarned\":29.03,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.53,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2298778305_0DELBOM6E864_18057424662474\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":47.35,\"apiMarkup\":63.06,\"IntCommission\":0.58,\"apiTaxOnMarkup\":11.35,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":739.11,\"BaseFareCal\":3739.02,\"BaseFare\":3056,\"CommissionEarned\":29.03,\"TDS\":-1.53,\"MF\":15,\"YQ\":0,\"AGST\":158,\"MFT\":2.7,\"OT\":489,\"MU\":74.41,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":47.35,\"apiMarkup\":63.06,\"IntCommission\":0.58,\"apiTaxOnMarkup\":11.35,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":63.06,\"apiTaxOnMarkup\":11.35,\"IntNetCommission\":29.03,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.58,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":47.35,\"PublishFare\":4002.66,\"CostToCustomer\":4002.66,\"BaseFareCal\":3739.02,\"intCommisionEarnedForAgency\":263.64,\"CostToCompany\":3739.02,\"intOfferedFare\":3691.67,\"intPublishFare\":3795.11,\"TripjackMarkup\":74.41,\"TripjackCommission\":29.03,\"TripjackTDS\":\"1.53\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-23T18:25\",\"SegFlightNumber\":\"6E-864\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-23T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"334\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"fa72d-5cc26-d70e4-eb167\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105642635332\",\"FlightNumber\":\"6E-864\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"strTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:15\",\"ArrivalTime\":\"18:25\",\"TravelDate\":\"2022-09-23T16:15\",\"LocalFromTime\":\"2022-09-23 16:15\",\"FromUTCTime\":\"2022-09-23T16:15\",\"LocalToTime\":\"2022-09-23 18:25\",\"ToUTCTime\":\"2022-09-23T18:25\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 23 Sep\",\"ArrivalDateTxt\":\"Fri, 23 Sep\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":3795.11,\"ApiResultIndex\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"fa72d-5cc26-d70e4-eb167\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3056,\"Tax\":739.11,\"YQTax\":0,\"OtherCharges\":489,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":158,\"CarrierMiscFee\":0,\"MUFee\":74.41,\"intPublishedFare\":3795.11,\"PublishedFare\":4002.66,\"OfferedFare\":3691.67,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":739.11,\"BaseFareCal\":3739.02,\"BaseFare\":3056,\"CommissionEarned\":29.03,\"TDS\":-1.53,\"MF\":15,\"YQ\":0,\"AGST\":158,\"MFT\":2.7,\"OT\":489,\"MU\":74.41,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.58,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"334\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-23T18:25\",\"SegFlightNumber\":\"6E-864\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-23T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"18:25\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-2298778305_6DELBOM6E864_94251117919237\",\"localFromDateTime\":\"2022-09-23 16:15\",\"localToDateTime\":\"2022-09-23 18:25\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"96\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"57\",\"CustomerMemSysId\":[\"57\"],\"flight_booking_id\":[\"96\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"abc@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7364773884\",\"FirstName\":\"ABC\",\"LastName\":\"XYZ\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-13-23-42-57\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"57\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"57\",\"CustomerMemSysId\":[\"57\"],\"flight_booking_customer\":[[\"143\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"23\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"23\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-23\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"fa72d-5cc26-d70e4-eb167\",\"from_city_\":\"1__DEL-BOM\"},\"sessionData\":{\"CustomerSysId\":\"57\",\"CustomerMemSysId\":[\"57\"],\"flight_booking_id\":[\"96\"]},\"validateCoupon\":null,\"validateData\":null}','2022-09-13 23:42:57'),(503,'ead63-a8eb9-b5e1c-77094','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-603\",\"keyIndex\":124,\"SegFlightNumberArr\":\"AI-603\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-0778894521_121BOMBLRAI603_48893168248409\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"07:50\",\"TravelDate\":\"2022-09-15T06:10\",\"LocalFromTime\":\"2022-09-15 06:10\",\"FromUTCTime\":\"2022-09-15T06:10\",\"LocalToTime\":\"2022-09-15 07:50\",\"ToUTCTime\":\"2022-09-15T07:50\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":100,\"DepartureDateTxt\":\"Thu, 15 Sep\",\"ArrivalDateTxt\":\"Thu, 15 Sep\",\"FlightDuration\":\"1h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2584,\"PublishedFareTxt\":\"2,584\",\"ApiResultIndex\":\"21-10-15-2-0778894521_121BOMBLRAI603_48893168248229\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"ead63-a8eb9-b5e1c-77094\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1670,\"Tax\":704.25,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":170,\"MUFee\":46.55,\"intPublishedFare\":2374.25,\"PublishedFare\":2584,\"PublishedFarePerPax\":2584,\"OfferedFare\":2300.86,\"CommissionEarned\":26.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.41,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-0778894521_121BOMBLRAI603_48893168248409\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":43.1,\"apiMarkup\":39.45,\"IntCommission\":0.54,\"apiTaxOnMarkup\":7.1,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":704.25,\"BaseFareCal\":2343.96,\"BaseFare\":1670,\"CommissionEarned\":26.84,\"TDS\":-1.41,\"MF\":15,\"YQ\":0,\"AGST\":92,\"MFT\":2.7,\"OT\":378,\"MU\":46.55,\"YR\":170,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":43.1,\"apiMarkup\":39.45,\"IntCommission\":0.54,\"apiTaxOnMarkup\":7.1,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":39.45,\"apiTaxOnMarkup\":7.1,\"IntNetCommission\":26.84,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.54,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":43.1,\"PublishFare\":2583.95,\"CostToCustomer\":2583.95,\"BaseFareCal\":2343.96,\"intCommisionEarnedForAgency\":239.99,\"CostToCompany\":2343.96,\"intOfferedFare\":2300.86,\"intPublishFare\":2374.25,\"TripjackMarkup\":46.55,\"TripjackCommission\":26.84,\"TripjackTDS\":\"1.41\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"02Q\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-15T07:50\",\"SegFlightNumber\":\"AI-603\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":100,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-14 09:40:37'),(504,'710ab-54cd2-f4247-f8906','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-767\",\"keyIndex\":155,\"SegFlightNumberArr\":\"SG-767\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-8271339482_1PATBLRSG767_3715150330128\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"19:30\",\"TravelDate\":\"2022-09-17T16:40\",\"LocalFromTime\":\"2022-09-17 16:40\",\"FromUTCTime\":\"2022-09-17T16:40\",\"LocalToTime\":\"2022-09-17 19:30\",\"ToUTCTime\":\"2022-09-17T19:30\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"20918\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":9523,\"PublishedFareTxt\":\"9,522\",\"ApiResultIndex\":\"11-8271339482_1PATBLRSG767_3715150330128\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"710ab-54cd2-f4247-f8906\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8600,\"Tax\":412.1,\"YQTax\":0,\"OtherCharges\":200,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":176.7,\"intPublishedFare\":9012.1,\"PublishedFare\":9523,\"PublishedFarePerPax\":4762,\"OfferedFare\":8753.7,\"CommissionEarned\":81.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.3,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-8271339482_1PATBLRSG767_3715150330128\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":116.95,\"apiMarkup\":149.75,\"IntCommission\":1.63,\"apiTaxOnMarkup\":26.95,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":1.63,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":412.1,\"BaseFareCal\":8870.65,\"BaseFare\":8600,\"CommissionEarned\":81.7,\"TDS\":-4.3,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":200,\"MU\":176.7,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":116.95,\"apiMarkup\":149.75,\"IntCommission\":1.63,\"apiTaxOnMarkup\":26.95,\"FixedMarkUp\":500,\"GSTOnMarkUp\":90,\"CommEarned\":1.63,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":149.75,\"apiTaxOnMarkup\":26.95,\"IntNetCommission\":81.7,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.63,\"IntAgencyFixMarkUp\":500,\"IntTaxOnAgencyFixMarkUp\":90,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":116.95,\"PublishFare\":9522.03,\"CostToCustomer\":9522.03,\"BaseFareCal\":8870.65,\"intCommisionEarnedForAgency\":651.38,\"CostToCompany\":8870.65,\"intOfferedFare\":8753.7,\"intPublishFare\":9012.1,\"TripjackMarkup\":176.7,\"TripjackCommission\":81.7,\"TripjackTDS\":\"4.3\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IntAdddimarkup\":500},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-17T19:30\",\"SegFlightNumber\":\"SG-767\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-17T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"19:30\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-14 14:25:58'),(509,'5fab4-08094-b457e-34cad','{\"BookingData\":[{\"bookingId\":\"TJ103542679772\",\"FlightNumber\":\"6E-6162\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:40\",\"ArrivalTime\":\"14:20\",\"TravelDate\":\"2022-09-17T11:40\",\"LocalFromTime\":\"2022-09-17 11:40\",\"FromUTCTime\":\"2022-09-17T11:40\",\"LocalToTime\":\"2022-09-17 14:20\",\"ToUTCTime\":\"2022-09-17T14:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11062.3,\"PublishedFareTxt\":\"11,062\",\"ApiResultIndex\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"PAT-BLR\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARF\":3250,\"CRFT\":9,\"ARFT\":162.5,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9186,\"Tax\":1876.3,\"YQTax\":0,\"OtherCharges\":1154,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":0,\"MUFee\":216.9,\"intPublishedFare\":11062.3,\"PublishedFare\":11212.79,\"OfferedFare\":10758.14,\"CommissionEarned\":87.26,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5864604569_0PATBLR6E6162_97026005133046\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":69.09,\"apiMarkup\":183.81,\"IntCommission\":1.75,\"apiTaxOnMarkup\":33.09,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1876.3,\"BaseFareCal\":10827.23,\"BaseFare\":9186,\"CommissionEarned\":87.26,\"TDS\":-4.6,\"MF\":30,\"YQ\":0,\"AGST\":470,\"MFT\":5.4,\"OT\":1154,\"MU\":216.9,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":69.09,\"apiMarkup\":183.81,\"IntCommission\":1.75,\"apiTaxOnMarkup\":33.09,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":183.81,\"apiTaxOnMarkup\":33.09,\"IntNetCommission\":87.26,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.75,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":69.09,\"PublishFare\":11212.79,\"CostToCustomer\":11212.79,\"BaseFareCal\":10827.23,\"intCommisionEarnedForAgency\":385.56,\"CostToCompany\":10827.23,\"intOfferedFare\":10758.14,\"intPublishFare\":11062.3,\"TripjackMarkup\":216.9,\"TripjackCommission\":87.26,\"TripjackTDS\":\"4.6\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"306\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-17T14:20\",\"SegFlightNumber\":\"6E-6162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-17T11:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:40\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"306\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"5fab4-08094-b457e-34cad\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":20918,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103542679772\",\"FlightNumber\":\"6E-6162\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"strTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:40\",\"ArrivalTime\":\"14:20\",\"TravelDate\":\"2022-09-17T11:40\",\"LocalFromTime\":\"2022-09-17 11:40\",\"FromUTCTime\":\"2022-09-17T11:40\",\"LocalToTime\":\"2022-09-17 14:20\",\"ToUTCTime\":\"2022-09-17T14:20\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":20918,\"DestPlaceSysId\":2262,\"SourceAirportCode\":\"PAT\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":11062.3,\"ApiResultIndex\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"5fab4-08094-b457e-34cad\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9186,\"Tax\":1876.3,\"YQTax\":0,\"OtherCharges\":1154,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":470,\"CarrierMiscFee\":0,\"MUFee\":216.9,\"intPublishedFare\":11062.3,\"PublishedFare\":11212.79,\"OfferedFare\":10758.14,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1876.3,\"BaseFareCal\":10827.23,\"BaseFare\":9186,\"CommissionEarned\":87.26,\"TDS\":-4.6,\"MF\":30,\"YQ\":0,\"AGST\":470,\"MFT\":5.4,\"OT\":1154,\"MU\":216.9,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"306\",\"originAirportName\":\"Jai Prakash Narayan Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Patna\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-17T14:20\",\"SegFlightNumber\":\"6E-6162\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"PAT\",\"originDepTime\":\"2022-09-17T11:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:40\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-5864604569_0PATBLR6E6162_96743885024116\",\"localFromDateTime\":\"2022-09-17 11:40\",\"localToDateTime\":\"2022-09-17 14:20\",\"strSourceAirportCode\":\"PAT\",\"strDestinationAirportCode\":\"BLR\",\"intMemberCount\":2,\"intSourceCityId\":20918,\"intDestinationCityId\":2262,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Patna (PAT)\",\"mytrip_city_to\":\"Bengaluru (BLR)\",\"source_city\":\"PAT\",\"ContSysId_1\":\"101\",\"destination_city\":\"BLR\",\"ContSysId\":\"101\",\"source\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"destination\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"departure_date\":\"17\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Jai Prakash Narayan Arpt (PAT)\",\"to_mytrip_city\":\" IN - Bengaluru Intl Arpt (BLR)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"PAT\",\"destinationCityAirportCode\":\"BLR\",\"from\":\"PAT\",\"to\":\"BLR\",\"sourceCityText\":\"Patna, IN - Jai Prakash Narayan Arpt (PAT), India\",\"destinationCityText\":\"Bengaluru, IN - Bengaluru Intl Arpt (BLR), India\",\"sourceCityId\":20918,\"destinationCityId\":2262,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"17\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-17\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"5fab4-08094-b457e-34cad\",\"from_city_\":\"1__PAT-BLR\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Patna+%28PAT%29&mytrip_city_to=Bengaluru+%28BLR%29&source_city=PAT&ContSysId_1=101&destination_city=BLR&ContSysId=101&source=Patna%2C+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29%2C+India&destination=Bengaluru%2C+IN+-+Bengaluru+Intl+Arpt+%28BLR%29%2C+India&departure_date=17%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Jai+Prakash+Narayan+Arpt+%28PAT%29&to_mytrip_city=+IN+-+Bengaluru+Intl+Arpt+%28BLR%29&adults=2&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"niteshranjan1992@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9691557224\",\"FirstName\":\"Nitesh\",\"LastName\":\"Ranjan\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-14-14-39-12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"58\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"58\",\"EmailId\":\"niteshranjan1992@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9691557224\",\"FirstName\":\"Nancy\",\"LastName\":\"Srivastava\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-14-14-39-12\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"56\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"450658\",\"TPSysId\":\"450659\",\"VersionId\":[\"102326\"],\"CustomerSysId\":\"241283\",\"TrxId\":\"33755\",\"FareBreakdownid\":[\"360188\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"144\",\"145\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"58\",\"CustomerMemSysId\":[\"58\",\"56\"],\"flight_booking_id\":[\"97\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"97\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":11212.79},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"241283\",\"TPSysId\":\"450659\",\"MasterTPSysId\":\"450658\",\"ProposalID\":\"450659\\/V1\",\"InvoiceDate\":\"2022-09-14\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-14\",\"PaymentDate\":\"2022-09-14\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":11140.79,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":11212.79,\"TotalDueAmount\":0,\"InvoiceValue\":11212.79,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"PAT-BLR-IndiGo 6E-6162\",\"ItemQty\":1,\"ItemRates\":10740.79,\"Total\":10740.79,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":11212.79,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":11140.79,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-14 14:40:07'),(510,'b6422-f7912-d7013-936b2','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-2411\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-2411\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8313316980_0BOMATQG82411_7986857955942\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"974\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5283,\"PublishedFareTxt\":\"5,283\",\"ApiResultIndex\":\"1-8313316980_0BOMATQG82411_7986857954002\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b6422-f7912-d7013-936b2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":731,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5283,\"PublishedFarePerPax\":5283,\"OfferedFare\":4944.06,\"CommissionEarned\":91.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-8313316980_0BOMATQG82411_7986857955942\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":731,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":85.35,\"apiTaxOnMarkup\":15.36,\"IntNetCommission\":91.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.83,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.36,\"PublishFare\":5282.6,\"CostToCustomer\":5282.6,\"BaseFareCal\":4995.42,\"intCommisionEarnedForAgency\":287.18,\"CostToCompany\":4995.42,\"intOfferedFare\":4944.06,\"intPublishFare\":5136.41,\"TripjackMarkup\":100.71,\"TripjackCommission\":91.64,\"TripjackTDS\":\"4.82\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-14 15:55:48'),(514,'939ae-6eaf6-45294-42650','{\"BookingData\":[{\"bookingId\":\"TJ106742688431\",\"FlightNumber\":\"G8-2411\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5136.41,\"PublishedFareTxt\":\"5,136\",\"ApiResultIndex\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-ATQ\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"ACF\":3500,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5282.6,\"OfferedFare\":4944.06,\"CommissionEarned\":91.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-9998062218_0BOMATQG82411_86240947230924\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":85.35,\"apiTaxOnMarkup\":15.36,\"IntNetCommission\":91.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.83,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.36,\"PublishFare\":5282.6,\"CostToCustomer\":5282.6,\"BaseFareCal\":4995.42,\"intCommisionEarnedForAgency\":287.18,\"CostToCompany\":4995.42,\"intOfferedFare\":4944.06,\"intPublishFare\":5136.41,\"TripjackMarkup\":100.71,\"TripjackCommission\":91.64,\"TripjackTDS\":\"4.82\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"99\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"99\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"939ae-6eaf6-45294-42650\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106742688431\",\"FlightNumber\":\"G8-2411\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"strTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5136.41,\"ApiResultIndex\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"939ae-6eaf6-45294-42650\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5282.6,\"OfferedFare\":4944.06,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"99\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-9998062218_0BOMATQG82411_19280931752465\",\"localFromDateTime\":\"2022-09-16 08:50\",\"localToDateTime\":\"2022-09-16 11:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Amritsar (ATQ)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"ATQ\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Amritsar, IN - Raja Sansi Arpt (ATQ), India\",\"departure_date\":\"16\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Raja Sansi Arpt (ATQ)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"ATQ\",\"from\":\"BOM\",\"to\":\"ATQ\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Amritsar, IN - Raja Sansi Arpt (ATQ), India\",\"sourceCityId\":18676,\"destinationCityId\":974,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"16\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-16\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"939ae-6eaf6-45294-42650\",\"from_city_\":\"1__BOM-ATQ\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Amritsar+%28ATQ%29&source_city=BOM&ContSysId_1=101&destination_city=ATQ&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Amritsar%2C+IN+-+Raja+Sansi+Arpt+%28ATQ%29%2C+India&departure_date=16%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Raja+Sansi+Arpt+%28ATQ%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"udaynandu2605@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9819119819\",\"FirstName\":\"Uday\",\"LastName\":\"Nandu\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-14-15-58-17\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"59\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"450769\",\"TPSysId\":\"450770\",\"VersionId\":[\"102382\"],\"CustomerSysId\":\"241372\",\"TrxId\":\"33771\",\"FareBreakdownid\":[\"360197\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"146\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"59\",\"CustomerMemSysId\":[\"59\"],\"flight_booking_id\":[\"98\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"98\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5282.6},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"241372\",\"TPSysId\":\"450770\",\"MasterTPSysId\":\"450769\",\"ProposalID\":\"450770\\/V1\",\"InvoiceDate\":\"2022-09-14\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-14\",\"PaymentDate\":\"2022-09-14\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5210.6,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5282.6,\"TotalDueAmount\":0,\"InvoiceValue\":5282.6,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-ATQ-Go First G8-2411\",\"ItemQty\":1,\"ItemRates\":4810.6,\"Total\":4810.6,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5282.6,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":5210.6,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-14 16:01:57'),(518,'eeeb5-8818d-c5af2-20656','{\"BookingData\":[{\"bookingId\":\"TJ101542690971\",\"FlightNumber\":\"G8-2411\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5136.41,\"PublishedFareTxt\":\"5,136\",\"ApiResultIndex\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-ATQ\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3000,\"ARFT\":150,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"ACFT\":175,\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5282.6,\"OfferedFare\":4944.06,\"CommissionEarned\":91.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-8208508989_0BOMATQG82411_76930105743124\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.36,\"apiMarkup\":85.35,\"IntCommission\":1.83,\"apiTaxOnMarkup\":15.36,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":85.35,\"apiTaxOnMarkup\":15.36,\"IntNetCommission\":91.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.83,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.36,\"PublishFare\":5282.6,\"CostToCustomer\":5282.6,\"BaseFareCal\":4995.42,\"intCommisionEarnedForAgency\":287.18,\"CostToCompany\":4995.42,\"intOfferedFare\":4944.06,\"intPublishFare\":5136.41,\"TripjackMarkup\":100.71,\"TripjackCommission\":91.64,\"TripjackTDS\":\"4.82\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"991\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"991\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"eeeb5-8818d-c5af2-20656\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101542690971\",\"FlightNumber\":\"G8-2411\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"strTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"08:50\",\"ArrivalTime\":\"11:15\",\"TravelDate\":\"2022-09-16T08:50\",\"LocalFromTime\":\"2022-09-16 08:50\",\"FromUTCTime\":\"2022-09-16T08:50\",\"LocalToTime\":\"2022-09-16 11:15\",\"ToUTCTime\":\"2022-09-16T11:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Fri, 16 Sep\",\"ArrivalDateTxt\":\"Fri, 16 Sep\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":974,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"ATQ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5136.41,\"ApiResultIndex\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"eeeb5-8818d-c5af2-20656\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4287,\"Tax\":849.41,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.71,\"intPublishedFare\":5136.41,\"PublishedFare\":5282.6,\"OfferedFare\":4944.06,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.41,\"BaseFareCal\":4995.42,\"BaseFare\":4287,\"CommissionEarned\":91.64,\"TDS\":-4.82,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.71,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"991\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Raja Sansi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Amritsar\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"ATQ\",\"destinationArrTime\":\"2022-09-16T11:15\",\"SegFlightNumber\":\"G8-2411\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-16T08:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:50\",\"strArrivalDtTime\":\"11:15\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-8208508989_0BOMATQG82411_85587633064535\",\"localFromDateTime\":\"2022-09-16 08:50\",\"localToDateTime\":\"2022-09-16 11:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"ATQ\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":974,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Amritsar (ATQ)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"ATQ\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Amritsar, IN - Raja Sansi Arpt (ATQ), India\",\"departure_date\":\"16\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Raja Sansi Arpt (ATQ)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"ATQ\",\"from\":\"BOM\",\"to\":\"ATQ\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Amritsar, IN - Raja Sansi Arpt (ATQ), India\",\"sourceCityId\":18676,\"destinationCityId\":974,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"16\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-16\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"eeeb5-8818d-c5af2-20656\",\"from_city_\":\"1__BOM-ATQ\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Amritsar+%28ATQ%29&source_city=BOM&ContSysId_1=101&destination_city=ATQ&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Amritsar%2C+IN+-+Raja+Sansi+Arpt+%28ATQ%29%2C+India&departure_date=16%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Raja+Sansi+Arpt+%28ATQ%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"udaynandu2605@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9819119819\",\"FirstName\":\"Uday \",\"LastName\":\"Nandu\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-14-16-23-59\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"57\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"450812\",\"TPSysId\":\"450813\",\"VersionId\":[\"102404\"],\"CustomerSysId\":\"241372\",\"TrxId\":\"33783\",\"FareBreakdownid\":[\"360203\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"147\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"57\",\"CustomerMemSysId\":[\"57\"],\"flight_booking_id\":[\"99\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"99\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5282.6},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"241372\",\"TPSysId\":\"450813\",\"MasterTPSysId\":\"450812\",\"ProposalID\":\"450813\\/V1\",\"InvoiceDate\":\"2022-09-14\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-14\",\"PaymentDate\":\"2022-09-14\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":5210.6,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5282.6,\"TotalDueAmount\":0,\"InvoiceValue\":5282.6,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-ATQ-Go First G8-2411\",\"ItemQty\":1,\"ItemRates\":4810.6,\"Total\":4810.6,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5282.6,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":5210.6,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-14 16:24:45'),(520,'a85a2-bb5a5-f28a7-5eb72','{\"FlightBookingData\":[{\"bookingId\":\"TJ107242694152\",\"FlightNumber\":\"G8-354\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-18T22:45\",\"LocalFromTime\":\"2022-09-18 22:45\",\"FromUTCTime\":\"2022-09-18T22:45\",\"LocalToTime\":\"2022-09-19 01:00\",\"ToUTCTime\":\"2022-09-19T01:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4114.37,\"PublishedFareTxt\":\"4,114\",\"ApiResultIndex\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3000,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCF\":50,\"ACF\":3500,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3330,\"Tax\":784.37,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":172,\"CarrierMiscFee\":0,\"MUFee\":80.67,\"intPublishedFare\":4114.37,\"PublishedFare\":4280.62,\"OfferedFare\":3962.53,\"CommissionEarned\":71.17,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.75,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0541647184_0DELBOMG8354_66958990177361\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.31,\"apiMarkup\":68.36,\"IntCommission\":1.42,\"apiTaxOnMarkup\":12.31,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":784.37,\"BaseFareCal\":4010.84,\"BaseFare\":3330,\"CommissionEarned\":71.17,\"TDS\":-3.75,\"MF\":15,\"YQ\":0,\"AGST\":172,\"MFT\":2.7,\"OT\":514,\"MU\":80.67,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.31,\"apiMarkup\":68.36,\"IntCommission\":1.42,\"apiTaxOnMarkup\":12.31,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":68.36,\"apiTaxOnMarkup\":12.31,\"IntNetCommission\":71.17,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.42,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.31,\"PublishFare\":4280.62,\"CostToCustomer\":4280.62,\"BaseFareCal\":4010.84,\"intCommisionEarnedForAgency\":269.79,\"CostToCompany\":4010.84,\"intOfferedFare\":3962.53,\"intPublishFare\":4114.37,\"TripjackMarkup\":80.67,\"TripjackCommission\":71.17,\"TripjackTDS\":\"3.75\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"101\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-19T01:00\",\"SegFlightNumber\":\"G8-354\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"101\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a85a2-bb5a5-f28a7-5eb72\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107242694152\",\"FlightNumber\":\"G8-354\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"strTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-18T22:45\",\"LocalFromTime\":\"2022-09-18 22:45\",\"FromUTCTime\":\"2022-09-18T22:45\",\"LocalToTime\":\"2022-09-19 01:00\",\"ToUTCTime\":\"2022-09-19T01:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4114.37,\"ApiResultIndex\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"a85a2-bb5a5-f28a7-5eb72\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3330,\"Tax\":784.37,\"YQTax\":0,\"OtherCharges\":514,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":172,\"CarrierMiscFee\":0,\"MUFee\":80.67,\"intPublishedFare\":4114.37,\"PublishedFare\":4280.62,\"OfferedFare\":3962.53,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":784.37,\"BaseFareCal\":4010.84,\"BaseFare\":3330,\"CommissionEarned\":71.17,\"TDS\":-3.75,\"MF\":15,\"YQ\":0,\"AGST\":172,\"MFT\":2.7,\"OT\":514,\"MU\":80.67,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":1.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"101\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-19T01:00\",\"SegFlightNumber\":\"G8-354\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-0541647184_2DELBOMG8354_104316879101343\",\"localFromDateTime\":\"2022-09-18 22:45\",\"localToDateTime\":\"2022-09-19 01:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"100\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"58\",\"CustomerMemSysId\":[\"58\"],\"flight_booking_id\":[\"100\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"udaynandu2605@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9819119819\",\"FirstName\":\"Uday\",\"LastName\":\"Nandu\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-14-16-54-21\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"58\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"58\",\"CustomerMemSysId\":[\"58\"],\"flight_booking_customer\":[[\"148\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"18\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"18\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-18\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"a85a2-bb5a5-f28a7-5eb72\",\"from_city_\":\"1__DEL-BOM\"},\"sessionData\":{\"CustomerSysId\":\"58\",\"CustomerMemSysId\":[\"58\"],\"flight_booking_id\":[\"100\"]},\"validateCoupon\":null,\"validateData\":null}','2022-09-14 16:54:21'),(524,'85831-7301b-0c518-baedd','{\"BookingData\":[{\"bookingId\":\"TJ108942694565\",\"FlightNumber\":\"G8-354\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-18T22:45\",\"LocalFromTime\":\"2022-09-18 22:45\",\"FromUTCTime\":\"2022-09-18T22:45\",\"LocalToTime\":\"2022-09-19 01:00\",\"ToUTCTime\":\"2022-09-19T01:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":8228.74,\"PublishedFareTxt\":\"8,229\",\"ApiResultIndex\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":150,\"CRFT\":9,\"ARF\":3000}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6660,\"Tax\":1568.74,\"YQTax\":0,\"OtherCharges\":1028,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":344,\"CarrierMiscFee\":0,\"MUFee\":161.34,\"intPublishedFare\":8228.74,\"PublishedFare\":8325.25,\"OfferedFare\":7925.06,\"CommissionEarned\":142.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-7.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2150401875_0DELBOMG8354_105700208607285\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":60.61,\"apiMarkup\":136.73,\"IntCommission\":2.85,\"apiTaxOnMarkup\":24.61,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1568.74,\"BaseFareCal\":7985.67,\"BaseFare\":6660,\"CommissionEarned\":142.34,\"TDS\":-7.5,\"MF\":30,\"YQ\":0,\"AGST\":344,\"MFT\":5.4,\"OT\":1028,\"MU\":161.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":60.61,\"apiMarkup\":136.73,\"IntCommission\":2.85,\"apiTaxOnMarkup\":24.61,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":136.73,\"apiTaxOnMarkup\":24.61,\"IntNetCommission\":142.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.85,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":60.61,\"PublishFare\":8325.25,\"CostToCustomer\":8325.25,\"BaseFareCal\":7985.67,\"intCommisionEarnedForAgency\":339.58,\"CostToCompany\":7985.67,\"intOfferedFare\":7925.06,\"intPublishFare\":8228.74,\"TripjackMarkup\":161.34,\"TripjackCommission\":142.34,\"TripjackTDS\":\"7.5\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"584\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-19T01:00\",\"SegFlightNumber\":\"G8-354\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"584\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"85831-7301b-0c518-baedd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108942694565\",\"FlightNumber\":\"G8-354\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"strTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:45\",\"ArrivalTime\":\"01:00\",\"TravelDate\":\"2022-09-18T22:45\",\"LocalFromTime\":\"2022-09-18 22:45\",\"FromUTCTime\":\"2022-09-18T22:45\",\"LocalToTime\":\"2022-09-19 01:00\",\"ToUTCTime\":\"2022-09-19T01:00\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":8228.74,\"ApiResultIndex\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"85831-7301b-0c518-baedd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6660,\"Tax\":1568.74,\"YQTax\":0,\"OtherCharges\":1028,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":344,\"CarrierMiscFee\":0,\"MUFee\":161.34,\"intPublishedFare\":8228.74,\"PublishedFare\":8325.25,\"OfferedFare\":7925.06,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1568.74,\"BaseFareCal\":7985.67,\"BaseFare\":6660,\"CommissionEarned\":142.34,\"TDS\":-7.5,\"MF\":30,\"YQ\":0,\"AGST\":344,\"MFT\":5.4,\"OT\":1028,\"MU\":161.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.85,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"584\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-19T01:00\",\"SegFlightNumber\":\"G8-354\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-18T22:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"01:00\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-2150401875_2DELBOMG8354_3780689664844\",\"localFromDateTime\":\"2022-09-18 22:45\",\"localToDateTime\":\"2022-09-19 01:00\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"18\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"18\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-18\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"85831-7301b-0c518-baedd\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=18%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=2&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"udaynandu2605@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9819119819\",\"FirstName\":\"Vilesh\",\"LastName\":\"Thakkar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-14-16-57-50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"59\",\"isgstapply\":\"1\",\"countryCodeISO\":\"IN\",\"gstnnumber\":\"06AAHPN5398K1Z3\",\"companyname\":\"Meraki foods\",\"gstemail\":\"Merakfoods18@gmail.com\",\"gstphone\":\"9819119819\",\"gstaddress\":\"Ardc tohana\",\"gststate\":\"Hr\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"59\",\"EmailId\":\"udaynandu2605@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9819119819\",\"FirstName\":\"Uday\",\"LastName\":\"Nandu\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-14-16-57-50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"60\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"450862\",\"TPSysId\":\"450863\",\"VersionId\":[\"102416\"],\"CustomerSysId\":\"241372\",\"TrxId\":\"33788\",\"FareBreakdownid\":[\"360208\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"149\",\"150\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"59\",\"CustomerMemSysId\":[\"59\",\"60\"],\"flight_booking_id\":[\"101\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"101\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":8325.25},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"241372\",\"TPSysId\":\"450863\",\"MasterTPSysId\":\"450862\",\"ProposalID\":\"450863\\/V1\",\"InvoiceDate\":\"2022-09-14\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-14\",\"PaymentDate\":\"2022-09-14\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":8253.25,\"InvoiceStatus\":true,\"TotalCGST\":36,\"TotalSGST\":36,\"TotalIGST\":72,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":8325.25,\"TotalDueAmount\":0,\"InvoiceValue\":8325.25,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Go First G8-354\",\"ItemQty\":1,\"ItemRates\":7853.25,\"Total\":7853.25,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":8325.25,\"MarkupType\":\"\",\"Markup\":400,\"TotalMarkup\":400,\"SubTotal\":8253.25,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":72,\"SGST\":36,\"CGST\":36,\"IGST\":72,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-14 17:00:46'),(527,'65750-0d4ed-ad54a-0c703','{\"FlightBookingData\":[{\"bookingId\":\"TJ102042737782\",\"FlightNumber\":\"6E-219\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"20:45\",\"TravelDate\":\"2022-09-15T14:40\",\"LocalFromTime\":\"2022-09-15 14:40\",\"FromUTCTime\":\"2022-09-15T14:40\",\"LocalToTime\":\"2022-09-15 20:45\",\"ToUTCTime\":\"2022-09-15T20:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Thu, 15 Sep\",\"ArrivalDateTxt\":\"Thu, 15 Sep\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14275,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"COK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4953.83,\"PublishedFareTxt\":\"4,954\",\"ApiResultIndex\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-COK\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARF\":3250,\"ARFT\":162.5,\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCFT\":9,\"CCF\":50,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4099,\"Tax\":854.83,\"YQTax\":0,\"OtherCharges\":528,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":212,\"CarrierMiscFee\":0,\"MUFee\":97.13,\"intPublishedFare\":4953.83,\"PublishedFare\":5151.67,\"OfferedFare\":4817.76,\"CommissionEarned\":38.94,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.05,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3086055576_0BOMBLR6E219BLRCOK6E6787_123932806779540\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.82,\"apiMarkup\":82.31,\"IntCommission\":0.78,\"apiTaxOnMarkup\":14.82,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":854.83,\"BaseFareCal\":4868.58,\"BaseFare\":4099,\"CommissionEarned\":38.94,\"TDS\":-2.05,\"MF\":15,\"YQ\":0,\"AGST\":212,\"MFT\":2.7,\"OT\":528,\"MU\":97.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":50.82,\"apiMarkup\":82.31,\"IntCommission\":0.78,\"apiTaxOnMarkup\":14.82,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":82.31,\"apiTaxOnMarkup\":14.82,\"IntNetCommission\":38.94,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.78,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.82,\"PublishFare\":5151.67,\"CostToCustomer\":5151.67,\"BaseFareCal\":4868.58,\"intCommisionEarnedForAgency\":283.09,\"CostToCompany\":4868.58,\"intOfferedFare\":4817.76,\"intPublishFare\":4953.83,\"TripjackMarkup\":97.13,\"TripjackCommission\":38.94,\"TripjackTDS\":\"2.05\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200}},\"Segments\":[{\"segmentid\":\"625\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-15T16:15\",\"SegFlightNumber\":\"6E-219\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-15T14:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":205,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"16:15\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"626\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2022-09-15T20:45\",\"SegFlightNumber\":\"6E-6787\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-15T19:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"19:40\",\"strArrivalDtTime\":\"20:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"625\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"65750-0d4ed-ad54a-0c703\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14275,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ102042737782\",\"FlightNumber\":\"6E-219\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"strTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"20:45\",\"TravelDate\":\"2022-09-15T14:40\",\"LocalFromTime\":\"2022-09-15 14:40\",\"FromUTCTime\":\"2022-09-15T14:40\",\"LocalToTime\":\"2022-09-15 20:45\",\"ToUTCTime\":\"2022-09-15T20:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":365,\"DepartureDateTxt\":\"Thu, 15 Sep\",\"ArrivalDateTxt\":\"Thu, 15 Sep\",\"FlightDuration\":\"6h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14275,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"COK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4953.83,\"ApiResultIndex\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"65750-0d4ed-ad54a-0c703\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4099,\"Tax\":854.83,\"YQTax\":0,\"OtherCharges\":528,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":212,\"CarrierMiscFee\":0,\"MUFee\":97.13,\"intPublishedFare\":4953.83,\"PublishedFare\":5151.67,\"OfferedFare\":4817.76,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":854.83,\"BaseFareCal\":4868.58,\"BaseFare\":4099,\"CommissionEarned\":38.94,\"TDS\":-2.05,\"MF\":15,\"YQ\":0,\"AGST\":212,\"MFT\":2.7,\"OT\":528,\"MU\":97.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"625\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-09-15T16:15\",\"SegFlightNumber\":\"6E-219\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-15T14:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":95,\"GroundTime\":205,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"16:15\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"segmentid\":\"626\",\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2022-09-15T20:45\",\"SegFlightNumber\":\"6E-6787\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-09-15T19:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"19:40\",\"strArrivalDtTime\":\"20:45\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-3086055576_4BOMBLR6E219BLRCOK6E6787_23495222493452\",\"localFromDateTime\":\"2022-09-15 14:40\",\"localToDateTime\":\"2022-09-15 20:45\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14275,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"102\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"60\",\"CustomerMemSysId\":[\"60\"],\"flight_booking_id\":[\"102\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"jijoekn@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8590364326\",\"FirstName\":\"Thomas \",\"LastName\":\"Jijo\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-15-02-26-06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"60\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"60\",\"CustomerMemSysId\":[\"60\"],\"flight_booking_customer\":[[\"151\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Kochi (COK)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"COK\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Kochi, IN - Cochin Internation Arpt (COK), India\",\"departure_date\":\"15\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Cochin Internation Arpt (COK)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"COK\",\"from\":\"BOM\",\"to\":\"COK\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Kochi, IN - Cochin Internation Arpt (COK), India\",\"sourceCityId\":18676,\"destinationCityId\":14275,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"65750-0d4ed-ad54a-0c703\",\"from_city_\":\"1__BOM-COK\"},\"sessionData\":{\"CustomerSysId\":\"60\",\"CustomerMemSysId\":[\"60\"],\"flight_booking_id\":[\"102\"]},\"validateCoupon\":null,\"validateData\":null,\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"451109\",\"TPSysId\":\"451110\",\"VersionId\":[\"102541\"],\"CustomerSysId\":\"241617\",\"TrxId\":\"33820\",\"FareBreakdownid\":[\"360236\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"8590364326\",\"leadEmail\":\"jijoekn@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"relation-1\":\"0\",\"passenger-firstname-1\":\"Thomas \",\"passenger-lastname-1\":\"Jijo\",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"\",\"passenger-country-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"65750-0d4ed-ad54a-0c703\",\"countryCodeISO\":\"IN\"}}','2022-09-15 02:26:10'),(529,'4913e-4228c-a8c43-1bbd4','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5247\",\"keyIndex\":19,\"SegFlightNumberArr\":\"6E-5247\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0129127020_7BOMJAI6E5247_103722747486204\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"09:45\",\"TravelDate\":\"2022-10-22T08:00\",\"LocalFromTime\":\"2022-10-22 08:00\",\"FromUTCTime\":\"2022-10-22T08:00\",\"LocalToTime\":\"2022-10-22 09:45\",\"ToUTCTime\":\"2022-10-22T09:45\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Sat, 22 Oct\",\"ArrivalDateTxt\":\"Sat, 22 Oct\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":43493,\"PublishedFareTxt\":\"43,493\",\"ApiResultIndex\":\"5-0129127020_7BOMJAI6E5247_103722747485934\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"4913e-4228c-a8c43-1bbd4\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":39300,\"Tax\":4322.43,\"YQTax\":0,\"OtherCharges\":3414,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":855.33,\"intPublishedFare\":43622.43,\"PublishedFare\":43493,\"PublishedFarePerPax\":14498,\"OfferedFare\":42393.75,\"CommissionEarned\":373.35,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.65,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0129127020_7BOMJAI6E5247_103722747486204\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":166.47,\"apiMarkup\":724.86,\"IntCommission\":7.47,\"apiTaxOnMarkup\":130.47,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":7.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2881.62,\"BaseFareCal\":28385.48,\"BaseFare\":26200,\"CommissionEarned\":248.9,\"TDS\":-13.1,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2276,\"MU\":570.22,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":122.98,\"apiMarkup\":483.24,\"IntCommission\":4.98,\"apiTaxOnMarkup\":86.98,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":4.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1440.81,\"BaseFareCal\":14210.74,\"BaseFare\":13100,\"CommissionEarned\":124.45,\"TDS\":-6.55,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1138,\"MU\":285.11,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":79.49,\"apiMarkup\":241.62,\"IntCommission\":2.49,\"apiTaxOnMarkup\":43.49,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":2.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":724.86,\"apiTaxOnMarkup\":130.47,\"IntNetCommission\":373.35,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.47,\"IntAgencyFixMarkUp\":200,\"IntTaxOnAgencyFixMarkUp\":36,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":166.47,\"PublishFare\":43492.55,\"CostToCustomer\":43492.55,\"BaseFareCal\":42560.22,\"intCommisionEarnedForAgency\":932.32,\"CostToCompany\":42560.22,\"intOfferedFare\":42393.75,\"intPublishFare\":43622.43,\"TripjackMarkup\":855.33,\"TripjackCommission\":373.35,\"TripjackTDS\":\"19.65\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IntAdddimarkup\":200},\"$$hashKey\":\"0AV\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-10-22T09:45\",\"SegFlightNumber\":\"6E-5247\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-10-22T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"09:45\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"45001-50000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-15 17:20:32'),(530,'92c64-f1ff5-a0a65-e8820','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-644\",\"keyIndex\":1,\"SegFlightNumberArr\":\"AI-644\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-9783222680_1UDRBOMAI644_19487040316124\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2022-10-28T16:30\",\"LocalFromTime\":\"2022-10-28 16:30\",\"FromUTCTime\":\"2022-10-28T16:30\",\"LocalToTime\":\"2022-10-28 18:05\",\"ToUTCTime\":\"2022-10-28T18:05\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":95,\"DepartureDateTxt\":\"Fri, 28 Oct\",\"ArrivalDateTxt\":\"Fri, 28 Oct\",\"FlightDuration\":\"1h 35m\",\"SourcePlaceSysId\":\"28058\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"UDR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":17102,\"PublishedFareTxt\":\"17,102\",\"ApiResultIndex\":\"21-10-15-2-9783222680_1UDRBOMAI644_19487040316124\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"92c64-f1ff5-a0a65-e8820\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14610,\"Tax\":2451.04,\"YQTax\":0,\"OtherCharges\":826,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":757,\"CarrierMiscFee\":510,\"MUFee\":304.94,\"intPublishedFare\":17061.04,\"PublishedFare\":17102,\"PublishedFarePerPax\":5701,\"OfferedFare\":16556.92,\"CommissionEarned\":199.18,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-9783222680_1UDRBOMAI644_19487040316124\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":82.52,\"apiMarkup\":0,\"IntCommission\":3.98,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":458.42,\"GSTOnMarkUp\":82.52,\"CommEarned\":3.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":{\"0\":{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2192.34,\"BaseFareCal\":15130.74,\"BaseFare\":13360,\"CommissionEarned\":199.18,\"TDS\":-10.48,\"MF\":30,\"YQ\":0,\"AGST\":686,\"MFT\":5.4,\"OT\":826,\"MU\":304.94,\"YR\":340,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":82.52,\"apiMarkup\":0,\"IntCommission\":3.98,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":458.42,\"GSTOnMarkUp\":82.52,\"CommEarned\":3.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"},\"2\":{\"Currency\":\"INR\",\"PassengerType\":3,\"PassengerCount\":\"1\",\"TaxIN\":258.7,\"BaseFareCal\":1544.7,\"BaseFare\":1250,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":71,\"OT\":0,\"MFT\":2.7,\"MU\":0,\"YR\":170,\"AddiTaxOnMarkup\":12,\"AddiMarkup\":66.66666666666667,\"intTotalGST\":36,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200,\"GSTOnMarkUp\":36,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"10 Kilograms\",\"CabinBaggage\":\"7 Kg\"}},\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":199.18,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.98,\"IntAgencyFixMarkUp\":458.42,\"IntTaxOnAgencyFixMarkUp\":82.52,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":82.52,\"PublishFare\":17101.84,\"CostToCustomer\":17101.84,\"BaseFareCal\":16639.44,\"intCommisionEarnedForAgency\":462.41,\"CostToCompany\":16639.44,\"intOfferedFare\":16556.92,\"intPublishFare\":17061.04,\"TripjackMarkup\":304.94,\"TripjackCommission\":199.18,\"TripjackTDS\":\"10.48\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"03Q\"},\"Segments\":[{\"originAirportName\":\"Maharana Pratap Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Udaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-10-28T18:05\",\"SegFlightNumber\":\"AI-644\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"UDR\",\"originDepTime\":\"2022-10-28T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":95,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"1h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-15 21:43:03'),(534,'d07b8-f08d5-9102d-5cb60','{\"BookingData\":[{\"bookingId\":\"TJ106942846235\",\"FlightNumber\":\"G8-546\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"11:05\",\"ArrivalTime\":\"12:20\",\"TravelDate\":\"2022-09-17T11:05\",\"LocalFromTime\":\"2022-09-17 11:05\",\"FromUTCTime\":\"2022-09-17T11:05\",\"LocalToTime\":\"2022-09-17 12:20\",\"ToUTCTime\":\"2022-09-17T12:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":11240,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"GAU\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":6360.1,\"PublishedFareTxt\":\"6,360\",\"ApiResultIndex\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"GAU-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"No Refund| Seats are Subject to availability | In case of non availability of the seats, we will refund the amount | \\\"Sunday is Non Working day for Special Fare Team\\\"| Booking done after 18:00 Hrs or 6 PM, PNR will be updated next working day after 11:00 Hrs or 11 AM\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Changes are not permitted | Booking confirmation will take minimum 60 Minutes\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"Cancellation is not permitted | For more details contact us\",\"fcs\":{\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Note : Now you can do the web checkin directly on the airline website by yourself.  Enter PNR and LAST NAME. Select your passengers and process the web checkin( 1 Day before departure after 6PM ). Seats are chargeable as per airline |Name Change is not permitted |\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6000,\"Tax\":360.1,\"YQTax\":0,\"OtherCharges\":200,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":124.7,\"intPublishedFare\":6360.1,\"PublishedFare\":6540.24,\"OfferedFare\":6178.4,\"CommissionEarned\":57,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-6821526756_0GAUCCUG8546_37882547400985\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":55.02,\"apiMarkup\":0,\"IntCommission\":1.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":305.68,\"GSTOnMarkUp\":55.02,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":360.1,\"BaseFareCal\":6233.42,\"BaseFare\":6000,\"CommissionEarned\":57,\"TDS\":-3,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":200,\"MU\":124.7,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":55.02,\"apiMarkup\":0,\"IntCommission\":1.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":305.68,\"GSTOnMarkUp\":55.02,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":57,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.14,\"IntAgencyFixMarkUp\":305.68,\"IntTaxOnAgencyFixMarkUp\":55.02,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":55.02,\"PublishFare\":6540.24,\"CostToCustomer\":6540.24,\"BaseFareCal\":6233.42,\"intCommisionEarnedForAgency\":306.82,\"CostToCompany\":6233.42,\"intOfferedFare\":6178.4,\"intPublishFare\":6360.1,\"TripjackMarkup\":124.7,\"TripjackCommission\":57,\"TripjackTDS\":\"3\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"445\",\"originAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Guwahati\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-17T12:20\",\"SegFlightNumber\":\"G8-546\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"GAU\",\"originDepTime\":\"2022-09-17T11:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"11:05\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d07b8-f08d5-9102d-5cb60\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GAU\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":2,\"intSourceCityId\":11240,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ106942846235\",\"FlightNumber\":\"G8-546\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"strTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"11:05\",\"ArrivalTime\":\"12:20\",\"TravelDate\":\"2022-09-17T11:05\",\"LocalFromTime\":\"2022-09-17 11:05\",\"FromUTCTime\":\"2022-09-17T11:05\",\"LocalToTime\":\"2022-09-17 12:20\",\"ToUTCTime\":\"2022-09-17T12:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sat, 17 Sep\",\"ArrivalDateTxt\":\"Sat, 17 Sep\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":11240,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"GAU\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":6360.1,\"ApiResultIndex\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"d07b8-f08d5-9102d-5cb60\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6000,\"Tax\":360.1,\"YQTax\":0,\"OtherCharges\":200,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":124.7,\"intPublishedFare\":6360.1,\"PublishedFare\":6540.24,\"OfferedFare\":6178.4,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":305.68,\"GSTOnMarkUp\":55.02,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":360.1,\"BaseFareCal\":6233.42,\"BaseFare\":6000,\"CommissionEarned\":57,\"TDS\":-3,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":200,\"MU\":124.7,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":305.68,\"GSTOnMarkUp\":55.02,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"445\",\"originAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Guwahati\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-17T12:20\",\"SegFlightNumber\":\"G8-546\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"GAU\",\"originDepTime\":\"2022-09-17T11:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"11:05\",\"strArrivalDtTime\":\"12:20\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-6821526756_0GAUCCUG8546_36417672766516\",\"localFromDateTime\":\"2022-09-17 11:05\",\"localToDateTime\":\"2022-09-17 12:20\",\"strSourceAirportCode\":\"GAU\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":2,\"intSourceCityId\":11240,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Guwahati (GAU)\",\"mytrip_city_to\":\"Kolkata (CCU)\",\"source_city\":\"GAU\",\"ContSysId_1\":\"101\",\"destination_city\":\"CCU\",\"ContSysId\":\"101\",\"source\":\"Guwahati, IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU), India\",\"destination\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"departure_date\":\"17\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU)\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"GAU\",\"destinationCityAirportCode\":\"CCU\",\"from\":\"GAU\",\"to\":\"CCU\",\"sourceCityText\":\"Guwahati, IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU), India\",\"destinationCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"sourceCityId\":11240,\"destinationCityId\":14323,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"17\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-17\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"d07b8-f08d5-9102d-5cb60\",\"from_city_\":\"1__GAU-CCU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Guwahati+%28GAU%29&mytrip_city_to=Kolkata+%28CCU%29&source_city=GAU&ContSysId_1=101&destination_city=CCU&ContSysId=101&source=Guwahati%2C+IN+-+Lokpriya+Gopinath+Bordoloi+Intl+Arpt+%28GAU%29%2C+India&destination=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29%2C+India&departure_date=17%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Lokpriya+Gopinath+Bordoloi+Intl+Arpt+%28GAU%29&to_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29&adults=2&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"das2techconsultancy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7085589052\",\"FirstName\":\"RAJU\",\"LastName\":\"DAS\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-16-09-02-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"61\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"47\",\"EmailId\":\"das2techconsultancy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7085589052\",\"FirstName\":\"AMIR\",\"LastName\":\"KHAN\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-16-09-02-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"452105\",\"TPSysId\":\"452106\",\"VersionId\":[\"102912\"],\"CustomerSysId\":\"229600\",\"TrxId\":\"33925\",\"FareBreakdownid\":[\"360309\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"152\",\"153\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"47\",\"CustomerMemSysId\":[\"61\",\"62\"],\"flight_booking_id\":[\"103\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"103\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":6540.24},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"229600\",\"TPSysId\":\"452106\",\"MasterTPSysId\":\"452105\",\"ProposalID\":\"452106\\/V1\",\"InvoiceDate\":\"2022-09-16\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-16\",\"PaymentDate\":\"2022-09-16\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":6449.219999999999,\"InvoiceStatus\":true,\"TotalSGST\":45.510000000000005,\"TotalCGST\":45.510000000000005,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":6540.24,\"TotalDueAmount\":0,\"InvoiceValue\":6540.24,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"GAU-CCU-Go First G8-546\",\"ItemQty\":1,\"ItemRates\":5943.539999999999,\"Total\":5943.539999999999,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":6540.24,\"MarkupType\":\"\",\"Markup\":505.68,\"TotalMarkup\":505.68,\"SubTotal\":6449.219999999999,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":91.02000000000001,\"SGST\":45.510000000000005,\"CGST\":45.510000000000005,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-16 09:03:28'),(535,'92e04-277d0-79d7d-3d4a2','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":7,\"FlightNumber\":\"884\",\"SegFlightNumberArr\":\"VJ-884, VJ-897\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"OrFlightNumber\":\"VJ-884\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159707\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"00:20\",\"ArrivalTime\":\"16:25\",\"TravelDate\":\"2022-09-22T00:20\",\"LocalFromTime\":\"2022-09-22 00:20\",\"FromUTCTime\":\"2022-09-22T00:20\",\"LocalToTime\":\"2022-09-22 16:25\",\"ToUTCTime\":\"2022-09-22T16:25\",\"IsDirect\":0,\"FareClass\":\"B\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"GroundTime\":280,\"LAYOVERDuration\":\"4h 40m\",\"FlyingMinutes\":950,\"DepartureDateTxt\":\"Thu, 22 Sep\",\"ArrivalDateTxt\":\"Thu, 22 Sep\",\"FlightDuration\":\"14h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DPS\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"92e04-277d0-79d7d-3d4a2\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"destination\":{\"FlightNumber\":\"898\",\"SegFlightNumberArr\":\"VJ-898, VJ-883\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"DeFlightNumber\":\"VJ-898\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159707\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"17:25\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-09-28T17:25\",\"LocalFromTime\":\"2022-09-28 17:25\",\"FromUTCTime\":\"2022-09-28T17:25\",\"LocalToTime\":\"2022-09-29 23:20\",\"ToUTCTime\":\"2022-09-29T23:20\",\"IsDirect\":0,\"FareClass\":\"B\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"GroundTime\":1380,\"LAYOVERDuration\":\"23h 0m\",\"FlyingMinutes\":2050,\"DepartureDateTxt\":\"Wed, 28 Sep\",\"ArrivalDateTxt\":\"Thu, 29 Sep\",\"FlightDuration\":\"31h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DPS\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"92e04-277d0-79d7d-3d4a2\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"AirlineName\":\"Vietjet Airlines\",\"PublishedFare\":40846.93,\"PublishedFareTxt\":\"40,847\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159707\",\"apiTraceId\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159937\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":30600,\"Tax\":10942.96,\"YQTax\":4968,\"OtherCharges\":3470,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1655,\"CarrierMiscFee\":0,\"MUFee\":814.56,\"intPublishedFare\":41542.96,\"PublishedFare\":40847,\"PublishedFarePerPax\":40847,\"OfferedFare\":39536.53,\"CommissionEarned\":1191.87,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-62.73,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159937\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":1,\"intTotalGST\":196.25,\"apiMarkup\":0,\"IntCommission\":23.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1090.31,\"GSTOnMarkUp\":196.25,\"CommEarned\":23.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":10942.96,\"BaseFareCal\":39732.78,\"BaseFare\":30600,\"CommissionEarned\":1191.87,\"TDS\":-62.73,\"MF\":30,\"YQ\":4968,\"AGST\":1655,\"MFT\":5.4,\"OT\":3470,\"MU\":814.56,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":196.25,\"apiMarkup\":0,\"IntCommission\":23.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1090.31,\"GSTOnMarkUp\":196.25,\"CommEarned\":23.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1191.87,\"IntCommissionValInPercentage\":2,\"IntCommission\":23.84,\"IntAgencyFixMarkUp\":1090.31,\"IntTaxOnAgencyFixMarkUp\":196.25,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":196.25,\"PublishFare\":40846.93,\"CostToCustomer\":40846.93,\"BaseFareCal\":39732.78,\"intCommisionEarnedForAgency\":1114.14,\"CostToCompany\":39732.78,\"intOfferedFare\":39536.53,\"intPublishFare\":41542.96,\"TripjackMarkup\":814.56,\"TripjackCommission\":1191.87,\"TripjackTDS\":\"62.73\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"017\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Tan Son Nhut Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ho Chi Minh City\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"SGN\",\"destinationArrTime\":\"2022-09-22T06:55\",\"SegFlightNumber\":\"VJ-884\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-22T00:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":305,\"GroundTime\":280,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"00:20\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"5h 5m\",\"LAYOVERDuration\":\"4h 40m\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Tan Son Nhut Arpt\",\"destinationAirportName\":\"Ngurah Rai Arpt\",\"originCityName\":\"Ho Chi Minh City\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Denpasar Bali\",\"destinationCountryName\":\"Indonesia\",\"destinationAirportCode\":\"DPS\",\"destinationArrTime\":\"2022-09-22T16:25\",\"SegFlightNumber\":\"VJ-897\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"SGN\",\"originDepTime\":\"2022-09-22T11:35\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":290,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:35\",\"strArrivalDtTime\":\"16:25\",\"FlightDuration\":\"4h 50m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 0\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Ngurah Rai Arpt\",\"destinationAirportName\":\"Tan Son Nhut Arpt\",\"originCityName\":\"Denpasar Bali\",\"originCountryName\":\"Indonesia\",\"destinationCityName\":\"Ho Chi Minh City\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"SGN\",\"destinationArrTime\":\"2022-09-28T20:15\",\"SegFlightNumber\":\"VJ-898\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"DPS\",\"originDepTime\":\"2022-09-28T17:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":170,\"GroundTime\":1380,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"17:25\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":\"23h 0m\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"DepTerminal\":\"Terminal 0\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tan Son Nhut Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ho Chi Minh City\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-29T23:20\",\"SegFlightNumber\":\"VJ-883\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"SGN\",\"originDepTime\":\"2022-09-29T19:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":335,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"5h 35m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"}],\"DepartureTime\":\"17:25\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"92e04-277d0-79d7d-3d4a2\",\"keyIndex\":7,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":7,\"FlightNumber\":\"884\",\"SegFlightNumberArr\":\"VJ-884, VJ-897\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"OrFlightNumber\":\"VJ-884\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159707\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"00:20\",\"ArrivalTime\":\"16:25\",\"TravelDate\":\"2022-09-22T00:20\",\"LocalFromTime\":\"2022-09-22 00:20\",\"FromUTCTime\":\"2022-09-22T00:20\",\"LocalToTime\":\"2022-09-22 16:25\",\"ToUTCTime\":\"2022-09-22T16:25\",\"IsDirect\":0,\"FareClass\":\"B\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"GroundTime\":280,\"LAYOVERDuration\":\"4h 40m\",\"FlyingMinutes\":950,\"DepartureDateTxt\":\"Thu, 22 Sep\",\"ArrivalDateTxt\":\"Thu, 22 Sep\",\"FlightDuration\":\"14h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DPS\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"92e04-277d0-79d7d-3d4a2\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"destination\":{\"FlightNumber\":\"898\",\"SegFlightNumberArr\":\"VJ-898, VJ-883\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"DeFlightNumber\":\"VJ-898\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159707\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"17:25\",\"ArrivalTime\":\"23:20\",\"TravelDate\":\"2022-09-28T17:25\",\"LocalFromTime\":\"2022-09-28 17:25\",\"FromUTCTime\":\"2022-09-28T17:25\",\"LocalToTime\":\"2022-09-29 23:20\",\"ToUTCTime\":\"2022-09-29T23:20\",\"IsDirect\":0,\"FareClass\":\"B\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"GroundTime\":1380,\"LAYOVERDuration\":\"23h 0m\",\"FlyingMinutes\":2050,\"DepartureDateTxt\":\"Wed, 28 Sep\",\"ArrivalDateTxt\":\"Thu, 29 Sep\",\"FlightDuration\":\"31h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DPS\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"92e04-277d0-79d7d-3d4a2\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"AirlineName\":\"Vietjet Airlines\",\"PublishedFare\":40846.93,\"PublishedFareTxt\":\"40,847\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159707\",\"apiTraceId\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159707\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":30600,\"Tax\":10942.96,\"YQTax\":4968,\"OtherCharges\":3470,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1655,\"CarrierMiscFee\":0,\"MUFee\":814.56,\"intPublishedFare\":41542.96,\"PublishedFare\":40847,\"PublishedFarePerPax\":40847,\"OfferedFare\":39536.53,\"CommissionEarned\":1191.87,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-62.73,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159937\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":1,\"intTotalGST\":196.25,\"apiMarkup\":0,\"IntCommission\":23.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1090.31,\"GSTOnMarkUp\":196.25,\"CommEarned\":23.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":10942.96,\"BaseFareCal\":39732.78,\"BaseFare\":30600,\"CommissionEarned\":1191.87,\"TDS\":-62.73,\"MF\":30,\"YQ\":4968,\"AGST\":1655,\"MFT\":5.4,\"OT\":3470,\"MU\":814.56,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":196.25,\"apiMarkup\":0,\"IntCommission\":23.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1090.31,\"GSTOnMarkUp\":196.25,\"CommEarned\":23.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1191.87,\"IntCommissionValInPercentage\":2,\"IntCommission\":23.84,\"IntAgencyFixMarkUp\":1090.31,\"IntTaxOnAgencyFixMarkUp\":196.25,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":196.25,\"PublishFare\":40846.93,\"CostToCustomer\":40846.93,\"BaseFareCal\":39732.78,\"intCommisionEarnedForAgency\":1114.14,\"CostToCompany\":39732.78,\"intOfferedFare\":39536.53,\"intPublishFare\":41542.96,\"TripjackMarkup\":814.56,\"TripjackCommission\":1191.87,\"TripjackTDS\":\"62.73\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":32300,\"Tax\":11063.66,\"YQTax\":0,\"OtherCharges\":10178,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":850.26,\"intPublishedFare\":43363.66,\"PublishedFare\":42603,\"PublishedFarePerPax\":42603,\"OfferedFare\":41255.32,\"CommissionEarned\":1258.08,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-66.22,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-8021254909_7BOMSGNVJ884SGNDPSVJ897DPSSGNVJ898SGNBOMVJ883_62403843159707\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":4,\"intTotalGST\":201.7,\"apiMarkup\":0,\"IntCommission\":25.16,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1120.56,\"GSTOnMarkUp\":201.7,\"CommEarned\":25.16,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":11063.66,\"BaseFareCal\":41457.02,\"BaseFare\":32300,\"CommissionEarned\":1258.08,\"TDS\":-66.22,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":10178,\"MU\":850.26,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":201.7,\"apiMarkup\":0,\"IntCommission\":25.16,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1120.56,\"GSTOnMarkUp\":201.7,\"CommEarned\":25.16,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kg\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kg\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1258.08,\"IntCommissionValInPercentage\":2,\"IntCommission\":25.16,\"IntAgencyFixMarkUp\":1120.56,\"IntTaxOnAgencyFixMarkUp\":201.7,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":201.7,\"PublishFare\":42602.74,\"CostToCustomer\":42602.74,\"BaseFareCal\":41457.02,\"intCommisionEarnedForAgency\":1145.72,\"CostToCompany\":41457.02,\"intOfferedFare\":41255.32,\"intPublishFare\":43363.66,\"TripjackMarkup\":850.26,\"TripjackCommission\":1258.08,\"TripjackTDS\":\"66.22\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Tan Son Nhut Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ho Chi Minh City\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"SGN\",\"destinationArrTime\":\"2022-09-22T06:55\",\"SegFlightNumber\":\"VJ-884\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-22T00:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":305,\"GroundTime\":280,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"00:20\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"5h 5m\",\"LAYOVERDuration\":\"4h 40m\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Tan Son Nhut Arpt\",\"destinationAirportName\":\"Ngurah Rai Arpt\",\"originCityName\":\"Ho Chi Minh City\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Denpasar Bali\",\"destinationCountryName\":\"Indonesia\",\"destinationAirportCode\":\"DPS\",\"destinationArrTime\":\"2022-09-22T16:25\",\"SegFlightNumber\":\"VJ-897\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"SGN\",\"originDepTime\":\"2022-09-22T11:35\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":290,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:35\",\"strArrivalDtTime\":\"16:25\",\"FlightDuration\":\"4h 50m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 0\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Ngurah Rai Arpt\",\"destinationAirportName\":\"Tan Son Nhut Arpt\",\"originCityName\":\"Denpasar Bali\",\"originCountryName\":\"Indonesia\",\"destinationCityName\":\"Ho Chi Minh City\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"SGN\",\"destinationArrTime\":\"2022-09-28T20:15\",\"SegFlightNumber\":\"VJ-898\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"DPS\",\"originDepTime\":\"2022-09-28T17:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":170,\"GroundTime\":1380,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"17:25\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":\"23h 0m\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"DepTerminal\":\"Terminal 0\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tan Son Nhut Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ho Chi Minh City\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-29T23:20\",\"SegFlightNumber\":\"VJ-883\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"SGN\",\"originDepTime\":\"2022-09-29T19:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":335,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"19:15\",\"strArrivalDtTime\":\"23:20\",\"FlightDuration\":\"5h 35m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"}],\"DepartureTime\":\"17:25\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"92e04-277d0-79d7d-3d4a2\",\"keyIndex\":7,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"01B\"}]}],\"FlightBookingDataInbound\":null}','2022-09-16 13:56:16'),(540,'','{\"FlightBookingData\":[{\"FairRules\":[]}],\"FlightBookingDataInbound\":null}','2022-09-17 14:01:24'),(543,'fab5e-fc7b1-cc788-883c8','{\"FlightBookingData\":[{\"bookingId\":\"TJ103442968888\",\"FlightNumber\":\"I5-779\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:10\",\"ArrivalTime\":\"07:50\",\"TravelDate\":\"2022-09-30T05:10\",\"LocalFromTime\":\"2022-09-30 05:10\",\"FromUTCTime\":\"2022-09-30T05:10\",\"LocalToTime\":\"2022-09-30 07:50\",\"ToUTCTime\":\"2022-09-30T07:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 30 Sep\",\"ArrivalDateTxt\":\"Fri, 30 Sep\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9087.89,\"PublishedFareTxt\":\"9,088\",\"ApiResultIndex\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-GOI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 4 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-72 hrs Rs 3,250 + Fare Difference __nls__ Before 72 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"CCF\":50,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8024,\"Tax\":1063.89,\"YQTax\":0,\"OtherCharges\":464,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":404,\"CarrierMiscFee\":0,\"MUFee\":178.19,\"intPublishedFare\":9087.89,\"PublishedFare\":9230.52,\"OfferedFare\":8814.42,\"CommissionEarned\":95.28,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.02,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-0018854295_0DELGOII5779_149441381474466\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PROMO\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":63.18,\"apiMarkup\":0,\"IntCommission\":1.91,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":351.01,\"GSTOnMarkUp\":63.18,\"CommEarned\":1.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":9087.89,\"oldFare\":7483.43,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1063.89,\"BaseFareCal\":8877.6,\"BaseFare\":8024,\"CommissionEarned\":95.28,\"TDS\":-5.02,\"MF\":15,\"YQ\":0,\"AGST\":404,\"MFT\":2.7,\"OT\":464,\"MU\":178.19,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":63.18,\"apiMarkup\":0,\"IntCommission\":1.91,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":351.01,\"GSTOnMarkUp\":63.18,\"CommEarned\":1.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":95.28,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.91,\"IntAgencyFixMarkUp\":351.01,\"IntTaxOnAgencyFixMarkUp\":63.18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":63.18,\"PublishFare\":9230.52,\"CostToCustomer\":9230.52,\"BaseFareCal\":8877.6,\"intCommisionEarnedForAgency\":352.91,\"CostToCompany\":8877.6,\"intOfferedFare\":8814.42,\"intPublishFare\":9087.89,\"TripjackMarkup\":178.19,\"TripjackCommission\":95.28,\"TripjackTDS\":\"5.02\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"731\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-09-30T07:50\",\"SegFlightNumber\":\"I5-779\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-30T05:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:10\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBAB\",\"Price\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBAC\",\"Price\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBLD\",\"Price\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBAD\",\"Price\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PBAF\",\"Price\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"SDAI\",\"Price\":300,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"RPCB\",\"Price\":400,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"JMCB\",\"Price\":400,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"FTCB\",\"Price\":400,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"XCCB\",\"Price\":500,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"SICB\",\"Price\":500,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"RICB\",\"Price\":500,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"PTCB\",\"Price\":500,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"KACB\",\"Price\":500,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"GACB\",\"Price\":500,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"COCB\",\"Price\":500,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"CJCB\",\"Price\":500,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"731\",\"Code\":\"AMCB\",\"Price\":500,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"fab5e-fc7b1-cc788-883c8\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103442968888\",\"FlightNumber\":\"I5-779\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"strTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:10\",\"ArrivalTime\":\"07:50\",\"TravelDate\":\"2022-09-30T05:10\",\"LocalFromTime\":\"2022-09-30 05:10\",\"FromUTCTime\":\"2022-09-30T05:10\",\"LocalToTime\":\"2022-09-30 07:50\",\"ToUTCTime\":\"2022-09-30T07:50\",\"IsDirect\":0,\"FareClass\":\"BT\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 30 Sep\",\"ArrivalDateTxt\":\"Fri, 30 Sep\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":0,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":9087.89,\"ApiResultIndex\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"fab5e-fc7b1-cc788-883c8\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8024,\"Tax\":1063.89,\"YQTax\":0,\"OtherCharges\":464,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":404,\"CarrierMiscFee\":0,\"MUFee\":178.19,\"intPublishedFare\":9087.89,\"PublishedFare\":9230.52,\"OfferedFare\":8814.42,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":351.01,\"GSTOnMarkUp\":63.18,\"CommEarned\":1.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1063.89,\"BaseFareCal\":8877.6,\"BaseFare\":8024,\"CommissionEarned\":95.28,\"TDS\":-5.02,\"MF\":15,\"YQ\":0,\"AGST\":404,\"MFT\":2.7,\"OT\":464,\"MU\":178.19,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":351.01,\"GSTOnMarkUp\":63.18,\"CommEarned\":1.91,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"731\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-09-30T07:50\",\"SegFlightNumber\":\"I5-779\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"BT\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-09-30T05:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:10\",\"strArrivalDtTime\":\"07:50\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-0018854295_0DELGOII5779_160560067704886\",\"localFromDateTime\":\"2022-09-30 05:10\",\"localToDateTime\":\"2022-09-30 07:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"GOI\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":0,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"104\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"63\",\"CustomerMemSysId\":[\"63\"],\"flight_booking_id\":[\"104\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"AJAY\",\"LastName\":\"KHATRI\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-17-14-06-42\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"63\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"63\",\"CustomerMemSysId\":[\"63\"],\"flight_booking_customer\":[[\"154\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Goa In (GOI)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"GOI\",\"ContSysId\":\"0\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Goa In, IN - Dabolim Arpt (GOI), India\",\"departure_date\":\"30\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Dabolim Arpt (GOI)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"GOI\",\"from\":\"DEL\",\"to\":\"GOI\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Goa In, IN - Dabolim Arpt (GOI), India\",\"sourceCityId\":7701,\"destinationCityId\":0,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"30\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-30\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"fab5e-fc7b1-cc788-883c8\",\"from_city_\":\"1__DEL-GOI\"},\"sessionData\":{\"CustomerSysId\":\"63\",\"CustomerMemSysId\":[\"63\"],\"flight_booking_id\":[\"104\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"12577\",\"Salutation\":\"1\",\"EmailId\":\"ajaykhatri5775@gmail.com\",\"FirstName\":\"AJAY\",\"LastName\":\"KHATRI\",\"CountryCode\":\"91\",\"MobileNo\":\"9829015180\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[],\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"453199\",\"TPSysId\":\"453200\",\"VersionId\":[\"103457\"],\"CustomerSysId\":\"214170\",\"TrxId\":\"34041\",\"FareBreakdownid\":[\"360388\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"9829015180\",\"leadEmail\":\"ajaykhatri5775@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"relation-1\":\"0\",\"passenger-firstname-1\":\"AJAY\",\"passenger-lastname-1\":\"KHATRI\",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"0\",\"passenger-country-1\":\"0\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"fab5e-fc7b1-cc788-883c8\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"214170\",\"memberId\":null}}}','2022-09-17 14:06:50'),(544,'7e3b6-ef004-c59b4-dbdd0','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-511\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-511\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-7198468918_0BOMCCUG8511_185592555380249\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:55\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2022-09-18T06:55\",\"LocalFromTime\":\"2022-09-18 06:55\",\"FromUTCTime\":\"2022-09-18T06:55\",\"LocalToTime\":\"2022-09-18 09:40\",\"ToUTCTime\":\"2022-09-18T09:40\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Sun, 18 Sep\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"14323\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5292,\"PublishedFareTxt\":\"5,292\",\"ApiResultIndex\":\"1-7198468918_0BOMCCUG8511_185592555378879\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"7e3b6-ef004-c59b4-dbdd0\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4296,\"Tax\":849.59,\"YQTax\":0,\"OtherCharges\":731,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":100.89,\"intPublishedFare\":5145.59,\"PublishedFare\":5292,\"PublishedFarePerPax\":5292,\"OfferedFare\":4952.87,\"CommissionEarned\":91.83,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.83,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-7198468918_0BOMCCUG8511_185592555380249\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":51.39,\"apiMarkup\":0,\"IntCommission\":1.84,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.59,\"BaseFareCal\":5004.26,\"BaseFare\":4296,\"CommissionEarned\":91.83,\"TDS\":-4.83,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":731,\"MU\":100.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.39,\"apiMarkup\":0,\"IntCommission\":1.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":91.83,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.84,\"IntAgencyFixMarkUp\":285.5,\"IntTaxOnAgencyFixMarkUp\":51.39,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.39,\"PublishFare\":5291.6,\"CostToCustomer\":5291.6,\"BaseFareCal\":5004.26,\"intCommisionEarnedForAgency\":287.34,\"CostToCompany\":5004.26,\"intOfferedFare\":4952.87,\"intPublishFare\":5145.59,\"TripjackMarkup\":100.89,\"TripjackCommission\":91.83,\"TripjackTDS\":\"4.83\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02O\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-18T09:40\",\"SegFlightNumber\":\"G8-511\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-18T06:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"06:55\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-17 21:28:52'),(547,'515f9-9e2dc-fd925-03b9c','{\"FlightBookingData\":[{\"bookingId\":\"TJ105643008088\",\"FlightNumber\":\"G8-520\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2022-09-18T19:30\",\"LocalFromTime\":\"2022-09-18 19:30\",\"FromUTCTime\":\"2022-09-18T19:30\",\"LocalToTime\":\"2022-09-18 22:15\",\"ToUTCTime\":\"2022-09-18T22:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Sun, 18 Sep\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5145.59,\"PublishedFareTxt\":\"5,146\",\"ApiResultIndex\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-CCU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non Refundable If Cancelled 0 - 3 Hrs before scheduled departure, only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,000 + Fare Difference __nls__ Before 72 hrs Rs 2,500 + Fare Difference\",\"fcs\":{\"ARF\":3000,\"ARFT\":150,\"CRF\":50,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3,500 or 100% of airfare charge (whichever is lower) __nls__ Before 72 hrs INR 3,000 or 100% of airfare charge (whichever is lower)__nls____bs__Note: For Special Return fares, Partial cancellation of the Itinerary is not permissible.\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4296,\"Tax\":849.59,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.89,\"intPublishedFare\":5145.59,\"PublishedFare\":5291.6,\"OfferedFare\":4952.87,\"CommissionEarned\":91.83,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.83,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4079282027_0BOMCCUG8520_200711614861649\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":51.39,\"apiMarkup\":0,\"IntCommission\":1.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.59,\"BaseFareCal\":5004.26,\"BaseFare\":4296,\"CommissionEarned\":91.83,\"TDS\":-4.83,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.39,\"apiMarkup\":0,\"IntCommission\":1.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":91.83,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.84,\"IntAgencyFixMarkUp\":285.5,\"IntTaxOnAgencyFixMarkUp\":51.39,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.39,\"PublishFare\":5291.6,\"CostToCustomer\":5291.6,\"BaseFareCal\":5004.26,\"intCommisionEarnedForAgency\":287.34,\"CostToCompany\":5004.26,\"intOfferedFare\":4952.87,\"intPublishFare\":5145.59,\"TripjackMarkup\":100.89,\"TripjackCommission\":91.83,\"TripjackTDS\":\"4.83\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"954\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-18T22:15\",\"SegFlightNumber\":\"G8-520\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-18T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"SWVG\",\"Price\":250,\"Description\":\"Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"SWNV\",\"Price\":250,\"Description\":\"Non Veg Sandwich\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"OLSC\",\"Price\":250,\"Description\":\"Samosa and Chai\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"JNML\",\"Price\":250,\"Description\":\"Jain Sandwich\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"OLVS\",\"Price\":320,\"Description\":\"Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"OLNS\",\"Price\":320,\"Description\":\"Non Veg Sandwich and Coke\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"PMVG\",\"Price\":400,\"Description\":\"Premium Tortilla Wrap Veg + Coke\"},{\"Currency\":\"INR\",\"key\":\"954\",\"Code\":\"PMNV\",\"Price\":400,\"Description\":\"Premium Meal Tortilla Wrap Non-Veg + Coke\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"515f9-9e2dc-fd925-03b9c\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-18 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ105643008088\",\"FlightNumber\":\"G8-520\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"strTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"22:15\",\"TravelDate\":\"2022-09-18T19:30\",\"LocalFromTime\":\"2022-09-18 19:30\",\"FromUTCTime\":\"2022-09-18T19:30\",\"LocalToTime\":\"2022-09-18 22:15\",\"ToUTCTime\":\"2022-09-18T22:15\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 18 Sep\",\"ArrivalDateTxt\":\"Sun, 18 Sep\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":14323,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CCU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5145.59,\"ApiResultIndex\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"515f9-9e2dc-fd925-03b9c\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4296,\"Tax\":849.59,\"YQTax\":0,\"OtherCharges\":511,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":220,\"CarrierMiscFee\":0,\"MUFee\":100.89,\"intPublishedFare\":5145.59,\"PublishedFare\":5291.6,\"OfferedFare\":4952.87,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":849.59,\"BaseFareCal\":5004.26,\"BaseFare\":4296,\"CommissionEarned\":91.83,\"TDS\":-4.83,\"MF\":15,\"YQ\":0,\"AGST\":220,\"MFT\":2.7,\"OT\":511,\"MU\":100.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":285.5,\"GSTOnMarkUp\":51.39,\"CommEarned\":1.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"954\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2022-09-18T22:15\",\"SegFlightNumber\":\"G8-520\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-18T19:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:15\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"1-4079282027_1BOMCCUG8520_121850183854410\",\"localFromDateTime\":\"2022-09-18 19:30\",\"localToDateTime\":\"2022-09-18 22:15\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CCU\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":14323,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"105\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"61\",\"CustomerMemSysId\":[\"61\"],\"flight_booking_id\":[\"105\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"shoumo_gh@yahoo.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9833484620\",\"FirstName\":\"Saumya \",\"LastName\":\"Ghosh \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-17-21-33-50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"61\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"61\",\"CustomerMemSysId\":[\"61\"],\"flight_booking_customer\":[[\"155\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Kolkata (CCU)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"CCU\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"departure_date\":\"18\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"CCU\",\"from\":\"BOM\",\"to\":\"CCU\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"sourceCityId\":18676,\"destinationCityId\":14323,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"18\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-18\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"515f9-9e2dc-fd925-03b9c\",\"from_city_\":\"1__BOM-CCU\"},\"sessionData\":{\"CustomerSysId\":\"61\",\"CustomerMemSysId\":[\"61\"],\"flight_booking_id\":[\"105\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"12577\",\"Salutation\":\"1\",\"EmailId\":\"shoumo_gh@yahoo.com\",\"FirstName\":\"Saumya \",\"LastName\":\"Ghosh \",\"CountryCode\":\"91\",\"MobileNo\":\"9833484620\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[],\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"453630\",\"TPSysId\":\"453631\",\"VersionId\":[\"103610\"],\"CustomerSysId\":\"243296\",\"TrxId\":\"34085\",\"FareBreakdownid\":[\"360427\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"9833484620\",\"leadEmail\":\"shoumo_gh@yahoo.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"relation-1\":\"0\",\"passenger-firstname-1\":\"Saumya \",\"passenger-lastname-1\":\"Ghosh \",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"\",\"passenger-country-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"515f9-9e2dc-fd925-03b9c\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"243296\",\"memberId\":null}}}','2022-09-17 21:34:09'),(548,'842df-c9552-9fd8a-831c8','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-941\",\"keyIndex\":30,\"SegFlightNumberArr\":\"I5-941\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-1842868286_0BOMJAII5941_206741029766288\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-09-19T07:55\",\"LocalFromTime\":\"2022-09-19 07:55\",\"FromUTCTime\":\"2022-09-19T07:55\",\"LocalToTime\":\"2022-09-19 09:50\",\"ToUTCTime\":\"2022-09-19T09:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Mon, 19 Sep\",\"ArrivalDateTxt\":\"Mon, 19 Sep\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":9520,\"PublishedFareTxt\":\"9,520\",\"ApiResultIndex\":\"22-16-1842868286_0BOMJAII5941_206741029766288\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"842df-c9552-9fd8a-831c8\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7850,\"Tax\":1525.22,\"YQTax\":0,\"OtherCharges\":906,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":400,\"CarrierMiscFee\":0,\"MUFee\":183.82,\"intPublishedFare\":9375.22,\"PublishedFare\":9520,\"PublishedFarePerPax\":4760,\"OfferedFare\":9098.18,\"CommissionEarned\":93.22,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.9,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-1842868286_0BOMJAII5941_206741029766288\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":64.04,\"apiMarkup\":0,\"IntCommission\":1.86,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":355.78,\"GSTOnMarkUp\":64.04,\"CommEarned\":1.86,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1525.22,\"BaseFareCal\":9162.22,\"BaseFare\":7850,\"CommissionEarned\":93.22,\"TDS\":-4.9,\"MF\":30,\"YQ\":0,\"AGST\":400,\"MFT\":5.4,\"OT\":906,\"MU\":183.82,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":64.04,\"apiMarkup\":0,\"IntCommission\":1.86,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":355.78,\"GSTOnMarkUp\":64.04,\"CommEarned\":1.86,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":93.22,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.86,\"IntAgencyFixMarkUp\":355.78,\"IntTaxOnAgencyFixMarkUp\":64.04,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":64.04,\"PublishFare\":9519.86,\"CostToCustomer\":9519.86,\"BaseFareCal\":9162.22,\"intCommisionEarnedForAgency\":357.64,\"CostToCompany\":9162.22,\"intOfferedFare\":9098.18,\"intPublishFare\":9375.22,\"TripjackMarkup\":183.82,\"TripjackCommission\":93.22,\"TripjackTDS\":\"4.9\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"045\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-09-19T09:50\",\"SegFlightNumber\":\"I5-941\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-09-19T07:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-18 19:43:26'),(549,'fd704-5d825-be967-0a976','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-945\",\"keyIndex\":218,\"SegFlightNumberArr\":\"SG-945\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0404514579_0SXRBOMSG945_364213799504648\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2022-09-20T13:15\",\"LocalFromTime\":\"2022-09-20 13:15\",\"FromUTCTime\":\"2022-09-20T13:15\",\"LocalToTime\":\"2022-09-20 16:10\",\"ToUTCTime\":\"2022-09-20T16:10\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":175,\"DepartureDateTxt\":\"Tue, 20 Sep\",\"ArrivalDateTxt\":\"Tue, 20 Sep\",\"FlightDuration\":\"2h 55m\",\"SourcePlaceSysId\":\"25897\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"SXR\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":77,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":10223,\"PublishedFareTxt\":\"10,223\",\"ApiResultIndex\":\"4-0404514579_0SXRBOMSG945_364213799503168\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"fd704-5d825-be967-0a976\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7910,\"Tax\":2169.02,\"YQTax\":0,\"OtherCharges\":1532,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":404,\"CarrierMiscFee\":0,\"MUFee\":197.62,\"intPublishedFare\":10079.02,\"PublishedFare\":10223,\"PublishedFarePerPax\":5112,\"OfferedFare\":9787.46,\"CommissionEarned\":93.94,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.94,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0404514579_0SXRBOMSG945_364213799504648\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":66.15,\"apiMarkup\":0,\"IntCommission\":1.88,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":80,\"FixedMarkUp\":367.47,\"GSTOnMarkUp\":66.15,\"CommEarned\":1.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2169.02,\"BaseFareCal\":9853.61,\"BaseFare\":7910,\"CommissionEarned\":93.94,\"TDS\":-4.94,\"MF\":30,\"YQ\":0,\"AGST\":404,\"MFT\":5.4,\"OT\":1532,\"MU\":197.62,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":66.15,\"apiMarkup\":0,\"IntCommission\":1.88,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":367.47,\"GSTOnMarkUp\":66.15,\"CommEarned\":1.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":93.94,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.88,\"IntAgencyFixMarkUp\":367.47,\"IntTaxOnAgencyFixMarkUp\":66.15,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":66.15,\"PublishFare\":10222.96,\"CostToCustomer\":10222.96,\"BaseFareCal\":9853.61,\"intCommisionEarnedForAgency\":369.35,\"CostToCompany\":9853.61,\"intOfferedFare\":9787.46,\"intPublishFare\":10079.02,\"TripjackMarkup\":197.62,\"TripjackCommission\":93.94,\"TripjackTDS\":\"4.94\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Srinagar Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Srinagar\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-09-20T16:10\",\"SegFlightNumber\":\"SG-945\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"SXR\",\"originDepTime\":\"2022-09-20T13:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":77,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-19 20:57:59'),(550,'bff9d-6c388-520c2-748fb','{\"FlightBookingData\":[{\"FlightNumber\":\"9I-770\",\"keyIndex\":29,\"SegFlightNumberArr\":\"9I-770\",\"AirlineName\":\"Alliance air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-8067886526_0CCUGAU9I770_48603160706863\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"18:15\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-20T18:15\",\"LocalFromTime\":\"2022-09-20 18:15\",\"FromUTCTime\":\"2022-09-20T18:15\",\"LocalToTime\":\"2022-09-20 19:45\",\"ToUTCTime\":\"2022-09-20T19:45\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Tue, 20 Sep\",\"ArrivalDateTxt\":\"Tue, 20 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":\"14323\",\"DestPlaceSysId\":\"11240\",\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4454,\"PublishedFareTxt\":\"4,454\",\"ApiResultIndex\":\"28-8067886526_0CCUGAU9I770_48603160705803\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"bff9d-6c388-520c2-748fb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3400,\"Tax\":1148.89,\"YQTax\":0,\"OtherCharges\":1042,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":89.19,\"intPublishedFare\":4548.89,\"PublishedFare\":4454,\"PublishedFarePerPax\":4454,\"OfferedFare\":4362.8,\"CommissionEarned\":96.9,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"28-8067886526_0CCUGAU9I770_48603160706863\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SUPSAV\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":13.61,\"apiMarkup\":0,\"IntCommission\":1.94,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":75.58,\"GSTOnMarkUp\":13.61,\"CommEarned\":1.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1148.89,\"BaseFareCal\":4376.41,\"BaseFare\":3400,\"CommissionEarned\":96.9,\"TDS\":-5.1,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1042,\"MU\":89.19,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":13.61,\"apiMarkup\":0,\"IntCommission\":1.94,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":75.58,\"GSTOnMarkUp\":13.61,\"CommEarned\":1.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":96.9,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.94,\"IntAgencyFixMarkUp\":75.58,\"IntTaxOnAgencyFixMarkUp\":13.61,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":13.61,\"PublishFare\":4453.93,\"CostToCustomer\":4453.93,\"BaseFareCal\":4376.41,\"intCommisionEarnedForAgency\":77.52,\"CostToCompany\":4376.41,\"intOfferedFare\":4362.8,\"intPublishFare\":4548.89,\"TripjackMarkup\":89.19,\"TripjackCommission\":96.9,\"TripjackTDS\":\"5.1\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"03V\"},\"Segments\":[{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-09-20T19:45\",\"SegFlightNumber\":\"9I-770\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"H\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-20T18:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:15\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-20 09:07:50'),(554,'a9f4b-c6b6f-3fef5-8f0b1','{\"BookingData\":[{\"bookingId\":\"TJ108343205516\",\"FlightNumber\":\"9I-770\",\"AirlineName\":\"Alliance Air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"18:15\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-20T18:15\",\"LocalFromTime\":\"2022-09-20 18:15\",\"FromUTCTime\":\"2022-09-20T18:15\",\"LocalToTime\":\"2022-09-20 19:45\",\"ToUTCTime\":\"2022-09-20T19:45\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Tue, 20 Sep\",\"ArrivalDateTxt\":\"Tue, 20 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":11240,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9097.78,\"PublishedFareTxt\":\"9,098\",\"ApiResultIndex\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"FareRuleDetails\":{\"fareRule\":{\"CCU-GAU\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Govt Taxes refundable\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":2500,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__INR 2500 or basic fare (whichever is lower) + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARFT\":125,\"ARF\":2500,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs INR 3500 or basic fare (whichever is lower) __nls__ Before 72 hrs INR 3000 or basic fare (whichever is lower)\",\"fcs\":{\"CCF\":50,\"ACFT\":175,\"CCFT\":9,\"ACF\":3500}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6800,\"Tax\":2297.78,\"YQTax\":0,\"OtherCharges\":2084,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":178.38,\"intPublishedFare\":9097.78,\"PublishedFare\":8907.86,\"OfferedFare\":8725.6,\"CommissionEarned\":193.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"28-2147762209_0CCUGAU9I770_77237131237249\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SUPSAV\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":27.21,\"apiMarkup\":0,\"IntCommission\":3.88,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":151.17,\"GSTOnMarkUp\":27.21,\"CommEarned\":3.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2297.78,\"BaseFareCal\":8752.81,\"BaseFare\":6800,\"CommissionEarned\":193.8,\"TDS\":-10.2,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2084,\"MU\":178.38,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":27.21,\"apiMarkup\":0,\"IntCommission\":3.88,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":151.17,\"GSTOnMarkUp\":27.21,\"CommEarned\":3.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":193.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.88,\"IntAgencyFixMarkUp\":151.17,\"IntTaxOnAgencyFixMarkUp\":27.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":27.21,\"PublishFare\":8907.86,\"CostToCustomer\":8907.86,\"BaseFareCal\":8752.81,\"intCommisionEarnedForAgency\":155.05,\"CostToCompany\":8752.81,\"intOfferedFare\":8725.6,\"intPublishFare\":9097.78,\"TripjackMarkup\":178.38,\"TripjackCommission\":193.8,\"TripjackTDS\":\"10.2\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"443\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-09-20T19:45\",\"SegFlightNumber\":\"9I-770\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"S\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-20T18:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:15\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"2951\",\"Price\":2000,\"Weight\":\"5 kilos - INR 2000 (CCU-GAU)\"},{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"3165\",\"Price\":4000,\"Weight\":\"10 kilos - INR 4000 (CCU-GAU)\"},{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"3337\",\"Price\":6000,\"Weight\":\"15 kilos - INR 6000 (CCU-GAU)\"},{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"3590\",\"Price\":8000,\"Weight\":\"20 kilos - INR 8000 (CCU-GAU)\"},{\"Currency\":\"INR\",\"key\":\"443\",\"Code\":\"3646\",\"Price\":12000,\"Weight\":\"30 kilos - INR 12000 (CCU-GAU)\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a9f4b-c6b6f-3fef5-8f0b1\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"strTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-09-20 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"GAU\",\"intMemberCount\":2,\"intSourceCityId\":14323,\"intDestinationCityId\":11240,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108343205516\",\"FlightNumber\":\"9I-770\",\"AirlineName\":\"Alliance Air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"strTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"18:15\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-09-20T18:15\",\"LocalFromTime\":\"2022-09-20 18:15\",\"FromUTCTime\":\"2022-09-20T18:15\",\"LocalToTime\":\"2022-09-20 19:45\",\"ToUTCTime\":\"2022-09-20T19:45\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":90,\"DepartureDateTxt\":\"Tue, 20 Sep\",\"ArrivalDateTxt\":\"Tue, 20 Sep\",\"FlightDuration\":\"1h 30m\",\"SourcePlaceSysId\":14323,\"DestPlaceSysId\":11240,\"SourceAirportCode\":\"CCU\",\"DestAirportCode\":\"GAU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":9097.78,\"ApiResultIndex\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"SearchFlightTraceId\":\"a9f4b-c6b6f-3fef5-8f0b1\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6800,\"Tax\":2297.78,\"YQTax\":0,\"OtherCharges\":2084,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":178.38,\"intPublishedFare\":9097.78,\"PublishedFare\":8907.86,\"OfferedFare\":8725.6,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":151.17,\"GSTOnMarkUp\":27.21,\"CommEarned\":3.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2297.78,\"BaseFareCal\":8752.81,\"BaseFare\":6800,\"CommissionEarned\":193.8,\"TDS\":-10.2,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2084,\"MU\":178.38,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"FixedMarkUp\":151.17,\"GSTOnMarkUp\":27.21,\"CommEarned\":3.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"443\",\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Guwahati\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GAU\",\"destinationArrTime\":\"2022-09-20T19:45\",\"SegFlightNumber\":\"9I-770\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"S\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2022-09-20T18:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":90,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:15\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"28-2147762209_0CCUGAU9I770_48781076412868\",\"localFromDateTime\":\"2022-09-20 18:15\",\"localToDateTime\":\"2022-09-20 19:45\",\"strSourceAirportCode\":\"CCU\",\"strDestinationAirportCode\":\"GAU\",\"intMemberCount\":2,\"intSourceCityId\":14323,\"intDestinationCityId\":11240,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Kolkata (CCU)\",\"mytrip_city_to\":\"Guwahati (GAU)\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"CCU\",\"ContSysId_1\":\"101\",\"destination_city\":\"GAU\",\"ContSysId\":\"101\",\"source\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"destination\":\"Guwahati, IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU), India\",\"departure_date\":\"20\\/09\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Netaji Subhas Chandra Bose Intl (CCU)\",\"to_mytrip_city\":\" IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"CCU\",\"destinationCityAirportCode\":\"GAU\",\"from\":\"CCU\",\"to\":\"GAU\",\"sourceCityText\":\"Kolkata, IN - Netaji Subhas Chandra Bose Intl (CCU), India\",\"destinationCityText\":\"Guwahati, IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU), India\",\"sourceCityId\":14323,\"destinationCityId\":11240,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"20\\/09\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-09-20\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"a9f4b-c6b6f-3fef5-8f0b1\",\"from_city_\":\"1__CCU-GAU\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Kolkata+%28CCU%29&mytrip_city_to=Guwahati+%28GAU%29&adults=2&childs=0&infants=0&class=2&source_city=CCU&ContSysId_1=101&destination_city=GAU&ContSysId=101&source=Kolkata%2C+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29%2C+India&destination=Guwahati%2C+IN+-+Lokpriya+Gopinath+Bordoloi+Intl+Arpt+%28GAU%29%2C+India&departure_date=20%2F09%2F2022&return_date=&from_mytrip_city=+IN+-+Netaji+Subhas+Chandra+Bose+Intl+%28CCU%29&to_mytrip_city=+IN+-+Lokpriya+Gopinath+Bordoloi+Intl+Arpt+%28GAU%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"das2techconsultancy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7085589052\",\"FirstName\":\"RAJU\",\"LastName\":\"DAS\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-20-09-09-29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"64\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"47\",\"EmailId\":\"das2techconsultancy@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7085589052\",\"FirstName\":\"AMIR\",\"LastName\":\"KHAN\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-09-20-09-09-29\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"65\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"454867\",\"TPSysId\":\"454868\",\"VersionId\":[\"104165\"],\"CustomerSysId\":\"229600\",\"TrxId\":\"34227\",\"FareBreakdownid\":[\"360538\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"156\",\"157\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"47\",\"CustomerMemSysId\":[\"64\",\"65\"],\"flight_booking_id\":[\"106\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"106\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":8907.86},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"229600\",\"TPSysId\":\"454868\",\"MasterTPSysId\":\"454867\",\"ProposalID\":\"454868\\/V1\",\"InvoiceDate\":\"2022-09-20\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-09-20\",\"PaymentDate\":\"2022-09-20\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":8880.650000000001,\"InvoiceStatus\":true,\"TotalSGST\":13.605,\"TotalCGST\":13.605,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":8907.86,\"TotalDueAmount\":0,\"InvoiceValue\":8907.86,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"CCU-GAU-Alliance Air 9I-770\",\"ItemQty\":1,\"ItemRates\":8729.480000000001,\"Total\":8729.480000000001,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":8907.86,\"MarkupType\":\"\",\"Markup\":151.17,\"TotalMarkup\":151.17,\"SubTotal\":8880.650000000001,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":27.21,\"SGST\":13.605,\"CGST\":13.605,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-09-20 09:10:51'),(555,'e4a23-663cf-54a8a-22e0d','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":331,\"FlightNumber\":\"541\",\"SegFlightNumberArr\":\"6E-541, 6E-53\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-541\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188893761\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:25\",\"ArrivalTime\":\"05:40\",\"TravelDate\":\"2022-12-19T09:25\",\"LocalFromTime\":\"2022-12-19 09:25\",\"FromUTCTime\":\"2022-12-19T09:25\",\"LocalToTime\":\"2022-12-20 05:40\",\"ToUTCTime\":\"2022-12-20T05:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":735,\"LAYOVERDuration\":\"12h 15m\",\"FlyingMinutes\":875,\"DepartureDateTxt\":\"Mon, 19 Dec\",\"ArrivalDateTxt\":\"Tue, 20 Dec\",\"FlightDuration\":\"17h 45m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"35\",\"SegFlightNumberArr\":\"6E-35, 6E-7279\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-35\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188893761\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-12-24T06:40\",\"LocalFromTime\":\"2022-12-24 06:40\",\"FromUTCTime\":\"2022-12-24T06:40\",\"LocalToTime\":\"2022-12-24 16:50\",\"ToUTCTime\":\"2022-12-24T16:50\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Tiruchirappali\",\"GroundTime\":440,\"LAYOVERDuration\":\"7h 20m\",\"FlyingMinutes\":580,\"DepartureDateTxt\":\"Sat, 24 Dec\",\"ArrivalDateTxt\":\"Sat, 24 Dec\",\"FlightDuration\":\"12h 40m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":75551.29,\"PublishedFareTxt\":\"75,551\",\"ApiResultIndex\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188893761\",\"apiTraceId\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188894201\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":61808,\"Tax\":14278.28,\"YQTax\":0,\"OtherCharges\":12715.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1491.88,\"intPublishedFare\":76086.28,\"PublishedFare\":75552,\"PublishedFarePerPax\":37776,\"OfferedFare\":73566.86,\"CommissionEarned\":1027.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-54.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188894201\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14278.28,\"BaseFareCal\":73866.43,\"BaseFare\":61808,\"CommissionEarned\":1027.54,\"TDS\":-54.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12715.6,\"MU\":1491.88,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1027.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":20.55,\"IntAgencyFixMarkUp\":1664.31,\"IntTaxOnAgencyFixMarkUp\":299.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":299.57,\"PublishFare\":75551.29,\"CostToCustomer\":75551.29,\"BaseFareCal\":73866.43,\"intCommisionEarnedForAgency\":1684.86,\"CostToCompany\":73866.43,\"intOfferedFare\":73566.86,\"intPublishFare\":76086.28,\"TripjackMarkup\":1491.88,\"TripjackCommission\":1027.54,\"TripjackTDS\":\"54.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"052\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-12-19T10:30\",\"SegFlightNumber\":\"6E-541\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-12-19T09:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":735,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"09:25\",\"strArrivalDtTime\":\"10:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"12h 15m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-12-20T05:40\",\"SegFlightNumber\":\"6E-53\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-12-19T22:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"05:40\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Tiruchirapally Civil Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Tiruchirappali\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"TRZ\",\"destinationArrTime\":\"2022-12-24T08:20\",\"SegFlightNumber\":\"6E-35\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-12-24T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":250,\"GroundTime\":440,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":\"7h 20m\",\"LAYOVERCity\":\"Tiruchirappali\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tiruchirapally Civil Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Tiruchirappali\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-12-24T16:50\",\"SegFlightNumber\":\"6E-7279\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"TRZ\",\"originDepTime\":\"2022-12-24T15:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"06:40\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"keyIndex\":331,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":288,\"FlightNumber\":\"6269\",\"SegFlightNumberArr\":\"6E-6269, 6E-53\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-6269\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_0BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188549052\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"05:40\",\"TravelDate\":\"2022-12-19T07:00\",\"LocalFromTime\":\"2022-12-19 07:00\",\"FromUTCTime\":\"2022-12-19T07:00\",\"LocalToTime\":\"2022-12-20 05:40\",\"ToUTCTime\":\"2022-12-20T05:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":880,\"LAYOVERDuration\":\"14h 40m\",\"FlyingMinutes\":1030,\"DepartureDateTxt\":\"Mon, 19 Dec\",\"ArrivalDateTxt\":\"Tue, 20 Dec\",\"FlightDuration\":\"20h 10m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"35\",\"SegFlightNumberArr\":\"6E-35, 6E-7166\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-35\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_0BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188549052\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"23:40\",\"TravelDate\":\"2022-12-24T06:40\",\"LocalFromTime\":\"2022-12-24 06:40\",\"FromUTCTime\":\"2022-12-24T06:40\",\"LocalToTime\":\"2022-12-24 23:40\",\"ToUTCTime\":\"2022-12-24T23:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Tiruchirappali\",\"GroundTime\":845,\"LAYOVERDuration\":\"14h 5m\",\"FlyingMinutes\":995,\"DepartureDateTxt\":\"Sat, 24 Dec\",\"ArrivalDateTxt\":\"Sat, 24 Dec\",\"FlightDuration\":\"19h 30m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":75551.29,\"PublishedFareTxt\":\"75,551\",\"ApiResultIndex\":\"5-2563739767_0BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188549052\",\"apiTraceId\":\"5-2563739767_0BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188549052\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":61808,\"Tax\":14278.28,\"YQTax\":0,\"OtherCharges\":12715.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1491.88,\"intPublishedFare\":76086.28,\"PublishedFare\":75552,\"PublishedFarePerPax\":37776,\"OfferedFare\":73566.86,\"CommissionEarned\":1027.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-54.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_0BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188549842\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14278.28,\"BaseFareCal\":73866.43,\"BaseFare\":61808,\"CommissionEarned\":1027.54,\"TDS\":-54.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12715.6,\"MU\":1491.88,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1027.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":20.55,\"IntAgencyFixMarkUp\":1664.31,\"IntTaxOnAgencyFixMarkUp\":299.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":299.57,\"PublishFare\":75551.29,\"CostToCustomer\":75551.29,\"BaseFareCal\":73866.43,\"intCommisionEarnedForAgency\":1684.86,\"CostToCompany\":73866.43,\"intOfferedFare\":73566.86,\"intPublishFare\":76086.28,\"TripjackMarkup\":1491.88,\"TripjackCommission\":1027.54,\"TripjackTDS\":\"54.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":66814,\"Tax\":14498.76,\"YQTax\":0,\"OtherCharges\":12833.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1594.36,\"intPublishedFare\":81312.76,\"PublishedFare\":80697,\"PublishedFarePerPax\":40349,\"OfferedFare\":78607.64,\"CommissionEarned\":1110.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_0BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188550162\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14498.76,\"BaseFareCal\":78922.85,\"BaseFare\":66814,\"CommissionEarned\":1110.76,\"TDS\":-58.48,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12833.6,\"MU\":1594.36,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1110.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.22,\"IntAgencyFixMarkUp\":1751.15,\"IntTaxOnAgencyFixMarkUp\":315.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":315.21,\"PublishFare\":80696.22,\"CostToCustomer\":80696.22,\"BaseFareCal\":78922.85,\"intCommisionEarnedForAgency\":1773.37,\"CostToCompany\":78922.85,\"intOfferedFare\":78607.64,\"intPublishFare\":81312.76,\"TripjackMarkup\":1594.36,\"TripjackCommission\":1110.76,\"TripjackTDS\":\"58.48\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":73060,\"Tax\":14782.8,\"YQTax\":0,\"OtherCharges\":12989.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1722.4,\"intPublishedFare\":87842.8,\"PublishedFare\":87125,\"PublishedFarePerPax\":43563,\"OfferedFare\":84905.78,\"CommissionEarned\":1214.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-63.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_0BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188549052\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14782.8,\"BaseFareCal\":85240.52,\"BaseFare\":73060,\"CommissionEarned\":1214.62,\"TDS\":-63.92,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12989.6,\"MU\":1722.4,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1214.62,\"IntCommissionValInPercentage\":2,\"IntCommission\":24.29,\"IntAgencyFixMarkUp\":1859.66,\"IntTaxOnAgencyFixMarkUp\":334.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":334.74,\"PublishFare\":87124.47,\"CostToCustomer\":87124.47,\"BaseFareCal\":85240.52,\"intCommisionEarnedForAgency\":1883.95,\"CostToCompany\":85240.52,\"intOfferedFare\":84905.78,\"intPublishFare\":87842.8,\"TripjackMarkup\":1722.4,\"TripjackCommission\":1214.62,\"TripjackTDS\":\"63.92\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":70414,\"Tax\":17239.08,\"YQTax\":0,\"OtherCharges\":15449.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1718.68,\"intPublishedFare\":87653.08,\"PublishedFare\":84704,\"PublishedFarePerPax\":42352,\"OfferedFare\":82924.18,\"CommissionEarned\":3010.22,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-158.42,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_0BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188550382\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":17239.08,\"BaseFareCal\":83186.35,\"BaseFare\":70414,\"CommissionEarned\":3010.22,\"TDS\":-158.42,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":15449.6,\"MU\":1718.68,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3010.22,\"IntCommissionValInPercentage\":2,\"IntCommission\":60.2,\"IntAgencyFixMarkUp\":1456.51,\"IntTaxOnAgencyFixMarkUp\":262.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":262.17,\"PublishFare\":84703.06,\"CostToCustomer\":84703.06,\"BaseFareCal\":83186.35,\"intCommisionEarnedForAgency\":1516.71,\"CostToCompany\":83186.35,\"intOfferedFare\":82924.18,\"intPublishFare\":87653.08,\"TripjackMarkup\":1718.68,\"TripjackCommission\":3010.22,\"TripjackTDS\":\"158.42\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-12-19T08:05\",\"SegFlightNumber\":\"6E-6269\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-12-19T07:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":880,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"14h 40m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-12-20T05:40\",\"SegFlightNumber\":\"6E-53\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-12-19T22:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"05:40\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Tiruchirapally Civil Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Tiruchirappali\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"TRZ\",\"destinationArrTime\":\"2022-12-24T08:20\",\"SegFlightNumber\":\"6E-35\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-12-24T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":250,\"GroundTime\":845,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":\"14h 5m\",\"LAYOVERCity\":\"Tiruchirappali\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tiruchirapally Civil Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Tiruchirappali\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-12-24T23:40\",\"SegFlightNumber\":\"6E-7166\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"TRZ\",\"originDepTime\":\"2022-12-24T22:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"23:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"06:40\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"keyIndex\":288,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"05A\"},{\"origin\":{\"keyIndex\":289,\"FlightNumber\":\"6269\",\"SegFlightNumberArr\":\"6E-6269, 6E-53\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-6269\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_1BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188558872\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"05:40\",\"TravelDate\":\"2022-12-19T07:00\",\"LocalFromTime\":\"2022-12-19 07:00\",\"FromUTCTime\":\"2022-12-19T07:00\",\"LocalToTime\":\"2022-12-20 05:40\",\"ToUTCTime\":\"2022-12-20T05:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":880,\"LAYOVERDuration\":\"14h 40m\",\"FlyingMinutes\":1020,\"DepartureDateTxt\":\"Mon, 19 Dec\",\"ArrivalDateTxt\":\"Tue, 20 Dec\",\"FlightDuration\":\"20h 10m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"35\",\"SegFlightNumberArr\":\"6E-35, 6E-7279\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-35\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_1BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188558872\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-12-24T06:40\",\"LocalFromTime\":\"2022-12-24 06:40\",\"FromUTCTime\":\"2022-12-24T06:40\",\"LocalToTime\":\"2022-12-24 16:50\",\"ToUTCTime\":\"2022-12-24T16:50\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Tiruchirappali\",\"GroundTime\":440,\"LAYOVERDuration\":\"7h 20m\",\"FlyingMinutes\":580,\"DepartureDateTxt\":\"Sat, 24 Dec\",\"ArrivalDateTxt\":\"Sat, 24 Dec\",\"FlightDuration\":\"12h 40m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":75551.29,\"PublishedFareTxt\":\"75,551\",\"ApiResultIndex\":\"5-2563739767_1BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188558872\",\"apiTraceId\":\"5-2563739767_1BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188558872\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":61808,\"Tax\":14278.28,\"YQTax\":0,\"OtherCharges\":12715.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1491.88,\"intPublishedFare\":76086.28,\"PublishedFare\":75552,\"PublishedFarePerPax\":37776,\"OfferedFare\":73566.86,\"CommissionEarned\":1027.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-54.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_1BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188559202\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14278.28,\"BaseFareCal\":73866.43,\"BaseFare\":61808,\"CommissionEarned\":1027.54,\"TDS\":-54.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12715.6,\"MU\":1491.88,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1027.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":20.55,\"IntAgencyFixMarkUp\":1664.31,\"IntTaxOnAgencyFixMarkUp\":299.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":299.57,\"PublishFare\":75551.29,\"CostToCustomer\":75551.29,\"BaseFareCal\":73866.43,\"intCommisionEarnedForAgency\":1684.86,\"CostToCompany\":73866.43,\"intOfferedFare\":73566.86,\"intPublishFare\":76086.28,\"TripjackMarkup\":1491.88,\"TripjackCommission\":1027.54,\"TripjackTDS\":\"54.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":66814,\"Tax\":14498.76,\"YQTax\":0,\"OtherCharges\":12833.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1594.36,\"intPublishedFare\":81312.76,\"PublishedFare\":80697,\"PublishedFarePerPax\":40349,\"OfferedFare\":78607.64,\"CommissionEarned\":1110.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_1BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188559542\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14498.76,\"BaseFareCal\":78922.85,\"BaseFare\":66814,\"CommissionEarned\":1110.76,\"TDS\":-58.48,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12833.6,\"MU\":1594.36,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1110.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.22,\"IntAgencyFixMarkUp\":1751.15,\"IntTaxOnAgencyFixMarkUp\":315.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":315.21,\"PublishFare\":80696.22,\"CostToCustomer\":80696.22,\"BaseFareCal\":78922.85,\"intCommisionEarnedForAgency\":1773.37,\"CostToCompany\":78922.85,\"intOfferedFare\":78607.64,\"intPublishFare\":81312.76,\"TripjackMarkup\":1594.36,\"TripjackCommission\":1110.76,\"TripjackTDS\":\"58.48\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":73060,\"Tax\":14782.8,\"YQTax\":0,\"OtherCharges\":12989.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1722.4,\"intPublishedFare\":87842.8,\"PublishedFare\":87125,\"PublishedFarePerPax\":43563,\"OfferedFare\":84905.78,\"CommissionEarned\":1214.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-63.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_1BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188558872\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14782.8,\"BaseFareCal\":85240.52,\"BaseFare\":73060,\"CommissionEarned\":1214.62,\"TDS\":-63.92,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12989.6,\"MU\":1722.4,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1214.62,\"IntCommissionValInPercentage\":2,\"IntCommission\":24.29,\"IntAgencyFixMarkUp\":1859.66,\"IntTaxOnAgencyFixMarkUp\":334.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":334.74,\"PublishFare\":87124.47,\"CostToCustomer\":87124.47,\"BaseFareCal\":85240.52,\"intCommisionEarnedForAgency\":1883.95,\"CostToCompany\":85240.52,\"intOfferedFare\":84905.78,\"intPublishFare\":87842.8,\"TripjackMarkup\":1722.4,\"TripjackCommission\":1214.62,\"TripjackTDS\":\"63.92\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":70414,\"Tax\":17239.08,\"YQTax\":0,\"OtherCharges\":15449.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1718.68,\"intPublishedFare\":87653.08,\"PublishedFare\":84704,\"PublishedFarePerPax\":42352,\"OfferedFare\":82924.18,\"CommissionEarned\":3010.22,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-158.42,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_1BLRMAA6E6269MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188559842\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":17239.08,\"BaseFareCal\":83186.35,\"BaseFare\":70414,\"CommissionEarned\":3010.22,\"TDS\":-158.42,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":15449.6,\"MU\":1718.68,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3010.22,\"IntCommissionValInPercentage\":2,\"IntCommission\":60.2,\"IntAgencyFixMarkUp\":1456.51,\"IntTaxOnAgencyFixMarkUp\":262.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":262.17,\"PublishFare\":84703.06,\"CostToCustomer\":84703.06,\"BaseFareCal\":83186.35,\"intCommisionEarnedForAgency\":1516.71,\"CostToCompany\":83186.35,\"intOfferedFare\":82924.18,\"intPublishFare\":87653.08,\"TripjackMarkup\":1718.68,\"TripjackCommission\":3010.22,\"TripjackTDS\":\"158.42\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-12-19T08:05\",\"SegFlightNumber\":\"6E-6269\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-12-19T07:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":880,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"08:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"14h 40m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-12-20T05:40\",\"SegFlightNumber\":\"6E-53\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-12-19T22:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"05:40\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Tiruchirapally Civil Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Tiruchirappali\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"TRZ\",\"destinationArrTime\":\"2022-12-24T08:20\",\"SegFlightNumber\":\"6E-35\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-12-24T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":250,\"GroundTime\":440,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":\"7h 20m\",\"LAYOVERCity\":\"Tiruchirappali\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tiruchirapally Civil Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Tiruchirappali\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-12-24T16:50\",\"SegFlightNumber\":\"6E-7279\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"TRZ\",\"originDepTime\":\"2022-12-24T15:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"06:40\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"keyIndex\":289,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"05B\"},{\"origin\":{\"keyIndex\":309,\"FlightNumber\":\"541\",\"SegFlightNumberArr\":\"6E-541, 6E-51\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-541\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_21BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7166_5679188719846\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:25\",\"ArrivalTime\":\"12:35\",\"TravelDate\":\"2022-12-19T09:25\",\"LocalFromTime\":\"2022-12-19 09:25\",\"FromUTCTime\":\"2022-12-19T09:25\",\"LocalToTime\":\"2022-12-20 12:35\",\"ToUTCTime\":\"2022-12-20T12:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":1150,\"LAYOVERDuration\":\"19h 10m\",\"FlyingMinutes\":1300,\"DepartureDateTxt\":\"Mon, 19 Dec\",\"ArrivalDateTxt\":\"Tue, 20 Dec\",\"FlightDuration\":\"24h 40m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"35\",\"SegFlightNumberArr\":\"6E-35, 6E-7166\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-35\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_21BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7166_5679188719846\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"23:40\",\"TravelDate\":\"2022-12-24T06:40\",\"LocalFromTime\":\"2022-12-24 06:40\",\"FromUTCTime\":\"2022-12-24T06:40\",\"LocalToTime\":\"2022-12-24 23:40\",\"ToUTCTime\":\"2022-12-24T23:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Tiruchirappali\",\"GroundTime\":845,\"LAYOVERDuration\":\"14h 5m\",\"FlyingMinutes\":995,\"DepartureDateTxt\":\"Sat, 24 Dec\",\"ArrivalDateTxt\":\"Sat, 24 Dec\",\"FlightDuration\":\"19h 30m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":75551.29,\"PublishedFareTxt\":\"75,551\",\"ApiResultIndex\":\"5-2563739767_21BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7166_5679188719846\",\"apiTraceId\":\"5-2563739767_21BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7166_5679188719846\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":61808,\"Tax\":14278.28,\"YQTax\":0,\"OtherCharges\":12715.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1491.88,\"intPublishedFare\":76086.28,\"PublishedFare\":75552,\"PublishedFarePerPax\":37776,\"OfferedFare\":73566.86,\"CommissionEarned\":1027.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-54.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_21BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7166_5679188720176\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14278.28,\"BaseFareCal\":73866.43,\"BaseFare\":61808,\"CommissionEarned\":1027.54,\"TDS\":-54.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12715.6,\"MU\":1491.88,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1027.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":20.55,\"IntAgencyFixMarkUp\":1664.31,\"IntTaxOnAgencyFixMarkUp\":299.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":299.57,\"PublishFare\":75551.29,\"CostToCustomer\":75551.29,\"BaseFareCal\":73866.43,\"intCommisionEarnedForAgency\":1684.86,\"CostToCompany\":73866.43,\"intOfferedFare\":73566.86,\"intPublishFare\":76086.28,\"TripjackMarkup\":1491.88,\"TripjackCommission\":1027.54,\"TripjackTDS\":\"54.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":66814,\"Tax\":14498.76,\"YQTax\":0,\"OtherCharges\":12833.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1594.36,\"intPublishedFare\":81312.76,\"PublishedFare\":80697,\"PublishedFarePerPax\":40349,\"OfferedFare\":78607.64,\"CommissionEarned\":1110.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_21BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7166_5679188720497\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14498.76,\"BaseFareCal\":78922.85,\"BaseFare\":66814,\"CommissionEarned\":1110.76,\"TDS\":-58.48,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12833.6,\"MU\":1594.36,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1110.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.22,\"IntAgencyFixMarkUp\":1751.15,\"IntTaxOnAgencyFixMarkUp\":315.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":315.21,\"PublishFare\":80696.22,\"CostToCustomer\":80696.22,\"BaseFareCal\":78922.85,\"intCommisionEarnedForAgency\":1773.37,\"CostToCompany\":78922.85,\"intOfferedFare\":78607.64,\"intPublishFare\":81312.76,\"TripjackMarkup\":1594.36,\"TripjackCommission\":1110.76,\"TripjackTDS\":\"58.48\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":73060,\"Tax\":14782.8,\"YQTax\":0,\"OtherCharges\":12989.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1722.4,\"intPublishedFare\":87842.8,\"PublishedFare\":87125,\"PublishedFarePerPax\":43563,\"OfferedFare\":84905.78,\"CommissionEarned\":1214.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-63.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_21BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7166_5679188719846\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14782.8,\"BaseFareCal\":85240.52,\"BaseFare\":73060,\"CommissionEarned\":1214.62,\"TDS\":-63.92,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12989.6,\"MU\":1722.4,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1214.62,\"IntCommissionValInPercentage\":2,\"IntCommission\":24.29,\"IntAgencyFixMarkUp\":1859.66,\"IntTaxOnAgencyFixMarkUp\":334.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":334.74,\"PublishFare\":87124.47,\"CostToCustomer\":87124.47,\"BaseFareCal\":85240.52,\"intCommisionEarnedForAgency\":1883.95,\"CostToCompany\":85240.52,\"intOfferedFare\":84905.78,\"intPublishFare\":87842.8,\"TripjackMarkup\":1722.4,\"TripjackCommission\":1214.62,\"TripjackTDS\":\"63.92\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":70414,\"Tax\":17239.08,\"YQTax\":0,\"OtherCharges\":15449.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1718.68,\"intPublishedFare\":87653.08,\"PublishedFare\":84704,\"PublishedFarePerPax\":42352,\"OfferedFare\":82924.18,\"CommissionEarned\":3010.22,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-158.42,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_21BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7166_5679188720807\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":17239.08,\"BaseFareCal\":83186.35,\"BaseFare\":70414,\"CommissionEarned\":3010.22,\"TDS\":-158.42,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":15449.6,\"MU\":1718.68,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3010.22,\"IntCommissionValInPercentage\":2,\"IntCommission\":60.2,\"IntAgencyFixMarkUp\":1456.51,\"IntTaxOnAgencyFixMarkUp\":262.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":262.17,\"PublishFare\":84703.06,\"CostToCustomer\":84703.06,\"BaseFareCal\":83186.35,\"intCommisionEarnedForAgency\":1516.71,\"CostToCompany\":83186.35,\"intOfferedFare\":82924.18,\"intPublishFare\":87653.08,\"TripjackMarkup\":1718.68,\"TripjackCommission\":3010.22,\"TripjackTDS\":\"158.42\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-12-19T10:30\",\"SegFlightNumber\":\"6E-541\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-12-19T09:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":1150,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:25\",\"strArrivalDtTime\":\"10:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"19h 10m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-12-20T12:35\",\"SegFlightNumber\":\"6E-51\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-12-20T05:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"12:35\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Tiruchirapally Civil Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Tiruchirappali\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"TRZ\",\"destinationArrTime\":\"2022-12-24T08:20\",\"SegFlightNumber\":\"6E-35\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-12-24T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":250,\"GroundTime\":845,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":\"14h 5m\",\"LAYOVERCity\":\"Tiruchirappali\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tiruchirapally Civil Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Tiruchirappali\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-12-24T23:40\",\"SegFlightNumber\":\"6E-7166\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"TRZ\",\"originDepTime\":\"2022-12-24T22:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"23:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"06:40\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"keyIndex\":309,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"05C\"},{\"origin\":{\"keyIndex\":310,\"FlightNumber\":\"541\",\"SegFlightNumberArr\":\"6E-541, 6E-51\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-541\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_22BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7279_5679188727617\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:25\",\"ArrivalTime\":\"12:35\",\"TravelDate\":\"2022-12-19T09:25\",\"LocalFromTime\":\"2022-12-19 09:25\",\"FromUTCTime\":\"2022-12-19T09:25\",\"LocalToTime\":\"2022-12-20 12:35\",\"ToUTCTime\":\"2022-12-20T12:35\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":1150,\"LAYOVERDuration\":\"19h 10m\",\"FlyingMinutes\":1290,\"DepartureDateTxt\":\"Mon, 19 Dec\",\"ArrivalDateTxt\":\"Tue, 20 Dec\",\"FlightDuration\":\"24h 40m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"35\",\"SegFlightNumberArr\":\"6E-35, 6E-7279\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-35\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_22BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7279_5679188727617\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-12-24T06:40\",\"LocalFromTime\":\"2022-12-24 06:40\",\"FromUTCTime\":\"2022-12-24T06:40\",\"LocalToTime\":\"2022-12-24 16:50\",\"ToUTCTime\":\"2022-12-24T16:50\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Tiruchirappali\",\"GroundTime\":440,\"LAYOVERDuration\":\"7h 20m\",\"FlyingMinutes\":580,\"DepartureDateTxt\":\"Sat, 24 Dec\",\"ArrivalDateTxt\":\"Sat, 24 Dec\",\"FlightDuration\":\"12h 40m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":75551.29,\"PublishedFareTxt\":\"75,551\",\"ApiResultIndex\":\"5-2563739767_22BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7279_5679188727617\",\"apiTraceId\":\"5-2563739767_22BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7279_5679188727617\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":61808,\"Tax\":14278.28,\"YQTax\":0,\"OtherCharges\":12715.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1491.88,\"intPublishedFare\":76086.28,\"PublishedFare\":75552,\"PublishedFarePerPax\":37776,\"OfferedFare\":73566.86,\"CommissionEarned\":1027.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-54.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_22BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7279_5679188727937\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14278.28,\"BaseFareCal\":73866.43,\"BaseFare\":61808,\"CommissionEarned\":1027.54,\"TDS\":-54.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12715.6,\"MU\":1491.88,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1027.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":20.55,\"IntAgencyFixMarkUp\":1664.31,\"IntTaxOnAgencyFixMarkUp\":299.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":299.57,\"PublishFare\":75551.29,\"CostToCustomer\":75551.29,\"BaseFareCal\":73866.43,\"intCommisionEarnedForAgency\":1684.86,\"CostToCompany\":73866.43,\"intOfferedFare\":73566.86,\"intPublishFare\":76086.28,\"TripjackMarkup\":1491.88,\"TripjackCommission\":1027.54,\"TripjackTDS\":\"54.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":66814,\"Tax\":14498.76,\"YQTax\":0,\"OtherCharges\":12833.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1594.36,\"intPublishedFare\":81312.76,\"PublishedFare\":80697,\"PublishedFarePerPax\":40349,\"OfferedFare\":78607.64,\"CommissionEarned\":1110.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_22BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7279_5679188728247\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14498.76,\"BaseFareCal\":78922.85,\"BaseFare\":66814,\"CommissionEarned\":1110.76,\"TDS\":-58.48,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12833.6,\"MU\":1594.36,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1110.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.22,\"IntAgencyFixMarkUp\":1751.15,\"IntTaxOnAgencyFixMarkUp\":315.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":315.21,\"PublishFare\":80696.22,\"CostToCustomer\":80696.22,\"BaseFareCal\":78922.85,\"intCommisionEarnedForAgency\":1773.37,\"CostToCompany\":78922.85,\"intOfferedFare\":78607.64,\"intPublishFare\":81312.76,\"TripjackMarkup\":1594.36,\"TripjackCommission\":1110.76,\"TripjackTDS\":\"58.48\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":73060,\"Tax\":14782.8,\"YQTax\":0,\"OtherCharges\":12989.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1722.4,\"intPublishedFare\":87842.8,\"PublishedFare\":87125,\"PublishedFarePerPax\":43563,\"OfferedFare\":84905.78,\"CommissionEarned\":1214.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-63.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_22BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7279_5679188727617\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14782.8,\"BaseFareCal\":85240.52,\"BaseFare\":73060,\"CommissionEarned\":1214.62,\"TDS\":-63.92,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12989.6,\"MU\":1722.4,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1214.62,\"IntCommissionValInPercentage\":2,\"IntCommission\":24.29,\"IntAgencyFixMarkUp\":1859.66,\"IntTaxOnAgencyFixMarkUp\":334.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":334.74,\"PublishFare\":87124.47,\"CostToCustomer\":87124.47,\"BaseFareCal\":85240.52,\"intCommisionEarnedForAgency\":1883.95,\"CostToCompany\":85240.52,\"intOfferedFare\":84905.78,\"intPublishFare\":87842.8,\"TripjackMarkup\":1722.4,\"TripjackCommission\":1214.62,\"TripjackTDS\":\"63.92\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":70414,\"Tax\":17239.08,\"YQTax\":0,\"OtherCharges\":15449.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1718.68,\"intPublishedFare\":87653.08,\"PublishedFare\":84704,\"PublishedFarePerPax\":42352,\"OfferedFare\":82924.18,\"CommissionEarned\":3010.22,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-158.42,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_22BLRMAA6E541MAASIN6E51SINTRZ6E35TRZBLR6E7279_5679188728577\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":17239.08,\"BaseFareCal\":83186.35,\"BaseFare\":70414,\"CommissionEarned\":3010.22,\"TDS\":-158.42,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":15449.6,\"MU\":1718.68,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3010.22,\"IntCommissionValInPercentage\":2,\"IntCommission\":60.2,\"IntAgencyFixMarkUp\":1456.51,\"IntTaxOnAgencyFixMarkUp\":262.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":262.17,\"PublishFare\":84703.06,\"CostToCustomer\":84703.06,\"BaseFareCal\":83186.35,\"intCommisionEarnedForAgency\":1516.71,\"CostToCompany\":83186.35,\"intOfferedFare\":82924.18,\"intPublishFare\":87653.08,\"TripjackMarkup\":1718.68,\"TripjackCommission\":3010.22,\"TripjackTDS\":\"158.42\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-12-19T10:30\",\"SegFlightNumber\":\"6E-541\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-12-19T09:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":1150,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"09:25\",\"strArrivalDtTime\":\"10:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"19h 10m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-12-20T12:35\",\"SegFlightNumber\":\"6E-51\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-12-20T05:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"12:35\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Tiruchirapally Civil Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Tiruchirappali\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"TRZ\",\"destinationArrTime\":\"2022-12-24T08:20\",\"SegFlightNumber\":\"6E-35\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-12-24T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":250,\"GroundTime\":440,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":\"7h 20m\",\"LAYOVERCity\":\"Tiruchirappali\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tiruchirapally Civil Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Tiruchirappali\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-12-24T16:50\",\"SegFlightNumber\":\"6E-7279\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"TRZ\",\"originDepTime\":\"2022-12-24T15:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"06:40\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"keyIndex\":310,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"05D\"},{\"origin\":{\"keyIndex\":330,\"FlightNumber\":\"541\",\"SegFlightNumberArr\":\"6E-541, 6E-53\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-541\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_42BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188885431\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:25\",\"ArrivalTime\":\"05:40\",\"TravelDate\":\"2022-12-19T09:25\",\"LocalFromTime\":\"2022-12-19 09:25\",\"FromUTCTime\":\"2022-12-19T09:25\",\"LocalToTime\":\"2022-12-20 05:40\",\"ToUTCTime\":\"2022-12-20T05:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":735,\"LAYOVERDuration\":\"12h 15m\",\"FlyingMinutes\":885,\"DepartureDateTxt\":\"Mon, 19 Dec\",\"ArrivalDateTxt\":\"Tue, 20 Dec\",\"FlightDuration\":\"17h 45m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"35\",\"SegFlightNumberArr\":\"6E-35, 6E-7166\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-35\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_42BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188885431\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"23:40\",\"TravelDate\":\"2022-12-24T06:40\",\"LocalFromTime\":\"2022-12-24 06:40\",\"FromUTCTime\":\"2022-12-24T06:40\",\"LocalToTime\":\"2022-12-24 23:40\",\"ToUTCTime\":\"2022-12-24T23:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Tiruchirappali\",\"GroundTime\":845,\"LAYOVERDuration\":\"14h 5m\",\"FlyingMinutes\":995,\"DepartureDateTxt\":\"Sat, 24 Dec\",\"ArrivalDateTxt\":\"Sat, 24 Dec\",\"FlightDuration\":\"19h 30m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":75551.29,\"PublishedFareTxt\":\"75,551\",\"ApiResultIndex\":\"5-2563739767_42BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188885431\",\"apiTraceId\":\"5-2563739767_42BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188885431\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":61808,\"Tax\":14278.28,\"YQTax\":0,\"OtherCharges\":12715.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1491.88,\"intPublishedFare\":76086.28,\"PublishedFare\":75552,\"PublishedFarePerPax\":37776,\"OfferedFare\":73566.86,\"CommissionEarned\":1027.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-54.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_42BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188885801\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14278.28,\"BaseFareCal\":73866.43,\"BaseFare\":61808,\"CommissionEarned\":1027.54,\"TDS\":-54.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12715.6,\"MU\":1491.88,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1027.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":20.55,\"IntAgencyFixMarkUp\":1664.31,\"IntTaxOnAgencyFixMarkUp\":299.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":299.57,\"PublishFare\":75551.29,\"CostToCustomer\":75551.29,\"BaseFareCal\":73866.43,\"intCommisionEarnedForAgency\":1684.86,\"CostToCompany\":73866.43,\"intOfferedFare\":73566.86,\"intPublishFare\":76086.28,\"TripjackMarkup\":1491.88,\"TripjackCommission\":1027.54,\"TripjackTDS\":\"54.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":66814,\"Tax\":14498.76,\"YQTax\":0,\"OtherCharges\":12833.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1594.36,\"intPublishedFare\":81312.76,\"PublishedFare\":80697,\"PublishedFarePerPax\":40349,\"OfferedFare\":78607.64,\"CommissionEarned\":1110.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_42BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188886461\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14498.76,\"BaseFareCal\":78922.85,\"BaseFare\":66814,\"CommissionEarned\":1110.76,\"TDS\":-58.48,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12833.6,\"MU\":1594.36,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1110.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.22,\"IntAgencyFixMarkUp\":1751.15,\"IntTaxOnAgencyFixMarkUp\":315.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":315.21,\"PublishFare\":80696.22,\"CostToCustomer\":80696.22,\"BaseFareCal\":78922.85,\"intCommisionEarnedForAgency\":1773.37,\"CostToCompany\":78922.85,\"intOfferedFare\":78607.64,\"intPublishFare\":81312.76,\"TripjackMarkup\":1594.36,\"TripjackCommission\":1110.76,\"TripjackTDS\":\"58.48\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":73060,\"Tax\":14782.8,\"YQTax\":0,\"OtherCharges\":12989.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1722.4,\"intPublishedFare\":87842.8,\"PublishedFare\":87125,\"PublishedFarePerPax\":43563,\"OfferedFare\":84905.78,\"CommissionEarned\":1214.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-63.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_42BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188885431\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14782.8,\"BaseFareCal\":85240.52,\"BaseFare\":73060,\"CommissionEarned\":1214.62,\"TDS\":-63.92,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12989.6,\"MU\":1722.4,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1214.62,\"IntCommissionValInPercentage\":2,\"IntCommission\":24.29,\"IntAgencyFixMarkUp\":1859.66,\"IntTaxOnAgencyFixMarkUp\":334.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":334.74,\"PublishFare\":87124.47,\"CostToCustomer\":87124.47,\"BaseFareCal\":85240.52,\"intCommisionEarnedForAgency\":1883.95,\"CostToCompany\":85240.52,\"intOfferedFare\":84905.78,\"intPublishFare\":87842.8,\"TripjackMarkup\":1722.4,\"TripjackCommission\":1214.62,\"TripjackTDS\":\"63.92\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":70414,\"Tax\":17239.08,\"YQTax\":0,\"OtherCharges\":15449.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1718.68,\"intPublishedFare\":87653.08,\"PublishedFare\":84704,\"PublishedFarePerPax\":42352,\"OfferedFare\":82924.18,\"CommissionEarned\":3010.22,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-158.42,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_42BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7166_5679188886811\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":17239.08,\"BaseFareCal\":83186.35,\"BaseFare\":70414,\"CommissionEarned\":3010.22,\"TDS\":-158.42,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":15449.6,\"MU\":1718.68,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3010.22,\"IntCommissionValInPercentage\":2,\"IntCommission\":60.2,\"IntAgencyFixMarkUp\":1456.51,\"IntTaxOnAgencyFixMarkUp\":262.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":262.17,\"PublishFare\":84703.06,\"CostToCustomer\":84703.06,\"BaseFareCal\":83186.35,\"intCommisionEarnedForAgency\":1516.71,\"CostToCompany\":83186.35,\"intOfferedFare\":82924.18,\"intPublishFare\":87653.08,\"TripjackMarkup\":1718.68,\"TripjackCommission\":3010.22,\"TripjackTDS\":\"158.42\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-12-19T10:30\",\"SegFlightNumber\":\"6E-541\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-12-19T09:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":735,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"09:25\",\"strArrivalDtTime\":\"10:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"12h 15m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-12-20T05:40\",\"SegFlightNumber\":\"6E-53\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-12-19T22:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"05:40\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Tiruchirapally Civil Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Tiruchirappali\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"TRZ\",\"destinationArrTime\":\"2022-12-24T08:20\",\"SegFlightNumber\":\"6E-35\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-12-24T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":250,\"GroundTime\":845,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":\"14h 5m\",\"LAYOVERCity\":\"Tiruchirappali\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tiruchirapally Civil Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Tiruchirappali\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-12-24T23:40\",\"SegFlightNumber\":\"6E-7166\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"TRZ\",\"originDepTime\":\"2022-12-24T22:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"22:25\",\"strArrivalDtTime\":\"23:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"06:40\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"keyIndex\":330,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"05E\"},{\"origin\":{\"keyIndex\":331,\"FlightNumber\":\"541\",\"SegFlightNumberArr\":\"6E-541, 6E-53\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"OrFlightNumber\":\"6E-541\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188893761\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"09:25\",\"ArrivalTime\":\"05:40\",\"TravelDate\":\"2022-12-19T09:25\",\"LocalFromTime\":\"2022-12-19 09:25\",\"FromUTCTime\":\"2022-12-19T09:25\",\"LocalToTime\":\"2022-12-20 05:40\",\"ToUTCTime\":\"2022-12-20T05:40\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Chennai\",\"GroundTime\":735,\"LAYOVERDuration\":\"12h 15m\",\"FlyingMinutes\":875,\"DepartureDateTxt\":\"Mon, 19 Dec\",\"ArrivalDateTxt\":\"Tue, 20 Dec\",\"FlightDuration\":\"17h 45m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"SIN\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"destination\":{\"FlightNumber\":\"35\",\"SegFlightNumberArr\":\"6E-35, 6E-7279\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"DeFlightNumber\":\"6E-35\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188893761\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:40\",\"ArrivalTime\":\"16:50\",\"TravelDate\":\"2022-12-24T06:40\",\"LocalFromTime\":\"2022-12-24 06:40\",\"FromUTCTime\":\"2022-12-24T06:40\",\"LocalToTime\":\"2022-12-24 16:50\",\"ToUTCTime\":\"2022-12-24T16:50\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Tiruchirappali\",\"GroundTime\":440,\"LAYOVERDuration\":\"7h 20m\",\"FlyingMinutes\":580,\"DepartureDateTxt\":\"Sat, 24 Dec\",\"ArrivalDateTxt\":\"Sat, 24 Dec\",\"FlightDuration\":\"12h 40m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"25278\",\"SourceAirportCode\":\"SIN\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},\"AirlineName\":\"IndiGo\",\"PublishedFare\":75551.29,\"PublishedFareTxt\":\"75,551\",\"ApiResultIndex\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188893761\",\"apiTraceId\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188893761\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":61808,\"Tax\":14278.28,\"YQTax\":0,\"OtherCharges\":12715.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1491.88,\"intPublishedFare\":76086.28,\"PublishedFare\":75552,\"PublishedFarePerPax\":37776,\"OfferedFare\":73566.86,\"CommissionEarned\":1027.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-54.1,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188894201\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14278.28,\"BaseFareCal\":73866.43,\"BaseFare\":61808,\"CommissionEarned\":1027.54,\"TDS\":-54.1,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12715.6,\"MU\":1491.88,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":299.57,\"apiMarkup\":0,\"IntCommission\":20.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1664.31,\"GSTOnMarkUp\":299.57,\"CommEarned\":20.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1027.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":20.55,\"IntAgencyFixMarkUp\":1664.31,\"IntTaxOnAgencyFixMarkUp\":299.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":299.57,\"PublishFare\":75551.29,\"CostToCustomer\":75551.29,\"BaseFareCal\":73866.43,\"intCommisionEarnedForAgency\":1684.86,\"CostToCompany\":73866.43,\"intOfferedFare\":73566.86,\"intPublishFare\":76086.28,\"TripjackMarkup\":1491.88,\"TripjackCommission\":1027.54,\"TripjackTDS\":\"54.1\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":66814,\"Tax\":14498.76,\"YQTax\":0,\"OtherCharges\":12833.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1594.36,\"intPublishedFare\":81312.76,\"PublishedFare\":80697,\"PublishedFarePerPax\":40349,\"OfferedFare\":78607.64,\"CommissionEarned\":1110.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188894511\",\"IsGSTRequired\":false,\"fareremarks\":\"Round Trip Special Discount\",\"fareIdentifier\":\"Round Trip Special\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14498.76,\"BaseFareCal\":78922.85,\"BaseFare\":66814,\"CommissionEarned\":1110.76,\"TDS\":-58.48,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12833.6,\"MU\":1594.36,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":315.21,\"apiMarkup\":0,\"IntCommission\":22.22,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1751.15,\"GSTOnMarkUp\":315.21,\"CommEarned\":22.22,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1110.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.22,\"IntAgencyFixMarkUp\":1751.15,\"IntTaxOnAgencyFixMarkUp\":315.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":315.21,\"PublishFare\":80696.22,\"CostToCustomer\":80696.22,\"BaseFareCal\":78922.85,\"intCommisionEarnedForAgency\":1773.37,\"CostToCompany\":78922.85,\"intOfferedFare\":78607.64,\"intPublishFare\":81312.76,\"TripjackMarkup\":1594.36,\"TripjackCommission\":1110.76,\"TripjackTDS\":\"58.48\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":73060,\"Tax\":14782.8,\"YQTax\":0,\"OtherCharges\":12989.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1722.4,\"intPublishedFare\":87842.8,\"PublishedFare\":87125,\"PublishedFarePerPax\":43563,\"OfferedFare\":84905.78,\"CommissionEarned\":1214.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-63.92,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188893761\",\"IsGSTRequired\":false,\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"fareIdentifier\":\"Flexi\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14782.8,\"BaseFareCal\":85240.52,\"BaseFare\":73060,\"CommissionEarned\":1214.62,\"TDS\":-63.92,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":12989.6,\"MU\":1722.4,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":334.74,\"apiMarkup\":0,\"IntCommission\":24.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1859.66,\"GSTOnMarkUp\":334.74,\"CommEarned\":24.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1214.62,\"IntCommissionValInPercentage\":2,\"IntCommission\":24.29,\"IntAgencyFixMarkUp\":1859.66,\"IntTaxOnAgencyFixMarkUp\":334.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":334.74,\"PublishFare\":87124.47,\"CostToCustomer\":87124.47,\"BaseFareCal\":85240.52,\"intCommisionEarnedForAgency\":1883.95,\"CostToCompany\":85240.52,\"intOfferedFare\":84905.78,\"intPublishFare\":87842.8,\"TripjackMarkup\":1722.4,\"TripjackCommission\":1214.62,\"TripjackTDS\":\"63.92\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":70414,\"Tax\":17239.08,\"YQTax\":0,\"OtherCharges\":15449.6,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1718.68,\"intPublishedFare\":87653.08,\"PublishedFare\":84704,\"PublishedFarePerPax\":42352,\"OfferedFare\":82924.18,\"CommissionEarned\":3010.22,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-158.42,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2563739767_43BLRMAA6E541MAASIN6E53SINTRZ6E35TRZBLR6E7279_5679188894831\",\"IsGSTRequired\":false,\"fareremarks\":\"\",\"fareIdentifier\":\"\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":17239.08,\"BaseFareCal\":83186.35,\"BaseFare\":70414,\"CommissionEarned\":3010.22,\"TDS\":-158.42,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":15449.6,\"MU\":1718.68,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":262.17,\"apiMarkup\":0,\"IntCommission\":60.2,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1456.51,\"GSTOnMarkUp\":262.17,\"CommEarned\":60.2,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3010.22,\"IntCommissionValInPercentage\":2,\"IntCommission\":60.2,\"IntAgencyFixMarkUp\":1456.51,\"IntTaxOnAgencyFixMarkUp\":262.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":262.17,\"PublishFare\":84703.06,\"CostToCustomer\":84703.06,\"BaseFareCal\":83186.35,\"intCommisionEarnedForAgency\":1516.71,\"CostToCompany\":83186.35,\"intOfferedFare\":82924.18,\"intPublishFare\":87653.08,\"TripjackMarkup\":1718.68,\"TripjackCommission\":3010.22,\"TripjackTDS\":\"158.42\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-12-19T10:30\",\"SegFlightNumber\":\"6E-541\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-12-19T09:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":735,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"09:25\",\"strArrivalDtTime\":\"10:30\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"12h 15m\",\"LAYOVERCity\":\"Chennai\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Chennai Arpt\",\"destinationAirportName\":\"Changi Intl Arpt\",\"originCityName\":\"Chennai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Singapore\",\"destinationCountryName\":\"Singapore\",\"destinationAirportCode\":\"SIN\",\"destinationArrTime\":\"2022-12-20T05:40\",\"SegFlightNumber\":\"6E-53\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"MAA\",\"originDepTime\":\"2022-12-19T22:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":265,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"22:45\",\"strArrivalDtTime\":\"05:40\",\"FlightDuration\":\"4h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Changi Intl Arpt\",\"destinationAirportName\":\"Tiruchirapally Civil Arpt\",\"originCityName\":\"Singapore\",\"originCountryName\":\"Singapore\",\"destinationCityName\":\"Tiruchirappali\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"TRZ\",\"destinationArrTime\":\"2022-12-24T08:20\",\"SegFlightNumber\":\"6E-35\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"SIN\",\"originDepTime\":\"2022-12-24T06:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":250,\"GroundTime\":440,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"06:40\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":\"7h 20m\",\"LAYOVERCity\":\"Tiruchirappali\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tiruchirapally Civil Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Tiruchirappali\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-12-24T16:50\",\"SegFlightNumber\":\"6E-7279\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"TRZ\",\"originDepTime\":\"2022-12-24T15:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"15:40\",\"strArrivalDtTime\":\"16:50\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"DepartureTime\":\"06:40\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"e4a23-663cf-54a8a-22e0d\",\"keyIndex\":331,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"05F\"}]}],\"FlightBookingDataInbound\":null}','2022-09-20 14:28:51'),(556,'1fca5-767ea-7a3ad-66303','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-534\",\"keyIndex\":87,\"SegFlightNumberArr\":\"6E-534, 6E-5036\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3227937969_0IXBDEL6E534DELBLR6E5036_103335330495879\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:50\",\"ArrivalTime\":\"05:15\",\"TravelDate\":\"2022-10-12T16:50\",\"LocalFromTime\":\"2022-10-12 16:50\",\"FromUTCTime\":\"2022-10-12T16:50\",\"LocalToTime\":\"2022-10-13 05:15\",\"ToUTCTime\":\"2022-10-13T05:15\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":460,\"LAYOVERDuration\":\"7h 40m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Wed, 12 Oct\",\"ArrivalDateTxt\":\"Thu, 13 Oct\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"2012\",\"DestPlaceSysId\":\"2262\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BLR\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":9859,\"PublishedFareTxt\":\"9,858\",\"ApiResultIndex\":\"5-3227937969_0IXBDEL6E534DELBLR6E5036_103335330494629\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"1fca5-767ea-7a3ad-66303\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8985,\"Tax\":721.01,\"YQTax\":0,\"OtherCharges\":513,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":190.31,\"intPublishedFare\":9706.01,\"PublishedFare\":9859,\"PublishedFarePerPax\":9859,\"OfferedFare\":9430.34,\"CommissionEarned\":85.36,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.49,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3227937969_0IXBDEL6E534DELBLR6E5036_103335330495879\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":65.03,\"apiMarkup\":0,\"IntCommission\":1.71,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":361.28,\"GSTOnMarkUp\":65.03,\"CommEarned\":1.71,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":721.01,\"BaseFareCal\":9495.37,\"BaseFare\":8985,\"CommissionEarned\":85.36,\"TDS\":-4.49,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":513,\"MU\":190.31,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":65.03,\"apiMarkup\":0,\"IntCommission\":1.71,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":361.28,\"GSTOnMarkUp\":65.03,\"CommEarned\":1.71,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"01 Small Handbag under the seat\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":85.36,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.71,\"IntAgencyFixMarkUp\":361.28,\"IntTaxOnAgencyFixMarkUp\":65.03,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":65.03,\"PublishFare\":9858.36,\"CostToCustomer\":9858.36,\"BaseFareCal\":9495.37,\"intCommisionEarnedForAgency\":362.99,\"CostToCompany\":9495.37,\"intOfferedFare\":9430.34,\"intPublishFare\":9706.01,\"TripjackMarkup\":190.31,\"TripjackCommission\":85.36,\"TripjackTDS\":\"4.49\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"03N\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-10-12T18:45\",\"SegFlightNumber\":\"6E-534\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-10-12T16:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":460,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"16:50\",\"strArrivalDtTime\":\"18:45\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":\"7h 40m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-10-13T05:15\",\"SegFlightNumber\":\"6E-5036\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-10-13T02:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"01 Small Handbag under the seat\",\"IsMealIncludes\":true,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"02:25\",\"strArrivalDtTime\":\"05:15\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-09-26 12:19:46'),(557,'9d744-8bc8d-8da6c-9345e','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":230,\"FlightNumber\":\"884\",\"SegFlightNumberArr\":\"VJ-884, VJ-897\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"OrFlightNumber\":\"VJ-884\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"00:20\",\"ArrivalTime\":\"14:35\",\"TravelDate\":\"2023-01-06T00:20\",\"LocalFromTime\":\"2023-01-06 00:20\",\"FromUTCTime\":\"2023-01-06T00:20\",\"LocalToTime\":\"2023-01-06 14:35\",\"ToUTCTime\":\"2023-01-06T14:35\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"GroundTime\":170,\"LAYOVERDuration\":\"2h 50m\",\"FlyingMinutes\":780,\"DepartureDateTxt\":\"Fri, 06 Jan\",\"ArrivalDateTxt\":\"Fri, 06 Jan\",\"FlightDuration\":\"11h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DPS\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"destination\":{\"FlightNumber\":\"998\",\"SegFlightNumberArr\":\"VJ-998, VJ-459, VJ-957\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"DeFlightNumber\":\"VJ-998\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"21:25\",\"TravelDate\":\"2023-01-09T17:30\",\"LocalFromTime\":\"2023-01-09 17:30\",\"FromUTCTime\":\"2023-01-09T17:30\",\"LocalToTime\":\"2023-01-10 21:25\",\"ToUTCTime\":\"2023-01-10T21:25\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"Hanoi\",\"GroundTime\":1055,\"LAYOVERDuration\":\"17h 35m\",\"FlyingMinutes\":1970,\"DepartureDateTxt\":\"Mon, 09 Jan\",\"ArrivalDateTxt\":\"Tue, 10 Jan\",\"FlightDuration\":\"30h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DPS\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"AirlineName\":\"Vietjet Airlines\",\"PublishedFare\":143745.1,\"PublishedFareTxt\":\"143,745\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":106950,\"Tax\":40405.5,\"YQTax\":15054,\"OtherCharges\":16632,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":5724,\"CarrierMiscFee\":0,\"MUFee\":2889.3,\"intPublishedFare\":147355.5,\"PublishedFare\":143746,\"PublishedFarePerPax\":47916,\"OfferedFare\":140300.49,\"CommissionEarned\":4165.71,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-219.24,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":5,\"intTotalGST\":512.74,\"apiMarkup\":0,\"IntCommission\":83.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2848.56,\"GSTOnMarkUp\":512.74,\"CommEarned\":83.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":40405.5,\"BaseFareCal\":140813.23,\"BaseFare\":106950,\"CommissionEarned\":4165.71,\"TDS\":-219.24,\"MF\":90,\"YQ\":15054,\"AGST\":5724,\"MFT\":16.200000000000003,\"OT\":16632,\"MU\":2889.3,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":512.74,\"apiMarkup\":0,\"IntCommission\":83.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2848.56,\"GSTOnMarkUp\":512.74,\"CommEarned\":83.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":4165.71,\"IntCommissionValInPercentage\":2,\"IntCommission\":83.31,\"IntAgencyFixMarkUp\":2848.56,\"IntTaxOnAgencyFixMarkUp\":512.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":512.74,\"PublishFare\":143745.1,\"CostToCustomer\":143745.1,\"BaseFareCal\":140813.23,\"intCommisionEarnedForAgency\":2931.87,\"CostToCompany\":140813.23,\"intOfferedFare\":140300.49,\"intPublishFare\":147355.5,\"TripjackMarkup\":2889.3,\"TripjackCommission\":4165.71,\"TripjackTDS\":\"219.24\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"013\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Tan Son Nhut Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ho Chi Minh City\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"SGN\",\"destinationArrTime\":\"2023-01-06T06:55\",\"SegFlightNumber\":\"VJ-884\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-06T00:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":305,\"GroundTime\":170,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:20\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"5h 5m\",\"LAYOVERDuration\":\"2h 50m\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Tan Son Nhut Arpt\",\"destinationAirportName\":\"Ngurah Rai Arpt\",\"originCityName\":\"Ho Chi Minh City\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Denpasar Bali\",\"destinationCountryName\":\"Indonesia\",\"destinationAirportCode\":\"DPS\",\"destinationArrTime\":\"2023-01-06T14:35\",\"SegFlightNumber\":\"VJ-897\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"SGN\",\"originDepTime\":\"2023-01-06T09:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"14:35\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 0\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Ngurah Rai Arpt\",\"destinationAirportName\":\"Noibai Arpt\",\"originCityName\":\"Denpasar Bali\",\"originCountryName\":\"Indonesia\",\"destinationCityName\":\"Hanoi\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"HAN\",\"destinationArrTime\":\"2023-01-09T22:10\",\"SegFlightNumber\":\"VJ-998\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"DPS\",\"originDepTime\":\"2023-01-09T17:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":340,\"GroundTime\":760,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"22:10\",\"FlightDuration\":\"5h 40m\",\"LAYOVERDuration\":\"12h 40m\",\"LAYOVERCity\":\"Hanoi\",\"DepTerminal\":\"Terminal 0\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Noibai Arpt\",\"destinationAirportName\":\"Duong Dang Arpt\",\"originCityName\":\"Hanoi\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Phu Quoc\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"PQC\",\"destinationArrTime\":\"2023-01-10T12:55\",\"SegFlightNumber\":\"VJ-459\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"HAN\",\"originDepTime\":\"2023-01-10T10:50\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":125,\"GroundTime\":295,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"12:55\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"4h 55m\",\"LAYOVERCity\":\"Phu Quoc\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Duong Dang Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Phu Quoc\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-10T21:25\",\"SegFlightNumber\":\"VJ-957\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"PQC\",\"originDepTime\":\"2023-01-10T17:50\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":305,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"17:50\",\"strArrivalDtTime\":\"21:25\",\"FlightDuration\":\"5h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"}],\"DepartureTime\":\"17:30\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"keyIndex\":230,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":229,\"FlightNumber\":\"884\",\"SegFlightNumberArr\":\"VJ-884, VJ-897\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"OrFlightNumber\":\"VJ-884\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_229BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ453PQCBOMVJ957_35463168695442\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"00:20\",\"ArrivalTime\":\"14:35\",\"TravelDate\":\"2023-01-06T00:20\",\"LocalFromTime\":\"2023-01-06 00:20\",\"FromUTCTime\":\"2023-01-06T00:20\",\"LocalToTime\":\"2023-01-06 14:35\",\"ToUTCTime\":\"2023-01-06T14:35\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"GroundTime\":170,\"LAYOVERDuration\":\"2h 50m\",\"FlyingMinutes\":780,\"DepartureDateTxt\":\"Fri, 06 Jan\",\"ArrivalDateTxt\":\"Fri, 06 Jan\",\"FlightDuration\":\"11h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DPS\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"destination\":{\"FlightNumber\":\"998\",\"SegFlightNumberArr\":\"VJ-998, VJ-453, VJ-957\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"DeFlightNumber\":\"VJ-998\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_229BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ453PQCBOMVJ957_35463168695442\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"21:25\",\"TravelDate\":\"2023-01-09T17:30\",\"LocalFromTime\":\"2023-01-09 17:30\",\"FromUTCTime\":\"2023-01-09T17:30\",\"LocalToTime\":\"2023-01-10 21:25\",\"ToUTCTime\":\"2023-01-10T21:25\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"Hanoi\",\"GroundTime\":1055,\"LAYOVERDuration\":\"17h 35m\",\"FlyingMinutes\":1970,\"DepartureDateTxt\":\"Mon, 09 Jan\",\"ArrivalDateTxt\":\"Tue, 10 Jan\",\"FlightDuration\":\"30h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DPS\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"AirlineName\":\"Vietjet Airlines\",\"PublishedFare\":143745.1,\"PublishedFareTxt\":\"143,745\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-1788893114_229BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ453PQCBOMVJ957_35463168695442\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_229BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ453PQCBOMVJ957_35463168695442\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":106950,\"Tax\":40405.5,\"YQTax\":15054,\"OtherCharges\":16632,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":5724,\"CarrierMiscFee\":0,\"MUFee\":2889.3,\"intPublishedFare\":147355.5,\"PublishedFare\":143746,\"PublishedFarePerPax\":47916,\"OfferedFare\":140300.49,\"CommissionEarned\":4165.71,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-219.24,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-1788893114_229BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ453PQCBOMVJ957_35463168695442\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":5,\"intTotalGST\":512.74,\"apiMarkup\":0,\"IntCommission\":83.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2848.56,\"GSTOnMarkUp\":512.74,\"CommEarned\":83.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":40405.5,\"BaseFareCal\":140813.23,\"BaseFare\":106950,\"CommissionEarned\":4165.71,\"TDS\":-219.24,\"MF\":90,\"YQ\":15054,\"AGST\":5724,\"MFT\":16.200000000000003,\"OT\":16632,\"MU\":2889.3,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":512.74,\"apiMarkup\":0,\"IntCommission\":83.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2848.56,\"GSTOnMarkUp\":512.74,\"CommEarned\":83.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":4165.71,\"IntCommissionValInPercentage\":2,\"IntCommission\":83.31,\"IntAgencyFixMarkUp\":2848.56,\"IntTaxOnAgencyFixMarkUp\":512.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":512.74,\"PublishFare\":143745.1,\"CostToCustomer\":143745.1,\"BaseFareCal\":140813.23,\"intCommisionEarnedForAgency\":2931.87,\"CostToCompany\":140813.23,\"intOfferedFare\":140300.49,\"intPublishFare\":147355.5,\"TripjackMarkup\":2889.3,\"TripjackCommission\":4165.71,\"TripjackTDS\":\"219.24\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Tan Son Nhut Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ho Chi Minh City\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"SGN\",\"destinationArrTime\":\"2023-01-06T06:55\",\"SegFlightNumber\":\"VJ-884\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-06T00:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":305,\"GroundTime\":170,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:20\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"5h 5m\",\"LAYOVERDuration\":\"2h 50m\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Tan Son Nhut Arpt\",\"destinationAirportName\":\"Ngurah Rai Arpt\",\"originCityName\":\"Ho Chi Minh City\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Denpasar Bali\",\"destinationCountryName\":\"Indonesia\",\"destinationAirportCode\":\"DPS\",\"destinationArrTime\":\"2023-01-06T14:35\",\"SegFlightNumber\":\"VJ-897\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"SGN\",\"originDepTime\":\"2023-01-06T09:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"14:35\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 0\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Ngurah Rai Arpt\",\"destinationAirportName\":\"Noibai Arpt\",\"originCityName\":\"Denpasar Bali\",\"originCountryName\":\"Indonesia\",\"destinationCityName\":\"Hanoi\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"HAN\",\"destinationArrTime\":\"2023-01-09T22:10\",\"SegFlightNumber\":\"VJ-998\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"DPS\",\"originDepTime\":\"2023-01-09T17:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":340,\"GroundTime\":820,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"22:10\",\"FlightDuration\":\"5h 40m\",\"LAYOVERDuration\":\"13h 40m\",\"LAYOVERCity\":\"Hanoi\",\"DepTerminal\":\"Terminal 0\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Noibai Arpt\",\"destinationAirportName\":\"Duong Dang Arpt\",\"originCityName\":\"Hanoi\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Phu Quoc\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"PQC\",\"destinationArrTime\":\"2023-01-10T13:55\",\"SegFlightNumber\":\"VJ-453\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"HAN\",\"originDepTime\":\"2023-01-10T11:50\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":125,\"GroundTime\":235,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"11:50\",\"strArrivalDtTime\":\"13:55\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"3h 55m\",\"LAYOVERCity\":\"Phu Quoc\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Duong Dang Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Phu Quoc\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-10T21:25\",\"SegFlightNumber\":\"VJ-957\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"PQC\",\"originDepTime\":\"2023-01-10T17:50\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":305,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"17:50\",\"strArrivalDtTime\":\"21:25\",\"FlightDuration\":\"5h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"}],\"DepartureTime\":\"17:30\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"keyIndex\":229,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"015\"},{\"origin\":{\"keyIndex\":230,\"FlightNumber\":\"884\",\"SegFlightNumberArr\":\"VJ-884, VJ-897\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"OrFlightNumber\":\"VJ-884\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"00:20\",\"ArrivalTime\":\"14:35\",\"TravelDate\":\"2023-01-06T00:20\",\"LocalFromTime\":\"2023-01-06 00:20\",\"FromUTCTime\":\"2023-01-06T00:20\",\"LocalToTime\":\"2023-01-06 14:35\",\"ToUTCTime\":\"2023-01-06T14:35\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"GroundTime\":170,\"LAYOVERDuration\":\"2h 50m\",\"FlyingMinutes\":780,\"DepartureDateTxt\":\"Fri, 06 Jan\",\"ArrivalDateTxt\":\"Fri, 06 Jan\",\"FlightDuration\":\"11h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DPS\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"destination\":{\"FlightNumber\":\"998\",\"SegFlightNumberArr\":\"VJ-998, VJ-459, VJ-957\",\"AirlineName\":\"Vietjet Airlines\",\"AirlineCode\":\"VJ\",\"DeFlightNumber\":\"VJ-998\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"AirlineSysId\":\"533\",\"DepartureTime\":\"17:30\",\"ArrivalTime\":\"21:25\",\"TravelDate\":\"2023-01-09T17:30\",\"LocalFromTime\":\"2023-01-09 17:30\",\"FromUTCTime\":\"2023-01-09T17:30\",\"LocalToTime\":\"2023-01-10 21:25\",\"ToUTCTime\":\"2023-01-10T21:25\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"Hanoi\",\"GroundTime\":1055,\"LAYOVERDuration\":\"17h 35m\",\"FlyingMinutes\":1970,\"DepartureDateTxt\":\"Mon, 09 Jan\",\"ArrivalDateTxt\":\"Tue, 10 Jan\",\"FlightDuration\":\"30h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DPS\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"2 Stop(s)\",\"Stops\":2,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},\"AirlineName\":\"Vietjet Airlines\",\"PublishedFare\":143745.1,\"PublishedFareTxt\":\"143,745\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"apiTraceId\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":106950,\"Tax\":40405.5,\"YQTax\":15054,\"OtherCharges\":16632,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":5724,\"CarrierMiscFee\":0,\"MUFee\":2889.3,\"intPublishedFare\":147355.5,\"PublishedFare\":143746,\"PublishedFarePerPax\":47916,\"OfferedFare\":140300.49,\"CommissionEarned\":4165.71,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-219.24,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-1788893114_230BOMSGNVJ884SGNDPSVJ897DPSHANVJ998HANPQCVJ459PQCBOMVJ957_35463168701002\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":5,\"intTotalGST\":512.74,\"apiMarkup\":0,\"IntCommission\":83.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2848.56,\"GSTOnMarkUp\":512.74,\"CommEarned\":83.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":40405.5,\"BaseFareCal\":140813.23,\"BaseFare\":106950,\"CommissionEarned\":4165.71,\"TDS\":-219.24,\"MF\":90,\"YQ\":15054,\"AGST\":5724,\"MFT\":16.200000000000003,\"OT\":16632,\"MU\":2889.3,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":512.74,\"apiMarkup\":0,\"IntCommission\":83.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2848.56,\"GSTOnMarkUp\":512.74,\"CommEarned\":83.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":4165.71,\"IntCommissionValInPercentage\":2,\"IntCommission\":83.31,\"IntAgencyFixMarkUp\":2848.56,\"IntTaxOnAgencyFixMarkUp\":512.74,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":512.74,\"PublishFare\":143745.1,\"CostToCustomer\":143745.1,\"BaseFareCal\":140813.23,\"intCommisionEarnedForAgency\":2931.87,\"CostToCompany\":140813.23,\"intOfferedFare\":140300.49,\"intPublishFare\":147355.5,\"TripjackMarkup\":2889.3,\"TripjackCommission\":4165.71,\"TripjackTDS\":\"219.24\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Tan Son Nhut Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ho Chi Minh City\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"SGN\",\"destinationArrTime\":\"2023-01-06T06:55\",\"SegFlightNumber\":\"VJ-884\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-06T00:20\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":305,\"GroundTime\":170,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:20\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"5h 5m\",\"LAYOVERDuration\":\"2h 50m\",\"LAYOVERCity\":\"Ho Chi Minh City\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Tan Son Nhut Arpt\",\"destinationAirportName\":\"Ngurah Rai Arpt\",\"originCityName\":\"Ho Chi Minh City\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Denpasar Bali\",\"destinationCountryName\":\"Indonesia\",\"destinationAirportCode\":\"DPS\",\"destinationArrTime\":\"2023-01-06T14:35\",\"SegFlightNumber\":\"VJ-897\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"SGN\",\"originDepTime\":\"2023-01-06T09:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":230,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"09:45\",\"strArrivalDtTime\":\"14:35\",\"FlightDuration\":\"3h 50m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 0\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Ngurah Rai Arpt\",\"destinationAirportName\":\"Noibai Arpt\",\"originCityName\":\"Denpasar Bali\",\"originCountryName\":\"Indonesia\",\"destinationCityName\":\"Hanoi\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"HAN\",\"destinationArrTime\":\"2023-01-09T22:10\",\"SegFlightNumber\":\"VJ-998\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"DPS\",\"originDepTime\":\"2023-01-09T17:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":340,\"GroundTime\":760,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"17:30\",\"strArrivalDtTime\":\"22:10\",\"FlightDuration\":\"5h 40m\",\"LAYOVERDuration\":\"12h 40m\",\"LAYOVERCity\":\"Hanoi\",\"DepTerminal\":\"Terminal 0\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Noibai Arpt\",\"destinationAirportName\":\"Duong Dang Arpt\",\"originCityName\":\"Hanoi\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Phu Quoc\",\"destinationCountryName\":\"Viet Nam\",\"destinationAirportCode\":\"PQC\",\"destinationArrTime\":\"2023-01-10T12:55\",\"SegFlightNumber\":\"VJ-459\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"HAN\",\"originDepTime\":\"2023-01-10T10:50\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":125,\"GroundTime\":295,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"12:55\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":\"4h 55m\",\"LAYOVERCity\":\"Phu Quoc\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Duong Dang Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Phu Quoc\",\"originCountryName\":\"Viet Nam\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-10T21:25\",\"SegFlightNumber\":\"VJ-957\",\"AirlineCode\":\"VJ\",\"AirlineName\":\"Vietjet Airlines\",\"FareClass\":\"H\",\"originAirportCode\":\"PQC\",\"originDepTime\":\"2023-01-10T17:50\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":305,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"17:50\",\"strArrivalDtTime\":\"21:25\",\"FlightDuration\":\"5h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/VJ.gif\"}],\"DepartureTime\":\"17:30\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"9d744-8bc8d-8da6c-9345e\",\"keyIndex\":230,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"016\"}]}],\"FlightBookingDataInbound\":null}','2022-09-27 17:03:54'),(558,'9dfca-362b0-03441-e4d15','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":100,\"FlightNumber\":\"255\",\"SegFlightNumberArr\":\"UK-255\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"OrFlightNumber\":\"UK-255\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"23:00\",\"TravelDate\":\"2023-01-16T21:30\",\"LocalFromTime\":\"2023-01-16 21:30\",\"FromUTCTime\":\"2023-01-16T21:30\",\"LocalToTime\":\"2023-01-16 23:00\",\"ToUTCTime\":\"2023-01-16T23:00\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Mon, 16 Jan\",\"ArrivalDateTxt\":\"Mon, 16 Jan\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"105\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AUH\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9dfca-362b0-03441-e4d15\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},\"destination\":{\"FlightNumber\":\"256\",\"SegFlightNumberArr\":\"UK-256\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"DeFlightNumber\":\"UK-256\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"00:15\",\"ArrivalTime\":\"05:05\",\"TravelDate\":\"2023-01-21T00:15\",\"LocalFromTime\":\"2023-01-21 00:15\",\"FromUTCTime\":\"2023-01-21T00:15\",\"LocalToTime\":\"2023-01-21 05:05\",\"ToUTCTime\":\"2023-01-21T05:05\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Sat, 21 Jan\",\"ArrivalDateTxt\":\"Sat, 21 Jan\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"105\",\"SourceAirportCode\":\"AUH\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9dfca-362b0-03441-e4d15\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},\"AirlineName\":\"Vistara\",\"PublishedFare\":56330.72,\"PublishedFareTxt\":\"56,331\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"apiTraceId\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":39225,\"Tax\":18717.300000000003,\"YQTax\":0,\"OtherCharges\":15009,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":1986,\"CarrierMiscFee\":480,\"MUFee\":1136.1,\"intPublishedFare\":57942.299999999996,\"PublishedFare\":56331,\"PublishedFarePerPax\":18777,\"OfferedFare\":54680.100000000006,\"CommissionEarned\":2126.1000000000004,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-111.89999999999999,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":5,\"intTotalGST\":245.3,\"apiMarkup\":0,\"IntCommission\":42.52,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1362.8,\"GSTOnMarkUp\":245.3,\"CommEarned\":42.52,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":18717.300000000003,\"BaseFareCal\":54925.4,\"BaseFare\":39225,\"CommissionEarned\":2126.1000000000004,\"TDS\":-111.89999999999999,\"MF\":90,\"YQ\":0,\"AGST\":1986,\"MFT\":16.200000000000003,\"OT\":15009,\"MU\":1136.1,\"YR\":480,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":245.3,\"apiMarkup\":0,\"IntCommission\":42.52,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1362.8,\"GSTOnMarkUp\":245.3,\"CommEarned\":42.52,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":2126.1,\"IntCommissionValInPercentage\":2,\"IntCommission\":42.52,\"IntAgencyFixMarkUp\":1362.8,\"IntTaxOnAgencyFixMarkUp\":245.3,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":245.3,\"PublishFare\":56330.72,\"CostToCustomer\":56330.72,\"BaseFareCal\":54925.4,\"intCommisionEarnedForAgency\":1405.32,\"CostToCompany\":54925.4,\"intOfferedFare\":54680.100000000006,\"intPublishFare\":57942.299999999996,\"TripjackMarkup\":1136.1,\"TripjackCommission\":2126.1000000000004,\"TripjackTDS\":\"111.9\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"019\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-01-16T23:00\",\"SegFlightNumber\":\"UK-255\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-16T21:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-21T05:05\",\"SegFlightNumber\":\"UK-256\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-01-21T00:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:15\",\"strArrivalDtTime\":\"05:05\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"DepartureTime\":\"00:15\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"9dfca-362b0-03441-e4d15\",\"keyIndex\":100,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":100,\"FlightNumber\":\"255\",\"SegFlightNumberArr\":\"UK-255\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"OrFlightNumber\":\"UK-255\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"21:30\",\"ArrivalTime\":\"23:00\",\"TravelDate\":\"2023-01-16T21:30\",\"LocalFromTime\":\"2023-01-16 21:30\",\"FromUTCTime\":\"2023-01-16T21:30\",\"LocalToTime\":\"2023-01-16 23:00\",\"ToUTCTime\":\"2023-01-16T23:00\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Mon, 16 Jan\",\"ArrivalDateTxt\":\"Mon, 16 Jan\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"105\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AUH\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9dfca-362b0-03441-e4d15\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},\"destination\":{\"FlightNumber\":\"256\",\"SegFlightNumberArr\":\"UK-256\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"DeFlightNumber\":\"UK-256\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"00:15\",\"ArrivalTime\":\"05:05\",\"TravelDate\":\"2023-01-21T00:15\",\"LocalFromTime\":\"2023-01-21 00:15\",\"FromUTCTime\":\"2023-01-21T00:15\",\"LocalToTime\":\"2023-01-21 05:05\",\"ToUTCTime\":\"2023-01-21T05:05\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Sat, 21 Jan\",\"ArrivalDateTxt\":\"Sat, 21 Jan\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"105\",\"SourceAirportCode\":\"AUH\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"9dfca-362b0-03441-e4d15\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},\"AirlineName\":\"Vistara\",\"PublishedFare\":56330.72,\"PublishedFareTxt\":\"56,331\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"apiTraceId\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":39225,\"Tax\":18717.300000000003,\"YQTax\":0,\"OtherCharges\":15009,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":1986,\"CarrierMiscFee\":480,\"MUFee\":1136.1,\"intPublishedFare\":57942.299999999996,\"PublishedFare\":56331,\"PublishedFarePerPax\":18777,\"OfferedFare\":54680.100000000006,\"CommissionEarned\":2126.1000000000004,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-111.89999999999999,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-9963280607_100BOMAUHUK255AUHBOMUK256_1548763020102\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":5,\"intTotalGST\":245.3,\"apiMarkup\":0,\"IntCommission\":42.52,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1362.8,\"GSTOnMarkUp\":245.3,\"CommEarned\":42.52,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":18717.300000000003,\"BaseFareCal\":54925.4,\"BaseFare\":39225,\"CommissionEarned\":2126.1000000000004,\"TDS\":-111.89999999999999,\"MF\":90,\"YQ\":0,\"AGST\":1986,\"MFT\":16.200000000000003,\"OT\":15009,\"MU\":1136.1,\"YR\":480,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":245.3,\"apiMarkup\":0,\"IntCommission\":42.52,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1362.8,\"GSTOnMarkUp\":245.3,\"CommEarned\":42.52,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":2126.1,\"IntCommissionValInPercentage\":2,\"IntCommission\":42.52,\"IntAgencyFixMarkUp\":1362.8,\"IntTaxOnAgencyFixMarkUp\":245.3,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":245.3,\"PublishFare\":56330.72,\"CostToCustomer\":56330.72,\"BaseFareCal\":54925.4,\"intCommisionEarnedForAgency\":1405.32,\"CostToCompany\":54925.4,\"intOfferedFare\":54680.100000000006,\"intPublishFare\":57942.299999999996,\"TripjackMarkup\":1136.1,\"TripjackCommission\":2126.1000000000004,\"TripjackTDS\":\"111.9\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dhabi Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Abu Dhabi\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"AUH\",\"destinationArrTime\":\"2023-01-16T23:00\",\"SegFlightNumber\":\"UK-255\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-16T21:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"21:30\",\"strArrivalDtTime\":\"23:00\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Dhabi Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Abu Dhabi\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-21T05:05\",\"SegFlightNumber\":\"UK-256\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"V\",\"originAirportCode\":\"AUH\",\"originDepTime\":\"2023-01-21T00:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"30 Kilograms\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"00:15\",\"strArrivalDtTime\":\"05:05\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"DepartureTime\":\"00:15\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"9dfca-362b0-03441-e4d15\",\"keyIndex\":100,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01B\"}]}],\"FlightBookingDataInbound\":null}','2022-09-30 11:56:49'),(559,'a4b04-6b209-b1a8b-3e115','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8207\",\"keyIndex\":107,\"SegFlightNumberArr\":\"SG-8207\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-7167882431_0DELIXZSG8207_25561538866846\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"08:45\",\"ArrivalTime\":\"14:15\",\"TravelDate\":\"2022-10-09T08:45\",\"LocalFromTime\":\"2022-10-09 08:45\",\"FromUTCTime\":\"2022-10-09T08:45\",\"LocalToTime\":\"2022-10-09 14:15\",\"ToUTCTime\":\"2022-10-09T14:15\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":330,\"DepartureDateTxt\":\"Sun, 09 Oct\",\"ArrivalDateTxt\":\"Sun, 09 Oct\",\"FlightDuration\":\"5h 30m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"32511\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"IXZ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":5,\"CurrencyType\":null,\"PublishedFare\":68367,\"PublishedFareTxt\":\"68,367\",\"ApiResultIndex\":\"11-7167882431_0DELIXZSG8207_25561538866846\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a4b04-6b209-b1a8b-3e115\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":62500,\"Tax\":6440.25,\"YQTax\":0,\"OtherCharges\":5000,\"Discount\":0,\"ServiceFee\":75,\"ManagementFeeTax\":13.5,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1351.75,\"intPublishedFare\":68940.25,\"PublishedFare\":68367,\"PublishedFarePerPax\":13674,\"OfferedFare\":66401,\"CommissionEarned\":1187.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-62.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-7167882431_0DELIXZSG8207_25561538866846\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":296.2,\"apiMarkup\":0,\"IntCommission\":23.75,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":1645.55,\"GSTOnMarkUp\":296.2,\"CommEarned\":23.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"5\",\"TaxIN\":6440.25,\"BaseFareCal\":66697.2,\"BaseFare\":62500,\"CommissionEarned\":1187.5,\"TDS\":-62.5,\"MF\":75,\"YQ\":0,\"AGST\":0,\"MFT\":13.5,\"OT\":5000,\"MU\":1351.75,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":296.2,\"apiMarkup\":0,\"IntCommission\":23.75,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1645.55,\"GSTOnMarkUp\":296.2,\"CommEarned\":23.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1187.5,\"IntCommissionValInPercentage\":2,\"IntCommission\":23.75,\"IntAgencyFixMarkUp\":1645.55,\"IntTaxOnAgencyFixMarkUp\":296.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":296.2,\"PublishFare\":68366.5,\"CostToCustomer\":68366.5,\"BaseFareCal\":66697.2,\"intCommisionEarnedForAgency\":1669.3,\"CostToCompany\":66697.2,\"intOfferedFare\":66401,\"intPublishFare\":68940.25,\"TripjackMarkup\":1351.75,\"TripjackCommission\":1187.5,\"TripjackTDS\":\"62.5\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":500},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02K\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Veer Savarkar Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Port Blair\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXZ\",\"destinationArrTime\":\"2022-10-09T14:15\",\"SegFlightNumber\":\"SG-8207\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-10-09T08:45\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":330,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"08:45\",\"strArrivalDtTime\":\"14:15\",\"FlightDuration\":\"5h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"65001-70000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-01 18:02:01'),(560,'f2397-78533-5f99a-08a85','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-667\",\"keyIndex\":0,\"SegFlightNumberArr\":\"AI-667\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-6077357511_0BOMTRVAI667_106934947261433\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"17:20\",\"ArrivalTime\":\"19:40\",\"TravelDate\":\"2022-11-25T17:20\",\"LocalFromTime\":\"2022-11-25 17:20\",\"FromUTCTime\":\"2022-11-25T17:20\",\"LocalToTime\":\"2022-11-25 19:40\",\"ToUTCTime\":\"2022-11-25T19:40\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 25 Nov\",\"ArrivalDateTxt\":\"Fri, 25 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"TRV\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6241,\"PublishedFareTxt\":\"6,240\",\"ApiResultIndex\":\"21-10-15-2-6077357511_0BOMTRVAI667_106934947261433\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"f2397-78533-5f99a-08a85\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5130,\"Tax\":949.91,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":265,\"CarrierMiscFee\":170,\"MUFee\":119.21,\"intPublishedFare\":6079.91,\"PublishedFare\":6241,\"PublishedFarePerPax\":6241,\"OfferedFare\":5883.73,\"CommissionEarned\":76.97,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.05,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-6077357511_0BOMTRVAI667_106934947261433\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":54.18,\"apiMarkup\":0,\"IntCommission\":1.54,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":301.03,\"GSTOnMarkUp\":54.18,\"CommEarned\":1.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":949.91,\"BaseFareCal\":5937.91,\"BaseFare\":5130,\"CommissionEarned\":76.97,\"TDS\":-4.05,\"MF\":15,\"YQ\":0,\"AGST\":265,\"MFT\":2.7,\"OT\":378,\"MU\":119.21,\"YR\":170,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":54.18,\"apiMarkup\":0,\"IntCommission\":1.54,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":301.03,\"GSTOnMarkUp\":54.18,\"CommEarned\":1.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":76.97,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.54,\"IntAgencyFixMarkUp\":301.03,\"IntTaxOnAgencyFixMarkUp\":54.18,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":54.18,\"PublishFare\":6240.48,\"CostToCustomer\":6240.48,\"BaseFareCal\":5937.91,\"intCommisionEarnedForAgency\":302.56,\"CostToCompany\":5937.91,\"intOfferedFare\":5883.73,\"intPublishFare\":6079.91,\"TripjackMarkup\":119.21,\"TripjackCommission\":76.97,\"TripjackTDS\":\"4.05\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"023\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Thiruvananthapuram Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Thiruvananthapuram\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"TRV\",\"destinationArrTime\":\"2022-11-25T19:40\",\"SegFlightNumber\":\"AI-667\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-25T17:20\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:20\",\"strArrivalDtTime\":\"19:40\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-02 12:35:47');
INSERT INTO `tbl_temp_data` VALUES (564,'d40a6-aa15e-2d378-bdf46','{\"BookingData\":[{\"bookingId\":\"TJ107744314650\",\"FlightNumber\":\"SG-695\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:55\",\"ArrivalTime\":\"13:40\",\"TravelDate\":\"2022-10-05T10:55\",\"LocalFromTime\":\"2022-10-05 10:55\",\"FromUTCTime\":\"2022-10-05T10:55\",\"LocalToTime\":\"2022-10-05 13:40\",\"ToUTCTime\":\"2022-10-05T13:40\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Wed, 05 Oct\",\"ArrivalDateTxt\":\"Wed, 05 Oct\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":11240,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"GAU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10716.83,\"PublishedFareTxt\":\"10,717\",\"ApiResultIndex\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"GAU-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3350,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-96 hrs Rs 3,350 + Fare Difference __nls__ Before 96 hrs Rs 2,750 + Fare Difference\",\"fcs\":{\"CRFT\":9,\"CRF\":50,\"ARF\":3350,\"ARFT\":167.5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3600,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-96 hrs Rs 3,600 __nls__Before 96 hrs Rs 3,100\",\"fcs\":{\"CCF\":50,\"ACFT\":180,\"CCFT\":9,\"ACF\":3600}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9685,\"Tax\":1031.83,\"YQTax\":0,\"OtherCharges\":804,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":210.13,\"intPublishedFare\":10716.83,\"PublishedFare\":10772.49,\"OfferedFare\":10322.68,\"CommissionEarned\":184.02,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.68,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-0039585736_0GAUJAISG695_21724737622605\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":68.05,\"apiMarkup\":0,\"IntCommission\":3.68,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":378.08,\"GSTOnMarkUp\":68.05,\"CommEarned\":3.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1031.83,\"BaseFareCal\":10390.73,\"BaseFare\":9685,\"CommissionEarned\":184.02,\"TDS\":-9.68,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":804,\"MU\":210.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":68.05,\"apiMarkup\":0,\"IntCommission\":3.68,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":378.08,\"GSTOnMarkUp\":68.05,\"CommEarned\":3.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":184.02,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.68,\"IntAgencyFixMarkUp\":378.08,\"IntTaxOnAgencyFixMarkUp\":68.05,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":68.05,\"PublishFare\":10772.49,\"CostToCustomer\":10772.49,\"BaseFareCal\":10390.73,\"intCommisionEarnedForAgency\":381.76,\"CostToCompany\":10390.73,\"intOfferedFare\":10322.68,\"intPublishFare\":10716.83,\"TripjackMarkup\":210.13,\"TripjackCommission\":184.02,\"TripjackTDS\":\"9.68\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"520\",\"originAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Guwahati\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-10-05T13:40\",\"SegFlightNumber\":\"SG-695\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GAU\",\"originDepTime\":\"2022-10-05T10:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"10:55\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"BOF1\",\"Price\":100,\"Weight\":\"Bag Out First with 1 Bag\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"BOF2\",\"Price\":200,\"Weight\":\"Bag Out First with 2 Bag\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"BOF3\",\"Price\":300,\"Weight\":\"Bag Out First with 3 Bag\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"BVG\",\"Price\":70,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"},{\"Currency\":\"INR\",\"key\":\"520\",\"Code\":\"GFCM\",\"Price\":445,\"Description\":\"Vegetarian Gluten-free Cold Meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"d40a6-aa15e-2d378-bdf46\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-10-05 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"GAU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":11240,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107744314650\",\"FlightNumber\":\"SG-695\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"strTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"10:55\",\"ArrivalTime\":\"13:40\",\"TravelDate\":\"2022-10-05T10:55\",\"LocalFromTime\":\"2022-10-05 10:55\",\"FromUTCTime\":\"2022-10-05T10:55\",\"LocalToTime\":\"2022-10-05 13:40\",\"ToUTCTime\":\"2022-10-05T13:40\",\"IsDirect\":0,\"FareClass\":\"DD\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Wed, 05 Oct\",\"ArrivalDateTxt\":\"Wed, 05 Oct\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":11240,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"GAU\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":10716.83,\"ApiResultIndex\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"d40a6-aa15e-2d378-bdf46\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":9685,\"Tax\":1031.83,\"YQTax\":0,\"OtherCharges\":804,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":210.13,\"intPublishedFare\":10716.83,\"PublishedFare\":10772.49,\"OfferedFare\":10322.68,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":378.08,\"GSTOnMarkUp\":68.05,\"CommEarned\":3.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1031.83,\"BaseFareCal\":10390.73,\"BaseFare\":9685,\"CommissionEarned\":184.02,\"TDS\":-9.68,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":804,\"MU\":210.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":378.08,\"GSTOnMarkUp\":68.05,\"CommEarned\":3.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"520\",\"originAirportName\":\"Lokpriya Gopinath Bordoloi Intl Arpt\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Guwahati\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-10-05T13:40\",\"SegFlightNumber\":\"SG-695\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"DD\",\"originAirportCode\":\"GAU\",\"originDepTime\":\"2022-10-05T10:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"10:55\",\"strArrivalDtTime\":\"13:40\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-0039585736_0GAUJAISG695_273683222762046\",\"localFromDateTime\":\"2022-10-05 10:55\",\"localToDateTime\":\"2022-10-05 13:40\",\"strSourceAirportCode\":\"GAU\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":11240,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Guwahati (GAU)\",\"mytrip_city_to\":\"Jaipur (JAI)\",\"source_city\":\"GAU\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Guwahati, IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU), India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"departure_date\":\"05\\/10\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU)\",\"to_mytrip_city\":\" IN - Sanganeer Arpt (JAI)\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"GAU\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"GAU\",\"to\":\"JAI\",\"sourceCityText\":\"Guwahati, IN - Lokpriya Gopinath Bordoloi Intl Arpt (GAU), India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt (JAI), India\",\"sourceCityId\":11240,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"05\\/10\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-10-05\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"d40a6-aa15e-2d378-bdf46\",\"from_city_\":\"1__GAU-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Guwahati+%28GAU%29&mytrip_city_to=Jaipur+%28JAI%29&source_city=GAU&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Guwahati%2C+IN+-+Lokpriya+Gopinath+Bordoloi+Intl+Arpt+%28GAU%29%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+%28JAI%29%2C+India&departure_date=05%2F10%2F2022&return_date=&from_mytrip_city=+IN+-+Lokpriya+Gopinath+Bordoloi+Intl+Arpt+%28GAU%29&to_mytrip_city=+IN+-+Sanganeer+Arpt+%28JAI%29&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"amkhan5525@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"8794444262\",\"FirstName\":\"Amir\",\"LastName\":\"Khan\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-10-02-15-44-26\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"62\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"464587\",\"TPSysId\":\"464588\",\"VersionId\":[\"108639\"],\"CustomerSysId\":\"250443\",\"TrxId\":\"35201\",\"FareBreakdownid\":[\"361273\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"158\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"62\",\"CustomerMemSysId\":[\"62\"],\"flight_booking_id\":[\"107\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"107\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":10772.49},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"250443\",\"TPSysId\":\"464588\",\"MasterTPSysId\":\"464587\",\"ProposalID\":\"464588\\/V1\",\"InvoiceDate\":\"2022-10-02\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-10-02\",\"PaymentDate\":\"2022-10-02\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":10668.44,\"InvoiceStatus\":true,\"TotalSGST\":52.025,\"TotalCGST\":52.025,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":10772.49,\"TotalDueAmount\":0,\"InvoiceValue\":10772.49,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"GAU-JAI-SpiceJet SG-695\",\"ItemQty\":1,\"ItemRates\":10090.36,\"Total\":10090.36,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":10772.49,\"MarkupType\":\"\",\"Markup\":578.0799999999999,\"TotalMarkup\":578.0799999999999,\"SubTotal\":10668.44,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":104.05,\"SGST\":52.025,\"CGST\":52.025,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-10-02 15:46:29'),(565,'2e30c-b91e9-b4061-3603d','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-910\",\"keyIndex\":111,\"SegFlightNumberArr\":\"UK-910\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-9224811406_88BOMDELUK910_36212603339310\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"19:45\",\"TravelDate\":\"2022-11-04T17:35\",\"LocalFromTime\":\"2022-11-04 17:35\",\"FromUTCTime\":\"2022-11-04T17:35\",\"LocalToTime\":\"2022-11-04 19:45\",\"ToUTCTime\":\"2022-11-04T19:45\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 04 Nov\",\"ArrivalDateTxt\":\"Fri, 04 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5261,\"PublishedFareTxt\":\"5,261\",\"ApiResultIndex\":\"21-10-15-2-9224811406_88BOMDELUK910_36212603339110\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"2e30c-b91e9-b4061-3603d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4483,\"Tax\":861.49,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":231,\"CarrierMiscFee\":130,\"MUFee\":104.79,\"intPublishedFare\":5344.49,\"PublishedFare\":5261,\"PublishedFarePerPax\":5261,\"OfferedFare\":4913.25,\"CommissionEarned\":326.45,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-17.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-9224811406_88BOMDELUK910_36212603339310\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":51.98,\"apiMarkup\":0,\"IntCommission\":6.53,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":288.81,\"GSTOnMarkUp\":51.98,\"CommEarned\":6.53,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":861.49,\"BaseFareCal\":4965.23,\"BaseFare\":4483,\"CommissionEarned\":326.45,\"TDS\":-17.18,\"MF\":15,\"YQ\":0,\"AGST\":231,\"MFT\":2.7,\"OT\":378,\"MU\":104.79,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":51.98,\"apiMarkup\":0,\"IntCommission\":6.53,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":288.81,\"GSTOnMarkUp\":51.98,\"CommEarned\":6.53,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"01 Bag of 15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":326.45,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.53,\"IntAgencyFixMarkUp\":288.81,\"IntTaxOnAgencyFixMarkUp\":51.98,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":51.98,\"PublishFare\":5260.57,\"CostToCustomer\":5260.57,\"BaseFareCal\":4965.23,\"intCommisionEarnedForAgency\":295.33,\"CostToCompany\":4965.23,\"intOfferedFare\":4913.25,\"intPublishFare\":5344.49,\"TripjackMarkup\":104.79,\"TripjackCommission\":326.45,\"TripjackTDS\":\"17.18\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0D8\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-04T19:45\",\"SegFlightNumber\":\"UK-910\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Z\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-04T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"19:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-06 19:51:21'),(569,'eae89-677b0-2b5c2-a45d7','{\"item\":{\"SearchHotelTraceId\":\"eae89-677b0-2b5c2-a45d7\",\"HotelId\":\"hsid5689810618-1165527907\",\"HotelName\":\"OYO 89868 KINGS CASA\",\"HotelDescription\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"HotelImages\":[{\"tns\":\"\",\"url\":\"\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.035648111254\",\"lt\":\"27.161617479848\"},\"HotelAddress\":\"8Big Bazzar, Hotel Lane, Taj Ganj, Agra, Uttar PradeshUttar PradeshAgraIndia282004\",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null,\"des\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"query\":{\"checkinDate\":\"2022-11-10\",\"checkoutDate\":\"2022-11-11\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"currency\":\"INR\",\"fsc\":true},\"searchId\":\"hsid5689810618\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"bookingId\":\"TJS209200363926\"},\"val\":{\"Rooms\":[{\"id\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0\",\"RoomCategory\":\"Deluxe Double or Twin\",\"RoomType\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )\",\"Adult\":1,\"Child\":0,\"MealBase\":\"BREAKFAST\",\"TotalRoomPrice\":456.88,\"TotalFare\":456.88,\"TotalBaseFare\":445.08,\"TotalNetFare\":456.88,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SGP\":445.08,\"SBP\":445.08,\"MFT\":1.8,\"MF\":10,\"SNP\":445.08},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":456.88,\"TAF\":11.8,\"BF\":445.08,\"NF\":456.88},\"afc\":{\"TAF\":{\"SGP\":445.08,\"SBP\":445.08,\"MFT\":1.8,\"MF\":10,\"SNP\":445.08}}}],\"gtxMarkUp\":0,\"HotelRoomPrice\":510.79184,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184,\"perNightPrice\":510.79184,\"arrMarkUps\":{\"intBasePrice\":456.88,\"PublishFare\":510.79184,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"intAgencyMarkUpWithSTax\":53.911840000000005,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184},\"CancelArr\":{\"cancel\":[{\"FromDate\":\"2022-10-07T16:49:13.203\",\"ToDate\":\"2022-11-05T18:00\",\"strFromDate\":\"07-Oct-2022\",\"strToDate\":\"05-Nov-2022\",\"Charge\":0,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-05T18:00\",\"ToDate\":\"2022-11-10T12:00\",\"strFromDate\":\"05-Nov-2022\",\"strToDate\":\"10-Nov-2022\",\"Charge\":445.08,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-10T12:00\",\"ToDate\":\"2022-11-11T23:59\",\"strFromDate\":\"10-Nov-2022\",\"strToDate\":\"11-Nov-2022\",\"Charge\":445.08,\"Currency\":\"INR\"}],\"getfullrefund\":true,\"fullrefund\":\"Full Refund Allowed\"},\"IsPANMandatory\":false,\"IsPassportMandatory\":false}],\"RoomId\":\"1_0_63400af0e9d551355b688ff1\",\"NoOfRooms\":\"1\",\"TotalPax\":1,\"Nights\":1,\"RoomTotalPrice\":456.88,\"GtxMarkUp\":null,\"iopr\":false,\"ipr\":false,\"gtxMarkUp\":0,\"HotelRoomPrice\":510.79184,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184,\"pernightperroomprice\":null,\"arrMarkUps\":{\"intBasePrice\":456.88,\"PublishFare\":510.79184,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":45.688,\"intSTaxOnAgencyMarkUp\":8.223840000000001,\"intAgencyMarkUpWithSTax\":53.911840000000005,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":510.79184,\"CostToAgent\":510.79184},\"IsPANMandatory\":false,\"IsPassportMandatory\":false},\"HotelRoomsid\":[\"1\"],\"hotel_booking_id\":\"1\",\"ForCustomerSession\":[[{\"AgencySysId\":\"12728\",\"CustomerSysId\":\"20\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"Salutation\":\"3\",\"Relation\":\"9\",\"Contacts\":\"9999977655\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12728\",\"Address\":\"sec 15\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2022-10-07 16:48:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"66\"}]],\"SearchHotelTraceId\":\"eae89-677b0-2b5c2-a45d7\",\"CustomerSysId\":\"66\",\"apiData\":{\"AgencySysId\":\"12728\",\"Salutation\":\"3\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"9999977655\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"12728\",\"CustomerSysId\":\"20\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"Salutation\":\"3\",\"Relation\":\"9\",\"Contacts\":\"9999977655\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12728\",\"Address\":\"sec 15\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2022-10-07 16:48:54\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"66\",\"MobileNo\":\"9999977655\",\"B2B\":true}],\"getData\":\"{\\\"module\\\":\\\"hotels\\\",\\\"controller\\\":\\\"search\\\",\\\"action\\\":\\\"request-search\\\",\\\"selectDestination\\\":\\\"AGRA (INDIA)\\\",\\\"check_in\\\":\\\"10\\\\\\/11\\\\\\/2022\\\",\\\"check_out\\\":\\\"11\\\\\\/11\\\\\\/2022\\\",\\\"Nationality\\\":\\\"106\\\",\\\"adult\\\":[\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\"],\\\"child\\\":[\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\"],\\\"infant\\\":[\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\"],\\\"child1_age\\\":[\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\"],\\\"child2_age\\\":[\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\"],\\\"cityid\\\":\\\"266\\\",\\\"TBBCityId\\\":\\\"740325\\\",\\\"destination\\\":\\\"AGRA\\\",\\\"hotel_countryCode\\\":\\\"\\\",\\\"GuestNationality\\\":\\\"IN\\\",\\\"room\\\":\\\"1\\\",\\\"totadlt\\\":\\\"1\\\",\\\"totchld\\\":\\\"0\\\",\\\"totinfnt\\\":\\\"0\\\",\\\"travelers\\\":\\\"\\\",\\\"roominfojson\\\":\\\"[{\\\\\\\"totalRoom\\\\\\\" : 1},{\\\\\\\"totalTraveler\\\\\\\" : 1},{\\\\\\\"totaladult\\\\\\\" : 1},{\\\\\\\"totalchild\\\\\\\" : 0},{\\\\\\\"totalinfant\\\\\\\" : 0}]\\\",\\\"memberdata\\\":[{\\\"NoOfAdults\\\":\\\"1\\\",\\\"NoOfChild\\\":\\\"0\\\",\\\"ChildAge\\\":null}],\\\"TBOdata\\\":{\\\"CheckInDate\\\":\\\"10\\\\\\/11\\\\\\/2022\\\",\\\"NoOfNights\\\":1,\\\"CityId\\\":\\\"740325\\\",\\\"CountryCode\\\":\\\"\\\",\\\"IsTBOMapped\\\":true,\\\"ResultCount\\\":null,\\\"PreferredCurrency\\\":\\\"INR\\\",\\\"GuestNationality\\\":\\\"IN\\\",\\\"NoOfRooms\\\":\\\"1\\\",\\\"RoomGuests\\\":[{\\\"NoOfAdults\\\":\\\"1\\\",\\\"NoOfChild\\\":\\\"0\\\",\\\"ChildAge\\\":null}],\\\"PreferredHotel\\\":\\\"\\\",\\\"MaxRating\\\":5,\\\"MinRating\\\":0,\\\"ReviewScore\\\":null,\\\"IsNearBySearchAllowed\\\":false},\\\"hotelsearchdata\\\":{\\\"searchQuery\\\":{\\\"checkinDate\\\":\\\"2022-11-10\\\",\\\"checkoutDate\\\":\\\"2022-11-11\\\",\\\"roomInfo\\\":[{\\\"numberOfAdults\\\":\\\"1\\\",\\\"numberOfChild\\\":\\\"0\\\",\\\"childAge\\\":null}],\\\"searchCriteria\\\":{\\\"city\\\":\\\"740325\\\",\\\"currency\\\":\\\"INR\\\",\\\"nationality\\\":\\\"106\\\"},\\\"searchPreferences\\\":{\\\"ratings\\\":[0,1,2,3,4,5],\\\"fsc\\\":true}},\\\"sync\\\":false},\\\"nightCount\\\":1,\\\"strCheckin\\\":\\\"2022-11-10\\\",\\\"strCheckout\\\":\\\"2022-11-11\\\",\\\"SearchHotelTraceId\\\":\\\"eae89-677b0-2b5c2-a45d7\\\",\\\"interNationalSearch\\\":false,\\\"searchIds\\\":\\\"hsid5689810618\\\"}\",\"post_\":\"{\\\"countryCode\\\":\\\"91\\\",\\\"leadMobile\\\":\\\"9999977655\\\",\\\"leadEmail\\\":\\\"komalmalhotra0101@gmail.com\\\",\\\"PaxType\\\":[\\\"1\\\"],\\\"familyNumber\\\":\\\"1\\\",\\\"CustomerSysId\\\":[\\\"0\\\"],\\\"relation\\\":[\\\"9\\\"],\\\"salution\\\":[\\\"3\\\"],\\\"firstname\\\":[\\\"neha\\\"],\\\"lastname\\\":[\\\"kannojia\\\"],\\\"panno\\\":[\\\"\\\"],\\\"PassportNo\\\":[\\\"\\\"],\\\"PassportIssueDate\\\":[\\\"__\\\\\\/__\\\\\\/____\\\"],\\\"PassportExpDate\\\":[\\\"\\\"],\\\"cityname\\\":[\\\"Noida\\\"],\\\"address\\\":[\\\"sec 15\\\"],\\\"passenger-city\\\":[\\\"19543\\\"],\\\"passenger-country\\\":[\\\"101\\\"],\\\"SSR\\\":\\\"default\\\",\\\"gstnnumber\\\":\\\"\\\",\\\"companyname\\\":\\\"\\\",\\\"gstaddress\\\":\\\"\\\",\\\"gstemail\\\":\\\"\\\",\\\"gststate\\\":\\\"\\\",\\\"gstphone\\\":\\\"\\\",\\\"accepttandc\\\":\\\"0\\\",\\\"isgstapply\\\":\\\"0\\\",\\\"getData\\\":\\\"{\\\\\\\"module\\\\\\\":\\\\\\\"hotels\\\\\\\",\\\\\\\"controller\\\\\\\":\\\\\\\"search\\\\\\\",\\\\\\\"action\\\\\\\":\\\\\\\"request-search\\\\\\\",\\\\\\\"selectDestination\\\\\\\":\\\\\\\"AGRA (INDIA)\\\\\\\",\\\\\\\"check_in\\\\\\\":\\\\\\\"10\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"check_out\\\\\\\":\\\\\\\"11\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"Nationality\\\\\\\":\\\\\\\"106\\\\\\\",\\\\\\\"adult\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"child\\\\\\\":[\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\"],\\\\\\\"infant\\\\\\\":[\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\"],\\\\\\\"child1_age\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"child2_age\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"cityid\\\\\\\":\\\\\\\"266\\\\\\\",\\\\\\\"TBBCityId\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"destination\\\\\\\":\\\\\\\"AGRA\\\\\\\",\\\\\\\"hotel_countryCode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"GuestNationality\\\\\\\":\\\\\\\"IN\\\\\\\",\\\\\\\"room\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"totadlt\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"totchld\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"totinfnt\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"travelers\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"roominfojson\\\\\\\":\\\\\\\"[{\\\\\\\\\\\\\\\"totalRoom\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totalTraveler\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totaladult\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totalchild\\\\\\\\\\\\\\\" : 0},{\\\\\\\\\\\\\\\"totalinfant\\\\\\\\\\\\\\\" : 0}]\\\\\\\",\\\\\\\"memberdata\\\\\\\":[{\\\\\\\"NoOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"NoOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"ChildAge\\\\\\\":null}],\\\\\\\"TBOdata\\\\\\\":{\\\\\\\"CheckInDate\\\\\\\":\\\\\\\"10\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"NoOfNights\\\\\\\":1,\\\\\\\"CityId\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"CountryCode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsTBOMapped\\\\\\\":true,\\\\\\\"ResultCount\\\\\\\":null,\\\\\\\"PreferredCurrency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"GuestNationality\\\\\\\":\\\\\\\"IN\\\\\\\",\\\\\\\"NoOfRooms\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"RoomGuests\\\\\\\":[{\\\\\\\"NoOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"NoOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"ChildAge\\\\\\\":null}],\\\\\\\"PreferredHotel\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"MaxRating\\\\\\\":5,\\\\\\\"MinRating\\\\\\\":0,\\\\\\\"ReviewScore\\\\\\\":null,\\\\\\\"IsNearBySearchAllowed\\\\\\\":false},\\\\\\\"hotelsearchdata\\\\\\\":{\\\\\\\"searchQuery\\\\\\\":{\\\\\\\"checkinDate\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"checkoutDate\\\\\\\":\\\\\\\"2022-11-11\\\\\\\",\\\\\\\"roomInfo\\\\\\\":[{\\\\\\\"numberOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"numberOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"childAge\\\\\\\":null}],\\\\\\\"searchCriteria\\\\\\\":{\\\\\\\"city\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"currency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"nationality\\\\\\\":\\\\\\\"106\\\\\\\"},\\\\\\\"searchPreferences\\\\\\\":{\\\\\\\"ratings\\\\\\\":[0,1,2,3,4,5],\\\\\\\"fsc\\\\\\\":true}},\\\\\\\"sync\\\\\\\":false},\\\\\\\"nightCount\\\\\\\":1,\\\\\\\"strCheckin\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"strCheckout\\\\\\\":\\\\\\\"2022-11-11\\\\\\\",\\\\\\\"SearchHotelTraceId\\\\\\\":\\\\\\\"eae89-677b0-2b5c2-a45d7\\\\\\\",\\\\\\\"interNationalSearch\\\\\\\":false,\\\\\\\"searchIds\\\\\\\":\\\\\\\"hsid5689810618\\\\\\\"}\\\",\\\"SearchHotelTraceId\\\":\\\"eae89-677b0-2b5c2-a45d7\\\",\\\"HotelDataArray\\\":\\\"{\\\\\\\"RoomsResult\\\\\\\":[{\\\\\\\"Rooms\\\\\\\":[{\\\\\\\"id\\\\\\\":\\\\\\\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0\\\\\\\",\\\\\\\"RoomCategory\\\\\\\":\\\\\\\"Deluxe Double or Twin\\\\\\\",\\\\\\\"RoomType\\\\\\\":\\\\\\\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 17% discount!Breakfast Benefit : ( Breakfast,Parking )\\\\\\\",\\\\\\\"Adult\\\\\\\":1,\\\\\\\"Child\\\\\\\":0,\\\\\\\"MealBase\\\\\\\":\\\\\\\"BREAKFAST\\\\\\\",\\\\\\\"TotalRoomPrice\\\\\\\":456.88,\\\\\\\"TotalFare\\\\\\\":456.88,\\\\\\\"TotalBaseFare\\\\\\\":445.08,\\\\\\\"TotalNetFare\\\\\\\":456.88,\\\\\\\"TotalTaxFare\\\\\\\":11.8,\\\\\\\"TaxFareBreakup\\\\\\\":{\\\\\\\"SGP\\\\\\\":445.08,\\\\\\\"SBP\\\\\\\":445.08,\\\\\\\"MFT\\\\\\\":1.8,\\\\\\\"MF\\\\\\\":10,\\\\\\\"SNP\\\\\\\":445.08},\\\\\\\"DayWiseFare\\\\\\\":[{\\\\\\\"day\\\\\\\":1,\\\\\\\"fc\\\\\\\":{\\\\\\\"TF\\\\\\\":456.88,\\\\\\\"TAF\\\\\\\":11.8,\\\\\\\"BF\\\\\\\":445.08,\\\\\\\"NF\\\\\\\":456.88},\\\\\\\"afc\\\\\\\":{\\\\\\\"TAF\\\\\\\":{\\\\\\\"SGP\\\\\\\":445.08,\\\\\\\"SBP\\\\\\\":445.08,\\\\\\\"MFT\\\\\\\":1.8,\\\\\\\"MF\\\\\\\":10,\\\\\\\"SNP\\\\\\\":445.08}}}],\\\\\\\"gtxMarkUp\\\\\\\":0,\\\\\\\"HotelRoomPrice\\\\\\\":510.79184,\\\\\\\"GSTOnGTXMarkUp\\\\\\\":0,\\\\\\\"intAgencyMarkUp\\\\\\\":45.688,\\\\\\\"intSTaxOnAgencyMarkUp\\\\\\\":8.223840000000001,\\\\\\\"totalAgentMarkUp\\\\\\\":0,\\\\\\\"intGSTOnAgentFixMarkUp\\\\\\\":0,\\\\\\\"AgentB2CEarning\\\\\\\":0,\\\\\\\"CostToAgentCustomer\\\\\\\":510.79184,\\\\\\\"CostToAgent\\\\\\\":510.79184,\\\\\\\"perNightPrice\\\\\\\":510.79184,\\\\\\\"arrMarkUps\\\\\\\":{\\\\\\\"intBasePrice\\\\\\\":456.88,\\\\\\\"PublishFare\\\\\\\":510.79184,\\\\\\\"intGTXMarkUp\\\\\\\":0,\\\\\\\"intSTaxOnGTXMarkUp\\\\\\\":0,\\\\\\\"intGTXMarkUpWithSTax\\\\\\\":0,\\\\\\\"intAgencyMarkUp\\\\\\\":45.688,\\\\\\\"intSTaxOnAgencyMarkUp\\\\\\\":8.223840000000001,\\\\\\\"intAgencyMarkUpWithSTax\\\\\\\":53.911840000000005,\\\\\\\"TotalMarkUpValue\\\\\\\":10,\\\\\\\"BR\\\\\\\":\\\\\\\"=\\\\\\\",\\\\\\\"totalAgentMarkUp\\\\\\\":0,\\\\\\\"intGSTOnAgentFixMarkUp\\\\\\\":0,\\\\\\\"AgentB2CEarning\\\\\\\":0,\\\\\\\"CostToAgentCustomer\\\\\\\":510.79184,\\\\\\\"CostToAgent\\\\\\\":510.79184},\\\\\\\"CancelArr\\\\\\\":{\\\\\\\"cancel\\\\\\\":[{\\\\\\\"FromDate\\\\\\\":\\\\\\\"2022-10-07T16:49:13.203\\\\\\\",\\\\\\\"ToDate\\\\\\\":\\\\\\\"2022-11-05T18:00\\\\\\\",\\\\\\\"strFromDate\\\\\\\":\\\\\\\"07-Oct-2022\\\\\\\",\\\\\\\"strToDate\\\\\\\":\\\\\\\"05-Nov-2022\\\\\\\",\\\\\\\"Charge\\\\\\\":0,\\\\\\\"Currency\\\\\\\":\\\\\\\"INR\\\\\\\"},{\\\\\\\"FromDate\\\\\\\":\\\\\\\"2022-11-05T18:00\\\\\\\",\\\\\\\"ToDate\\\\\\\":\\\\\\\"2022-11-10T12:00\\\\\\\",\\\\\\\"strFromDate\\\\\\\":\\\\\\\"05-Nov-2022\\\\\\\",\\\\\\\"strToDate\\\\\\\":\\\\\\\"10-Nov-2022\\\\\\\",\\\\\\\"Charge\\\\\\\":445.08,\\\\\\\"Currency\\\\\\\":\\\\\\\"INR\\\\\\\"},{\\\\\\\"FromDate\\\\\\\":\\\\\\\"2022-11-10T12:00\\\\\\\",\\\\\\\"ToDate\\\\\\\":\\\\\\\"2022-11-11T23:59\\\\\\\",\\\\\\\"strFromDate\\\\\\\":\\\\\\\"10-Nov-2022\\\\\\\",\\\\\\\"strToDate\\\\\\\":\\\\\\\"11-Nov-2022\\\\\\\",\\\\\\\"Charge\\\\\\\":445.08,\\\\\\\"Currency\\\\\\\":\\\\\\\"INR\\\\\\\"}],\\\\\\\"getfullrefund\\\\\\\":true,\\\\\\\"fullrefund\\\\\\\":\\\\\\\"Full Refund Allowed\\\\\\\"},\\\\\\\"IsPANMandatory\\\\\\\":false,\\\\\\\"IsPassportMandatory\\\\\\\":false}],\\\\\\\"RoomId\\\\\\\":\\\\\\\"1_0_63400af0e9d551355b688ff1\\\\\\\",\\\\\\\"NoOfRooms\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"TotalPax\\\\\\\":1,\\\\\\\"Nights\\\\\\\":1,\\\\\\\"RoomTotalPrice\\\\\\\":456.88,\\\\\\\"GtxMarkUp\\\\\\\":null,\\\\\\\"iopr\\\\\\\":false,\\\\\\\"ipr\\\\\\\":false,\\\\\\\"gtxMarkUp\\\\\\\":0,\\\\\\\"HotelRoomPrice\\\\\\\":510.79184,\\\\\\\"GSTOnGTXMarkUp\\\\\\\":0,\\\\\\\"intAgencyMarkUp\\\\\\\":45.688,\\\\\\\"intSTaxOnAgencyMarkUp\\\\\\\":8.223840000000001,\\\\\\\"totalAgentMarkUp\\\\\\\":0,\\\\\\\"intGSTOnAgentFixMarkUp\\\\\\\":0,\\\\\\\"AgentB2CEarning\\\\\\\":0,\\\\\\\"CostToAgentCustomer\\\\\\\":510.79184,\\\\\\\"CostToAgent\\\\\\\":510.79184,\\\\\\\"pernightperroomprice\\\\\\\":null,\\\\\\\"arrMarkUps\\\\\\\":{\\\\\\\"intBasePrice\\\\\\\":456.88,\\\\\\\"PublishFare\\\\\\\":510.79184,\\\\\\\"intGTXMarkUp\\\\\\\":0,\\\\\\\"intSTaxOnGTXMarkUp\\\\\\\":0,\\\\\\\"intGTXMarkUpWithSTax\\\\\\\":0,\\\\\\\"intAgencyMarkUp\\\\\\\":45.688,\\\\\\\"intSTaxOnAgencyMarkUp\\\\\\\":8.223840000000001,\\\\\\\"intAgencyMarkUpWithSTax\\\\\\\":53.911840000000005,\\\\\\\"TotalMarkUpValue\\\\\\\":10,\\\\\\\"BR\\\\\\\":\\\\\\\"=\\\\\\\",\\\\\\\"totalAgentMarkUp\\\\\\\":0,\\\\\\\"intGSTOnAgentFixMarkUp\\\\\\\":0,\\\\\\\"AgentB2CEarning\\\\\\\":0,\\\\\\\"CostToAgentCustomer\\\\\\\":510.79184,\\\\\\\"CostToAgent\\\\\\\":510.79184},\\\\\\\"IsPANMandatory\\\\\\\":false,\\\\\\\"IsPassportMandatory\\\\\\\":false}],\\\\\\\"HotelDetails\\\\\\\":{\\\\\\\"SearchHotelTraceId\\\\\\\":\\\\\\\"eae89-677b0-2b5c2-a45d7\\\\\\\",\\\\\\\"HotelId\\\\\\\":\\\\\\\"hsid5689810618-1165527907\\\\\\\",\\\\\\\"HotelName\\\\\\\":\\\\\\\"OYO 89868 KINGS CASA\\\\\\\",\\\\\\\"HotelDescription\\\\\\\":\\\\\\\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\\\\\\\\\\\\\/strong>\\\\\\\",\\\\\\\"HotelImages\\\\\\\":[{\\\\\\\"tns\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"\\\\\\\"}],\\\\\\\"HotelStars\\\\\\\":3,\\\\\\\"HotelGeioLocation\\\\\\\":{\\\\\\\"ln\\\\\\\":\\\\\\\"78.035648111254\\\\\\\",\\\\\\\"lt\\\\\\\":\\\\\\\"27.161617479848\\\\\\\"},\\\\\\\"HotelAddress\\\\\\\":\\\\\\\"8Big Bazzar, Hotel Lane, Taj Ganj, Agra, Uttar PradeshUttar PradeshAgraIndia282004\\\\\\\",\\\\\\\"HotelCity\\\\\\\":\\\\\\\"AGRA\\\\\\\",\\\\\\\"HotelCountry\\\\\\\":\\\\\\\"INDIA\\\\\\\",\\\\\\\"HotelPropertyType\\\\\\\":\\\\\\\"HOTEL\\\\\\\",\\\\\\\"HotelFaciality\\\\\\\":null,\\\\\\\"des\\\\\\\":\\\\\\\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\\\\\\\\\\\\\/strong>\\\\\\\",\\\\\\\"query\\\\\\\":{\\\\\\\"checkinDate\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"checkoutDate\\\\\\\":\\\\\\\"2022-11-11\\\\\\\",\\\\\\\"roomInfo\\\\\\\":[{\\\\\\\"numberOfAdults\\\\\\\":1,\\\\\\\"numberOfChild\\\\\\\":0}],\\\\\\\"searchCriteria\\\\\\\":{\\\\\\\"city\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"countryName\\\\\\\":\\\\\\\"INDIA\\\\\\\",\\\\\\\"cityName\\\\\\\":\\\\\\\"AGRA\\\\\\\",\\\\\\\"nationality\\\\\\\":\\\\\\\"106\\\\\\\"},\\\\\\\"searchPreferences\\\\\\\":{\\\\\\\"ratings\\\\\\\":[0,1,2,3,4,5],\\\\\\\"currency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"fsc\\\\\\\":true},\\\\\\\"searchId\\\\\\\":\\\\\\\"hsid5689810618\\\\\\\",\\\\\\\"isSearchCompleted\\\\\\\":false,\\\\\\\"miscInfo\\\\\\\":[]},\\\\\\\"bookingId\\\\\\\":\\\\\\\"TJS209200363926\\\\\\\"},\\\\\\\"country\\\\\\\":\\\\\\\"INDIA\\\\\\\",\\\\\\\"iopr\\\\\\\":false,\\\\\\\"IsPANMandatory\\\\\\\":false,\\\\\\\"IsPassportMandatory\\\\\\\":false,\\\\\\\"isPriceChanged\\\\\\\":false,\\\\\\\"bookingId\\\\\\\":\\\\\\\"TJS209200363926\\\\\\\",\\\\\\\"getData\\\\\\\":{\\\\\\\"module\\\\\\\":\\\\\\\"hotels\\\\\\\",\\\\\\\"controller\\\\\\\":\\\\\\\"search\\\\\\\",\\\\\\\"action\\\\\\\":\\\\\\\"request-search\\\\\\\",\\\\\\\"selectDestination\\\\\\\":\\\\\\\"AGRA (INDIA)\\\\\\\",\\\\\\\"check_in\\\\\\\":\\\\\\\"10\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"check_out\\\\\\\":\\\\\\\"11\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"Nationality\\\\\\\":\\\\\\\"106\\\\\\\",\\\\\\\"adult\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"child\\\\\\\":[\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\"],\\\\\\\"infant\\\\\\\":[\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\"],\\\\\\\"child1_age\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"child2_age\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"cityid\\\\\\\":\\\\\\\"266\\\\\\\",\\\\\\\"TBBCityId\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"destination\\\\\\\":\\\\\\\"AGRA\\\\\\\",\\\\\\\"hotel_countryCode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"GuestNationality\\\\\\\":\\\\\\\"IN\\\\\\\",\\\\\\\"room\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"totadlt\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"totchld\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"totinfnt\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"travelers\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"roominfojson\\\\\\\":\\\\\\\"[{\\\\\\\\\\\\\\\"totalRoom\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totalTraveler\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totaladult\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totalchild\\\\\\\\\\\\\\\" : 0},{\\\\\\\\\\\\\\\"totalinfant\\\\\\\\\\\\\\\" : 0}]\\\\\\\",\\\\\\\"memberdata\\\\\\\":[{\\\\\\\"NoOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"NoOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"ChildAge\\\\\\\":null}],\\\\\\\"TBOdata\\\\\\\":{\\\\\\\"CheckInDate\\\\\\\":\\\\\\\"10\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"NoOfNights\\\\\\\":1,\\\\\\\"CityId\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"CountryCode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsTBOMapped\\\\\\\":true,\\\\\\\"ResultCount\\\\\\\":null,\\\\\\\"PreferredCurrency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"GuestNationality\\\\\\\":\\\\\\\"IN\\\\\\\",\\\\\\\"NoOfRooms\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"RoomGuests\\\\\\\":[{\\\\\\\"NoOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"NoOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"ChildAge\\\\\\\":null}],\\\\\\\"PreferredHotel\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"MaxRating\\\\\\\":5,\\\\\\\"MinRating\\\\\\\":0,\\\\\\\"ReviewScore\\\\\\\":null,\\\\\\\"IsNearBySearchAllowed\\\\\\\":false},\\\\\\\"hotelsearchdata\\\\\\\":{\\\\\\\"searchQuery\\\\\\\":{\\\\\\\"checkinDate\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"checkoutDate\\\\\\\":\\\\\\\"2022-11-11\\\\\\\",\\\\\\\"roomInfo\\\\\\\":[{\\\\\\\"numberOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"numberOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"childAge\\\\\\\":null}],\\\\\\\"searchCriteria\\\\\\\":{\\\\\\\"city\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"currency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"nationality\\\\\\\":\\\\\\\"106\\\\\\\"},\\\\\\\"searchPreferences\\\\\\\":{\\\\\\\"ratings\\\\\\\":[0,1,2,3,4,5],\\\\\\\"fsc\\\\\\\":true}},\\\\\\\"sync\\\\\\\":false},\\\\\\\"nightCount\\\\\\\":1,\\\\\\\"strCheckin\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"strCheckout\\\\\\\":\\\\\\\"2022-11-11\\\\\\\",\\\\\\\"SearchHotelTraceId\\\\\\\":\\\\\\\"eae89-677b0-2b5c2-a45d7\\\\\\\",\\\\\\\"interNationalSearch\\\\\\\":false,\\\\\\\"searchIds\\\\\\\":\\\\\\\"hsid5689810618\\\\\\\"}}\\\"}\",\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":1,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"paymentMode\":\"3\"}','2022-10-07 16:49:08'),(570,'0b19f-2be6a-15319-93a93','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-331\",\"keyIndex\":1,\"SegFlightNumberArr\":\"G8-331\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-8548153050_1BOMGOIG8331_30734791072670\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"11:30\",\"ArrivalTime\":\"12:45\",\"TravelDate\":\"2022-10-17T11:30\",\"LocalFromTime\":\"2022-10-17 11:30\",\"FromUTCTime\":\"2022-10-17T11:30\",\"LocalToTime\":\"2022-10-17 12:45\",\"ToUTCTime\":\"2022-10-17T12:45\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Mon, 17 Oct\",\"ArrivalDateTxt\":\"Mon, 17 Oct\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":6916,\"PublishedFareTxt\":\"6,915\",\"ApiResultIndex\":\"1-8548153050_1BOMGOIG8331_30734791072360\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"0b19f-2be6a-15319-93a93\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5316,\"Tax\":1474.54,\"YQTax\":0,\"OtherCharges\":1306,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":133.14,\"intPublishedFare\":6790.54,\"PublishedFare\":6916,\"PublishedFarePerPax\":3458,\"OfferedFare\":6543.78,\"CommissionEarned\":113.62,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.98,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-8548153050_1BOMGOIG8331_30734791072670\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":56.31,\"apiMarkup\":0,\"IntCommission\":2.27,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":312.83,\"GSTOnMarkUp\":56.31,\"CommEarned\":2.27,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1474.54,\"BaseFareCal\":6600.09,\"BaseFare\":5316,\"CommissionEarned\":113.62,\"TDS\":-5.98,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1306,\"MU\":133.14,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.31,\"apiMarkup\":0,\"IntCommission\":2.27,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":312.83,\"GSTOnMarkUp\":56.31,\"CommEarned\":2.27,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":113.62,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.27,\"IntAgencyFixMarkUp\":312.83,\"IntTaxOnAgencyFixMarkUp\":56.31,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.31,\"PublishFare\":6915.19,\"CostToCustomer\":6915.19,\"BaseFareCal\":6600.09,\"intCommisionEarnedForAgency\":315.1,\"CostToCompany\":6600.09,\"intOfferedFare\":6543.78,\"intPublishFare\":6790.54,\"TripjackMarkup\":133.14,\"TripjackCommission\":113.62,\"TripjackTDS\":\"5.98\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0EG\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-10-17T12:45\",\"SegFlightNumber\":\"G8-331\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-10-17T11:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"12:45\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]},{\"keyIndex\":56,\"FlightNumber\":\"AI-664\",\"SegFlightNumberArr\":\"AI-664\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-8548153050_53GOIBOMAI664_30737343905371\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-10-19T15:15\",\"LocalFromTime\":\"2022-10-19 15:15\",\"FromUTCTime\":\"2022-10-19T15:15\",\"LocalToTime\":\"2022-10-19 16:35\",\"ToUTCTime\":\"2022-10-19T16:35\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 19 Oct\",\"ArrivalDateTxt\":\"Wed, 19 Oct\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":12856.22,\"PublishedFareTxt\":\"12,856\",\"ApiResultIndex\":\"21-10-15-2-8548153050_53GOIBOMAI664_30737343905371\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"0b19f-2be6a-15319-93a93\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10260,\"Tax\":2513.86,\"YQTax\":0,\"OtherCharges\":1358,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":530,\"CarrierMiscFee\":340,\"MUFee\":250.46,\"intPublishedFare\":12773.86,\"PublishedFare\":12857,\"PublishedFarePerPax\":6429,\"OfferedFare\":12366.62,\"CommissionEarned\":156.78,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-8548153050_53GOIBOMAI664_30737343905371\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":74.21,\"apiMarkup\":0,\"IntCommission\":3.14,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":412.25,\"GSTOnMarkUp\":74.21,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2513.86,\"BaseFareCal\":12440.83,\"BaseFare\":10260,\"CommissionEarned\":156.78,\"TDS\":-8.26,\"MF\":30,\"YQ\":0,\"AGST\":530,\"MFT\":5.4,\"OT\":1358,\"MU\":250.46,\"YR\":340,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":74.21,\"apiMarkup\":0,\"IntCommission\":3.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":412.25,\"GSTOnMarkUp\":74.21,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":156.78,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.14,\"IntAgencyFixMarkUp\":412.25,\"IntTaxOnAgencyFixMarkUp\":74.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":74.21,\"PublishFare\":12856.22,\"CostToCustomer\":12856.22,\"BaseFareCal\":12440.83,\"intCommisionEarnedForAgency\":415.39,\"CostToCompany\":12440.83,\"intOfferedFare\":12366.62,\"intPublishFare\":12773.86,\"TripjackMarkup\":250.46,\"TripjackCommission\":156.78,\"TripjackTDS\":\"8.26\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0U0\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-10-19T16:35\",\"SegFlightNumber\":\"AI-664\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-10-19T15:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":56,\"FlightNumber\":\"AI-664\",\"SegFlightNumberArr\":\"AI-664\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-8548153050_53GOIBOMAI664_30737343905371\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"15:15\",\"ArrivalTime\":\"16:35\",\"TravelDate\":\"2022-10-19T15:15\",\"LocalFromTime\":\"2022-10-19 15:15\",\"FromUTCTime\":\"2022-10-19T15:15\",\"LocalToTime\":\"2022-10-19 16:35\",\"ToUTCTime\":\"2022-10-19T16:35\",\"IsDirect\":0,\"FareClass\":\"W\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Wed, 19 Oct\",\"ArrivalDateTxt\":\"Wed, 19 Oct\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":12856.22,\"PublishedFareTxt\":\"12,856\",\"ApiResultIndex\":\"21-10-15-2-8548153050_53GOIBOMAI664_30737343905371\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"0b19f-2be6a-15319-93a93\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10260,\"Tax\":2513.86,\"YQTax\":0,\"OtherCharges\":1358,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":530,\"CarrierMiscFee\":340,\"MUFee\":250.46,\"intPublishedFare\":12773.86,\"PublishedFare\":12857,\"PublishedFarePerPax\":6429,\"OfferedFare\":12366.62,\"CommissionEarned\":156.78,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-8548153050_53GOIBOMAI664_30737343905371\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":74.21,\"apiMarkup\":0,\"IntCommission\":3.14,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":412.25,\"GSTOnMarkUp\":74.21,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2513.86,\"BaseFareCal\":12440.83,\"BaseFare\":10260,\"CommissionEarned\":156.78,\"TDS\":-8.26,\"MF\":30,\"YQ\":0,\"AGST\":530,\"MFT\":5.4,\"OT\":1358,\"MU\":250.46,\"YR\":340,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":74.21,\"apiMarkup\":0,\"IntCommission\":3.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":412.25,\"GSTOnMarkUp\":74.21,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":156.78,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.14,\"IntAgencyFixMarkUp\":412.25,\"IntTaxOnAgencyFixMarkUp\":74.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":74.21,\"PublishFare\":12856.22,\"CostToCustomer\":12856.22,\"BaseFareCal\":12440.83,\"intCommisionEarnedForAgency\":415.39,\"CostToCompany\":12440.83,\"intOfferedFare\":12366.62,\"intPublishFare\":12773.86,\"TripjackMarkup\":250.46,\"TripjackCommission\":156.78,\"TripjackTDS\":\"8.26\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0U0\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-10-19T16:35\",\"SegFlightNumber\":\"AI-664\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"W\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-10-19T15:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:15\",\"strArrivalDtTime\":\"16:35\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}}','2022-10-08 17:26:45'),(574,'76121-816ce-6f820-059f0','{\"item\":{\"SearchHotelTraceId\":\"76121-816ce-6f820-059f0\",\"HotelId\":\"hsid5543895200-1165527907\",\"HotelName\":\"OYO 89868 KINGS CASA\",\"HotelDescription\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"HotelImages\":[{\"tns\":\"\",\"url\":\"\"}],\"HotelStars\":3,\"HotelGeioLocation\":{\"ln\":\"78.035648111254\",\"lt\":\"27.161617479848\"},\"HotelAddress\":\"8Big Bazzar, Hotel Lane, Taj Ganj, Agra, Uttar PradeshUttar PradeshAgraIndia282004\",\"HotelCity\":\"AGRA\",\"HotelCountry\":\"INDIA\",\"HotelPropertyType\":\"HOTEL\",\"HotelFaciality\":null,\"des\":\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\/strong>\",\"query\":{\"checkinDate\":\"2022-11-09\",\"checkoutDate\":\"2022-11-10\",\"roomInfo\":[{\"numberOfAdults\":1,\"numberOfChild\":0}],\"searchCriteria\":{\"city\":\"740325\",\"countryName\":\"INDIA\",\"cityName\":\"AGRA\",\"nationality\":\"106\"},\"searchPreferences\":{\"ratings\":[0,1,2,3,4,5],\"currency\":\"INR\",\"fsc\":true},\"searchId\":\"hsid5543895200\",\"isSearchCompleted\":false,\"miscInfo\":[]},\"bookingId\":\"TJS200900365365\"},\"val\":{\"Rooms\":[{\"id\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0\",\"RoomCategory\":\"Deluxe Double or Twin\",\"RoomType\":\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )\",\"Adult\":1,\"Child\":0,\"MealBase\":\"BREAKFAST\",\"TotalRoomPrice\":369.89,\"TotalFare\":369.89,\"TotalBaseFare\":358.09,\"TotalNetFare\":369.89,\"TotalTaxFare\":11.8,\"TaxFareBreakup\":{\"SGP\":358.09,\"SBP\":358.09,\"MFT\":1.8,\"MF\":10,\"SNP\":358.09},\"DayWiseFare\":[{\"day\":1,\"fc\":{\"TF\":369.89,\"TAF\":11.8,\"BF\":358.09,\"NF\":369.89},\"afc\":{\"TAF\":{\"SGP\":358.09,\"SBP\":358.09,\"MFT\":1.8,\"MF\":10,\"SNP\":358.09}}}],\"gtxMarkUp\":0,\"HotelRoomPrice\":413.53702,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702,\"perNightPrice\":413.53702,\"arrMarkUps\":{\"intBasePrice\":369.89,\"PublishFare\":413.53702,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"intAgencyMarkUpWithSTax\":43.64702,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702},\"CancelArr\":{\"cancel\":[{\"FromDate\":\"2022-10-10T17:03:17.566\",\"ToDate\":\"2022-11-04T18:00\",\"strFromDate\":\"10-Oct-2022\",\"strToDate\":\"04-Nov-2022\",\"Charge\":0,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-04T18:00\",\"ToDate\":\"2022-11-09T12:00\",\"strFromDate\":\"04-Nov-2022\",\"strToDate\":\"09-Nov-2022\",\"Charge\":358.09,\"Currency\":\"INR\"},{\"FromDate\":\"2022-11-09T12:00\",\"ToDate\":\"2022-11-10T23:59\",\"strFromDate\":\"09-Nov-2022\",\"strToDate\":\"10-Nov-2022\",\"Charge\":358.09,\"Currency\":\"INR\"}],\"getfullrefund\":true,\"fullrefund\":\"Full Refund Allowed\"},\"IsPANMandatory\":false,\"IsPassportMandatory\":false}],\"RoomId\":\"1_0_63440282ead55193b5ccc2fb\",\"NoOfRooms\":\"1\",\"TotalPax\":1,\"Nights\":1,\"RoomTotalPrice\":369.89,\"GtxMarkUp\":null,\"iopr\":false,\"ipr\":false,\"gtxMarkUp\":0,\"HotelRoomPrice\":413.53702,\"GSTOnGTXMarkUp\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702,\"pernightperroomprice\":null,\"arrMarkUps\":{\"intBasePrice\":369.89,\"PublishFare\":413.53702,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intGTXMarkUpWithSTax\":0,\"intAgencyMarkUp\":36.989,\"intSTaxOnAgencyMarkUp\":6.658019999999999,\"intAgencyMarkUpWithSTax\":43.64702,\"TotalMarkUpValue\":10,\"BR\":\"=\",\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":413.53702,\"CostToAgent\":413.53702},\"IsPANMandatory\":false,\"IsPassportMandatory\":false},\"HotelRoomsid\":[\"2\"],\"hotel_booking_id\":\"2\",\"ForCustomerSession\":[[{\"AgencySysId\":\"12728\",\"CustomerSysId\":\"20\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"9999977655\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12728\",\"Address\":\"sec 15\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2022-10-10 17:03:13\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"66\"}]],\"SearchHotelTraceId\":\"76121-816ce-6f820-059f0\",\"CustomerSysId\":\"66\",\"apiData\":{\"AgencySysId\":\"12728\",\"Salutation\":\"1\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"CountryCode\":\"91\",\"MobileNo\":\"9999977655\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[{\"AgencySysId\":\"12728\",\"CustomerSysId\":\"20\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"9\",\"Contacts\":\"9999977655\",\"FirstName\":\"neha\",\"LastName\":\"kannojia\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12728\",\"Address\":\"sec 15\",\"CityTitle\":\"Noida\",\"CitySysId\":\"19543\",\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":\"101\",\"countryCode\":\"91\",\"RegisterDate\":\"2022-10-10 17:03:13\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"66\",\"MobileNo\":\"9999977655\",\"B2B\":true}],\"getData\":\"{\\\"module\\\":\\\"hotels\\\",\\\"controller\\\":\\\"search\\\",\\\"action\\\":\\\"request-search\\\",\\\"selectDestination\\\":\\\"AGRA (INDIA)\\\",\\\"check_in\\\":\\\"09\\\\\\/11\\\\\\/2022\\\",\\\"check_out\\\":\\\"10\\\\\\/11\\\\\\/2022\\\",\\\"Nationality\\\":\\\"106\\\",\\\"adult\\\":[\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\"],\\\"child\\\":[\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\"],\\\"infant\\\":[\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\",\\\"0\\\"],\\\"child1_age\\\":[\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\"],\\\"child2_age\\\":[\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\",\\\"1\\\"],\\\"cityid\\\":\\\"266\\\",\\\"TBBCityId\\\":\\\"740325\\\",\\\"destination\\\":\\\"AGRA\\\",\\\"hotel_countryCode\\\":\\\"\\\",\\\"GuestNationality\\\":\\\"IN\\\",\\\"room\\\":\\\"1\\\",\\\"totadlt\\\":\\\"1\\\",\\\"totchld\\\":\\\"0\\\",\\\"totinfnt\\\":\\\"0\\\",\\\"travelers\\\":\\\"\\\",\\\"roominfojson\\\":\\\"[{\\\\\\\"totalRoom\\\\\\\" : 1},{\\\\\\\"totalTraveler\\\\\\\" : 1},{\\\\\\\"totaladult\\\\\\\" : 1},{\\\\\\\"totalchild\\\\\\\" : 0},{\\\\\\\"totalinfant\\\\\\\" : 0}]\\\",\\\"memberdata\\\":[{\\\"NoOfAdults\\\":\\\"1\\\",\\\"NoOfChild\\\":\\\"0\\\",\\\"ChildAge\\\":null}],\\\"TBOdata\\\":{\\\"CheckInDate\\\":\\\"09\\\\\\/11\\\\\\/2022\\\",\\\"NoOfNights\\\":1,\\\"CityId\\\":\\\"740325\\\",\\\"CountryCode\\\":\\\"\\\",\\\"IsTBOMapped\\\":true,\\\"ResultCount\\\":null,\\\"PreferredCurrency\\\":\\\"INR\\\",\\\"GuestNationality\\\":\\\"IN\\\",\\\"NoOfRooms\\\":\\\"1\\\",\\\"RoomGuests\\\":[{\\\"NoOfAdults\\\":\\\"1\\\",\\\"NoOfChild\\\":\\\"0\\\",\\\"ChildAge\\\":null}],\\\"PreferredHotel\\\":\\\"\\\",\\\"MaxRating\\\":5,\\\"MinRating\\\":0,\\\"ReviewScore\\\":null,\\\"IsNearBySearchAllowed\\\":false},\\\"hotelsearchdata\\\":{\\\"searchQuery\\\":{\\\"checkinDate\\\":\\\"2022-11-09\\\",\\\"checkoutDate\\\":\\\"2022-11-10\\\",\\\"roomInfo\\\":[{\\\"numberOfAdults\\\":\\\"1\\\",\\\"numberOfChild\\\":\\\"0\\\",\\\"childAge\\\":null}],\\\"searchCriteria\\\":{\\\"city\\\":\\\"740325\\\",\\\"currency\\\":\\\"INR\\\",\\\"nationality\\\":\\\"106\\\"},\\\"searchPreferences\\\":{\\\"ratings\\\":[0,1,2,3,4,5],\\\"fsc\\\":true}},\\\"sync\\\":false},\\\"nightCount\\\":1,\\\"strCheckin\\\":\\\"2022-11-09\\\",\\\"strCheckout\\\":\\\"2022-11-10\\\",\\\"SearchHotelTraceId\\\":\\\"76121-816ce-6f820-059f0\\\",\\\"interNationalSearch\\\":false,\\\"searchIds\\\":\\\"hsid5543895200\\\"}\",\"post_\":\"{\\\"countryCode\\\":\\\"91\\\",\\\"leadMobile\\\":\\\"9999977655\\\",\\\"leadEmail\\\":\\\"komalmalhotra0101@gmail.com\\\",\\\"PaxType\\\":[\\\"1\\\"],\\\"familyNumber\\\":\\\"1\\\",\\\"CustomerSysId\\\":[\\\"66\\\"],\\\"relation\\\":[\\\"9\\\"],\\\"salution\\\":[\\\"1\\\"],\\\"firstname\\\":[\\\"neha\\\"],\\\"lastname\\\":[\\\"kannojia\\\"],\\\"panno\\\":[\\\"\\\"],\\\"PassportNo\\\":[\\\"\\\"],\\\"PassportIssueDate\\\":[\\\"__\\\\\\/__\\\\\\/____\\\"],\\\"PassportExpDate\\\":[\\\"\\\"],\\\"cityname\\\":[\\\"Noida\\\"],\\\"address\\\":[\\\"sec 15\\\"],\\\"passenger-city\\\":[\\\"19543\\\"],\\\"passenger-country\\\":[\\\"101\\\"],\\\"SSR\\\":\\\"default\\\",\\\"gstnnumber\\\":\\\"\\\",\\\"companyname\\\":\\\"\\\",\\\"gstaddress\\\":\\\"\\\",\\\"gstemail\\\":\\\"\\\",\\\"gststate\\\":\\\"\\\",\\\"gstphone\\\":\\\"\\\",\\\"accepttandc\\\":\\\"0\\\",\\\"isgstapply\\\":\\\"0\\\",\\\"getData\\\":\\\"{\\\\\\\"module\\\\\\\":\\\\\\\"hotels\\\\\\\",\\\\\\\"controller\\\\\\\":\\\\\\\"search\\\\\\\",\\\\\\\"action\\\\\\\":\\\\\\\"request-search\\\\\\\",\\\\\\\"selectDestination\\\\\\\":\\\\\\\"AGRA (INDIA)\\\\\\\",\\\\\\\"check_in\\\\\\\":\\\\\\\"09\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"check_out\\\\\\\":\\\\\\\"10\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"Nationality\\\\\\\":\\\\\\\"106\\\\\\\",\\\\\\\"adult\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"child\\\\\\\":[\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\"],\\\\\\\"infant\\\\\\\":[\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\"],\\\\\\\"child1_age\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"child2_age\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"cityid\\\\\\\":\\\\\\\"266\\\\\\\",\\\\\\\"TBBCityId\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"destination\\\\\\\":\\\\\\\"AGRA\\\\\\\",\\\\\\\"hotel_countryCode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"GuestNationality\\\\\\\":\\\\\\\"IN\\\\\\\",\\\\\\\"room\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"totadlt\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"totchld\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"totinfnt\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"travelers\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"roominfojson\\\\\\\":\\\\\\\"[{\\\\\\\\\\\\\\\"totalRoom\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totalTraveler\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totaladult\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totalchild\\\\\\\\\\\\\\\" : 0},{\\\\\\\\\\\\\\\"totalinfant\\\\\\\\\\\\\\\" : 0}]\\\\\\\",\\\\\\\"memberdata\\\\\\\":[{\\\\\\\"NoOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"NoOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"ChildAge\\\\\\\":null}],\\\\\\\"TBOdata\\\\\\\":{\\\\\\\"CheckInDate\\\\\\\":\\\\\\\"09\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"NoOfNights\\\\\\\":1,\\\\\\\"CityId\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"CountryCode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsTBOMapped\\\\\\\":true,\\\\\\\"ResultCount\\\\\\\":null,\\\\\\\"PreferredCurrency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"GuestNationality\\\\\\\":\\\\\\\"IN\\\\\\\",\\\\\\\"NoOfRooms\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"RoomGuests\\\\\\\":[{\\\\\\\"NoOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"NoOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"ChildAge\\\\\\\":null}],\\\\\\\"PreferredHotel\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"MaxRating\\\\\\\":5,\\\\\\\"MinRating\\\\\\\":0,\\\\\\\"ReviewScore\\\\\\\":null,\\\\\\\"IsNearBySearchAllowed\\\\\\\":false},\\\\\\\"hotelsearchdata\\\\\\\":{\\\\\\\"searchQuery\\\\\\\":{\\\\\\\"checkinDate\\\\\\\":\\\\\\\"2022-11-09\\\\\\\",\\\\\\\"checkoutDate\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"roomInfo\\\\\\\":[{\\\\\\\"numberOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"numberOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"childAge\\\\\\\":null}],\\\\\\\"searchCriteria\\\\\\\":{\\\\\\\"city\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"currency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"nationality\\\\\\\":\\\\\\\"106\\\\\\\"},\\\\\\\"searchPreferences\\\\\\\":{\\\\\\\"ratings\\\\\\\":[0,1,2,3,4,5],\\\\\\\"fsc\\\\\\\":true}},\\\\\\\"sync\\\\\\\":false},\\\\\\\"nightCount\\\\\\\":1,\\\\\\\"strCheckin\\\\\\\":\\\\\\\"2022-11-09\\\\\\\",\\\\\\\"strCheckout\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"SearchHotelTraceId\\\\\\\":\\\\\\\"76121-816ce-6f820-059f0\\\\\\\",\\\\\\\"interNationalSearch\\\\\\\":false,\\\\\\\"searchIds\\\\\\\":\\\\\\\"hsid5543895200\\\\\\\"}\\\",\\\"SearchHotelTraceId\\\":\\\"76121-816ce-6f820-059f0\\\",\\\"HotelDataArray\\\":\\\"{\\\\\\\"RoomsResult\\\\\\\":[{\\\\\\\"Rooms\\\\\\\":[{\\\\\\\"id\\\\\\\":\\\\\\\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )_1_0\\\\\\\",\\\\\\\"RoomCategory\\\\\\\":\\\\\\\"Deluxe Double or Twin\\\\\\\",\\\\\\\"RoomType\\\\\\\":\\\\\\\"Single-Deluxe Double Or Twin-1-Limited Time Offer. Price includes 15% discount!Breakfast Benefit : ( Breakfast,Parking )\\\\\\\",\\\\\\\"Adult\\\\\\\":1,\\\\\\\"Child\\\\\\\":0,\\\\\\\"MealBase\\\\\\\":\\\\\\\"BREAKFAST\\\\\\\",\\\\\\\"TotalRoomPrice\\\\\\\":369.89,\\\\\\\"TotalFare\\\\\\\":369.89,\\\\\\\"TotalBaseFare\\\\\\\":358.09,\\\\\\\"TotalNetFare\\\\\\\":369.89,\\\\\\\"TotalTaxFare\\\\\\\":11.8,\\\\\\\"TaxFareBreakup\\\\\\\":{\\\\\\\"SGP\\\\\\\":358.09,\\\\\\\"SBP\\\\\\\":358.09,\\\\\\\"MFT\\\\\\\":1.8,\\\\\\\"MF\\\\\\\":10,\\\\\\\"SNP\\\\\\\":358.09},\\\\\\\"DayWiseFare\\\\\\\":[{\\\\\\\"day\\\\\\\":1,\\\\\\\"fc\\\\\\\":{\\\\\\\"TF\\\\\\\":369.89,\\\\\\\"TAF\\\\\\\":11.8,\\\\\\\"BF\\\\\\\":358.09,\\\\\\\"NF\\\\\\\":369.89},\\\\\\\"afc\\\\\\\":{\\\\\\\"TAF\\\\\\\":{\\\\\\\"SGP\\\\\\\":358.09,\\\\\\\"SBP\\\\\\\":358.09,\\\\\\\"MFT\\\\\\\":1.8,\\\\\\\"MF\\\\\\\":10,\\\\\\\"SNP\\\\\\\":358.09}}}],\\\\\\\"gtxMarkUp\\\\\\\":0,\\\\\\\"HotelRoomPrice\\\\\\\":413.53702,\\\\\\\"GSTOnGTXMarkUp\\\\\\\":0,\\\\\\\"intAgencyMarkUp\\\\\\\":36.989,\\\\\\\"intSTaxOnAgencyMarkUp\\\\\\\":6.658019999999999,\\\\\\\"totalAgentMarkUp\\\\\\\":0,\\\\\\\"intGSTOnAgentFixMarkUp\\\\\\\":0,\\\\\\\"AgentB2CEarning\\\\\\\":0,\\\\\\\"CostToAgentCustomer\\\\\\\":413.53702,\\\\\\\"CostToAgent\\\\\\\":413.53702,\\\\\\\"perNightPrice\\\\\\\":413.53702,\\\\\\\"arrMarkUps\\\\\\\":{\\\\\\\"intBasePrice\\\\\\\":369.89,\\\\\\\"PublishFare\\\\\\\":413.53702,\\\\\\\"intGTXMarkUp\\\\\\\":0,\\\\\\\"intSTaxOnGTXMarkUp\\\\\\\":0,\\\\\\\"intGTXMarkUpWithSTax\\\\\\\":0,\\\\\\\"intAgencyMarkUp\\\\\\\":36.989,\\\\\\\"intSTaxOnAgencyMarkUp\\\\\\\":6.658019999999999,\\\\\\\"intAgencyMarkUpWithSTax\\\\\\\":43.64702,\\\\\\\"TotalMarkUpValue\\\\\\\":10,\\\\\\\"BR\\\\\\\":\\\\\\\"=\\\\\\\",\\\\\\\"totalAgentMarkUp\\\\\\\":0,\\\\\\\"intGSTOnAgentFixMarkUp\\\\\\\":0,\\\\\\\"AgentB2CEarning\\\\\\\":0,\\\\\\\"CostToAgentCustomer\\\\\\\":413.53702,\\\\\\\"CostToAgent\\\\\\\":413.53702},\\\\\\\"CancelArr\\\\\\\":{\\\\\\\"cancel\\\\\\\":[{\\\\\\\"FromDate\\\\\\\":\\\\\\\"2022-10-10T17:03:17.566\\\\\\\",\\\\\\\"ToDate\\\\\\\":\\\\\\\"2022-11-04T18:00\\\\\\\",\\\\\\\"strFromDate\\\\\\\":\\\\\\\"10-Oct-2022\\\\\\\",\\\\\\\"strToDate\\\\\\\":\\\\\\\"04-Nov-2022\\\\\\\",\\\\\\\"Charge\\\\\\\":0,\\\\\\\"Currency\\\\\\\":\\\\\\\"INR\\\\\\\"},{\\\\\\\"FromDate\\\\\\\":\\\\\\\"2022-11-04T18:00\\\\\\\",\\\\\\\"ToDate\\\\\\\":\\\\\\\"2022-11-09T12:00\\\\\\\",\\\\\\\"strFromDate\\\\\\\":\\\\\\\"04-Nov-2022\\\\\\\",\\\\\\\"strToDate\\\\\\\":\\\\\\\"09-Nov-2022\\\\\\\",\\\\\\\"Charge\\\\\\\":358.09,\\\\\\\"Currency\\\\\\\":\\\\\\\"INR\\\\\\\"},{\\\\\\\"FromDate\\\\\\\":\\\\\\\"2022-11-09T12:00\\\\\\\",\\\\\\\"ToDate\\\\\\\":\\\\\\\"2022-11-10T23:59\\\\\\\",\\\\\\\"strFromDate\\\\\\\":\\\\\\\"09-Nov-2022\\\\\\\",\\\\\\\"strToDate\\\\\\\":\\\\\\\"10-Nov-2022\\\\\\\",\\\\\\\"Charge\\\\\\\":358.09,\\\\\\\"Currency\\\\\\\":\\\\\\\"INR\\\\\\\"}],\\\\\\\"getfullrefund\\\\\\\":true,\\\\\\\"fullrefund\\\\\\\":\\\\\\\"Full Refund Allowed\\\\\\\"},\\\\\\\"IsPANMandatory\\\\\\\":false,\\\\\\\"IsPassportMandatory\\\\\\\":false}],\\\\\\\"RoomId\\\\\\\":\\\\\\\"1_0_63440282ead55193b5ccc2fb\\\\\\\",\\\\\\\"NoOfRooms\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"TotalPax\\\\\\\":1,\\\\\\\"Nights\\\\\\\":1,\\\\\\\"RoomTotalPrice\\\\\\\":369.89,\\\\\\\"GtxMarkUp\\\\\\\":null,\\\\\\\"iopr\\\\\\\":false,\\\\\\\"ipr\\\\\\\":false,\\\\\\\"gtxMarkUp\\\\\\\":0,\\\\\\\"HotelRoomPrice\\\\\\\":413.53702,\\\\\\\"GSTOnGTXMarkUp\\\\\\\":0,\\\\\\\"intAgencyMarkUp\\\\\\\":36.989,\\\\\\\"intSTaxOnAgencyMarkUp\\\\\\\":6.658019999999999,\\\\\\\"totalAgentMarkUp\\\\\\\":0,\\\\\\\"intGSTOnAgentFixMarkUp\\\\\\\":0,\\\\\\\"AgentB2CEarning\\\\\\\":0,\\\\\\\"CostToAgentCustomer\\\\\\\":413.53702,\\\\\\\"CostToAgent\\\\\\\":413.53702,\\\\\\\"pernightperroomprice\\\\\\\":null,\\\\\\\"arrMarkUps\\\\\\\":{\\\\\\\"intBasePrice\\\\\\\":369.89,\\\\\\\"PublishFare\\\\\\\":413.53702,\\\\\\\"intGTXMarkUp\\\\\\\":0,\\\\\\\"intSTaxOnGTXMarkUp\\\\\\\":0,\\\\\\\"intGTXMarkUpWithSTax\\\\\\\":0,\\\\\\\"intAgencyMarkUp\\\\\\\":36.989,\\\\\\\"intSTaxOnAgencyMarkUp\\\\\\\":6.658019999999999,\\\\\\\"intAgencyMarkUpWithSTax\\\\\\\":43.64702,\\\\\\\"TotalMarkUpValue\\\\\\\":10,\\\\\\\"BR\\\\\\\":\\\\\\\"=\\\\\\\",\\\\\\\"totalAgentMarkUp\\\\\\\":0,\\\\\\\"intGSTOnAgentFixMarkUp\\\\\\\":0,\\\\\\\"AgentB2CEarning\\\\\\\":0,\\\\\\\"CostToAgentCustomer\\\\\\\":413.53702,\\\\\\\"CostToAgent\\\\\\\":413.53702},\\\\\\\"IsPANMandatory\\\\\\\":false,\\\\\\\"IsPassportMandatory\\\\\\\":false}],\\\\\\\"HotelDetails\\\\\\\":{\\\\\\\"SearchHotelTraceId\\\\\\\":\\\\\\\"76121-816ce-6f820-059f0\\\\\\\",\\\\\\\"HotelId\\\\\\\":\\\\\\\"hsid5543895200-1165527907\\\\\\\",\\\\\\\"HotelName\\\\\\\":\\\\\\\"OYO 89868 KINGS CASA\\\\\\\",\\\\\\\"HotelDescription\\\\\\\":\\\\\\\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\\\\\\\\\\\\\/strong>\\\\\\\",\\\\\\\"HotelImages\\\\\\\":[{\\\\\\\"tns\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"url\\\\\\\":\\\\\\\"\\\\\\\"}],\\\\\\\"HotelStars\\\\\\\":3,\\\\\\\"HotelGeioLocation\\\\\\\":{\\\\\\\"ln\\\\\\\":\\\\\\\"78.035648111254\\\\\\\",\\\\\\\"lt\\\\\\\":\\\\\\\"27.161617479848\\\\\\\"},\\\\\\\"HotelAddress\\\\\\\":\\\\\\\"8Big Bazzar, Hotel Lane, Taj Ganj, Agra, Uttar PradeshUttar PradeshAgraIndia282004\\\\\\\",\\\\\\\"HotelCity\\\\\\\":\\\\\\\"AGRA\\\\\\\",\\\\\\\"HotelCountry\\\\\\\":\\\\\\\"INDIA\\\\\\\",\\\\\\\"HotelPropertyType\\\\\\\":\\\\\\\"HOTEL\\\\\\\",\\\\\\\"HotelFaciality\\\\\\\":null,\\\\\\\"des\\\\\\\":\\\\\\\"<br><br><strong>Important Notice:<br><br><br>Child and extra bed policy : <br><br> Infant - year(s) stay for free if using existing bedding. Note if you need a cot there may be an extra charge.<br><br>Children -year(s) must use an extra bed.<br><br>Guests over  years old are considered as an adults.<br>Extra beds are depend on the room you choose, please check the individual room policy for more details.<\\\\\\\\\\\\\\/strong>\\\\\\\",\\\\\\\"query\\\\\\\":{\\\\\\\"checkinDate\\\\\\\":\\\\\\\"2022-11-09\\\\\\\",\\\\\\\"checkoutDate\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"roomInfo\\\\\\\":[{\\\\\\\"numberOfAdults\\\\\\\":1,\\\\\\\"numberOfChild\\\\\\\":0}],\\\\\\\"searchCriteria\\\\\\\":{\\\\\\\"city\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"countryName\\\\\\\":\\\\\\\"INDIA\\\\\\\",\\\\\\\"cityName\\\\\\\":\\\\\\\"AGRA\\\\\\\",\\\\\\\"nationality\\\\\\\":\\\\\\\"106\\\\\\\"},\\\\\\\"searchPreferences\\\\\\\":{\\\\\\\"ratings\\\\\\\":[0,1,2,3,4,5],\\\\\\\"currency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"fsc\\\\\\\":true},\\\\\\\"searchId\\\\\\\":\\\\\\\"hsid5543895200\\\\\\\",\\\\\\\"isSearchCompleted\\\\\\\":false,\\\\\\\"miscInfo\\\\\\\":[]},\\\\\\\"bookingId\\\\\\\":\\\\\\\"TJS200900365365\\\\\\\"},\\\\\\\"country\\\\\\\":\\\\\\\"INDIA\\\\\\\",\\\\\\\"iopr\\\\\\\":false,\\\\\\\"IsPANMandatory\\\\\\\":false,\\\\\\\"IsPassportMandatory\\\\\\\":false,\\\\\\\"isPriceChanged\\\\\\\":false,\\\\\\\"bookingId\\\\\\\":\\\\\\\"TJS200900365365\\\\\\\",\\\\\\\"getData\\\\\\\":{\\\\\\\"module\\\\\\\":\\\\\\\"hotels\\\\\\\",\\\\\\\"controller\\\\\\\":\\\\\\\"search\\\\\\\",\\\\\\\"action\\\\\\\":\\\\\\\"request-search\\\\\\\",\\\\\\\"selectDestination\\\\\\\":\\\\\\\"AGRA (INDIA)\\\\\\\",\\\\\\\"check_in\\\\\\\":\\\\\\\"09\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"check_out\\\\\\\":\\\\\\\"10\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"Nationality\\\\\\\":\\\\\\\"106\\\\\\\",\\\\\\\"adult\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"child\\\\\\\":[\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\"],\\\\\\\"infant\\\\\\\":[\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\",\\\\\\\"0\\\\\\\"],\\\\\\\"child1_age\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"child2_age\\\\\\\":[\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\",\\\\\\\"1\\\\\\\"],\\\\\\\"cityid\\\\\\\":\\\\\\\"266\\\\\\\",\\\\\\\"TBBCityId\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"destination\\\\\\\":\\\\\\\"AGRA\\\\\\\",\\\\\\\"hotel_countryCode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"GuestNationality\\\\\\\":\\\\\\\"IN\\\\\\\",\\\\\\\"room\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"totadlt\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"totchld\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"totinfnt\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"travelers\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"roominfojson\\\\\\\":\\\\\\\"[{\\\\\\\\\\\\\\\"totalRoom\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totalTraveler\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totaladult\\\\\\\\\\\\\\\" : 1},{\\\\\\\\\\\\\\\"totalchild\\\\\\\\\\\\\\\" : 0},{\\\\\\\\\\\\\\\"totalinfant\\\\\\\\\\\\\\\" : 0}]\\\\\\\",\\\\\\\"memberdata\\\\\\\":[{\\\\\\\"NoOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"NoOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"ChildAge\\\\\\\":null}],\\\\\\\"TBOdata\\\\\\\":{\\\\\\\"CheckInDate\\\\\\\":\\\\\\\"09\\\\\\\\\\\\\\/11\\\\\\\\\\\\\\/2022\\\\\\\",\\\\\\\"NoOfNights\\\\\\\":1,\\\\\\\"CityId\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"CountryCode\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"IsTBOMapped\\\\\\\":true,\\\\\\\"ResultCount\\\\\\\":null,\\\\\\\"PreferredCurrency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"GuestNationality\\\\\\\":\\\\\\\"IN\\\\\\\",\\\\\\\"NoOfRooms\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"RoomGuests\\\\\\\":[{\\\\\\\"NoOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"NoOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"ChildAge\\\\\\\":null}],\\\\\\\"PreferredHotel\\\\\\\":\\\\\\\"\\\\\\\",\\\\\\\"MaxRating\\\\\\\":5,\\\\\\\"MinRating\\\\\\\":0,\\\\\\\"ReviewScore\\\\\\\":null,\\\\\\\"IsNearBySearchAllowed\\\\\\\":false},\\\\\\\"hotelsearchdata\\\\\\\":{\\\\\\\"searchQuery\\\\\\\":{\\\\\\\"checkinDate\\\\\\\":\\\\\\\"2022-11-09\\\\\\\",\\\\\\\"checkoutDate\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"roomInfo\\\\\\\":[{\\\\\\\"numberOfAdults\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"numberOfChild\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"childAge\\\\\\\":null}],\\\\\\\"searchCriteria\\\\\\\":{\\\\\\\"city\\\\\\\":\\\\\\\"740325\\\\\\\",\\\\\\\"currency\\\\\\\":\\\\\\\"INR\\\\\\\",\\\\\\\"nationality\\\\\\\":\\\\\\\"106\\\\\\\"},\\\\\\\"searchPreferences\\\\\\\":{\\\\\\\"ratings\\\\\\\":[0,1,2,3,4,5],\\\\\\\"fsc\\\\\\\":true}},\\\\\\\"sync\\\\\\\":false},\\\\\\\"nightCount\\\\\\\":1,\\\\\\\"strCheckin\\\\\\\":\\\\\\\"2022-11-09\\\\\\\",\\\\\\\"strCheckout\\\\\\\":\\\\\\\"2022-11-10\\\\\\\",\\\\\\\"SearchHotelTraceId\\\\\\\":\\\\\\\"76121-816ce-6f820-059f0\\\\\\\",\\\\\\\"interNationalSearch\\\\\\\":false,\\\\\\\"searchIds\\\\\\\":\\\\\\\"hsid5543895200\\\\\\\"}}\\\"}\",\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_B2BType\":1,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"paymentMode\":\"3\"}','2022-10-10 17:03:26'),(575,'c2771-21ddb-90340-e1d2c','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-8485\",\"keyIndex\":1,\"SegFlightNumberArr\":\"SG-8485\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-6032669921_0DELDBRSG8485_24571157634150\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:30\",\"ArrivalTime\":\"13:15\",\"TravelDate\":\"2022-10-12T11:30\",\"LocalFromTime\":\"2022-10-12 11:30\",\"FromUTCTime\":\"2022-10-12T11:30\",\"LocalToTime\":\"2022-10-12 13:15\",\"ToUTCTime\":\"2022-10-12T13:15\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":105,\"DepartureDateTxt\":\"Wed, 12 Oct\",\"ArrivalDateTxt\":\"Wed, 12 Oct\",\"FlightDuration\":\"1h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"7546\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"DBR\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5921,\"PublishedFareTxt\":\"5,921\",\"ApiResultIndex\":\"11-6032669921_0DELDBRSG8485_24571157634150\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"c2771-21ddb-90340-e1d2c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5000,\"Tax\":424.05,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":106.35,\"intPublishedFare\":5424.05,\"PublishedFare\":5921,\"PublishedFarePerPax\":5921,\"OfferedFare\":5222.7,\"CommissionEarned\":95,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-6032669921_0DELDBRSG8485_24571157634150\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":106.22,\"apiMarkup\":0,\"IntCommission\":1.9,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":590.13,\"GSTOnMarkUp\":106.22,\"CommEarned\":1.9,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":424.05,\"BaseFareCal\":5328.92,\"BaseFare\":5000,\"CommissionEarned\":95,\"TDS\":-5,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":106.35,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":106.22,\"apiMarkup\":0,\"IntCommission\":1.9,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":590.13,\"GSTOnMarkUp\":106.22,\"CommEarned\":1.9,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":95,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.9,\"IntAgencyFixMarkUp\":590.13,\"IntTaxOnAgencyFixMarkUp\":106.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":106.22,\"PublishFare\":5920.95,\"CostToCustomer\":5920.95,\"BaseFareCal\":5328.92,\"intCommisionEarnedForAgency\":592.03,\"CostToCompany\":5328.92,\"intOfferedFare\":5222.7,\"intPublishFare\":5424.05,\"TripjackMarkup\":106.35,\"TripjackCommission\":95,\"TripjackTDS\":\"5\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":500},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"021\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Darbhanga Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Darbhanga\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DBR\",\"destinationArrTime\":\"2022-10-12T13:15\",\"SegFlightNumber\":\"SG-8485\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-10-12T11:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":105,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"13:15\",\"FlightDuration\":\"1h 45m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"$$hashKey\":\"03A\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-11 14:20:58'),(576,'bb320-73174-16aa9-1e3ba','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":140,\"FlightNumber\":\"131\",\"SegFlightNumberArr\":\"FD-131\",\"AirlineName\":\"Thai AirAsia\",\"AirlineCode\":\"FD\",\"OrFlightNumber\":\"FD-131\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"AirlineSysId\":\"491\",\"DepartureTime\":\"23:05\",\"ArrivalTime\":\"04:30\",\"TravelDate\":\"2022-11-08T23:05\",\"LocalFromTime\":\"2022-11-08 23:05\",\"FromUTCTime\":\"2022-11-08T23:05\",\"LocalToTime\":\"2022-11-09 04:30\",\"ToUTCTime\":\"2022-11-09T04:30\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Tue, 08 Nov\",\"ArrivalDateTxt\":\"Wed, 09 Nov\",\"FlightDuration\":\"3h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"2266\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"DMK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"bb320-73174-16aa9-1e3ba\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/FD.gif\"},\"destination\":{\"FlightNumber\":\"130\",\"SegFlightNumberArr\":\"FD-130\",\"AirlineName\":\"Thai AirAsia\",\"AirlineCode\":\"FD\",\"DeFlightNumber\":\"FD-130\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"AirlineSysId\":\"491\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2022-11-13T19:30\",\"LocalFromTime\":\"2022-11-13 19:30\",\"FromUTCTime\":\"2022-11-13T19:30\",\"LocalToTime\":\"2022-11-13 22:35\",\"ToUTCTime\":\"2022-11-13T22:35\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Sun, 13 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"4h 35m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"2266\",\"SourceAirportCode\":\"DMK\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"bb320-73174-16aa9-1e3ba\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/FD.gif\"},\"AirlineName\":\"Thai AirAsia\",\"PublishedFare\":29403.47,\"PublishedFareTxt\":\"29,403\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"apiTraceId\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27468.05,\"Tax\":1463.42,\"YQTax\":0,\"OtherCharges\":860.74,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":567.28,\"intPublishedFare\":28931.47,\"PublishedFare\":29404,\"PublishedFarePerPax\":29404,\"OfferedFare\":28364.19,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":null,\"intTotalGST\":158.53,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":880.75,\"GSTOnMarkUp\":158.53,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1463.42,\"BaseFareCal\":28522.72,\"BaseFare\":27468.05,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":860.74,\"MU\":567.28,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":158.53,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":880.75,\"GSTOnMarkUp\":158.53,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"IsMealIncludes\":null,\"Baggage\":null,\"CabinBaggage\":null,\"IsCabinBaggage\":false,\"IsBaggage\":false,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":880.75,\"IntTaxOnAgencyFixMarkUp\":158.53,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":158.53,\"PublishFare\":29403.47,\"CostToCustomer\":29403.47,\"BaseFareCal\":28522.72,\"intCommisionEarnedForAgency\":880.75,\"CostToCompany\":28522.72,\"intOfferedFare\":28364.19,\"intPublishFare\":28931.47,\"TripjackMarkup\":567.28,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"013\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Don Mueang International Arpt\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"DMK\",\"destinationArrTime\":\"2022-11-09T04:30\",\"SegFlightNumber\":\"FD-131\",\"AirlineCode\":\"FD\",\"AirlineName\":\"Thai AirAsia\",\"FareClass\":\"Z\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-11-08T23:05\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":null,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"04:30\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/FD.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Don Mueang International Arpt\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-13T22:35\",\"SegFlightNumber\":\"FD-130\",\"AirlineCode\":\"FD\",\"AirlineName\":\"Thai AirAsia\",\"FareClass\":\"Z\",\"originAirportCode\":\"DMK\",\"originDepTime\":\"2022-11-13T19:30\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":null,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/FD.gif\"}],\"DepartureTime\":\"19:30\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"bb320-73174-16aa9-1e3ba\",\"keyIndex\":140,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":140,\"FlightNumber\":\"131\",\"SegFlightNumberArr\":\"FD-131\",\"AirlineName\":\"Thai AirAsia\",\"AirlineCode\":\"FD\",\"OrFlightNumber\":\"FD-131\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"AirlineSysId\":\"491\",\"DepartureTime\":\"23:05\",\"ArrivalTime\":\"04:30\",\"TravelDate\":\"2022-11-08T23:05\",\"LocalFromTime\":\"2022-11-08 23:05\",\"FromUTCTime\":\"2022-11-08T23:05\",\"LocalToTime\":\"2022-11-09 04:30\",\"ToUTCTime\":\"2022-11-09T04:30\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Tue, 08 Nov\",\"ArrivalDateTxt\":\"Wed, 09 Nov\",\"FlightDuration\":\"3h 55m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"2266\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"DMK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"bb320-73174-16aa9-1e3ba\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/FD.gif\"},\"destination\":{\"FlightNumber\":\"130\",\"SegFlightNumberArr\":\"FD-130\",\"AirlineName\":\"Thai AirAsia\",\"AirlineCode\":\"FD\",\"DeFlightNumber\":\"FD-130\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":null,\"IsBagIncludes\":false,\"IsCabinBagIncludes\":null,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"AirlineSysId\":\"491\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"22:35\",\"TravelDate\":\"2022-11-13T19:30\",\"LocalFromTime\":\"2022-11-13 19:30\",\"FromUTCTime\":\"2022-11-13T19:30\",\"LocalToTime\":\"2022-11-13 22:35\",\"ToUTCTime\":\"2022-11-13T22:35\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":275,\"DepartureDateTxt\":\"Sun, 13 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"4h 35m\",\"SourcePlaceSysId\":\"12995\",\"DestPlaceSysId\":\"2266\",\"SourceAirportCode\":\"DMK\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"bb320-73174-16aa9-1e3ba\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/FD.gif\"},\"AirlineName\":\"Thai AirAsia\",\"PublishedFare\":29403.47,\"PublishedFareTxt\":\"29,403\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"apiTraceId\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27468.05,\"Tax\":1463.42,\"YQTax\":0,\"OtherCharges\":860.74,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":567.28,\"intPublishedFare\":28931.47,\"PublishedFare\":29404,\"PublishedFarePerPax\":29404,\"OfferedFare\":28364.19,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0269489543_138JAIDMKFD131DMKJAIFD130_34061542119741\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":null,\"intTotalGST\":158.53,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":880.75,\"GSTOnMarkUp\":158.53,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1463.42,\"BaseFareCal\":28522.72,\"BaseFare\":27468.05,\"CommissionEarned\":0,\"TDS\":0,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":860.74,\"MU\":567.28,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":158.53,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":880.75,\"GSTOnMarkUp\":158.53,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":[],\"CabinBaggage\":[]}],\"IsMealIncludes\":null,\"Baggage\":null,\"CabinBaggage\":null,\"IsCabinBaggage\":false,\"IsBaggage\":false,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":880.75,\"IntTaxOnAgencyFixMarkUp\":158.53,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":158.53,\"PublishFare\":29403.47,\"CostToCustomer\":29403.47,\"BaseFareCal\":28522.72,\"intCommisionEarnedForAgency\":880.75,\"CostToCompany\":28522.72,\"intOfferedFare\":28364.19,\"intPublishFare\":28931.47,\"TripjackMarkup\":567.28,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Don Mueang International Arpt\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bangkok\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"DMK\",\"destinationArrTime\":\"2022-11-09T04:30\",\"SegFlightNumber\":\"FD-131\",\"AirlineCode\":\"FD\",\"AirlineName\":\"Thai AirAsia\",\"FareClass\":\"Z\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-11-08T23:05\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":null,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":235,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"04:30\",\"FlightDuration\":\"3h 55m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/FD.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Don Mueang International Arpt\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Bangkok\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-13T22:35\",\"SegFlightNumber\":\"FD-130\",\"AirlineCode\":\"FD\",\"AirlineName\":\"Thai AirAsia\",\"FareClass\":\"Z\",\"originAirportCode\":\"DMK\",\"originDepTime\":\"2022-11-13T19:30\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":null,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":275,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"22:35\",\"FlightDuration\":\"4h 35m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/FD.gif\"}],\"DepartureTime\":\"19:30\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"bb320-73174-16aa9-1e3ba\",\"keyIndex\":140,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"$$hashKey\":\"015\"}]}],\"FlightBookingDataInbound\":null}','2022-10-14 14:45:55'),(577,'a50d5-a2c7b-162e2-3157e','{\"FlightBookingData\":[{\"FlightNumber\":\"VY-1003\",\"keyIndex\":32,\"SegFlightNumberArr\":\"VY-1003, VY-7844\",\"AirlineName\":\"Vueling airlines\",\"AirlineCode\":\"VY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-2-15-10-9207329464_32MADBCNVY1003BCNTLVVY7844_127983492064370\",\"AirlineSysId\":\"546\",\"DepartureTime\":\"09:35\",\"ArrivalTime\":\"04:05\",\"TravelDate\":\"2022-11-12T09:35\",\"LocalFromTime\":\"2022-11-12 09:35\",\"FromUTCTime\":\"2022-11-12T09:35\",\"LocalToTime\":\"2022-11-13 04:05\",\"ToUTCTime\":\"2022-11-13T04:05\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"Barcelona\",\"GroundTime\":725,\"LAYOVERDuration\":\"12h 5m\",\"FlyingMinutes\":1050,\"DepartureDateTxt\":\"Sat, 12 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"17h 30m\",\"SourcePlaceSysId\":\"16314\",\"DestPlaceSysId\":\"26961\",\"SourceAirportCode\":\"MAD\",\"DestAirportCode\":\"TLV\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":56955,\"PublishedFareTxt\":\"56,955\",\"ApiResultIndex\":\"27-21-20-12-2-15-10-9207329464_32MADBCNVY1003BCNTLVVY7844_127983492064370\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a50d5-a2c7b-162e2-3157e\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":49035,\"Tax\":7683.83,\"YQTax\":0,\"OtherCharges\":6554,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1112.13,\"intPublishedFare\":56718.83,\"PublishedFare\":56955,\"PublishedFarePerPax\":56955,\"OfferedFare\":55606.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-2-15-10-9207329464_32MADBCNVY1003BCNTLVVY7844_127983492064370\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":205.65,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":1142.48,\"GSTOnMarkUp\":205.65,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kg\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7683.83,\"BaseFareCal\":55812.35,\"BaseFare\":49035,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":6554,\"MU\":1112.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":205.65,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1142.48,\"GSTOnMarkUp\":205.65,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":1142.48,\"IntTaxOnAgencyFixMarkUp\":205.65,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":205.65,\"PublishFare\":56954.83,\"CostToCustomer\":56954.83,\"BaseFareCal\":55812.35,\"intCommisionEarnedForAgency\":1142.48,\"CostToCompany\":55812.35,\"intOfferedFare\":55606.7,\"intPublishFare\":56718.83,\"TripjackMarkup\":1112.13,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0MY\"},\"Segments\":[{\"originAirportName\":\"Barajas Arpt\",\"destinationAirportName\":\"Barcelona Arpt\",\"originCityName\":\"Madrid\",\"originCountryName\":\"Spain\",\"destinationCityName\":\"Barcelona\",\"destinationCountryName\":\"Spain\",\"destinationAirportCode\":\"BCN\",\"destinationArrTime\":\"2022-11-12T10:50\",\"SegFlightNumber\":\"VY-1003\",\"AirlineCode\":\"VY\",\"AirlineName\":\"Vueling Airlines\",\"FareClass\":\"P\",\"originAirportCode\":\"MAD\",\"originDepTime\":\"2022-11-12T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":75,\"GroundTime\":725,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"10:50\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"12h 5m\",\"LAYOVERCity\":\"Barcelona\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"$$hashKey\":\"0QN\"},{\"originAirportName\":\"Barcelona Arpt\",\"destinationAirportName\":\"Ben Gurion Intl Arpt\",\"originCityName\":\"Barcelona\",\"originCountryName\":\"Spain\",\"destinationCityName\":\"Tel Aviv\",\"destinationCountryName\":\"Israel\",\"destinationAirportCode\":\"TLV\",\"destinationArrTime\":\"2022-11-13T04:05\",\"SegFlightNumber\":\"VY-7844\",\"AirlineCode\":\"VY\",\"AirlineName\":\"Vueling Airlines\",\"FareClass\":\"P\",\"originAirportCode\":\"BCN\",\"originDepTime\":\"2022-11-12T22:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"22:55\",\"strArrivalDtTime\":\"04:05\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"$$hashKey\":\"0QO\"}],\"FilterPrice\":\"55001-60000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"VY-1003\",\"keyIndex\":32,\"SegFlightNumberArr\":\"VY-1003, VY-7844\",\"AirlineName\":\"Vueling airlines\",\"AirlineCode\":\"VY\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"27-21-20-12-2-15-10-9207329464_32MADBCNVY1003BCNTLVVY7844_127983492064370\",\"AirlineSysId\":\"546\",\"DepartureTime\":\"09:35\",\"ArrivalTime\":\"04:05\",\"TravelDate\":\"2022-11-12T09:35\",\"LocalFromTime\":\"2022-11-12 09:35\",\"FromUTCTime\":\"2022-11-12T09:35\",\"LocalToTime\":\"2022-11-13 04:05\",\"ToUTCTime\":\"2022-11-13T04:05\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"Barcelona\",\"GroundTime\":725,\"LAYOVERDuration\":\"12h 5m\",\"FlyingMinutes\":1050,\"DepartureDateTxt\":\"Sat, 12 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"17h 30m\",\"SourcePlaceSysId\":\"16314\",\"DestPlaceSysId\":\"26961\",\"SourceAirportCode\":\"MAD\",\"DestAirportCode\":\"TLV\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":56955,\"PublishedFareTxt\":\"56,955\",\"ApiResultIndex\":\"27-21-20-12-2-15-10-9207329464_32MADBCNVY1003BCNTLVVY7844_127983492064370\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a50d5-a2c7b-162e2-3157e\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":49035,\"Tax\":7683.83,\"YQTax\":0,\"OtherCharges\":6554,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1112.13,\"intPublishedFare\":56718.83,\"PublishedFare\":56955,\"PublishedFarePerPax\":56955,\"OfferedFare\":55606.7,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"27-21-20-12-2-15-10-9207329464_32MADBCNVY1003BCNTLVVY7844_127983492064370\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":205.65,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":1142.48,\"GSTOnMarkUp\":205.65,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kg\",\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":7683.83,\"BaseFareCal\":55812.35,\"BaseFare\":49035,\"CommissionEarned\":0,\"TDS\":0,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":6554,\"MU\":1112.13,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":205.65,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1142.48,\"GSTOnMarkUp\":205.65,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kg\",\"CabinBaggage\":\"7Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":1142.48,\"IntTaxOnAgencyFixMarkUp\":205.65,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":205.65,\"PublishFare\":56954.83,\"CostToCustomer\":56954.83,\"BaseFareCal\":55812.35,\"intCommisionEarnedForAgency\":1142.48,\"CostToCompany\":55812.35,\"intOfferedFare\":55606.7,\"intPublishFare\":56718.83,\"TripjackMarkup\":1112.13,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Barajas Arpt\",\"destinationAirportName\":\"Barcelona Arpt\",\"originCityName\":\"Madrid\",\"originCountryName\":\"Spain\",\"destinationCityName\":\"Barcelona\",\"destinationCountryName\":\"Spain\",\"destinationAirportCode\":\"BCN\",\"destinationArrTime\":\"2022-11-12T10:50\",\"SegFlightNumber\":\"VY-1003\",\"AirlineCode\":\"VY\",\"AirlineName\":\"Vueling Airlines\",\"FareClass\":\"P\",\"originAirportCode\":\"MAD\",\"originDepTime\":\"2022-11-12T09:35\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":75,\"GroundTime\":725,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"09:35\",\"strArrivalDtTime\":\"10:50\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"12h 5m\",\"LAYOVERCity\":\"Barcelona\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"},{\"originAirportName\":\"Barcelona Arpt\",\"destinationAirportName\":\"Ben Gurion Intl Arpt\",\"originCityName\":\"Barcelona\",\"originCountryName\":\"Spain\",\"destinationCityName\":\"Tel Aviv\",\"destinationCountryName\":\"Israel\",\"destinationAirportCode\":\"TLV\",\"destinationArrTime\":\"2022-11-13T04:05\",\"SegFlightNumber\":\"VY-7844\",\"AirlineCode\":\"VY\",\"AirlineName\":\"Vueling Airlines\",\"FareClass\":\"P\",\"originAirportCode\":\"BCN\",\"originDepTime\":\"2022-11-12T22:55\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":250,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"22:55\",\"strArrivalDtTime\":\"04:05\",\"FlightDuration\":\"4h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"FilterPrice\":\"55001-60000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"0N0\"}]}],\"FlightBookingDataInbound\":null}','2022-10-17 23:17:54'),(578,'cded6-db2d0-898c7-c41b2','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":0,\"FlightNumber\":\"202\",\"SegFlightNumberArr\":\"RA-202\",\"AirlineName\":\"Royal Nepal Airlines\",\"AirlineCode\":\"RA\",\"OrFlightNumber\":\"RA-202\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"AirlineSysId\":\"357\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-12-25T15:00\",\"LocalFromTime\":\"2022-12-25 15:00\",\"FromUTCTime\":\"2022-12-25T15:00\",\"LocalToTime\":\"2022-12-25 17:45\",\"ToUTCTime\":\"2022-12-25T17:45\",\"IsDirect\":0,\"FareClass\":\"B\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Sun, 25 Dec\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"13672\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"KTM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"cded6-db2d0-898c7-c41b2\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/RA.gif\"},\"destination\":{\"FlightNumber\":\"201\",\"SegFlightNumberArr\":\"RA-201\",\"AirlineName\":\"Royal Nepal Airlines\",\"AirlineCode\":\"RA\",\"DeFlightNumber\":\"RA-201\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"AirlineSysId\":\"357\",\"DepartureTime\":\"11:30\",\"ArrivalTime\":\"14:00\",\"TravelDate\":\"2022-12-28T11:30\",\"LocalFromTime\":\"2022-12-28 11:30\",\"FromUTCTime\":\"2022-12-28T11:30\",\"LocalToTime\":\"2022-12-28 14:00\",\"ToUTCTime\":\"2022-12-28T14:00\",\"IsDirect\":0,\"FareClass\":\"B\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Wed, 28 Dec\",\"ArrivalDateTxt\":\"Wed, 28 Dec\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"13672\",\"SourceAirportCode\":\"KTM\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"cded6-db2d0-898c7-c41b2\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/RA.gif\"},\"AirlineName\":\"Royal Nepal Airlines\",\"PublishedFare\":40055.17,\"PublishedFareTxt\":\"40,055\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"apiTraceId\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16150,\"Tax\":24854.8,\"YQTax\":1316,\"OtherCharges\":9694,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1450,\"CarrierMiscFee\":11520,\"MUFee\":804,\"intPublishedFare\":41004.8,\"PublishedFare\":40056,\"PublishedFarePerPax\":20028,\"OfferedFare\":38750.16,\"CommissionEarned\":1450.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-76.36,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":194.64,\"apiMarkup\":0,\"IntCommission\":29.01,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1081.36,\"GSTOnMarkUp\":194.64,\"CommEarned\":29.01,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":24854.8,\"BaseFareCal\":38944.8,\"BaseFare\":16150,\"CommissionEarned\":1450.64,\"TDS\":-76.36,\"MF\":60,\"YQ\":1316,\"AGST\":1450,\"MFT\":10.8,\"OT\":9694,\"MU\":804,\"YR\":11520,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":194.64,\"apiMarkup\":0,\"IntCommission\":29.01,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1081.36,\"GSTOnMarkUp\":194.64,\"CommEarned\":29.01,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":[]}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":null,\"IsCabinBaggage\":false,\"IsBaggage\":false,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1450.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":29.01,\"IntAgencyFixMarkUp\":1081.36,\"IntTaxOnAgencyFixMarkUp\":194.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":194.64,\"PublishFare\":40055.17,\"CostToCustomer\":40055.17,\"BaseFareCal\":38944.8,\"intCommisionEarnedForAgency\":1110.37,\"CostToCompany\":38944.8,\"intOfferedFare\":38750.16,\"intPublishFare\":41004.8,\"TripjackMarkup\":804,\"TripjackCommission\":1450.64,\"TripjackTDS\":\"76.36\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00X\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Tribuvan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kathmandu\",\"destinationCountryName\":\"Nepal\",\"destinationAirportCode\":\"KTM\",\"destinationArrTime\":\"2022-12-25T17:45\",\"SegFlightNumber\":\"RA-202\",\"AirlineCode\":\"RA\",\"AirlineName\":\"Royal Nepal Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-25T15:00\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/RA.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tribuvan Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kathmandu\",\"originCountryName\":\"Nepal\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-28T14:00\",\"SegFlightNumber\":\"RA-201\",\"AirlineCode\":\"RA\",\"AirlineName\":\"Royal Nepal Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"KTM\",\"originDepTime\":\"2022-12-28T11:30\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"14:00\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/RA.gif\"}],\"DepartureTime\":\"11:30\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"cded6-db2d0-898c7-c41b2\",\"keyIndex\":0,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":0,\"FlightNumber\":\"202\",\"SegFlightNumberArr\":\"RA-202\",\"AirlineName\":\"Royal Nepal Airlines\",\"AirlineCode\":\"RA\",\"OrFlightNumber\":\"RA-202\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"AirlineSysId\":\"357\",\"DepartureTime\":\"15:00\",\"ArrivalTime\":\"17:45\",\"TravelDate\":\"2022-12-25T15:00\",\"LocalFromTime\":\"2022-12-25 15:00\",\"FromUTCTime\":\"2022-12-25T15:00\",\"LocalToTime\":\"2022-12-25 17:45\",\"ToUTCTime\":\"2022-12-25T17:45\",\"IsDirect\":0,\"FareClass\":\"B\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Sun, 25 Dec\",\"FlightDuration\":\"2h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"13672\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"KTM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"cded6-db2d0-898c7-c41b2\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/RA.gif\"},\"destination\":{\"FlightNumber\":\"201\",\"SegFlightNumberArr\":\"RA-201\",\"AirlineName\":\"Royal Nepal Airlines\",\"AirlineCode\":\"RA\",\"DeFlightNumber\":\"RA-201\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"AirlineSysId\":\"357\",\"DepartureTime\":\"11:30\",\"ArrivalTime\":\"14:00\",\"TravelDate\":\"2022-12-28T11:30\",\"LocalFromTime\":\"2022-12-28 11:30\",\"FromUTCTime\":\"2022-12-28T11:30\",\"LocalToTime\":\"2022-12-28 14:00\",\"ToUTCTime\":\"2022-12-28T14:00\",\"IsDirect\":0,\"FareClass\":\"B\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":165,\"DepartureDateTxt\":\"Wed, 28 Dec\",\"ArrivalDateTxt\":\"Wed, 28 Dec\",\"FlightDuration\":\"2h 45m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"13672\",\"SourceAirportCode\":\"KTM\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"cded6-db2d0-898c7-c41b2\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/RA.gif\"},\"AirlineName\":\"Royal Nepal Airlines\",\"PublishedFare\":40055.17,\"PublishedFareTxt\":\"40,055\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"apiTraceId\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16150,\"Tax\":24854.8,\"YQTax\":1316,\"OtherCharges\":9694,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":1450,\"CarrierMiscFee\":11520,\"MUFee\":804,\"intPublishedFare\":41004.8,\"PublishedFare\":40056,\"PublishedFarePerPax\":20028,\"OfferedFare\":38750.16,\"CommissionEarned\":1450.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-76.36,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-8974289929_0BOMKTMRA202KTMBOMRA201_13611934819397\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":194.64,\"apiMarkup\":0,\"IntCommission\":29.01,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1081.36,\"GSTOnMarkUp\":194.64,\"CommEarned\":29.01,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":24854.8,\"BaseFareCal\":38944.8,\"BaseFare\":16150,\"CommissionEarned\":1450.64,\"TDS\":-76.36,\"MF\":60,\"YQ\":1316,\"AGST\":1450,\"MFT\":10.8,\"OT\":9694,\"MU\":804,\"YR\":11520,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":194.64,\"apiMarkup\":0,\"IntCommission\":29.01,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1081.36,\"GSTOnMarkUp\":194.64,\"CommEarned\":29.01,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":[]}],\"IsMealIncludes\":null,\"Baggage\":\"20 Kilograms\",\"CabinBaggage\":null,\"IsCabinBaggage\":false,\"IsBaggage\":false,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1450.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":29.01,\"IntAgencyFixMarkUp\":1081.36,\"IntTaxOnAgencyFixMarkUp\":194.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":194.64,\"PublishFare\":40055.17,\"CostToCustomer\":40055.17,\"BaseFareCal\":38944.8,\"intCommisionEarnedForAgency\":1110.37,\"CostToCompany\":38944.8,\"intOfferedFare\":38750.16,\"intPublishFare\":41004.8,\"TripjackMarkup\":804,\"TripjackCommission\":1450.64,\"TripjackTDS\":\"76.36\",\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Tribuvan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kathmandu\",\"destinationCountryName\":\"Nepal\",\"destinationAirportCode\":\"KTM\",\"destinationArrTime\":\"2022-12-25T17:45\",\"SegFlightNumber\":\"RA-202\",\"AirlineCode\":\"RA\",\"AirlineName\":\"Royal Nepal Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-25T15:00\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":150,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:00\",\"strArrivalDtTime\":\"17:45\",\"FlightDuration\":\"2h 30m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/RA.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Tribuvan Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kathmandu\",\"originCountryName\":\"Nepal\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-28T14:00\",\"SegFlightNumber\":\"RA-201\",\"AirlineCode\":\"RA\",\"AirlineName\":\"Royal Nepal Airlines\",\"FareClass\":\"B\",\"originAirportCode\":\"KTM\",\"originDepTime\":\"2022-12-28T11:30\",\"TripIndicator\":\"\",\"IsBaggage\":false,\"Baggage\":\"20 Kilograms\",\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"11:30\",\"strArrivalDtTime\":\"14:00\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/RA.gif\"}],\"DepartureTime\":\"11:30\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"cded6-db2d0-898c7-c41b2\",\"keyIndex\":0,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"$$hashKey\":\"00Z\"}]}],\"FlightBookingDataInbound\":null}','2022-10-20 12:40:38'),(579,'d9475-940ca-b47f5-c4503','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-61\",\"keyIndex\":153,\"SegFlightNumberArr\":\"6E-61\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0446832040_0BOMDXB6E61_16670674651683\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:35\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2022-11-16T18:35\",\"LocalFromTime\":\"2022-11-16 18:35\",\"FromUTCTime\":\"2022-11-16T18:35\",\"LocalToTime\":\"2022-11-16 20:25\",\"ToUTCTime\":\"2022-11-16T20:25\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Wed, 16 Nov\",\"ArrivalDateTxt\":\"Wed, 16 Nov\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":26705,\"PublishedFareTxt\":\"26,704\",\"ApiResultIndex\":\"5-0446832040_0BOMDXB6E61_16670674650063\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d9475-940ca-b47f5-c4503\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20550,\"Tax\":6252.94,\"YQTax\":0,\"OtherCharges\":5692,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":525.54,\"intPublishedFare\":26802.94,\"PublishedFare\":26705,\"PublishedFarePerPax\":13353,\"OfferedFare\":25935.76,\"CommissionEarned\":341.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-17.98,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0446832040_0BOMDXB6E61_16670674651683\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":116.17,\"apiMarkup\":0,\"IntCommission\":6.83,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":645.37,\"GSTOnMarkUp\":116.17,\"CommEarned\":6.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6252.94,\"BaseFareCal\":26051.93,\"BaseFare\":20550,\"CommissionEarned\":341.64,\"TDS\":-17.98,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5692,\"MU\":525.54,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":116.17,\"apiMarkup\":0,\"IntCommission\":6.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":645.37,\"GSTOnMarkUp\":116.17,\"CommEarned\":6.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":341.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.83,\"IntAgencyFixMarkUp\":645.37,\"IntTaxOnAgencyFixMarkUp\":116.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":116.17,\"PublishFare\":26704.13,\"CostToCustomer\":26704.13,\"BaseFareCal\":26051.93,\"intCommisionEarnedForAgency\":652.21,\"CostToCompany\":26051.93,\"intOfferedFare\":25935.76,\"intPublishFare\":26802.94,\"TripjackMarkup\":525.54,\"TripjackCommission\":341.64,\"TripjackTDS\":\"17.98\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"06D\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-16T20:25\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-16T18:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg (2 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[{\"FlightNumber\":\"6E-61\",\"keyIndex\":153,\"SegFlightNumberArr\":\"6E-61\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0446832040_0BOMDXB6E61_16670674650063\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"18:35\",\"ArrivalTime\":\"20:25\",\"TravelDate\":\"2022-11-16T18:35\",\"LocalFromTime\":\"2022-11-16 18:35\",\"FromUTCTime\":\"2022-11-16T18:35\",\"LocalToTime\":\"2022-11-16 20:25\",\"ToUTCTime\":\"2022-11-16T20:25\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":200,\"DepartureDateTxt\":\"Wed, 16 Nov\",\"ArrivalDateTxt\":\"Wed, 16 Nov\",\"FlightDuration\":\"3h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":26705,\"PublishedFareTxt\":\"26,704\",\"ApiResultIndex\":\"5-0446832040_0BOMDXB6E61_16670674650063\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d9475-940ca-b47f5-c4503\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20550,\"Tax\":6252.94,\"YQTax\":0,\"OtherCharges\":5692,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":525.54,\"intPublishedFare\":26802.94,\"PublishedFare\":26705,\"PublishedFarePerPax\":13353,\"OfferedFare\":25935.76,\"CommissionEarned\":341.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-17.98,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0446832040_0BOMDXB6E61_16670674651683\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":116.17,\"apiMarkup\":0,\"IntCommission\":6.83,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":645.37,\"GSTOnMarkUp\":116.17,\"CommEarned\":6.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6252.94,\"BaseFareCal\":26051.93,\"BaseFare\":20550,\"CommissionEarned\":341.64,\"TDS\":-17.98,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5692,\"MU\":525.54,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":116.17,\"apiMarkup\":0,\"IntCommission\":6.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":645.37,\"GSTOnMarkUp\":116.17,\"CommEarned\":6.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":341.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.83,\"IntAgencyFixMarkUp\":645.37,\"IntTaxOnAgencyFixMarkUp\":116.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":116.17,\"PublishFare\":26704.13,\"CostToCustomer\":26704.13,\"BaseFareCal\":26051.93,\"intCommisionEarnedForAgency\":652.21,\"CostToCompany\":26051.93,\"intOfferedFare\":25935.76,\"intPublishFare\":26802.94,\"TripjackMarkup\":525.54,\"TripjackCommission\":341.64,\"TripjackTDS\":\"17.98\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21950,\"Tax\":7174.46,\"YQTax\":0,\"OtherCharges\":6568,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":571.06,\"intPublishedFare\":29124.46,\"PublishedFare\":28205,\"PublishedFarePerPax\":14103,\"OfferedFare\":27615.02,\"CommissionEarned\":938.38,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-49.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0446832040_0BOMDXB6E61_16670674650063\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":87.11,\"apiMarkup\":0,\"IntCommission\":18.77,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":483.95,\"GSTOnMarkUp\":87.11,\"CommEarned\":18.77,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7174.46,\"BaseFareCal\":27702.13,\"BaseFare\":21950,\"CommissionEarned\":938.38,\"TDS\":-49.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":6568,\"MU\":571.06,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":87.11,\"apiMarkup\":0,\"IntCommission\":18.77,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":483.95,\"GSTOnMarkUp\":87.11,\"CommEarned\":18.77,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":938.38,\"IntCommissionValInPercentage\":2,\"IntCommission\":18.77,\"IntAgencyFixMarkUp\":483.95,\"IntTaxOnAgencyFixMarkUp\":87.11,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":87.11,\"PublishFare\":28204.85,\"CostToCustomer\":28204.85,\"BaseFareCal\":27702.13,\"intCommisionEarnedForAgency\":502.72,\"CostToCompany\":27702.13,\"intOfferedFare\":27615.02,\"intPublishFare\":29124.46,\"TripjackMarkup\":571.06,\"TripjackCommission\":938.38,\"TripjackTDS\":\"49.38\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":22550,\"Tax\":6394.94,\"YQTax\":0,\"OtherCharges\":5792,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":567.54,\"intPublishedFare\":28944.94,\"PublishedFare\":28814,\"PublishedFarePerPax\":14407,\"OfferedFare\":28002.52,\"CommissionEarned\":374.88,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0446832040_0BOMDXB6E61_16670674651253\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Flexi\",\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"FareClass\":\"Economy\",\"intTotalGST\":122.57,\"apiMarkup\":0,\"IntCommission\":7.5,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":680.97,\"GSTOnMarkUp\":122.57,\"CommEarned\":7.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6394.94,\"BaseFareCal\":28125.09,\"BaseFare\":22550,\"CommissionEarned\":374.88,\"TDS\":-19.74,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5792,\"MU\":567.54,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":122.57,\"apiMarkup\":0,\"IntCommission\":7.5,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":680.97,\"GSTOnMarkUp\":122.57,\"CommEarned\":7.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":374.88,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.5,\"IntAgencyFixMarkUp\":680.97,\"IntTaxOnAgencyFixMarkUp\":122.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":122.57,\"PublishFare\":28813.56,\"CostToCustomer\":28813.56,\"BaseFareCal\":28125.09,\"intCommisionEarnedForAgency\":688.46,\"CostToCompany\":28125.09,\"intOfferedFare\":28002.52,\"intPublishFare\":28944.94,\"TripjackMarkup\":567.54,\"TripjackCommission\":374.88,\"TripjackTDS\":\"19.74\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-16T20:25\",\"SegFlightNumber\":\"6E-61\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-16T18:35\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg (2 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"20:25\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[],\"$$hashKey\":\"06J\"}]}],\"FlightBookingDataInbound\":null}','2022-10-21 15:21:48'),(580,'07f47-c693c-357ff-42895','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-84\",\"keyIndex\":35,\"SegFlightNumberArr\":\"6E-84\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5871024515_0DXBBOM6E84_13803909086510\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"22:40\",\"TravelDate\":\"2022-10-21T17:55\",\"LocalFromTime\":\"2022-10-21 17:55\",\"FromUTCTime\":\"2022-10-21T17:55\",\"LocalToTime\":\"2022-10-21 22:40\",\"ToUTCTime\":\"2022-10-21T22:40\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Fri, 21 Oct\",\"ArrivalDateTxt\":\"Fri, 21 Oct\",\"FlightDuration\":\"3h 15m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":29136,\"PublishedFareTxt\":\"29,135\",\"ApiResultIndex\":\"5-5871024515_0DXBBOM6E84_13803909084880\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"07f47-c693c-357ff-42895\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":23340,\"Tax\":5939.5,\"YQTax\":0,\"OtherCharges\":5330,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":574.1,\"intPublishedFare\":29279.5,\"PublishedFare\":29136,\"PublishedFarePerPax\":14568,\"OfferedFare\":28317.38,\"CommissionEarned\":388.02,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-20.42,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5871024515_0DXBBOM6E84_13803909086510\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":123.57,\"apiMarkup\":0,\"IntCommission\":7.76,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":686.53,\"GSTOnMarkUp\":123.57,\"CommEarned\":7.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5939.5,\"BaseFareCal\":28440.95,\"BaseFare\":23340,\"CommissionEarned\":388.02,\"TDS\":-20.42,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5330,\"MU\":574.1,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":123.57,\"apiMarkup\":0,\"IntCommission\":7.76,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":686.53,\"GSTOnMarkUp\":123.57,\"CommEarned\":7.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":388.02,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.76,\"IntAgencyFixMarkUp\":686.53,\"IntTaxOnAgencyFixMarkUp\":123.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":123.57,\"PublishFare\":29135.24,\"CostToCustomer\":29135.24,\"BaseFareCal\":28440.95,\"intCommisionEarnedForAgency\":694.29,\"CostToCompany\":28440.95,\"intOfferedFare\":28317.38,\"intPublishFare\":29279.5,\"TripjackMarkup\":574.1,\"TripjackCommission\":388.02,\"TripjackTDS\":\"20.42\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"03J\"},\"Segments\":[{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-10-21T22:40\",\"SegFlightNumber\":\"6E-84\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-10-21T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg (2 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":195,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"22:40\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"30001-35000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[{\"FlightNumber\":\"6E-84\",\"keyIndex\":35,\"SegFlightNumberArr\":\"6E-84\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-5871024515_0DXBBOM6E84_13803909084880\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"22:40\",\"TravelDate\":\"2022-10-21T17:55\",\"LocalFromTime\":\"2022-10-21 17:55\",\"FromUTCTime\":\"2022-10-21T17:55\",\"LocalToTime\":\"2022-10-21 22:40\",\"ToUTCTime\":\"2022-10-21T22:40\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Fri, 21 Oct\",\"ArrivalDateTxt\":\"Fri, 21 Oct\",\"FlightDuration\":\"3h 15m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":29136,\"PublishedFareTxt\":\"29,135\",\"ApiResultIndex\":\"5-5871024515_0DXBBOM6E84_13803909084880\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"07f47-c693c-357ff-42895\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":23340,\"Tax\":5939.5,\"YQTax\":0,\"OtherCharges\":5330,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":574.1,\"intPublishedFare\":29279.5,\"PublishedFare\":29136,\"PublishedFarePerPax\":14568,\"OfferedFare\":28317.38,\"CommissionEarned\":388.02,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-20.42,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5871024515_0DXBBOM6E84_13803909086510\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":123.57,\"apiMarkup\":0,\"IntCommission\":7.76,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":686.53,\"GSTOnMarkUp\":123.57,\"CommEarned\":7.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5939.5,\"BaseFareCal\":28440.95,\"BaseFare\":23340,\"CommissionEarned\":388.02,\"TDS\":-20.42,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5330,\"MU\":574.1,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":123.57,\"apiMarkup\":0,\"IntCommission\":7.76,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":686.53,\"GSTOnMarkUp\":123.57,\"CommEarned\":7.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":388.02,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.76,\"IntAgencyFixMarkUp\":686.53,\"IntTaxOnAgencyFixMarkUp\":123.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":123.57,\"PublishFare\":29135.24,\"CostToCustomer\":29135.24,\"BaseFareCal\":28440.95,\"intCommisionEarnedForAgency\":694.29,\"CostToCompany\":28440.95,\"intOfferedFare\":28317.38,\"intPublishFare\":29279.5,\"TripjackMarkup\":574.1,\"TripjackCommission\":388.02,\"TripjackTDS\":\"20.42\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":24740,\"Tax\":6850.82,\"YQTax\":0,\"OtherCharges\":6196,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":619.42,\"intPublishedFare\":31590.82,\"PublishedFare\":30555,\"PublishedFarePerPax\":15278,\"OfferedFare\":29913.76,\"CommissionEarned\":1057.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-55.66,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5871024515_0DXBBOM6E84_13803909084880\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":94.49,\"apiMarkup\":0,\"IntCommission\":21.15,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":524.93,\"GSTOnMarkUp\":94.49,\"CommEarned\":21.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6850.82,\"BaseFareCal\":30008.25,\"BaseFare\":24740,\"CommissionEarned\":1057.64,\"TDS\":-55.66,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":6196,\"MU\":619.42,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":94.49,\"apiMarkup\":0,\"IntCommission\":21.15,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":524.93,\"GSTOnMarkUp\":94.49,\"CommEarned\":21.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1057.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":21.15,\"IntAgencyFixMarkUp\":524.93,\"IntTaxOnAgencyFixMarkUp\":94.49,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":94.49,\"PublishFare\":30554.33,\"CostToCustomer\":30554.33,\"BaseFareCal\":30008.25,\"intCommisionEarnedForAgency\":546.09,\"CostToCompany\":30008.25,\"intOfferedFare\":29913.76,\"intPublishFare\":31590.82,\"TripjackMarkup\":619.42,\"TripjackCommission\":1057.64,\"TripjackTDS\":\"55.66\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":25340,\"Tax\":5979.5,\"YQTax\":0,\"OtherCharges\":5330,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":614.1,\"intPublishedFare\":31319.5,\"PublishedFare\":31143,\"PublishedFarePerPax\":15572,\"OfferedFare\":30284.14,\"CommissionEarned\":421.26,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-22.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-5871024515_0DXBBOM6E84_13803909086130\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Flexi\",\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"FareClass\":\"Economy\",\"intTotalGST\":129.68,\"apiMarkup\":0,\"IntCommission\":8.43,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":720.42,\"GSTOnMarkUp\":129.68,\"CommEarned\":8.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5979.5,\"BaseFareCal\":30413.82,\"BaseFare\":25340,\"CommissionEarned\":421.26,\"TDS\":-22.18,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5330,\"MU\":614.1,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":129.68,\"apiMarkup\":0,\"IntCommission\":8.43,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":720.42,\"GSTOnMarkUp\":129.68,\"CommEarned\":8.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":421.26,\"IntCommissionValInPercentage\":2,\"IntCommission\":8.43,\"IntAgencyFixMarkUp\":720.42,\"IntTaxOnAgencyFixMarkUp\":129.68,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":129.68,\"PublishFare\":31142.67,\"CostToCustomer\":31142.67,\"BaseFareCal\":30413.82,\"intCommisionEarnedForAgency\":728.85,\"CostToCompany\":30413.82,\"intOfferedFare\":30284.14,\"intPublishFare\":31319.5,\"TripjackMarkup\":614.1,\"TripjackCommission\":421.26,\"TripjackTDS\":\"22.18\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-10-21T22:40\",\"SegFlightNumber\":\"6E-84\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-10-21T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg (2 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":195,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"22:40\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"30001-35000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[],\"$$hashKey\":\"03P\"}]}],\"FlightBookingDataInbound\":null}','2022-10-21 15:26:05'),(583,'17b89-ae06f-e63e5-8c251','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-911\",\"keyIndex\":4,\"SegFlightNumberArr\":\"AI-911\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-2-15-10-4686285089_4BOMDXBAI911_37077854284559\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"00:55\",\"ArrivalTime\":\"02:40\",\"TravelDate\":\"2022-11-17T00:55\",\"LocalFromTime\":\"2022-11-17 00:55\",\"FromUTCTime\":\"2022-11-17T00:55\",\"LocalToTime\":\"2022-11-17 02:40\",\"ToUTCTime\":\"2022-11-17T02:40\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Thu, 17 Nov\",\"FlightDuration\":\"3h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":26388,\"PublishedFareTxt\":\"26,387\",\"ApiResultIndex\":\"27-21-20-12-2-15-10-4686285089_4BOMDXBAI911_37077854284559\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"17b89-ae06f-e63e5-8c251\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20000,\"Tax\":6458.18,\"YQTax\":0,\"OtherCharges\":4694,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1010,\"CarrierMiscFee\":200,\"MUFee\":518.78,\"intPublishedFare\":26458.18,\"PublishedFare\":26388,\"PublishedFarePerPax\":13194,\"OfferedFare\":25626.36,\"CommissionEarned\":313.04,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-2-15-10-4686285089_4BOMDXBAI911_37077854284559\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":115.14,\"apiMarkup\":0,\"IntCommission\":6.26,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":639.64,\"GSTOnMarkUp\":115.14,\"CommEarned\":6.26,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":null,\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6458.18,\"BaseFareCal\":25741.5,\"BaseFare\":20000,\"CommissionEarned\":313.04,\"TDS\":-16.48,\"MF\":30,\"YQ\":0,\"AGST\":1010,\"MFT\":5.4,\"OT\":4694,\"MU\":518.78,\"YR\":200,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":115.14,\"apiMarkup\":0,\"IntCommission\":6.26,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":639.64,\"GSTOnMarkUp\":115.14,\"CommEarned\":6.26,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":[]}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":313.04,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.26,\"IntAgencyFixMarkUp\":639.64,\"IntTaxOnAgencyFixMarkUp\":115.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":115.14,\"PublishFare\":26387.4,\"CostToCustomer\":26387.4,\"BaseFareCal\":25741.5,\"intCommisionEarnedForAgency\":645.9,\"CostToCompany\":25741.5,\"intOfferedFare\":25626.36,\"intPublishFare\":26458.18,\"TripjackMarkup\":518.78,\"TripjackCommission\":313.04,\"TripjackTDS\":\"16.48\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"05S\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-17T02:40\",\"SegFlightNumber\":\"AI-911\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-17T00:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":195,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:55\",\"strArrivalDtTime\":\"02:40\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"AI-911\",\"keyIndex\":4,\"SegFlightNumberArr\":\"AI-911\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-2-15-10-4686285089_4BOMDXBAI911_37077854284559\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"00:55\",\"ArrivalTime\":\"02:40\",\"TravelDate\":\"2022-11-17T00:55\",\"LocalFromTime\":\"2022-11-17 00:55\",\"FromUTCTime\":\"2022-11-17T00:55\",\"LocalToTime\":\"2022-11-17 02:40\",\"ToUTCTime\":\"2022-11-17T02:40\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":195,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Thu, 17 Nov\",\"FlightDuration\":\"3h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":26388,\"PublishedFareTxt\":\"26,387\",\"ApiResultIndex\":\"27-21-20-12-2-15-10-4686285089_4BOMDXBAI911_37077854284559\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"17b89-ae06f-e63e5-8c251\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20000,\"Tax\":6458.18,\"YQTax\":0,\"OtherCharges\":4694,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1010,\"CarrierMiscFee\":200,\"MUFee\":518.78,\"intPublishedFare\":26458.18,\"PublishedFare\":26388,\"PublishedFarePerPax\":13194,\"OfferedFare\":25626.36,\"CommissionEarned\":313.04,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-2-15-10-4686285089_4BOMDXBAI911_37077854284559\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":115.14,\"apiMarkup\":0,\"IntCommission\":6.26,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":639.64,\"GSTOnMarkUp\":115.14,\"CommEarned\":6.26,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":null,\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6458.18,\"BaseFareCal\":25741.5,\"BaseFare\":20000,\"CommissionEarned\":313.04,\"TDS\":-16.48,\"MF\":30,\"YQ\":0,\"AGST\":1010,\"MFT\":5.4,\"OT\":4694,\"MU\":518.78,\"YR\":200,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":115.14,\"apiMarkup\":0,\"IntCommission\":6.26,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":639.64,\"GSTOnMarkUp\":115.14,\"CommEarned\":6.26,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":[]}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":313.04,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.26,\"IntAgencyFixMarkUp\":639.64,\"IntTaxOnAgencyFixMarkUp\":115.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":115.14,\"PublishFare\":26387.4,\"CostToCustomer\":26387.4,\"BaseFareCal\":25741.5,\"intCommisionEarnedForAgency\":645.9,\"CostToCompany\":25741.5,\"intOfferedFare\":25626.36,\"intPublishFare\":26458.18,\"TripjackMarkup\":518.78,\"TripjackCommission\":313.04,\"TripjackTDS\":\"16.48\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-17T02:40\",\"SegFlightNumber\":\"AI-911\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-17T00:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":195,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"00:55\",\"strArrivalDtTime\":\"02:40\",\"FlightDuration\":\"3h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"05U\"}]}],\"FlightBookingDataInbound\":null}','2022-10-21 15:35:39'),(584,'421ad-b45ab-d22cb-b248b','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-621\",\"keyIndex\":6,\"SegFlightNumberArr\":\"UK-621\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-6686233714_0BOMVNSUK621_46226905934646\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:20\",\"ArrivalTime\":\"15:35\",\"TravelDate\":\"2022-11-02T13:20\",\"LocalFromTime\":\"2022-11-02 13:20\",\"FromUTCTime\":\"2022-11-02T13:20\",\"LocalToTime\":\"2022-11-02 15:35\",\"ToUTCTime\":\"2022-11-02T15:35\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 02 Nov\",\"ArrivalDateTxt\":\"Wed, 02 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"28449\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"VNS\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6516,\"PublishedFareTxt\":\"6,516\",\"ApiResultIndex\":\"21-10-15-2-6686233714_0BOMVNSUK621_46226905933966\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"421ad-b45ab-d22cb-b248b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5770,\"Tax\":952.51,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":295,\"CarrierMiscFee\":130,\"MUFee\":131.81,\"intPublishedFare\":6722.51,\"PublishedFare\":6516,\"PublishedFarePerPax\":6516,\"OfferedFare\":6139.16,\"CommissionEarned\":451.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.77,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-6686233714_0BOMVNSUK621_46226905934646\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":56.11,\"apiMarkup\":0,\"IntCommission\":9.03,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":311.7,\"GSTOnMarkUp\":56.11,\"CommEarned\":9.03,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":952.51,\"BaseFareCal\":6195.27,\"BaseFare\":5770,\"CommissionEarned\":451.54,\"TDS\":-23.77,\"MF\":15,\"YQ\":0,\"AGST\":295,\"MFT\":2.7,\"OT\":378,\"MU\":131.81,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.11,\"apiMarkup\":0,\"IntCommission\":9.03,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":311.7,\"GSTOnMarkUp\":56.11,\"CommEarned\":9.03,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":451.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":9.03,\"IntAgencyFixMarkUp\":311.7,\"IntTaxOnAgencyFixMarkUp\":56.11,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.11,\"PublishFare\":6516,\"CostToCustomer\":6516,\"BaseFareCal\":6195.27,\"intCommisionEarnedForAgency\":320.73,\"CostToCompany\":6195.27,\"intOfferedFare\":6139.16,\"intPublishFare\":6722.51,\"TripjackMarkup\":131.81,\"TripjackCommission\":451.54,\"TripjackTDS\":\"23.77\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02M\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-11-02T15:35\",\"SegFlightNumber\":\"UK-621\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"P\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-02T13:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:20\",\"strArrivalDtTime\":\"15:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"$$hashKey\":\"1DK\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-21 23:09:29'),(586,'40513-7b05c-0f479-2f1d8','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-621\",\"keyIndex\":6,\"SegFlightNumberArr\":\"UK-621\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7494276146_0BOMVNSUK621_27039521886878\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"13:20\",\"ArrivalTime\":\"15:35\",\"TravelDate\":\"2022-11-02T13:20\",\"LocalFromTime\":\"2022-11-02 13:20\",\"FromUTCTime\":\"2022-11-02T13:20\",\"LocalToTime\":\"2022-11-02 15:35\",\"ToUTCTime\":\"2022-11-02T15:35\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Wed, 02 Nov\",\"ArrivalDateTxt\":\"Wed, 02 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"28449\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"VNS\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6516,\"PublishedFareTxt\":\"6,516\",\"ApiResultIndex\":\"21-10-15-2-7494276146_0BOMVNSUK621_27039521886168\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"40513-7b05c-0f479-2f1d8\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5770,\"Tax\":952.51,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":295,\"CarrierMiscFee\":130,\"MUFee\":131.81,\"intPublishedFare\":6722.51,\"PublishedFare\":6516,\"PublishedFarePerPax\":6516,\"OfferedFare\":6139.16,\"CommissionEarned\":451.54,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.77,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-7494276146_0BOMVNSUK621_27039521886878\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":56.11,\"apiMarkup\":0,\"IntCommission\":9.03,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":311.7,\"GSTOnMarkUp\":56.11,\"CommEarned\":9.03,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":952.51,\"BaseFareCal\":6195.27,\"BaseFare\":5770,\"CommissionEarned\":451.54,\"TDS\":-23.77,\"MF\":15,\"YQ\":0,\"AGST\":295,\"MFT\":2.7,\"OT\":378,\"MU\":131.81,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.11,\"apiMarkup\":0,\"IntCommission\":9.03,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":311.7,\"GSTOnMarkUp\":56.11,\"CommEarned\":9.03,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":451.54,\"IntCommissionValInPercentage\":2,\"IntCommission\":9.03,\"IntAgencyFixMarkUp\":311.7,\"IntTaxOnAgencyFixMarkUp\":56.11,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.11,\"PublishFare\":6516,\"CostToCustomer\":6516,\"BaseFareCal\":6195.27,\"intCommisionEarnedForAgency\":320.73,\"CostToCompany\":6195.27,\"intOfferedFare\":6139.16,\"intPublishFare\":6722.51,\"TripjackMarkup\":131.81,\"TripjackCommission\":451.54,\"TripjackTDS\":\"23.77\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"036\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-11-02T15:35\",\"SegFlightNumber\":\"UK-621\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"P\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-02T13:20\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:20\",\"strArrivalDtTime\":\"15:35\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"$$hashKey\":\"0D1\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-22 12:48:32'),(588,'d04c3-a48ba-1ad62-a8086','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-691\",\"keyIndex\":36,\"SegFlightNumberArr\":\"AI-691, AI-933\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":false,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-2-15-10-3380578506_36BOMCOKAI691COKDXBAI933_6815886006346\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"12:30\",\"TravelDate\":\"2022-11-17T05:30\",\"LocalFromTime\":\"2022-11-17 05:30\",\"FromUTCTime\":\"2022-11-17T05:30\",\"LocalToTime\":\"2022-11-17 12:30\",\"ToUTCTime\":\"2022-11-17T12:30\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"Kochi\",\"GroundTime\":145,\"LAYOVERDuration\":\"2h 25m\",\"FlyingMinutes\":510,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Thu, 17 Nov\",\"FlightDuration\":\"8h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":29545,\"PublishedFareTxt\":\"29,544\",\"ApiResultIndex\":\"27-21-20-12-2-15-10-3380578506_36BOMCOKAI691COKDXBAI933_6815886006346\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d04c3-a48ba-1ad62-a8086\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":24000,\"Tax\":5667.1,\"YQTax\":0,\"OtherCharges\":3282,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1228,\"CarrierMiscFee\":540,\"MUFee\":581.7,\"intPublishedFare\":29667.1,\"PublishedFare\":29545,\"PublishedFarePerPax\":14773,\"OfferedFare\":28719.42,\"CommissionEarned\":365.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-2-15-10-3380578506_36BOMCOKAI691COKDXBAI933_6815886006346\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":124.73,\"apiMarkup\":0,\"IntCommission\":7.32,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":692.97,\"GSTOnMarkUp\":124.73,\"CommEarned\":7.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":false,\"IsCabinBaggage\":false,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":null,\"IsMealIncludes\":null,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5667.1,\"BaseFareCal\":28844.15,\"BaseFare\":24000,\"CommissionEarned\":365.98,\"TDS\":-19.26,\"MF\":30,\"YQ\":0,\"AGST\":1228,\"MFT\":5.4,\"OT\":3282,\"MU\":581.7,\"YR\":540,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":124.73,\"apiMarkup\":0,\"IntCommission\":7.32,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":692.97,\"GSTOnMarkUp\":124.73,\"CommEarned\":7.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kilograms\",\"CabinBaggage\":[]}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":365.98,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.32,\"IntAgencyFixMarkUp\":692.97,\"IntTaxOnAgencyFixMarkUp\":124.73,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":124.73,\"PublishFare\":29544.44,\"CostToCustomer\":29544.44,\"BaseFareCal\":28844.15,\"intCommisionEarnedForAgency\":700.29,\"CostToCompany\":28844.15,\"intOfferedFare\":28719.42,\"intPublishFare\":29667.1,\"TripjackMarkup\":581.7,\"TripjackCommission\":365.98,\"TripjackTDS\":\"19.26\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2022-11-17T07:30\",\"SegFlightNumber\":\"AI-691\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-17T05:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":120,\"GroundTime\":145,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"07:30\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"2h 25m\",\"LAYOVERCity\":\"Kochi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-17T12:30\",\"SegFlightNumber\":\"AI-933\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"Q\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2022-11-17T09:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":false,\"IsCabinBaggage\":false,\"CabinBaggage\":null,\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"09:55\",\"strArrivalDtTime\":\"12:30\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"046\"}],\"FlightBookingDataInbound\":null}','2022-10-22 12:55:05'),(589,'d5093-95d8d-d446b-56032','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-63\",\"keyIndex\":141,\"SegFlightNumberArr\":\"6E-63\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1541937082_3BOMDXB6E63_14526320231754\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:30\",\"ArrivalTime\":\"10:25\",\"TravelDate\":\"2022-11-15T08:30\",\"LocalFromTime\":\"2022-11-15 08:30\",\"FromUTCTime\":\"2022-11-15T08:30\",\"LocalToTime\":\"2022-11-15 10:25\",\"ToUTCTime\":\"2022-11-15T10:25\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":205,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"3h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":25367,\"PublishedFareTxt\":\"25,366\",\"ApiResultIndex\":\"5-1541937082_3BOMDXB6E63_14526320231444\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d5093-95d8d-d446b-56032\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":19280,\"Tax\":6164.3,\"YQTax\":0,\"OtherCharges\":5630,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":498.9,\"intPublishedFare\":25444.3,\"PublishedFare\":25367,\"PublishedFarePerPax\":12684,\"OfferedFare\":24624.88,\"CommissionEarned\":320.52,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.88,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1541937082_3BOMDXB6E63_14526320231754\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":112.1,\"apiMarkup\":0,\"IntCommission\":6.41,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":622.8,\"GSTOnMarkUp\":112.1,\"CommEarned\":6.41,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6164.3,\"BaseFareCal\":24736.98,\"BaseFare\":19280,\"CommissionEarned\":320.52,\"TDS\":-16.88,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5630,\"MU\":498.9,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":112.1,\"apiMarkup\":0,\"IntCommission\":6.41,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":622.8,\"GSTOnMarkUp\":112.1,\"CommEarned\":6.41,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":320.52,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.41,\"IntAgencyFixMarkUp\":622.8,\"IntTaxOnAgencyFixMarkUp\":112.1,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":112.1,\"PublishFare\":25366.19,\"CostToCustomer\":25366.19,\"BaseFareCal\":24736.98,\"intCommisionEarnedForAgency\":629.21,\"CostToCompany\":24736.98,\"intOfferedFare\":24624.88,\"intPublishFare\":25444.3,\"TripjackMarkup\":498.9,\"TripjackCommission\":320.52,\"TripjackTDS\":\"16.88\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"05Z\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-15T10:25\",\"SegFlightNumber\":\"6E-63\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg (2 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"6E-63\",\"keyIndex\":141,\"SegFlightNumberArr\":\"6E-63\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1541937082_3BOMDXB6E63_14526320231444\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:30\",\"ArrivalTime\":\"10:25\",\"TravelDate\":\"2022-11-15T08:30\",\"LocalFromTime\":\"2022-11-15 08:30\",\"FromUTCTime\":\"2022-11-15T08:30\",\"LocalToTime\":\"2022-11-15 10:25\",\"ToUTCTime\":\"2022-11-15T10:25\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":205,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"3h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":25367,\"PublishedFareTxt\":\"25,366\",\"ApiResultIndex\":\"5-1541937082_3BOMDXB6E63_14526320231444\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d5093-95d8d-d446b-56032\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":19280,\"Tax\":6164.3,\"YQTax\":0,\"OtherCharges\":5630,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":498.9,\"intPublishedFare\":25444.3,\"PublishedFare\":25367,\"PublishedFarePerPax\":12684,\"OfferedFare\":24624.88,\"CommissionEarned\":320.52,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.88,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1541937082_3BOMDXB6E63_14526320231754\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":112.1,\"apiMarkup\":0,\"IntCommission\":6.41,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":622.8,\"GSTOnMarkUp\":112.1,\"CommEarned\":6.41,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6164.3,\"BaseFareCal\":24736.98,\"BaseFare\":19280,\"CommissionEarned\":320.52,\"TDS\":-16.88,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5630,\"MU\":498.9,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":112.1,\"apiMarkup\":0,\"IntCommission\":6.41,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":622.8,\"GSTOnMarkUp\":112.1,\"CommEarned\":6.41,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":320.52,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.41,\"IntAgencyFixMarkUp\":622.8,\"IntTaxOnAgencyFixMarkUp\":112.1,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":112.1,\"PublishFare\":25366.19,\"CostToCustomer\":25366.19,\"BaseFareCal\":24736.98,\"intCommisionEarnedForAgency\":629.21,\"CostToCompany\":24736.98,\"intOfferedFare\":24624.88,\"intPublishFare\":25444.3,\"TripjackMarkup\":498.9,\"TripjackCommission\":320.52,\"TripjackTDS\":\"16.88\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":20680,\"Tax\":7038.9,\"YQTax\":0,\"OtherCharges\":6460,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":543.5,\"intPublishedFare\":27718.9,\"PublishedFare\":26853,\"PublishedFarePerPax\":13427,\"OfferedFare\":26291.32,\"CommissionEarned\":884.08,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-46.52,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1541937082_3BOMDXB6E63_14526320231444\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":82.91,\"apiMarkup\":0,\"IntCommission\":17.68,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":460.59,\"GSTOnMarkUp\":82.91,\"CommEarned\":17.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":7038.9,\"BaseFareCal\":26374.23,\"BaseFare\":20680,\"CommissionEarned\":884.08,\"TDS\":-46.52,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":6460,\"MU\":543.5,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":82.91,\"apiMarkup\":0,\"IntCommission\":17.68,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":460.59,\"GSTOnMarkUp\":82.91,\"CommEarned\":17.68,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":884.08,\"IntCommissionValInPercentage\":2,\"IntCommission\":17.68,\"IntAgencyFixMarkUp\":460.59,\"IntTaxOnAgencyFixMarkUp\":82.91,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":82.91,\"PublishFare\":26852.5,\"CostToCustomer\":26852.5,\"BaseFareCal\":26374.23,\"intCommisionEarnedForAgency\":478.27,\"CostToCompany\":26374.23,\"intOfferedFare\":26291.32,\"intPublishFare\":27718.9,\"TripjackMarkup\":543.5,\"TripjackCommission\":884.08,\"TripjackTDS\":\"46.52\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":21280,\"Tax\":6306.3,\"YQTax\":0,\"OtherCharges\":5730,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":540.9,\"intPublishedFare\":27586.3,\"PublishedFare\":27476,\"PublishedFarePerPax\":13738,\"OfferedFare\":26691.62,\"CommissionEarned\":353.78,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-18.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1541937082_3BOMDXB6E63_14526320231594\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Flexi\",\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"FareClass\":\"Economy\",\"intTotalGST\":118.51,\"apiMarkup\":0,\"IntCommission\":7.08,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":658.39,\"GSTOnMarkUp\":118.51,\"CommEarned\":7.08,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6306.3,\"BaseFareCal\":26810.13,\"BaseFare\":21280,\"CommissionEarned\":353.78,\"TDS\":-18.62,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5730,\"MU\":540.9,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":118.51,\"apiMarkup\":0,\"IntCommission\":7.08,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":658.39,\"GSTOnMarkUp\":118.51,\"CommEarned\":7.08,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":353.78,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.08,\"IntAgencyFixMarkUp\":658.39,\"IntTaxOnAgencyFixMarkUp\":118.51,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":118.51,\"PublishFare\":27475.6,\"CostToCustomer\":27475.6,\"BaseFareCal\":26810.13,\"intCommisionEarnedForAgency\":665.47,\"CostToCompany\":26810.13,\"intOfferedFare\":26691.62,\"intPublishFare\":27586.3,\"TripjackMarkup\":540.9,\"TripjackCommission\":353.78,\"TripjackTDS\":\"18.62\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-15T10:25\",\"SegFlightNumber\":\"6E-63\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T08:30\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg (2 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"08:30\",\"strArrivalDtTime\":\"10:25\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"065\"}]}],\"FlightBookingDataInbound\":null}','2022-10-22 14:50:17'),(590,'53180-9c923-c4b29-930d7','{\"FlightBookingData\":[{\"FlightNumber\":\"G9-401\",\"keyIndex\":136,\"SegFlightNumberArr\":\"G9-401\",\"AirlineName\":\"Air arabia\",\"AirlineCode\":\"G9\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"7-2582417840_0SHJBOMG9401_190287946585465\",\"AirlineSysId\":\"18\",\"DepartureTime\":\"16:15\",\"ArrivalTime\":\"20:45\",\"TravelDate\":\"2022-11-18T16:15\",\"LocalFromTime\":\"2022-11-18 16:15\",\"FromUTCTime\":\"2022-11-18T16:15\",\"LocalToTime\":\"2022-11-18 20:45\",\"ToUTCTime\":\"2022-11-18T20:45\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Fri, 18 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"SHJ\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":21005,\"PublishedFareTxt\":\"21,005\",\"ApiResultIndex\":\"7-2582417840_0SHJBOMG9401_190287946585465\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"53180-9c923-c4b29-930d7\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G9.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":91.62,\"Tax\":20677.38,\"YQTax\":14656.06,\"OtherCharges\":5496.08,\"Discount\":0,\"ServiceFee\":100,\"ManagementFeeTax\":18,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":407.24,\"intPublishedFare\":20769,\"PublishedFare\":21005,\"PublishedFarePerPax\":10503,\"OfferedFare\":20361.76,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"7-2582417840_0SHJBOMG9401_190287946585465\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":98.12,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":545.12,\"GSTOnMarkUp\":98.12,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"Paid Baggage as per airlines policy\",\"CabinBaggage\":\"Paid Baggage as per airlines policy\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":20677.38,\"BaseFareCal\":20459.88,\"BaseFare\":91.62,\"CommissionEarned\":0,\"TDS\":0,\"MF\":100,\"YQ\":14656.06,\"AGST\":0,\"MFT\":18,\"OT\":5496.08,\"MU\":407.24,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":98.12,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":545.12,\"GSTOnMarkUp\":98.12,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"Paid Baggage as per airlines policy\",\"CabinBaggage\":\"Paid Baggage as per airlines policy\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":545.12,\"IntTaxOnAgencyFixMarkUp\":98.12,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":98.12,\"PublishFare\":21005,\"CostToCustomer\":21005,\"BaseFareCal\":20459.88,\"intCommisionEarnedForAgency\":545.12,\"CostToCompany\":20459.88,\"intOfferedFare\":20361.76,\"intPublishFare\":20769,\"TripjackMarkup\":407.24,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"05N\"},\"Segments\":[{\"originAirportName\":\"Sharjah Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Sharjah\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-18T20:45\",\"SegFlightNumber\":\"G9-401\",\"AirlineCode\":\"G9\",\"AirlineName\":\"Air Arabia\",\"FareClass\":\"P\",\"originAirportCode\":\"SHJ\",\"originDepTime\":\"2022-11-18T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"Paid Baggage as per airlines policy\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"Paid Baggage as per airlines policy\",\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"20:45\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G9.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[{\"FlightNumber\":\"G9-401\",\"keyIndex\":136,\"SegFlightNumberArr\":\"G9-401\",\"AirlineName\":\"Air arabia\",\"AirlineCode\":\"G9\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"7-2582417840_0SHJBOMG9401_190287946585465\",\"AirlineSysId\":\"18\",\"DepartureTime\":\"16:15\",\"ArrivalTime\":\"20:45\",\"TravelDate\":\"2022-11-18T16:15\",\"LocalFromTime\":\"2022-11-18 16:15\",\"FromUTCTime\":\"2022-11-18T16:15\",\"LocalToTime\":\"2022-11-18 20:45\",\"ToUTCTime\":\"2022-11-18T20:45\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Fri, 18 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"SHJ\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":21005,\"PublishedFareTxt\":\"21,005\",\"ApiResultIndex\":\"7-2582417840_0SHJBOMG9401_190287946585465\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"53180-9c923-c4b29-930d7\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G9.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":91.62,\"Tax\":20677.38,\"YQTax\":14656.06,\"OtherCharges\":5496.08,\"Discount\":0,\"ServiceFee\":100,\"ManagementFeeTax\":18,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":407.24,\"intPublishedFare\":20769,\"PublishedFare\":21005,\"PublishedFarePerPax\":10503,\"OfferedFare\":20361.76,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"7-2582417840_0SHJBOMG9401_190287946585465\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":98.12,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":545.12,\"GSTOnMarkUp\":98.12,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"Paid Baggage as per airlines policy\",\"CabinBaggage\":\"Paid Baggage as per airlines policy\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":20677.38,\"BaseFareCal\":20459.88,\"BaseFare\":91.62,\"CommissionEarned\":0,\"TDS\":0,\"MF\":100,\"YQ\":14656.06,\"AGST\":0,\"MFT\":18,\"OT\":5496.08,\"MU\":407.24,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":98.12,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":545.12,\"GSTOnMarkUp\":98.12,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"Paid Baggage as per airlines policy\",\"CabinBaggage\":\"Paid Baggage as per airlines policy\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":545.12,\"IntTaxOnAgencyFixMarkUp\":98.12,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":98.12,\"PublishFare\":21005,\"CostToCustomer\":21005,\"BaseFareCal\":20459.88,\"intCommisionEarnedForAgency\":545.12,\"CostToCompany\":20459.88,\"intOfferedFare\":20361.76,\"intPublishFare\":20769,\"TripjackMarkup\":407.24,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Sharjah Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Sharjah\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-18T20:45\",\"SegFlightNumber\":\"G9-401\",\"AirlineCode\":\"G9\",\"AirlineName\":\"Air Arabia\",\"FareClass\":\"P\",\"originAirportCode\":\"SHJ\",\"originDepTime\":\"2022-11-18T16:15\",\"TripIndicator\":\"\",\"Baggage\":\"Paid Baggage as per airlines policy\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"Paid Baggage as per airlines policy\",\"IsMealIncludes\":false,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:15\",\"strArrivalDtTime\":\"20:45\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G9.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[],\"$$hashKey\":\"05P\"}]}],\"FlightBookingDataInbound\":null}','2022-10-22 15:09:11'),(591,'daf14-b8d45-356d8-25ce4','{\"FlightBookingData\":[{\"FlightNumber\":\"G9-406\",\"keyIndex\":164,\"SegFlightNumberArr\":\"G9-406\",\"AirlineName\":\"Air arabia\",\"AirlineCode\":\"G9\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"7-1945365410_0BOMSHJG9406_28173507453390\",\"AirlineSysId\":\"18\",\"DepartureTime\":\"04:55\",\"ArrivalTime\":\"06:35\",\"TravelDate\":\"2022-11-15T04:55\",\"LocalFromTime\":\"2022-11-15 04:55\",\"FromUTCTime\":\"2022-11-15T04:55\",\"LocalToTime\":\"2022-11-15 06:35\",\"ToUTCTime\":\"2022-11-15T06:35\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":27219,\"PublishedFareTxt\":\"27,218\",\"ApiResultIndex\":\"7-1945365410_0BOMSHJG9406_28173507453390\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"daf14-b8d45-356d8-25ce4\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G9.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5016.94,\"Tax\":21965.3,\"YQTax\":14656.06,\"OtherCharges\":5679.3,\"Discount\":0,\"ServiceFee\":100,\"ManagementFeeTax\":18,\"AirlineGSTComponent\":982.88,\"CarrierMiscFee\":0,\"MUFee\":529.06,\"intPublishedFare\":26982.24,\"PublishedFare\":27219,\"PublishedFarePerPax\":13610,\"OfferedFare\":26453.18,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"7-1945365410_0BOMSHJG9406_28173507453390\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":116.7,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":648.36,\"GSTOnMarkUp\":116.7,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"Paid Baggage as per airlines policy\",\"CabinBaggage\":\"Paid Baggage as per airlines policy\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":21965.3,\"BaseFareCal\":26569.88,\"BaseFare\":5016.94,\"CommissionEarned\":0,\"TDS\":0,\"MF\":100,\"YQ\":14656.06,\"AGST\":982.88,\"MFT\":18,\"OT\":5679.3,\"MU\":529.06,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":116.7,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":648.36,\"GSTOnMarkUp\":116.7,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"Paid Baggage as per airlines policy\",\"CabinBaggage\":\"Paid Baggage as per airlines policy\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":648.36,\"IntTaxOnAgencyFixMarkUp\":116.7,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":116.7,\"PublishFare\":27218.24,\"CostToCustomer\":27218.24,\"BaseFareCal\":26569.88,\"intCommisionEarnedForAgency\":648.36,\"CostToCompany\":26569.88,\"intOfferedFare\":26453.18,\"intPublishFare\":26982.24,\"TripjackMarkup\":529.06,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"085\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-11-15T06:35\",\"SegFlightNumber\":\"G9-406\",\"AirlineCode\":\"G9\",\"AirlineName\":\"Air Arabia\",\"FareClass\":\"P\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"Paid Baggage as per airlines policy\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"Paid Baggage as per airlines policy\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:35\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G9.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"G9-406\",\"keyIndex\":164,\"SegFlightNumberArr\":\"G9-406\",\"AirlineName\":\"Air arabia\",\"AirlineCode\":\"G9\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"7-1945365410_0BOMSHJG9406_28173507453390\",\"AirlineSysId\":\"18\",\"DepartureTime\":\"04:55\",\"ArrivalTime\":\"06:35\",\"TravelDate\":\"2022-11-15T04:55\",\"LocalFromTime\":\"2022-11-15 04:55\",\"FromUTCTime\":\"2022-11-15T04:55\",\"LocalToTime\":\"2022-11-15 06:35\",\"ToUTCTime\":\"2022-11-15T06:35\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":190,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"3h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"SHJ\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":27219,\"PublishedFareTxt\":\"27,218\",\"ApiResultIndex\":\"7-1945365410_0BOMSHJG9406_28173507453390\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"daf14-b8d45-356d8-25ce4\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G9.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5016.94,\"Tax\":21965.3,\"YQTax\":14656.06,\"OtherCharges\":5679.3,\"Discount\":0,\"ServiceFee\":100,\"ManagementFeeTax\":18,\"AirlineGSTComponent\":982.88,\"CarrierMiscFee\":0,\"MUFee\":529.06,\"intPublishedFare\":26982.24,\"PublishedFare\":27219,\"PublishedFarePerPax\":13610,\"OfferedFare\":26453.18,\"CommissionEarned\":0,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":0,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"7-1945365410_0BOMSHJG9406_28173507453390\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":116.7,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":648.36,\"GSTOnMarkUp\":116.7,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"Paid Baggage as per airlines policy\",\"CabinBaggage\":\"Paid Baggage as per airlines policy\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":21965.3,\"BaseFareCal\":26569.88,\"BaseFare\":5016.94,\"CommissionEarned\":0,\"TDS\":0,\"MF\":100,\"YQ\":14656.06,\"AGST\":982.88,\"MFT\":18,\"OT\":5679.3,\"MU\":529.06,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":116.7,\"apiMarkup\":0,\"IntCommission\":0,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":648.36,\"GSTOnMarkUp\":116.7,\"CommEarned\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"Paid Baggage as per airlines policy\",\"CabinBaggage\":\"Paid Baggage as per airlines policy\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":0,\"IntCommissionValInPercentage\":2,\"IntCommission\":0,\"IntAgencyFixMarkUp\":648.36,\"IntTaxOnAgencyFixMarkUp\":116.7,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":116.7,\"PublishFare\":27218.24,\"CostToCustomer\":27218.24,\"BaseFareCal\":26569.88,\"intCommisionEarnedForAgency\":648.36,\"CostToCompany\":26569.88,\"intOfferedFare\":26453.18,\"intPublishFare\":26982.24,\"TripjackMarkup\":529.06,\"TripjackCommission\":0,\"TripjackTDS\":\"0\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sharjah Airport\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Sharjah\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"SHJ\",\"destinationArrTime\":\"2022-11-15T06:35\",\"SegFlightNumber\":\"G9-406\",\"AirlineCode\":\"G9\",\"AirlineName\":\"Air Arabia\",\"FareClass\":\"P\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"Paid Baggage as per airlines policy\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"Paid Baggage as per airlines policy\",\"IsMealIncludes\":false,\"Duration\":190,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:35\",\"FlightDuration\":\"3h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G9.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"087\"}]}],\"FlightBookingDataInbound\":null}','2022-10-25 15:13:22'),(592,'9cf9b-21fda-a4421-9abbc','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-14\",\"keyIndex\":110,\"SegFlightNumberArr\":\"SG-14\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5197403735_0DXBBOMSG14_24955185538635\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"01:55\",\"ArrivalTime\":\"06:25\",\"TravelDate\":\"2022-11-18T01:55\",\"LocalFromTime\":\"2022-11-18 01:55\",\"FromUTCTime\":\"2022-11-18T01:55\",\"LocalToTime\":\"2022-11-18 06:25\",\"ToUTCTime\":\"2022-11-18T06:25\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Fri, 18 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":28,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":18351,\"PublishedFareTxt\":\"18,351\",\"ApiResultIndex\":\"4-5197403735_0DXBBOMSG14_24955185538055\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9cf9b-21fda-a4421-9abbc\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12566,\"Tax\":5811.74,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":360.34,\"intPublishedFare\":18377.74,\"PublishedFare\":18351,\"PublishedFarePerPax\":9176,\"OfferedFare\":17748.8,\"CommissionEarned\":268.6,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-14.14,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5197403735_0DXBBOMSG14_24955185538635\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":90.97,\"apiMarkup\":0,\"IntCommission\":5.37,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":28,\"FixedMarkUp\":505.37,\"GSTOnMarkUp\":90.97,\"CommEarned\":5.37,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5811.74,\"BaseFareCal\":17839.77,\"BaseFare\":12566,\"CommissionEarned\":268.6,\"TDS\":-14.14,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5416,\"MU\":360.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":90.97,\"apiMarkup\":0,\"IntCommission\":5.37,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":505.37,\"GSTOnMarkUp\":90.97,\"CommEarned\":5.37,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":268.6,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.37,\"IntAgencyFixMarkUp\":505.37,\"IntTaxOnAgencyFixMarkUp\":90.97,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90.97,\"PublishFare\":18350.51,\"CostToCustomer\":18350.51,\"BaseFareCal\":17839.77,\"intCommisionEarnedForAgency\":510.74,\"CostToCompany\":17839.77,\"intOfferedFare\":17748.8,\"intPublishFare\":18377.74,\"TripjackMarkup\":360.34,\"TripjackCommission\":268.6,\"TripjackTDS\":\"14.14\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"03V\"},\"Segments\":[{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-18T06:25\",\"SegFlightNumber\":\"SG-14\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-11-18T01:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":28,\"strDepartureDtTime\":\"01:55\",\"strArrivalDtTime\":\"06:25\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"SG-14\",\"keyIndex\":110,\"SegFlightNumberArr\":\"SG-14\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5197403735_0DXBBOMSG14_24955185538055\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"01:55\",\"ArrivalTime\":\"06:25\",\"TravelDate\":\"2022-11-18T01:55\",\"LocalFromTime\":\"2022-11-18 01:55\",\"FromUTCTime\":\"2022-11-18T01:55\",\"LocalToTime\":\"2022-11-18 06:25\",\"ToUTCTime\":\"2022-11-18T06:25\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Fri, 18 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":28,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":18351,\"PublishedFareTxt\":\"18,351\",\"ApiResultIndex\":\"4-5197403735_0DXBBOMSG14_24955185538055\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9cf9b-21fda-a4421-9abbc\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12566,\"Tax\":5811.74,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":360.34,\"intPublishedFare\":18377.74,\"PublishedFare\":18351,\"PublishedFarePerPax\":9176,\"OfferedFare\":17748.8,\"CommissionEarned\":268.6,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-14.14,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5197403735_0DXBBOMSG14_24955185538635\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":90.97,\"apiMarkup\":0,\"IntCommission\":5.37,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":28,\"FixedMarkUp\":505.37,\"GSTOnMarkUp\":90.97,\"CommEarned\":5.37,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5811.74,\"BaseFareCal\":17839.77,\"BaseFare\":12566,\"CommissionEarned\":268.6,\"TDS\":-14.14,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5416,\"MU\":360.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":90.97,\"apiMarkup\":0,\"IntCommission\":5.37,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":505.37,\"GSTOnMarkUp\":90.97,\"CommEarned\":5.37,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":268.6,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.37,\"IntAgencyFixMarkUp\":505.37,\"IntTaxOnAgencyFixMarkUp\":90.97,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":90.97,\"PublishFare\":18350.51,\"CostToCustomer\":18350.51,\"BaseFareCal\":17839.77,\"intCommisionEarnedForAgency\":510.74,\"CostToCompany\":17839.77,\"intOfferedFare\":17748.8,\"intPublishFare\":18377.74,\"TripjackMarkup\":360.34,\"TripjackCommission\":268.6,\"TripjackTDS\":\"14.14\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12760,\"Tax\":5815.62,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":364.22,\"intPublishedFare\":18575.62,\"PublishedFare\":18545,\"PublishedFarePerPax\":9273,\"OfferedFare\":17938.66,\"CommissionEarned\":272.74,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-14.36,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5197403735_0DXBBOMSG14_24955185539495\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":91.56,\"apiMarkup\":0,\"IntCommission\":5.45,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":28,\"FixedMarkUp\":508.66,\"GSTOnMarkUp\":91.56,\"CommEarned\":5.45,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5815.62,\"BaseFareCal\":18030.22,\"BaseFare\":12760,\"CommissionEarned\":272.74,\"TDS\":-14.36,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5416,\"MU\":364.22,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":91.56,\"apiMarkup\":0,\"IntCommission\":5.45,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":508.66,\"GSTOnMarkUp\":91.56,\"CommEarned\":5.45,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":272.74,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.45,\"IntAgencyFixMarkUp\":508.66,\"IntTaxOnAgencyFixMarkUp\":91.56,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":91.56,\"PublishFare\":18544.33,\"CostToCustomer\":18544.33,\"BaseFareCal\":18030.22,\"intCommisionEarnedForAgency\":514.12,\"CostToCompany\":18030.22,\"intOfferedFare\":17938.66,\"intPublishFare\":18575.62,\"TripjackMarkup\":364.22,\"TripjackCommission\":272.74,\"TripjackTDS\":\"14.36\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13614,\"Tax\":6318.22,\"YQTax\":0,\"OtherCharges\":5892,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":390.82,\"intPublishedFare\":19932.22,\"PublishedFare\":19408,\"PublishedFarePerPax\":9704,\"OfferedFare\":18765.4,\"CommissionEarned\":776,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-40.84,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5197403735_0DXBBOMSG14_24955185538055\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":95.62,\"apiMarkup\":0,\"IntCommission\":15.52,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":28,\"FixedMarkUp\":531.2,\"GSTOnMarkUp\":95.62,\"CommEarned\":15.52,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6318.22,\"BaseFareCal\":18861.02,\"BaseFare\":13614,\"CommissionEarned\":776,\"TDS\":-40.84,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5892,\"MU\":390.82,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":95.62,\"apiMarkup\":0,\"IntCommission\":15.52,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":531.2,\"GSTOnMarkUp\":95.62,\"CommEarned\":15.52,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":776,\"IntCommissionValInPercentage\":2,\"IntCommission\":15.52,\"IntAgencyFixMarkUp\":531.2,\"IntTaxOnAgencyFixMarkUp\":95.62,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":95.62,\"PublishFare\":19407.74,\"CostToCustomer\":19407.74,\"BaseFareCal\":18861.02,\"intCommisionEarnedForAgency\":546.72,\"CostToCompany\":18861.02,\"intOfferedFare\":18765.4,\"intPublishFare\":19932.22,\"TripjackMarkup\":390.82,\"TripjackCommission\":776,\"TripjackTDS\":\"40.84\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13746,\"Tax\":5835.34,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":383.94,\"intPublishedFare\":19581.34,\"PublishedFare\":19434,\"PublishedFarePerPax\":9717,\"OfferedFare\":18805.64,\"CommissionEarned\":391.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-20.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5197403735_0DXBBOMSG14_24955185539335\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":94.57,\"apiMarkup\":0,\"IntCommission\":7.84,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":28,\"FixedMarkUp\":525.37,\"GSTOnMarkUp\":94.57,\"CommEarned\":7.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 KG\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5835.34,\"BaseFareCal\":18900.21,\"BaseFare\":13746,\"CommissionEarned\":391.76,\"TDS\":-20.62,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5416,\"MU\":383.94,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":94.57,\"apiMarkup\":0,\"IntCommission\":7.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":525.37,\"GSTOnMarkUp\":94.57,\"CommEarned\":7.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 KG\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":391.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.84,\"IntAgencyFixMarkUp\":525.37,\"IntTaxOnAgencyFixMarkUp\":94.57,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":94.57,\"PublishFare\":19433.42,\"CostToCustomer\":19433.42,\"BaseFareCal\":18900.21,\"intCommisionEarnedForAgency\":533.21,\"CostToCompany\":18900.21,\"intOfferedFare\":18805.64,\"intPublishFare\":19581.34,\"TripjackMarkup\":383.94,\"TripjackCommission\":391.76,\"TripjackTDS\":\"20.62\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14406,\"Tax\":6362.62,\"YQTax\":0,\"OtherCharges\":5920,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":407.22,\"intPublishedFare\":20768.62,\"PublishedFare\":20200,\"PublishedFarePerPax\":10100,\"OfferedFare\":19540.26,\"CommissionEarned\":821.14,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-43.22,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5197403735_0DXBBOMSG14_24955185538985\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":98.12,\"apiMarkup\":0,\"IntCommission\":16.42,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":28,\"FixedMarkUp\":545.1,\"GSTOnMarkUp\":98.12,\"CommEarned\":16.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6362.62,\"BaseFareCal\":19638.38,\"BaseFare\":14406,\"CommissionEarned\":821.14,\"TDS\":-43.22,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5920,\"MU\":407.22,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":98.12,\"apiMarkup\":0,\"IntCommission\":16.42,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":545.1,\"GSTOnMarkUp\":98.12,\"CommEarned\":16.42,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":821.14,\"IntCommissionValInPercentage\":2,\"IntCommission\":16.42,\"IntAgencyFixMarkUp\":545.1,\"IntTaxOnAgencyFixMarkUp\":98.12,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":98.12,\"PublishFare\":20199.9,\"CostToCustomer\":20199.9,\"BaseFareCal\":19638.38,\"intCommisionEarnedForAgency\":561.52,\"CostToCompany\":19638.38,\"intOfferedFare\":19540.26,\"intPublishFare\":20768.62,\"TripjackMarkup\":407.22,\"TripjackCommission\":821.14,\"TripjackTDS\":\"43.22\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-18T06:25\",\"SegFlightNumber\":\"SG-14\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-11-18T01:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":28,\"strDepartureDtTime\":\"01:55\",\"strArrivalDtTime\":\"06:25\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"045\"}]}],\"FlightBookingDataInbound\":null}','2022-10-25 15:46:17'),(593,'d1a78-29323-b0484-0e5d1','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-14\",\"keyIndex\":108,\"SegFlightNumberArr\":\"SG-14\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5721262687_0DXBBOMSG14_30952933524152\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"01:55\",\"ArrivalTime\":\"06:25\",\"TravelDate\":\"2022-11-19T01:55\",\"LocalFromTime\":\"2022-11-19 01:55\",\"FromUTCTime\":\"2022-11-19T01:55\",\"LocalToTime\":\"2022-11-19 06:25\",\"ToUTCTime\":\"2022-11-19T06:25\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Sat, 19 Nov\",\"ArrivalDateTxt\":\"Sat, 19 Nov\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":20349,\"PublishedFareTxt\":\"20,349\",\"ApiResultIndex\":\"4-5721262687_0DXBBOMSG14_30952933523312\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d1a78-29323-b0484-0e5d1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14566,\"Tax\":5851.74,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":400.34,\"intPublishedFare\":20417.74,\"PublishedFare\":20349,\"PublishedFarePerPax\":10175,\"OfferedFare\":19706.04,\"CommissionEarned\":311.36,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5721262687_0DXBBOMSG14_30952933524152\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":97.07,\"apiMarkup\":0,\"IntCommission\":6.23,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":539.27,\"GSTOnMarkUp\":97.07,\"CommEarned\":6.23,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5851.74,\"BaseFareCal\":19803.11,\"BaseFare\":14566,\"CommissionEarned\":311.36,\"TDS\":-16.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5416,\"MU\":400.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":97.07,\"apiMarkup\":0,\"IntCommission\":6.23,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":539.27,\"GSTOnMarkUp\":97.07,\"CommEarned\":6.23,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":311.36,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.23,\"IntAgencyFixMarkUp\":539.27,\"IntTaxOnAgencyFixMarkUp\":97.07,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":97.07,\"PublishFare\":20348.61,\"CostToCustomer\":20348.61,\"BaseFareCal\":19803.11,\"intCommisionEarnedForAgency\":545.5,\"CostToCompany\":19803.11,\"intOfferedFare\":19706.04,\"intPublishFare\":20417.74,\"TripjackMarkup\":400.34,\"TripjackCommission\":311.36,\"TripjackTDS\":\"16.38\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"045\"},\"Segments\":[{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-19T06:25\",\"SegFlightNumber\":\"SG-14\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-11-19T01:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"01:55\",\"strArrivalDtTime\":\"06:25\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"SG-14\",\"keyIndex\":108,\"SegFlightNumberArr\":\"SG-14\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5721262687_0DXBBOMSG14_30952933523312\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"01:55\",\"ArrivalTime\":\"06:25\",\"TravelDate\":\"2022-11-19T01:55\",\"LocalFromTime\":\"2022-11-19 01:55\",\"FromUTCTime\":\"2022-11-19T01:55\",\"LocalToTime\":\"2022-11-19 06:25\",\"ToUTCTime\":\"2022-11-19T06:25\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":180,\"DepartureDateTxt\":\"Sat, 19 Nov\",\"ArrivalDateTxt\":\"Sat, 19 Nov\",\"FlightDuration\":\"3h 0m\",\"SourcePlaceSysId\":\"8219\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":20349,\"PublishedFareTxt\":\"20,349\",\"ApiResultIndex\":\"4-5721262687_0DXBBOMSG14_30952933523312\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d1a78-29323-b0484-0e5d1\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14566,\"Tax\":5851.74,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":400.34,\"intPublishedFare\":20417.74,\"PublishedFare\":20349,\"PublishedFarePerPax\":10175,\"OfferedFare\":19706.04,\"CommissionEarned\":311.36,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5721262687_0DXBBOMSG14_30952933524152\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":97.07,\"apiMarkup\":0,\"IntCommission\":6.23,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":539.27,\"GSTOnMarkUp\":97.07,\"CommEarned\":6.23,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5851.74,\"BaseFareCal\":19803.11,\"BaseFare\":14566,\"CommissionEarned\":311.36,\"TDS\":-16.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5416,\"MU\":400.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":97.07,\"apiMarkup\":0,\"IntCommission\":6.23,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":539.27,\"GSTOnMarkUp\":97.07,\"CommEarned\":6.23,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":311.36,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.23,\"IntAgencyFixMarkUp\":539.27,\"IntTaxOnAgencyFixMarkUp\":97.07,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":97.07,\"PublishFare\":20348.61,\"CostToCustomer\":20348.61,\"BaseFareCal\":19803.11,\"intCommisionEarnedForAgency\":545.5,\"CostToCompany\":19803.11,\"intOfferedFare\":19706.04,\"intPublishFare\":20417.74,\"TripjackMarkup\":400.34,\"TripjackCommission\":311.36,\"TripjackTDS\":\"16.38\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14760,\"Tax\":5855.62,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":404.22,\"intPublishedFare\":20615.62,\"PublishedFare\":20543,\"PublishedFarePerPax\":10272,\"OfferedFare\":19895.9,\"CommissionEarned\":315.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5721262687_0DXBBOMSG14_30952933525522\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":97.66,\"apiMarkup\":0,\"IntCommission\":6.31,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":542.56,\"GSTOnMarkUp\":97.66,\"CommEarned\":6.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5855.62,\"BaseFareCal\":19993.56,\"BaseFare\":14760,\"CommissionEarned\":315.5,\"TDS\":-16.6,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5416,\"MU\":404.22,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":97.66,\"apiMarkup\":0,\"IntCommission\":6.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":542.56,\"GSTOnMarkUp\":97.66,\"CommEarned\":6.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":315.5,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.31,\"IntAgencyFixMarkUp\":542.56,\"IntTaxOnAgencyFixMarkUp\":97.66,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":97.66,\"PublishFare\":20542.43,\"CostToCustomer\":20542.43,\"BaseFareCal\":19993.56,\"intCommisionEarnedForAgency\":548.87,\"CostToCompany\":19993.56,\"intOfferedFare\":19895.9,\"intPublishFare\":20615.62,\"TripjackMarkup\":404.22,\"TripjackCommission\":315.5,\"TripjackTDS\":\"16.6\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15564,\"Tax\":6426.58,\"YQTax\":0,\"OtherCharges\":5960,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":431.18,\"intPublishedFare\":21990.58,\"PublishedFare\":21358,\"PublishedFarePerPax\":10679,\"OfferedFare\":20672.26,\"CommissionEarned\":887.14,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-46.7,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5721262687_0DXBBOMSG14_30952933523312\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":101.77,\"apiMarkup\":0,\"IntCommission\":17.74,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":565.41,\"GSTOnMarkUp\":101.77,\"CommEarned\":17.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6426.58,\"BaseFareCal\":20774.03,\"BaseFare\":15564,\"CommissionEarned\":887.14,\"TDS\":-46.7,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5960,\"MU\":431.18,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":101.77,\"apiMarkup\":0,\"IntCommission\":17.74,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":565.41,\"GSTOnMarkUp\":101.77,\"CommEarned\":17.74,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":887.14,\"IntCommissionValInPercentage\":2,\"IntCommission\":17.74,\"IntAgencyFixMarkUp\":565.41,\"IntTaxOnAgencyFixMarkUp\":101.77,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":101.77,\"PublishFare\":21357.18,\"CostToCustomer\":21357.18,\"BaseFareCal\":20774.03,\"intCommisionEarnedForAgency\":583.15,\"CostToCompany\":20774.03,\"intOfferedFare\":20672.26,\"intPublishFare\":21990.58,\"TripjackMarkup\":431.18,\"TripjackCommission\":887.14,\"TripjackTDS\":\"46.7\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":15854,\"Tax\":5877.5,\"YQTax\":0,\"OtherCharges\":5416,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":426.1,\"intPublishedFare\":21731.5,\"PublishedFare\":21525,\"PublishedFarePerPax\":10763,\"OfferedFare\":20853.56,\"CommissionEarned\":451.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-23.78,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5721262687_0DXBBOMSG14_30952933525222\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"intTotalGST\":101,\"apiMarkup\":0,\"IntCommission\":9.04,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":561.1,\"GSTOnMarkUp\":101,\"CommEarned\":9.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 KG\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":5877.5,\"BaseFareCal\":20954.56,\"BaseFare\":15854,\"CommissionEarned\":451.84,\"TDS\":-23.78,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5416,\"MU\":426.1,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":101,\"apiMarkup\":0,\"IntCommission\":9.04,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":561.1,\"GSTOnMarkUp\":101,\"CommEarned\":9.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 KG\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":451.84,\"IntCommissionValInPercentage\":2,\"IntCommission\":9.04,\"IntAgencyFixMarkUp\":561.1,\"IntTaxOnAgencyFixMarkUp\":101,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":101,\"PublishFare\":21524.7,\"CostToCustomer\":21524.7,\"BaseFareCal\":20954.56,\"intCommisionEarnedForAgency\":570.14,\"CostToCompany\":20954.56,\"intOfferedFare\":20853.56,\"intPublishFare\":21731.5,\"TripjackMarkup\":426.1,\"TripjackCommission\":451.84,\"TripjackTDS\":\"23.78\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16470,\"Tax\":6477.34,\"YQTax\":0,\"OtherCharges\":5992,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":449.94,\"intPublishedFare\":22947.34,\"PublishedFare\":22264,\"PublishedFarePerPax\":11132,\"OfferedFare\":21558.6,\"CommissionEarned\":938.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-49.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5721262687_0DXBBOMSG14_30952933524932\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":104.63,\"apiMarkup\":0,\"IntCommission\":18.78,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":581.31,\"GSTOnMarkUp\":104.63,\"CommEarned\":18.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":6477.34,\"BaseFareCal\":21663.23,\"BaseFare\":16470,\"CommissionEarned\":938.8,\"TDS\":-49.4,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":5992,\"MU\":449.94,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":104.63,\"apiMarkup\":0,\"IntCommission\":18.78,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":581.31,\"GSTOnMarkUp\":104.63,\"CommEarned\":18.78,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":938.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":18.78,\"IntAgencyFixMarkUp\":581.31,\"IntTaxOnAgencyFixMarkUp\":104.63,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":104.63,\"PublishFare\":22263.32,\"CostToCustomer\":22263.32,\"BaseFareCal\":21663.23,\"intCommisionEarnedForAgency\":600.08,\"CostToCompany\":21663.23,\"intOfferedFare\":21558.6,\"intPublishFare\":22947.34,\"TripjackMarkup\":449.94,\"TripjackCommission\":938.8,\"TripjackTDS\":\"49.4\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Dubai Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dubai\",\"originCountryName\":\"United Arab Emirates\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-19T06:25\",\"SegFlightNumber\":\"SG-14\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"DXB\",\"originDepTime\":\"2022-11-19T01:55\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":180,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"01:55\",\"strArrivalDtTime\":\"06:25\",\"FlightDuration\":\"3h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"04F\"}]}],\"FlightBookingDataInbound\":null}','2022-10-25 15:47:41'),(594,'b1521-387a2-0d982-1ebfc','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-168\",\"keyIndex\":3,\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-4508105567_0IXBBOMSG168_35637976712858\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-11-06T16:30\",\"LocalFromTime\":\"2022-11-06 16:30\",\"FromUTCTime\":\"2022-11-06T16:30\",\"LocalToTime\":\"2022-11-06 19:35\",\"ToUTCTime\":\"2022-11-06T19:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sun, 06 Nov\",\"ArrivalDateTxt\":\"Sun, 06 Nov\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"2012\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":28702,\"PublishedFareTxt\":\"28,702\",\"ApiResultIndex\":\"11-4508105567_0IXBBOMSG168_35637976712858\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"b1521-387a2-0d982-1ebfc\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":26000,\"Tax\":2596.1,\"YQTax\":0,\"OtherCharges\":2000,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":560.7,\"intPublishedFare\":28596.1,\"PublishedFare\":28702,\"PublishedFarePerPax\":14351,\"OfferedFare\":27541.4,\"CommissionEarned\":494,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-4508105567_0IXBBOMSG168_35637976712858\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":175.53,\"apiMarkup\":0,\"IntCommission\":9.88,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":975.17,\"GSTOnMarkUp\":175.53,\"CommEarned\":9.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2596.1,\"BaseFareCal\":27716.93,\"BaseFare\":26000,\"CommissionEarned\":494,\"TDS\":-26,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2000,\"MU\":560.7,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":175.53,\"apiMarkup\":0,\"IntCommission\":9.88,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":975.17,\"GSTOnMarkUp\":175.53,\"CommEarned\":9.88,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":494,\"IntCommissionValInPercentage\":2,\"IntCommission\":9.88,\"IntAgencyFixMarkUp\":975.17,\"IntTaxOnAgencyFixMarkUp\":175.53,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":175.53,\"PublishFare\":28701.98,\"CostToCustomer\":28701.98,\"BaseFareCal\":27716.93,\"intCommisionEarnedForAgency\":985.05,\"CostToCompany\":27716.93,\"intOfferedFare\":27541.4,\"intPublishFare\":28596.1,\"TripjackMarkup\":560.7,\"TripjackCommission\":494,\"TripjackTDS\":\"26\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":500},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02W\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-06T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-11-06T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-25 19:55:12'),(595,'39644-617c6-ba67b-482f6','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2059\",\"keyIndex\":8,\"SegFlightNumberArr\":\"6E-2059\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2698955896_0DELMAA6E2059_52740224636515\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"06:55\",\"ArrivalTime\":\"09:50\",\"TravelDate\":\"2022-11-01T06:55\",\"LocalFromTime\":\"2022-11-01 06:55\",\"FromUTCTime\":\"2022-11-01T06:55\",\"LocalToTime\":\"2022-11-01 09:50\",\"ToUTCTime\":\"2022-11-01T09:50\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":175,\"DepartureDateTxt\":\"Tue, 01 Nov\",\"ArrivalDateTxt\":\"Tue, 01 Nov\",\"FlightDuration\":\"2h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"6000\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"MAA\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7978,\"PublishedFareTxt\":\"7,977\",\"ApiResultIndex\":\"5-2698955896_0DELMAA6E2059_52740224635525\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"39644-617c6-ba67b-482f6\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6800,\"Tax\":1004.73,\"YQTax\":0,\"OtherCharges\":834,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":153.03,\"intPublishedFare\":7804.73,\"PublishedFare\":7978,\"PublishedFarePerPax\":7978,\"OfferedFare\":7587.1,\"CommissionEarned\":64.6,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2698955896_0DELMAA6E2059_52740224636515\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":59.34,\"apiMarkup\":0,\"IntCommission\":1.29,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":329.69,\"GSTOnMarkUp\":59.34,\"CommEarned\":1.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1004.73,\"BaseFareCal\":7646.44,\"BaseFare\":6800,\"CommissionEarned\":64.6,\"TDS\":-3.4,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":834,\"MU\":153.03,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":59.34,\"apiMarkup\":0,\"IntCommission\":1.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":329.69,\"GSTOnMarkUp\":59.34,\"CommEarned\":1.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":64.6,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.29,\"IntAgencyFixMarkUp\":329.69,\"IntTaxOnAgencyFixMarkUp\":59.34,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":59.34,\"PublishFare\":7977.42,\"CostToCustomer\":7977.42,\"BaseFareCal\":7646.44,\"intCommisionEarnedForAgency\":330.98,\"CostToCompany\":7646.44,\"intOfferedFare\":7587.1,\"intPublishFare\":7804.73,\"TripjackMarkup\":153.03,\"TripjackCommission\":64.6,\"TripjackTDS\":\"3.4\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02I\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chennai Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Chennai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"MAA\",\"destinationArrTime\":\"2022-11-01T09:50\",\"SegFlightNumber\":\"6E-2059\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-01T06:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":175,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:55\",\"strArrivalDtTime\":\"09:50\",\"FlightDuration\":\"2h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-25 23:26:43'),(596,'1ccfa-4a743-e35a7-f470e','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-902\",\"keyIndex\":18,\"SegFlightNumberArr\":\"UK-902\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-0579848004_12BOMDELUK902_96725423941899\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2022-11-05T15:45\",\"LocalFromTime\":\"2022-11-05 15:45\",\"FromUTCTime\":\"2022-11-05T15:45\",\"LocalToTime\":\"2022-11-05 18:05\",\"ToUTCTime\":\"2022-11-05T18:05\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 05 Nov\",\"ArrivalDateTxt\":\"Sat, 05 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5853,\"PublishedFareTxt\":\"5,853\",\"ApiResultIndex\":\"21-10-15-2-0579848004_12BOMDELUK902_96725423941679\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"1ccfa-4a743-e35a7-f470e\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5176,\"Tax\":910.03,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":265,\"CarrierMiscFee\":130,\"MUFee\":119.33,\"intPublishedFare\":6086.03,\"PublishedFare\":5853,\"PublishedFarePerPax\":5853,\"OfferedFare\":5487.96,\"CommissionEarned\":478.74,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-25.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-0579848004_12BOMDELUK902_96725423941899\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":54.2,\"apiMarkup\":0,\"IntCommission\":9.57,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":301.13,\"GSTOnMarkUp\":54.2,\"CommEarned\":9.57,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":910.03,\"BaseFareCal\":5542.16,\"BaseFare\":5176,\"CommissionEarned\":478.74,\"TDS\":-25.2,\"MF\":15,\"YQ\":0,\"AGST\":265,\"MFT\":2.7,\"OT\":378,\"MU\":119.33,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":54.2,\"apiMarkup\":0,\"IntCommission\":9.57,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":301.13,\"GSTOnMarkUp\":54.2,\"CommEarned\":9.57,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":478.74,\"IntCommissionValInPercentage\":2,\"IntCommission\":9.57,\"IntAgencyFixMarkUp\":301.13,\"IntTaxOnAgencyFixMarkUp\":54.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":54.2,\"PublishFare\":5852.86,\"CostToCustomer\":5852.86,\"BaseFareCal\":5542.16,\"intCommisionEarnedForAgency\":310.7,\"CostToCompany\":5542.16,\"intOfferedFare\":5487.96,\"intPublishFare\":6086.03,\"TripjackMarkup\":119.33,\"TripjackCommission\":478.74,\"TripjackTDS\":\"25.2\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0EA\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-05T18:05\",\"SegFlightNumber\":\"UK-902\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"P\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-26 12:10:16'),(597,'573c7-27b17-2dbdd-0d221','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-902\",\"keyIndex\":42,\"SegFlightNumberArr\":\"UK-902\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-0214514616_22BOMDELUK902_114875998254095\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2022-11-05T15:45\",\"LocalFromTime\":\"2022-11-05 15:45\",\"FromUTCTime\":\"2022-11-05T15:45\",\"LocalToTime\":\"2022-11-05 18:05\",\"ToUTCTime\":\"2022-11-05T18:05\",\"IsDirect\":0,\"FareClass\":\"P\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 05 Nov\",\"ArrivalDateTxt\":\"Sat, 05 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5853,\"PublishedFareTxt\":\"5,853\",\"ApiResultIndex\":\"21-10-15-2-0214514616_22BOMDELUK902_114875998253875\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"573c7-27b17-2dbdd-0d221\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5176,\"Tax\":910.03,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":265,\"CarrierMiscFee\":130,\"MUFee\":119.33,\"intPublishedFare\":6086.03,\"PublishedFare\":5853,\"PublishedFarePerPax\":5853,\"OfferedFare\":5487.96,\"CommissionEarned\":478.74,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-25.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-0214514616_22BOMDELUK902_114875998254095\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":54.2,\"apiMarkup\":0,\"IntCommission\":9.57,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":301.13,\"GSTOnMarkUp\":54.2,\"CommEarned\":9.57,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":910.03,\"BaseFareCal\":5542.16,\"BaseFare\":5176,\"CommissionEarned\":478.74,\"TDS\":-25.2,\"MF\":15,\"YQ\":0,\"AGST\":265,\"MFT\":2.7,\"OT\":378,\"MU\":119.33,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":54.2,\"apiMarkup\":0,\"IntCommission\":9.57,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":301.13,\"GSTOnMarkUp\":54.2,\"CommEarned\":9.57,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":478.74,\"IntCommissionValInPercentage\":2,\"IntCommission\":9.57,\"IntAgencyFixMarkUp\":301.13,\"IntTaxOnAgencyFixMarkUp\":54.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":54.2,\"PublishFare\":5852.86,\"CostToCustomer\":5852.86,\"BaseFareCal\":5542.16,\"intCommisionEarnedForAgency\":310.7,\"CostToCompany\":5542.16,\"intOfferedFare\":5487.96,\"intPublishFare\":6086.03,\"TripjackMarkup\":119.33,\"TripjackCommission\":478.74,\"TripjackTDS\":\"25.2\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0ID\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-05T18:05\",\"SegFlightNumber\":\"UK-902\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"P\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-05T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-26 20:31:58'),(598,'cf3ec-e8d22-14f5a-bdffd','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-163\",\"keyIndex\":116,\"SegFlightNumberArr\":\"SG-163\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3403764212_0BOMIXBSG163_105013273633657\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-03T13:10\",\"LocalFromTime\":\"2022-12-03 13:10\",\"FromUTCTime\":\"2022-12-03T13:10\",\"LocalToTime\":\"2022-12-03 16:00\",\"ToUTCTime\":\"2022-12-03T16:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 03 Dec\",\"ArrivalDateTxt\":\"Sat, 03 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14259,\"PublishedFareTxt\":\"14,258\",\"ApiResultIndex\":\"4-3403764212_0BOMIXBSG163_105013273633207\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cf3ec-e8d22-14f5a-bdffd\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13034,\"Tax\":1231.1,\"YQTax\":0,\"OtherCharges\":916,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":279.7,\"intPublishedFare\":14265.1,\"PublishedFare\":14259,\"PublishedFarePerPax\":7130,\"OfferedFare\":13737.76,\"CommissionEarned\":247.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.04,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3403764212_0BOMIXBSG163_105013273633657\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":78.67,\"apiMarkup\":0,\"IntCommission\":4.95,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":437.03,\"GSTOnMarkUp\":78.67,\"CommEarned\":4.95,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1231.1,\"BaseFareCal\":13816.43,\"BaseFare\":13034,\"CommissionEarned\":247.64,\"TDS\":-13.04,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":916,\"MU\":279.7,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":78.67,\"apiMarkup\":0,\"IntCommission\":4.95,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":437.03,\"GSTOnMarkUp\":78.67,\"CommEarned\":4.95,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":247.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":4.95,\"IntAgencyFixMarkUp\":437.03,\"IntTaxOnAgencyFixMarkUp\":78.67,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":78.67,\"PublishFare\":14258.41,\"CostToCustomer\":14258.41,\"BaseFareCal\":13816.43,\"intCommisionEarnedForAgency\":441.99,\"CostToCompany\":13816.43,\"intOfferedFare\":13737.76,\"intPublishFare\":14265.1,\"TripjackMarkup\":279.7,\"TripjackCommission\":247.64,\"TripjackTDS\":\"13.04\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"022\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-03T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-03T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]},{\"keyIndex\":71,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3403764212_0IXBBOMSG168_105013273372522\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14742.79,\"PublishedFareTxt\":\"14,743\",\"ApiResultIndex\":\"4-3403764212_0IXBBOMSG168_105013273370332\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"cf3ec-e8d22-14f5a-bdffd\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13414,\"Tax\":1248.9,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":287.5,\"intPublishedFare\":14662.9,\"PublishedFare\":14743,\"PublishedFarePerPax\":7372,\"OfferedFare\":14216.1,\"CommissionEarned\":159.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3403764212_0IXBBOMSG168_105013273372522\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":35,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1248.9,\"BaseFareCal\":14295.96,\"BaseFare\":13414,\"CommissionEarned\":159.3,\"TDS\":-8.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":287.5,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":159.3,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.19,\"IntAgencyFixMarkUp\":443.64,\"IntTaxOnAgencyFixMarkUp\":79.86,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79.86,\"PublishFare\":14742.79,\"CostToCustomer\":14742.79,\"BaseFareCal\":14295.96,\"intCommisionEarnedForAgency\":446.83,\"CostToCompany\":14295.96,\"intOfferedFare\":14216.1,\"intPublishFare\":14662.9,\"TripjackMarkup\":287.5,\"TripjackCommission\":159.3,\"TripjackTDS\":\"8.38\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0NV\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":71,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3403764212_0IXBBOMSG168_105013273372522\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14742.79,\"PublishedFareTxt\":\"14,743\",\"ApiResultIndex\":\"4-3403764212_0IXBBOMSG168_105013273370332\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"cf3ec-e8d22-14f5a-bdffd\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13414,\"Tax\":1248.9,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":287.5,\"intPublishedFare\":14662.9,\"PublishedFare\":14743,\"PublishedFarePerPax\":7372,\"OfferedFare\":14216.1,\"CommissionEarned\":159.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3403764212_0IXBBOMSG168_105013273372522\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":35,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1248.9,\"BaseFareCal\":14295.96,\"BaseFare\":13414,\"CommissionEarned\":159.3,\"TDS\":-8.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":287.5,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":159.3,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.19,\"IntAgencyFixMarkUp\":443.64,\"IntTaxOnAgencyFixMarkUp\":79.86,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79.86,\"PublishFare\":14742.79,\"CostToCustomer\":14742.79,\"BaseFareCal\":14295.96,\"intCommisionEarnedForAgency\":446.83,\"CostToCompany\":14295.96,\"intOfferedFare\":14216.1,\"intPublishFare\":14662.9,\"TripjackMarkup\":287.5,\"TripjackCommission\":159.3,\"TripjackTDS\":\"8.38\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0NV\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}}','2022-10-28 11:53:05'),(599,'32e7b-3e345-ad339-68e3d','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-163\",\"keyIndex\":116,\"SegFlightNumberArr\":\"SG-163\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3013108979_0BOMIXBSG163_2598263919387\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-03T13:10\",\"LocalFromTime\":\"2022-12-03 13:10\",\"FromUTCTime\":\"2022-12-03T13:10\",\"LocalToTime\":\"2022-12-03 16:00\",\"ToUTCTime\":\"2022-12-03T16:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 03 Dec\",\"ArrivalDateTxt\":\"Sat, 03 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14673,\"PublishedFareTxt\":\"14,672\",\"ApiResultIndex\":\"4-3013108979_0BOMIXBSG163_2598263918727\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"32e7b-3e345-ad339-68e3d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13034,\"Tax\":1231.1,\"YQTax\":0,\"OtherCharges\":916,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":279.7,\"intPublishedFare\":14265.1,\"PublishedFare\":14259,\"PublishedFarePerPax\":7130,\"OfferedFare\":13737.76,\"CommissionEarned\":247.64,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.04,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3013108979_0BOMIXBSG163_2598263919387\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":78.67,\"apiMarkup\":0,\"IntCommission\":4.95,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":437.03,\"GSTOnMarkUp\":78.67,\"CommEarned\":4.95,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1231.1,\"BaseFareCal\":13816.43,\"BaseFare\":13034,\"CommissionEarned\":247.64,\"TDS\":-13.04,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":916,\"MU\":279.7,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":78.67,\"apiMarkup\":0,\"IntCommission\":4.95,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":437.03,\"GSTOnMarkUp\":78.67,\"CommEarned\":4.95,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":247.64,\"IntCommissionValInPercentage\":2,\"IntCommission\":4.95,\"IntAgencyFixMarkUp\":437.03,\"IntTaxOnAgencyFixMarkUp\":78.67,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":78.67,\"PublishFare\":14258.41,\"CostToCustomer\":14258.41,\"BaseFareCal\":13816.43,\"intCommisionEarnedForAgency\":441.99,\"CostToCompany\":13816.43,\"intOfferedFare\":13737.76,\"intPublishFare\":14265.1,\"TripjackMarkup\":279.7,\"TripjackCommission\":247.64,\"TripjackTDS\":\"13.04\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"022\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-03T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-03T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]},{\"keyIndex\":71,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3013108979_0IXBBOMSG168_2598263586061\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14742.79,\"PublishedFareTxt\":\"14,743\",\"ApiResultIndex\":\"4-3013108979_0IXBBOMSG168_2598263583911\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"32e7b-3e345-ad339-68e3d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13414,\"Tax\":1248.9,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":287.5,\"intPublishedFare\":14662.9,\"PublishedFare\":14743,\"PublishedFarePerPax\":7372,\"OfferedFare\":14216.1,\"CommissionEarned\":159.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3013108979_0IXBBOMSG168_2598263586061\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":35,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1248.9,\"BaseFareCal\":14295.96,\"BaseFare\":13414,\"CommissionEarned\":159.3,\"TDS\":-8.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":287.5,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":159.3,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.19,\"IntAgencyFixMarkUp\":443.64,\"IntTaxOnAgencyFixMarkUp\":79.86,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79.86,\"PublishFare\":14742.79,\"CostToCustomer\":14742.79,\"BaseFareCal\":14295.96,\"intCommisionEarnedForAgency\":446.83,\"CostToCompany\":14295.96,\"intOfferedFare\":14216.1,\"intPublishFare\":14662.9,\"TripjackMarkup\":287.5,\"TripjackCommission\":159.3,\"TripjackTDS\":\"8.38\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0NV\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":71,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3013108979_0IXBBOMSG168_2598263586061\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14742.79,\"PublishedFareTxt\":\"14,743\",\"ApiResultIndex\":\"4-3013108979_0IXBBOMSG168_2598263583911\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"32e7b-3e345-ad339-68e3d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13414,\"Tax\":1248.9,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":287.5,\"intPublishedFare\":14662.9,\"PublishedFare\":14743,\"PublishedFarePerPax\":7372,\"OfferedFare\":14216.1,\"CommissionEarned\":159.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3013108979_0IXBBOMSG168_2598263586061\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":35,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1248.9,\"BaseFareCal\":14295.96,\"BaseFare\":13414,\"CommissionEarned\":159.3,\"TDS\":-8.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":287.5,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":159.3,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.19,\"IntAgencyFixMarkUp\":443.64,\"IntTaxOnAgencyFixMarkUp\":79.86,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79.86,\"PublishFare\":14742.79,\"CostToCustomer\":14742.79,\"BaseFareCal\":14295.96,\"intCommisionEarnedForAgency\":446.83,\"CostToCompany\":14295.96,\"intOfferedFare\":14216.1,\"intPublishFare\":14662.9,\"TripjackMarkup\":287.5,\"TripjackCommission\":159.3,\"TripjackTDS\":\"8.38\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0NV\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}}','2022-10-28 11:55:13'),(600,'9a739-4f9ad-7d690-04fdb','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-163\",\"keyIndex\":75,\"SegFlightNumberArr\":\"SG-163\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5114899089_0BOMIXBSG163_7771188305451\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-03T13:10\",\"LocalFromTime\":\"2022-12-03 13:10\",\"FromUTCTime\":\"2022-12-03T13:10\",\"LocalToTime\":\"2022-12-03 16:00\",\"ToUTCTime\":\"2022-12-03T16:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 03 Dec\",\"ArrivalDateTxt\":\"Sat, 03 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14650,\"PublishedFareTxt\":\"14,650\",\"ApiResultIndex\":\"4-5114899089_0BOMIXBSG163_7771188305451\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9a739-4f9ad-7d690-04fdb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12662,\"Tax\":1676.54,\"YQTax\":0,\"OtherCharges\":1360,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":281.14,\"intPublishedFare\":14338.54,\"PublishedFare\":14045,\"PublishedFarePerPax\":7023,\"OfferedFare\":13516.08,\"CommissionEarned\":541.32,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-28.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5114899089_0BOMIXBSG163_7771188305451\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":78.89,\"apiMarkup\":0,\"IntCommission\":10.83,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":438.25,\"GSTOnMarkUp\":78.89,\"CommEarned\":10.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1676.54,\"BaseFareCal\":13594.97,\"BaseFare\":12662,\"CommissionEarned\":541.32,\"TDS\":-28.48,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1360,\"MU\":281.14,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":78.89,\"apiMarkup\":0,\"IntCommission\":10.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":438.25,\"GSTOnMarkUp\":78.89,\"CommEarned\":10.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":541.32,\"IntCommissionValInPercentage\":2,\"IntCommission\":10.83,\"IntAgencyFixMarkUp\":438.25,\"IntTaxOnAgencyFixMarkUp\":78.89,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":78.89,\"PublishFare\":14044.05,\"CostToCustomer\":14044.05,\"BaseFareCal\":13594.97,\"intCommisionEarnedForAgency\":449.08,\"CostToCompany\":13594.97,\"intOfferedFare\":13516.08,\"intPublishFare\":14338.54,\"TripjackMarkup\":281.14,\"TripjackCommission\":541.32,\"TripjackTDS\":\"28.48\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01W\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-03T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-03T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]},{\"keyIndex\":47,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5114899089_0IXBBOMSG168_7771188083004\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14742.79,\"PublishedFareTxt\":\"14,743\",\"ApiResultIndex\":\"4-5114899089_0IXBBOMSG168_7771188075114\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"9a739-4f9ad-7d690-04fdb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13414,\"Tax\":1248.9,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":287.5,\"intPublishedFare\":14662.9,\"PublishedFare\":14743,\"PublishedFarePerPax\":7372,\"OfferedFare\":14216.1,\"CommissionEarned\":159.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5114899089_0IXBBOMSG168_7771188083004\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":35,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1248.9,\"BaseFareCal\":14295.96,\"BaseFare\":13414,\"CommissionEarned\":159.3,\"TDS\":-8.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":287.5,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":159.3,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.19,\"IntAgencyFixMarkUp\":443.64,\"IntTaxOnAgencyFixMarkUp\":79.86,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79.86,\"PublishFare\":14742.79,\"CostToCustomer\":14742.79,\"BaseFareCal\":14295.96,\"intCommisionEarnedForAgency\":446.83,\"CostToCompany\":14295.96,\"intOfferedFare\":14216.1,\"intPublishFare\":14662.9,\"TripjackMarkup\":287.5,\"TripjackCommission\":159.3,\"TripjackTDS\":\"8.38\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0MG\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":47,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-5114899089_0IXBBOMSG168_7771188083004\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":10,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14742.79,\"PublishedFareTxt\":\"14,743\",\"ApiResultIndex\":\"4-5114899089_0IXBBOMSG168_7771188075114\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"9a739-4f9ad-7d690-04fdb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13414,\"Tax\":1248.9,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":287.5,\"intPublishedFare\":14662.9,\"PublishedFare\":14743,\"PublishedFarePerPax\":7372,\"OfferedFare\":14216.1,\"CommissionEarned\":159.3,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.38,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-5114899089_0IXBBOMSG168_7771188083004\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":35,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1248.9,\"BaseFareCal\":14295.96,\"BaseFare\":13414,\"CommissionEarned\":159.3,\"TDS\":-8.38,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":287.5,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79.86,\"apiMarkup\":0,\"IntCommission\":3.19,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":443.64,\"GSTOnMarkUp\":79.86,\"CommEarned\":3.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":159.3,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.19,\"IntAgencyFixMarkUp\":443.64,\"IntTaxOnAgencyFixMarkUp\":79.86,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79.86,\"PublishFare\":14742.79,\"CostToCustomer\":14742.79,\"BaseFareCal\":14295.96,\"intCommisionEarnedForAgency\":446.83,\"CostToCompany\":14295.96,\"intOfferedFare\":14216.1,\"intPublishFare\":14662.9,\"TripjackMarkup\":287.5,\"TripjackCommission\":159.3,\"TripjackTDS\":\"8.38\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0MG\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":10,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}}','2022-10-28 13:21:11'),(601,'5df1a-3e796-a0b67-40f97','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-902\",\"keyIndex\":20,\"SegFlightNumberArr\":\"UK-902\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4542082171_13BOMDELUK902_6976402169949\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"15:45\",\"ArrivalTime\":\"18:05\",\"TravelDate\":\"2022-11-04T15:45\",\"LocalFromTime\":\"2022-11-04 15:45\",\"FromUTCTime\":\"2022-11-04T15:45\",\"LocalToTime\":\"2022-11-04 18:05\",\"ToUTCTime\":\"2022-11-04T18:05\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Fri, 04 Nov\",\"ArrivalDateTxt\":\"Fri, 04 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5720,\"PublishedFareTxt\":\"5,719\",\"ApiResultIndex\":\"21-10-15-2-4542082171_13BOMDELUK902_6976402169739\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5df1a-3e796-a0b67-40f97\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5047,\"Tax\":901.33,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":259,\"CarrierMiscFee\":130,\"MUFee\":116.63,\"intPublishedFare\":5948.33,\"PublishedFare\":5720,\"PublishedFarePerPax\":5720,\"OfferedFare\":5357.36,\"CommissionEarned\":474.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-24.97,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4542082171_13BOMDELUK902_6976402169949\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":53.79,\"apiMarkup\":0,\"IntCommission\":9.49,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":298.84,\"GSTOnMarkUp\":53.79,\"CommEarned\":9.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":901.33,\"BaseFareCal\":5411.15,\"BaseFare\":5047,\"CommissionEarned\":474.34,\"TDS\":-24.97,\"MF\":15,\"YQ\":0,\"AGST\":259,\"MFT\":2.7,\"OT\":378,\"MU\":116.63,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":53.79,\"apiMarkup\":0,\"IntCommission\":9.49,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":298.84,\"GSTOnMarkUp\":53.79,\"CommEarned\":9.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":474.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":9.49,\"IntAgencyFixMarkUp\":298.84,\"IntTaxOnAgencyFixMarkUp\":53.79,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":53.79,\"PublishFare\":5719.48,\"CostToCustomer\":5719.48,\"BaseFareCal\":5411.15,\"intCommisionEarnedForAgency\":308.33,\"CostToCompany\":5411.15,\"intOfferedFare\":5357.36,\"intPublishFare\":5948.33,\"TripjackMarkup\":116.63,\"TripjackCommission\":474.34,\"TripjackTDS\":\"24.97\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0CM\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-04T18:05\",\"SegFlightNumber\":\"UK-902\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-04T15:45\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"15:45\",\"strArrivalDtTime\":\"18:05\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-28 13:49:52'),(605,'98f86-663cc-3e82b-30745','{\"BookingData\":[{\"bookingId\":\"TJ101246634026\",\"FlightNumber\":\"6E-2015\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:40\",\"ArrivalTime\":\"15:00\",\"TravelDate\":\"2022-11-05T12:40\",\"LocalFromTime\":\"2022-11-05 12:40\",\"FromUTCTime\":\"2022-11-05T12:40\",\"LocalToTime\":\"2022-11-05 15:00\",\"ToUTCTime\":\"2022-11-05T15:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 05 Nov\",\"ArrivalDateTxt\":\"Sat, 05 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4414.25,\"PublishedFareTxt\":\"4,414\",\"ApiResultIndex\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure  __nls__ Within 03-72 hrs Rs 3,250 + *fare diff if any*__nls__Before 72 hrs Rs 2,750 + *fare diff if any*\",\"fcs\":{\"ARFT\":162.5,\"CRF\":50,\"CRFT\":9,\"ARF\":3250}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3,500 __nls__ Before 72 hrs Rs 3,000\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"ACFT\":175,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Paid Seat\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3645,\"Tax\":769.25,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":187,\"CarrierMiscFee\":0,\"MUFee\":86.55,\"intPublishedFare\":4414.25,\"PublishedFare\":4616.31,\"OfferedFare\":4293.07,\"CommissionEarned\":34.63,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8227328133_0BOMDEL6E2015_18356979159957\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":49.2,\"apiMarkup\":0,\"IntCommission\":0.69,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":769.25,\"BaseFareCal\":4342.27,\"BaseFare\":3645,\"CommissionEarned\":34.63,\"TDS\":-1.82,\"MF\":15,\"YQ\":0,\"AGST\":187,\"MFT\":2.7,\"OT\":478,\"MU\":86.55,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.2,\"apiMarkup\":0,\"IntCommission\":0.69,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":34.63,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.69,\"IntAgencyFixMarkUp\":273.35,\"IntTaxOnAgencyFixMarkUp\":49.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.2,\"PublishFare\":4616.31,\"CostToCustomer\":4616.31,\"BaseFareCal\":4342.27,\"intCommisionEarnedForAgency\":274.04,\"CostToCompany\":4342.27,\"intOfferedFare\":4293.07,\"intPublishFare\":4414.25,\"TripjackMarkup\":86.55,\"TripjackCommission\":34.63,\"TripjackTDS\":\"1.82\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"463\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-05T15:00\",\"SegFlightNumber\":\"6E-2015\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-05T12:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:40\",\"strArrivalDtTime\":\"15:00\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPE\",\"Price\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPA\",\"Price\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPB\",\"Price\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPC\",\"Price\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPJ\",\"Price\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"XBPD\",\"Price\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CCWT\",\"Price\":200,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"POHA\",\"Price\":250,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"SAKD\",\"Price\":275,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"VBIR\",\"Price\":300,\"Description\":\"VEG BIRYANI Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"UPMA\",\"Price\":300,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CPML\",\"Price\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CNWT\",\"Price\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"ZCHK\",\"Price\":350,\"Description\":\"Nissin Zesty Chicken Keema Noodle\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"COMI\",\"Price\":350,\"Description\":\"Cornflakes with Milk\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"PBMR\",\"Price\":400,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"MUYO\",\"Price\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CHCR\",\"Price\":400,\"Description\":\"Chicken Curry Rice\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"TCSW\",\"Price\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"PTSW\",\"Price\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CHVM\",\"Price\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"VGTR\",\"Price\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"NLVG\",\"Price\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CHNM\",\"Price\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"VLML\",\"Price\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"NVTR\",\"Price\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"LCVG\",\"Price\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"GFNV\",\"Price\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"DBVG\",\"Price\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"DBNV\",\"Price\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CJSW\",\"Price\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"463\",\"Code\":\"CHNS\",\"Price\":600,\"Description\":\"Sesame Chicken\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"98f86-663cc-3e82b-30745\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-05 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ101246634026\",\"FlightNumber\":\"6E-2015\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"strTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"12:40\",\"ArrivalTime\":\"15:00\",\"TravelDate\":\"2022-11-05T12:40\",\"LocalFromTime\":\"2022-11-05 12:40\",\"FromUTCTime\":\"2022-11-05T12:40\",\"LocalToTime\":\"2022-11-05 15:00\",\"ToUTCTime\":\"2022-11-05T15:00\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sat, 05 Nov\",\"ArrivalDateTxt\":\"Sat, 05 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":7701,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4414.25,\"ApiResultIndex\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"98f86-663cc-3e82b-30745\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3645,\"Tax\":769.25,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":187,\"CarrierMiscFee\":0,\"MUFee\":86.55,\"intPublishedFare\":4414.25,\"PublishedFare\":4616.31,\"OfferedFare\":4293.07,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":769.25,\"BaseFareCal\":4342.27,\"BaseFare\":3645,\"CommissionEarned\":34.63,\"TDS\":-1.82,\"MF\":15,\"YQ\":0,\"AGST\":187,\"MFT\":2.7,\"OT\":478,\"MU\":86.55,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"463\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-05T15:00\",\"SegFlightNumber\":\"6E-2015\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-05T12:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"12:40\",\"strArrivalDtTime\":\"15:00\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-8227328133_6BOMDEL6E2015_24035060458591\",\"localFromDateTime\":\"2022-11-05 12:40\",\"localToDateTime\":\"2022-11-05 15:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":7701,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"DirectFlight\":\"1\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Delhi (DEL)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"DEL\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"departure_date\":\"05\\/11\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"DEL\",\"from\":\"BOM\",\"to\":\"DEL\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"sourceCityId\":18676,\"destinationCityId\":7701,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"05\\/11\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-11-05\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"98f86-663cc-3e82b-30745\",\"from_city_\":\"1__BOM-DEL\"},\"FlightSearchUrl\":\"route=1&DirectFlight=1&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Delhi+%28DEL%29&adults=1&childs=0&infants=0&class=2&DirectFlight=1&source_city=BOM&ContSysId_1=101&destination_city=DEL&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&departure_date=05%2F11%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"samaniamohit@gmail.com\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"7011644515\",\"FirstName\":\"Megha \",\"LastName\":\"Mandar pagade \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-10-28-17-24-07\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"29\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"481895\",\"TPSysId\":\"481896\",\"VersionId\":[\"115955\"],\"CustomerSysId\":\"221337\",\"TrxId\":\"37082\",\"FareBreakdownid\":[\"362814\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"159\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"29\",\"CustomerMemSysId\":[\"29\"],\"flight_booking_id\":[\"108\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"108\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4616.31},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"221337\",\"TPSysId\":\"481896\",\"MasterTPSysId\":\"481895\",\"ProposalID\":\"481896\\/V1\",\"InvoiceDate\":\"2022-10-28\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-10-28\",\"PaymentDate\":\"2022-10-28\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4531.110000000001,\"InvoiceStatus\":true,\"TotalSGST\":42.6,\"TotalCGST\":42.6,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4616.31,\"TotalDueAmount\":0,\"InvoiceValue\":4616.31,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-DEL-IndiGo 6E-2015\",\"ItemQty\":1,\"ItemRates\":4057.76,\"Total\":4057.76,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4616.31,\"MarkupType\":\"\",\"Markup\":473.35,\"TotalMarkup\":473.35,\"SubTotal\":4531.110000000001,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":85.2,\"SGST\":42.6,\"CGST\":42.6,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-10-28 17:24:58'),(606,'3bc15-588ea-9a79c-3c9be','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-993\",\"keyIndex\":242,\"SegFlightNumberArr\":\"6E-993\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7786548554_19BOMDEL6E993_45647788618434\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:35\",\"ArrivalTime\":\"16:45\",\"TravelDate\":\"2022-11-05T14:35\",\"LocalFromTime\":\"2022-11-05 14:35\",\"FromUTCTime\":\"2022-11-05T14:35\",\"LocalToTime\":\"2022-11-05 16:45\",\"ToUTCTime\":\"2022-11-05T16:45\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sat, 05 Nov\",\"ArrivalDateTxt\":\"Sat, 05 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4617,\"PublishedFareTxt\":\"4,616\",\"ApiResultIndex\":\"5-7786548554_19BOMDEL6E993_45647788617984\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3bc15-588ea-9a79c-3c9be\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3645,\"Tax\":769.25,\"YQTax\":0,\"OtherCharges\":665,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":86.55,\"intPublishedFare\":4414.25,\"PublishedFare\":4617,\"PublishedFarePerPax\":4617,\"OfferedFare\":4293.07,\"CommissionEarned\":34.63,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.82,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7786548554_19BOMDEL6E993_45647788618434\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":49.2,\"apiMarkup\":0,\"IntCommission\":0.69,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":769.25,\"BaseFareCal\":4342.27,\"BaseFare\":3645,\"CommissionEarned\":34.63,\"TDS\":-1.82,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":665,\"MU\":86.55,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.2,\"apiMarkup\":0,\"IntCommission\":0.69,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":273.35,\"GSTOnMarkUp\":49.2,\"CommEarned\":0.69,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":34.63,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.69,\"IntAgencyFixMarkUp\":273.35,\"IntTaxOnAgencyFixMarkUp\":49.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.2,\"PublishFare\":4616.31,\"CostToCustomer\":4616.31,\"BaseFareCal\":4342.27,\"intCommisionEarnedForAgency\":274.04,\"CostToCompany\":4342.27,\"intOfferedFare\":4293.07,\"intPublishFare\":4414.25,\"TripjackMarkup\":86.55,\"TripjackCommission\":34.63,\"TripjackTDS\":\"1.82\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"08D\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-05T16:45\",\"SegFlightNumber\":\"6E-993\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-05T14:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:35\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-10-28 21:34:37'),(607,'40aa2-835bb-82f5a-fa825','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-163\",\"keyIndex\":72,\"SegFlightNumberArr\":\"SG-163\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3601978023_0BOMIXBSG163_114296640236767\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-03T13:10\",\"LocalFromTime\":\"2022-12-03 13:10\",\"FromUTCTime\":\"2022-12-03T13:10\",\"LocalToTime\":\"2022-12-03 16:00\",\"ToUTCTime\":\"2022-12-03T16:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 03 Dec\",\"ArrivalDateTxt\":\"Sat, 03 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":22,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14297,\"PublishedFareTxt\":\"14,296\",\"ApiResultIndex\":\"4-3601978023_0BOMIXBSG163_114296640236767\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"40aa2-835bb-82f5a-fa825\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12672,\"Tax\":1676.74,\"YQTax\":0,\"OtherCharges\":1360,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":281.34,\"intPublishedFare\":14348.74,\"PublishedFare\":14054,\"PublishedFarePerPax\":7027,\"OfferedFare\":13525.68,\"CommissionEarned\":541.72,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-28.52,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3601978023_0BOMIXBSG163_114296640236767\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":78.92,\"apiMarkup\":0,\"IntCommission\":10.83,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":22,\"FixedMarkUp\":438.42,\"GSTOnMarkUp\":78.92,\"CommEarned\":10.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1676.74,\"BaseFareCal\":13604.6,\"BaseFare\":12672,\"CommissionEarned\":541.72,\"TDS\":-28.52,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1360,\"MU\":281.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":78.92,\"apiMarkup\":0,\"IntCommission\":10.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":438.42,\"GSTOnMarkUp\":78.92,\"CommEarned\":10.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":541.72,\"IntCommissionValInPercentage\":2,\"IntCommission\":10.83,\"IntAgencyFixMarkUp\":438.42,\"IntTaxOnAgencyFixMarkUp\":78.92,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":78.92,\"PublishFare\":14053.85,\"CostToCustomer\":14053.85,\"BaseFareCal\":13604.6,\"intCommisionEarnedForAgency\":449.26,\"CostToCompany\":13604.6,\"intOfferedFare\":13525.68,\"intPublishFare\":14348.74,\"TripjackMarkup\":281.34,\"TripjackCommission\":541.72,\"TripjackTDS\":\"28.52\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01W\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-03T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-03T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":22,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]},{\"keyIndex\":48,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3601978023_0IXBBOMSG168_114296636584173\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14366.75,\"PublishedFareTxt\":\"14,367\",\"ApiResultIndex\":\"4-3601978023_0IXBBOMSG168_114296636583443\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"40aa2-835bb-82f5a-fa825\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13132,\"Tax\":1243.26,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":281.86,\"intPublishedFare\":14375.26,\"PublishedFare\":14367,\"PublishedFarePerPax\":7184,\"OfferedFare\":13843.9,\"CommissionEarned\":249.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.14,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3601978023_0IXBBOMSG168_114296636584173\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":79,\"apiMarkup\":0,\"IntCommission\":4.99,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":25,\"FixedMarkUp\":438.86,\"GSTOnMarkUp\":79,\"CommEarned\":4.99,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1243.26,\"BaseFareCal\":13922.9,\"BaseFare\":13132,\"CommissionEarned\":249.5,\"TDS\":-13.14,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":281.86,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79,\"apiMarkup\":0,\"IntCommission\":4.99,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":438.86,\"GSTOnMarkUp\":79,\"CommEarned\":4.99,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":249.5,\"IntCommissionValInPercentage\":2,\"IntCommission\":4.99,\"IntAgencyFixMarkUp\":438.86,\"IntTaxOnAgencyFixMarkUp\":79,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79,\"PublishFare\":14366.75,\"CostToCustomer\":14366.75,\"BaseFareCal\":13922.9,\"intCommisionEarnedForAgency\":443.85,\"CostToCompany\":13922.9,\"intOfferedFare\":13843.9,\"intPublishFare\":14375.26,\"TripjackMarkup\":281.86,\"TripjackCommission\":249.5,\"TripjackTDS\":\"13.14\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0ML\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":48,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-3601978023_0IXBBOMSG168_114296636584173\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":14366.75,\"PublishedFareTxt\":\"14,367\",\"ApiResultIndex\":\"4-3601978023_0IXBBOMSG168_114296636583443\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"40aa2-835bb-82f5a-fa825\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13132,\"Tax\":1243.26,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":281.86,\"intPublishedFare\":14375.26,\"PublishedFare\":14367,\"PublishedFarePerPax\":7184,\"OfferedFare\":13843.9,\"CommissionEarned\":249.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.14,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-3601978023_0IXBBOMSG168_114296636584173\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":79,\"apiMarkup\":0,\"IntCommission\":4.99,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":25,\"FixedMarkUp\":438.86,\"GSTOnMarkUp\":79,\"CommEarned\":4.99,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1243.26,\"BaseFareCal\":13922.9,\"BaseFare\":13132,\"CommissionEarned\":249.5,\"TDS\":-13.14,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":281.86,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79,\"apiMarkup\":0,\"IntCommission\":4.99,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":438.86,\"GSTOnMarkUp\":79,\"CommEarned\":4.99,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":249.5,\"IntCommissionValInPercentage\":2,\"IntCommission\":4.99,\"IntAgencyFixMarkUp\":438.86,\"IntTaxOnAgencyFixMarkUp\":79,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79,\"PublishFare\":14366.75,\"CostToCustomer\":14366.75,\"BaseFareCal\":13922.9,\"intCommisionEarnedForAgency\":443.85,\"CostToCompany\":13922.9,\"intOfferedFare\":13843.9,\"intPublishFare\":14375.26,\"TripjackMarkup\":281.86,\"TripjackCommission\":249.5,\"TripjackTDS\":\"13.14\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0ML\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}}','2022-10-31 14:38:46'),(611,'1ed3c-e0ff5-6869a-3d8d2','{\"BookingData\":[{\"bookingId\":\"TJ109846892928\",\"FlightNumber\":\"SG-163\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-03T13:10\",\"LocalFromTime\":\"2022-12-03 13:10\",\"FromUTCTime\":\"2022-12-03T13:10\",\"LocalToTime\":\"2022-12-03 16:00\",\"ToUTCTime\":\"2022-12-03T16:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 03 Dec\",\"ArrivalDateTxt\":\"Sat, 03 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2012,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":22,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":14348.74,\"PublishedFareTxt\":\"14,349\",\"ApiResultIndex\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12672,\"Tax\":1676.74,\"YQTax\":0,\"OtherCharges\":1360,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":281.34,\"intPublishedFare\":14348.74,\"PublishedFare\":14053.85,\"OfferedFare\":13525.68,\"CommissionEarned\":541.72,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-28.52,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9624522565_0BOMIXBSG163_112297400208705\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":78.92,\"apiMarkup\":0,\"IntCommission\":10.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":438.42,\"GSTOnMarkUp\":78.92,\"CommEarned\":10.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1676.74,\"BaseFareCal\":13604.6,\"BaseFare\":12672,\"CommissionEarned\":541.72,\"TDS\":-28.52,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1360,\"MU\":281.34,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":78.92,\"apiMarkup\":0,\"IntCommission\":10.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":438.42,\"GSTOnMarkUp\":78.92,\"CommEarned\":10.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":541.72,\"IntCommissionValInPercentage\":2,\"IntCommission\":10.83,\"IntAgencyFixMarkUp\":438.42,\"IntTaxOnAgencyFixMarkUp\":78.92,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":78.92,\"PublishFare\":14053.85,\"CostToCustomer\":14053.85,\"BaseFareCal\":13604.6,\"intCommisionEarnedForAgency\":449.26,\"CostToCompany\":13604.6,\"intOfferedFare\":13525.68,\"intPublishFare\":14348.74,\"TripjackMarkup\":281.34,\"TripjackCommission\":541.72,\"TripjackTDS\":\"28.52\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"239\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-03T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-03T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":22,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"GFCM\",\"Price\":377,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"239\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"1ed3c-e0ff5-6869a-3d8d2\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-12-03 12:00\",\"localToDateTime\":\"2022-12-09 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"IXB\",\"intMemberCount\":2,\"intSourceCityId\":18676,\"intDestinationCityId\":2012,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109846892928\",\"FlightNumber\":\"SG-163\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"strTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-03T13:10\",\"LocalFromTime\":\"2022-12-03 13:10\",\"FromUTCTime\":\"2022-12-03T13:10\",\"LocalToTime\":\"2022-12-03 16:00\",\"ToUTCTime\":\"2022-12-03T16:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Sat, 03 Dec\",\"ArrivalDateTxt\":\"Sat, 03 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2012,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":22,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":28826,\"ApiResultIndex\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"1ed3c-e0ff5-6869a-3d8d2\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":25904,\"Tax\":2922,\"YQTax\":0,\"OtherCharges\":2286,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":565.2,\"intPublishedFare\":28826,\"PublishedFare\":28613.13,\"OfferedFare\":27561.96,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":878.98,\"GSTOnMarkUp\":158.22,\"CommEarned\":13.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2922,\"BaseFareCal\":27720.18,\"BaseFare\":25904,\"CommissionEarned\":698.84,\"TDS\":-36.8,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":2286,\"MU\":565.2,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"FixedMarkUp\":878.98,\"GSTOnMarkUp\":158.22,\"CommEarned\":13.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"239\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-03T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-03T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":22,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],[{\"segmentid\":\"842\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"HR\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-9624522565_0BOMIXBSG163_24745665117643\",\"localFromDateTime\":\"2022-12-03 13:10\",\"localToDateTime\":\"2022-12-03 16:00\",\"strSourceAirportCode\":\"IXB\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":2,\"intSourceCityId\":18676,\"intDestinationCityId\":2012,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJ109846892928\",\"FlightNumber\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-9624522565_0IXBBOMSG168_24745664243711\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-09T16:30\",\"LocalFromTime\":\"2022-12-09 16:30\",\"FromUTCTime\":\"2022-12-09T16:30\",\"LocalToTime\":\"2022-12-09 19:35\",\"ToUTCTime\":\"2022-12-09T19:35\",\"IsDirect\":0,\"FareClass\":\"HR\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 09 Dec\",\"ArrivalDateTxt\":\"Fri, 09 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":2012,\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":25,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"PublishedFare\":14477.26,\"PublishedFareTxt\":\"14,477\",\"ApiResultIndex\":\"4-9624522565_0IXBBOMSG168_24745664243711\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13232,\"Tax\":1245.26,\"YQTax\":0,\"OtherCharges\":926,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":283.86,\"intPublishedFare\":14477.26,\"PublishedFare\":14559.28,\"OfferedFare\":14036.28,\"CommissionEarned\":157.12,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.28,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-9624522565_1IXBBOMSG168_112297403990805\",\"IsGSTRequired\":false,\"fareIdentifier\":\"COUPON\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":79.3,\"apiMarkup\":0,\"IntCommission\":3.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":440.56,\"GSTOnMarkUp\":79.3,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1245.26,\"BaseFareCal\":14115.58,\"BaseFare\":13232,\"CommissionEarned\":157.12,\"TDS\":-8.28,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":926,\"MU\":283.86,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":79.3,\"apiMarkup\":0,\"IntCommission\":3.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":440.56,\"GSTOnMarkUp\":79.3,\"CommEarned\":3.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":157.12,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.14,\"IntAgencyFixMarkUp\":440.56,\"IntTaxOnAgencyFixMarkUp\":79.3,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":79.3,\"PublishFare\":14559.28,\"CostToCustomer\":14559.28,\"BaseFareCal\":14115.58,\"intCommisionEarnedForAgency\":443.7,\"CostToCompany\":14115.58,\"intOfferedFare\":14036.28,\"intPublishFare\":14477.26,\"TripjackMarkup\":283.86,\"TripjackCommission\":157.12,\"TripjackTDS\":\"8.28\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"842\",\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-09T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"HR\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-09T16:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":25,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"VGSW\",\"Price\":250,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NVSW\",\"Price\":275,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"VGML\",\"Price\":350,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NVML\",\"Price\":375,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"GFCM\",\"Price\":377,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"842\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"1ed3c-e0ff5-6869a-3d8d2\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-9624522565_0IXBBOMSG168_24745664243711\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-12-03 12:00\",\"localToDateTime\":\"2022-12-09 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"IXB\",\"intMemberCount\":2,\"intSourceCityId\":18676,\"intDestinationCityId\":2012,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Mumbai (BOM)\",\"mytrip_city_to\":\"Bagdogra (IXB)\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"IXB\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destination\":\"Bagdogra, IN - Bagdogra Arpt (IXB), India\",\"departure_date\":\"03\\/12\\/2022\",\"return_date\":\"09\\/12\\/2022\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"to_mytrip_city\":\" IN - Bagdogra Arpt (IXB)\",\"DirectFlight\":\"1\",\"adults\":\"2\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"IXB\",\"from\":\"BOM\",\"to\":\"IXB\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"destinationCityText\":\"Bagdogra, IN - Bagdogra Arpt (IXB), India\",\"sourceCityId\":18676,\"destinationCityId\":2012,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"03\\/12\\/2022\",\"return_dates\":\"09\\/12\\/2022\",\"strDepatureDate\":\"2022-12-03\",\"strReturnDate\":\"2022-12-09\",\"SearchFlightTraceId\":\"1ed3c-e0ff5-6869a-3d8d2\",\"from_city_\":\"2__BOM-IXB-BOM\"},\"FlightSearchUrl\":\"route=2&mytrip_city_from=Mumbai+%28BOM%29&mytrip_city_to=Bagdogra+%28IXB%29&source_city=BOM&ContSysId_1=101&destination_city=IXB&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&destination=Bagdogra%2C+IN+-+Bagdogra+Arpt+%28IXB%29%2C+India&departure_date=03%2F12%2F2022&return_date=09%2F12%2F2022&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&to_mytrip_city=+IN+-+Bagdogra+Arpt+%28IXB%29&DirectFlight=1&adults=2&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"sagarpentadmd@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9850419423\",\"FirstName\":\"Sagar\",\"LastName\":\"Penta\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-10-31-15-30-47\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"63\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"63\",\"EmailId\":\"sagarpentadmd@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"9850419423\",\"FirstName\":\"Sayali\",\"LastName\":\"Akula\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-10-31-15-30-47\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"67\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"483605\",\"TPSysId\":\"483606\",\"VersionId\":[\"116749\",\"116750\"],\"CustomerSysId\":\"271986\",\"TrxId\":\"37271\",\"FareBreakdownid\":[\"362968\",\"362969\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"160\",\"161\"],[\"162\",\"163\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"63\",\"CustomerMemSysId\":[\"63\",\"67\"],\"flight_booking_id\":[\"109\",\"110\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"109\",\"110\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":28613.13},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"271986\",\"TPSysId\":\"483606\",\"MasterTPSysId\":\"483605\",\"ProposalID\":\"483606\\/V1\",\"InvoiceDate\":\"2022-10-31\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-10-31\",\"PaymentDate\":\"2022-10-31\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":28382.91,\"InvoiceStatus\":true,\"TotalSGST\":115.11,\"TotalCGST\":115.11,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":28613.13,\"TotalDueAmount\":0,\"InvoiceValue\":28613.13,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-IXB-SpiceJet SG-163\",\"ItemQty\":1,\"ItemRates\":13300.51,\"Total\":13300.51,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":14053.85,\"MarkupType\":\"\",\"Markup\":638.4200000000001,\"TotalMarkup\":638.4200000000001,\"SubTotal\":13938.93,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":114.92,\"SGST\":57.46,\"CGST\":57.46,\"IGST\":0,\"ItemsSACCode\":\"\"},{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"IXB-BOM-SpiceJet SG-168\",\"ItemQty\":1,\"ItemRates\":13803.420000000002,\"Total\":13803.420000000002,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":14559.28,\"MarkupType\":\"\",\"Markup\":640.56,\"TotalMarkup\":640.56,\"SubTotal\":14443.980000000001,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":115.3,\"SGST\":57.65,\"CGST\":57.65,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-10-31 15:33:05'),(612,'6','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"11\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-10-31 17:13:34'),(613,'7','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"11\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-10-31 17:14:09'),(614,'8','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"sfrwetwet\",\"CreditDate\":\"28\\/12\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-10-31 17:15:18'),(615,'9','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"test\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-10-31 17:18:55'),(616,'d4319-bf458-cc6e6-d303c','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-331\",\"keyIndex\":20,\"SegFlightNumberArr\":\"I5-331\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-6163665710_1BOMGOII5331_43948163251027\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"03:55\",\"ArrivalTime\":\"05:15\",\"TravelDate\":\"2022-12-22T03:55\",\"LocalFromTime\":\"2022-12-22 03:55\",\"FromUTCTime\":\"2022-12-22T03:55\",\"LocalToTime\":\"2022-12-22 05:15\",\"ToUTCTime\":\"2022-12-22T05:15\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 22 Dec\",\"ArrivalDateTxt\":\"Thu, 22 Dec\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":8673,\"PublishedFareTxt\":\"8,672\",\"ApiResultIndex\":\"22-16-6163665710_1BOMGOII5331_43948163250637\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d4319-bf458-cc6e6-d303c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7050,\"Tax\":1468.42,\"YQTax\":0,\"OtherCharges\":906,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":360,\"CarrierMiscFee\":0,\"MUFee\":167.02,\"intPublishedFare\":8518.42,\"PublishedFare\":8437,\"PublishedFarePerPax\":4219,\"OfferedFare\":8267.68,\"CommissionEarned\":83.72,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-6163665710_1BOMGOII5331_43948163251027\",\"IsGSTRequired\":false,\"fareIdentifier\":\"FAMILY\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":25.48,\"apiMarkup\":0,\"IntCommission\":1.67,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":141.54,\"GSTOnMarkUp\":25.48,\"CommEarned\":1.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1468.42,\"BaseFareCal\":8293.16,\"BaseFare\":7050,\"CommissionEarned\":83.72,\"TDS\":-4.4,\"MF\":30,\"YQ\":0,\"AGST\":360,\"MFT\":5.4,\"OT\":906,\"MU\":167.02,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":25.48,\"apiMarkup\":0,\"IntCommission\":1.67,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":141.54,\"GSTOnMarkUp\":25.48,\"CommEarned\":1.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":83.72,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.67,\"IntAgencyFixMarkUp\":141.54,\"IntTaxOnAgencyFixMarkUp\":25.48,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":25.48,\"PublishFare\":8436.37,\"CostToCustomer\":8436.37,\"BaseFareCal\":8293.16,\"intCommisionEarnedForAgency\":143.22,\"CostToCompany\":8293.16,\"intOfferedFare\":8267.68,\"intPublishFare\":8518.42,\"TripjackMarkup\":167.02,\"TripjackCommission\":83.72,\"TripjackTDS\":\"4.4\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"06J\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-12-22T05:15\",\"SegFlightNumber\":\"I5-331\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-22T03:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"03:55\",\"strArrivalDtTime\":\"05:15\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]},{\"keyIndex\":12,\"FlightNumber\":\"SG-476\",\"SegFlightNumberArr\":\"SG-476\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6163665710_0GOIBOMSG476_43948921764426\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:25\",\"ArrivalTime\":\"06:40\",\"TravelDate\":\"2022-12-25T05:25\",\"LocalFromTime\":\"2022-12-25 05:25\",\"FromUTCTime\":\"2022-12-25T05:25\",\"LocalToTime\":\"2022-12-25 06:40\",\"ToUTCTime\":\"2022-12-25T06:40\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Sun, 25 Dec\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":18,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":6506.4,\"PublishedFareTxt\":\"6,506\",\"ApiResultIndex\":\"4-6163665710_0GOIBOMSG476_43948921762766\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"d4319-bf458-cc6e6-d303c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4378,\"Tax\":1943.34,\"YQTax\":0,\"OtherCharges\":1556,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":228,\"CarrierMiscFee\":0,\"MUFee\":123.94,\"intPublishedFare\":6321.34,\"PublishedFare\":6507,\"PublishedFarePerPax\":3254,\"OfferedFare\":6145.42,\"CommissionEarned\":51.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6163665710_0GOIBOMSG476_43948921764426\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":54.91,\"apiMarkup\":0,\"IntCommission\":1.04,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":78,\"FixedMarkUp\":305.03,\"GSTOnMarkUp\":54.91,\"CommEarned\":1.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1943.34,\"BaseFareCal\":6200.33,\"BaseFare\":4378,\"CommissionEarned\":51.98,\"TDS\":-2.74,\"MF\":30,\"YQ\":0,\"AGST\":228,\"MFT\":5.4,\"OT\":1556,\"MU\":123.94,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":54.91,\"apiMarkup\":0,\"IntCommission\":1.04,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":305.03,\"GSTOnMarkUp\":54.91,\"CommEarned\":1.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":51.98,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.04,\"IntAgencyFixMarkUp\":305.03,\"IntTaxOnAgencyFixMarkUp\":54.91,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":54.91,\"PublishFare\":6506.4,\"CostToCustomer\":6506.4,\"BaseFareCal\":6200.33,\"intCommisionEarnedForAgency\":306.07,\"CostToCompany\":6200.33,\"intOfferedFare\":6145.42,\"intPublishFare\":6321.34,\"TripjackMarkup\":123.94,\"TripjackCommission\":51.98,\"TripjackTDS\":\"2.74\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0G4\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-25T06:40\",\"SegFlightNumber\":\"SG-476\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-12-25T05:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":18,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"06:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":12,\"FlightNumber\":\"SG-476\",\"SegFlightNumberArr\":\"SG-476\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6163665710_0GOIBOMSG476_43948921764426\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"05:25\",\"ArrivalTime\":\"06:40\",\"TravelDate\":\"2022-12-25T05:25\",\"LocalFromTime\":\"2022-12-25 05:25\",\"FromUTCTime\":\"2022-12-25T05:25\",\"LocalToTime\":\"2022-12-25 06:40\",\"ToUTCTime\":\"2022-12-25T06:40\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Sun, 25 Dec\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":18,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":6506.4,\"PublishedFareTxt\":\"6,506\",\"ApiResultIndex\":\"4-6163665710_0GOIBOMSG476_43948921762766\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"d4319-bf458-cc6e6-d303c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4378,\"Tax\":1943.34,\"YQTax\":0,\"OtherCharges\":1556,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":228,\"CarrierMiscFee\":0,\"MUFee\":123.94,\"intPublishedFare\":6321.34,\"PublishedFare\":6507,\"PublishedFarePerPax\":3254,\"OfferedFare\":6145.42,\"CommissionEarned\":51.98,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6163665710_0GOIBOMSG476_43948921764426\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":54.91,\"apiMarkup\":0,\"IntCommission\":1.04,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":78,\"FixedMarkUp\":305.03,\"GSTOnMarkUp\":54.91,\"CommEarned\":1.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1943.34,\"BaseFareCal\":6200.33,\"BaseFare\":4378,\"CommissionEarned\":51.98,\"TDS\":-2.74,\"MF\":30,\"YQ\":0,\"AGST\":228,\"MFT\":5.4,\"OT\":1556,\"MU\":123.94,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":54.91,\"apiMarkup\":0,\"IntCommission\":1.04,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":305.03,\"GSTOnMarkUp\":54.91,\"CommEarned\":1.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":51.98,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.04,\"IntAgencyFixMarkUp\":305.03,\"IntTaxOnAgencyFixMarkUp\":54.91,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":54.91,\"PublishFare\":6506.4,\"CostToCustomer\":6506.4,\"BaseFareCal\":6200.33,\"intCommisionEarnedForAgency\":306.07,\"CostToCompany\":6200.33,\"intOfferedFare\":6145.42,\"intPublishFare\":6321.34,\"TripjackMarkup\":123.94,\"TripjackCommission\":51.98,\"TripjackTDS\":\"2.74\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0G4\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-25T06:40\",\"SegFlightNumber\":\"SG-476\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-12-25T05:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":18,\"strDepartureDtTime\":\"05:25\",\"strArrivalDtTime\":\"06:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\"}}','2022-10-31 23:38:08'),(617,'a19ad-65548-f417b-fbe62','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-488\",\"keyIndex\":10,\"SegFlightNumberArr\":\"SG-488\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-8933743610_0BOMGOISG488_218766791883839\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"11:15\",\"ArrivalTime\":\"12:30\",\"TravelDate\":\"2022-12-22T11:15\",\"LocalFromTime\":\"2022-12-22 11:15\",\"FromUTCTime\":\"2022-12-22T11:15\",\"LocalToTime\":\"2022-12-22 12:30\",\"ToUTCTime\":\"2022-12-22T12:30\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Thu, 22 Dec\",\"ArrivalDateTxt\":\"Thu, 22 Dec\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":9122,\"PublishedFareTxt\":\"9,121\",\"ApiResultIndex\":\"4-8933743610_0BOMGOISG488_218766791883839\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a19ad-65548-f417b-fbe62\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":7745,\"Tax\":1383.69,\"YQTax\":0,\"OtherCharges\":779,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":408,\"CarrierMiscFee\":0,\"MUFee\":178.99,\"intPublishedFare\":9128.69,\"PublishedFare\":9041,\"PublishedFarePerPax\":9041,\"OfferedFare\":8618.61,\"CommissionEarned\":331.09,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-17.43,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-8933743610_0BOMGOISG488_218766791883839\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":63.3,\"apiMarkup\":0,\"IntCommission\":6.62,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":351.69,\"GSTOnMarkUp\":63.3,\"CommEarned\":6.62,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1383.69,\"BaseFareCal\":8681.91,\"BaseFare\":7745,\"CommissionEarned\":331.09,\"TDS\":-17.43,\"MF\":15,\"YQ\":0,\"AGST\":408,\"MFT\":2.7,\"OT\":779,\"MU\":178.99,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":63.3,\"apiMarkup\":0,\"IntCommission\":6.62,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":351.69,\"GSTOnMarkUp\":63.3,\"CommEarned\":6.62,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":331.09,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.62,\"IntAgencyFixMarkUp\":351.69,\"IntTaxOnAgencyFixMarkUp\":63.3,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":63.3,\"PublishFare\":9040.22,\"CostToCustomer\":9040.22,\"BaseFareCal\":8681.91,\"intCommisionEarnedForAgency\":358.31,\"CostToCompany\":8681.91,\"intOfferedFare\":8618.61,\"intPublishFare\":9128.69,\"TripjackMarkup\":178.99,\"TripjackCommission\":331.09,\"TripjackTDS\":\"17.43\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0P4\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-12-22T12:30\",\"SegFlightNumber\":\"SG-488\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-22T11:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"11:15\",\"strArrivalDtTime\":\"12:30\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]},{\"keyIndex\":16,\"FlightNumber\":\"6E-628\",\"SegFlightNumberArr\":\"6E-628\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8933743610_0GOIBOM6E628_218766887281050\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:25\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2022-12-25T11:25\",\"LocalFromTime\":\"2022-12-25 11:25\",\"FromUTCTime\":\"2022-12-25T11:25\",\"LocalToTime\":\"2022-12-25 12:40\",\"ToUTCTime\":\"2022-12-25T12:40\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Sun, 25 Dec\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2664.47,\"PublishedFareTxt\":\"2,664\",\"ApiResultIndex\":\"5-8933743610_0GOIBOM6E628_218766887280190\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"a19ad-65548-f417b-fbe62\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1517,\"Tax\":925.59,\"YQTax\":0,\"OtherCharges\":860,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":47.89,\"intPublishedFare\":2442.59,\"PublishedFare\":2665,\"PublishedFarePerPax\":2665,\"OfferedFare\":2380.29,\"CommissionEarned\":14.41,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8933743610_0GOIBOM6E628_218766887281050\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":43.31,\"apiMarkup\":0,\"IntCommission\":0.29,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":240.58,\"GSTOnMarkUp\":43.31,\"CommEarned\":0.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":925.59,\"BaseFareCal\":2423.6,\"BaseFare\":1517,\"CommissionEarned\":14.41,\"TDS\":-0.76,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":860,\"MU\":47.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":43.31,\"apiMarkup\":0,\"IntCommission\":0.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":240.58,\"GSTOnMarkUp\":43.31,\"CommEarned\":0.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":14.41,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.29,\"IntAgencyFixMarkUp\":240.58,\"IntTaxOnAgencyFixMarkUp\":43.31,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":43.31,\"PublishFare\":2664.47,\"CostToCustomer\":2664.47,\"BaseFareCal\":2423.6,\"intCommisionEarnedForAgency\":240.87,\"CostToCompany\":2423.6,\"intOfferedFare\":2380.29,\"intPublishFare\":2442.59,\"TripjackMarkup\":47.89,\"TripjackCommission\":14.41,\"TripjackTDS\":\"0.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0DH\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-25T12:40\",\"SegFlightNumber\":\"6E-628\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-12-25T11:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"11:25\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":16,\"FlightNumber\":\"6E-628\",\"SegFlightNumberArr\":\"6E-628\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8933743610_0GOIBOM6E628_218766887281050\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"11:25\",\"ArrivalTime\":\"12:40\",\"TravelDate\":\"2022-12-25T11:25\",\"LocalFromTime\":\"2022-12-25 11:25\",\"FromUTCTime\":\"2022-12-25T11:25\",\"LocalToTime\":\"2022-12-25 12:40\",\"ToUTCTime\":\"2022-12-25T12:40\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Sun, 25 Dec\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2664.47,\"PublishedFareTxt\":\"2,664\",\"ApiResultIndex\":\"5-8933743610_0GOIBOM6E628_218766887280190\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"a19ad-65548-f417b-fbe62\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1517,\"Tax\":925.59,\"YQTax\":0,\"OtherCharges\":860,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":47.89,\"intPublishedFare\":2442.59,\"PublishedFare\":2665,\"PublishedFarePerPax\":2665,\"OfferedFare\":2380.29,\"CommissionEarned\":14.41,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8933743610_0GOIBOM6E628_218766887281050\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":43.31,\"apiMarkup\":0,\"IntCommission\":0.29,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":240.58,\"GSTOnMarkUp\":43.31,\"CommEarned\":0.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":925.59,\"BaseFareCal\":2423.6,\"BaseFare\":1517,\"CommissionEarned\":14.41,\"TDS\":-0.76,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":860,\"MU\":47.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":43.31,\"apiMarkup\":0,\"IntCommission\":0.29,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":240.58,\"GSTOnMarkUp\":43.31,\"CommEarned\":0.29,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":14.41,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.29,\"IntAgencyFixMarkUp\":240.58,\"IntTaxOnAgencyFixMarkUp\":43.31,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":43.31,\"PublishFare\":2664.47,\"CostToCustomer\":2664.47,\"BaseFareCal\":2423.6,\"intCommisionEarnedForAgency\":240.87,\"CostToCompany\":2423.6,\"intOfferedFare\":2380.29,\"intPublishFare\":2442.59,\"TripjackMarkup\":47.89,\"TripjackCommission\":14.41,\"TripjackTDS\":\"0.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0DH\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-25T12:40\",\"SegFlightNumber\":\"6E-628\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-12-25T11:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"11:25\",\"strArrivalDtTime\":\"12:40\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\"}}','2022-10-31 23:47:51'),(621,'c5192-82d19-619f3-f8333','{\"BookingData\":[{\"bookingId\":\"TJ103446971792\",\"FlightNumber\":\"AI-817\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"04:55\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2022-11-09T04:55\",\"LocalFromTime\":\"2022-11-09 04:55\",\"FromUTCTime\":\"2022-11-09T04:55\",\"LocalToTime\":\"2022-11-09 22:05\",\"ToUTCTime\":\"2022-11-09T22:05\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":825,\"LAYOVERDuration\":\"13h 45m\",\"FlyingMinutes\":1030,\"DepartureDateTxt\":\"Wed, 09 Nov\",\"ArrivalDateTxt\":\"Wed, 09 Nov\",\"FlightDuration\":\"17h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4051.13,\"PublishedFareTxt\":\"4,051\",\"ApiResultIndex\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Non-Refundable (Basic fare forfeited, Only statutory taxes will be refunded)\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 26 Hrs before scheduled departure__nls__Change Penalty : INR 3,000\\/- or basic fare whichever is lower + Fare Difference\",\"fcs\":{\"CRF\":50,\"ARF\":3000,\"CRFT\":9,\"ARFT\":150}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":4000,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 26 Hrs before scheduled departure__nls__Cancellation Penalty : INR 4,000\\/- or basic fare whichever is lower\",\"fcs\":{\"ACFT\":200,\"ACF\":4000,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3054,\"Tax\":997.13,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":340,\"MUFee\":79.43,\"intPublishedFare\":4051.13,\"PublishedFare\":4254.51,\"OfferedFare\":3938.41,\"CommissionEarned\":33.29,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.75,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-2995282260_0DELAMDAI817AMDBOMAI638_17521698104838\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":48.12,\"apiMarkup\":0,\"IntCommission\":0.67,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":267.31,\"GSTOnMarkUp\":48.12,\"CommEarned\":0.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":997.13,\"BaseFareCal\":3986.53,\"BaseFare\":3054,\"CommissionEarned\":33.29,\"TDS\":-1.75,\"MF\":15,\"YQ\":0,\"AGST\":170,\"MFT\":2.7,\"OT\":390,\"MU\":79.43,\"YR\":340,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.12,\"apiMarkup\":0,\"IntCommission\":0.67,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":267.31,\"GSTOnMarkUp\":48.12,\"CommEarned\":0.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":33.29,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.67,\"IntAgencyFixMarkUp\":267.31,\"IntTaxOnAgencyFixMarkUp\":48.12,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.12,\"PublishFare\":4254.51,\"CostToCustomer\":4254.51,\"BaseFareCal\":3986.53,\"intCommisionEarnedForAgency\":267.98,\"CostToCompany\":3986.53,\"intOfferedFare\":3938.41,\"intPublishFare\":4051.13,\"TripjackMarkup\":79.43,\"TripjackCommission\":33.29,\"TripjackTDS\":\"1.75\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"488\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-11-09T06:55\",\"SegFlightNumber\":\"AI-817\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-09T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":825,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"13h 45m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"489\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-09T22:05\",\"SegFlightNumber\":\"AI-638\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-11-09T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c5192-82d19-619f3-f8333\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-09 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ103446971792\",\"FlightNumber\":\"AI-817\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"strTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"04:55\",\"ArrivalTime\":\"22:05\",\"TravelDate\":\"2022-11-09T04:55\",\"LocalFromTime\":\"2022-11-09 04:55\",\"FromUTCTime\":\"2022-11-09T04:55\",\"LocalToTime\":\"2022-11-09 22:05\",\"ToUTCTime\":\"2022-11-09T22:05\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":825,\"LAYOVERDuration\":\"13h 45m\",\"FlyingMinutes\":1030,\"DepartureDateTxt\":\"Wed, 09 Nov\",\"ArrivalDateTxt\":\"Wed, 09 Nov\",\"FlightDuration\":\"17h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4051.13,\"ApiResultIndex\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"c5192-82d19-619f3-f8333\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3054,\"Tax\":997.13,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":170,\"CarrierMiscFee\":340,\"MUFee\":79.43,\"intPublishedFare\":4051.13,\"PublishedFare\":4254.51,\"OfferedFare\":3938.41,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":267.31,\"GSTOnMarkUp\":48.12,\"CommEarned\":0.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":997.13,\"BaseFareCal\":3986.53,\"BaseFare\":3054,\"CommissionEarned\":33.29,\"TDS\":-1.75,\"MF\":15,\"YQ\":0,\"AGST\":170,\"MFT\":2.7,\"OT\":390,\"MU\":79.43,\"YR\":340,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":267.31,\"GSTOnMarkUp\":48.12,\"CommEarned\":0.67,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"488\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-11-09T06:55\",\"SegFlightNumber\":\"AI-817\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-09T04:55\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":120,\"GroundTime\":825,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"04:55\",\"strArrivalDtTime\":\"06:55\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":\"13h 45m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"},{\"segmentid\":\"489\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-09T22:05\",\"SegFlightNumber\":\"AI-638\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-11-09T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":85,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"22:05\",\"FlightDuration\":\"1h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-2995282260_116DELAMDAI817AMDBOMAI638_17511248051388\",\"localFromDateTime\":\"2022-11-09 04:55\",\"localToDateTime\":\"2022-11-09 22:05\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi (DEL)\",\"mytrip_city_to\":\"Mumbai (BOM)\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"departure_date\":\"09\\/11\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl (DEL)\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji (BOM)\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"09\\/11\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-11-09\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"c5192-82d19-619f3-f8333\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi+%28DEL%29&mytrip_city_to=Mumbai+%28BOM%29&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+%28BOM%29%2C+India&departure_date=09%2F11%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+%28DEL%29&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+%28BOM%29&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"17\",\"EmailId\":\"komal@hellogtx.com\",\"Salutation\":\"3\",\"Relation\":\"1\",\"Contacts\":\"8595077740\",\"FirstName\":\"Komal\",\"LastName\":\"test\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-01-11-57-38\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"68\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"484343\",\"TPSysId\":\"484344\",\"VersionId\":[\"117050\"],\"CustomerSysId\":\"214169\",\"TrxId\":\"37333\",\"FareBreakdownid\":[\"363028\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"164\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"17\",\"CustomerMemSysId\":[\"68\"],\"flight_booking_id\":[\"111\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"111\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4254.51},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"214169\",\"TPSysId\":\"484344\",\"MasterTPSysId\":\"484343\",\"ProposalID\":\"484344\\/V1\",\"InvoiceDate\":\"2022-11-01\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-11-01\",\"PaymentDate\":\"2022-11-01\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4170.39,\"InvoiceStatus\":true,\"TotalSGST\":42.06,\"TotalCGST\":42.06,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4254.51,\"TotalDueAmount\":0,\"InvoiceValue\":4254.51,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Air India AI-817\",\"ItemQty\":1,\"ItemRates\":3703.0800000000004,\"Total\":3703.0800000000004,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4254.51,\"MarkupType\":\"\",\"Markup\":467.31,\"TotalMarkup\":467.31,\"SubTotal\":4170.39,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":84.12,\"SGST\":42.06,\"CGST\":42.06,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-11-01 11:58:07'),(624,'20866-dbb69-84933-9fdc5','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-1087\",\"keyIndex\":169,\"SegFlightNumberArr\":\"6E-1087\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7693041379_18BOMDXB6E1087_3851612595442\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:05\",\"ArrivalTime\":\"04:05\",\"TravelDate\":\"2022-11-07T02:05\",\"LocalFromTime\":\"2022-11-07 02:05\",\"FromUTCTime\":\"2022-11-07T02:05\",\"LocalToTime\":\"2022-11-07 04:05\",\"ToUTCTime\":\"2022-11-07T04:05\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Mon, 07 Nov\",\"ArrivalDateTxt\":\"Mon, 07 Nov\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":20423,\"PublishedFareTxt\":\"20,422\",\"ApiResultIndex\":\"5-7693041379_18BOMDXB6E1087_3851612595282\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"20866-dbb69-84933-9fdc5\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16855,\"Tax\":3605.89,\"YQTax\":0,\"OtherCharges\":3187,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":401.19,\"intPublishedFare\":20460.89,\"PublishedFare\":20423,\"PublishedFarePerPax\":20423,\"OfferedFare\":19779.49,\"CommissionEarned\":280.21,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-14.75,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7693041379_18BOMDXB6E1087_3851612595442\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":97.2,\"apiMarkup\":0,\"IntCommission\":5.6,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":539.99,\"GSTOnMarkUp\":97.2,\"CommEarned\":5.6,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3605.89,\"BaseFareCal\":19876.69,\"BaseFare\":16855,\"CommissionEarned\":280.21,\"TDS\":-14.75,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":3187,\"MU\":401.19,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":97.2,\"apiMarkup\":0,\"IntCommission\":5.6,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":539.99,\"GSTOnMarkUp\":97.2,\"CommEarned\":5.6,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":280.21,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.6,\"IntAgencyFixMarkUp\":539.99,\"IntTaxOnAgencyFixMarkUp\":97.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":97.2,\"PublishFare\":20422.28,\"CostToCustomer\":20422.28,\"BaseFareCal\":19876.69,\"intCommisionEarnedForAgency\":545.6,\"CostToCompany\":19876.69,\"intOfferedFare\":19779.49,\"intPublishFare\":20460.89,\"TripjackMarkup\":401.19,\"TripjackCommission\":280.21,\"TripjackTDS\":\"14.75\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0JH\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-07T04:05\",\"SegFlightNumber\":\"6E-1087\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-07T02:05\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg (2 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:05\",\"strArrivalDtTime\":\"04:05\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"FlightNumber\":\"6E-1087\",\"keyIndex\":169,\"SegFlightNumberArr\":\"6E-1087\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7693041379_18BOMDXB6E1087_3851612595282\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:05\",\"ArrivalTime\":\"04:05\",\"TravelDate\":\"2022-11-07T02:05\",\"LocalFromTime\":\"2022-11-07 02:05\",\"FromUTCTime\":\"2022-11-07T02:05\",\"LocalToTime\":\"2022-11-07 04:05\",\"ToUTCTime\":\"2022-11-07T04:05\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":210,\"DepartureDateTxt\":\"Mon, 07 Nov\",\"ArrivalDateTxt\":\"Mon, 07 Nov\",\"FlightDuration\":\"3h 30m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"8219\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":20423,\"PublishedFareTxt\":\"20,422\",\"ApiResultIndex\":\"5-7693041379_18BOMDXB6E1087_3851612595282\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"20866-dbb69-84933-9fdc5\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":16855,\"Tax\":3605.89,\"YQTax\":0,\"OtherCharges\":3187,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":401.19,\"intPublishedFare\":20460.89,\"PublishedFare\":20423,\"PublishedFarePerPax\":20423,\"OfferedFare\":19779.49,\"CommissionEarned\":280.21,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-14.75,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7693041379_18BOMDXB6E1087_3851612595442\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"intTotalGST\":97.2,\"apiMarkup\":0,\"IntCommission\":5.6,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":539.99,\"GSTOnMarkUp\":97.2,\"CommEarned\":5.6,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3605.89,\"BaseFareCal\":19876.69,\"BaseFare\":16855,\"CommissionEarned\":280.21,\"TDS\":-14.75,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":3187,\"MU\":401.19,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":97.2,\"apiMarkup\":0,\"IntCommission\":5.6,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":539.99,\"GSTOnMarkUp\":97.2,\"CommEarned\":5.6,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":280.21,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.6,\"IntAgencyFixMarkUp\":539.99,\"IntTaxOnAgencyFixMarkUp\":97.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":97.2,\"PublishFare\":20422.28,\"CostToCustomer\":20422.28,\"BaseFareCal\":19876.69,\"intCommisionEarnedForAgency\":545.6,\"CostToCompany\":19876.69,\"intOfferedFare\":19779.49,\"intPublishFare\":20460.89,\"TripjackMarkup\":401.19,\"TripjackCommission\":280.21,\"TripjackTDS\":\"14.75\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17555,\"Tax\":4313.49,\"YQTax\":0,\"OtherCharges\":3867,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":428.79,\"intPublishedFare\":21868.49,\"PublishedFare\":21134,\"PublishedFarePerPax\":21134,\"OfferedFare\":20689.22,\"CommissionEarned\":750.48,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-39.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7693041379_18BOMDXB6E1087_3851612595282\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":65.41,\"apiMarkup\":0,\"IntCommission\":15.01,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":363.38,\"GSTOnMarkUp\":65.41,\"CommEarned\":15.01,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":4313.49,\"BaseFareCal\":20754.63,\"BaseFare\":17555,\"CommissionEarned\":750.48,\"TDS\":-39.5,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":3867,\"MU\":428.79,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":65.41,\"apiMarkup\":0,\"IntCommission\":15.01,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":363.38,\"GSTOnMarkUp\":65.41,\"CommEarned\":15.01,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":750.48,\"IntCommissionValInPercentage\":2,\"IntCommission\":15.01,\"IntAgencyFixMarkUp\":363.38,\"IntTaxOnAgencyFixMarkUp\":65.41,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":65.41,\"PublishFare\":21133.02,\"CostToCustomer\":21133.02,\"BaseFareCal\":20754.63,\"intCommisionEarnedForAgency\":378.39,\"CostToCompany\":20754.63,\"intOfferedFare\":20689.22,\"intPublishFare\":21868.49,\"TripjackMarkup\":428.79,\"TripjackCommission\":750.48,\"TripjackTDS\":\"39.5\",\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":17855,\"Tax\":3676.89,\"YQTax\":0,\"OtherCharges\":3237,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":422.19,\"intPublishedFare\":21531.89,\"PublishedFare\":21477,\"PublishedFarePerPax\":21477,\"OfferedFare\":20812.86,\"CommissionEarned\":296.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7693041379_18BOMDXB6E1087_3851612595602\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Flexi\",\"fareremarks\":\"Flexi Deal with Free Meal (Subject to Airline) and Rescheduling Benefits\",\"FareClass\":\"Economy\",\"intTotalGST\":100.4,\"apiMarkup\":0,\"IntCommission\":5.94,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":557.79,\"GSTOnMarkUp\":100.4,\"CommEarned\":5.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3676.89,\"BaseFareCal\":20913.26,\"BaseFare\":17855,\"CommissionEarned\":296.84,\"TDS\":-15.62,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":3237,\"MU\":422.19,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":100.4,\"apiMarkup\":0,\"IntCommission\":5.94,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":557.79,\"GSTOnMarkUp\":100.4,\"CommEarned\":5.94,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"30 Kg (2 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":296.84,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.94,\"IntAgencyFixMarkUp\":557.79,\"IntTaxOnAgencyFixMarkUp\":100.4,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":100.4,\"PublishFare\":21476.99,\"CostToCustomer\":21476.99,\"BaseFareCal\":20913.26,\"intCommisionEarnedForAgency\":563.72,\"CostToCompany\":20913.26,\"intOfferedFare\":20812.86,\"intPublishFare\":21531.89,\"TripjackMarkup\":422.19,\"TripjackCommission\":296.84,\"TripjackTDS\":\"15.62\",\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dubai Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dubai\",\"destinationCountryName\":\"United Arab Emirates\",\"destinationAirportCode\":\"DXB\",\"destinationArrTime\":\"2022-11-07T04:05\",\"SegFlightNumber\":\"6E-1087\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-07T02:05\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kg (2 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":210,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:05\",\"strArrivalDtTime\":\"04:05\",\"FlightDuration\":\"3h 30m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"0JN\"}]}],\"FlightBookingDataInbound\":null}','2022-11-01 13:10:04'),(625,'10','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"500\",\"RefrenceNo\":\"12\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 13:45:45'),(626,'11','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/flight\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"122\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/flight\"}','2022-11-01 13:46:43'),(627,'12','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/flight\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"433434\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"test\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/flight\"}','2022-11-01 13:50:02'),(628,'13','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"test345335\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 13:53:38'),(629,'14','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"34546464\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 15:38:03'),(630,'15','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"dsfsf\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 15:48:02'),(631,'16','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"sfrwetwet\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 15:51:03'),(632,'17','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"1000\",\"RefrenceNo\":\"ttttt\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 16:07:54'),(633,'18','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"4000\",\"RefrenceNo\":\"12067\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 16:09:47'),(634,'19','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"4000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 18:39:40'),(635,'20','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"3333\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 18:40:28'),(636,'21','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"3333\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 18:48:54'),(637,'22','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"3333\",\"CreditDate\":\"31\\/10\\/2022\",\"Remark\":\"dd\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 18:50:45'),(638,'23','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"3333\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"dd\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 18:58:15'),(639,'24','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"4000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 19:13:38'),(640,'25','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"4000\",\"RefrenceNo\":\"34567\",\"CreditDate\":\"01\\/11\\/2022\",\"Remark\":\"Test\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-01 19:16:20'),(641,'26','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"4000\",\"RefrenceNo\":\"12345\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 10:34:37'),(642,'27','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"4000\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 10:42:17'),(643,'28','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"4000\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 10:47:02'),(644,'29','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"4000\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 11:27:52'),(645,'30','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"40000\",\"RefrenceNo\":\"345\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 11:28:09'),(646,'31','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"rty456\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 12:01:20'),(647,'32','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 15:59:06'),(648,'33','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"4000\",\"RefrenceNo\":\"19999\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:00:13'),(649,'34','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"1234567\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:03:29'),(650,'35','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"12334\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:25:28'),(651,'36','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"44444\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:28:10'),(652,'37','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"6000\",\"RefrenceNo\":\"55555\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:32:43'),(653,'38','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:34:22'),(654,'39','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"5000\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:36:27'),(655,'40','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:38:25'),(656,'41','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"5000\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 16:41:13'),(657,'42','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"5000\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 17:08:10'),(658,'43','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"30000\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 17:09:16'),(659,'44','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 17:11:08'),(660,'45','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"02\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-02 17:22:46'),(661,'2198b-3beea-0bcf1-195ae','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5281\",\"keyIndex\":8,\"SegFlightNumberArr\":\"6E-5281\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7734457198_0BOMJAI6E5281_1053235121737\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:05\",\"ArrivalTime\":\"09:55\",\"TravelDate\":\"2022-11-17T08:05\",\"LocalFromTime\":\"2022-11-17 08:05\",\"FromUTCTime\":\"2022-11-17T08:05\",\"LocalToTime\":\"2022-11-17 09:55\",\"ToUTCTime\":\"2022-11-17T09:55\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Thu, 17 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":13875,\"PublishedFareTxt\":\"13,875\",\"ApiResultIndex\":\"5-7734457198_0BOMJAI6E5281_1053235121007\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"2198b-3beea-0bcf1-195ae\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":10920,\"Tax\":2820.2,\"YQTax\":0,\"OtherCharges\":2480,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":269.4,\"intPublishedFare\":13740.2,\"PublishedFare\":13875,\"PublishedFarePerPax\":3469,\"OfferedFare\":13367.04,\"CommissionEarned\":103.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.44,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7734457198_0BOMJAI6E5281_1053235121737\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"intTotalGST\":77.09,\"apiMarkup\":0,\"IntCommission\":2.08,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":428.31,\"GSTOnMarkUp\":77.09,\"CommEarned\":2.08,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":2820.2,\"BaseFareCal\":13444.13,\"BaseFare\":10920,\"CommissionEarned\":103.76,\"TDS\":-5.44,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":2480,\"MU\":269.4,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":77.09,\"apiMarkup\":0,\"IntCommission\":2.08,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":428.31,\"GSTOnMarkUp\":77.09,\"CommEarned\":2.08,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":103.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.08,\"IntAgencyFixMarkUp\":428.31,\"IntTaxOnAgencyFixMarkUp\":77.09,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":77.09,\"PublishFare\":13874.52,\"CostToCustomer\":13874.52,\"BaseFareCal\":13444.13,\"intCommisionEarnedForAgency\":430.38,\"CostToCompany\":13444.13,\"intOfferedFare\":13367.04,\"intPublishFare\":13740.2,\"TripjackMarkup\":269.4,\"TripjackCommission\":103.76,\"TripjackTDS\":\"5.44\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"022\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-17T09:55\",\"SegFlightNumber\":\"6E-5281\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-17T08:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:05\",\"strArrivalDtTime\":\"09:55\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]},{\"keyIndex\":35,\"FlightNumber\":\"I5-679\",\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7734457198_1JAIBOMI5679_1048542132513\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"18:00\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-11-20T18:00\",\"LocalFromTime\":\"2022-11-20 18:00\",\"FromUTCTime\":\"2022-11-20T18:00\",\"LocalToTime\":\"2022-11-20 19:50\",\"ToUTCTime\":\"2022-11-20T19:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Sun, 20 Nov\",\"ArrivalDateTxt\":\"Sun, 20 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":18947.19,\"PublishedFareTxt\":\"18,947\",\"ApiResultIndex\":\"22-16-7734457198_1JAIBOMI5679_1048542132283\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"2198b-3beea-0bcf1-195ae\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14592,\"Tax\":4289,\"YQTax\":0,\"OtherCharges\":3104,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":744,\"CarrierMiscFee\":0,\"MUFee\":370.2,\"intPublishedFare\":18881,\"PublishedFare\":18948,\"PublishedFarePerPax\":4737,\"OfferedFare\":18337.52,\"CommissionEarned\":173.28,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.12,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-7734457198_1JAIBOMI5679_1048542132513\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Instant HOT DEAL\",\"fareremarks\":\"Issues Instantly , Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":92.47,\"apiMarkup\":0,\"IntCommission\":3.47,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":513.73,\"GSTOnMarkUp\":92.47,\"CommEarned\":3.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4289,\"BaseFareCal\":18429.99,\"BaseFare\":14592,\"CommissionEarned\":173.28,\"TDS\":-9.12,\"MF\":60,\"YQ\":0,\"AGST\":744,\"MFT\":10.8,\"OT\":3104,\"MU\":370.2,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":92.47,\"apiMarkup\":0,\"IntCommission\":3.47,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":513.73,\"GSTOnMarkUp\":92.47,\"CommEarned\":3.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":173.28,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.47,\"IntAgencyFixMarkUp\":513.73,\"IntTaxOnAgencyFixMarkUp\":92.47,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":92.47,\"PublishFare\":18947.19,\"CostToCustomer\":18947.19,\"BaseFareCal\":18429.99,\"intCommisionEarnedForAgency\":517.19,\"CostToCompany\":18429.99,\"intOfferedFare\":18337.52,\"intPublishFare\":18881,\"TripjackMarkup\":370.2,\"TripjackCommission\":173.28,\"TripjackTDS\":\"9.12\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0JF\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-20T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-11-20T18:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:00\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":35,\"FlightNumber\":\"I5-679\",\"SegFlightNumberArr\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7734457198_1JAIBOMI5679_1048542132513\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"18:00\",\"ArrivalTime\":\"19:50\",\"TravelDate\":\"2022-11-20T18:00\",\"LocalFromTime\":\"2022-11-20 18:00\",\"FromUTCTime\":\"2022-11-20T18:00\",\"LocalToTime\":\"2022-11-20 19:50\",\"ToUTCTime\":\"2022-11-20T19:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Sun, 20 Nov\",\"ArrivalDateTxt\":\"Sun, 20 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":18947.19,\"PublishedFareTxt\":\"18,947\",\"ApiResultIndex\":\"22-16-7734457198_1JAIBOMI5679_1048542132283\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"2198b-3beea-0bcf1-195ae\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":14592,\"Tax\":4289,\"YQTax\":0,\"OtherCharges\":3104,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":744,\"CarrierMiscFee\":0,\"MUFee\":370.2,\"intPublishedFare\":18881,\"PublishedFare\":18948,\"PublishedFarePerPax\":4737,\"OfferedFare\":18337.52,\"CommissionEarned\":173.28,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.12,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-7734457198_1JAIBOMI5679_1048542132513\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Instant HOT DEAL\",\"fareremarks\":\"Issues Instantly , Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":92.47,\"apiMarkup\":0,\"IntCommission\":3.47,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":513.73,\"GSTOnMarkUp\":92.47,\"CommEarned\":3.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4289,\"BaseFareCal\":18429.99,\"BaseFare\":14592,\"CommissionEarned\":173.28,\"TDS\":-9.12,\"MF\":60,\"YQ\":0,\"AGST\":744,\"MFT\":10.8,\"OT\":3104,\"MU\":370.2,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":92.47,\"apiMarkup\":0,\"IntCommission\":3.47,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":513.73,\"GSTOnMarkUp\":92.47,\"CommEarned\":3.47,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":173.28,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.47,\"IntAgencyFixMarkUp\":513.73,\"IntTaxOnAgencyFixMarkUp\":92.47,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":92.47,\"PublishFare\":18947.19,\"CostToCustomer\":18947.19,\"BaseFareCal\":18429.99,\"intCommisionEarnedForAgency\":517.19,\"CostToCompany\":18429.99,\"intOfferedFare\":18337.52,\"intPublishFare\":18881,\"TripjackMarkup\":370.2,\"TripjackCommission\":173.28,\"TripjackTDS\":\"9.12\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0JF\"},\"Segments\":[{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-20T19:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2022-11-20T18:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:00\",\"strArrivalDtTime\":\"19:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}}','2022-11-03 12:12:16'),(662,'2c38e-9b2d9-54664-9d0cb','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-678\",\"keyIndex\":10,\"SegFlightNumberArr\":\"I5-678\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-9169805399_1BOMJAII5678_62894791669350\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"15:30\",\"ArrivalTime\":\"17:25\",\"TravelDate\":\"2022-11-05T15:30\",\"LocalFromTime\":\"2022-11-05 15:30\",\"FromUTCTime\":\"2022-11-05T15:30\",\"LocalToTime\":\"2022-11-05 17:25\",\"ToUTCTime\":\"2022-11-05T17:25\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":115,\"DepartureDateTxt\":\"Sat, 05 Nov\",\"ArrivalDateTxt\":\"Sat, 05 Nov\",\"FlightDuration\":\"1h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3223,\"PublishedFareTxt\":\"3,222\",\"ApiResultIndex\":\"22-16-9169805399_1BOMJAII5678_62894791669070\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"2c38e-9b2d9-54664-9d0cb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2362,\"Tax\":651.79,\"YQTax\":0,\"OtherCharges\":453,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":122,\"CarrierMiscFee\":0,\"MUFee\":59.09,\"intPublishedFare\":3013.79,\"PublishedFare\":3223,\"PublishedFarePerPax\":3223,\"OfferedFare\":2926.66,\"CommissionEarned\":28.04,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.48,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-9169805399_1BOMJAII5678_62894791669350\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Instant HOT DEAL\",\"fareremarks\":\"Issues Instantly , Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"CommisionPass\":null,\"intTotalGST\":45.01,\"apiMarkup\":0,\"IntCommission\":0.56,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":250.08,\"GSTOnMarkUp\":45.01,\"CommEarned\":0.56,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":651.79,\"BaseFareCal\":2971.67,\"BaseFare\":2362,\"CommissionEarned\":28.04,\"TDS\":-1.48,\"MF\":15,\"YQ\":0,\"AGST\":122,\"MFT\":2.7,\"OT\":453,\"MU\":59.09,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":45.01,\"apiMarkup\":0,\"IntCommission\":0.56,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":250.08,\"GSTOnMarkUp\":45.01,\"CommEarned\":0.56,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":28.04,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.56,\"IntAgencyFixMarkUp\":250.08,\"IntTaxOnAgencyFixMarkUp\":45.01,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":45.01,\"PublishFare\":3222.31,\"CostToCustomer\":3222.31,\"BaseFareCal\":2971.67,\"intCommisionEarnedForAgency\":250.64,\"CostToCompany\":2971.67,\"intOfferedFare\":2926.66,\"intPublishFare\":3013.79,\"TripjackMarkup\":59.09,\"TripjackCommission\":28.04,\"TripjackTDS\":\"1.48\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02K\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-05T17:25\",\"SegFlightNumber\":\"I5-678\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-05T15:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":115,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:30\",\"strArrivalDtTime\":\"17:25\",\"FlightDuration\":\"1h 55m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-05 03:53:05'),(663,'e38d0-008d0-c6a60-2cf40','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-575\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-575\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-6520294871_0BOMGOIG8575_25590337996344\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"06:10\",\"TravelDate\":\"2022-12-22T05:00\",\"LocalFromTime\":\"2022-12-22 05:00\",\"FromUTCTime\":\"2022-12-22T05:00\",\"LocalToTime\":\"2022-12-22 06:10\",\"ToUTCTime\":\"2022-12-22T06:10\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":70,\"DepartureDateTxt\":\"Thu, 22 Dec\",\"ArrivalDateTxt\":\"Thu, 22 Dec\",\"FlightDuration\":\"1h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":8190,\"PublishedFareTxt\":\"8,189\",\"ApiResultIndex\":\"1-6520294871_0BOMGOIG8575_25590337995724\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"e38d0-008d0-c6a60-2cf40\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6526,\"Tax\":1564.02,\"YQTax\":0,\"OtherCharges\":1370,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":158.62,\"intPublishedFare\":8090.02,\"PublishedFare\":8190,\"PublishedFarePerPax\":4095,\"OfferedFare\":7791.9,\"CommissionEarned\":139.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-7.34,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-6520294871_0BOMGOIG8575_25590337996344\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"CommisionPass\":null,\"intTotalGST\":60.2,\"apiMarkup\":0,\"IntCommission\":2.79,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":334.42,\"GSTOnMarkUp\":60.2,\"CommEarned\":2.79,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1564.02,\"BaseFareCal\":7852.1,\"BaseFare\":6526,\"CommissionEarned\":139.5,\"TDS\":-7.34,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1370,\"MU\":158.62,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":60.2,\"apiMarkup\":0,\"IntCommission\":2.79,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":334.42,\"GSTOnMarkUp\":60.2,\"CommEarned\":2.79,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":139.5,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.79,\"IntAgencyFixMarkUp\":334.42,\"IntTaxOnAgencyFixMarkUp\":60.2,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":60.2,\"PublishFare\":8189.31,\"CostToCustomer\":8189.31,\"BaseFareCal\":7852.1,\"intCommisionEarnedForAgency\":337.21,\"CostToCompany\":7852.1,\"intOfferedFare\":7791.9,\"intPublishFare\":8090.02,\"TripjackMarkup\":158.62,\"TripjackCommission\":139.5,\"TripjackTDS\":\"7.34\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"032\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-12-22T06:10\",\"SegFlightNumber\":\"G8-575\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-22T05:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"05:00\",\"strArrivalDtTime\":\"06:10\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]},{\"keyIndex\":48,\"FlightNumber\":\"SG-487\",\"SegFlightNumberArr\":\"SG-487\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6520294871_2GOIBOMSG487_25589910977147\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:05\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-12-25T17:05\",\"LocalFromTime\":\"2022-12-25 17:05\",\"FromUTCTime\":\"2022-12-25T17:05\",\"LocalToTime\":\"2022-12-25 18:20\",\"ToUTCTime\":\"2022-12-25T18:20\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Sun, 25 Dec\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":11094.94,\"PublishedFareTxt\":\"11,095\",\"ApiResultIndex\":\"4-6520294871_2GOIBOMSG487_25589910977147\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"e38d0-008d0-c6a60-2cf40\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8652,\"Tax\":2569.42,\"YQTax\":0,\"OtherCharges\":1858,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":456,\"CarrierMiscFee\":0,\"MUFee\":220.02,\"intPublishedFare\":11221.42,\"PublishedFare\":11095,\"PublishedFarePerPax\":5548,\"OfferedFare\":10631.52,\"CommissionEarned\":369.88,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.46,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6520294871_2GOIBOMSG487_25589910977147\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":69.56,\"apiMarkup\":0,\"IntCommission\":7.4,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":386.46,\"GSTOnMarkUp\":69.56,\"CommEarned\":7.4,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2569.42,\"BaseFareCal\":10701.08,\"BaseFare\":8652,\"CommissionEarned\":369.88,\"TDS\":-19.46,\"MF\":30,\"YQ\":0,\"AGST\":456,\"MFT\":5.4,\"OT\":1858,\"MU\":220.02,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":69.56,\"apiMarkup\":0,\"IntCommission\":7.4,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":386.46,\"GSTOnMarkUp\":69.56,\"CommEarned\":7.4,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":369.88,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.4,\"IntAgencyFixMarkUp\":386.46,\"IntTaxOnAgencyFixMarkUp\":69.56,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":69.56,\"PublishFare\":11094.94,\"CostToCustomer\":11094.94,\"BaseFareCal\":10701.08,\"intCommisionEarnedForAgency\":393.86,\"CostToCompany\":10701.08,\"intOfferedFare\":10631.52,\"intPublishFare\":11221.42,\"TripjackMarkup\":220.02,\"TripjackCommission\":369.88,\"TripjackTDS\":\"19.46\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0OQ\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-25T18:20\",\"SegFlightNumber\":\"SG-487\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-12-25T17:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"17:05\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}],\"FlightBookingDataInbound\":{\"keyIndex\":48,\"FlightNumber\":\"SG-487\",\"SegFlightNumberArr\":\"SG-487\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6520294871_2GOIBOMSG487_25589910977147\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:05\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-12-25T17:05\",\"LocalFromTime\":\"2022-12-25 17:05\",\"FromUTCTime\":\"2022-12-25T17:05\",\"LocalToTime\":\"2022-12-25 18:20\",\"ToUTCTime\":\"2022-12-25T18:20\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Sun, 25 Dec\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":11094.94,\"PublishedFareTxt\":\"11,095\",\"ApiResultIndex\":\"4-6520294871_2GOIBOMSG487_25589910977147\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"e38d0-008d0-c6a60-2cf40\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":8652,\"Tax\":2569.42,\"YQTax\":0,\"OtherCharges\":1858,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":456,\"CarrierMiscFee\":0,\"MUFee\":220.02,\"intPublishedFare\":11221.42,\"PublishedFare\":11095,\"PublishedFarePerPax\":5548,\"OfferedFare\":10631.52,\"CommissionEarned\":369.88,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.46,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6520294871_2GOIBOMSG487_25589910977147\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"intTotalGST\":69.56,\"apiMarkup\":0,\"IntCommission\":7.4,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":386.46,\"GSTOnMarkUp\":69.56,\"CommEarned\":7.4,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2569.42,\"BaseFareCal\":10701.08,\"BaseFare\":8652,\"CommissionEarned\":369.88,\"TDS\":-19.46,\"MF\":30,\"YQ\":0,\"AGST\":456,\"MFT\":5.4,\"OT\":1858,\"MU\":220.02,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":69.56,\"apiMarkup\":0,\"IntCommission\":7.4,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":386.46,\"GSTOnMarkUp\":69.56,\"CommEarned\":7.4,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":369.88,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.4,\"IntAgencyFixMarkUp\":386.46,\"IntTaxOnAgencyFixMarkUp\":69.56,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":69.56,\"PublishFare\":11094.94,\"CostToCustomer\":11094.94,\"BaseFareCal\":10701.08,\"intCommisionEarnedForAgency\":393.86,\"CostToCompany\":10701.08,\"intOfferedFare\":10631.52,\"intPublishFare\":11221.42,\"TripjackMarkup\":220.02,\"TripjackCommission\":369.88,\"TripjackTDS\":\"19.46\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"0OQ\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-25T18:20\",\"SegFlightNumber\":\"SG-487\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-12-25T17:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"17:05\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\"}}','2022-11-07 14:00:38'),(664,'46','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"https:\\/\\/b2b.svezz.com\\/dashboard\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"1234567\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"https:\\/\\/b2b.svezz.com\\/dashboard\"}','2022-11-07 19:33:38'),(665,'47','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 19:34:19'),(666,'48','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"1234567\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 19:35:08'),(667,'49','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"1234567\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 19:38:29'),(668,'50','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 19:41:54'),(669,'51','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 19:47:14'),(670,'52','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 19:51:14'),(671,'53','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"5000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 19:52:43'),(672,'54','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"6000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 20:03:18'),(673,'55','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"6000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 20:04:21'),(674,'56','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 20:05:32'),(675,'57','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"1234567\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"1234567\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 20:06:53'),(676,'58','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"50000\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"07\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-07 20:07:44'),(677,'73754-6382e-f7143-403bc','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-940\",\"keyIndex\":26,\"SegFlightNumberArr\":\"UK-940\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4380501794_4BOMDELUK940_52093916306004\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"19:45\",\"ArrivalTime\":\"21:55\",\"TravelDate\":\"2022-11-08T19:45\",\"LocalFromTime\":\"2022-11-08 19:45\",\"FromUTCTime\":\"2022-11-08T19:45\",\"LocalToTime\":\"2022-11-08 21:55\",\"ToUTCTime\":\"2022-11-08T21:55\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Tue, 08 Nov\",\"ArrivalDateTxt\":\"Tue, 08 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4022,\"PublishedFareTxt\":\"4,021\",\"ApiResultIndex\":\"21-10-15-2-4380501794_4BOMDELUK940_52093916305864\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"73754-6382e-f7143-403bc\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3365,\"Tax\":782.01,\"YQTax\":0,\"OtherCharges\":378,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":175,\"CarrierMiscFee\":130,\"MUFee\":81.31,\"intPublishedFare\":4147.01,\"PublishedFare\":4022,\"PublishedFarePerPax\":4022,\"OfferedFare\":3696.31,\"CommissionEarned\":369.39,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.44,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4380501794_4BOMDELUK940_52093916306004\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"CommisionPass\":null,\"intTotalGST\":48.4,\"apiMarkup\":0,\"IntCommission\":7.39,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":268.91,\"GSTOnMarkUp\":48.4,\"CommEarned\":7.39,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":782.01,\"BaseFareCal\":3744.71,\"BaseFare\":3365,\"CommissionEarned\":369.39,\"TDS\":-19.44,\"MF\":15,\"YQ\":0,\"AGST\":175,\"MFT\":2.7,\"OT\":378,\"MU\":81.31,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.4,\"apiMarkup\":0,\"IntCommission\":7.39,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":268.91,\"GSTOnMarkUp\":48.4,\"CommEarned\":7.39,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":369.39,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.39,\"IntAgencyFixMarkUp\":268.91,\"IntTaxOnAgencyFixMarkUp\":48.4,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":48.4,\"PublishFare\":4021.01,\"CostToCustomer\":4021.01,\"BaseFareCal\":3744.71,\"intCommisionEarnedForAgency\":276.29,\"CostToCompany\":3744.71,\"intOfferedFare\":3696.31,\"intPublishFare\":4147.01,\"TripjackMarkup\":81.31,\"TripjackCommission\":369.39,\"TripjackTDS\":\"19.44\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02N\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-08T21:55\",\"SegFlightNumber\":\"UK-940\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-08T19:45\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"19:45\",\"strArrivalDtTime\":\"21:55\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-08 01:33:58'),(678,'59','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"123456\",\"CreditDate\":\"08\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-08 10:20:15'),(683,'0d7fa-b2e18-5e200-e66dd','{\"FlightBookingData\":[{\"bookingId\":\"DMCS103800387205\",\"bookingId_TJ\":\"TJS103800387205\",\"FlightNumber\":\"G8-404\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"0d7fa-b2e18-5e200-e66dd\",\"apiTraceId\":\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:20\",\"ArrivalTime\":\"15:30\",\"TravelDate\":\"2022-11-24T10:20\",\"LocalFromTime\":\"2022-11-24 10:20\",\"FromUTCTime\":\"2022-11-24T10:20\",\"LocalToTime\":\"2022-11-24 15:30\",\"ToUTCTime\":\"2022-11-24T15:30\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"Varanasi\",\"GroundTime\":95,\"LAYOVERDuration\":\"1h 35m\",\"FlyingMinutes\":310,\"DepartureDateTxt\":\"Thu, 24 Nov\",\"ArrivalDateTxt\":\"Thu, 24 Nov\",\"FlightDuration\":\"05h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":65,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"27,717\",\"ApiResultIndex\":\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":24437,\"Tax\":3293,\"YQTax\":0,\"OtherCharges\":799,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":1222,\"CarrierMiscFee\":0,\"MUFee\":800,\"intPublishedFare\":27730,\"PublishedFare\":27717.3,\"PublishedFareAgent\":27717.3,\"OfferedFareAgent\":27717.3,\"OfferedFare\":26645,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-5410319267_0DELVNSG8404VNSBOMG8350_274810402287706\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"fareIdentifierSP\":\"CORPORATE\",\"SeatAvailable\":65,\"classOfBooking\":\"BC\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":141.8338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":142.5,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":27717.3,\"CostToAgent\":27717.3,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":3293,\"TotalBaseFare\":27730,\"BaseFareCal\":26664.8,\"BaseFare\":24437,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":1222,\"MFT\":72,\"OT\":799,\"MU\":800,\"YR\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":141.8338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":142.5,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":27717.3,\"CostToAgent\":27717.3,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":50,\"IntCommission\":142.5,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":141.8338983050848,\"PublishFare\":27717.3,\"CostToCustomer\":27717.3,\"BaseFareCal\":26664.8,\"intCommisionEarnedForAgency\":1052.5,\"CostToCompany\":26664.8,\"intOfferedFare\":26645,\"intPublishFare\":27730,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":27717.3,\"CostToAgent\":27717.3,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"714\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2022-11-24T11:40\",\"SegFlightNumber\":\"G8-404\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-24T10:20\",\"TripIndicator\":1,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":1,\"Duration\":80,\"GroundTime\":95,\"NoOfSeatAvailable\":65,\"strDepartureDtTime\":\"10:20\",\"strArrivalDtTime\":\"11:40\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":\"1h 35m\",\"LAYOVERCity\":\"Varanasi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"715\",\"originAirportName\":\"Lal Bahadur Shastri Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji\",\"originCityName\":\"Varanasi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-24T15:30\",\"SegFlightNumber\":\"G8-350\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"VNS\",\"originDepTime\":\"2022-11-24T13:15\",\"TripIndicator\":2,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"SegmentIndicator\":2,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":65,\"strDepartureDtTime\":\"13:15\",\"strArrivalDtTime\":\"15:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[],\"Meal\":[],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"15:00\",\"strTraceId\":\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled 0 - 3 Hrs - Non Refundable, full fare will be forfeited.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":100,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":100,\"ARFT\":5}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":1750,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ACFT\":87.5,\"CCF\":50,\"ACF\":1750,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats, excluding first 3 rows and emergency exit rows\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-23 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":\"7701\",\"intDestinationCityId\":\"18676\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"112\"],\"ForCustomerSession\":[{\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9999977655\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12728\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-08 10:25:50\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"20\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"20\",\"CustomerMemSysId\":[\"20\"],\"flight_booking_customer\":[[\"165\"]],\"SearchTraceId\":\"0d7fa-b2e18-5e200-e66dd\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Delhi (DEL)\",\"Sectors\"],\"to_des\":[\"Mumbai (BOM)\",\"DEL\"],\"departure_date\":[\"24\\/11\\/2022\",\"\"],\"source_city\":[\"DEL\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"BOM\"],\"source\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destination\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"from_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"to_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Delhi (DEL)\",\"Sectors\"],\"to_city\":[\"Mumbai (BOM)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-11-24\"],\"strReturnDate\":\"\",\"sourceCityId\":[7701],\"intCountryCode\":\"IN\",\"destinationCityId\":[18676],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"0d7fa-b2e18-5e200-e66dd\",\"sourceCityAirportCode\":[\"DEL\"],\"destinationCityAirportCode\":[\"BOM\"],\"from\":[\"DEL\"],\"to\":[\"BOM\"],\"sourceCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"destinationCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"24\\/11\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"24 Nov Thu\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-11-08 10:24:21\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"0d7fa-b2e18-5e200-e66dd\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"24\\\\\\/11\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"DEL\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"BOM\\\"],\\\"source\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destination\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Chhatrapati Shivaji (BOM)\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"from_city\\\":[\\\"Delhi (DEL)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Mumbai (BOM)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-11-24\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[7701],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[18676],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"0d7fa-b2e18-5e200-e66dd\\\",\\\"sourceCityAirportCode\\\":[\\\"DEL\\\"],\\\"destinationCityAirportCode\\\":[\\\"BOM\\\"],\\\"from\\\":[\\\"DEL\\\"],\\\"to\\\":[\\\"BOM\\\"],\\\"sourceCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"destinationCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"24\\\\\\/11\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"24 Nov Thu\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-11-08 10:24:21\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS103800387205\\\",\\\"bookingId_TJ\\\":\\\"TJS103800387205\\\",\\\"FlightNumber\\\":\\\"G8-404\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":true,\\\"IsMealIncludes\\\":false,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"0d7fa-b2e18-5e200-e66dd\\\",\\\"apiTraceId\\\":\\\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\\\",\\\"AirlineSysId\\\":\\\"240\\\",\\\"DepartureTime\\\":\\\"10:20\\\",\\\"ArrivalTime\\\":\\\"15:30\\\",\\\"TravelDate\\\":\\\"2022-11-24T10:20\\\",\\\"LocalFromTime\\\":\\\"2022-11-24 10:20\\\",\\\"FromUTCTime\\\":\\\"2022-11-24T10:20\\\",\\\"LocalToTime\\\":\\\"2022-11-24 15:30\\\",\\\"ToUTCTime\\\":\\\"2022-11-24T15:30\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"BC\\\",\\\"LAYOVERCity\\\":\\\"Varanasi\\\",\\\"GroundTime\\\":95,\\\"LAYOVERDuration\\\":\\\"1h 35m\\\",\\\"FlyingMinutes\\\":310,\\\"DepartureDateTxt\\\":\\\"Thu, 24 Nov\\\",\\\"ArrivalDateTxt\\\":\\\"Thu, 24 Nov\\\",\\\"FlightDuration\\\":\\\"05h 10m\\\",\\\"SourcePlaceSysId\\\":\\\"7701\\\",\\\"DestPlaceSysId\\\":\\\"18676\\\",\\\"SourceAirportCode\\\":\\\"DEL\\\",\\\"DestAirportCode\\\":\\\"BOM\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"NoOfSeatAvailable\\\":65,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"27,717\\\",\\\"ApiResultIndex\\\":\\\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":24437,\\\"Tax\\\":3293,\\\"YQTax\\\":0,\\\"OtherCharges\\\":799,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":1222,\\\"CarrierMiscFee\\\":0,\\\"MUFee\\\":800,\\\"intPublishedFare\\\":27730,\\\"PublishedFare\\\":27717.3,\\\"PublishedFareAgent\\\":27717.3,\\\"OfferedFareAgent\\\":27717.3,\\\"OfferedFare\\\":26645,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"1-5410319267_0DELVNSG8404VNSBOMG8350_274810402287706\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"CORPORATE\\\",\\\"fareIdentifierSP\\\":\\\"CORPORATE\\\",\\\"SeatAvailable\\\":65,\\\"classOfBooking\\\":\\\"BC\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":141.8338983050848,\\\"apiMarkup\\\":677.9661016949152,\\\"IntCommission\\\":142.5,\\\"apiTaxOnMarkup\\\":122.03389830508479,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":142.5,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":27717.3,\\\"CostToAgent\\\":27717.3,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":3293,\\\"TotalBaseFare\\\":27730,\\\"BaseFareCal\\\":26664.8,\\\"BaseFare\\\":24437,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":1222,\\\"MFT\\\":72,\\\"OT\\\":799,\\\"MU\\\":800,\\\"YR\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":141.8338983050848,\\\"apiMarkup\\\":677.9661016949152,\\\"IntCommission\\\":142.5,\\\"apiTaxOnMarkup\\\":122.03389830508479,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":142.5,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":27717.3,\\\"CostToAgent\\\":27717.3,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":677.9661016949152,\\\"apiTaxOnMarkup\\\":122.03389830508479,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":50,\\\"IntCommission\\\":142.5,\\\"IntAgencyFixMarkUp\\\":110,\\\"IntTaxOnAgencyFixMarkUp\\\":19.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":141.8338983050848,\\\"PublishFare\\\":27717.3,\\\"CostToCustomer\\\":27717.3,\\\"BaseFareCal\\\":26664.8,\\\"intCommisionEarnedForAgency\\\":1052.5,\\\"CostToCompany\\\":26664.8,\\\"intOfferedFare\\\":26645,\\\"intPublishFare\\\":27730,\\\"TripjackMarkup\\\":800,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":27717.3,\\\"CostToAgent\\\":27717.3,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"714\\\",\\\"originAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"destinationAirportName\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"originCityName\\\":\\\"Delhi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Varanasi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"VNS\\\",\\\"destinationArrTime\\\":\\\"2022-11-24T11:40\\\",\\\"SegFlightNumber\\\":\\\"G8-404\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"BC\\\",\\\"originAirportCode\\\":\\\"DEL\\\",\\\"originDepTime\\\":\\\"2022-11-24T10:20\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":80,\\\"GroundTime\\\":95,\\\"NoOfSeatAvailable\\\":65,\\\"strDepartureDtTime\\\":\\\"10:20\\\",\\\"strArrivalDtTime\\\":\\\"11:40\\\",\\\"FlightDuration\\\":\\\"1h 20m\\\",\\\"LAYOVERDuration\\\":\\\"1h 35m\\\",\\\"LAYOVERCity\\\":\\\"Varanasi\\\",\\\"DepTerminal\\\":\\\"Terminal 2\\\",\\\"ArrTerminal\\\":\\\"\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[],\\\"MEALARRAY\\\":[],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false},{\\\"segmentid\\\":\\\"715\\\",\\\"originAirportName\\\":\\\"Lal Bahadur Shastri Arpt\\\",\\\"destinationAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"originCityName\\\":\\\"Varanasi\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Mumbai\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"BOM\\\",\\\"destinationArrTime\\\":\\\"2022-11-24T15:30\\\",\\\"SegFlightNumber\\\":\\\"G8-350\\\",\\\"AirlineCode\\\":\\\"G8\\\",\\\"AirlineName\\\":\\\"Go First\\\",\\\"FareClass\\\":\\\"BC\\\",\\\"originAirportCode\\\":\\\"VNS\\\",\\\"originDepTime\\\":\\\"2022-11-24T13:15\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":\\\"15 Kg\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":false,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":135,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":65,\\\"strDepartureDtTime\\\":\\\"13:15\\\",\\\"strArrivalDtTime\\\":\\\"15:30\\\",\\\"FlightDuration\\\":\\\"2h 15m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/G8.gif\\\",\\\"BAGGAGEARRAY\\\":[],\\\"MEALARRAY\\\":[],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[],\\\"Meal\\\":[],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"15:00\\\",\\\"strTraceId\\\":\\\"1-5410319267_19DELVNSG8404VNSBOMG8350_274733632416989\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"DEL-BOM\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"If Cancelled 0 - 3 Hrs - Non Refundable, full fare will be forfeited.\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":100,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\\\",\\\"fcs\\\":{\\\"CRF\\\":50,\\\"CRFT\\\":9,\\\"ARF\\\":100,\\\"ARFT\\\":5}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":1750,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 03 Hrs before scheduled departure\\\",\\\"fcs\\\":{\\\"ACFT\\\":87.5,\\\"CCF\\\":50,\\\"ACF\\\":1750,\\\"CCFT\\\":9}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Complimentary seats, excluding first 3 rows and emergency exit rows\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-11-23 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"DEL\\\",\\\"strDestinationAirportCode\\\":\\\"BOM\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"7701\\\",\\\"intDestinationCityId\\\":\\\"18676\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[]],\\\"Baggage\\\":[[]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"9999977655\",\"leadEmail\":\"komalmalhotra0101@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"20\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"Mohammad\",\"passenger-lastname-1\":\"sabir\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Delhi\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"7701\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"12728\",\"Salutation\":\"1\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"CountryCode\":\"91\",\"MobileNo\":\"9999977655\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[],\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"sessionSupportContact\":{\"status\":true,\"data\":{\"MasterDate\":{\"PlanType\":{\"1\":\"Flight\",\"2\":\"Hotel\",\"5\":\"Package\",\"6\":\"Visa\",\"99\":\"Registration\",\"96\":\"Flight Modification\",\"95\":\"Hotel Modification\",\"94\":\"Booking Failed\"},\"MarketType\":{\"1\":\"B2C\",\"2\":\"B2B\"},\"ItemSourceType\":{\"1\":\"Domestic\",\"2\":\"International\"},\"SupportNumber\":[]}},\"message\":\"\"},\"_B2BType\":1,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/12577\\/agentlogo\\/14124\\/logo_1658147861.jpg\",\"paymentMode\":\"2\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"CPAmountWithTax\":0}','2022-11-08 10:26:02'),(684,'60','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"1234\",\"CreditDate\":\"08\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-08 10:59:18'),(689,'9a06b-23d9d-05950-0450a','{\"FlightBookingData\":[{\"bookingId\":\"DMCS106800387274\",\"bookingId_TJ\":\"TJS106800387274\",\"FlightNumber\":\"UK-919\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"SearchTraceId\":\"9a06b-23d9d-05950-0450a\",\"apiTraceId\":\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"22:40\",\"ArrivalTime\":\"07:55\",\"TravelDate\":\"2022-11-17T22:40\",\"LocalFromTime\":\"2022-11-17 22:40\",\"FromUTCTime\":\"2022-11-17T22:40\",\"LocalToTime\":\"2022-11-18 07:55\",\"ToUTCTime\":\"2022-11-18T07:55\",\"IsDirect\":0,\"FareClass\":\"O\",\"LAYOVERCity\":\"Ahmedabad\",\"GroundTime\":410,\"LAYOVERDuration\":\"6h 50m\",\"FlyingMinutes\":555,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"09h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":null,\"PublishedFareTxt\":\"5,677\",\"ApiResultIndex\":\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"ICSourceSysId\":7,\"logo\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":\"1\",\"BaseFare\":3302,\"Tax\":2388,\"YQTax\":0,\"OtherCharges\":678,\"Discount\":0,\"ServiceFee\":400,\"ManagementFeeTax\":72,\"AirlineGSTComponent\":178,\"CarrierMiscFee\":260,\"MUFee\":800,\"intPublishedFare\":5690,\"PublishedFare\":5677.3,\"PublishedFareAgent\":5677.3,\"OfferedFareAgent\":5677.3,\"OfferedFare\":4605,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":\"0\",\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277118320551786\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"fareIdentifierSP\":\"PUBLISHED\",\"SeatAvailable\":null,\"classOfBooking\":\"O\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":141.8338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":142.5,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"CommEarnedAgent\":0,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5677.3,\"CostToAgent\":5677.3,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":2388,\"TotalBaseFare\":5690,\"BaseFareCal\":4624.8,\"BaseFare\":3302,\"CommissionEarned\":285,\"TDS\":0,\"MF\":400,\"YQ\":0,\"AGST\":178,\"MFT\":72,\"OT\":678,\"MU\":800,\"YR\":260,\"AddiTaxOnMarkup\":1.8,\"AddiMarkup\":10,\"intTotalGST\":141.8338983050848,\"apiMarkup\":677.9661016949152,\"IntCommission\":142.5,\"apiTaxOnMarkup\":122.03389830508479,\"FixedMarkUp\":110,\"GSTOnMarkUp\":19.8,\"CommEarned\":142.5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AgentMarkUp\":0,\"GSTOnAgentMarkUp\":0,\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5677.3,\"CostToAgent\":5677.3,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\"}],\"newFare\":0,\"oldFare\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"arrMarkUps\":{\"apiMarkup\":677.9661016949152,\"apiTaxOnMarkup\":122.03389830508479,\"IntNetCommission\":285,\"IntCommissionValInPercentage\":50,\"IntCommission\":142.5,\"IntAgencyFixMarkUp\":110,\"IntTaxOnAgencyFixMarkUp\":19.8,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":141.8338983050848,\"PublishFare\":5677.3,\"CostToCustomer\":5677.3,\"BaseFareCal\":4624.8,\"intCommisionEarnedForAgency\":1052.5,\"CostToCompany\":4624.8,\"intOfferedFare\":4605,\"intPublishFare\":5690,\"TripjackMarkup\":800,\"TripjackCommission\":285,\"TripjackTDS\":\"0\",\"BR\":\"=\",\"Agencycommission\":142.5,\"TotalCommssionVal_ag\":0,\"AdminComminAmount_ag\":0,\"totalAgentMarkUp\":0,\"intGSTOnAgentFixMarkUp\":0,\"AgentB2CEarning\":0,\"CostToAgentCustomer\":5677.3,\"CostToAgent\":5677.3,\"AddiMarkup\":10,\"AddiTaxOnMarkup\":1.8,\"IntAdddimarkup\":10,\"TDSApplied\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}},\"Segments\":[{\"segmentid\":\"664\",\"originAirportName\":\"Chhatrapati Shivaji\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2022-11-17T23:55\",\"SegFlightNumber\":\"UK-919\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-17T22:40\",\"TripIndicator\":1,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"SegmentIndicator\":1,\"Duration\":75,\"GroundTime\":410,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"22:40\",\"strArrivalDtTime\":\"23:55\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":\"6h 50m\",\"LAYOVERCity\":\"Ahmedabad\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"SegmentNumber\":0,\"isReturnSegment\":false},{\"segmentid\":\"665\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-18T07:55\",\"SegFlightNumber\":\"UK-926\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"O\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2022-11-18T06:45\",\"TripIndicator\":2,\"Baggage\":\"1Piece\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"SegmentIndicator\":2,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"06:45\",\"strArrivalDtTime\":\"07:55\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/b2b.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"BAGGAGEARRAY\":[],\"MEALARRAY\":[{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"665\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"SegmentNumber\":1,\"isReturnSegment\":false}],\"Baggage\":[],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Vegan Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"AVML\",\"Price\":0,\"Description\":\"Hindu Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VJML\",\"Price\":0,\"Description\":\"Jain Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VLML\",\"Price\":0,\"Description\":\"Lacto-Ovo Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"FPML\",\"Price\":0,\"Description\":\"Fruit Platter Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"MOML\",\"Price\":0,\"Description\":\"Moslem Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"HNML\",\"Price\":0,\"Description\":\"Hindu Non-Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"SFML\",\"Price\":0,\"Description\":\"Sea Food Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"DBML\",\"Price\":0,\"Description\":\"Diabetic Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NLML\",\"Price\":0,\"Description\":\"Low Lactose Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"CHML\",\"Price\":0,\"Description\":\"Child Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"BBML\",\"Price\":0,\"Description\":\"Baby Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"BLML\",\"Price\":0,\"Description\":\"Bland Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"GFML\",\"Price\":0,\"Description\":\"Gluten Intolerant Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"KSML\",\"Price\":0,\"Description\":\"Kosher Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LCML\",\"Price\":0,\"Description\":\"Low Calorie Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LFML\",\"Price\":0,\"Description\":\"Low Fat Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LSML\",\"Price\":0,\"Description\":\"ow Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"RVML\",\"Price\":0,\"Description\":\"Vegetarian Raw Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"VOML\",\"Price\":0,\"Description\":\"Vegetarian Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"PFML\",\"Price\":0,\"Description\":\"Peanut Free Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"ORML\",\"Price\":0,\"Description\":\"Oriental Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NSML\",\"Price\":0,\"Description\":\"No Salt Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"PRML\",\"Price\":0,\"Description\":\"Low Purine Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"LPML\",\"Price\":0,\"Description\":\"Low Protein Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"HFML\",\"Price\":0,\"Description\":\"High Fiber Meal\"},{\"Currency\":\"INR\",\"key\":\"664\",\"Code\":\"NFML\",\"Price\":0,\"Description\":\"No Fish Meal\"}],\"Ispassengercity\":false,\"Ispassengeraddress\":false,\"isGSTMandatory\":false,\"IsPassMandatory\":false,\"IsPassExpiry\":false,\"IsPassIssue\":false,\"IsPassDateOfBirth\":false,\"isAdobrMandatory\":false,\"isCdobrMandatory\":false,\"isIdobrMandatory\":true,\"isSeatApplicable\":true,\"isSessionTime\":\"13:00\",\"strTraceId\":\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\",\"CancelCharge\":\"0\",\"FareRuleData\":{\"fareRule\":{\"BOM-DEL\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"Only Statutory Taxes will be refunded\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CRF\":50,\"CRFT\":9,\"ARF\":3920,\"ARFT\":196}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3920,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure at a charge of INR 3920 per sector per Passenger\",\"fcs\":{\"ACFT\":196,\"CCF\":50,\"ACF\":3920,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"DEL\",\"intMemberCount\":1,\"intSourceCityId\":\"18676\",\"intDestinationCityId\":\"7701\",\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"}}],\"flight_booking_id_Arr\":[\"113\"],\"ForCustomerSession\":[{\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"0\",\"Contacts\":\"9999977655\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12728\",\"Address\":\"\",\"CityTitle\":\"\",\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-08 11:04:11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"20\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":null,\"CustomerSysId\":\"20\",\"CustomerMemSysId\":[\"20\"],\"flight_booking_customer\":[[\"166\"]],\"SearchTraceId\":\"9a06b-23d9d-05950-0450a\",\"sessionFlightSearchParams\":{\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"module\":\"default\",\"route\":\"1\",\"from_des\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_des\":[\"Delhi (DEL)\",\"DEL\"],\"departure_date\":[\"17\\/11\\/2022\",\"\"],\"source_city\":[\"BOM\"],\"ContSysId\":[\"101\",\"101\"],\"destination_city\":[\"DEL\"],\"source\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destination\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"from_mytrip_city\":[\" IN - Chhatrapati Shivaji (BOM)\"],\"to_mytrip_city\":[\" IN - Delhi Indira Gandhi Intl (DEL)\"],\"departure_datesf\":[\"\"],\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"from_city\":[\"Mumbai (BOM)\",\"Sectors\"],\"to_city\":[\"Delhi (DEL)\",\"DEL\"],\"interNationalSearch\":false,\"strDepatureDateSF\":\"--\",\"strDepatureDate\":[\"2022-11-17\"],\"strReturnDate\":\"\",\"sourceCityId\":[18676],\"intCountryCode\":\"IN\",\"destinationCityId\":[7701],\"interNationalSearchArray\":[false],\"FlightTraceId\":\"9a06b-23d9d-05950-0450a\",\"sourceCityAirportCode\":[\"BOM\"],\"destinationCityAirportCode\":[\"DEL\"],\"from\":[\"BOM\"],\"to\":[\"DEL\"],\"sourceCityText\":[\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\"],\"destinationCityText\":[\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\"],\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":[\"17\\/11\\/2022\",\"\"],\"return_dates\":\"\",\"PreferredAirline\":null,\"DepatureDateMobile\":[\"17 Nov Thu\"],\"ReturnDateMobile\":\"\",\"SearchTime\":\"2022-11-08 11:02:07\",\"IsChangeSearch\":1},\"SelectedBaggSessionNew\":null,\"SelectedMealSessionNew\":null,\"selectedSeatSession\":null,\"SeatDynamic\":0,\"genrateFlightQuery\":[],\"post\":{\"controller\":\"flight\",\"action\":\"save-passenger-details-tripjack\",\"module\":\"default\",\"FlightTraceId\":\"9a06b-23d9d-05950-0450a\",\"sessionFlightSearchParams\":\"{\\\"controller\\\":\\\"flight\\\",\\\"action\\\":\\\"flightsearchdata\\\",\\\"module\\\":\\\"default\\\",\\\"route\\\":\\\"1\\\",\\\"from_des\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_des\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"departure_date\\\":[\\\"17\\\\\\/11\\\\\\/2022\\\",\\\"\\\"],\\\"source_city\\\":[\\\"BOM\\\"],\\\"ContSysId\\\":[\\\"101\\\",\\\"101\\\"],\\\"destination_city\\\":[\\\"DEL\\\"],\\\"source\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"destination\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"from_mytrip_city\\\":[\\\" IN - Chhatrapati Shivaji (BOM)\\\"],\\\"to_mytrip_city\\\":[\\\" IN - Delhi Indira Gandhi Intl (DEL)\\\"],\\\"departure_datesf\\\":[\\\"\\\"],\\\"adults\\\":\\\"1\\\",\\\"childs\\\":\\\"0\\\",\\\"infants\\\":\\\"0\\\",\\\"class\\\":\\\"2\\\",\\\"from_city\\\":[\\\"Mumbai (BOM)\\\",\\\"Sectors\\\"],\\\"to_city\\\":[\\\"Delhi (DEL)\\\",\\\"DEL\\\"],\\\"interNationalSearch\\\":false,\\\"strDepatureDateSF\\\":\\\"--\\\",\\\"strDepatureDate\\\":[\\\"2022-11-17\\\"],\\\"strReturnDate\\\":\\\"\\\",\\\"sourceCityId\\\":[18676],\\\"intCountryCode\\\":\\\"IN\\\",\\\"destinationCityId\\\":[7701],\\\"interNationalSearchArray\\\":[false],\\\"FlightTraceId\\\":\\\"9a06b-23d9d-05950-0450a\\\",\\\"sourceCityAirportCode\\\":[\\\"BOM\\\"],\\\"destinationCityAirportCode\\\":[\\\"DEL\\\"],\\\"from\\\":[\\\"BOM\\\"],\\\"to\\\":[\\\"DEL\\\"],\\\"sourceCityText\\\":[\\\"Mumbai, IN - Chhatrapati Shivaji (BOM), India\\\"],\\\"destinationCityText\\\":[\\\"Delhi, IN - Delhi Indira Gandhi Intl (DEL), India\\\"],\\\"flight_class\\\":\\\"2\\\",\\\"child\\\":\\\"0\\\",\\\"infant\\\":\\\"0\\\",\\\"departure_dates\\\":[\\\"17\\\\\\/11\\\\\\/2022\\\",\\\"\\\"],\\\"return_dates\\\":\\\"\\\",\\\"PreferredAirline\\\":null,\\\"DepatureDateMobile\\\":[\\\"17 Nov Thu\\\"],\\\"ReturnDateMobile\\\":\\\"\\\",\\\"SearchTime\\\":\\\"2022-11-08 11:02:07\\\",\\\"IsChangeSearch\\\":1}\",\"checkEditCustomerData\":\"0\",\"TotalTravellers\":\"{\\\"1\\\":{\\\"Title\\\":\\\"Adult\\\",\\\"paxType\\\":1,\\\"intPaxCount\\\":1}}\",\"intOutBoundId\":\"[{\\\"bookingId\\\":\\\"DMCS106800387274\\\",\\\"bookingId_TJ\\\":\\\"TJS106800387274\\\",\\\"FlightNumber\\\":\\\"UK-919\\\",\\\"AirlineName\\\":\\\"Vistara\\\",\\\"AirlineCode\\\":\\\"UK\\\",\\\"AirInvenSysId\\\":0,\\\"IsLCC\\\":false,\\\"IsMealIncludes\\\":true,\\\"IsBagIncludes\\\":true,\\\"IsRefundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"SearchTraceId\\\":\\\"9a06b-23d9d-05950-0450a\\\",\\\"apiTraceId\\\":\\\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\\\",\\\"AirlineSysId\\\":\\\"539\\\",\\\"DepartureTime\\\":\\\"22:40\\\",\\\"ArrivalTime\\\":\\\"07:55\\\",\\\"TravelDate\\\":\\\"2022-11-17T22:40\\\",\\\"LocalFromTime\\\":\\\"2022-11-17 22:40\\\",\\\"FromUTCTime\\\":\\\"2022-11-17T22:40\\\",\\\"LocalToTime\\\":\\\"2022-11-18 07:55\\\",\\\"ToUTCTime\\\":\\\"2022-11-18T07:55\\\",\\\"IsDirect\\\":0,\\\"FareClass\\\":\\\"O\\\",\\\"LAYOVERCity\\\":\\\"Ahmedabad\\\",\\\"GroundTime\\\":410,\\\"LAYOVERDuration\\\":\\\"6h 50m\\\",\\\"FlyingMinutes\\\":555,\\\"DepartureDateTxt\\\":\\\"Thu, 17 Nov\\\",\\\"ArrivalDateTxt\\\":\\\"Fri, 18 Nov\\\",\\\"FlightDuration\\\":\\\"09h 15m\\\",\\\"SourcePlaceSysId\\\":\\\"18676\\\",\\\"DestPlaceSysId\\\":\\\"7701\\\",\\\"SourceAirportCode\\\":\\\"BOM\\\",\\\"DestAirportCode\\\":\\\"DEL\\\",\\\"StopCount\\\":\\\"1 Stop(s)\\\",\\\"Stops\\\":1,\\\"NoOfSeatAvailable\\\":null,\\\"TotalFlightMembers\\\":1,\\\"CurrencyType\\\":1,\\\"PublishedFare\\\":null,\\\"PublishedFareTxt\\\":\\\"5,677\\\",\\\"ApiResultIndex\\\":\\\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\\\",\\\"JourneyType\\\":1,\\\"TripType\\\":\\\"1\\\",\\\"IsInternational\\\":\\\"\\\",\\\"ICSourceSysId\\\":7,\\\"logo\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/UK.gif\\\",\\\"FairRules\\\":{\\\"Currency\\\":\\\"INR\\\",\\\"CurrencyRate\\\":\\\"1\\\",\\\"currencySysId\\\":\\\"1\\\",\\\"BaseFare\\\":3302,\\\"Tax\\\":2388,\\\"YQTax\\\":0,\\\"OtherCharges\\\":678,\\\"Discount\\\":0,\\\"ServiceFee\\\":400,\\\"ManagementFeeTax\\\":72,\\\"AirlineGSTComponent\\\":178,\\\"CarrierMiscFee\\\":260,\\\"MUFee\\\":800,\\\"intPublishedFare\\\":5690,\\\"PublishedFare\\\":5677.3,\\\"PublishedFareAgent\\\":5677.3,\\\"OfferedFareAgent\\\":5677.3,\\\"OfferedFare\\\":4605,\\\"PLBEarned\\\":0,\\\"IncentiveEarned\\\":0,\\\"TdsOnPLB\\\":\\\"0\\\",\\\"TdsOnIncentive\\\":0,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"Refundable\\\":1,\\\"IsRefundableTxt\\\":\\\"Refundable\\\",\\\"PriceID\\\":\\\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277118320551786\\\",\\\"IsGSTRequired\\\":false,\\\"fareIdentifier\\\":\\\"PUBLISHED\\\",\\\"fareIdentifierSP\\\":\\\"PUBLISHED\\\",\\\"SeatAvailable\\\":null,\\\"classOfBooking\\\":\\\"O\\\",\\\"FareClass\\\":\\\"ECONOMY\\\",\\\"intTotalGST\\\":141.8338983050848,\\\"apiMarkup\\\":677.9661016949152,\\\"IntCommission\\\":142.5,\\\"apiTaxOnMarkup\\\":122.03389830508479,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":142.5,\\\"CommEarnedAgent\\\":0,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5677.3,\\\"CostToAgent\\\":5677.3,\\\"FareBreakdown\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"PassengerType\\\":1,\\\"PassengerCount\\\":\\\"1\\\",\\\"TaxIN\\\":2388,\\\"TotalBaseFare\\\":5690,\\\"BaseFareCal\\\":4624.8,\\\"BaseFare\\\":3302,\\\"CommissionEarned\\\":285,\\\"TDS\\\":0,\\\"MF\\\":400,\\\"YQ\\\":0,\\\"AGST\\\":178,\\\"MFT\\\":72,\\\"OT\\\":678,\\\"MU\\\":800,\\\"YR\\\":260,\\\"AddiTaxOnMarkup\\\":1.8,\\\"AddiMarkup\\\":10,\\\"intTotalGST\\\":141.8338983050848,\\\"apiMarkup\\\":677.9661016949152,\\\"IntCommission\\\":142.5,\\\"apiTaxOnMarkup\\\":122.03389830508479,\\\"FixedMarkUp\\\":110,\\\"GSTOnMarkUp\\\":19.8,\\\"CommEarned\\\":142.5,\\\"GSTonComm\\\":0,\\\"intGTXMarkUp\\\":0,\\\"GTXMarkUpGST\\\":0,\\\"AgentMarkUp\\\":0,\\\"GSTOnAgentMarkUp\\\":0,\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5677.3,\\\"CostToAgent\\\":5677.3,\\\"AdditionalTxnFeeOfrd\\\":0,\\\"AdditionalTxnFeePub\\\":0,\\\"PGCharge\\\":0,\\\"Baggage\\\":\\\"1Piece\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\"}],\\\"newFare\\\":0,\\\"oldFare\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1},\\\"arrMarkUps\\\":{\\\"apiMarkup\\\":677.9661016949152,\\\"apiTaxOnMarkup\\\":122.03389830508479,\\\"IntNetCommission\\\":285,\\\"IntCommissionValInPercentage\\\":50,\\\"IntCommission\\\":142.5,\\\"IntAgencyFixMarkUp\\\":110,\\\"IntTaxOnAgencyFixMarkUp\\\":19.8,\\\"intGTXMarkUp\\\":0,\\\"intSTaxOnGTXMarkUp\\\":0,\\\"intTotalGST\\\":141.8338983050848,\\\"PublishFare\\\":5677.3,\\\"CostToCustomer\\\":5677.3,\\\"BaseFareCal\\\":4624.8,\\\"intCommisionEarnedForAgency\\\":1052.5,\\\"CostToCompany\\\":4624.8,\\\"intOfferedFare\\\":4605,\\\"intPublishFare\\\":5690,\\\"TripjackMarkup\\\":800,\\\"TripjackCommission\\\":285,\\\"TripjackTDS\\\":\\\"0\\\",\\\"BR\\\":\\\"=\\\",\\\"Agencycommission\\\":142.5,\\\"TotalCommssionVal_ag\\\":0,\\\"AdminComminAmount_ag\\\":0,\\\"totalAgentMarkUp\\\":0,\\\"intGSTOnAgentFixMarkUp\\\":0,\\\"AgentB2CEarning\\\":0,\\\"CostToAgentCustomer\\\":5677.3,\\\"CostToAgent\\\":5677.3,\\\"AddiMarkup\\\":10,\\\"AddiTaxOnMarkup\\\":1.8,\\\"IntAdddimarkup\\\":10,\\\"TDSApplied\\\":0,\\\"TaxSettingDetail\\\":{\\\"TaxName\\\":\\\"On Markup\\\",\\\"TaxPercentage\\\":18,\\\"TaxType\\\":2,\\\"Tax\\\":1}}},\\\"Segments\\\":[{\\\"segmentid\\\":\\\"664\\\",\\\"originAirportName\\\":\\\"Chhatrapati Shivaji\\\",\\\"destinationAirportName\\\":\\\"Sardar Vallabh Bhai Patel Intl Arpt\\\",\\\"originCityName\\\":\\\"Mumbai\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Ahmedabad\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"AMD\\\",\\\"destinationArrTime\\\":\\\"2022-11-17T23:55\\\",\\\"SegFlightNumber\\\":\\\"UK-919\\\",\\\"AirlineCode\\\":\\\"UK\\\",\\\"AirlineName\\\":\\\"Vistara\\\",\\\"FareClass\\\":\\\"O\\\",\\\"originAirportCode\\\":\\\"BOM\\\",\\\"originDepTime\\\":\\\"2022-11-17T22:40\\\",\\\"TripIndicator\\\":1,\\\"Baggage\\\":\\\"1Piece\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":true,\\\"SegmentIndicator\\\":1,\\\"Duration\\\":75,\\\"GroundTime\\\":410,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"22:40\\\",\\\"strArrivalDtTime\\\":\\\"23:55\\\",\\\"FlightDuration\\\":\\\"1h 15m\\\",\\\"LAYOVERDuration\\\":\\\"6h 50m\\\",\\\"LAYOVERCity\\\":\\\"Ahmedabad\\\",\\\"DepTerminal\\\":\\\"Terminal 2\\\",\\\"ArrTerminal\\\":\\\"Terminal 1\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/UK.gif\\\",\\\"BAGGAGEARRAY\\\":[],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegan Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"AVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VJML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Lacto-Ovo Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"MOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Moslem Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"HNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Non-Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"SFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Sea Food Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Diabetic Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Lactose Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Child Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"BBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Baby Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"BLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Bland Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"GFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Gluten Intolerant Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"KSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kosher Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LCML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Calorie Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Fat Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"ow Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"RVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Raw Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"PFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Peanut Free Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"ORML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"PRML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Purine Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Protein Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"HFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"High Fiber Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Fish Meal\\\"}],\\\"SegmentNumber\\\":0,\\\"isReturnSegment\\\":false},{\\\"segmentid\\\":\\\"665\\\",\\\"originAirportName\\\":\\\"Sardar Vallabh Bhai Patel Intl Arpt\\\",\\\"destinationAirportName\\\":\\\"Delhi Indira Gandhi Intl\\\",\\\"originCityName\\\":\\\"Ahmedabad\\\",\\\"originCountryName\\\":\\\"India\\\",\\\"destinationCityName\\\":\\\"Delhi\\\",\\\"destinationCountryName\\\":\\\"India\\\",\\\"destinationAirportCode\\\":\\\"DEL\\\",\\\"destinationArrTime\\\":\\\"2022-11-18T07:55\\\",\\\"SegFlightNumber\\\":\\\"UK-926\\\",\\\"AirlineCode\\\":\\\"UK\\\",\\\"AirlineName\\\":\\\"Vistara\\\",\\\"FareClass\\\":\\\"O\\\",\\\"originAirportCode\\\":\\\"AMD\\\",\\\"originDepTime\\\":\\\"2022-11-18T06:45\\\",\\\"TripIndicator\\\":2,\\\"Baggage\\\":\\\"1Piece\\\",\\\"CabinBaggage\\\":\\\"7 Kg\\\",\\\"IsBaggage\\\":true,\\\"IsMealIncludes\\\":true,\\\"SegmentIndicator\\\":2,\\\"Duration\\\":70,\\\"GroundTime\\\":0,\\\"NoOfSeatAvailable\\\":null,\\\"strDepartureDtTime\\\":\\\"06:45\\\",\\\"strArrivalDtTime\\\":\\\"07:55\\\",\\\"FlightDuration\\\":\\\"1h 10m\\\",\\\"LAYOVERDuration\\\":null,\\\"LAYOVERCity\\\":\\\"\\\",\\\"DepTerminal\\\":\\\"Terminal 1\\\",\\\"ArrTerminal\\\":\\\"Terminal 3\\\",\\\"filePath\\\":\\\"https:\\\\\\/\\\\\\/b2b.svezz.com\\\\\\/public\\\\\\/upload\\\\\\/AirlineLogo\\\\\\/UK.gif\\\",\\\"BAGGAGEARRAY\\\":[],\\\"MEALARRAY\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegan Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"AVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"VJML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"VLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Lacto-Ovo Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"MOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Moslem Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"HNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Non-Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"SFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Sea Food Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Diabetic Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"NLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Lactose Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Child Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"BBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Baby Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"BLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Bland Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"GFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Gluten Intolerant Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"KSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kosher Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"LCML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Calorie Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"LFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Fat Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"LSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"ow Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"RVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Raw Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"VOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"PFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Peanut Free Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"ORML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"NSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"PRML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Purine Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"LPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Protein Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"HFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"High Fiber Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"665\\\",\\\"Code\\\":\\\"NFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Fish Meal\\\"}],\\\"SegmentNumber\\\":1,\\\"isReturnSegment\\\":false}],\\\"Baggage\\\":[],\\\"Meal\\\":[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegan Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"AVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VJML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Lacto-Ovo Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"MOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Moslem Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"HNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Non-Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"SFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Sea Food Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Diabetic Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Lactose Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Child Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"BBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Baby Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"BLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Bland Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"GFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Gluten Intolerant Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"KSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kosher Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LCML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Calorie Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Fat Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"ow Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"RVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Raw Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"PFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Peanut Free Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"ORML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"PRML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Purine Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Protein Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"HFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"High Fiber Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Fish Meal\\\"}],\\\"Ispassengercity\\\":false,\\\"Ispassengeraddress\\\":false,\\\"isGSTMandatory\\\":false,\\\"IsPassMandatory\\\":false,\\\"IsPassExpiry\\\":false,\\\"IsPassIssue\\\":false,\\\"IsPassDateOfBirth\\\":false,\\\"isAdobrMandatory\\\":false,\\\"isCdobrMandatory\\\":false,\\\"isIdobrMandatory\\\":true,\\\"isSeatApplicable\\\":true,\\\"isSessionTime\\\":\\\"13:00\\\",\\\"strTraceId\\\":\\\"15-2-10-9706951477_0BOMAMDUK919AMDDELUK926_277001938577536\\\",\\\"CancelCharge\\\":\\\"0\\\",\\\"FareRuleData\\\":{\\\"fareRule\\\":{\\\"BOM-DEL\\\":{\\\"fr\\\":{\\\"NO_SHOW\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"Only Statutory Taxes will be refunded\\\"}},\\\"DATECHANGE\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3920,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"+ Fare Difference __nls__Changes permitted 04 Hrs before scheduled departure\\\",\\\"fcs\\\":{\\\"CRF\\\":50,\\\"CRFT\\\":9,\\\"ARF\\\":3920,\\\"ARFT\\\":196}}},\\\"CANCELLATION\\\":{\\\"DEFAULT\\\":{\\\"amount\\\":3920,\\\"additionalFee\\\":50,\\\"policyInfo\\\":\\\"__nls__Cancellation permitted 04 Hrs before scheduled departure at a charge of INR 3920 per sector per Passenger\\\",\\\"fcs\\\":{\\\"ACFT\\\":196,\\\"CCF\\\":50,\\\"ACF\\\":3920,\\\"CCFT\\\":9}}},\\\"SEAT_CHARGEABLE\\\":{\\\"DEFAULT\\\":{\\\"policyInfo\\\":\\\"\\\"}}}}},\\\"status\\\":{\\\"success\\\":true,\\\"httpStatus\\\":200}},\\\"arrCommonInsVariables\\\":{\\\"strTraceId\\\":\\\"\\\",\\\"localFromDateTime\\\":\\\"2022-11-16 12:00\\\",\\\"localToDateTime\\\":\\\"1970-01-01 05:30\\\",\\\"strSourceAirportCode\\\":\\\"BOM\\\",\\\"strDestinationAirportCode\\\":\\\"DEL\\\",\\\"intMemberCount\\\":1,\\\"intSourceCityId\\\":\\\"18676\\\",\\\"intDestinationCityId\\\":\\\"7701\\\",\\\"JourneyType\\\":2,\\\"TripType\\\":\\\"1\\\",\\\"interNationalSearch\\\":\\\"\\\"}}]\",\"SSRArrIds\":\"{\\\"Meal\\\":[[{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VGML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegan Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"AVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VJML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Jain Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Lacto-Ovo Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"FPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Fruit Platter Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"MOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Moslem Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"HNML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Hindu Non-Veg Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"SFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Sea Food Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"DBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Diabetic Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Lactose Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"CHML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Child Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"BBML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Baby Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"BLML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Bland Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"GFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Gluten Intolerant Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"KSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Kosher Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LCML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Calorie Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Fat Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"ow Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"RVML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Raw Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"VOML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Vegetarian Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"PFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Peanut Free Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"ORML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Oriental Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NSML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Salt Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"PRML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Purine Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"LPML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"Low Protein Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"HFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"High Fiber Meal\\\"},{\\\"Currency\\\":\\\"INR\\\",\\\"key\\\":\\\"664\\\",\\\"Code\\\":\\\"NFML\\\",\\\"Price\\\":0,\\\"Description\\\":\\\"No Fish Meal\\\"}]],\\\"Baggage\\\":[[]],\\\"SeatPreference\\\":[]}\",\"SelectedBaggSessionNew\":\"\",\"SelectedMealSessionNew\":\"\",\"selectedSeatSession\":\"\",\"ExtraMarkup\":\"\",\"SeatDynamic\":\"\",\"countryCode\":\"91\",\"leadMobile\":\"9999977655\",\"leadEmail\":\"komalmalhotra0101@gmail.com\",\"paxType-1\":\"1\",\"relation-1\":\"0\",\"familyNumber\":\"1\",\"CustomerSysId-1\":\"20\",\"passenger-salutation-1\":\"1\",\"passenger-firstname-1\":\"Mohammad\",\"passenger-lastname-1\":\"sabir\",\"passenger-nationality-1\":\"IN\",\"passenger-PassportNo-1\":\"\",\"passenger-passporIssue-1\":\"__\\/__\\/____\",\"passenger-PassportExpiry-1\":\"__\\/__\\/____\",\"passenger-city-name-1\":\"Delhi\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"7701\",\"passenger-country-1\":\"0\",\"passenger-countryName-1\":\"\",\"SelectMeals\":[\"\",\"\"],\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\",\"isgstapply\":\"0\",\"countryCodeISO\":\"IN\"},\"apiData\":{\"AgencySysId\":\"12728\",\"Salutation\":\"1\",\"EmailId\":\"komalmalhotra0101@gmail.com\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"CountryCode\":\"91\",\"MobileNo\":\"9999977655\",\"Relation\":9,\"B2B\":true},\"apiDataMember\":[],\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"sessionSupportContact\":null,\"_B2BType\":null,\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"_UserPicPath\":null,\"paymentMode\":\"2\",\"usewallet\":0,\"currentcreditBalance\":0,\"IsCancellationProtection\":0,\"CencelattionData\":null,\"gstvalidate\":{\"SGST\":true,\"CGST\":true,\"IGST\":false,\"client\":0,\"agency\":0},\"CPAmountWithTax\":0}','2022-11-08 11:04:21'),(690,'61','{\"_sessiondata\":{\"EmailId\":\"jitendra@catpl.co.in\",\"UserSysId\":\"35656\",\"CustomerSysId\":\"276733\",\"AgencySysId\":\"33779\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Jitendra\",\"LastName\":\"Singh\",\"Password_cu\":\"\",\"AgencyName\":\"Jitendra Travel Agent\",\"AgencyCode\":\"99557\",\"ContactNo1\":\"9958049006\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"DFC68F31-9E9E-48E6-9A24-20584391BB73\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"100\",\"RefrenceNo\":\"1234\",\"CreditDate\":\"09\\/11\\/2022\",\"Remark\":\"test\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-09 14:31:57'),(691,'62','{\"_sessiondata\":{\"EmailId\":\"komalmalhotra0101@gmail.com\",\"UserSysId\":\"14124\",\"CustomerSysId\":\"198799\",\"AgencySysId\":\"12728\",\"MasterAgencySysId\":\"12577\",\"SuperAgencySysId\":\"0\",\"FirstName\":\"Mohammad\",\"LastName\":\"sabir\",\"Password_cu\":\"\",\"AgencyName\":\"Komal Test\",\"AgencyCode\":\"13021\",\"ContactNo1\":\"9999977655\",\"MarkupType\":\"0\",\"Markup\":\"0\",\"SecurityKey\":\"EEF4EAFE-FA62-4F54-AEDF-F85C6383B137\",\"Address\":\"\",\"PinCode\":\"\"},\"_getAgencyRolePermission\":[{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Dashboard\",\"val\":\"MOD01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"dashboard\",\"ModuleName\":\"dashboard\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"Staff\",\"val\":\"STA01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"staff\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD02\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flights\",\"val\":\"SRC01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"flight\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"markup\",\"IsActive\":\"1\",\"Title\":\"Markup\",\"val\":\"SET01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"markup\",\"ModuleName\":\"default\",\"ModuleType\":\"1\",\"ParentCode\":\"MOD06\"},{\"ControllerName\":\"deposit\",\"IsActive\":\"1\",\"Title\":\"Deposit Payment\",\"val\":\"FIN01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"finance\\/deposit\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Booking\",\"val\":\"BOK01\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Amendment\",\"val\":\"BOK02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"flight\",\"IsActive\":\"1\",\"Title\":\"Flight Checkin\",\"val\":\"BOK03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/flight\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"3\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Booking\",\"val\":\"BOK04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Amendment\",\"val\":\"BOK05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/amendment\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotel Checkin\",\"val\":\"BOK06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"1\",\"url\":\"bookings\\/hotel\\/checkin\",\"ModuleName\":\"bookings\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD04\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Search\",\"val\":\"MOD03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"\",\"ModuleName\":\"search\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"hotel\",\"IsActive\":\"1\",\"Title\":\"Hotels\",\"val\":\"SRC02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"hotels\",\"ModuleName\":\"default\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"ledger\",\"IsActive\":\"1\",\"Title\":\"Ledger\",\"val\":\"FIN02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"2\",\"url\":\"finance\\/ledger\",\"ModuleName\":\"finance\",\"ModuleType\":\"2\",\"ParentCode\":\"MOD05\"},{\"ControllerName\":\"index\",\"IsActive\":\"1\",\"Title\":\"My Queries\",\"val\":\"MOD07\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"list\\/index\\/my-query\",\"ModuleName\":\"list\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"holidays\",\"IsActive\":\"1\",\"Title\":\"Holidays\",\"val\":\"SRC03\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"3\",\"url\":\"holidays\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Reports\",\"val\":\"MOD04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"\",\"ModuleName\":\"bookings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"activities\",\"IsActive\":\"1\",\"Title\":\"Activities\",\"val\":\"SRC04\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"4\",\"url\":\"activities\",\"ModuleName\":\"search\",\"ModuleType\":\"4\",\"ParentCode\":\"MOD03\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Finance\",\"val\":\"MOD05\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"5\",\"url\":\"\",\"ModuleName\":\"finance\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Staff Management\",\"val\":\"MOD02\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"6\",\"url\":\"\",\"ModuleName\":\"staff-management\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"},{\"ControllerName\":\"\",\"IsActive\":\"1\",\"Title\":\"Settings\",\"val\":\"MOD06\",\"IsDisplayLeftNev\":\"1\",\"IsOrder\":\"7\",\"url\":\"\",\"ModuleName\":\"settings\",\"ModuleType\":\"1\",\"ParentCode\":\"0\"}],\"post\":{\"module\":\"finance\",\"controller\":\"deposit\",\"action\":\"index\",\"currLoc\":\"\",\"PaymentMode\":\"ONLINE\",\"Amount\":\"1000\",\"RefrenceNo\":\"11\",\"CreditDate\":\"09\\/11\\/2022\",\"Remark\":\"\"},\"paymentMode\":\"ONLINE\",\"currLocation\":\"\"}','2022-11-09 14:59:17'),(692,'5a922-0b8ee-62cf3-4a1cb','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-276\",\"keyIndex\":5,\"SegFlightNumberArr\":\"SG-276\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2766568491_0BOMJAISG276_48134334640782\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":3050,\"PublishedFareTxt\":\"3,049\",\"ApiResultIndex\":\"4-2766568491_0BOMJAISG276_48134334639692\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5a922-0b8ee-62cf3-4a1cb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3036,\"PublishedFarePerPax\":3036,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2766568491_0BOMJAISG276_48134334640782\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"CommisionPass\":null,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":55,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02N\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-09 23:22:30'),(700,'05748-9fe90-40f0d-ee82b','{\"FlightBookingData\":[{\"bookingId\":\"TJ104747844778\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"PublishedFareTxt\":\"2,888\",\"ApiResultIndex\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ARFT\":10,\"CRFT\":9,\"CRF\":50,\"ARF\":200}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"ACF\":200,\"CCF\":50,\"CCFT\":9,\"ACFT\":10}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats beyond Spicemax\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-1841210719_0BOMJAISG276_14699651199221\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"248\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"248\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"05748-9fe90-40f0d-ee82b\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104747844778\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"strTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"ApiResultIndex\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"05748-9fe90-40f0d-ee82b\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"248\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-1841210719_0BOMJAISG276_14587995930985\",\"localFromDateTime\":\"2022-11-15 06:10\",\"localToDateTime\":\"2022-11-15 08:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"116\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"52\"],\"flight_booking_id\":[\"116\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"itskamalraja@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9091776621\",\"FirstName\":\"ABID MOHMMAD \",\"LastName\":\"HASRUDDIN \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-09-23-35-06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"52\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"52\"],\"flight_booking_customer\":[[\"169\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Jaipur\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"departure_date\":\"15\\/11\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Sanganeer Arpt JAI\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/11\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-11-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"05748-9fe90-40f0d-ee82b\",\"from_city_\":\"1__BOM-JAI\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"492277\",\"TPSysId\":\"492278\",\"VersionId\":[\"119869\"],\"CustomerSysId\":\"230824\",\"TrxId\":\"38256\",\"FareBreakdownid\":[\"363737\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"52\"],\"flight_booking_id\":[\"116\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"12577\",\"Salutation\":\"1\",\"EmailId\":\"itskamalraja@gmail.com\",\"FirstName\":\"ABID MOHMMAD \",\"LastName\":\"HASRUDDIN \",\"CountryCode\":\"91\",\"MobileNo\":\"9091776621\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"9091776621\",\"leadEmail\":\"itskamalraja@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"0\",\"CustomerSysId-1\":\"52\",\"salution-1\":\"1\",\"passenger-firstname-1\":\"ABID MOHMMAD \",\"passenger-lastname-1\":\"HASRUDDIN \",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"0\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"0\",\"passenger-country-1\":\"0\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"05748-9fe90-40f0d-ee82b\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"230824\",\"memberId\":null}}}','2022-11-09 23:35:33'),(704,'52157-3174b-d7111-555ae','{\"BookingData\":[{\"bookingId\":\"TJ109547845008\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"PublishedFareTxt\":\"2,888\",\"ApiResultIndex\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"ARFT\":10,\"CRF\":50,\"ARF\":200}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"CCF\":50,\"ACFT\":10,\"ACF\":200}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats beyond Spicemax\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-2912541956_0BOMJAISG276_57803904968082\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"383\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"383\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"52157-3174b-d7111-555ae\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109547845008\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"strTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"ApiResultIndex\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"52157-3174b-d7111-555ae\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"383\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-2912541956_0BOMJAISG276_18523243855963\",\"localFromDateTime\":\"2022-11-15 06:10\",\"localToDateTime\":\"2022-11-15 08:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Jaipur\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"departure_date\":\"15\\/11\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Sanganeer Arpt JAI\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/11\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-11-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"52157-3174b-d7111-555ae\",\"from_city_\":\"1__BOM-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai&mytrip_city_to=Jaipur&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+JAI%2C+India&departure_date=15%2F11%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city=+IN+-+Sanganeer+Arpt+JAI&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"52\",\"EmailId\":\"itskamalraja@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9091776621\",\"FirstName\":\"ABID MOHMMAD \",\"LastName\":\"HASRUDDIN \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-09-23-39-01\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"71\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"492279\",\"TPSysId\":\"492280\",\"VersionId\":[\"119870\"],\"CustomerSysId\":\"230824\",\"TrxId\":\"38257\",\"FareBreakdownid\":[\"363738\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"170\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"71\"],\"flight_booking_id\":[\"117\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"117\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3035.68},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"230824\",\"TPSysId\":\"492280\",\"MasterTPSysId\":\"492279\",\"ProposalID\":\"492280\\/V1\",\"InvoiceDate\":\"2022-11-09\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-11-09\",\"PaymentDate\":\"2022-11-09\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":2955.04,\"InvoiceStatus\":true,\"TotalSGST\":40.32,\"TotalCGST\":40.32,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3035.68,\"TotalDueAmount\":0,\"InvoiceValue\":3035.68,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-JAI-SpiceJet SG-276\",\"ItemQty\":1,\"ItemRates\":2507.0499999999997,\"Total\":2507.0499999999997,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3035.68,\"MarkupType\":\"\",\"Markup\":447.99,\"TotalMarkup\":447.99,\"SubTotal\":2955.04,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":80.64,\"SGST\":40.32,\"CGST\":40.32,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-11-09 23:40:31'),(708,'6eb3e-e4977-74dfb-4c520','{\"BookingData\":[{\"bookingId\":\"TJ108147845329\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"PublishedFareTxt\":\"2,888\",\"ApiResultIndex\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"ARF\":200,\"CRF\":50,\"ARFT\":10}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCFT\":9,\"ACFT\":10,\"ACF\":200,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats beyond Spicemax\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-7224457373_0BOMJAISG276_152762008982038\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"531\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"531\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6eb3e-e4977-74dfb-4c520\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ108147845329\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"strTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"ApiResultIndex\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"6eb3e-e4977-74dfb-4c520\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"531\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-7224457373_0BOMJAISG276_58797131760229\",\"localFromDateTime\":\"2022-11-15 06:10\",\"localToDateTime\":\"2022-11-15 08:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Jaipur\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"departure_date\":\"15\\/11\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Sanganeer Arpt JAI\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/11\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-11-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"6eb3e-e4977-74dfb-4c520\",\"from_city_\":\"1__BOM-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai&mytrip_city_to=Jaipur&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+JAI%2C+India&departure_date=15%2F11%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city=+IN+-+Sanganeer+Arpt+JAI&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"52\",\"EmailId\":\"itskamalraja@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"1\",\"Contacts\":\"9091776621\",\"FirstName\":\"PARVIN \",\"LastName\":\"KHATUN\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-09-23-43-51\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"72\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"492281\",\"TPSysId\":\"492282\",\"VersionId\":[\"119871\"],\"CustomerSysId\":\"230824\",\"TrxId\":\"38258\",\"FareBreakdownid\":[\"363739\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"171\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"72\"],\"flight_booking_id\":[\"118\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"118\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3035.68},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"230824\",\"TPSysId\":\"492282\",\"MasterTPSysId\":\"492281\",\"ProposalID\":\"492282\\/V1\",\"InvoiceDate\":\"2022-11-09\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-11-09\",\"PaymentDate\":\"2022-11-09\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":2955.04,\"InvoiceStatus\":true,\"TotalSGST\":40.32,\"TotalCGST\":40.32,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3035.68,\"TotalDueAmount\":0,\"InvoiceValue\":3035.68,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-JAI-SpiceJet SG-276\",\"ItemQty\":1,\"ItemRates\":2507.0499999999997,\"Total\":2507.0499999999997,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3035.68,\"MarkupType\":\"\",\"Markup\":447.99,\"TotalMarkup\":447.99,\"SubTotal\":2955.04,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":80.64,\"SGST\":40.32,\"CGST\":40.32,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-11-09 23:44:14'),(714,'c58b8-59449-13c3c-eeff3','{\"BookingData\":[{\"bookingId\":\"TJ107947845640\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"PublishedFareTxt\":\"2,888\",\"ApiResultIndex\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"If Cancelled within 3 hrs of scheduled departure only statutory taxes will be Refunded.\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference __nls__Changes permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CRFT\":9,\"ARFT\":10,\"ARF\":200,\"CRF\":50}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":200,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure\",\"fcs\":{\"CCF\":50,\"ACF\":200,\"ACFT\":10,\"CCFT\":9}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"Complimentary seats beyond Spicemax\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"CommissionEarned\":90.46,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.76,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-6334838487_0BOMJAISG276_18022399026836\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.64,\"apiMarkup\":0,\"IntCommission\":1.81,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":90.46,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.81,\"IntAgencyFixMarkUp\":247.99,\"IntTaxOnAgencyFixMarkUp\":44.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.64,\"PublishFare\":3035.68,\"CostToCustomer\":3035.68,\"BaseFareCal\":2785.88,\"intCommisionEarnedForAgency\":249.8,\"CostToCompany\":2785.88,\"intOfferedFare\":2741.24,\"intPublishFare\":2888.33,\"TripjackMarkup\":56.63,\"TripjackCommission\":90.46,\"TripjackTDS\":\"4.76\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"545\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"IB08\",\"Price\":800,\"Weight\":\"8 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"IB15\",\"Price\":1500,\"Weight\":\"15 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB05\",\"Price\":2250,\"Weight\":\"5KG\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"IB30\",\"Price\":3000,\"Weight\":\"30 Kg International Excess Baggage for Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB10\",\"Price\":4500,\"Weight\":\"10KG\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB15\",\"Price\":6750,\"Weight\":\"15KG\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB20\",\"Price\":9000,\"Weight\":\"20KG\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"EB30\",\"Price\":13500,\"Weight\":\"30KG\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"VGSW\",\"Price\":0,\"Description\":\"Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"VGML\",\"Price\":0,\"Description\":\"Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NVSW\",\"Price\":0,\"Description\":\"Non Veg Sandwich\\/Wrap\\/Sub\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NVML\",\"Price\":0,\"Description\":\"Non Veg Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"BVG\",\"Price\":0,\"Description\":\"Beverage\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"JNSW\",\"Price\":250,\"Description\":\"Jain Cold Sandwich (current Cucumber and Tomato sandwich)\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"LCVS\",\"Price\":275,\"Description\":\"Low cal salad Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"LCNS\",\"Price\":300,\"Description\":\"Low cal salad Non Vegetarian\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"VCC2\",\"Price\":395,\"Description\":\"Vegetable in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC6\",\"Price\":395,\"Description\":\"Chicken schezwan on bed of fried rice\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC5\",\"Price\":395,\"Description\":\"Tawa Fish masala on bed of Steamed rice with tadka masoordal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC4\",\"Price\":395,\"Description\":\"Tandoori Chicken tangri with chicken haryali tikka & vegetable shami kebab\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC2\",\"Price\":395,\"Description\":\"Chicken in Red Thai Curry with Steamed Rice\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"NCC1\",\"Price\":395,\"Description\":\"Grilled Chicken Breast with Mushroom Sauce, Yellow Rice, Saut Carrot & Beans Baton\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"GFCM\",\"Price\":395,\"Description\":\"Vegetarian Gluten-free Cold Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"FPML\",\"Price\":400,\"Description\":\"Fruit Platter\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"JNML\",\"Price\":425,\"Description\":\"Jain Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"GFVG\",\"Price\":425,\"Description\":\"Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"GFNV\",\"Price\":425,\"Description\":\"Non Vegetarian Gluten-free Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"DNVL\",\"Price\":425,\"Description\":\"Non Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"DBML\",\"Price\":425,\"Description\":\"Vegetarian Diabetic Hot Meal\"},{\"Currency\":\"INR\",\"key\":\"545\",\"Code\":\"CHML\",\"Price\":425,\"Description\":\"Kids meal\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c58b8-59449-13c3c-eeff3\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-15 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107947845640\",\"FlightNumber\":\"SG-276\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"strTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":55,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2888.33,\"ApiResultIndex\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"SearchFlightTraceId\":\"c58b8-59449-13c3c-eeff3\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2116,\"Tax\":772.33,\"YQTax\":0,\"OtherCharges\":582,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":116,\"CarrierMiscFee\":0,\"MUFee\":56.63,\"intPublishedFare\":2888.33,\"PublishedFare\":3035.68,\"OfferedFare\":2741.24,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":772.33,\"BaseFareCal\":2785.88,\"BaseFare\":2116,\"CommissionEarned\":90.46,\"TDS\":-4.76,\"MF\":15,\"YQ\":0,\"AGST\":116,\"MFT\":2.7,\"OT\":582,\"MU\":56.63,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":247.99,\"GSTOnMarkUp\":44.64,\"CommEarned\":1.81,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"545\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":55,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"4-6334838487_0BOMJAISG276_140779416044543\",\"localFromDateTime\":\"2022-11-15 06:10\",\"localToDateTime\":\"2022-11-15 08:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Jaipur\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"departure_date\":\"15\\/11\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Sanganeer Arpt JAI\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"15\\/11\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-11-15\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"c58b8-59449-13c3c-eeff3\",\"from_city_\":\"1__BOM-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai&mytrip_city_to=Jaipur&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+JAI%2C+India&departure_date=15%2F11%2F2022&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city=+IN+-+Sanganeer+Arpt+JAI&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"52\",\"EmailId\":\"itskamalraja@gmail.com\",\"Salutation\":\"2\",\"Relation\":\"1\",\"Contacts\":\"9091776621\",\"FirstName\":\"PARVIN \",\"LastName\":\"KHATUN\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-09-23-48-00\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"73\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"492283\",\"TPSysId\":\"492284\",\"VersionId\":[\"119872\"],\"CustomerSysId\":\"230824\",\"TrxId\":\"38259\",\"FareBreakdownid\":[\"363740\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"172\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"52\",\"CustomerMemSysId\":[\"73\"],\"flight_booking_id\":[\"119\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"119\"],\"_sessiondata\":{\"EmailId\":\"itskamalraja@gmail.com\",\"CustomerSysId\":\"230824\",\"AgencySysId\":\"12577\",\"FirstName\":\"Rani\",\"LastName\":\"Begum\",\"Password_cu\":\"3df603b34ff711de312d84886d6d6371\",\"ContactNo1\":\"9091776621\",\"redirect_link_r\":\"https:\\/\\/www.svezz.com\\/\"},\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":3035.68},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":null,\"TPSysId\":null,\"MasterTPSysId\":null,\"ProposalID\":\"\\/V1\",\"InvoiceDate\":\"2022-11-09\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-11-09\",\"PaymentDate\":\"2022-11-09\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":2955.04,\"InvoiceStatus\":true,\"TotalSGST\":40.32,\"TotalCGST\":40.32,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":3035.68,\"TotalDueAmount\":0,\"InvoiceValue\":3035.68,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-JAI-SpiceJet SG-276\",\"ItemQty\":1,\"ItemRates\":2507.0499999999997,\"Total\":2507.0499999999997,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":3035.68,\"MarkupType\":\"\",\"Markup\":447.99,\"TotalMarkup\":447.99,\"SubTotal\":2955.04,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":80.64,\"SGST\":40.32,\"CGST\":40.32,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-11-09 23:54:03'),(715,'84f7b-33b1e-822cb-c00b1','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-276\",\"keyIndex\":5,\"SegFlightNumberArr\":\"SG-276\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4586587614_0BOMJAISG276_63357907990061\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"06:10\",\"ArrivalTime\":\"08:00\",\"TravelDate\":\"2022-11-15T06:10\",\"LocalFromTime\":\"2022-11-15 06:10\",\"FromUTCTime\":\"2022-11-15T06:10\",\"LocalToTime\":\"2022-11-15 08:00\",\"ToUTCTime\":\"2022-11-15T08:00\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":50,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":5863,\"PublishedFareTxt\":\"5,863\",\"ApiResultIndex\":\"4-4586587614_0BOMJAISG276_63357907988781\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"84f7b-33b1e-822cb-c00b1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4232,\"Tax\":1544.66,\"YQTax\":0,\"OtherCharges\":1164,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":232,\"CarrierMiscFee\":0,\"MUFee\":113.26,\"intPublishedFare\":5776.66,\"PublishedFare\":5836,\"PublishedFarePerPax\":2918,\"OfferedFare\":5482.48,\"CommissionEarned\":180.92,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.52,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4586587614_0BOMJAISG276_63357907990061\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"CommisionPass\":null,\"intTotalGST\":53.28,\"apiMarkup\":0,\"IntCommission\":3.62,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":50,\"FixedMarkUp\":295.98,\"GSTOnMarkUp\":53.28,\"CommEarned\":3.62,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1544.66,\"BaseFareCal\":5535.76,\"BaseFare\":4232,\"CommissionEarned\":180.92,\"TDS\":-9.52,\"MF\":30,\"YQ\":0,\"AGST\":232,\"MFT\":5.4,\"OT\":1164,\"MU\":113.26,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":53.28,\"apiMarkup\":0,\"IntCommission\":3.62,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":295.98,\"GSTOnMarkUp\":53.28,\"CommEarned\":3.62,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":180.92,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.62,\"IntAgencyFixMarkUp\":295.98,\"IntTaxOnAgencyFixMarkUp\":53.28,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":53.28,\"PublishFare\":5835.36,\"CostToCustomer\":5835.36,\"BaseFareCal\":5535.76,\"intCommisionEarnedForAgency\":299.6,\"CostToCompany\":5535.76,\"intOfferedFare\":5482.48,\"intPublishFare\":5776.66,\"TripjackMarkup\":113.26,\"TripjackCommission\":180.92,\"TripjackTDS\":\"9.52\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02N\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T08:00\",\"SegFlightNumber\":\"SG-276\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":50,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"08:00\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-10 02:37:09'),(716,'80a37-14f2d-dade3-4f867','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2176\",\"keyIndex\":224,\"SegFlightNumberArr\":\"6E-2176\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0005382896_8DELBOM6E2176_7814617191450\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:15\",\"ArrivalTime\":\"16:30\",\"TravelDate\":\"2022-11-12T14:15\",\"LocalFromTime\":\"2022-11-12 14:15\",\"FromUTCTime\":\"2022-11-12T14:15\",\"LocalToTime\":\"2022-11-12 16:30\",\"ToUTCTime\":\"2022-11-12T16:30\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 12 Nov\",\"ArrivalDateTxt\":\"Sat, 12 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6202,\"PublishedFareTxt\":\"6,202\",\"ApiResultIndex\":\"5-0005382896_8DELBOM6E2176_7814617191060\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"80a37-14f2d-dade3-4f867\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5128,\"Tax\":885.61,\"YQTax\":0,\"OtherCharges\":750,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":117.91,\"intPublishedFare\":6013.61,\"PublishedFare\":6202,\"PublishedFarePerPax\":6202,\"OfferedFare\":5846.98,\"CommissionEarned\":48.72,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.56,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0005382896_8DELBOM6E2176_7814617191450\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":null,\"intTotalGST\":53.99,\"apiMarkup\":0,\"IntCommission\":0.97,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":299.92,\"GSTOnMarkUp\":53.99,\"CommEarned\":0.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":885.61,\"BaseFareCal\":5900.97,\"BaseFare\":5128,\"CommissionEarned\":48.72,\"TDS\":-2.56,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":750,\"MU\":117.91,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":53.99,\"apiMarkup\":0,\"IntCommission\":0.97,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":299.92,\"GSTOnMarkUp\":53.99,\"CommEarned\":0.97,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":48.72,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.97,\"IntAgencyFixMarkUp\":299.92,\"IntTaxOnAgencyFixMarkUp\":53.99,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":53.99,\"PublishFare\":6201.86,\"CostToCustomer\":6201.86,\"BaseFareCal\":5900.97,\"intCommisionEarnedForAgency\":300.9,\"CostToCompany\":5900.97,\"intOfferedFare\":5846.98,\"intPublishFare\":6013.61,\"TripjackMarkup\":117.91,\"TripjackCommission\":48.72,\"TripjackTDS\":\"2.56\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"05N\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-12T16:30\",\"SegFlightNumber\":\"6E-2176\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-12T14:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:15\",\"strArrivalDtTime\":\"16:30\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-11 11:22:54');
INSERT INTO `tbl_temp_data` VALUES (717,'ecb39-a49e3-f9048-d345c','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-768\",\"keyIndex\":5,\"SegFlightNumberArr\":\"SG-768\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-6907888059_1BLRPATSG768_94579588536825\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"17:35\",\"ArrivalTime\":\"20:10\",\"TravelDate\":\"2022-11-30T17:35\",\"LocalFromTime\":\"2022-11-30 17:35\",\"FromUTCTime\":\"2022-11-30T17:35\",\"LocalToTime\":\"2022-11-30 20:10\",\"ToUTCTime\":\"2022-11-30T20:10\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":155,\"DepartureDateTxt\":\"Wed, 30 Nov\",\"ArrivalDateTxt\":\"Wed, 30 Nov\",\"FlightDuration\":\"2h 35m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":15,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6122,\"PublishedFareTxt\":\"6,121\",\"ApiResultIndex\":\"11-6907888059_1BLRPATSG768_94579588536825\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"ecb39-a49e3-f9048-d345c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5200,\"Tax\":428.05,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":110.35,\"intPublishedFare\":5628.05,\"PublishedFare\":6122,\"PublishedFarePerPax\":6122,\"OfferedFare\":5418.9,\"CommissionEarned\":98.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-6907888059_1BLRPATSG768_94579588536825\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"CommisionPass\":null,\"intTotalGST\":106.83,\"apiMarkup\":0,\"IntCommission\":1.98,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":15,\"FixedMarkUp\":593.52,\"GSTOnMarkUp\":106.83,\"CommEarned\":1.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":428.05,\"BaseFareCal\":5525.73,\"BaseFare\":5200,\"CommissionEarned\":98.8,\"TDS\":-5.2,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":110.35,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":106.83,\"apiMarkup\":0,\"IntCommission\":1.98,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":593.52,\"GSTOnMarkUp\":106.83,\"CommEarned\":1.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":98.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.98,\"IntAgencyFixMarkUp\":593.52,\"IntTaxOnAgencyFixMarkUp\":106.83,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":106.83,\"PublishFare\":6121.23,\"CostToCustomer\":6121.23,\"BaseFareCal\":5525.73,\"intCommisionEarnedForAgency\":595.49,\"CostToCompany\":5525.73,\"intOfferedFare\":5418.9,\"intPublishFare\":5628.05,\"TripjackMarkup\":110.35,\"TripjackCommission\":98.8,\"TripjackTDS\":\"5.2\",\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":500},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00I\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-11-30T20:10\",\"SegFlightNumber\":\"SG-768\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-11-30T17:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":155,\"GroundTime\":0,\"NoOfSeatAvailable\":15,\"strDepartureDtTime\":\"17:35\",\"strArrivalDtTime\":\"20:10\",\"FlightDuration\":\"2h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-11 13:34:14'),(718,'bdd77-db1a2-c3e51-ac806','{\"FlightBookingData\":[{\"FlightNumber\":\"I5-819\",\"keyIndex\":65,\"SegFlightNumberArr\":\"I5-819 +1\",\"AirlineName\":\"Airasia india\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-6498730470_3GOIBLRI5819BLRCOKI51622_31255429167953\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"11:55\",\"TravelDate\":\"2022-12-20T07:15\",\"LocalFromTime\":\"2022-12-20 07:15\",\"FromUTCTime\":\"2022-12-20T07:15\",\"LocalToTime\":\"2022-12-20 11:55\",\"ToUTCTime\":\"2022-12-20T11:55\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"Bengaluru\",\"GroundTime\":150,\"LAYOVERDuration\":\"2h 30m\",\"FlyingMinutes\":280,\"DepartureDateTxt\":\"Tue, 20 Dec\",\"ArrivalDateTxt\":\"Tue, 20 Dec\",\"FlightDuration\":\"4h 40m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"GOI\",\"DestAirportCode\":\"COK\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":16226,\"PublishedFareTxt\":\"16,226\",\"ApiResultIndex\":\"22-16-6498730470_3GOIBLRI5819BLRCOKI51622_31255429167953\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"bdd77-db1a2-c3e51-ac806\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13600,\"Tax\":2548.02,\"YQTax\":0,\"OtherCharges\":1508,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":688,\"CarrierMiscFee\":0,\"MUFee\":316.62,\"intPublishedFare\":16148.02,\"PublishedFare\":16226,\"PublishedFarePerPax\":8113,\"OfferedFare\":15669.92,\"CommissionEarned\":161.48,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-6498730470_3GOIBLRI5819BLRCOKI51622_31255429167953\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"fareremarks\":\"Free Meal (Subject to Airline) , Cancellation 1750+ 200, Reissue Fare Difference +200\",\"FareClass\":\"Economy\",\"CommisionPass\":null,\"intTotalGST\":84.3,\"apiMarkup\":0,\"IntCommission\":3.23,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":468.32,\"GSTOnMarkUp\":84.3,\"CommEarned\":3.23,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2548.02,\"BaseFareCal\":15754.22,\"BaseFare\":13600,\"CommissionEarned\":161.48,\"TDS\":-8.5,\"MF\":30,\"YQ\":0,\"AGST\":688,\"MFT\":5.4,\"OT\":1508,\"MU\":316.62,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":84.3,\"apiMarkup\":0,\"IntCommission\":3.23,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":468.32,\"GSTOnMarkUp\":84.3,\"CommEarned\":3.23,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":161.48,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.23,\"IntAgencyFixMarkUp\":468.32,\"IntTaxOnAgencyFixMarkUp\":84.3,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":84.3,\"PublishFare\":16225.77,\"CostToCustomer\":16225.77,\"BaseFareCal\":15754.22,\"intCommisionEarnedForAgency\":471.55,\"CostToCompany\":15754.22,\"intOfferedFare\":15669.92,\"intPublishFare\":16148.02,\"TripjackMarkup\":316.62,\"TripjackCommission\":161.48,\"TripjackTDS\":\"8.5\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"03J\"},\"Segments\":[{\"originAirportName\":\"Dabolim Arpt\",\"destinationAirportName\":\"Bengaluru Intl Arpt\",\"originCityName\":\"Goa In\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bengaluru\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BLR\",\"destinationArrTime\":\"2022-12-20T08:20\",\"SegFlightNumber\":\"I5-819\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"GOI\",\"originDepTime\":\"2022-12-20T07:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":150,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"08:20\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":\"2h 30m\",\"LAYOVERCity\":\"Bengaluru\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2022-12-20T11:55\",\"SegFlightNumber\":\"I5-1622\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2022-12-20T10:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"10:50\",\"strArrivalDtTime\":\"11:55\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 01\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"FilterPrice\":\"20001-25000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"00Y\"},{\"keyIndex\":43,\"FlightNumber\":\"6E-697\",\"SegFlightNumberArr\":\"6E-697 +1\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6498730470_4COKHYD6E697HYDGOI6E6532_31256764085472\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"00:20\",\"TravelDate\":\"2022-12-25T19:30\",\"LocalFromTime\":\"2022-12-25 19:30\",\"FromUTCTime\":\"2022-12-25T19:30\",\"LocalToTime\":\"2022-12-26 00:20\",\"ToUTCTime\":\"2022-12-26T00:20\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":290,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Mon, 26 Dec\",\"FlightDuration\":\"4h 50m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"COK\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":29429.78,\"PublishedFareTxt\":\"29,430\",\"ApiResultIndex\":\"5-6498730470_4COKHYD6E697HYDGOI6E6532_31256764084742\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"bdd77-db1a2-c3e51-ac806\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":26300,\"Tax\":3138.62,\"YQTax\":0,\"OtherCharges\":2526,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":577.22,\"intPublishedFare\":29438.62,\"PublishedFare\":29430,\"PublishedFarePerPax\":14715,\"OfferedFare\":28611.56,\"CommissionEarned\":249.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.14,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6498730470_4COKHYD6E697HYDGOI6E6532_31256764085472\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Round Trip Special\",\"fareremarks\":\"Round Trip Special Discount\",\"FareClass\":\"Economy\",\"intTotalGST\":124.05,\"apiMarkup\":0,\"IntCommission\":5,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":689.17,\"GSTOnMarkUp\":124.05,\"CommEarned\":5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":3138.62,\"BaseFareCal\":28735.61,\"BaseFare\":26300,\"CommissionEarned\":249.84,\"TDS\":-13.14,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2526,\"MU\":577.22,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":124.05,\"apiMarkup\":0,\"IntCommission\":5,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":689.17,\"GSTOnMarkUp\":124.05,\"CommEarned\":5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":249.84,\"IntCommissionValInPercentage\":2,\"IntCommission\":5,\"IntAgencyFixMarkUp\":689.17,\"IntTaxOnAgencyFixMarkUp\":124.05,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":124.05,\"PublishFare\":29429.78,\"CostToCustomer\":29429.78,\"BaseFareCal\":28735.61,\"intCommisionEarnedForAgency\":694.17,\"CostToCompany\":28735.61,\"intOfferedFare\":28611.56,\"intPublishFare\":29438.62,\"TripjackMarkup\":577.22,\"TripjackCommission\":249.84,\"TripjackTDS\":\"13.14\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"09U\"},\"Segments\":[{\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-12-25T21:00\",\"SegFlightNumber\":\"6E-697\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2022-12-25T19:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":120,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-12-26T00:20\",\"SegFlightNumber\":\"6E-6532\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2022-12-25T23:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"23:00\",\"strArrivalDtTime\":\"00:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01Y\"}],\"FlightBookingDataInbound\":{\"keyIndex\":43,\"FlightNumber\":\"6E-697\",\"SegFlightNumberArr\":\"6E-697 +1\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6498730470_4COKHYD6E697HYDGOI6E6532_31256764085472\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"19:30\",\"ArrivalTime\":\"00:20\",\"TravelDate\":\"2022-12-25T19:30\",\"LocalFromTime\":\"2022-12-25 19:30\",\"FromUTCTime\":\"2022-12-25T19:30\",\"LocalToTime\":\"2022-12-26 00:20\",\"ToUTCTime\":\"2022-12-26T00:20\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Hyderabad\",\"GroundTime\":120,\"LAYOVERDuration\":\"2h 0m\",\"FlyingMinutes\":290,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Mon, 26 Dec\",\"FlightDuration\":\"4h 50m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"14275\",\"SourceAirportCode\":\"COK\",\"DestAirportCode\":\"GOI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":4,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":29429.78,\"PublishedFareTxt\":\"29,430\",\"ApiResultIndex\":\"5-6498730470_4COKHYD6E697HYDGOI6E6532_31256764084742\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"bdd77-db1a2-c3e51-ac806\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":26300,\"Tax\":3138.62,\"YQTax\":0,\"OtherCharges\":2526,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":577.22,\"intPublishedFare\":29438.62,\"PublishedFare\":29430,\"PublishedFarePerPax\":14715,\"OfferedFare\":28611.56,\"CommissionEarned\":249.84,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.14,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6498730470_4COKHYD6E697HYDGOI6E6532_31256764085472\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Round Trip Special\",\"fareremarks\":\"Round Trip Special Discount\",\"FareClass\":\"Economy\",\"intTotalGST\":124.05,\"apiMarkup\":0,\"IntCommission\":5,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":4,\"FixedMarkUp\":689.17,\"GSTOnMarkUp\":124.05,\"CommEarned\":5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":3138.62,\"BaseFareCal\":28735.61,\"BaseFare\":26300,\"CommissionEarned\":249.84,\"TDS\":-13.14,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":2526,\"MU\":577.22,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":124.05,\"apiMarkup\":0,\"IntCommission\":5,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":689.17,\"GSTOnMarkUp\":124.05,\"CommEarned\":5,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":249.84,\"IntCommissionValInPercentage\":2,\"IntCommission\":5,\"IntAgencyFixMarkUp\":689.17,\"IntTaxOnAgencyFixMarkUp\":124.05,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":124.05,\"PublishFare\":29429.78,\"CostToCustomer\":29429.78,\"BaseFareCal\":28735.61,\"intCommisionEarnedForAgency\":694.17,\"CostToCompany\":28735.61,\"intOfferedFare\":28611.56,\"intPublishFare\":29438.62,\"TripjackMarkup\":577.22,\"TripjackCommission\":249.84,\"TripjackTDS\":\"13.14\",\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"09U\"},\"Segments\":[{\"originAirportName\":\"Cochin Internation Arpt\",\"destinationAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"originCityName\":\"Kochi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Hyderabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"HYD\",\"destinationArrTime\":\"2022-12-25T21:00\",\"SegFlightNumber\":\"6E-697\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"COK\",\"originDepTime\":\"2022-12-25T19:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":90,\"GroundTime\":120,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"19:30\",\"strArrivalDtTime\":\"21:00\",\"FlightDuration\":\"1h 30m\",\"LAYOVERDuration\":\"2h 0m\",\"LAYOVERCity\":\"Hyderabad\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Shamshabad Rajiv Gandhi Intl Arpt\",\"destinationAirportName\":\"Dabolim Arpt\",\"originCityName\":\"Hyderabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Goa In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"GOI\",\"destinationArrTime\":\"2022-12-26T00:20\",\"SegFlightNumber\":\"6E-6532\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"HYD\",\"originDepTime\":\"2022-12-25T23:00\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":4,\"strDepartureDtTime\":\"23:00\",\"strArrivalDtTime\":\"00:20\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01Y\"}}','2022-11-11 15:42:53'),(719,'c8dd0-4496b-81b8e-f5c19','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-953\",\"keyIndex\":55,\"SegFlightNumberArr\":\"UK-953\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-3550297938_39DELBOMUK953_22683402690739\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"20:40\",\"ArrivalTime\":\"22:55\",\"TravelDate\":\"2022-11-12T20:40\",\"LocalFromTime\":\"2022-11-12 20:40\",\"FromUTCTime\":\"2022-11-12T20:40\",\"LocalToTime\":\"2022-11-12 22:55\",\"ToUTCTime\":\"2022-11-12T22:55\",\"IsDirect\":0,\"FareClass\":\"Z\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 12 Nov\",\"ArrivalDateTxt\":\"Sat, 12 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4503,\"PublishedFareTxt\":\"4,502\",\"ApiResultIndex\":\"21-10-15-2-3550297938_39DELBOMUK953_22683402690479\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"c8dd0-4496b-81b8e-f5c19\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3818,\"Tax\":825.75,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":197,\"CarrierMiscFee\":130,\"MUFee\":91.05,\"intPublishedFare\":4643.75,\"PublishedFare\":4503,\"PublishedFarePerPax\":4503,\"OfferedFare\":4167.67,\"CommissionEarned\":385.03,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-20.26,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3550297938_39DELBOMUK953_22683402690739\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"CommisionPass\":377.32939999999996,\"intTotalGST\":49.89,\"apiMarkup\":0,\"IntCommission\":7.7,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":277.16,\"GSTOnMarkUp\":49.89,\"CommEarned\":7.7,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":825.75,\"BaseFareCal\":4217.56,\"BaseFare\":3818,\"CommissionEarned\":385.03,\"TDS\":-20.26,\"MF\":15,\"YQ\":0,\"AGST\":197,\"MFT\":2.7,\"OT\":390,\"MU\":91.05,\"YR\":130,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.89,\"apiMarkup\":0,\"IntCommission\":7.7,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":277.16,\"GSTOnMarkUp\":49.89,\"CommEarned\":7.7,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":385.03,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.7,\"IntAgencyFixMarkUp\":277.16,\"IntTaxOnAgencyFixMarkUp\":49.89,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.89,\"PublishFare\":4502.42,\"CostToCustomer\":4502.42,\"BaseFareCal\":4217.56,\"intCommisionEarnedForAgency\":284.86,\"CostToCompany\":4217.56,\"intOfferedFare\":4167.67,\"intPublishFare\":4643.75,\"TripjackMarkup\":91.05,\"TripjackCommission\":385.03,\"TripjackTDS\":\"20.26\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":377.32939999999996,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01A\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-12T22:55\",\"SegFlightNumber\":\"UK-953\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Z\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-12T20:40\",\"TripIndicator\":\"\",\"Baggage\":\"30 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"20:40\",\"strArrivalDtTime\":\"22:55\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-11 17:36:18'),(720,'e5074-79bef-dd7d8-0c921','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-346\",\"keyIndex\":1,\"SegFlightNumberArr\":\"G8-346\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0656311874_1DELBOMG8346_120959894367863\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"23:05\",\"ArrivalTime\":\"01:20\",\"TravelDate\":\"2022-11-12T23:05\",\"LocalFromTime\":\"2022-11-12 23:05\",\"FromUTCTime\":\"2022-11-12T23:05\",\"LocalToTime\":\"2022-11-13 01:20\",\"ToUTCTime\":\"2022-11-13T01:20\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sat, 12 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6147,\"PublishedFareTxt\":\"6,147\",\"ApiResultIndex\":\"1-0656311874_1DELBOMG8346_120959894367353\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"e5074-79bef-dd7d8-0c921\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5106,\"Tax\":911.69,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":117.99,\"intPublishedFare\":6017.69,\"PublishedFare\":6147,\"PublishedFarePerPax\":6147,\"OfferedFare\":5790.56,\"CommissionEarned\":109.14,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.74,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0656311874_1DELBOMG8346_120959894367863\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"CommisionPass\":106.9572,\"intTotalGST\":54,\"apiMarkup\":0,\"IntCommission\":2.18,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":299.99,\"GSTOnMarkUp\":54,\"CommEarned\":2.18,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":911.69,\"BaseFareCal\":5844.56,\"BaseFare\":5106,\"CommissionEarned\":109.14,\"TDS\":-5.74,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":776,\"MU\":117.99,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":54,\"apiMarkup\":0,\"IntCommission\":2.18,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":299.99,\"GSTOnMarkUp\":54,\"CommEarned\":2.18,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":109.14,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.18,\"IntAgencyFixMarkUp\":299.99,\"IntTaxOnAgencyFixMarkUp\":54,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":54,\"PublishFare\":6146.73,\"CostToCustomer\":6146.73,\"BaseFareCal\":5844.56,\"intCommisionEarnedForAgency\":302.17,\"CostToCompany\":5844.56,\"intOfferedFare\":5790.56,\"intPublishFare\":6017.69,\"TripjackMarkup\":117.99,\"TripjackCommission\":109.14,\"TripjackTDS\":\"5.74\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":106.9572,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01K\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-13T01:20\",\"SegFlightNumber\":\"G8-346\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-12T23:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"23:05\",\"strArrivalDtTime\":\"01:20\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-11 20:47:29'),(721,'65cae-a0795-a847c-7db89','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-887\",\"keyIndex\":135,\"SegFlightNumberArr\":\"AI-887\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-9679715325_117DELBOMAI887_56446704536290\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"07:00\",\"ArrivalTime\":\"09:15\",\"TravelDate\":\"2022-11-13T07:00\",\"LocalFromTime\":\"2022-11-13 07:00\",\"FromUTCTime\":\"2022-11-13T07:00\",\"LocalToTime\":\"2022-11-13 09:15\",\"ToUTCTime\":\"2022-11-13T09:15\",\"IsDirect\":0,\"FareClass\":\"S\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Sun, 13 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4891,\"PublishedFareTxt\":\"4,891\",\"ApiResultIndex\":\"21-10-15-2-9679715325_117DELBOMAI887_56446704536290\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"65cae-a0795-a847c-7db89\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3839,\"Tax\":870.03,\"YQTax\":0,\"OtherCharges\":390,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":200,\"CarrierMiscFee\":170,\"MUFee\":92.33,\"intPublishedFare\":4709.03,\"PublishedFare\":4891,\"PublishedFarePerPax\":4891,\"OfferedFare\":4561.39,\"CommissionEarned\":55.31,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.91,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-9679715325_117DELBOMAI887_56446704536290\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"CommisionPass\":54.2038,\"intTotalGST\":50.08,\"apiMarkup\":0,\"IntCommission\":1.11,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":278.25,\"GSTOnMarkUp\":50.08,\"CommEarned\":1.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":870.03,\"BaseFareCal\":4611.47,\"BaseFare\":3839,\"CommissionEarned\":55.31,\"TDS\":-2.91,\"MF\":15,\"YQ\":0,\"AGST\":200,\"MFT\":2.7,\"OT\":390,\"MU\":92.33,\"YR\":170,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":50.08,\"apiMarkup\":0,\"IntCommission\":1.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":278.25,\"GSTOnMarkUp\":50.08,\"CommEarned\":1.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":55.31,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.11,\"IntAgencyFixMarkUp\":278.25,\"IntTaxOnAgencyFixMarkUp\":50.08,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.08,\"PublishFare\":4890.83,\"CostToCustomer\":4890.83,\"BaseFareCal\":4611.47,\"intCommisionEarnedForAgency\":279.35,\"CostToCompany\":4611.47,\"intOfferedFare\":4561.39,\"intPublishFare\":4709.03,\"TripjackMarkup\":92.33,\"TripjackCommission\":55.31,\"TripjackTDS\":\"2.91\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":54.2038,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01L\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-13T09:15\",\"SegFlightNumber\":\"AI-887\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"S\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-13T07:00\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:00\",\"strArrivalDtTime\":\"09:15\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-11 22:47:41'),(722,'6ebd3-e6999-2a684-d661a','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-390\",\"keyIndex\":35,\"SegFlightNumberArr\":\"G8-390\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-6382399220_0BOMJAIG8390_47502894096784\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"07:40\",\"TravelDate\":\"2022-11-15T05:40\",\"LocalFromTime\":\"2022-11-15 05:40\",\"FromUTCTime\":\"2022-11-15T05:40\",\"LocalToTime\":\"2022-11-15 07:40\",\"ToUTCTime\":\"2022-11-15T07:40\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":120,\"DepartureDateTxt\":\"Tue, 15 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"2h 0m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":2713,\"PublishedFareTxt\":\"2,712\",\"ApiResultIndex\":\"11-6382399220_0BOMJAIG8390_47502894096784\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"6ebd3-e6999-2a684-d661a\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2200,\"Tax\":317.05,\"YQTax\":0,\"OtherCharges\":250,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":49.35,\"intPublishedFare\":2517.05,\"PublishedFare\":2713,\"PublishedFarePerPax\":2713,\"OfferedFare\":2425.9,\"CommissionEarned\":41.8,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-6382399220_0BOMJAIG8390_47502894096784\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefit\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"CommisionPass\":40.964,\"intTotalGST\":43.53,\"apiMarkup\":0,\"IntCommission\":0.84,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":241.82,\"GSTOnMarkUp\":43.53,\"CommEarned\":0.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":317.05,\"BaseFareCal\":2469.43,\"BaseFare\":2200,\"CommissionEarned\":41.8,\"TDS\":-2.2,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":250,\"MU\":49.35,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":43.53,\"apiMarkup\":0,\"IntCommission\":0.84,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":241.82,\"GSTOnMarkUp\":43.53,\"CommEarned\":0.84,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.8,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.84,\"IntAgencyFixMarkUp\":241.82,\"IntTaxOnAgencyFixMarkUp\":43.53,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":43.53,\"PublishFare\":2712.09,\"CostToCustomer\":2712.09,\"BaseFareCal\":2469.43,\"intCommisionEarnedForAgency\":242.66,\"CostToCompany\":2469.43,\"intOfferedFare\":2425.9,\"intPublishFare\":2517.05,\"TripjackMarkup\":49.35,\"TripjackCommission\":41.8,\"TripjackTDS\":\"2.2\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":40.964,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00X\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-11-15T07:40\",\"SegFlightNumber\":\"G8-390\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-15T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":120,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"07:40\",\"FlightDuration\":\"2h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-11 23:13:40'),(723,'8b9d6-06644-ebd18-40797','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-329\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-329\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-7539811171_0BOMDELG8329_46967802114467\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"06:00\",\"ArrivalTime\":\"08:10\",\"TravelDate\":\"2022-11-18T06:00\",\"LocalFromTime\":\"2022-11-18 06:00\",\"FromUTCTime\":\"2022-11-18T06:00\",\"LocalToTime\":\"2022-11-18 08:10\",\"ToUTCTime\":\"2022-11-18T08:10\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Fri, 18 Nov\",\"ArrivalDateTxt\":\"Fri, 18 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4163,\"PublishedFareTxt\":\"4,163\",\"ApiResultIndex\":\"1-7539811171_0BOMDELG8329_46967802113367\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"8b9d6-06644-ebd18-40797\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3217,\"Tax\":777.01,\"YQTax\":0,\"OtherCharges\":681,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":78.31,\"intPublishedFare\":3994.01,\"PublishedFare\":4163,\"PublishedFarePerPax\":4163,\"OfferedFare\":3846.94,\"CommissionEarned\":68.76,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-7539811171_0BOMDELG8329_46967802114467\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"CommisionPass\":67.3848,\"intTotalGST\":47.95,\"apiMarkup\":0,\"IntCommission\":1.38,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":266.36,\"GSTOnMarkUp\":47.95,\"CommEarned\":1.38,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":777.01,\"BaseFareCal\":3894.89,\"BaseFare\":3217,\"CommissionEarned\":68.76,\"TDS\":-3.62,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":681,\"MU\":78.31,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":47.95,\"apiMarkup\":0,\"IntCommission\":1.38,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":266.36,\"GSTOnMarkUp\":47.95,\"CommEarned\":1.38,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":68.76,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.38,\"IntAgencyFixMarkUp\":266.36,\"IntTaxOnAgencyFixMarkUp\":47.95,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":47.95,\"PublishFare\":4162.63,\"CostToCustomer\":4162.63,\"BaseFareCal\":3894.89,\"intCommisionEarnedForAgency\":267.74,\"CostToCompany\":3894.89,\"intOfferedFare\":3846.94,\"intPublishFare\":3994.01,\"TripjackMarkup\":78.31,\"TripjackCommission\":68.76,\"TripjackTDS\":\"3.62\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":67.3848,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00Z\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-11-18T08:10\",\"SegFlightNumber\":\"G8-329\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-18T06:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:00\",\"strArrivalDtTime\":\"08:10\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-11 23:14:27'),(727,'235d9-3afb3-0b7fe-56327','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-530\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-530\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3546395772_0DELBOMG8530_32091647759809\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:15\",\"ArrivalTime\":\"07:25\",\"TravelDate\":\"2022-11-13T05:15\",\"LocalFromTime\":\"2022-11-13 05:15\",\"FromUTCTime\":\"2022-11-13T05:15\",\"LocalToTime\":\"2022-11-13 07:25\",\"ToUTCTime\":\"2022-11-13T07:25\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Sun, 13 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":8318,\"PublishedFareTxt\":\"8,318\",\"ApiResultIndex\":\"1-3546395772_0DELBOMG8530_32091647759809\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"235d9-3afb3-0b7fe-56327\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6816,\"Tax\":1287.59,\"YQTax\":0,\"OtherCharges\":1111,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":158.89,\"intPublishedFare\":8103.59,\"PublishedFare\":7975,\"PublishedFarePerPax\":7975,\"OfferedFare\":7572.38,\"CommissionEarned\":372.32,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-19.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-3546395772_0DELBOMG8530_32091647759809\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"CommisionPass\":364.8736,\"intTotalGST\":60.24,\"apiMarkup\":0,\"IntCommission\":7.45,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":334.65,\"GSTOnMarkUp\":60.24,\"CommEarned\":7.45,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1287.59,\"BaseFareCal\":7632.62,\"BaseFare\":6816,\"CommissionEarned\":372.32,\"TDS\":-19.6,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1111,\"MU\":158.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":60.24,\"apiMarkup\":0,\"IntCommission\":7.45,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":334.65,\"GSTOnMarkUp\":60.24,\"CommEarned\":7.45,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":372.32,\"IntCommissionValInPercentage\":2,\"IntCommission\":7.45,\"IntAgencyFixMarkUp\":334.65,\"IntTaxOnAgencyFixMarkUp\":60.24,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":60.24,\"PublishFare\":7974.72,\"CostToCustomer\":7974.72,\"BaseFareCal\":7632.62,\"intCommisionEarnedForAgency\":342.1,\"CostToCompany\":7632.62,\"intOfferedFare\":7572.38,\"intPublishFare\":8103.59,\"TripjackMarkup\":158.89,\"TripjackCommission\":372.32,\"TripjackTDS\":\"19.6\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":364.8736,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01X\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-13T07:25\",\"SegFlightNumber\":\"G8-530\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-13T05:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"05:15\",\"strArrivalDtTime\":\"07:25\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-12 18:36:44'),(728,'a7ee5-836af-54124-e5cf6','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6814\",\"keyIndex\":180,\"SegFlightNumberArr\":\"6E-6814\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3994233377_0DELBOM6E6814_33196439916916\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"09:40\",\"TravelDate\":\"2022-11-13T07:15\",\"LocalFromTime\":\"2022-11-13 07:15\",\"FromUTCTime\":\"2022-11-13T07:15\",\"LocalToTime\":\"2022-11-13 09:40\",\"ToUTCTime\":\"2022-11-13T09:40\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Sun, 13 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7129,\"PublishedFareTxt\":\"7,128\",\"ApiResultIndex\":\"5-3994233377_0DELBOM6E6814_33196439915976\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"a7ee5-836af-54124-e5cf6\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6000,\"Tax\":947.93,\"YQTax\":0,\"OtherCharges\":794,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":136.23,\"intPublishedFare\":6947.93,\"PublishedFare\":7129,\"PublishedFarePerPax\":7129,\"OfferedFare\":6754.7,\"CommissionEarned\":57,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3994233377_0DELBOM6E6814_33196439916916\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":55.86,\"intTotalGST\":56.78,\"apiMarkup\":0,\"IntCommission\":1.14,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":315.45,\"GSTOnMarkUp\":56.78,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":947.93,\"BaseFareCal\":6811.48,\"BaseFare\":6000,\"CommissionEarned\":57,\"TDS\":-3,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":794,\"MU\":136.23,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.78,\"apiMarkup\":0,\"IntCommission\":1.14,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":315.45,\"GSTOnMarkUp\":56.78,\"CommEarned\":1.14,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":57,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.14,\"IntAgencyFixMarkUp\":315.45,\"IntTaxOnAgencyFixMarkUp\":56.78,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.78,\"PublishFare\":7128.07,\"CostToCustomer\":7128.07,\"BaseFareCal\":6811.48,\"intCommisionEarnedForAgency\":316.59,\"CostToCompany\":6811.48,\"intOfferedFare\":6754.7,\"intPublishFare\":6947.93,\"TripjackMarkup\":136.23,\"TripjackCommission\":57,\"TripjackTDS\":\"3\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":55.86,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00Y\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-13T09:40\",\"SegFlightNumber\":\"6E-6814\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-13T07:15\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:40\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-12 19:00:59'),(729,'cecf6-0b1d1-3b32e-4aa25','{\"FlightBookingData\":[{\"FlightNumber\":\"9I-623\",\"keyIndex\":0,\"SegFlightNumberArr\":\"9I-623\",\"AirlineName\":\"Alliance air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-2640524967_0BOMDIU9I623_50015309912057\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-11-13T16:00\",\"LocalFromTime\":\"2022-11-13 16:00\",\"FromUTCTime\":\"2022-11-13T16:00\",\"LocalToTime\":\"2022-11-13 17:05\",\"ToUTCTime\":\"2022-11-13T17:05\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Sun, 13 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DIU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4552,\"PublishedFareTxt\":\"4,551\",\"ApiResultIndex\":\"28-2640524967_0BOMDIU9I623_50015309912057\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cecf6-0b1d1-3b32e-4aa25\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4050,\"Tax\":558.05,\"YQTax\":0,\"OtherCharges\":247,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":203,\"CarrierMiscFee\":0,\"MUFee\":90.35,\"intPublishedFare\":4608.05,\"PublishedFare\":4552,\"PublishedFarePerPax\":4552,\"OfferedFare\":4459.99,\"CommissionEarned\":57.71,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.04,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"28-2640524967_0BOMDIU9I623_50015309912057\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SUPSAV\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":56.5558,\"intTotalGST\":13.78,\"apiMarkup\":0,\"IntCommission\":1.15,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":76.57,\"GSTOnMarkUp\":13.78,\"CommEarned\":1.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":558.05,\"BaseFareCal\":4473.77,\"BaseFare\":4050,\"CommissionEarned\":57.71,\"TDS\":-3.04,\"MF\":15,\"YQ\":0,\"AGST\":203,\"MFT\":2.7,\"OT\":247,\"MU\":90.35,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":13.78,\"apiMarkup\":0,\"IntCommission\":1.15,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":76.57,\"GSTOnMarkUp\":13.78,\"CommEarned\":1.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":57.71,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.15,\"IntAgencyFixMarkUp\":76.57,\"IntTaxOnAgencyFixMarkUp\":13.78,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":13.78,\"PublishFare\":4551.49,\"CostToCustomer\":4551.49,\"BaseFareCal\":4473.77,\"intCommisionEarnedForAgency\":77.72,\"CostToCompany\":4473.77,\"intOfferedFare\":4459.99,\"intPublishFare\":4608.05,\"TripjackMarkup\":90.35,\"TripjackCommission\":57.71,\"TripjackTDS\":\"3.04\",\"AddiMarkup\":0,\"CommisionPass\":56.5558,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"008\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Diu Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Diu In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DIU\",\"destinationArrTime\":\"2022-11-13T17:05\",\"SegFlightNumber\":\"9I-623\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-13T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-12 23:29:47'),(730,'61e9b-4fd03-18d77-092be','{\"FlightBookingData\":[{\"FlightNumber\":\"9I-623\",\"keyIndex\":0,\"SegFlightNumberArr\":\"9I-623\",\"AirlineName\":\"Alliance air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-9518323268_0BOMDIU9I623_59899324186817\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-11-13T16:00\",\"LocalFromTime\":\"2022-11-13 16:00\",\"FromUTCTime\":\"2022-11-13T16:00\",\"LocalToTime\":\"2022-11-13 17:05\",\"ToUTCTime\":\"2022-11-13T17:05\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Sun, 13 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DIU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4552,\"PublishedFareTxt\":\"4,551\",\"ApiResultIndex\":\"28-9518323268_0BOMDIU9I623_59899324186817\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"61e9b-4fd03-18d77-092be\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4050,\"Tax\":558.05,\"YQTax\":0,\"OtherCharges\":247,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":203,\"CarrierMiscFee\":0,\"MUFee\":90.35,\"intPublishedFare\":4608.05,\"PublishedFare\":4552,\"PublishedFarePerPax\":4552,\"OfferedFare\":4459.99,\"CommissionEarned\":57.71,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-3.04,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"28-9518323268_0BOMDIU9I623_59899324186817\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SUPSAV\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":56.5558,\"intTotalGST\":13.78,\"apiMarkup\":0,\"IntCommission\":1.15,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":76.57,\"GSTOnMarkUp\":13.78,\"CommEarned\":1.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":558.05,\"BaseFareCal\":4473.77,\"BaseFare\":4050,\"CommissionEarned\":57.71,\"TDS\":-3.04,\"MF\":15,\"YQ\":0,\"AGST\":203,\"MFT\":2.7,\"OT\":247,\"MU\":90.35,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":13.78,\"apiMarkup\":0,\"IntCommission\":1.15,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":76.57,\"GSTOnMarkUp\":13.78,\"CommEarned\":1.15,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":57.71,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.15,\"IntAgencyFixMarkUp\":76.57,\"IntTaxOnAgencyFixMarkUp\":13.78,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":13.78,\"PublishFare\":4551.49,\"CostToCustomer\":4551.49,\"BaseFareCal\":4473.77,\"intCommisionEarnedForAgency\":77.72,\"CostToCompany\":4473.77,\"intOfferedFare\":4459.99,\"intPublishFare\":4608.05,\"TripjackMarkup\":90.35,\"TripjackCommission\":57.71,\"TripjackTDS\":\"3.04\",\"AddiMarkup\":0,\"CommisionPass\":56.5558,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"008\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Diu Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Diu In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DIU\",\"destinationArrTime\":\"2022-11-13T17:05\",\"SegFlightNumber\":\"9I-623\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-13T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"$$hashKey\":\"00A\"}],\"FilterPrice\":\"1-5000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-12 23:48:14'),(731,'70cba-61f42-ccbe7-41b1c','{\"FlightBookingData\":[{\"FlightNumber\":\"9I-623\",\"keyIndex\":0,\"SegFlightNumberArr\":\"9I-623\",\"AirlineName\":\"Alliance air\",\"AirlineCode\":\"9I\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"28-5365957417_0BOMDIU9I623_51241578301640\",\"AirlineSysId\":\"43\",\"DepartureTime\":\"16:00\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-11-13T16:00\",\"LocalFromTime\":\"2022-11-13 16:00\",\"FromUTCTime\":\"2022-11-13T16:00\",\"LocalToTime\":\"2022-11-13 17:05\",\"ToUTCTime\":\"2022-11-13T17:05\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":65,\"DepartureDateTxt\":\"Sun, 13 Nov\",\"ArrivalDateTxt\":\"Sun, 13 Nov\",\"FlightDuration\":\"1h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DIU\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":3,\"CurrencyType\":null,\"PublishedFare\":13655,\"PublishedFareTxt\":\"13,654\",\"ApiResultIndex\":\"28-5365957417_0BOMDIU9I623_51241578301640\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"70cba-61f42-ccbe7-41b1c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12150,\"Tax\":1674.1499999999999,\"YQTax\":0,\"OtherCharges\":741,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":609,\"CarrierMiscFee\":0,\"MUFee\":271.04999999999995,\"intPublishedFare\":13824.150000000001,\"PublishedFare\":13655,\"PublishedFarePerPax\":4552,\"OfferedFare\":13379.97,\"CommissionEarned\":173.13,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.120000000000001,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"28-5365957417_0BOMDIU9I623_51241578301640\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SUPSAV\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":169.6674,\"intTotalGST\":41.35,\"apiMarkup\":0,\"IntCommission\":3.46,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":3,\"FixedMarkUp\":229.7,\"GSTOnMarkUp\":41.35,\"CommEarned\":3.46,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":1674.1499999999999,\"BaseFareCal\":13421.32,\"BaseFare\":12150,\"CommissionEarned\":173.13,\"TDS\":-9.120000000000001,\"MF\":45,\"YQ\":0,\"AGST\":609,\"MFT\":8.100000000000001,\"OT\":741,\"MU\":271.04999999999995,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":41.35,\"apiMarkup\":0,\"IntCommission\":3.46,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":229.7,\"GSTOnMarkUp\":41.35,\"CommEarned\":3.46,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"5 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":173.13,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.46,\"IntAgencyFixMarkUp\":229.7,\"IntTaxOnAgencyFixMarkUp\":41.35,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":41.35,\"PublishFare\":13654.48,\"CostToCustomer\":13654.48,\"BaseFareCal\":13421.32,\"intCommisionEarnedForAgency\":233.17,\"CostToCompany\":13421.32,\"intOfferedFare\":13379.97,\"intPublishFare\":13824.150000000001,\"TripjackMarkup\":271.04999999999995,\"TripjackCommission\":173.13,\"TripjackTDS\":\"9.12\",\"AddiMarkup\":0,\"CommisionPass\":169.6674,\"AddiTaxOnMarkup\":0,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":0},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"008\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Diu Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Diu In\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DIU\",\"destinationArrTime\":\"2022-11-13T17:05\",\"SegFlightNumber\":\"9I-623\",\"AirlineCode\":\"9I\",\"AirlineName\":\"Alliance Air\",\"FareClass\":\"U\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-13T16:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"5 Kg\",\"IsMealIncludes\":false,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"16:00\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"T2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/9I.png\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-12 23:49:27'),(732,'62026-3e4b8-8d7f8-d9557','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2519\",\"keyIndex\":197,\"SegFlightNumberArr\":\"6E-2519\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-4340506948_0DELBOM6E2519_9316989391132\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:00\",\"ArrivalTime\":\"01:20\",\"TravelDate\":\"2022-11-14T23:00\",\"LocalFromTime\":\"2022-11-14 23:00\",\"FromUTCTime\":\"2022-11-14T23:00\",\"LocalToTime\":\"2022-11-15 01:20\",\"ToUTCTime\":\"2022-11-15T01:20\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Mon, 14 Nov\",\"ArrivalDateTxt\":\"Tue, 15 Nov\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":4709,\"PublishedFareTxt\":\"4,708\",\"ApiResultIndex\":\"5-4340506948_0DELBOM6E2519_9316989389842\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"62026-3e4b8-8d7f8-d9557\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3721,\"Tax\":786.07,\"YQTax\":0,\"OtherCharges\":680,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":88.37,\"intPublishedFare\":4507.07,\"PublishedFare\":4709,\"PublishedFarePerPax\":4709,\"OfferedFare\":4383.35,\"CommissionEarned\":35.35,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.86,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-4340506948_0DELBOM6E2519_9316989391132\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":34.643,\"intTotalGST\":49.48,\"apiMarkup\":0,\"IntCommission\":0.71,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":274.89,\"GSTOnMarkUp\":49.48,\"CommEarned\":0.71,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":786.07,\"BaseFareCal\":4432.83,\"BaseFare\":3721,\"CommissionEarned\":35.35,\"TDS\":-1.86,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":680,\"MU\":88.37,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":49.48,\"apiMarkup\":0,\"IntCommission\":0.71,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":274.89,\"GSTOnMarkUp\":49.48,\"CommEarned\":0.71,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":35.35,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.71,\"IntAgencyFixMarkUp\":274.89,\"IntTaxOnAgencyFixMarkUp\":49.48,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":49.48,\"PublishFare\":4708.43,\"CostToCustomer\":4708.43,\"BaseFareCal\":4432.83,\"intCommisionEarnedForAgency\":275.6,\"CostToCompany\":4432.83,\"intOfferedFare\":4383.35,\"intPublishFare\":4507.07,\"TripjackMarkup\":88.37,\"TripjackCommission\":35.35,\"TripjackTDS\":\"1.86\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":34.643,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00Y\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-15T01:20\",\"SegFlightNumber\":\"6E-2519\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-14T23:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:00\",\"strArrivalDtTime\":\"01:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-13 13:59:51'),(733,'f0bfb-cfc7e-210e3-96444','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":2,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":905,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"13h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":112789.87,\"PublishedFareTxt\":\"112,790\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82500,\"Tax\":33068.22,\"YQTax\":0,\"OtherCharges\":26571,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":4125,\"CarrierMiscFee\":0,\"MUFee\":2266.02,\"intPublishedFare\":115568.22,\"PublishedFare\":112790,\"PublishedFarePerPax\":37597,\"OfferedFare\":109985.51999999999,\"CommissionEarned\":3316.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-174.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":417.66,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2320.36,\"GSTOnMarkUp\":417.66,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":33068.22,\"BaseFareCal\":110403.18,\"BaseFare\":82500,\"CommissionEarned\":3316.68,\"TDS\":-174.57,\"MF\":90,\"YQ\":0,\"AGST\":4125,\"MFT\":16.200000000000003,\"OT\":26571,\"MU\":2266.02,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":417.66,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2320.36,\"GSTOnMarkUp\":417.66,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3316.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":66.33,\"IntAgencyFixMarkUp\":2320.36,\"IntTaxOnAgencyFixMarkUp\":417.66,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":417.66,\"PublishFare\":112789.87,\"CostToCustomer\":112789.87,\"BaseFareCal\":110403.18,\"intCommisionEarnedForAgency\":2386.69,\"CostToCompany\":110403.18,\"intOfferedFare\":109985.51999999999,\"intPublishFare\":115568.22,\"TripjackMarkup\":2266.02,\"TripjackCommission\":3316.68,\"TripjackTDS\":\"174.57\",\"AddiMarkup\":400,\"CommisionPass\":3250.3464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01G\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"keyIndex\":2,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":0,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_15530729739595\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-301\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_15530729739595\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"01:10\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 01:10\",\"ToUTCTime\":\"2023-04-04T01:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":110,\"LAYOVERDuration\":\"1h 50m\",\"FlyingMinutes\":600,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"8h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":112789.87,\"PublishedFareTxt\":\"112,790\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0366648932_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_15530729739595\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_15530729739595\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82500,\"Tax\":33068.22,\"YQTax\":0,\"OtherCharges\":26571,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":4125,\"CarrierMiscFee\":0,\"MUFee\":2266.02,\"intPublishedFare\":115568.22,\"PublishedFare\":112790,\"PublishedFarePerPax\":37597,\"OfferedFare\":109985.51999999999,\"CommissionEarned\":3316.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-174.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0366648932_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_15530729739595\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":417.66,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2320.36,\"GSTOnMarkUp\":417.66,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":33068.22,\"BaseFareCal\":110403.18,\"BaseFare\":82500,\"CommissionEarned\":3316.68,\"TDS\":-174.57,\"MF\":90,\"YQ\":0,\"AGST\":4125,\"MFT\":16.200000000000003,\"OT\":26571,\"MU\":2266.02,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":417.66,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2320.36,\"GSTOnMarkUp\":417.66,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3316.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":66.33,\"IntAgencyFixMarkUp\":2320.36,\"IntTaxOnAgencyFixMarkUp\":417.66,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":417.66,\"PublishFare\":112789.87,\"CostToCustomer\":112789.87,\"BaseFareCal\":110403.18,\"intCommisionEarnedForAgency\":2386.69,\"CostToCompany\":110403.18,\"intOfferedFare\":109985.51999999999,\"intPublishFare\":115568.22,\"TripjackMarkup\":2266.02,\"TripjackCommission\":3316.68,\"TripjackTDS\":\"174.57\",\"AddiMarkup\":400,\"CommisionPass\":3250.3464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":110,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"1h 50m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T01:10\",\"SegFlightNumber\":\"KU-301\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T18:35\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"01:10\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"keyIndex\":0,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01I\"},{\"origin\":{\"keyIndex\":1,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_15530729757596\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"542\",\"SegFlightNumberArr\":\"KU-542, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-542\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_15530729757596\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"17:25\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T17:25\",\"LocalFromTime\":\"2023-04-03 17:25\",\"FromUTCTime\":\"2023-04-03T17:25\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":150,\"LAYOVERDuration\":\"2h 30m\",\"FlyingMinutes\":640,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"9h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":112789.87,\"PublishedFareTxt\":\"112,790\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0366648932_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_15530729757596\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_15530729757596\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82500,\"Tax\":33068.22,\"YQTax\":0,\"OtherCharges\":26571,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":4125,\"CarrierMiscFee\":0,\"MUFee\":2266.02,\"intPublishedFare\":115568.22,\"PublishedFare\":112790,\"PublishedFarePerPax\":37597,\"OfferedFare\":109985.51999999999,\"CommissionEarned\":3316.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-174.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0366648932_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_15530729757596\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":417.66,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2320.36,\"GSTOnMarkUp\":417.66,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":33068.22,\"BaseFareCal\":110403.18,\"BaseFare\":82500,\"CommissionEarned\":3316.68,\"TDS\":-174.57,\"MF\":90,\"YQ\":0,\"AGST\":4125,\"MFT\":16.200000000000003,\"OT\":26571,\"MU\":2266.02,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":417.66,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2320.36,\"GSTOnMarkUp\":417.66,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3316.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":66.33,\"IntAgencyFixMarkUp\":2320.36,\"IntTaxOnAgencyFixMarkUp\":417.66,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":417.66,\"PublishFare\":112789.87,\"CostToCustomer\":112789.87,\"BaseFareCal\":110403.18,\"intCommisionEarnedForAgency\":2386.69,\"CostToCompany\":110403.18,\"intOfferedFare\":109985.51999999999,\"intPublishFare\":115568.22,\"TripjackMarkup\":2266.02,\"TripjackCommission\":3316.68,\"TripjackTDS\":\"174.57\",\"AddiMarkup\":400,\"CommisionPass\":3250.3464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T21:10\",\"SegFlightNumber\":\"KU-542\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T17:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":150,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:25\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"2h 30m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"17:25\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"keyIndex\":1,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01J\"},{\"origin\":{\"keyIndex\":2,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":905,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"13h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":112789.87,\"PublishedFareTxt\":\"112,790\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"apiTraceId\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82500,\"Tax\":33068.22,\"YQTax\":0,\"OtherCharges\":26571,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":4125,\"CarrierMiscFee\":0,\"MUFee\":2266.02,\"intPublishedFare\":115568.22,\"PublishedFare\":112790,\"PublishedFarePerPax\":37597,\"OfferedFare\":109985.51999999999,\"CommissionEarned\":3316.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-174.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0366648932_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_15530729762215\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":417.66,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2320.36,\"GSTOnMarkUp\":417.66,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":33068.22,\"BaseFareCal\":110403.18,\"BaseFare\":82500,\"CommissionEarned\":3316.68,\"TDS\":-174.57,\"MF\":90,\"YQ\":0,\"AGST\":4125,\"MFT\":16.200000000000003,\"OT\":26571,\"MU\":2266.02,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":417.66,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2320.36,\"GSTOnMarkUp\":417.66,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3316.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":66.33,\"IntAgencyFixMarkUp\":2320.36,\"IntTaxOnAgencyFixMarkUp\":417.66,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":417.66,\"PublishFare\":112789.87,\"CostToCustomer\":112789.87,\"BaseFareCal\":110403.18,\"intCommisionEarnedForAgency\":2386.69,\"CostToCompany\":110403.18,\"intOfferedFare\":109985.51999999999,\"intPublishFare\":115568.22,\"TripjackMarkup\":2266.02,\"TripjackCommission\":3316.68,\"TripjackTDS\":\"174.57\",\"AddiMarkup\":400,\"CommisionPass\":3250.3464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"keyIndex\":2,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01K\"}]}],\"FlightBookingDataInbound\":null}','2022-11-14 13:02:15'),(734,'83091-60784-0bd6c-77f89','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":5,\"FlightNumber\":\"302\",\"SegFlightNumberArr\":\"KU-302, KU-545\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-302\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"02:25\",\"ArrivalTime\":\"11:50\",\"TravelDate\":\"2023-03-27T02:25\",\"LocalFromTime\":\"2023-03-27 02:25\",\"FromUTCTime\":\"2023-03-27T02:25\",\"LocalToTime\":\"2023-03-27 11:50\",\"ToUTCTime\":\"2023-03-27T11:50\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":780,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":905,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"13h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":37911.29,\"PublishedFareTxt\":\"37,911\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":11022.74,\"YQTax\":0,\"OtherCharges\":8857,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1375,\"CarrierMiscFee\":0,\"MUFee\":755.34,\"intPublishedFare\":38522.74,\"PublishedFare\":37912,\"PublishedFarePerPax\":37912,\"OfferedFare\":36661.84,\"CommissionEarned\":1105.56,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.19,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":11022.74,\"BaseFareCal\":36849.06,\"BaseFare\":27500,\"CommissionEarned\":1105.56,\"TDS\":-58.19,\"MF\":30,\"YQ\":0,\"AGST\":1375,\"MFT\":5.4,\"OT\":8857,\"MU\":755.34,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1105.56,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.11,\"IntAgencyFixMarkUp\":1040.12,\"IntTaxOnAgencyFixMarkUp\":187.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":187.22,\"PublishFare\":37911.29,\"CostToCustomer\":37911.29,\"BaseFareCal\":36849.06,\"intCommisionEarnedForAgency\":1062.23,\"CostToCompany\":36849.06,\"intOfferedFare\":36661.84,\"intPublishFare\":38522.74,\"TripjackMarkup\":755.34,\"TripjackCommission\":1105.56,\"TripjackTDS\":\"58.19\",\"AddiMarkup\":400,\"CommisionPass\":1083.4488,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01G\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T04:40\",\"SegFlightNumber\":\"KU-302\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T02:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":290,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:25\",\"strArrivalDtTime\":\"04:40\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T11:50\",\"SegFlightNumber\":\"KU-545\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T09:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"keyIndex\":5,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":0,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_18168104064213\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-301\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_18168104064213\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"01:10\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 01:10\",\"ToUTCTime\":\"2023-04-04T01:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":110,\"LAYOVERDuration\":\"1h 50m\",\"FlyingMinutes\":600,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"8h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":37911.29,\"PublishedFareTxt\":\"37,911\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5367785506_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_18168104064213\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_18168104064213\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":11022.74,\"YQTax\":0,\"OtherCharges\":8857,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1375,\"CarrierMiscFee\":0,\"MUFee\":755.34,\"intPublishedFare\":38522.74,\"PublishedFare\":37912,\"PublishedFarePerPax\":37912,\"OfferedFare\":36661.84,\"CommissionEarned\":1105.56,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.19,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5367785506_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_18168104064213\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":11022.74,\"BaseFareCal\":36849.06,\"BaseFare\":27500,\"CommissionEarned\":1105.56,\"TDS\":-58.19,\"MF\":30,\"YQ\":0,\"AGST\":1375,\"MFT\":5.4,\"OT\":8857,\"MU\":755.34,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1105.56,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.11,\"IntAgencyFixMarkUp\":1040.12,\"IntTaxOnAgencyFixMarkUp\":187.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":187.22,\"PublishFare\":37911.29,\"CostToCustomer\":37911.29,\"BaseFareCal\":36849.06,\"intCommisionEarnedForAgency\":1062.23,\"CostToCompany\":36849.06,\"intOfferedFare\":36661.84,\"intPublishFare\":38522.74,\"TripjackMarkup\":755.34,\"TripjackCommission\":1105.56,\"TripjackTDS\":\"58.19\",\"AddiMarkup\":400,\"CommisionPass\":1083.4488,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":110,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"1h 50m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T01:10\",\"SegFlightNumber\":\"KU-301\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T18:35\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"01:10\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"keyIndex\":0,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01I\"},{\"origin\":{\"keyIndex\":1,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_18168104069844\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"542\",\"SegFlightNumberArr\":\"KU-542, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-542\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_18168104069844\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"17:25\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T17:25\",\"LocalFromTime\":\"2023-04-03 17:25\",\"FromUTCTime\":\"2023-04-03T17:25\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":150,\"LAYOVERDuration\":\"2h 30m\",\"FlyingMinutes\":640,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"9h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":37911.29,\"PublishedFareTxt\":\"37,911\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5367785506_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_18168104069844\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_18168104069844\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":11022.74,\"YQTax\":0,\"OtherCharges\":8857,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1375,\"CarrierMiscFee\":0,\"MUFee\":755.34,\"intPublishedFare\":38522.74,\"PublishedFare\":37912,\"PublishedFarePerPax\":37912,\"OfferedFare\":36661.84,\"CommissionEarned\":1105.56,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.19,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5367785506_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_18168104069844\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":11022.74,\"BaseFareCal\":36849.06,\"BaseFare\":27500,\"CommissionEarned\":1105.56,\"TDS\":-58.19,\"MF\":30,\"YQ\":0,\"AGST\":1375,\"MFT\":5.4,\"OT\":8857,\"MU\":755.34,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1105.56,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.11,\"IntAgencyFixMarkUp\":1040.12,\"IntTaxOnAgencyFixMarkUp\":187.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":187.22,\"PublishFare\":37911.29,\"CostToCustomer\":37911.29,\"BaseFareCal\":36849.06,\"intCommisionEarnedForAgency\":1062.23,\"CostToCompany\":36849.06,\"intOfferedFare\":36661.84,\"intPublishFare\":38522.74,\"TripjackMarkup\":755.34,\"TripjackCommission\":1105.56,\"TripjackTDS\":\"58.19\",\"AddiMarkup\":400,\"CommisionPass\":1083.4488,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T21:10\",\"SegFlightNumber\":\"KU-542\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T17:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":150,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:25\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"2h 30m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"17:25\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"keyIndex\":1,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01J\"},{\"origin\":{\"keyIndex\":2,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_18168104074234\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_18168104074234\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":905,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"13h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":37911.29,\"PublishedFareTxt\":\"37,911\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5367785506_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_18168104074234\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_18168104074234\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":11022.74,\"YQTax\":0,\"OtherCharges\":8857,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1375,\"CarrierMiscFee\":0,\"MUFee\":755.34,\"intPublishedFare\":38522.74,\"PublishedFare\":37912,\"PublishedFarePerPax\":37912,\"OfferedFare\":36661.84,\"CommissionEarned\":1105.56,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.19,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5367785506_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_18168104074234\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":11022.74,\"BaseFareCal\":36849.06,\"BaseFare\":27500,\"CommissionEarned\":1105.56,\"TDS\":-58.19,\"MF\":30,\"YQ\":0,\"AGST\":1375,\"MFT\":5.4,\"OT\":8857,\"MU\":755.34,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1105.56,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.11,\"IntAgencyFixMarkUp\":1040.12,\"IntTaxOnAgencyFixMarkUp\":187.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":187.22,\"PublishFare\":37911.29,\"CostToCustomer\":37911.29,\"BaseFareCal\":36849.06,\"intCommisionEarnedForAgency\":1062.23,\"CostToCompany\":36849.06,\"intOfferedFare\":36661.84,\"intPublishFare\":38522.74,\"TripjackMarkup\":755.34,\"TripjackCommission\":1105.56,\"TripjackTDS\":\"58.19\",\"AddiMarkup\":400,\"CommisionPass\":1083.4488,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"keyIndex\":2,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01K\"},{\"origin\":{\"keyIndex\":3,\"FlightNumber\":\"302\",\"SegFlightNumberArr\":\"KU-302, KU-545\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-302\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_3BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU301_18168104078414\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"02:25\",\"ArrivalTime\":\"11:50\",\"TravelDate\":\"2023-03-27T02:25\",\"LocalFromTime\":\"2023-03-27 02:25\",\"FromUTCTime\":\"2023-03-27T02:25\",\"LocalToTime\":\"2023-03-27 11:50\",\"ToUTCTime\":\"2023-03-27T11:50\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":780,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-301\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_3BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU301_18168104078414\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"01:10\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 01:10\",\"ToUTCTime\":\"2023-04-04T01:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":110,\"LAYOVERDuration\":\"1h 50m\",\"FlyingMinutes\":600,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"8h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":37911.29,\"PublishedFareTxt\":\"37,911\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5367785506_3BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU301_18168104078414\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_3BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU301_18168104078414\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":11022.74,\"YQTax\":0,\"OtherCharges\":8857,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1375,\"CarrierMiscFee\":0,\"MUFee\":755.34,\"intPublishedFare\":38522.74,\"PublishedFare\":37912,\"PublishedFarePerPax\":37912,\"OfferedFare\":36661.84,\"CommissionEarned\":1105.56,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.19,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5367785506_3BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU301_18168104078414\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":11022.74,\"BaseFareCal\":36849.06,\"BaseFare\":27500,\"CommissionEarned\":1105.56,\"TDS\":-58.19,\"MF\":30,\"YQ\":0,\"AGST\":1375,\"MFT\":5.4,\"OT\":8857,\"MU\":755.34,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1105.56,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.11,\"IntAgencyFixMarkUp\":1040.12,\"IntTaxOnAgencyFixMarkUp\":187.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":187.22,\"PublishFare\":37911.29,\"CostToCustomer\":37911.29,\"BaseFareCal\":36849.06,\"intCommisionEarnedForAgency\":1062.23,\"CostToCompany\":36849.06,\"intOfferedFare\":36661.84,\"intPublishFare\":38522.74,\"TripjackMarkup\":755.34,\"TripjackCommission\":1105.56,\"TripjackTDS\":\"58.19\",\"AddiMarkup\":400,\"CommisionPass\":1083.4488,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T04:40\",\"SegFlightNumber\":\"KU-302\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T02:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":290,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:25\",\"strArrivalDtTime\":\"04:40\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T11:50\",\"SegFlightNumber\":\"KU-545\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T09:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":110,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"1h 50m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T01:10\",\"SegFlightNumber\":\"KU-301\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T18:35\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"01:10\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"keyIndex\":3,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01L\"},{\"origin\":{\"keyIndex\":4,\"FlightNumber\":\"302\",\"SegFlightNumberArr\":\"KU-302, KU-545\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-302\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_4BOMKWIKU302KWICAIKU545CAIKWIKU542KWIBOMKU303_18168104082984\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"02:25\",\"ArrivalTime\":\"11:50\",\"TravelDate\":\"2023-03-27T02:25\",\"LocalFromTime\":\"2023-03-27 02:25\",\"FromUTCTime\":\"2023-03-27T02:25\",\"LocalToTime\":\"2023-03-27 11:50\",\"ToUTCTime\":\"2023-03-27T11:50\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":780,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"542\",\"SegFlightNumberArr\":\"KU-542, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-542\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_4BOMKWIKU302KWICAIKU545CAIKWIKU542KWIBOMKU303_18168104082984\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"17:25\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T17:25\",\"LocalFromTime\":\"2023-04-03 17:25\",\"FromUTCTime\":\"2023-04-03T17:25\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":150,\"LAYOVERDuration\":\"2h 30m\",\"FlyingMinutes\":640,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"9h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":37911.29,\"PublishedFareTxt\":\"37,911\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5367785506_4BOMKWIKU302KWICAIKU545CAIKWIKU542KWIBOMKU303_18168104082984\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_4BOMKWIKU302KWICAIKU545CAIKWIKU542KWIBOMKU303_18168104082984\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":11022.74,\"YQTax\":0,\"OtherCharges\":8857,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1375,\"CarrierMiscFee\":0,\"MUFee\":755.34,\"intPublishedFare\":38522.74,\"PublishedFare\":37912,\"PublishedFarePerPax\":37912,\"OfferedFare\":36661.84,\"CommissionEarned\":1105.56,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.19,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5367785506_4BOMKWIKU302KWICAIKU545CAIKWIKU542KWIBOMKU303_18168104082984\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":11022.74,\"BaseFareCal\":36849.06,\"BaseFare\":27500,\"CommissionEarned\":1105.56,\"TDS\":-58.19,\"MF\":30,\"YQ\":0,\"AGST\":1375,\"MFT\":5.4,\"OT\":8857,\"MU\":755.34,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1105.56,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.11,\"IntAgencyFixMarkUp\":1040.12,\"IntTaxOnAgencyFixMarkUp\":187.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":187.22,\"PublishFare\":37911.29,\"CostToCustomer\":37911.29,\"BaseFareCal\":36849.06,\"intCommisionEarnedForAgency\":1062.23,\"CostToCompany\":36849.06,\"intOfferedFare\":36661.84,\"intPublishFare\":38522.74,\"TripjackMarkup\":755.34,\"TripjackCommission\":1105.56,\"TripjackTDS\":\"58.19\",\"AddiMarkup\":400,\"CommisionPass\":1083.4488,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T04:40\",\"SegFlightNumber\":\"KU-302\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T02:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":290,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:25\",\"strArrivalDtTime\":\"04:40\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T11:50\",\"SegFlightNumber\":\"KU-545\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T09:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T21:10\",\"SegFlightNumber\":\"KU-542\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T17:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":150,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"17:25\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"2h 30m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"17:25\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"keyIndex\":4,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01M\"},{\"origin\":{\"keyIndex\":5,\"FlightNumber\":\"302\",\"SegFlightNumberArr\":\"KU-302, KU-545\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-302\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"02:25\",\"ArrivalTime\":\"11:50\",\"TravelDate\":\"2023-03-27T02:25\",\"LocalFromTime\":\"2023-03-27 02:25\",\"FromUTCTime\":\"2023-03-27T02:25\",\"LocalToTime\":\"2023-03-27 11:50\",\"ToUTCTime\":\"2023-03-27T11:50\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":780,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 55m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":905,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"13h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":37911.29,\"PublishedFareTxt\":\"37,911\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"apiTraceId\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27500,\"Tax\":11022.74,\"YQTax\":0,\"OtherCharges\":8857,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":1375,\"CarrierMiscFee\":0,\"MUFee\":755.34,\"intPublishedFare\":38522.74,\"PublishedFare\":37912,\"PublishedFarePerPax\":37912,\"OfferedFare\":36661.84,\"CommissionEarned\":1105.56,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-58.19,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-5367785506_5BOMKWIKU302KWICAIKU545CAIKWIKU546KWIBOMKU303_18168104087024\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":11022.74,\"BaseFareCal\":36849.06,\"BaseFare\":27500,\"CommissionEarned\":1105.56,\"TDS\":-58.19,\"MF\":30,\"YQ\":0,\"AGST\":1375,\"MFT\":5.4,\"OT\":8857,\"MU\":755.34,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":187.22,\"apiMarkup\":0,\"IntCommission\":22.11,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1040.12,\"GSTOnMarkUp\":187.22,\"CommEarned\":22.11,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":1105.56,\"IntCommissionValInPercentage\":2,\"IntCommission\":22.11,\"IntAgencyFixMarkUp\":1040.12,\"IntTaxOnAgencyFixMarkUp\":187.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":187.22,\"PublishFare\":37911.29,\"CostToCustomer\":37911.29,\"BaseFareCal\":36849.06,\"intCommisionEarnedForAgency\":1062.23,\"CostToCompany\":36849.06,\"intOfferedFare\":36661.84,\"intPublishFare\":38522.74,\"TripjackMarkup\":755.34,\"TripjackCommission\":1105.56,\"TripjackTDS\":\"58.19\",\"AddiMarkup\":400,\"CommisionPass\":1083.4488,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T04:40\",\"SegFlightNumber\":\"KU-302\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T02:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":290,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"02:25\",\"strArrivalDtTime\":\"04:40\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T11:50\",\"SegFlightNumber\":\"KU-545\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T09:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":200,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"09:30\",\"strArrivalDtTime\":\"11:50\",\"FlightDuration\":\"3h 20m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"83091-60784-0bd6c-77f89\",\"keyIndex\":5,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01N\"}]},{\"bookingId\":\"TJ119748265393\",\"FlightNumber\":\"KU-546\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":820,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"17h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":4701,\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BOM\":{\"fr\":{\"CANCELLATION\":{\"AFTER_DEPARTURE\":{\"amount\":3000,\"additionalFee\":100,\"policyInfo\":\"AFTER DEPARTURE Available\",\"fcs\":{\"ACF\":3000,\"CCF\":100,\"ACFT\":150,\"CCFT\":18}},\"BEFORE_DEPARTURE\":{\"amount\":5000,\"additionalFee\":100,\"policyInfo\":\"BEFORE DEPARTURE Available\",\"fcs\":{\"ACF\":5000,\"CCF\":100,\"ACFT\":250,\"CCFT\":18}}},\"DATECHANGE\":{\"AFTER_DEPARTURE\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"AFTER DEPARTURE Available\",\"fcs\":{\"CRFT\":9,\"ARF\":3500,\"CRF\":50,\"ARFT\":175}},\"BEFORE_DEPARTURE\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"BEFORE DEPARTURE Available\",\"fcs\":{\"CRFT\":9,\"ARF\":3500,\"CRF\":50,\"ARFT\":175}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"338\",\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"segmentid\":\"339\",\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"Baggage\":null,\"Meal\":null,\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"f0bfb-cfc7e-210e3-96444\",\"ICSourceSysId\":7,\"IsPassMandatory\":true,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-03-27 12:00\",\"localToDateTime\":\"2023-04-03 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CAI\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":4701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"FlightBookingDataInbound\":null}','2022-11-14 13:03:28'),(738,'3da02-01be0-16999-3c6cd','{\"BookingData\":[{\"bookingId\":\"TJ107448581440\",\"FlightNumber\":\"QP-1118\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"16:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-11-17T16:10\",\"LocalFromTime\":\"2022-11-17 16:10\",\"FromUTCTime\":\"2022-11-17T16:10\",\"LocalToTime\":\"2022-11-17 18:20\",\"ToUTCTime\":\"2022-11-17T18:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Thu, 17 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4745.75,\"PublishedFareTxt\":\"4,746\",\"ApiResultIndex\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"NO_SHOW\":{\"DEFAULT\":{\"policyInfo\":\"\"}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure __be____nls__ Before 72 hrs: Rs 2,500 + Fare Difference__nls__Within 06-72 hrs: Rs 3,000 + Fare Difference\",\"fcs\":{\"ARFT\":150,\"CRF\":50,\"ARF\":3000,\"CRFT\":9}}},\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 03 Hrs before scheduled departure __nls__ Within 03-72 hrs Rs 3500 or 100% of the airfare charges, whichever is lower.__nls__ Before 72 hrs Rs 3,000 or 100% of the airfare charges, whichever is lower.\",\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCFT\":9,\"CCF\":50}}},\"SEAT_CHARGEABLE\":{\"DEFAULT\":{\"policyInfo\":\"\"}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3942,\"Tax\":803.75,\"YQTax\":0,\"OtherCharges\":591,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":93.05,\"intPublishedFare\":4745.75,\"PublishedFare\":4951.66,\"OfferedFare\":4622,\"CommissionEarned\":30.7,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-1733225487_0DELBOMQP1118_23192819558152\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":50.19,\"apiMarkup\":0,\"IntCommission\":0.61,\"CommisionPass\":30.086,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":278.86,\"GSTOnMarkUp\":50.19,\"CommEarned\":0.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":803.75,\"BaseFareCal\":4672.19,\"BaseFare\":3942,\"CommissionEarned\":30.7,\"TDS\":-1.62,\"MF\":15,\"YQ\":0,\"AGST\":102,\"MFT\":2.7,\"OT\":591,\"MU\":93.05,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":50.19,\"apiMarkup\":0,\"IntCommission\":0.61,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":278.86,\"GSTOnMarkUp\":50.19,\"CommEarned\":0.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":30.7,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.61,\"IntAgencyFixMarkUp\":278.86,\"IntTaxOnAgencyFixMarkUp\":50.19,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":50.19,\"PublishFare\":4951.66,\"CostToCustomer\":4951.66,\"BaseFareCal\":4672.19,\"intCommisionEarnedForAgency\":279.47,\"CostToCompany\":4672.19,\"intOfferedFare\":4622,\"intPublishFare\":4745.75,\"TripjackMarkup\":93.05,\"TripjackCommission\":30.7,\"TripjackTDS\":\"1.62\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":30.086,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"208\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-17T18:20\",\"SegFlightNumber\":\"QP-1118\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-17T16:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"16:10\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"208\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"3da02-01be0-16999-3c6cd\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2022-11-17 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ107448581440\",\"FlightNumber\":\"QP-1118\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"strTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"16:10\",\"ArrivalTime\":\"18:20\",\"TravelDate\":\"2022-11-17T16:10\",\"LocalFromTime\":\"2022-11-17 16:10\",\"FromUTCTime\":\"2022-11-17T16:10\",\"LocalToTime\":\"2022-11-17 18:20\",\"ToUTCTime\":\"2022-11-17T18:20\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Thu, 17 Nov\",\"ArrivalDateTxt\":\"Thu, 17 Nov\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":4745.75,\"ApiResultIndex\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"3da02-01be0-16999-3c6cd\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3942,\"Tax\":803.75,\"YQTax\":0,\"OtherCharges\":591,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":102,\"CarrierMiscFee\":0,\"MUFee\":93.05,\"intPublishedFare\":4745.75,\"PublishedFare\":4951.66,\"OfferedFare\":4622,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":278.86,\"GSTOnMarkUp\":50.19,\"CommEarned\":0.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":200,\"AddiTaxOnMarkup\":36,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":803.75,\"BaseFareCal\":4672.19,\"BaseFare\":3942,\"CommissionEarned\":30.7,\"TDS\":-1.62,\"MF\":15,\"YQ\":0,\"AGST\":102,\"MFT\":2.7,\"OT\":591,\"MU\":93.05,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":278.86,\"GSTOnMarkUp\":50.19,\"CommEarned\":0.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"208\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-11-17T18:20\",\"SegFlightNumber\":\"QP-1118\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-11-17T16:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"16:10\",\"strArrivalDtTime\":\"18:20\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T2\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-1733225487_0DELBOMQP1118_35693449471534\",\"localFromDateTime\":\"2022-11-17 16:10\",\"localToDateTime\":\"2022-11-17 18:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Mumbai\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"departure_date\":\"17\\/11\\/2022\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"17\\/11\\/2022\",\"return_dates\":\"\",\"strDepatureDate\":\"2022-11-17\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"3da02-01be0-16999-3c6cd\",\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Mumbai&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&departure_date=17%2F11%2F2022&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"souravchhabra546@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"7777053337\",\"FirstName\":\"Pooja\",\"LastName\":\"Sharma\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-17-04-14-39\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"64\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"498667\",\"TPSysId\":\"498668\",\"VersionId\":[\"122027\"],\"CustomerSysId\":\"281860\",\"TrxId\":\"38921\",\"FareBreakdownid\":[\"364290\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"173\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"64\",\"CustomerMemSysId\":[\"64\"],\"flight_booking_id\":[\"120\"]},\"selectedSeatSession\":null,\"flight_booking_id_Arr\":[\"120\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4951.66},\"Invoicedata\":{\"AgentSysId\":\"12577\",\"CustomerSysId\":\"281860\",\"TPSysId\":\"498668\",\"MasterTPSysId\":\"498667\",\"ProposalID\":\"498668\\/V1\",\"InvoiceDate\":\"2022-11-17\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2022-11-17\",\"PaymentDate\":\"2022-11-17\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":1,\"TotalInvoiceValue\":4865.47,\"InvoiceStatus\":true,\"TotalSGST\":43.095,\"TotalCGST\":43.095,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4951.66,\"TotalDueAmount\":0,\"InvoiceValue\":4951.66,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-Akasa Air QP-1118\",\"ItemQty\":1,\"ItemRates\":4386.610000000001,\"Total\":4386.610000000001,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4951.66,\"MarkupType\":\"\",\"Markup\":478.86,\"TotalMarkup\":478.86,\"SubTotal\":4865.47,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":86.19,\"SGST\":43.095,\"CGST\":43.095,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2022-11-17 04:15:38'),(739,'e9879-300f1-e26aa-249eb','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-163\",\"keyIndex\":127,\"SegFlightNumberArr\":\"SG-163\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-3687126568_0BOMIXBSG163_31586555154225\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"13:10\",\"ArrivalTime\":\"16:00\",\"TravelDate\":\"2022-12-12T13:10\",\"LocalFromTime\":\"2022-12-12 13:10\",\"FromUTCTime\":\"2022-12-12T13:10\",\"LocalToTime\":\"2022-12-12 16:00\",\"ToUTCTime\":\"2022-12-12T16:00\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":170,\"DepartureDateTxt\":\"Mon, 12 Dec\",\"ArrivalDateTxt\":\"Mon, 12 Dec\",\"FlightDuration\":\"2h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"IXB\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":12654,\"PublishedFareTxt\":\"12,654\",\"ApiResultIndex\":\"11-3687126568_0BOMIXBSG163_31586555154225\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"e9879-300f1-e26aa-249eb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":11400,\"Tax\":876.1,\"YQTax\":0,\"OtherCharges\":600,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":240.7,\"intPublishedFare\":12276.1,\"PublishedFare\":12654,\"PublishedFarePerPax\":6327,\"OfferedFare\":11818.8,\"CommissionEarned\":216.6,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-11.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-3687126568_0BOMIXBSG163_31586555154225\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"CommisionPass\":212.268,\"intTotalGST\":126.72,\"apiMarkup\":0,\"IntCommission\":4.33,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":703.98,\"GSTOnMarkUp\":126.72,\"CommEarned\":4.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":876.1,\"BaseFareCal\":11945.52,\"BaseFare\":11400,\"CommissionEarned\":216.6,\"TDS\":-11.4,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":600,\"MU\":240.7,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":126.72,\"apiMarkup\":0,\"IntCommission\":4.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":703.98,\"GSTOnMarkUp\":126.72,\"CommEarned\":4.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":216.6,\"IntCommissionValInPercentage\":2,\"IntCommission\":4.33,\"IntAgencyFixMarkUp\":703.98,\"IntTaxOnAgencyFixMarkUp\":126.72,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":126.72,\"PublishFare\":12653.83,\"CostToCustomer\":12653.83,\"BaseFareCal\":11945.52,\"intCommisionEarnedForAgency\":708.32,\"CostToCompany\":11945.52,\"intOfferedFare\":11818.8,\"intPublishFare\":12276.1,\"TripjackMarkup\":240.7,\"TripjackCommission\":216.6,\"TripjackTDS\":\"11.4\",\"AddiMarkup\":\"500.00\",\"CommisionPass\":212.268,\"AddiTaxOnMarkup\":90,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":500},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02S\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Bagdogra Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Bagdogra\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"IXB\",\"destinationArrTime\":\"2022-12-12T16:00\",\"SegFlightNumber\":\"SG-163\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-12T13:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":170,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"13:10\",\"strArrivalDtTime\":\"16:00\",\"FlightDuration\":\"2h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"011\"},{\"keyIndex\":112,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-3687126568_0IXBBOMSG168_31586554988001\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-18T16:30\",\"LocalFromTime\":\"2022-12-18 16:30\",\"FromUTCTime\":\"2022-12-18T16:30\",\"LocalToTime\":\"2022-12-18 19:35\",\"ToUTCTime\":\"2022-12-18T19:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sun, 18 Dec\",\"ArrivalDateTxt\":\"Sun, 18 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":15361.28,\"PublishedFareTxt\":\"15,361\",\"ApiResultIndex\":\"11-3687126568_0IXBBOMSG168_31586554988001\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"e9879-300f1-e26aa-249eb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13900,\"Tax\":1130.1,\"YQTax\":0,\"OtherCharges\":800,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":294.7,\"intPublishedFare\":15030.1,\"PublishedFare\":15362,\"PublishedFarePerPax\":7681,\"OfferedFare\":14471.3,\"CommissionEarned\":264.1,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.9,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-3687126568_0IXBBOMSG168_31586554988001\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":134.95,\"apiMarkup\":0,\"IntCommission\":5.28,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":749.75,\"GSTOnMarkUp\":134.95,\"CommEarned\":5.28,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1130.1,\"BaseFareCal\":14606.25,\"BaseFare\":13900,\"CommissionEarned\":264.1,\"TDS\":-13.9,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":800,\"MU\":294.7,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":134.95,\"apiMarkup\":0,\"IntCommission\":5.28,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":749.75,\"GSTOnMarkUp\":134.95,\"CommEarned\":5.28,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":264.1,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.28,\"IntAgencyFixMarkUp\":749.75,\"IntTaxOnAgencyFixMarkUp\":134.95,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":134.95,\"PublishFare\":15361.28,\"CostToCustomer\":15361.28,\"BaseFareCal\":14606.25,\"intCommisionEarnedForAgency\":755.03,\"CostToCompany\":14606.25,\"intOfferedFare\":14471.3,\"intPublishFare\":15030.1,\"TripjackMarkup\":294.7,\"TripjackCommission\":264.1,\"TripjackTDS\":\"13.9\",\"AddiMarkup\":\"500.00\",\"CommisionPass\":258.81800000000004,\"AddiTaxOnMarkup\":90,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":500},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"073\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-18T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-18T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01V\"}],\"FlightBookingDataInbound\":{\"keyIndex\":112,\"FlightNumber\":\"SG-168\",\"SegFlightNumberArr\":\"SG-168\",\"AirlineName\":\"SpiceJet\",\"AirlineCode\":\"SG\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-3687126568_0IXBBOMSG168_31586554988001\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"16:30\",\"ArrivalTime\":\"19:35\",\"TravelDate\":\"2022-12-18T16:30\",\"LocalFromTime\":\"2022-12-18 16:30\",\"FromUTCTime\":\"2022-12-18T16:30\",\"LocalToTime\":\"2022-12-18 19:35\",\"ToUTCTime\":\"2022-12-18T19:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Sun, 18 Dec\",\"ArrivalDateTxt\":\"Sun, 18 Dec\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"2012\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":2,\"CurrencyType\":null,\"PublishedFare\":15361.28,\"PublishedFareTxt\":\"15,361\",\"ApiResultIndex\":\"11-3687126568_0IXBBOMSG168_31586554988001\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"e9879-300f1-e26aa-249eb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":13900,\"Tax\":1130.1,\"YQTax\":0,\"OtherCharges\":800,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":294.7,\"intPublishedFare\":15030.1,\"PublishedFare\":15362,\"PublishedFarePerPax\":7681,\"OfferedFare\":14471.3,\"CommissionEarned\":264.1,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.9,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-3687126568_0IXBBOMSG168_31586554988001\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"intTotalGST\":134.95,\"apiMarkup\":0,\"IntCommission\":5.28,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":749.75,\"GSTOnMarkUp\":134.95,\"CommEarned\":5.28,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1130.1,\"BaseFareCal\":14606.25,\"BaseFare\":13900,\"CommissionEarned\":264.1,\"TDS\":-13.9,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":800,\"MU\":294.7,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":134.95,\"apiMarkup\":0,\"IntCommission\":5.28,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":749.75,\"GSTOnMarkUp\":134.95,\"CommEarned\":5.28,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":264.1,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.28,\"IntAgencyFixMarkUp\":749.75,\"IntTaxOnAgencyFixMarkUp\":134.95,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":134.95,\"PublishFare\":15361.28,\"CostToCustomer\":15361.28,\"BaseFareCal\":14606.25,\"intCommisionEarnedForAgency\":755.03,\"CostToCompany\":14606.25,\"intOfferedFare\":14471.3,\"intPublishFare\":15030.1,\"TripjackMarkup\":294.7,\"TripjackCommission\":264.1,\"TripjackTDS\":\"13.9\",\"AddiMarkup\":\"500.00\",\"CommisionPass\":258.81800000000004,\"AddiTaxOnMarkup\":90,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":500},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"073\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-18T19:35\",\"SegFlightNumber\":\"SG-168\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2022-12-18T16:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"16:30\",\"strArrivalDtTime\":\"19:35\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01V\"}}','2022-11-19 14:04:13'),(740,'9afe4-5662e-c67e0-3dc5d','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2442\",\"keyIndex\":74,\"SegFlightNumberArr\":\"6E-2442 +1\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-2983002691_8BOMLKO6E2442LKODED6E515_19121548151805\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"08:55\",\"ArrivalTime\":\"15:20\",\"TravelDate\":\"2022-12-22T08:55\",\"LocalFromTime\":\"2022-12-22 08:55\",\"FromUTCTime\":\"2022-12-22T08:55\",\"LocalToTime\":\"2022-12-22 15:20\",\"ToUTCTime\":\"2022-12-22T15:20\",\"IsDirect\":0,\"FareClass\":\"J\",\"LAYOVERCity\":\"Lucknow\",\"GroundTime\":185,\"LAYOVERDuration\":\"3h 5m\",\"FlyingMinutes\":385,\"DepartureDateTxt\":\"Thu, 22 Dec\",\"ArrivalDateTxt\":\"Thu, 22 Dec\",\"FlightDuration\":\"6h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DED\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":32723,\"PublishedFareTxt\":\"32,722\",\"ApiResultIndex\":\"5-2983002691_8BOMLKO6E2442LKODED6E515_19121548151645\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"9afe4-5662e-c67e0-3dc5d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":28676,\"Tax\":4077,\"YQTax\":0,\"OtherCharges\":3364,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":642.2,\"intPublishedFare\":32753,\"PublishedFare\":32723,\"PublishedFarePerPax\":8181,\"OfferedFare\":31838.36,\"CommissionEarned\":272.44,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-14.32,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-2983002691_8BOMLKO6E2442LKODED6E515_19121548151805\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":266.9912,\"intTotalGST\":133.96,\"apiMarkup\":0,\"IntCommission\":5.45,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":744.24,\"GSTOnMarkUp\":133.96,\"CommEarned\":5.45,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4077,\"BaseFareCal\":31972.32,\"BaseFare\":28676,\"CommissionEarned\":272.44,\"TDS\":-14.32,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":3364,\"MU\":642.2,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":133.96,\"apiMarkup\":0,\"IntCommission\":5.45,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":744.24,\"GSTOnMarkUp\":133.96,\"CommEarned\":5.45,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":272.44,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.45,\"IntAgencyFixMarkUp\":744.24,\"IntTaxOnAgencyFixMarkUp\":133.96,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":133.96,\"PublishFare\":32722.01,\"CostToCustomer\":32722.01,\"BaseFareCal\":31972.32,\"intCommisionEarnedForAgency\":749.69,\"CostToCompany\":31972.32,\"intOfferedFare\":31838.36,\"intPublishFare\":32753,\"TripjackMarkup\":642.2,\"TripjackCommission\":272.44,\"TripjackTDS\":\"14.32\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":266.9912,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"02A\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2022-12-22T11:05\",\"SegFlightNumber\":\"6E-2442\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-22T08:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":130,\"GroundTime\":185,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"08:55\",\"strArrivalDtTime\":\"11:05\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":\"3h 5m\",\"LAYOVERCity\":\"Lucknow\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Amausi Arpt\",\"destinationAirportName\":\"Jolly Grant Airport\",\"originCityName\":\"Lucknow\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dehra Dun\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DED\",\"destinationArrTime\":\"2022-12-22T15:20\",\"SegFlightNumber\":\"6E-515\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"J\",\"originAirportCode\":\"LKO\",\"originDepTime\":\"2022-12-22T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":70,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"45001-50000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"00J\"},{\"keyIndex\":0,\"FlightNumber\":\"G8-2316\",\"SegFlightNumberArr\":\"G8-2316\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2983002691_0DEDBOMG82316_19118828618548\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-12-28T14:40\",\"LocalFromTime\":\"2022-12-28 14:40\",\"FromUTCTime\":\"2022-12-28T14:40\",\"LocalToTime\":\"2022-12-28 17:05\",\"ToUTCTime\":\"2022-12-28T17:05\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Wed, 28 Dec\",\"ArrivalDateTxt\":\"Wed, 28 Dec\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DED\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":30978.91,\"PublishedFareTxt\":\"30,979\",\"ApiResultIndex\":\"1-2983002691_0DEDBOMG82316_19118828617458\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"9afe4-5662e-c67e0-3dc5d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27204,\"Tax\":4108.76,\"YQTax\":0,\"OtherCharges\":3424,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":613.96,\"intPublishedFare\":31312.76,\"PublishedFare\":30979,\"PublishedFarePerPax\":7745,\"OfferedFare\":30117.32,\"CommissionEarned\":581.48,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-30.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2983002691_0DEDBOMG82316_19118828618548\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":129.65,\"apiMarkup\":0,\"IntCommission\":11.63,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":720.31,\"GSTOnMarkUp\":129.65,\"CommEarned\":11.63,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4108.76,\"BaseFareCal\":30246.97,\"BaseFare\":27204,\"CommissionEarned\":581.48,\"TDS\":-30.6,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":3424,\"MU\":613.96,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":129.65,\"apiMarkup\":0,\"IntCommission\":11.63,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":720.31,\"GSTOnMarkUp\":129.65,\"CommEarned\":11.63,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":581.48,\"IntCommissionValInPercentage\":2,\"IntCommission\":11.63,\"IntAgencyFixMarkUp\":720.31,\"IntTaxOnAgencyFixMarkUp\":129.65,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":129.65,\"PublishFare\":30978.91,\"CostToCustomer\":30978.91,\"BaseFareCal\":30246.97,\"intCommisionEarnedForAgency\":731.93,\"CostToCompany\":30246.97,\"intOfferedFare\":30117.32,\"intPublishFare\":31312.76,\"TripjackMarkup\":613.96,\"TripjackCommission\":581.48,\"TripjackTDS\":\"30.6\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":569.8504,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"06F\"},\"Segments\":[{\"originAirportName\":\"Jolly Grant Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dehra Dun\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-28T17:05\",\"SegFlightNumber\":\"G8-2316\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DED\",\"originDepTime\":\"2022-12-28T14:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01D\"}],\"FlightBookingDataInbound\":{\"keyIndex\":0,\"FlightNumber\":\"G8-2316\",\"SegFlightNumberArr\":\"G8-2316\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-2983002691_0DEDBOMG82316_19118828618548\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-12-28T14:40\",\"LocalFromTime\":\"2022-12-28 14:40\",\"FromUTCTime\":\"2022-12-28T14:40\",\"LocalToTime\":\"2022-12-28 17:05\",\"ToUTCTime\":\"2022-12-28T17:05\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Wed, 28 Dec\",\"ArrivalDateTxt\":\"Wed, 28 Dec\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DED\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":30978.91,\"PublishedFareTxt\":\"30,979\",\"ApiResultIndex\":\"1-2983002691_0DEDBOMG82316_19118828617458\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"9afe4-5662e-c67e0-3dc5d\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":27204,\"Tax\":4108.76,\"YQTax\":0,\"OtherCharges\":3424,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":613.96,\"intPublishedFare\":31312.76,\"PublishedFare\":30979,\"PublishedFarePerPax\":7745,\"OfferedFare\":30117.32,\"CommissionEarned\":581.48,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-30.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-2983002691_0DEDBOMG82316_19118828618548\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":129.65,\"apiMarkup\":0,\"IntCommission\":11.63,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":5,\"FixedMarkUp\":720.31,\"GSTOnMarkUp\":129.65,\"CommEarned\":11.63,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4108.76,\"BaseFareCal\":30246.97,\"BaseFare\":27204,\"CommissionEarned\":581.48,\"TDS\":-30.6,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":3424,\"MU\":613.96,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":129.65,\"apiMarkup\":0,\"IntCommission\":11.63,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":720.31,\"GSTOnMarkUp\":129.65,\"CommEarned\":11.63,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":581.48,\"IntCommissionValInPercentage\":2,\"IntCommission\":11.63,\"IntAgencyFixMarkUp\":720.31,\"IntTaxOnAgencyFixMarkUp\":129.65,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":129.65,\"PublishFare\":30978.91,\"CostToCustomer\":30978.91,\"BaseFareCal\":30246.97,\"intCommisionEarnedForAgency\":731.93,\"CostToCompany\":30246.97,\"intOfferedFare\":30117.32,\"intPublishFare\":31312.76,\"TripjackMarkup\":613.96,\"TripjackCommission\":581.48,\"TripjackTDS\":\"30.6\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":569.8504,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"06F\"},\"Segments\":[{\"originAirportName\":\"Jolly Grant Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dehra Dun\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-28T17:05\",\"SegFlightNumber\":\"G8-2316\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DED\",\"originDepTime\":\"2022-12-28T14:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01D\"}}','2022-11-19 16:01:01'),(741,'56b5b-fc07a-b979a-31bdb','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2083\",\"keyIndex\":12,\"SegFlightNumberArr\":\"6E-2083 +1\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3145931432_4BOMDEL6E2083DELJAI6E6232_18485339484542\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"23:00\",\"ArrivalTime\":\"07:15\",\"TravelDate\":\"2022-12-25T23:00\",\"LocalFromTime\":\"2022-12-25 23:00\",\"FromUTCTime\":\"2022-12-25T23:00\",\"LocalToTime\":\"2022-12-26 07:15\",\"ToUTCTime\":\"2022-12-26T07:15\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":290,\"LAYOVERDuration\":\"4h 50m\",\"FlyingMinutes\":495,\"DepartureDateTxt\":\"Sun, 25 Dec\",\"ArrivalDateTxt\":\"Mon, 26 Dec\",\"FlightDuration\":\"8h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"12995\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":22342,\"PublishedFareTxt\":\"22,342\",\"ApiResultIndex\":\"5-3145931432_4BOMDEL6E2083DELJAI6E6232_18485339484002\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"56b5b-fc07a-b979a-31bdb\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":18696,\"Tax\":3583.64,\"YQTax\":0,\"OtherCharges\":3076,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":436.84,\"intPublishedFare\":22279.64,\"PublishedFare\":22342,\"PublishedFarePerPax\":5586,\"OfferedFare\":21665.2,\"CommissionEarned\":177.6,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.36,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3145931432_4BOMDEL6E2083DELJAI6E6232_18485339484542\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":174.048,\"intTotalGST\":102.64,\"apiMarkup\":0,\"IntCommission\":3.55,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":570.2,\"GSTOnMarkUp\":102.64,\"CommEarned\":3.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":3583.64,\"BaseFareCal\":21767.84,\"BaseFare\":18696,\"CommissionEarned\":177.6,\"TDS\":-9.36,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":3076,\"MU\":436.84,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":102.64,\"apiMarkup\":0,\"IntCommission\":3.55,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":570.2,\"GSTOnMarkUp\":102.64,\"CommEarned\":3.55,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":177.6,\"IntCommissionValInPercentage\":2,\"IntCommission\":3.55,\"IntAgencyFixMarkUp\":570.2,\"IntTaxOnAgencyFixMarkUp\":102.64,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":102.64,\"PublishFare\":22341.59,\"CostToCustomer\":22341.59,\"BaseFareCal\":21767.84,\"intCommisionEarnedForAgency\":573.76,\"CostToCompany\":21767.84,\"intOfferedFare\":21665.2,\"intPublishFare\":22279.64,\"TripjackMarkup\":436.84,\"TripjackCommission\":177.6,\"TripjackTDS\":\"9.36\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":174.048,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00Y\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-12-26T01:20\",\"SegFlightNumber\":\"6E-2083\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-25T23:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":290,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"23:00\",\"strArrivalDtTime\":\"01:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":\"4h 50m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2022-12-26T07:15\",\"SegFlightNumber\":\"6E-6232\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-12-26T06:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":65,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"06:10\",\"strArrivalDtTime\":\"07:15\",\"FlightDuration\":\"1h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"35001-40000\",\"FilterDepartureDtTime\":\"20:00-23:59\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-22 15:01:39'),(742,'17c39-c456f-77364-cf97b','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-757\",\"keyIndex\":0,\"SegFlightNumberArr\":\"SG-757\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"4-4372744410_0PNQPATSG757_91327937420278\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"12:05\",\"ArrivalTime\":\"14:20\",\"TravelDate\":\"2022-12-06T12:05\",\"LocalFromTime\":\"2022-12-06 12:05\",\"FromUTCTime\":\"2022-12-06T12:05\",\"LocalToTime\":\"2022-12-06 14:20\",\"ToUTCTime\":\"2022-12-06T14:20\",\"IsDirect\":0,\"FareClass\":\"CP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Tue, 06 Dec\",\"ArrivalDateTxt\":\"Tue, 06 Dec\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"22238\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":27,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":6902,\"PublishedFareTxt\":\"6,901\",\"ApiResultIndex\":\"4-4372744410_0PNQPATSG757_91327937418348\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"17c39-c456f-77364-cf97b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5288,\"Tax\":1456.95,\"YQTax\":0,\"OtherCharges\":1027,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":280,\"CarrierMiscFee\":0,\"MUFee\":132.25,\"intPublishedFare\":6744.95,\"PublishedFare\":6760,\"PublishedFarePerPax\":6760,\"OfferedFare\":6386.64,\"CommissionEarned\":226.06,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-11.9,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"4-4372744410_0PNQPATSG757_91327937420278\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Svezz Special Benefits\",\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"FareClass\":\"Economy\",\"CommisionPass\":221.5388,\"intTotalGST\":56.17,\"apiMarkup\":0,\"IntCommission\":4.52,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":27,\"FixedMarkUp\":312.08,\"GSTOnMarkUp\":56.17,\"CommEarned\":4.52,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1456.95,\"BaseFareCal\":6442.81,\"BaseFare\":5288,\"CommissionEarned\":226.06,\"TDS\":-11.9,\"MF\":15,\"YQ\":0,\"AGST\":280,\"MFT\":2.7,\"OT\":1027,\"MU\":132.25,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.17,\"apiMarkup\":0,\"IntCommission\":4.52,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":312.08,\"GSTOnMarkUp\":56.17,\"CommEarned\":4.52,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":226.06,\"IntCommissionValInPercentage\":2,\"IntCommission\":4.52,\"IntAgencyFixMarkUp\":312.08,\"IntTaxOnAgencyFixMarkUp\":56.17,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.17,\"PublishFare\":6759.41,\"CostToCustomer\":6759.41,\"BaseFareCal\":6442.81,\"intCommisionEarnedForAgency\":316.6,\"CostToCompany\":6442.81,\"intOfferedFare\":6386.64,\"intPublishFare\":6744.95,\"TripjackMarkup\":132.25,\"TripjackCommission\":226.06,\"TripjackTDS\":\"11.9\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":221.5388,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00E\"},\"Segments\":[{\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-12-06T14:20\",\"SegFlightNumber\":\"SG-757\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"CP\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-12-06T12:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":27,\"strDepartureDtTime\":\"12:05\",\"strArrivalDtTime\":\"14:20\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"$$hashKey\":\"01S\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-23 13:03:43'),(743,'d781f-1f0c0-937f9-77cc7','{\"FlightBookingData\":[{\"FlightNumber\":\"SG-376\",\"keyIndex\":222,\"SegFlightNumberArr\":\"SG-376\",\"AirlineName\":\"Spicejet\",\"AirlineCode\":\"SG\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-8397747702_0BOMPATSG376_185516794528586\",\"AirlineSysId\":\"463\",\"DepartureTime\":\"19:05\",\"ArrivalTime\":\"21:20\",\"TravelDate\":\"2022-11-28T19:05\",\"LocalFromTime\":\"2022-11-28 19:05\",\"FromUTCTime\":\"2022-11-28T19:05\",\"LocalToTime\":\"2022-11-28 21:20\",\"ToUTCTime\":\"2022-11-28T21:20\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":135,\"DepartureDateTxt\":\"Mon, 28 Nov\",\"ArrivalDateTxt\":\"Mon, 28 Nov\",\"FlightDuration\":\"2h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":5521,\"PublishedFareTxt\":\"5,520\",\"ApiResultIndex\":\"11-8397747702_0BOMPATSG376_185516794528586\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"d781f-1f0c0-937f9-77cc7\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":4600,\"Tax\":416.05,\"YQTax\":0,\"OtherCharges\":300,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":98.35,\"intPublishedFare\":5016.05,\"PublishedFare\":5521,\"PublishedFarePerPax\":5521,\"OfferedFare\":4830.3,\"CommissionEarned\":87.4,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.6,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-8397747702_0BOMPATSG376_185516794528586\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"CommisionPass\":85.652,\"intTotalGST\":105,\"apiMarkup\":0,\"IntCommission\":1.75,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":583.35,\"GSTOnMarkUp\":105,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"500.00\",\"AddiTaxOnMarkup\":90,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":416.05,\"BaseFareCal\":4935.3,\"BaseFare\":4600,\"CommissionEarned\":87.4,\"TDS\":-4.6,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":300,\"MU\":98.35,\"YR\":0,\"AddiTaxOnMarkup\":90,\"AddiMarkup\":500,\"intTotalGST\":105,\"apiMarkup\":0,\"IntCommission\":1.75,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":583.35,\"GSTOnMarkUp\":105,\"CommEarned\":1.75,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":87.4,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.75,\"IntAgencyFixMarkUp\":583.35,\"IntTaxOnAgencyFixMarkUp\":105,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":105,\"PublishFare\":5520.4,\"CostToCustomer\":5520.4,\"BaseFareCal\":4935.3,\"intCommisionEarnedForAgency\":585.1,\"CostToCompany\":4935.3,\"intOfferedFare\":4830.3,\"intPublishFare\":5016.05,\"TripjackMarkup\":98.35,\"TripjackCommission\":87.4,\"TripjackTDS\":\"4.6\",\"AddiMarkup\":\"500.00\",\"CommisionPass\":85.652,\"AddiTaxOnMarkup\":90,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":500},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00X\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-11-28T21:20\",\"SegFlightNumber\":\"SG-376\",\"AirlineCode\":\"SG\",\"AirlineName\":\"SpiceJet\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-11-28T19:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":135,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"19:05\",\"strArrivalDtTime\":\"21:20\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/SG.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-23 15:02:51'),(744,'f9742-c2749-fe739-06966','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-653\",\"keyIndex\":1,\"SegFlightNumberArr\":\"6E-653\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-7835731641_0PNQPAT6E653_12857206912257\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"16:40\",\"ArrivalTime\":\"19:00\",\"TravelDate\":\"2022-12-05T16:40\",\"LocalFromTime\":\"2022-12-05 16:40\",\"FromUTCTime\":\"2022-12-05T16:40\",\"LocalToTime\":\"2022-12-05 19:00\",\"ToUTCTime\":\"2022-12-05T19:00\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Mon, 05 Dec\",\"ArrivalDateTxt\":\"Mon, 05 Dec\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"22238\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"PNQ\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":null,\"PublishedFare\":7013,\"PublishedFareTxt\":\"7,012\",\"ApiResultIndex\":\"5-7835731641_0PNQPAT6E653_12857206911087\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"f9742-c2749-fe739-06966\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":5599,\"Tax\":1229.59,\"YQTax\":0,\"OtherCharges\":1078,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":133.89,\"intPublishedFare\":6828.59,\"PublishedFare\":7013,\"PublishedFarePerPax\":7013,\"OfferedFare\":6641.51,\"CommissionEarned\":53.19,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.8,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-7835731641_0PNQPAT6E653_12857206912257\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"CommisionPass\":52.1262,\"intTotalGST\":56.42,\"apiMarkup\":0,\"IntCommission\":1.06,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":313.47,\"GSTOnMarkUp\":56.42,\"CommEarned\":1.06,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1229.59,\"BaseFareCal\":6697.93,\"BaseFare\":5599,\"CommissionEarned\":53.19,\"TDS\":-2.8,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":1078,\"MU\":133.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":56.42,\"apiMarkup\":0,\"IntCommission\":1.06,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":313.47,\"GSTOnMarkUp\":56.42,\"CommEarned\":1.06,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":53.19,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.06,\"IntAgencyFixMarkUp\":313.47,\"IntTaxOnAgencyFixMarkUp\":56.42,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":56.42,\"PublishFare\":7012.46,\"CostToCustomer\":7012.46,\"BaseFareCal\":6697.93,\"intCommisionEarnedForAgency\":314.53,\"CostToCompany\":6697.93,\"intOfferedFare\":6641.51,\"intPublishFare\":6828.59,\"TripjackMarkup\":133.89,\"TripjackCommission\":53.19,\"TripjackTDS\":\"2.8\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":52.1262,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00E\"},\"Segments\":[{\"originAirportName\":\"Lohegaon Arpt\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Pune\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2022-12-05T19:00\",\"SegFlightNumber\":\"6E-653\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"PNQ\",\"originDepTime\":\"2022-12-05T16:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"16:40\",\"strArrivalDtTime\":\"19:00\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-23 15:09:56'),(746,'735a1-8f735-c96db-2bad9','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":2,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":905,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"13h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":112948.99,\"PublishedFareTxt\":\"112,949\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82500,\"Tax\":33227.340000000004,\"YQTax\":0,\"OtherCharges\":26727,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":4125,\"CarrierMiscFee\":0,\"MUFee\":2269.14,\"intPublishedFare\":115727.34,\"PublishedFare\":112949,\"PublishedFarePerPax\":37650,\"OfferedFare\":110141.51999999999,\"CommissionEarned\":3316.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-174.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":418.14,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2323,\"GSTOnMarkUp\":418.14,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":33227.340000000004,\"BaseFareCal\":110559.66,\"BaseFare\":82500,\"CommissionEarned\":3316.68,\"TDS\":-174.57,\"MF\":90,\"YQ\":0,\"AGST\":4125,\"MFT\":16.200000000000003,\"OT\":26727,\"MU\":2269.14,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":418.14,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2323,\"GSTOnMarkUp\":418.14,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3316.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":66.33,\"IntAgencyFixMarkUp\":2323,\"IntTaxOnAgencyFixMarkUp\":418.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":418.14,\"PublishFare\":112948.99,\"CostToCustomer\":112948.99,\"BaseFareCal\":110559.66,\"intCommisionEarnedForAgency\":2389.33,\"CostToCompany\":110559.66,\"intOfferedFare\":110141.51999999999,\"intPublishFare\":115727.34,\"TripjackMarkup\":2269.14,\"TripjackCommission\":3316.68,\"TripjackTDS\":\"174.57\",\"AddiMarkup\":400,\"CommisionPass\":3250.3464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01I\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"keyIndex\":2,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":0,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_17296046908223\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-301\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_17296046908223\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"01:10\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 01:10\",\"ToUTCTime\":\"2023-04-04T01:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":110,\"LAYOVERDuration\":\"1h 50m\",\"FlyingMinutes\":600,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"8h 35m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":112948.99,\"PublishedFareTxt\":\"112,949\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0851888951_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_17296046908223\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_17296046908223\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82500,\"Tax\":33227.340000000004,\"YQTax\":0,\"OtherCharges\":26727,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":4125,\"CarrierMiscFee\":0,\"MUFee\":2269.14,\"intPublishedFare\":115727.34,\"PublishedFare\":112949,\"PublishedFarePerPax\":37650,\"OfferedFare\":110141.51999999999,\"CommissionEarned\":3316.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-174.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0851888951_0BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU301_17296046908223\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":9,\"intTotalGST\":418.14,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2323,\"GSTOnMarkUp\":418.14,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":33227.340000000004,\"BaseFareCal\":110559.66,\"BaseFare\":82500,\"CommissionEarned\":3316.68,\"TDS\":-174.57,\"MF\":90,\"YQ\":0,\"AGST\":4125,\"MFT\":16.200000000000003,\"OT\":26727,\"MU\":2269.14,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":418.14,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2323,\"GSTOnMarkUp\":418.14,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3316.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":66.33,\"IntAgencyFixMarkUp\":2323,\"IntTaxOnAgencyFixMarkUp\":418.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":418.14,\"PublishFare\":112948.99,\"CostToCustomer\":112948.99,\"BaseFareCal\":110559.66,\"intCommisionEarnedForAgency\":2389.33,\"CostToCompany\":110559.66,\"intOfferedFare\":110141.51999999999,\"intPublishFare\":115727.34,\"TripjackMarkup\":2269.14,\"TripjackCommission\":3316.68,\"TripjackTDS\":\"174.57\",\"AddiMarkup\":400,\"CommisionPass\":3250.3464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":110,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"1h 50m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T01:10\",\"SegFlightNumber\":\"KU-301\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T18:35\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"18:35\",\"strArrivalDtTime\":\"01:10\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"keyIndex\":0,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01K\"},{\"origin\":{\"keyIndex\":1,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_17296046913063\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"542\",\"SegFlightNumberArr\":\"KU-542, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-542\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_17296046913063\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"17:25\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T17:25\",\"LocalFromTime\":\"2023-04-03 17:25\",\"FromUTCTime\":\"2023-04-03T17:25\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":150,\"LAYOVERDuration\":\"2h 30m\",\"FlyingMinutes\":640,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"9h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":112948.99,\"PublishedFareTxt\":\"112,949\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0851888951_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_17296046913063\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_17296046913063\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82500,\"Tax\":33227.340000000004,\"YQTax\":0,\"OtherCharges\":26727,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":4125,\"CarrierMiscFee\":0,\"MUFee\":2269.14,\"intPublishedFare\":115727.34,\"PublishedFare\":112949,\"PublishedFarePerPax\":37650,\"OfferedFare\":110141.51999999999,\"CommissionEarned\":3316.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-174.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0851888951_1BOMKWIKU304KWICAIKU541CAIKWIKU542KWIBOMKU303_17296046913063\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":418.14,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2323,\"GSTOnMarkUp\":418.14,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":33227.340000000004,\"BaseFareCal\":110559.66,\"BaseFare\":82500,\"CommissionEarned\":3316.68,\"TDS\":-174.57,\"MF\":90,\"YQ\":0,\"AGST\":4125,\"MFT\":16.200000000000003,\"OT\":26727,\"MU\":2269.14,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":418.14,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2323,\"GSTOnMarkUp\":418.14,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3316.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":66.33,\"IntAgencyFixMarkUp\":2323,\"IntTaxOnAgencyFixMarkUp\":418.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":418.14,\"PublishFare\":112948.99,\"CostToCustomer\":112948.99,\"BaseFareCal\":110559.66,\"intCommisionEarnedForAgency\":2389.33,\"CostToCompany\":110559.66,\"intOfferedFare\":110141.51999999999,\"intPublishFare\":115727.34,\"TripjackMarkup\":2269.14,\"TripjackCommission\":3316.68,\"TripjackTDS\":\"174.57\",\"AddiMarkup\":400,\"CommisionPass\":3250.3464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T21:10\",\"SegFlightNumber\":\"KU-542\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T17:25\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":165,\"GroundTime\":150,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"17:25\",\"strArrivalDtTime\":\"21:10\",\"FlightDuration\":\"2h 45m\",\"LAYOVERDuration\":\"2h 30m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"17:25\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"keyIndex\":1,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01L\"},{\"origin\":{\"keyIndex\":2,\"FlightNumber\":\"304\",\"SegFlightNumberArr\":\"KU-304, KU-541\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"OrFlightNumber\":\"KU-304\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"07:15\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-03-27T07:15\",\"LocalFromTime\":\"2023-03-27 07:15\",\"FromUTCTime\":\"2023-03-27T07:15\",\"LocalToTime\":\"2023-03-27 16:10\",\"ToUTCTime\":\"2023-03-27T16:10\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":255,\"LAYOVERDuration\":\"4h 15m\",\"FlyingMinutes\":745,\"DepartureDateTxt\":\"Mon, 27 Mar\",\"ArrivalDateTxt\":\"Mon, 27 Mar\",\"FlightDuration\":\"12h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"CAI\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"destination\":{\"FlightNumber\":\"546\",\"SegFlightNumberArr\":\"KU-546, KU-303\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"DeFlightNumber\":\"KU-546\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":905,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"13h 40m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"4701\",\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},\"AirlineName\":\"Kuwait Airways\",\"PublishedFare\":112948.99,\"PublishedFareTxt\":\"112,949\",\"ApiResultIndex\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"apiTraceId\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":82500,\"Tax\":33227.340000000004,\"YQTax\":0,\"OtherCharges\":26727,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":4125,\"CarrierMiscFee\":0,\"MUFee\":2269.14,\"intPublishedFare\":115727.34,\"PublishedFare\":112949,\"PublishedFarePerPax\":37650,\"OfferedFare\":110141.51999999999,\"CommissionEarned\":3316.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-174.57,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"27-21-20-12-15-2-10-0851888951_2BOMKWIKU304KWICAIKU541CAIKWIKU546KWIBOMKU303_17296046917103\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":7,\"intTotalGST\":418.14,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2323,\"GSTOnMarkUp\":418.14,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"3\",\"TaxIN\":33227.340000000004,\"BaseFareCal\":110559.66,\"BaseFare\":82500,\"CommissionEarned\":3316.68,\"TDS\":-174.57,\"MF\":90,\"YQ\":0,\"AGST\":4125,\"MFT\":16.200000000000003,\"OT\":26727,\"MU\":2269.14,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":418.14,\"apiMarkup\":0,\"IntCommission\":66.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":2323,\"GSTOnMarkUp\":418.14,\"CommEarned\":66.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\"}],\"IsMealIncludes\":null,\"Baggage\":\"2  Piece\",\"CabinBaggage\":\"7Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3316.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":66.33,\"IntAgencyFixMarkUp\":2323,\"IntTaxOnAgencyFixMarkUp\":418.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":418.14,\"PublishFare\":112948.99,\"CostToCustomer\":112948.99,\"BaseFareCal\":110559.66,\"intCommisionEarnedForAgency\":2389.33,\"CostToCompany\":110559.66,\"intOfferedFare\":110141.51999999999,\"intPublishFare\":115727.34,\"TripjackMarkup\":2269.14,\"TripjackCommission\":3316.68,\"TripjackTDS\":\"174.57\",\"AddiMarkup\":400,\"CommisionPass\":3250.3464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-03-27T09:30\",\"SegFlightNumber\":\"KU-304\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-03-27T07:15\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":285,\"GroundTime\":255,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"07:15\",\"strArrivalDtTime\":\"09:30\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"4h 15m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":false,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Cairo Intl Arpt\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Cairo\",\"destinationCountryName\":\"Egypt\",\"destinationAirportCode\":\"CAI\",\"destinationArrTime\":\"2023-03-27T16:10\",\"SegFlightNumber\":\"KU-541\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-03-27T13:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":205,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"3h 25m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"2  Piece\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7Kg\",\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"DepartureTime\":\"13:05\",\"StopCount\":\"1 Stop(s)\",\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"keyIndex\":2,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"$$hashKey\":\"01M\"}]},{\"bookingId\":\"TJ119849303201\",\"FlightNumber\":\"KU-546\",\"AirlineName\":\"Kuwait Airways\",\"AirlineCode\":\"KU\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":null,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":null,\"AirlineSysId\":\"313\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"06:15\",\"TravelDate\":\"2023-04-03T13:05\",\"LocalFromTime\":\"2023-04-03 13:05\",\"FromUTCTime\":\"2023-04-03T13:05\",\"LocalToTime\":\"2023-04-04 06:15\",\"ToUTCTime\":\"2023-04-04T06:15\",\"IsDirect\":0,\"FareClass\":\"V\",\"LAYOVERCity\":\"Kuwait\",\"GroundTime\":415,\"LAYOVERDuration\":\"6h 55m\",\"FlyingMinutes\":820,\"DepartureDateTxt\":\"Mon, 03 Apr\",\"ArrivalDateTxt\":\"Tue, 04 Apr\",\"FlightDuration\":\"17h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":4701,\"SourceAirportCode\":\"CAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":0,\"PublishedFareTxt\":\"0\",\"ApiResultIndex\":null,\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"1\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-BOM\":{\"fr\":{\"DATECHANGE\":{\"AFTER_DEPARTURE\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"AFTER DEPARTURE Available\",\"fcs\":{\"ARF\":3500,\"CRF\":50,\"CRFT\":9,\"ARFT\":175}},\"BEFORE_DEPARTURE\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"BEFORE DEPARTURE Available\",\"fcs\":{\"ARF\":3500,\"CRF\":50,\"CRFT\":9,\"ARFT\":175}}},\"CANCELLATION\":{\"AFTER_DEPARTURE\":{\"amount\":3000,\"additionalFee\":100,\"policyInfo\":\"AFTER DEPARTURE Available\",\"fcs\":{\"CCF\":100,\"CCFT\":18,\"ACFT\":150,\"ACF\":3000}},\"BEFORE_DEPARTURE\":{\"amount\":5000,\"additionalFee\":100,\"policyInfo\":\"BEFORE DEPARTURE Available\",\"fcs\":{\"CCF\":100,\"CCFT\":18,\"ACFT\":250,\"ACF\":5000}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":[],\"Segments\":[{\"segmentid\":\"558\",\"originAirportName\":\"Cairo Intl Arpt\",\"destinationAirportName\":\"Kuwait Intl\",\"originCityName\":\"Cairo\",\"originCountryName\":\"Egypt\",\"destinationCityName\":\"Kuwait\",\"destinationCountryName\":\"Kuwait\",\"destinationAirportCode\":\"KWI\",\"destinationArrTime\":\"2023-04-03T16:45\",\"SegFlightNumber\":\"KU-546\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"CAI\",\"originDepTime\":\"2023-04-03T13:05\",\"TripIndicator\":\"\",\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":160,\"GroundTime\":415,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":\"6h 55m\",\"LAYOVERCity\":\"Kuwait\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 4\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"},{\"segmentid\":\"559\",\"originAirportName\":\"Kuwait Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Kuwait\",\"originCountryName\":\"Kuwait\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-04T06:15\",\"SegFlightNumber\":\"KU-303\",\"AirlineCode\":\"KU\",\"AirlineName\":\"Kuwait Airways\",\"FareClass\":\"V\",\"originAirportCode\":\"KWI\",\"originDepTime\":\"2023-04-03T23:40\",\"TripIndicator\":\"\",\"Baggage\":\"2Piece\",\"CabinBaggage\":\"7Kg\",\"IsBaggage\":true,\"IsMealIncludes\":null,\"Duration\":245,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"23:40\",\"strArrivalDtTime\":\"06:15\",\"FlightDuration\":\"4h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 4\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/KU.gif\"}],\"Baggage\":null,\"Meal\":null,\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"735a1-8f735-c96db-2bad9\",\"ICSourceSysId\":7,\"IsPassMandatory\":true,\"IsPassExpiry\":true,\"IsPassIssue\":true,\"IsPassDateOfBirth\":true,\"isDobAdult\":true,\"isDobChild\":true,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":null,\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-03-27 12:00\",\"localToDateTime\":\"2023-04-03 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"CAI\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":4701,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"1\"},\"FilterPrice\":\"\"}],\"FlightBookingDataInbound\":null}','2022-11-23 15:24:44'),(747,'3969c-66b3a-bf0be-5c8ee','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-2111\",\"keyIndex\":93,\"SegFlightNumberArr\":\"6E-2111 +1\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-0182924997_22BOMDEL6E2111DELDED6E5026_18466702270425\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"02:30\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2022-12-22T02:30\",\"LocalFromTime\":\"2022-12-22 02:30\",\"FromUTCTime\":\"2022-12-22T02:30\",\"LocalToTime\":\"2022-12-22 08:45\",\"ToUTCTime\":\"2022-12-22T08:45\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Delhi\",\"GroundTime\":205,\"LAYOVERDuration\":\"3h 25m\",\"FlyingMinutes\":375,\"DepartureDateTxt\":\"Thu, 22 Dec\",\"ArrivalDateTxt\":\"Thu, 22 Dec\",\"FlightDuration\":\"6h 15m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DED\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":7,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":39194,\"PublishedFareTxt\":\"39,193\",\"ApiResultIndex\":\"5-0182924997_22BOMDEL6E2111DELDED6E5026_18466702270055\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"3969c-66b3a-bf0be-5c8ee\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":34768,\"Tax\":4513,\"YQTax\":0,\"OtherCharges\":3672,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":770.2,\"intPublishedFare\":39281,\"PublishedFare\":39194,\"PublishedFarePerPax\":9799,\"OfferedFare\":38180.48,\"CommissionEarned\":330.32,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-17.4,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-0182924997_22BOMDEL6E2111DELDED6E5026_18466702270425\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Tact Deal\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":323.7136,\"intTotalGST\":153.49,\"apiMarkup\":0,\"IntCommission\":6.61,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":7,\"FixedMarkUp\":852.71,\"GSTOnMarkUp\":153.49,\"CommEarned\":6.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4513,\"BaseFareCal\":38333.97,\"BaseFare\":34768,\"CommissionEarned\":330.32,\"TDS\":-17.4,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":3672,\"MU\":770.2,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":153.49,\"apiMarkup\":0,\"IntCommission\":6.61,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":852.71,\"GSTOnMarkUp\":153.49,\"CommEarned\":6.61,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":330.32,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.61,\"IntAgencyFixMarkUp\":852.71,\"IntTaxOnAgencyFixMarkUp\":153.49,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":153.49,\"PublishFare\":39193.29,\"CostToCustomer\":39193.29,\"BaseFareCal\":38333.97,\"intCommisionEarnedForAgency\":859.32,\"CostToCompany\":38333.97,\"intOfferedFare\":38180.48,\"intPublishFare\":39281,\"TripjackMarkup\":770.2,\"TripjackCommission\":330.32,\"TripjackTDS\":\"17.4\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":323.7136,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"04X\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2022-12-22T04:45\",\"SegFlightNumber\":\"6E-2111\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2022-12-22T02:30\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":135,\"GroundTime\":205,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"02:30\",\"strArrivalDtTime\":\"04:45\",\"FlightDuration\":\"2h 15m\",\"LAYOVERDuration\":\"3h 25m\",\"LAYOVERCity\":\"Delhi\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Jolly Grant Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Dehra Dun\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DED\",\"destinationArrTime\":\"2022-12-22T08:45\",\"SegFlightNumber\":\"6E-5026\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2022-12-22T08:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":35,\"GroundTime\":0,\"NoOfSeatAvailable\":7,\"strDepartureDtTime\":\"08:10\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"0h 35m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"55001-60000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[],\"$$hashKey\":\"00S\"},{\"keyIndex\":0,\"FlightNumber\":\"G8-2316\",\"SegFlightNumberArr\":\"G8-2316\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0182924997_0DEDBOMG82316_18463264941445\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-12-29T14:40\",\"LocalFromTime\":\"2022-12-29 14:40\",\"FromUTCTime\":\"2022-12-29T14:40\",\"LocalToTime\":\"2022-12-29 17:05\",\"ToUTCTime\":\"2022-12-29T17:05\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 29 Dec\",\"ArrivalDateTxt\":\"Thu, 29 Dec\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DED\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":40643.48,\"PublishedFareTxt\":\"40,643\",\"ApiResultIndex\":\"1-0182924997_0DEDBOMG82316_18463264940175\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"3969c-66b3a-bf0be-5c8ee\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":36404,\"Tax\":4766.04,\"YQTax\":0,\"OtherCharges\":3888,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":807.24,\"intPublishedFare\":41170.04,\"PublishedFare\":40644,\"PublishedFarePerPax\":10161,\"OfferedFare\":39584.68,\"CommissionEarned\":778.12,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-40.96,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0182924997_0DEDBOMG82316_18463264941445\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":159.14,\"apiMarkup\":0,\"IntCommission\":15.56,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":884.1,\"GSTOnMarkUp\":159.14,\"CommEarned\":15.56,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4766.04,\"BaseFareCal\":39743.82,\"BaseFare\":36404,\"CommissionEarned\":778.12,\"TDS\":-40.96,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":3888,\"MU\":807.24,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":159.14,\"apiMarkup\":0,\"IntCommission\":15.56,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":884.1,\"GSTOnMarkUp\":159.14,\"CommEarned\":15.56,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":778.12,\"IntCommissionValInPercentage\":2,\"IntCommission\":15.56,\"IntAgencyFixMarkUp\":884.1,\"IntTaxOnAgencyFixMarkUp\":159.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":159.14,\"PublishFare\":40643.48,\"CostToCustomer\":40643.48,\"BaseFareCal\":39743.82,\"intCommisionEarnedForAgency\":899.66,\"CostToCompany\":39743.82,\"intOfferedFare\":39584.68,\"intPublishFare\":41170.04,\"TripjackMarkup\":807.24,\"TripjackCommission\":778.12,\"TripjackTDS\":\"40.96\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":762.5576,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"08K\"},\"Segments\":[{\"originAirportName\":\"Jolly Grant Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dehra Dun\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-29T17:05\",\"SegFlightNumber\":\"G8-2316\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DED\",\"originDepTime\":\"2022-12-29T14:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01I\"}],\"FlightBookingDataInbound\":{\"keyIndex\":0,\"FlightNumber\":\"G8-2316\",\"SegFlightNumberArr\":\"G8-2316\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-0182924997_0DEDBOMG82316_18463264941445\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-12-29T14:40\",\"LocalFromTime\":\"2022-12-29 14:40\",\"FromUTCTime\":\"2022-12-29T14:40\",\"LocalToTime\":\"2022-12-29 17:05\",\"ToUTCTime\":\"2022-12-29T17:05\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 29 Dec\",\"ArrivalDateTxt\":\"Thu, 29 Dec\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"0\",\"SourceAirportCode\":\"DED\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":40643.48,\"PublishedFareTxt\":\"40,643\",\"ApiResultIndex\":\"1-0182924997_0DEDBOMG82316_18463264940175\",\"JourneyType\":2,\"TripType\":1,\"SearchFlightTraceId\":\"3969c-66b3a-bf0be-5c8ee\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":36404,\"Tax\":4766.04,\"YQTax\":0,\"OtherCharges\":3888,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":807.24,\"intPublishedFare\":41170.04,\"PublishedFare\":40644,\"PublishedFarePerPax\":10161,\"OfferedFare\":39584.68,\"CommissionEarned\":778.12,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-40.96,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-0182924997_0DEDBOMG82316_18463264941445\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"intTotalGST\":159.14,\"apiMarkup\":0,\"IntCommission\":15.56,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":884.1,\"GSTOnMarkUp\":159.14,\"CommEarned\":15.56,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4766.04,\"BaseFareCal\":39743.82,\"BaseFare\":36404,\"CommissionEarned\":778.12,\"TDS\":-40.96,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":3888,\"MU\":807.24,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":159.14,\"apiMarkup\":0,\"IntCommission\":15.56,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":884.1,\"GSTOnMarkUp\":159.14,\"CommEarned\":15.56,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":778.12,\"IntCommissionValInPercentage\":2,\"IntCommission\":15.56,\"IntAgencyFixMarkUp\":884.1,\"IntTaxOnAgencyFixMarkUp\":159.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":159.14,\"PublishFare\":40643.48,\"CostToCustomer\":40643.48,\"BaseFareCal\":39743.82,\"intCommisionEarnedForAgency\":899.66,\"CostToCompany\":39743.82,\"intOfferedFare\":39584.68,\"intPublishFare\":41170.04,\"TripjackMarkup\":807.24,\"TripjackCommission\":778.12,\"TripjackTDS\":\"40.96\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":762.5576,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"08K\"},\"Segments\":[{\"originAirportName\":\"Jolly Grant Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dehra Dun\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-29T17:05\",\"SegFlightNumber\":\"G8-2316\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DED\",\"originDepTime\":\"2022-12-29T14:40\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"01I\"}}','2022-11-24 13:17:19'),(748,'1e6cc-0bf27-2d528-abcac','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-2316\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-2316\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-6991301732_0DEDBOMG82316_4270104723476\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"14:40\",\"ArrivalTime\":\"17:05\",\"TravelDate\":\"2022-12-29T14:40\",\"LocalFromTime\":\"2022-12-29 14:40\",\"FromUTCTime\":\"2022-12-29T14:40\",\"LocalToTime\":\"2022-12-29 17:05\",\"ToUTCTime\":\"2022-12-29T17:05\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":145,\"DepartureDateTxt\":\"Thu, 29 Dec\",\"ArrivalDateTxt\":\"Thu, 29 Dec\",\"FlightDuration\":\"2h 25m\",\"SourcePlaceSysId\":\"0\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DED\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":4,\"CurrencyType\":null,\"PublishedFare\":40644,\"PublishedFareTxt\":\"40,643\",\"ApiResultIndex\":\"1-6991301732_0DEDBOMG82316_4270104722306\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"1e6cc-0bf27-2d528-abcac\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":36404,\"Tax\":4766.04,\"YQTax\":0,\"OtherCharges\":3888,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":807.24,\"intPublishedFare\":41170.04,\"PublishedFare\":40644,\"PublishedFarePerPax\":10161,\"OfferedFare\":39584.68,\"CommissionEarned\":778.12,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-40.96,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-6991301732_0DEDBOMG82316_4270104723476\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"CommisionPass\":762.5576,\"intTotalGST\":159.14,\"apiMarkup\":0,\"IntCommission\":15.56,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":884.1,\"GSTOnMarkUp\":159.14,\"CommEarned\":15.56,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"4\",\"TaxIN\":4766.04,\"BaseFareCal\":39743.82,\"BaseFare\":36404,\"CommissionEarned\":778.12,\"TDS\":-40.96,\"MF\":60,\"YQ\":0,\"AGST\":0,\"MFT\":10.8,\"OT\":3888,\"MU\":807.24,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":159.14,\"apiMarkup\":0,\"IntCommission\":15.56,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":884.1,\"GSTOnMarkUp\":159.14,\"CommEarned\":15.56,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":778.12,\"IntCommissionValInPercentage\":2,\"IntCommission\":15.56,\"IntAgencyFixMarkUp\":884.1,\"IntTaxOnAgencyFixMarkUp\":159.14,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":159.14,\"PublishFare\":40643.48,\"CostToCustomer\":40643.48,\"BaseFareCal\":39743.82,\"intCommisionEarnedForAgency\":899.66,\"CostToCompany\":39743.82,\"intOfferedFare\":39584.68,\"intPublishFare\":41170.04,\"TripjackMarkup\":807.24,\"TripjackCommission\":778.12,\"TripjackTDS\":\"40.96\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":762.5576,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"035\"},\"Segments\":[{\"originAirportName\":\"Jolly Grant Airport\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Dehra Dun\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2022-12-29T17:05\",\"SegFlightNumber\":\"G8-2316\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DED\",\"originDepTime\":\"2022-12-29T14:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":145,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:40\",\"strArrivalDtTime\":\"17:05\",\"FlightDuration\":\"2h 25m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"90001-95000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2022-11-24 13:28:51'),(749,'31ff5-fd520-9354e-36d01','{\"FlightBookingData\":[{\"origin\":{\"keyIndex\":0,\"FlightNumber\":\"73\",\"SegFlightNumberArr\":\"G8-73\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"OrFlightNumber\":\"G8-73\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433009403\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"11:45\",\"TravelDate\":\"2023-01-15T05:30\",\"LocalFromTime\":\"2023-01-15 05:30\",\"FromUTCTime\":\"2023-01-15T05:30\",\"LocalToTime\":\"2023-01-15 11:45\",\"ToUTCTime\":\"2023-01-15T11:45\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Sun, 15 Jan\",\"ArrivalDateTxt\":\"Sun, 15 Jan\",\"FlightDuration\":\"4h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"21319\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"HKT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"31ff5-fd520-9354e-36d01\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},\"destination\":{\"FlightNumber\":\"74\",\"SegFlightNumberArr\":\"G8-74\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"DeFlightNumber\":\"G8-74\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433009403\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"12:45\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-01-18T12:45\",\"LocalFromTime\":\"2023-01-18 12:45\",\"FromUTCTime\":\"2023-01-18T12:45\",\"LocalToTime\":\"2023-01-18 16:10\",\"ToUTCTime\":\"2023-01-18T16:10\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Wed, 18 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"21319\",\"SourceAirportCode\":\"HKT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"31ff5-fd520-9354e-36d01\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},\"AirlineName\":\"Go First\",\"PublishedFare\":57524.65,\"PublishedFareTxt\":\"57,525\",\"ApiResultIndex\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433009403\",\"apiTraceId\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433010093\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":45152,\"Tax\":13896.6,\"YQTax\":3000,\"OtherCharges\":9668,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1157.8,\"intPublishedFare\":59048.6,\"PublishedFare\":57525,\"PublishedFarePerPax\":28763,\"OfferedFare\":55854.12,\"CommissionEarned\":2036.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-107.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433010093\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":248.61,\"apiMarkup\":0,\"IntCommission\":40.73,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1381.19,\"GSTOnMarkUp\":248.61,\"CommEarned\":40.73,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":13896.6,\"BaseFareCal\":56102.73,\"BaseFare\":45152,\"CommissionEarned\":2036.68,\"TDS\":-107.2,\"MF\":60,\"YQ\":3000,\"AGST\":0,\"MFT\":10.8,\"OT\":9668,\"MU\":1157.8,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":248.61,\"apiMarkup\":0,\"IntCommission\":40.73,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1381.19,\"GSTOnMarkUp\":248.61,\"CommEarned\":40.73,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"20 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":2036.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":40.73,\"IntAgencyFixMarkUp\":1381.19,\"IntTaxOnAgencyFixMarkUp\":248.61,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":248.61,\"PublishFare\":57524.65,\"CostToCustomer\":57524.65,\"BaseFareCal\":56102.73,\"intCommisionEarnedForAgency\":1421.92,\"CostToCompany\":56102.73,\"intOfferedFare\":55854.12,\"intPublishFare\":59048.6,\"TripjackMarkup\":1157.8,\"TripjackCommission\":2036.68,\"TripjackTDS\":\"107.2\",\"AddiMarkup\":400,\"CommisionPass\":1995.9464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"05L\"},\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Phuket Intl Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Phuket\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"HKT\",\"destinationArrTime\":\"2023-01-15T11:45\",\"SegFlightNumber\":\"G8-73\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-01-15T05:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":285,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"11:45\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Phuket Intl Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Phuket\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T16:10\",\"SegFlightNumber\":\"G8-74\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"HKT\",\"originDepTime\":\"2023-01-18T12:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":295,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"12:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"4h 55m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"DepartureTime\":\"12:45\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"31ff5-fd520-9354e-36d01\",\"keyIndex\":0,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[{\"origin\":{\"keyIndex\":0,\"FlightNumber\":\"73\",\"SegFlightNumberArr\":\"G8-73\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"OrFlightNumber\":\"G8-73\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433009403\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"05:30\",\"ArrivalTime\":\"11:45\",\"TravelDate\":\"2023-01-15T05:30\",\"LocalFromTime\":\"2023-01-15 05:30\",\"FromUTCTime\":\"2023-01-15T05:30\",\"LocalToTime\":\"2023-01-15 11:45\",\"ToUTCTime\":\"2023-01-15T11:45\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Sun, 15 Jan\",\"ArrivalDateTxt\":\"Sun, 15 Jan\",\"FlightDuration\":\"4h 45m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"21319\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"HKT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":1,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"31ff5-fd520-9354e-36d01\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},\"destination\":{\"FlightNumber\":\"74\",\"SegFlightNumberArr\":\"G8-74\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"DeFlightNumber\":\"G8-74\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":null,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433009403\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"12:45\",\"ArrivalTime\":\"16:10\",\"TravelDate\":\"2023-01-18T12:45\",\"LocalFromTime\":\"2023-01-18 12:45\",\"FromUTCTime\":\"2023-01-18T12:45\",\"LocalToTime\":\"2023-01-18 16:10\",\"ToUTCTime\":\"2023-01-18T16:10\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Wed, 18 Jan\",\"ArrivalDateTxt\":\"Wed, 18 Jan\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"21319\",\"SourceAirportCode\":\"HKT\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":2,\"CurrencyType\":1,\"JourneyType\":2,\"TripType\":1,\"IsInternational\":\"1\",\"SearchFlightTraceId\":\"31ff5-fd520-9354e-36d01\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},\"AirlineName\":\"Go First\",\"PublishedFare\":57524.65,\"PublishedFareTxt\":\"57,525\",\"ApiResultIndex\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433009403\",\"apiTraceId\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433009403\",\"FairRules\":[{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":45152,\"Tax\":13896.6,\"YQTax\":3000,\"OtherCharges\":9668,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1157.8,\"intPublishedFare\":59048.6,\"PublishedFare\":57525,\"PublishedFarePerPax\":28763,\"OfferedFare\":55854.12,\"CommissionEarned\":2036.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-107.2,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433010093\",\"IsGSTRequired\":false,\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"fareIdentifier\":\"Retail Fare\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":248.61,\"apiMarkup\":0,\"IntCommission\":40.73,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1381.19,\"GSTOnMarkUp\":248.61,\"CommEarned\":40.73,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":13896.6,\"BaseFareCal\":56102.73,\"BaseFare\":45152,\"CommissionEarned\":2036.68,\"TDS\":-107.2,\"MF\":60,\"YQ\":3000,\"AGST\":0,\"MFT\":10.8,\"OT\":9668,\"MU\":1157.8,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":248.61,\"apiMarkup\":0,\"IntCommission\":40.73,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1381.19,\"GSTOnMarkUp\":248.61,\"CommEarned\":40.73,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":false,\"Baggage\":\"20 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":2036.68,\"IntCommissionValInPercentage\":2,\"IntCommission\":40.73,\"IntAgencyFixMarkUp\":1381.19,\"IntTaxOnAgencyFixMarkUp\":248.61,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":248.61,\"PublishFare\":57524.65,\"CostToCustomer\":57524.65,\"BaseFareCal\":56102.73,\"intCommisionEarnedForAgency\":1421.92,\"CostToCompany\":56102.73,\"intOfferedFare\":55854.12,\"intPublishFare\":59048.6,\"TripjackMarkup\":1157.8,\"TripjackCommission\":2036.68,\"TripjackTDS\":\"107.2\",\"AddiMarkup\":400,\"CommisionPass\":1995.9464,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":53984,\"Tax\":14511.84,\"YQTax\":3000,\"OtherCharges\":10098,\"Discount\":0,\"ServiceFee\":60,\"ManagementFeeTax\":10.8,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":1343.04,\"intPublishedFare\":68495.84,\"PublishedFare\":65918,\"PublishedFarePerPax\":32959,\"OfferedFare\":64040.06,\"CommissionEarned\":3112.74,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-163.84,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-4873740254_0DELHKTG873HKTDELG874_13834433009403\",\"IsGSTRequired\":false,\"fareremarks\":\"Lower Cancellation Fee & Reschedule Fee, Free Baggage Allowance, Complimentary Meal & Free Standard Seat \",\"fareIdentifier\":\"Svezz Special Benefits\",\"FareClass\":\"Economy\",\"NoOfSeatAvailable\":2,\"intTotalGST\":276.87,\"apiMarkup\":0,\"IntCommission\":62.25,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1538.17,\"GSTOnMarkUp\":276.87,\"CommEarned\":62.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":14511.84,\"BaseFareCal\":64316.93,\"BaseFare\":53984,\"CommissionEarned\":3112.74,\"TDS\":-163.84,\"MF\":60,\"YQ\":3000,\"AGST\":0,\"MFT\":10.8,\"OT\":10098,\"MU\":1343.04,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"intTotalGST\":276.87,\"apiMarkup\":0,\"IntCommission\":62.25,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":1538.17,\"GSTOnMarkUp\":276.87,\"CommEarned\":62.25,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"20 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"IsMealIncludes\":true,\"Baggage\":\"20 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsCabinBaggage\":true,\"IsBaggage\":true,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":3112.74,\"IntCommissionValInPercentage\":2,\"IntCommission\":62.25,\"IntAgencyFixMarkUp\":1538.17,\"IntTaxOnAgencyFixMarkUp\":276.87,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":276.87,\"PublishFare\":65917.35,\"CostToCustomer\":65917.35,\"BaseFareCal\":64316.93,\"intCommisionEarnedForAgency\":1600.42,\"CostToCompany\":64316.93,\"intOfferedFare\":64040.06,\"intPublishFare\":68495.84,\"TripjackMarkup\":1343.04,\"TripjackCommission\":3112.74,\"TripjackTDS\":\"163.84\",\"AddiMarkup\":400,\"CommisionPass\":3050.4851999999996,\"AddiTaxOnMarkup\":72,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":400},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}}],\"Segments\":[{\"isReturnSegment\":false,\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Phuket Intl Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Phuket\",\"destinationCountryName\":\"Thailand\",\"destinationAirportCode\":\"HKT\",\"destinationArrTime\":\"2023-01-15T11:45\",\"SegFlightNumber\":\"G8-73\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-01-15T05:30\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":285,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"05:30\",\"strArrivalDtTime\":\"11:45\",\"FlightDuration\":\"4h 45m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"},{\"isReturnSegment\":true,\"originAirportName\":\"Phuket Intl Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Phuket\",\"originCountryName\":\"Thailand\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-01-18T16:10\",\"SegFlightNumber\":\"G8-74\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"HKT\",\"originDepTime\":\"2023-01-18T12:45\",\"TripIndicator\":\"\",\"IsBaggage\":true,\"Baggage\":\"20 Kg\",\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":295,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"12:45\",\"strArrivalDtTime\":\"16:10\",\"FlightDuration\":\"4h 55m\",\"LAYOVERDuration\":\"0h 0m\",\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"DepartureTime\":\"12:45\",\"StopCount\":\"Non-stop\",\"SearchFlightTraceId\":\"31ff5-fd520-9354e-36d01\",\"keyIndex\":0,\"ICSourceSysId\":7,\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"$$hashKey\":\"05P\"}]}],\"FlightBookingDataInbound\":null}','2022-11-25 14:56:41'),(751,'c78b3-4f8b9-7408f-2e465','{\"FlightBookingData\":[{\"bookingId\":\"TJ104549890462\",\"FlightNumber\":\"QP-1107\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"14:10\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-01-13T14:10\",\"LocalFromTime\":\"2023-01-13 14:10\",\"FromUTCTime\":\"2023-01-13T14:10\",\"LocalToTime\":\"2023-01-13 15:25\",\"ToUTCTime\":\"2023-01-13T15:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 13 Jan\",\"ArrivalDateTxt\":\"Fri, 13 Jan\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2748.59,\"PublishedFareTxt\":\"2,749\",\"ApiResultIndex\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":2089,\"Tax\":659.59,\"YQTax\":0,\"OtherCharges\":478,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":110,\"CarrierMiscFee\":0,\"MUFee\":53.89,\"intPublishedFare\":2748.59,\"PublishedFare\":2968.65,\"OfferedFare\":2678.43,\"CommissionEarned\":16.27,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-0.86,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-3141348704_0BOMAMDQP1107_6502156153176\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":44.22,\"apiMarkup\":0,\"IntCommission\":0.33,\"CommisionPass\":15.9446,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":245.67,\"GSTOnMarkUp\":44.22,\"CommEarned\":0.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":5123.87,\"oldFare\":4851.53,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":659.59,\"BaseFareCal\":2722.65,\"BaseFare\":2089,\"CommissionEarned\":16.27,\"TDS\":-0.86,\"MF\":15,\"YQ\":0,\"AGST\":110,\"MFT\":2.7,\"OT\":478,\"MU\":53.89,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":44.22,\"apiMarkup\":0,\"IntCommission\":0.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":245.67,\"GSTOnMarkUp\":44.22,\"CommEarned\":0.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":16.27,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.33,\"IntAgencyFixMarkUp\":245.67,\"IntTaxOnAgencyFixMarkUp\":44.22,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":44.22,\"PublishFare\":2968.65,\"CostToCustomer\":2968.65,\"BaseFareCal\":2722.65,\"intCommisionEarnedForAgency\":245.99,\"CostToCompany\":2722.65,\"intOfferedFare\":2678.43,\"intPublishFare\":2748.59,\"TripjackMarkup\":53.89,\"TripjackCommission\":16.27,\"TripjackTDS\":\"0.86\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":15.9446,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"971\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-01-13T15:25\",\"SegFlightNumber\":\"QP-1107\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-13T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PHIM\",\"Price\":100,\"Description\":\"Sparkling water\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PCOR\",\"Price\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PACK\",\"Price\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPOP\",\"Price\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PHAL\",\"Price\":200,\"Description\":\"Rawa halwa\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PBHL\",\"Price\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVNO\",\"Price\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVBY\",\"Price\":250,\"Description\":\"Chinese Meal Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PUPM\",\"Price\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPOH\",\"Price\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPAS\",\"Price\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNNO\",\"Price\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PIVS\",\"Price\":250,\"Description\":\"Idli Sambar - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PCAS\",\"Price\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PALM\",\"Price\":250,\"Description\":\"Trail Mix\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMT\",\"Price\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCT\",\"Price\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNBY\",\"Price\":350,\"Description\":\"Biryani\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDRC\",\"Price\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDDS\",\"Price\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDDI\",\"Price\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDBY\",\"Price\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMC\",\"Price\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMB\",\"Price\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVKP\",\"Price\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVKD\",\"Price\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVFS\",\"Price\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PFIS\",\"Price\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVFL\",\"Price\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNKD\",\"Price\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVGS\",\"Price\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNMM\",\"Price\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNLC\",\"Price\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNKC\",\"Price\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNHR\",\"Price\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCC\",\"Price\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCS\",\"Price\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDCT\",\"Price\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c78b3-4f8b9-7408f-2e465\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-13 12:00\",\"localToDateTime\":\"2023-01-19 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ104549890462\",\"FlightNumber\":\"QP-1107\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"strTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"14:10\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-01-13T14:10\",\"LocalFromTime\":\"2023-01-13 14:10\",\"FromUTCTime\":\"2023-01-13T14:10\",\"LocalToTime\":\"2023-01-13 15:25\",\"ToUTCTime\":\"2023-01-13T15:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 13 Jan\",\"ArrivalDateTxt\":\"Fri, 13 Jan\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":5123.860000000001,\"ApiResultIndex\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"c78b3-4f8b9-7408f-2e465\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":3788,\"Tax\":1335.8600000000001,\"YQTax\":0,\"OtherCharges\":998,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":202,\"CarrierMiscFee\":0,\"MUFee\":100.46000000000001,\"intPublishedFare\":5123.860000000001,\"PublishedFare\":5488.97,\"OfferedFare\":4914.32,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":485.14,\"GSTOnMarkUp\":87.32,\"CommEarned\":2.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1335.8600000000001,\"BaseFareCal\":5001.639999999999,\"BaseFare\":3788,\"CommissionEarned\":109.08,\"TDS\":-5.74,\"MF\":30,\"YQ\":0,\"AGST\":202,\"MFT\":5.4,\"OT\":998,\"MU\":100.46000000000001,\"YR\":0,\"AddiTaxOnMarkup\":72,\"AddiMarkup\":400,\"FixedMarkUp\":485.14,\"GSTOnMarkUp\":87.32,\"CommEarned\":2.19,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"971\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-01-13T15:25\",\"SegFlightNumber\":\"QP-1107\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-13T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],[{\"segmentid\":\"745\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-19T23:25\",\"SegFlightNumber\":\"G8-413\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-01-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-3141348704_0BOMAMDQP1107_33093073195699\",\"localFromDateTime\":\"2023-01-13 14:10\",\"localToDateTime\":\"2023-01-13 15:25\",\"strSourceAirportCode\":\"AMD\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJ104549890462\",\"FlightNumber\":\"G8-413\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-3141348704_3AMDBOMG8413_33093176604121\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:05\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2023-01-19T22:05\",\"LocalFromTime\":\"2023-01-19 22:05\",\"FromUTCTime\":\"2023-01-19T22:05\",\"LocalToTime\":\"2023-01-19 23:25\",\"ToUTCTime\":\"2023-01-19T23:25\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 19 Jan\",\"ArrivalDateTxt\":\"Thu, 19 Jan\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":1,\"PublishedFare\":2375.27,\"PublishedFareTxt\":\"2,375\",\"ApiResultIndex\":\"1-3141348704_3AMDBOMG8413_33093176604121\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":1699,\"Tax\":676.27,\"YQTax\":0,\"OtherCharges\":520,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":92,\"CarrierMiscFee\":0,\"MUFee\":46.57,\"intPublishedFare\":2375.27,\"PublishedFare\":2520.32,\"OfferedFare\":2235.89,\"CommissionEarned\":92.81,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.88,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-3141348704_1AMDBOMG8413_6502160499475\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":43.1,\"apiMarkup\":0,\"IntCommission\":1.86,\"CommisionPass\":90.9538,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":239.47,\"GSTOnMarkUp\":43.1,\"CommEarned\":1.86,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":676.27,\"BaseFareCal\":2278.99,\"BaseFare\":1699,\"CommissionEarned\":92.81,\"TDS\":-4.88,\"MF\":15,\"YQ\":0,\"AGST\":92,\"MFT\":2.7,\"OT\":520,\"MU\":46.57,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":43.1,\"apiMarkup\":0,\"IntCommission\":1.86,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":239.47,\"GSTOnMarkUp\":43.1,\"CommEarned\":1.86,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":92.81,\"IntCommissionValInPercentage\":2,\"IntCommission\":1.86,\"IntAgencyFixMarkUp\":239.47,\"IntTaxOnAgencyFixMarkUp\":43.1,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":43.1,\"PublishFare\":2520.32,\"CostToCustomer\":2520.32,\"BaseFareCal\":2278.99,\"intCommisionEarnedForAgency\":241.32,\"CostToCompany\":2278.99,\"intOfferedFare\":2235.89,\"intPublishFare\":2375.27,\"TripjackMarkup\":46.57,\"TripjackCommission\":92.81,\"TripjackTDS\":\"4.88\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":90.9538,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"745\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-19T23:25\",\"SegFlightNumber\":\"G8-413\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-01-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"745\",\"Code\":\"CRPX\",\"Price\":0,\"Description\":\"Free Corporate Meal\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PCOR\",\"Price\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PACK\",\"Price\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPOP\",\"Price\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PHAL\",\"Price\":200,\"Description\":\"Rawa halwa\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PBHL\",\"Price\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVNO\",\"Price\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVBY\",\"Price\":250,\"Description\":\"Chinese Meal Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PUPM\",\"Price\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPOH\",\"Price\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PPAS\",\"Price\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNNO\",\"Price\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PIVS\",\"Price\":250,\"Description\":\"Idli Sambar - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PCAS\",\"Price\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PALM\",\"Price\":250,\"Description\":\"Trail Mix\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMT\",\"Price\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCT\",\"Price\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNBY\",\"Price\":350,\"Description\":\"Biryani\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDRC\",\"Price\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDDS\",\"Price\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDDI\",\"Price\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDBY\",\"Price\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMC\",\"Price\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVMB\",\"Price\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVKP\",\"Price\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVKD\",\"Price\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVFS\",\"Price\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PFIS\",\"Price\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVFL\",\"Price\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNKD\",\"Price\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PVGS\",\"Price\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNMM\",\"Price\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNLC\",\"Price\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNKC\",\"Price\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNHR\",\"Price\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCC\",\"Price\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PNCS\",\"Price\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"971\",\"Code\":\"PDCT\",\"Price\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"c78b3-4f8b9-7408f-2e465\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-3141348704_3AMDBOMG8413_33093176604121\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-13 12:00\",\"localToDateTime\":\"2023-01-19 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"121\",\"122\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"65\",\"CustomerMemSysId\":[\"65\"],\"flight_booking_id\":[\"121\",\"122\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9930407978\",\"FirstName\":\"Bhavin\",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-06-36\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"65\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"65\",\"CustomerMemSysId\":[\"65\"],\"flight_booking_customer\":[[\"174\"],[\"175\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Ahmedabad\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"AMD\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt AMD, India\",\"departure_date\":\"13\\/01\\/2023\",\"return_date\":\"19\\/01\\/2023\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Sardar Vallabh Bhai Patel Intl Arpt AMD\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"AMD\",\"from\":\"BOM\",\"to\":\"AMD\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt AMD, India\",\"sourceCityId\":18676,\"destinationCityId\":296,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"13\\/01\\/2023\",\"return_dates\":\"19\\/01\\/2023\",\"strDepatureDate\":\"2023-01-13\",\"strReturnDate\":\"2023-01-19\",\"SearchFlightTraceId\":\"c78b3-4f8b9-7408f-2e465\",\"from_city_\":\"2__BOM-AMD-BOM\"},\"genrateFlightQuery\":[],\"sessionData\":{\"CustomerSysId\":\"65\",\"CustomerMemSysId\":[\"65\"],\"flight_booking_id\":[\"121\",\"122\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"12577\",\"Salutation\":\"1\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"FirstName\":\"Bhavin\",\"LastName\":\"Bhanushali\",\"CountryCode\":\"91\",\"MobileNo\":\"9930407978\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[]}','2022-11-29 22:06:36'),(754,'9b30e-d3aa9-5a329-8297f','{\"FlightBookingData\":[{\"bookingId\":\"TJ109349890698\",\"FlightNumber\":\"QP-1107\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"14:10\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-01-13T14:10\",\"LocalFromTime\":\"2023-01-13 14:10\",\"FromUTCTime\":\"2023-01-13T14:10\",\"LocalToTime\":\"2023-01-13 15:25\",\"ToUTCTime\":\"2023-01-13T15:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 13 Jan\",\"ArrivalDateTxt\":\"Fri, 13 Jan\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":8245.77,\"PublishedFareTxt\":\"8,246\",\"ApiResultIndex\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6267,\"Tax\":1978.77,\"YQTax\":0,\"OtherCharges\":1434,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":330,\"CarrierMiscFee\":0,\"MUFee\":161.67000000000002,\"intPublishedFare\":8245.77,\"PublishedFare\":8433.94,\"OfferedFare\":8035.289999999999,\"CommissionEarned\":48.81,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.58,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-5977412572_0BOMAMDQP1107_23918704869240\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":60.66,\"apiMarkup\":0,\"IntCommission\":0.98,\"CommisionPass\":47.833800000000004,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":337.01,\"GSTOnMarkUp\":60.66,\"CommEarned\":0.98,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1319.18,\"BaseFareCal\":5409.3,\"BaseFare\":4178,\"CommissionEarned\":32.54,\"TDS\":-1.72,\"MF\":30,\"YQ\":0,\"AGST\":220,\"MFT\":5.4,\"OT\":956,\"MU\":107.78,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":52.44,\"apiMarkup\":0,\"IntCommission\":0.65,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":291.34,\"GSTOnMarkUp\":52.44,\"CommEarned\":0.65,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":659.59,\"BaseFareCal\":2722.65,\"BaseFare\":2089,\"CommissionEarned\":16.27,\"TDS\":-0.86,\"MF\":15,\"YQ\":0,\"AGST\":110,\"MFT\":2.7,\"OT\":478,\"MU\":53.89,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":44.22,\"apiMarkup\":0,\"IntCommission\":0.33,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":245.67,\"GSTOnMarkUp\":44.22,\"CommEarned\":0.33,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":48.81,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.98,\"IntAgencyFixMarkUp\":337.01,\"IntTaxOnAgencyFixMarkUp\":60.66,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":60.66,\"PublishFare\":8433.94,\"CostToCustomer\":8433.94,\"BaseFareCal\":8095.95,\"intCommisionEarnedForAgency\":337.98,\"CostToCompany\":8095.95,\"intOfferedFare\":8035.289999999999,\"intPublishFare\":8245.77,\"TripjackMarkup\":161.67000000000002,\"TripjackCommission\":48.81,\"TripjackTDS\":\"2.58\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":47.833800000000004,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"427\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-01-13T15:25\",\"SegFlightNumber\":\"QP-1107\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-13T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PHIM\",\"Price\":100,\"Description\":\"Sparkling water\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PCOR\",\"Price\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PACK\",\"Price\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPOP\",\"Price\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PHAL\",\"Price\":200,\"Description\":\"Rawa halwa\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PBHL\",\"Price\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVNO\",\"Price\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVBY\",\"Price\":250,\"Description\":\"Chinese Meal Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PUPM\",\"Price\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPOH\",\"Price\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPAS\",\"Price\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNNO\",\"Price\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PIVS\",\"Price\":250,\"Description\":\"Idli Sambar - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PCAS\",\"Price\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PALM\",\"Price\":250,\"Description\":\"Trail Mix\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMT\",\"Price\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCT\",\"Price\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNBY\",\"Price\":350,\"Description\":\"Biryani\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDRC\",\"Price\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDDS\",\"Price\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDDI\",\"Price\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDBY\",\"Price\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMC\",\"Price\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMB\",\"Price\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVKP\",\"Price\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVKD\",\"Price\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVFS\",\"Price\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PFIS\",\"Price\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVFL\",\"Price\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNKD\",\"Price\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVGS\",\"Price\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNMM\",\"Price\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNLC\",\"Price\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNKC\",\"Price\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNHR\",\"Price\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCC\",\"Price\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCS\",\"Price\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDCT\",\"Price\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-13 12:00\",\"localToDateTime\":\"2023-01-19 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"TJ109349890698\",\"FlightNumber\":\"QP-1107\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"strTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"14:10\",\"ArrivalTime\":\"15:25\",\"TravelDate\":\"2023-01-13T14:10\",\"LocalFromTime\":\"2023-01-13 14:10\",\"FromUTCTime\":\"2023-01-13T14:10\",\"LocalToTime\":\"2023-01-13 15:25\",\"ToUTCTime\":\"2023-01-13T15:25\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":75,\"DepartureDateTxt\":\"Fri, 13 Jan\",\"ArrivalDateTxt\":\"Fri, 13 Jan\",\"FlightDuration\":\"1h 15m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"AMD\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":16473.18,\"ApiResultIndex\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"JourneyType\":1,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"ICSourceSysId\":7,\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":12348,\"Tax\":4125.18,\"YQTax\":0,\"OtherCharges\":3030,\"Discount\":0,\"ServiceFee\":90,\"ManagementFeeTax\":16.200000000000003,\"AirlineGSTComponent\":666,\"CarrierMiscFee\":0,\"MUFee\":322.98,\"intPublishedFare\":16473.18,\"PublishedFare\":16571.83,\"OfferedFare\":15769.23,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":673.71,\"GSTOnMarkUp\":121.27,\"CommEarned\":7.619999999999999,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":400,\"AddiTaxOnMarkup\":72,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":2750.12,\"BaseFareCal\":10617.66,\"BaseFare\":8232,\"CommissionEarned\":253.98,\"TDS\":-13.38,\"MF\":60,\"YQ\":0,\"AGST\":444,\"MFT\":10.8,\"OT\":2020,\"MU\":215.32,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":582.48,\"GSTOnMarkUp\":104.84,\"CommEarned\":5.08,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":1375.06,\"BaseFareCal\":5344.83,\"BaseFare\":4116,\"CommissionEarned\":126.99,\"TDS\":-6.69,\"MF\":30,\"YQ\":0,\"AGST\":222,\"MFT\":5.4,\"OT\":1010,\"MU\":107.66,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"FixedMarkUp\":491.24,\"GSTOnMarkUp\":88.42,\"CommEarned\":2.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"427\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Ahmedabad\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"AMD\",\"destinationArrTime\":\"2023-01-13T15:25\",\"SegFlightNumber\":\"QP-1107\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-01-13T14:10\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"14:10\",\"strArrivalDtTime\":\"15:25\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],[{\"segmentid\":\"857\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-19T23:25\",\"SegFlightNumber\":\"G8-413\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-01-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-5977412572_0BOMAMDQP1107_42631250998695\",\"localFromDateTime\":\"2023-01-13 14:10\",\"localToDateTime\":\"2023-01-13 15:25\",\"strSourceAirportCode\":\"AMD\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}},{\"bookingId\":\"TJ109349890698\",\"FlightNumber\":\"G8-413\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5977412572_3AMDBOMG8413_42630847427786\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"22:05\",\"ArrivalTime\":\"23:25\",\"TravelDate\":\"2023-01-19T22:05\",\"LocalFromTime\":\"2023-01-19 22:05\",\"FromUTCTime\":\"2023-01-19T22:05\",\"LocalToTime\":\"2023-01-19 23:25\",\"ToUTCTime\":\"2023-01-19T23:25\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":80,\"DepartureDateTxt\":\"Thu, 19 Jan\",\"ArrivalDateTxt\":\"Thu, 19 Jan\",\"FlightDuration\":\"1h 20m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":296,\"SourceAirportCode\":\"AMD\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":3,\"CurrencyType\":1,\"PublishedFare\":8227.41,\"PublishedFareTxt\":\"8,227\",\"ApiResultIndex\":\"1-5977412572_3AMDBOMG8413_42630847427786\",\"JourneyType\":2,\"TripType\":\"2\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"status\":{\"success\":false,\"httpStatus\":404},\"errors\":[{\"errCode\":\"808\",\"message\":\"Keys Passed in the request is already expired. Please pass valid keys\"}]},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":\"1\",\"currencySysId\":null,\"BaseFare\":6081,\"Tax\":2146.41,\"YQTax\":0,\"OtherCharges\":1596,\"Discount\":0,\"ServiceFee\":45,\"ManagementFeeTax\":8.100000000000001,\"AirlineGSTComponent\":336,\"CarrierMiscFee\":0,\"MUFee\":161.31,\"intPublishedFare\":8227.41,\"PublishedFare\":8137.89,\"OfferedFare\":7733.9400000000005,\"CommissionEarned\":332.15999999999997,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-17.490000000000002,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-5977412572_1AMDBOMG8413_23918706393366\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORPORATE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":60.61,\"apiMarkup\":0,\"IntCommission\":6.64,\"CommisionPass\":325.5168,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":336.7,\"GSTOnMarkUp\":60.61,\"CommEarned\":6.64,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1430.94,\"BaseFareCal\":5208.36,\"BaseFare\":4054,\"CommissionEarned\":221.44,\"TDS\":-11.66,\"MF\":30,\"YQ\":0,\"AGST\":224,\"MFT\":5.4,\"OT\":1064,\"MU\":107.54,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":52.4,\"apiMarkup\":0,\"IntCommission\":4.43,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":291.14,\"GSTOnMarkUp\":52.4,\"CommEarned\":4.43,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"},{\"Currency\":\"INR\",\"PassengerType\":2,\"PassengerCount\":\"1\",\"TaxIN\":715.47,\"BaseFareCal\":2622.18,\"BaseFare\":2027,\"CommissionEarned\":110.72,\"TDS\":-5.83,\"MF\":15,\"YQ\":0,\"AGST\":112,\"MFT\":2.7,\"OT\":532,\"MU\":53.77,\"YR\":0,\"AddiTaxOnMarkup\":18,\"AddiMarkup\":100,\"intTotalGST\":44.2,\"apiMarkup\":0,\"IntCommission\":2.21,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":245.57,\"GSTOnMarkUp\":44.2,\"CommEarned\":2.21,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":332.16,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.64,\"IntAgencyFixMarkUp\":336.7,\"IntTaxOnAgencyFixMarkUp\":60.61,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":60.61,\"PublishFare\":8137.89,\"CostToCustomer\":8137.89,\"BaseFareCal\":7794.55,\"intCommisionEarnedForAgency\":343.35,\"CostToCompany\":7794.55,\"intOfferedFare\":7733.9400000000005,\"intPublishFare\":8227.41,\"TripjackMarkup\":161.31,\"TripjackCommission\":332.15999999999997,\"TripjackTDS\":\"17.49\",\"AddiMarkup\":\"200.00\",\"CommisionPass\":325.5168,\"AddiTaxOnMarkup\":36,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":200},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"857\",\"originAirportName\":\"Sardar Vallabh Bhai Patel Intl Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Ahmedabad\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-01-19T23:25\",\"SegFlightNumber\":\"G8-413\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"AMD\",\"originDepTime\":\"2023-01-19T22:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":80,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"22:05\",\"strArrivalDtTime\":\"23:25\",\"FlightDuration\":\"1h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC03\",\"Price\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC05\",\"Price\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC10\",\"Price\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC15\",\"Price\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC20\",\"Price\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"XC30\",\"Price\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"857\",\"Code\":\"CRPX\",\"Price\":0,\"Description\":\"Free Corporate Meal\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PCOR\",\"Price\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PACK\",\"Price\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPOP\",\"Price\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PHAL\",\"Price\":200,\"Description\":\"Rawa halwa\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PBHL\",\"Price\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVNO\",\"Price\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVBY\",\"Price\":250,\"Description\":\"Chinese Meal Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PUPM\",\"Price\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPOH\",\"Price\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PPAS\",\"Price\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNNO\",\"Price\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PIVS\",\"Price\":250,\"Description\":\"Idli Sambar - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PCAS\",\"Price\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PALM\",\"Price\":250,\"Description\":\"Trail Mix\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMT\",\"Price\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCT\",\"Price\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNBY\",\"Price\":350,\"Description\":\"Biryani\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDRC\",\"Price\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDDS\",\"Price\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDDI\",\"Price\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDBY\",\"Price\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMC\",\"Price\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVMB\",\"Price\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVKP\",\"Price\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVKD\",\"Price\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVFS\",\"Price\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PFIS\",\"Price\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVFL\",\"Price\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNKD\",\"Price\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PVGS\",\"Price\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNMM\",\"Price\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNLC\",\"Price\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNKC\",\"Price\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNHR\",\"Price\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCC\",\"Price\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PNCS\",\"Price\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"427\",\"Code\":\"PDCT\",\"Price\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"strTraceId\":\"1-5977412572_3AMDBOMG8413_42630847427786\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-01-13 12:00\",\"localToDateTime\":\"2023-01-19 12:00\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"AMD\",\"intMemberCount\":3,\"intSourceCityId\":18676,\"intDestinationCityId\":296,\"JourneyType\":2,\"TripType\":\"2\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\"}],\"flight_booking_id_Arr\":[\"123\",\"124\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"65\",\"CustomerMemSysId\":[\"74\",\"75\",\"76\"],\"flight_booking_id\":[\"123\",\"124\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9930407978\",\"FirstName\":\"Bhavin\",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"74\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9930407978\",\"FirstName\":\"Pooja\",\"LastName\":\"Thakkar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"75\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"2\",\"Relation\":\"9\",\"Contacts\":\"9930407978\",\"FirstName\":\"Meevan \",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"76\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9930407978\",\"FirstName\":\"Bhavin\",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"modified\":\"2022-11-29-22-09-11\",\"created\":\"2022-11-29-22-09-11\",\"CustomerMemberSysId\":\"74\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9930407978\",\"FirstName\":\"Pooja\",\"LastName\":\"Thakkar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"modified\":\"2022-11-29-22-09-11\",\"created\":\"2022-11-29-22-09-11\",\"CustomerMemberSysId\":\"75\"},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"2\",\"Relation\":\"9\",\"Contacts\":\"9930407978\",\"FirstName\":\"Meevan \",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"modified\":\"2022-11-29-22-09-11\",\"created\":\"2022-11-29-22-09-11\",\"CustomerMemberSysId\":\"76\"}],\"CustomerSysId\":\"65\",\"CustomerMemSysId\":[\"74\",\"75\",\"76\"],\"flight_booking_customer\":[[\"176\",\"177\",\"178\"],[\"179\",\"180\",\"181\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"2\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Ahmedabad\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"AMD\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt AMD, India\",\"departure_date\":\"13\\/01\\/2023\",\"return_date\":\"19\\/01\\/2023\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Sardar Vallabh Bhai Patel Intl Arpt AMD\",\"DirectFlight\":\"1\",\"adults\":\"2\",\"childs\":\"1\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"AMD\",\"from\":\"BOM\",\"to\":\"AMD\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Ahmedabad, IN - Sardar Vallabh Bhai Patel Intl Arpt AMD, India\",\"sourceCityId\":18676,\"destinationCityId\":296,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"1\",\"infant\":\"0\",\"departure_dates\":\"13\\/01\\/2023\",\"return_dates\":\"19\\/01\\/2023\",\"strDepatureDate\":\"2023-01-13\",\"strReturnDate\":\"2023-01-19\",\"SearchFlightTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"from_city_\":\"2__BOM-AMD-BOM\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"511236\",\"TPSysId\":\"511237\",\"VersionId\":[\"127172\",\"127173\"],\"CustomerSysId\":\"289966\",\"TrxId\":\"40128\",\"FareBreakdownid\":[\"365276\",\"365277\",\"365278\",\"365279\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"65\",\"CustomerMemSysId\":[\"74\",\"75\",\"76\"],\"flight_booking_id\":[\"123\",\"124\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"12577\",\"Salutation\":\"1\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"FirstName\":\"Bhavin\",\"LastName\":\"Bhanushali\",\"CountryCode\":\"91\",\"MobileNo\":\"9930407978\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"9930407978\",\"FirstName\":\"Bhavin\",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"modified\":\"2022-11-29-22-09-11\",\"created\":\"2022-11-29-22-09-11\",\"MobileNo\":\"9930407978\",\"B2B\":false},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"2\",\"Relation\":0,\"Contacts\":\"9930407978\",\"FirstName\":\"Pooja\",\"LastName\":\"Thakkar\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"modified\":\"2022-11-29-22-09-11\",\"created\":\"2022-11-29-22-09-11\",\"MobileNo\":\"9930407978\",\"B2B\":false},{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"65\",\"EmailId\":\"bhavindelink@yahoo.co.in\",\"Salutation\":\"2\",\"Relation\":\"9\",\"Contacts\":\"9930407978\",\"FirstName\":\"Meevan \",\"LastName\":\"Bhanushali\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"2\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2022-11-29-22-09-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"9b30e-d3aa9-5a329-8297f\",\"modified\":\"2022-11-29-22-09-11\",\"created\":\"2022-11-29-22-09-11\",\"MobileNo\":\"9930407978\",\"B2B\":false}],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"9930407978\",\"leadEmail\":\"bhavindelink@yahoo.co.in\",\"paxType-1\":\"1\",\"familyNumber\":\"3\",\"relation-1\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"passenger-firstname-1\":\"Bhavin\",\"passenger-lastname-1\":\"Bhanushali\",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"0\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"0\",\"passenger-country-1\":\"0\",\"paxType-2\":\"1\",\"relation-2\":\"0\",\"CustomerSysId-2\":\"0\",\"salution-2\":\"2\",\"passenger-firstname-2\":\"Pooja\",\"passenger-lastname-2\":\"Thakkar\",\"dateofbirth-2\":\"\",\"PassportNationality-2\":\"IN\",\"passportno-2\":\"\",\"passporIssue-2\":\"\",\"passportnoexpiry-2\":\"\",\"paxType-3\":\"2\",\"relation-3\":\"9\",\"CustomerSysId-3\":\"0\",\"salution-3\":\"2\",\"passenger-firstname-3\":\"Meevan \",\"passenger-lastname-3\":\"Bhanushali\",\"dateofbirth-3\":\"\",\"PassportNationality-3\":\"\",\"passportno-3\":\"\",\"passporIssue-3\":\"\",\"passportnoexpiry-3\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"9b30e-d3aa9-5a329-8297f\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"289966\",\"memberId\":[\"17292\",\"17293\",\"17294\"]}}}','2022-11-29 22:11:20'),(755,'cc5a1-a175e-14ed0-96617','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-2501\",\"keyIndex\":0,\"SegFlightNumberArr\":\"G8-2501\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"1-5192229431_0DELBOMG82501_7995267276442\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"02:40\",\"ArrivalTime\":\"04:45\",\"TravelDate\":\"2023-04-19T02:40\",\"LocalFromTime\":\"2023-04-19 02:40\",\"FromUTCTime\":\"2023-04-19T02:40\",\"LocalToTime\":\"2023-04-19 04:45\",\"ToUTCTime\":\"2023-04-19T04:45\",\"IsDirect\":0,\"FareClass\":\"BC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"7701\",\"DestPlaceSysId\":\"18676\",\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4359,\"PublishedFareTxt\":\"4,358\",\"ApiResultIndex\":\"1-5192229431_0DELBOMG82501_7995267275052\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"cc5a1-a175e-14ed0-96617\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3353,\"Tax\":893.97,\"YQTax\":0,\"OtherCharges\":793,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":83.27,\"intPublishedFare\":4246.97,\"PublishedFare\":4359,\"PublishedFarePerPax\":4359,\"OfferedFare\":4036.51,\"CommissionEarned\":127.19,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-6.69,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"1-5192229431_0DELBOMG82501_7995267276442\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Discounted Deal\",\"fareremarks\":\"Offer Price!!!!\",\"FareClass\":\"Economy\",\"CommisionPass\":124.6462,\"intTotalGST\":48.7,\"apiMarkup\":0,\"IntCommission\":2.54,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":270.57,\"GSTOnMarkUp\":48.7,\"CommEarned\":2.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"200.00\",\"AddiTaxOnMarkup\":36,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":893.97,\"BaseFareCal\":4085.21,\"BaseFare\":3353,\"CommissionEarned\":127.19,\"TDS\":-6.69,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":793,\"MU\":83.27,\"YR\":0,\"AddiTaxOnMarkup\":36,\"AddiMarkup\":200,\"intTotalGST\":48.7,\"apiMarkup\":0,\"IntCommission\":2.54,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":270.57,\"GSTOnMarkUp\":48.7,\"CommEarned\":2.54,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"020\"},\"Segments\":[{\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-04-19T04:45\",\"SegFlightNumber\":\"G8-2501\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"BC\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-04-19T02:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"02:40\",\"strArrivalDtTime\":\"04:45\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"15001-20000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-04-14 13:31:42'),(756,'0e948-142fa-6636b-fc14c','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-349\",\"keyIndex\":5,\"SegFlightNumberArr\":\"G8-349\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-0653907417_0BOMVNSG8349_19600278492830\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"12:50\",\"ArrivalTime\":\"14:55\",\"TravelDate\":\"2023-04-18T12:50\",\"LocalFromTime\":\"2023-04-18 12:50\",\"FromUTCTime\":\"2023-04-18T12:50\",\"LocalToTime\":\"2023-04-18 14:55\",\"ToUTCTime\":\"2023-04-18T14:55\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Tue, 18 Apr\",\"ArrivalDateTxt\":\"Tue, 18 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"28449\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"VNS\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5202,\"PublishedFareTxt\":\"5,202\",\"ApiResultIndex\":\"11-0653907417_0BOMVNSG8349_19600278492830\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"0e948-142fa-6636b-fc14c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4800,\"Tax\":343.55,\"YQTax\":0,\"OtherCharges\":225,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":100.85,\"intPublishedFare\":5143.55,\"PublishedFare\":5202,\"PublishedFarePerPax\":5202,\"OfferedFare\":4951.5,\"CommissionEarned\":91.2,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-4.8,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-0653907417_0BOMVNSG8349_19600278492830\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Instant HOT DEAL\",\"fareremarks\":\"Issues Instantly , Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"CommisionPass\":89.376,\"intTotalGST\":37.88,\"apiMarkup\":0,\"IntCommission\":1.82,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":210.47,\"GSTOnMarkUp\":37.88,\"CommEarned\":1.82,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":343.55,\"BaseFareCal\":4989.38,\"BaseFare\":4800,\"CommissionEarned\":91.2,\"TDS\":-4.8,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":225,\"MU\":100.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":37.88,\"apiMarkup\":0,\"IntCommission\":1.82,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":210.47,\"GSTOnMarkUp\":37.88,\"CommEarned\":1.82,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00Q\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Lal Bahadur Shastri Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Varanasi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"VNS\",\"destinationArrTime\":\"2023-04-18T14:55\",\"SegFlightNumber\":\"G8-349\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-18T12:50\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"12:50\",\"strArrivalDtTime\":\"14:55\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-04-15 13:08:13'),(759,'a02eb-7af4c-a1d25-6fffe','{\"FlightBookingData\":[{\"bookingId\":\"BKR103761328891\",\"bookingId_TJ\":\"TJ103761328891\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"12:35\",\"TravelDate\":\"2023-04-19T10:25\",\"LocalFromTime\":\"2023-04-19 10:25\",\"FromUTCTime\":\"2023-04-19T10:25\",\"LocalToTime\":\"2023-04-19 12:35\",\"ToUTCTime\":\"2023-04-19T12:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5857.55,\"PublishedFareTxt\":\"5,858\",\"ApiResultIndex\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":[]}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5500,\"Tax\":357.55,\"YQTax\":0,\"OtherCharges\":225,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":114.85,\"intPublishedFare\":5857.55,\"PublishedFare\":5902.64,\"OfferedFare\":5638.2,\"CommissionEarned\":104.5,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5.5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-4900667308_0BOMLKOG8306_6503815450046\",\"IsGSTRequired\":false,\"fareIdentifier\":\"OFFER FARE WITH PNR\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":40.02,\"apiMarkup\":0,\"IntCommission\":2.09,\"CommisionPass\":102.41,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":222.33,\"GSTOnMarkUp\":40.02,\"CommEarned\":2.09,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":357.55,\"BaseFareCal\":5678.22,\"BaseFare\":5500,\"CommissionEarned\":104.5,\"TDS\":-5.5,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":225,\"MU\":114.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":40.02,\"apiMarkup\":0,\"IntCommission\":2.09,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":222.33,\"GSTOnMarkUp\":40.02,\"CommEarned\":2.09,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":104.5,\"IntCommissionValInPercentage\":2,\"IntCommission\":2.09,\"IntAgencyFixMarkUp\":222.33,\"IntTaxOnAgencyFixMarkUp\":40.02,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":40.02,\"PublishFare\":5902.64,\"CostToCustomer\":5902.64,\"BaseFareCal\":5678.22,\"intCommisionEarnedForAgency\":224.42,\"CostToCompany\":5678.22,\"intOfferedFare\":5638.2,\"intPublishFare\":5857.55,\"TripjackMarkup\":114.85,\"TripjackCommission\":104.5,\"TripjackTDS\":\"5.5\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":102.41,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"24\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-04-19T12:35\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-19T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:35\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"a02eb-7af4c-a1d25-6fffe\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":false,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-15T13:30:42.573\",\"strTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-04-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR103761328891\",\"bookingId_TJ\":\"TJ103761328891\",\"FlightNumber\":\"G8-306\",\"AirlineName\":\"Go First\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"strTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"10:25\",\"ArrivalTime\":\"12:35\",\"TravelDate\":\"2023-04-19T10:25\",\"LocalFromTime\":\"2023-04-19 10:25\",\"FromUTCTime\":\"2023-04-19T10:25\",\"LocalToTime\":\"2023-04-19 12:35\",\"ToUTCTime\":\"2023-04-19T12:35\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":130,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 10m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5857.55,\"ApiResultIndex\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"SearchFlightTraceId\":\"a02eb-7af4c-a1d25-6fffe\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-15T13:30:42.573\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5500,\"Tax\":357.55,\"YQTax\":0,\"OtherCharges\":225,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":114.85,\"intPublishedFare\":5857.55,\"PublishedFare\":5902.64,\"OfferedFare\":5638.2,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":222.33,\"GSTOnMarkUp\":40.02,\"CommEarned\":2.09,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":357.55,\"BaseFareCal\":5678.22,\"BaseFare\":5500,\"CommissionEarned\":104.5,\"TDS\":-5.5,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":225,\"MU\":114.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":222.33,\"GSTOnMarkUp\":40.02,\"CommEarned\":2.09,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"24\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-04-19T12:35\",\"SegFlightNumber\":\"G8-306\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-19T10:25\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":130,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"10:25\",\"strArrivalDtTime\":\"12:35\",\"FlightDuration\":\"2h 10m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"11-4900667308_0BOMLKOG8306_357443501256\",\"localFromDateTime\":\"2023-04-19 10:25\",\"localToDateTime\":\"2023-04-19 12:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"125\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"66\",\"CustomerMemSysId\":[\"66\"],\"flight_booking_id\":[\"125\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"Shahidmgm07@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"7515895182\",\"FirstName\":\"Shahid \",\"LastName\":\"Ahmad \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-15-13-29-58\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"66\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"66\",\"CustomerMemSysId\":[\"66\"],\"flight_booking_customer\":[[\"182\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Lucknow\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Lucknow, IN - Amausi Arpt LKO, India\",\"departure_date\":\"19\\/04\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Amausi Arpt LKO\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"BOM\",\"to\":\"LKO\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Lucknow, IN - Amausi Arpt LKO, India\",\"sourceCityId\":18676,\"destinationCityId\":16028,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/04\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-04-19\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"a02eb-7af4c-a1d25-6fffe\",\"from_city_\":\"1__BOM-LKO\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"661996\",\"TPSysId\":\"661997\",\"VersionId\":[\"192652\"],\"CustomerSysId\":\"374281\",\"TrxId\":\"54614\",\"FareBreakdownid\":[\"375563\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"66\",\"CustomerMemSysId\":[\"66\"],\"flight_booking_id\":[\"125\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"12577\",\"Salutation\":\"1\",\"EmailId\":\"Shahidmgm07@gmail.com\",\"FirstName\":\"Shahid \",\"LastName\":\"Ahmad \",\"CountryCode\":\"91\",\"MobileNo\":\"7515895182\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"7515895182\",\"leadEmail\":\"Shahidmgm07@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"0\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"passenger-firstname-1\":\"Shahid \",\"passenger-lastname-1\":\"Ahmad \",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"\",\"passenger-country-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"a02eb-7af4c-a1d25-6fffe\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"374281\",\"memberId\":null}}}','2023-04-15 13:30:20'),(760,'73c92-697bd-f8894-e9d92','{\"FlightBookingData\":[{\"FlightNumber\":\"G8-329\",\"keyIndex\":298,\"SegFlightNumberArr\":\"G8-329\",\"AirlineName\":\"Go first\",\"AirlineCode\":\"G8\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"apiTraceId\":\"11-1693718688_0BOMDELG8329_112201611304054\",\"AirlineSysId\":\"240\",\"DepartureTime\":\"04:35\",\"ArrivalTime\":\"06:40\",\"TravelDate\":\"2023-04-29T04:35\",\"LocalFromTime\":\"2023-04-29 04:35\",\"FromUTCTime\":\"2023-04-29T04:35\",\"LocalToTime\":\"2023-04-29 06:40\",\"ToUTCTime\":\"2023-04-29T06:40\",\"IsDirect\":0,\"FareClass\":\"G\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Sat, 29 Apr\",\"ArrivalDateTxt\":\"Sat, 29 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":2,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5453,\"PublishedFareTxt\":\"5,453\",\"ApiResultIndex\":\"11-1693718688_0BOMDELG8329_112201611304054\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"73c92-697bd-f8894-e9d92\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5000,\"Tax\":398.55,\"YQTax\":0,\"OtherCharges\":275,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":105.85,\"intPublishedFare\":5398.55,\"PublishedFare\":5453,\"PublishedFarePerPax\":5453,\"OfferedFare\":5197.7,\"CommissionEarned\":95,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-5,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":0,\"IsRefundableTxt\":\"Non Refundable\",\"PriceID\":\"11-1693718688_0BOMDELG8329_112201611304054\",\"IsGSTRequired\":false,\"fareIdentifier\":\"HOT DEAL (Confirmation may take 30 mins)\",\"fareremarks\":\"Issues 30 to 45 minutes, Non Refundable, Non changeable \",\"FareClass\":\"Economy\",\"CommisionPass\":93.1,\"intTotalGST\":38.65,\"apiMarkup\":0,\"IntCommission\":1.9,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":2,\"FixedMarkUp\":214.7,\"GSTOnMarkUp\":38.65,\"CommEarned\":1.9,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":398.55,\"BaseFareCal\":5236.35,\"BaseFare\":5000,\"CommissionEarned\":95,\"TDS\":-5,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":275,\"MU\":105.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":38.65,\"apiMarkup\":0,\"IntCommission\":1.9,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":214.7,\"GSTOnMarkUp\":38.65,\"CommEarned\":1.9,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"012\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-04-29T06:40\",\"SegFlightNumber\":\"G8-329\",\"AirlineCode\":\"G8\",\"AirlineName\":\"Go First\",\"FareClass\":\"G\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-29T04:35\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":2,\"strDepartureDtTime\":\"04:35\",\"strArrivalDtTime\":\"06:40\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/G8.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"00:00-10:00\",\"FilterArrivalDtTime\":\"00:00-10:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-04-15 14:45:37'),(764,'ba08d-c2c68-8eff0-e0d0e','{\"FlightBookingData\":[{\"bookingId\":\"BKR104161404843\",\"bookingId_TJ\":\"TJ104161404843\",\"FlightNumber\":\"QP-1123\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"15:10\",\"TravelDate\":\"2023-04-19T13:05\",\"LocalFromTime\":\"2023-04-19 13:05\",\"FromUTCTime\":\"2023-04-19T13:05\",\"LocalToTime\":\"2023-04-19 15:10\",\"ToUTCTime\":\"2023-04-19T15:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4582.55,\"PublishedFareTxt\":\"4,583\",\"ApiResultIndex\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-LKO\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"or 100% of the airfare charges, whichever is lower.\",\"fcs\":{\"CCF\":50,\"ACF\":3500,\"CCFT\":9,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference if any\",\"fcs\":{\"ARFT\":150,\"CRF\":50,\"ARF\":3000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3800,\"Tax\":782.55,\"YQTax\":0,\"OtherCharges\":479,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":196,\"CarrierMiscFee\":0,\"MUFee\":89.85,\"intPublishedFare\":4582.55,\"PublishedFare\":4701.04,\"OfferedFare\":4463.1,\"CommissionEarned\":29.6,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-1.56,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"30-2140655161_0BOMLKOQP1123_21985981230511\",\"IsGSTRequired\":false,\"fareIdentifier\":\"SALE\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":36.21,\"apiMarkup\":0,\"IntCommission\":0.59,\"CommisionPass\":29.008000000000003,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":201.14,\"GSTOnMarkUp\":36.21,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":782.55,\"BaseFareCal\":4499.31,\"BaseFare\":3800,\"CommissionEarned\":29.6,\"TDS\":-1.56,\"MF\":15,\"YQ\":0,\"AGST\":196,\"MFT\":2.7,\"OT\":479,\"MU\":89.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":36.21,\"apiMarkup\":0,\"IntCommission\":0.59,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":201.14,\"GSTOnMarkUp\":36.21,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":29.6,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.59,\"IntAgencyFixMarkUp\":201.14,\"IntTaxOnAgencyFixMarkUp\":36.21,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":36.21,\"PublishFare\":4701.04,\"CostToCustomer\":4701.04,\"BaseFareCal\":4499.31,\"intCommisionEarnedForAgency\":201.74,\"CostToCompany\":4499.31,\"intOfferedFare\":4463.1,\"intPublishFare\":4582.55,\"TripjackMarkup\":89.85,\"TripjackCommission\":29.6,\"TripjackTDS\":\"1.56\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":29.008000000000003,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"641\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-04-19T15:10\",\"SegFlightNumber\":\"QP-1123\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-19T13:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"15:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC03\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3 Kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC05\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5 kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC10\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10 kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC15\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15 kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC20\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20 kgs\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"XC30\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30 kgs\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PHIM\",\"Price\":100,\"amount\":100,\"Description\":\"Sparkling water\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PWAF\",\"Price\":150,\"amount\":150,\"Description\":\"Wafers\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PCOR\",\"Price\":150,\"amount\":150,\"Description\":\"Sweet Corn\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PACK\",\"Price\":150,\"amount\":150,\"Description\":\"Cup Cake\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PPOP\",\"Price\":200,\"amount\":200,\"Description\":\"Popcorn\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PBHL\",\"Price\":200,\"amount\":200,\"Description\":\"Bhel Puri - Jain Special\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVNO\",\"Price\":250,\"amount\":250,\"Description\":\"Cup Noodles Veg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVBY\",\"Price\":250,\"amount\":250,\"Description\":\"Schezwan Fried Rice Veg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PUPM\",\"Price\":250,\"amount\":250,\"Description\":\"Upma\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PPOH\",\"Price\":250,\"amount\":250,\"Description\":\"Poha\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PPAS\",\"Price\":250,\"amount\":250,\"Description\":\"Pasta\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNNO\",\"Price\":250,\"amount\":250,\"Description\":\"Cup Noodles Non-Veg\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PCAS\",\"Price\":250,\"amount\":250,\"Description\":\"Cashews\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PALM\",\"Price\":250,\"amount\":250,\"Description\":\"Mixed Nuts\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVMT\",\"Price\":275,\"amount\":275,\"Description\":\"Masala Peas and Gruyere Tartlet\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNCT\",\"Price\":275,\"amount\":275,\"Description\":\"Achari Chicken Tartlet\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVMS\",\"Price\":300,\"amount\":300,\"Description\":\"Cuppa Misal\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDRC\",\"Price\":375,\"amount\":375,\"Description\":\"Malai-dramatic\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDDS\",\"Price\":375,\"amount\":375,\"Description\":\"Very Berry Healthy Cake\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDDI\",\"Price\":375,\"amount\":375,\"Description\":\"Dessert Island\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDBY\",\"Price\":375,\"amount\":375,\"Description\":\"Yo-Gurta Be Kidding Me!\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVMC\",\"Price\":500,\"amount\":500,\"Description\":\"Mushroom & brie Croissant\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVMB\",\"Price\":500,\"amount\":500,\"Description\":\"Mediterranean Bagelwich\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVKP\",\"Price\":500,\"amount\":500,\"Description\":\"Kathi Roll - Malai Paneer\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVKD\",\"Price\":500,\"amount\":500,\"Description\":\"Top Bun\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVFS\",\"Price\":500,\"amount\":500,\"Description\":\"Farmhouse Sandwich\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PFIS\",\"Price\":500,\"amount\":500,\"Description\":\"Insta-worthy Salad\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVFL\",\"Price\":550,\"amount\":550,\"Description\":\"Fa-la-la-la-lal-fel\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNKD\",\"Price\":550,\"amount\":550,\"Description\":\"Eager Burger\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PVGS\",\"Price\":600,\"amount\":600,\"Description\":\"Fruit Medley Garden Salad\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNMM\",\"Price\":600,\"amount\":600,\"Description\":\"Mustard Mayo in Marble\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNLC\",\"Price\":600,\"amount\":600,\"Description\":\"Lebanese Ciabatta\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNKC\",\"Price\":600,\"amount\":600,\"Description\":\"Kathi Roll - Malai Chicken\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNHR\",\"Price\":600,\"amount\":600,\"Description\":\"Hanoingly Good Rolls\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNCC\",\"Price\":600,\"amount\":600,\"Description\":\"QP Club Croissant Sandwich\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PNCS\",\"Price\":650,\"amount\":650,\"Description\":\"Chili Basil Chicken Salad\"},{\"Currency\":\"INR\",\"key\":\"641\",\"Code\":\"PDCT\",\"Price\":750,\"amount\":750,\"Description\":\"In-Air-Celebrations\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"ba08d-c2c68-8eff0-e0d0e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-16T15:07:38.013\",\"strTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-04-19 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR104161404843\",\"bookingId_TJ\":\"TJ104161404843\",\"FlightNumber\":\"QP-1123\",\"AirlineName\":\"Akasa Air\",\"AirlineCode\":\"QP\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"strTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"AirlineSysId\":\"821\",\"DepartureTime\":\"13:05\",\"ArrivalTime\":\"15:10\",\"TravelDate\":\"2023-04-19T13:05\",\"LocalFromTime\":\"2023-04-19 13:05\",\"FromUTCTime\":\"2023-04-19T13:05\",\"LocalToTime\":\"2023-04-19 15:10\",\"ToUTCTime\":\"2023-04-19T15:10\",\"IsDirect\":0,\"FareClass\":\"SP\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Wed, 19 Apr\",\"ArrivalDateTxt\":\"Wed, 19 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":16028,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"LKO\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":3,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4582.55,\"ApiResultIndex\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\",\"SearchFlightTraceId\":\"ba08d-c2c68-8eff0-e0d0e\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-16T15:07:38.013\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3800,\"Tax\":782.55,\"YQTax\":0,\"OtherCharges\":479,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":196,\"CarrierMiscFee\":0,\"MUFee\":89.85,\"intPublishedFare\":4582.55,\"PublishedFare\":4701.04,\"OfferedFare\":4463.1,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":201.14,\"GSTOnMarkUp\":36.21,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":782.55,\"BaseFareCal\":4499.31,\"BaseFare\":3800,\"CommissionEarned\":29.6,\"TDS\":-1.56,\"MF\":15,\"YQ\":0,\"AGST\":196,\"MFT\":2.7,\"OT\":479,\"MU\":89.85,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":201.14,\"GSTOnMarkUp\":36.21,\"CommEarned\":0.59,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"641\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Amausi Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Lucknow\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"LKO\",\"destinationArrTime\":\"2023-04-19T15:10\",\"SegFlightNumber\":\"QP-1123\",\"AirlineCode\":\"QP\",\"AirlineName\":\"Akasa Air\",\"FareClass\":\"SP\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-19T13:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":3,\"strDepartureDtTime\":\"13:05\",\"strArrivalDtTime\":\"15:10\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal T1\",\"ArrTerminal\":\"Terminal T2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/noimage.png\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"30-2140655161_0BOMLKOQP1123_10144451988229\",\"localFromDateTime\":\"2023-04-19 13:05\",\"localToDateTime\":\"2023-04-19 15:10\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"LKO\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":16028,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"126\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"66\",\"CustomerMemSysId\":[\"77\"],\"flight_booking_id\":[\"126\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"66\",\"EmailId\":\"Shahidmgm07@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"7515895182\",\"FirstName\":\"Shahid \",\"LastName\":\"Ahmad \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-16-15-06-48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerMemberSysId\":\"77\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"66\",\"EmailId\":\"Shahidmgm07@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"7515895182\",\"FirstName\":\"Shahid \",\"LastName\":\"Ahmad \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-16-15-06-48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"ba08d-c2c68-8eff0-e0d0e\",\"modified\":\"2023-04-16-15-06-48\",\"created\":\"2023-04-16-15-06-48\",\"CustomerMemberSysId\":\"77\"}],\"CustomerSysId\":\"66\",\"CustomerMemSysId\":[\"77\"],\"flight_booking_customer\":[[\"183\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Lucknow\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"LKO\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Lucknow, IN - Amausi Arpt LKO, India\",\"departure_date\":\"19\\/04\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Amausi Arpt LKO\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"LKO\",\"from\":\"BOM\",\"to\":\"LKO\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Lucknow, IN - Amausi Arpt LKO, India\",\"sourceCityId\":18676,\"destinationCityId\":16028,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"19\\/04\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-04-19\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"ba08d-c2c68-8eff0-e0d0e\",\"from_city_\":\"1__BOM-LKO\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"662941\",\"TPSysId\":\"662942\",\"VersionId\":[\"192922\"],\"CustomerSysId\":\"374281\",\"TrxId\":\"54667\",\"FareBreakdownid\":[\"375605\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"66\",\"CustomerMemSysId\":[\"77\"],\"flight_booking_id\":[\"126\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"12577\",\"Salutation\":\"1\",\"EmailId\":\"Shahidmgm07@gmail.com\",\"FirstName\":\"Shahid \",\"LastName\":\"Ahmad \",\"CountryCode\":\"91\",\"MobileNo\":\"7515895182\",\"Relation\":9,\"B2B\":false},\"apiDataMember\":[{\"AgencySysId\":\"12577\",\"CustomerSysId\":\"66\",\"EmailId\":\"Shahidmgm07@gmail.com\",\"Salutation\":\"1\",\"Relation\":\"1\",\"Contacts\":\"7515895182\",\"FirstName\":\"Shahid \",\"LastName\":\"Ahmad \",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-16-15-06-48\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"apiTraceId\":\"ba08d-c2c68-8eff0-e0d0e\",\"modified\":\"2023-04-16-15-06-48\",\"created\":\"2023-04-16-15-06-48\",\"MobileNo\":\"7515895182\",\"B2B\":false}],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"7515895182\",\"leadEmail\":\"Shahidmgm07@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"1\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"1\",\"passenger-firstname-1\":\"Shahid \",\"passenger-lastname-1\":\"Ahmad \",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"0\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"0\",\"passenger-country-1\":\"0\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"ba08d-c2c68-8eff0-e0d0e\",\"countryCodeISO\":\"IN\",\"apiCustomer\":{\"status\":true,\"Message\":\"374281\",\"memberId\":[\"25527\"]}}}','2023-04-16 15:07:00'),(768,'53b3f-d49b9-326ca-4e88f','{\"BookingData\":[{\"bookingId\":\"BKR104261547223\",\"bookingId_TJ\":\"TJ104261547223\",\"FlightNumber\":\"I5-743\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2023-05-22T05:00\",\"LocalFromTime\":\"2023-05-22 05:00\",\"FromUTCTime\":\"2023-05-22T05:00\",\"LocalToTime\":\"2023-05-22 18:50\",\"ToUTCTime\":\"2023-05-22T18:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":670,\"LAYOVERDuration\":\"11h 10m\",\"FlyingMinutes\":830,\"DepartureDateTxt\":\"Mon, 22 May\",\"ArrivalDateTxt\":\"Mon, 22 May\",\"FlightDuration\":\"13h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4545.83,\"PublishedFareTxt\":\"4,546\",\"ApiResultIndex\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure\",\"fcs\":{\"ACFT\":25,\"CCF\":50,\"CCFT\":9,\"ACF\":500}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":250,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference__nls__Changes permitted 04 Hrs before scheduled departure\",\"fcs\":{\"CRF\":50,\"ARFT\":12.5,\"ARF\":250,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3784,\"Tax\":761.83,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":192,\"CarrierMiscFee\":0,\"MUFee\":89.13,\"intPublishedFare\":4545.83,\"PublishedFare\":4652.82,\"OfferedFare\":4415.36,\"CommissionEarned\":41.34,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.18,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_79350952632651\",\"IsGSTRequired\":true,\"fareIdentifier\":\"SME\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":36.1,\"apiMarkup\":0,\"IntCommission\":0.83,\"CommisionPass\":40.513200000000005,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200.53,\"GSTOnMarkUp\":36.1,\"CommEarned\":0.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":761.83,\"BaseFareCal\":4451.46,\"BaseFare\":3784,\"CommissionEarned\":41.34,\"TDS\":-2.18,\"MF\":15,\"YQ\":0,\"AGST\":192,\"MFT\":2.7,\"OT\":463,\"MU\":89.13,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":36.1,\"apiMarkup\":0,\"IntCommission\":0.83,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":200.53,\"GSTOnMarkUp\":36.1,\"CommEarned\":0.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":41.34,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.83,\"IntAgencyFixMarkUp\":200.53,\"IntTaxOnAgencyFixMarkUp\":36.1,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":36.1,\"PublishFare\":4652.82,\"CostToCustomer\":4652.82,\"BaseFareCal\":4451.46,\"intCommisionEarnedForAgency\":201.36,\"CostToCompany\":4451.46,\"intOfferedFare\":4415.36,\"intPublishFare\":4545.83,\"TripjackMarkup\":89.13,\"TripjackCommission\":41.34,\"TripjackTDS\":\"2.18\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":40.513200000000005,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"524\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-05-22T05:50\",\"SegFlightNumber\":\"I5-743\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-22T05:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":670,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:00\",\"strArrivalDtTime\":\"05:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"11h 10m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"525\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-05-22T18:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-22T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"IB08\",\"Price\":1600,\"amount\":1600,\"Weight\":\"8Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBAB\",\"Price\":2250,\"amount\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"IB15\",\"Price\":3000,\"amount\":3000,\"Weight\":\"15Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBAC\",\"Price\":4500,\"amount\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBLD\",\"Price\":5714,\"amount\":5714,\"Weight\":\"Late Checked Baggage 30kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"IB30\",\"Price\":6000,\"amount\":6000,\"Weight\":\"30Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBAD\",\"Price\":6750,\"amount\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"PBAF\",\"Price\":11250,\"amount\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"RPCM\",\"Price\":0,\"amount\":0,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"JMCB\",\"Price\":350,\"amount\":350,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"524\",\"Code\":\"FTCB\",\"Price\":350,\"amount\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"53b3f-d49b9-326ca-4e88f\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-18T12:56:50.012\",\"strTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-22 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR104261547223\",\"bookingId_TJ\":\"TJ104261547223\",\"FlightNumber\":\"I5-743\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"strTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"05:00\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2023-05-22T05:00\",\"LocalFromTime\":\"2023-05-22 05:00\",\"FromUTCTime\":\"2023-05-22T05:00\",\"LocalToTime\":\"2023-05-22 18:50\",\"ToUTCTime\":\"2023-05-22T18:50\",\"IsDirect\":0,\"FareClass\":\"SM\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":670,\"LAYOVERDuration\":\"11h 10m\",\"FlyingMinutes\":830,\"DepartureDateTxt\":\"Mon, 22 May\",\"ArrivalDateTxt\":\"Mon, 22 May\",\"FlightDuration\":\"13h 50m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":4545.83,\"ApiResultIndex\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"53b3f-d49b9-326ca-4e88f\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-04-18T12:56:50.012\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":3784,\"Tax\":761.83,\"YQTax\":0,\"OtherCharges\":463,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":192,\"CarrierMiscFee\":0,\"MUFee\":89.13,\"intPublishedFare\":4545.83,\"PublishedFare\":4652.82,\"OfferedFare\":4415.36,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":200.53,\"GSTOnMarkUp\":36.1,\"CommEarned\":0.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":761.83,\"BaseFareCal\":4451.46,\"BaseFare\":3784,\"CommissionEarned\":41.34,\"TDS\":-2.18,\"MF\":15,\"YQ\":0,\"AGST\":192,\"MFT\":2.7,\"OT\":463,\"MU\":89.13,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":200.53,\"GSTOnMarkUp\":36.1,\"CommEarned\":0.83,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"524\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-05-22T05:50\",\"SegFlightNumber\":\"I5-743\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-05-22T05:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":50,\"GroundTime\":670,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"05:00\",\"strArrivalDtTime\":\"05:50\",\"FlightDuration\":\"0h 50m\",\"LAYOVERDuration\":\"11h 10m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"},{\"segmentid\":\"525\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-05-22T18:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"SM\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-22T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-7582238202_0DELJAII5743JAIBOMI5679_77138592207506\",\"localFromDateTime\":\"2023-05-22 05:00\",\"localToDateTime\":\"2023-05-22 18:50\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Mumbai\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"departure_date\":\"22\\/05\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"22\\/05\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-05-22\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"53b3f-d49b9-326ca-4e88f\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Delhi&mytrip_city_to=Mumbai&source_city=DEL&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Delhi%2C+IN+-+Delhi+Indira+Gandhi+Intl+DEL%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&departure_date=22%2F05%2F2023&return_date=&from_mytrip_city=+IN+-+Delhi+Indira+Gandhi+Intl+DEL&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"kumar.saujanya@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9699883388\",\"FirstName\":\"SAUJANYA \",\"LastName\":\"KUMAR\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-18-12-56-11\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"67\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"665269\",\"TPSysId\":\"665270\",\"VersionId\":[\"193682\"],\"CustomerSysId\":\"205552\",\"TrxId\":\"54784\",\"FareBreakdownid\":[\"375705\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"184\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"67\",\"CustomerMemSysId\":[\"67\"],\"flight_booking_id\":[\"127\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"127\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":4652.82},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"205552\",\"TPSysId\":\"665270\",\"MasterTPSysId\":\"665269\",\"ProposalID\":\"665270\\/V1\",\"InvoiceDate\":\"2023-04-18\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-04-18\",\"PaymentDate\":\"2023-04-18\",\"ClientGST\":true,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":4594.219999999999,\"InvoiceStatus\":true,\"TotalSGST\":29.3,\"TotalCGST\":29.3,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":4652.82,\"TotalDueAmount\":0,\"InvoiceValue\":4652.82,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"DEL-BOM-AirAsia India I5-743\",\"ItemQty\":1,\"ItemRates\":4268.69,\"Total\":4268.69,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":4652.82,\"MarkupType\":\"\",\"Markup\":325.53,\"TotalMarkup\":325.53,\"SubTotal\":4594.219999999999,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":58.6,\"SGST\":29.3,\"CGST\":29.3,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-04-18 12:57:18'),(769,'90596-3e1be-83ddf-0757c','{\"FlightBookingData\":[{\"FlightNumber\":\"UK-802\",\"keyIndex\":15,\"SegFlightNumberArr\":\"UK-802\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-3674494478_1BLRDELUK802_28842537360335\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"18:45\",\"ArrivalTime\":\"21:25\",\"TravelDate\":\"2023-05-12T18:45\",\"LocalFromTime\":\"2023-05-12 18:45\",\"FromUTCTime\":\"2023-05-12T18:45\",\"LocalToTime\":\"2023-05-12 21:25\",\"ToUTCTime\":\"2023-05-12T21:25\",\"IsDirect\":0,\"FareClass\":\"U\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":160,\"DepartureDateTxt\":\"Fri, 12 May\",\"ArrivalDateTxt\":\"Fri, 12 May\",\"FlightDuration\":\"2h 40m\",\"SourcePlaceSysId\":\"2262\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BLR\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":5,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6940,\"PublishedFareTxt\":\"6,939\",\"ApiResultIndex\":\"21-10-15-2-3674494478_1BLRDELUK802_28842537360105\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"90596-3e1be-83ddf-0757c\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5700,\"Tax\":1387.67,\"YQTax\":0,\"OtherCharges\":767,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":294,\"CarrierMiscFee\":170,\"MUFee\":138.97,\"intPublishedFare\":7087.67,\"PublishedFare\":6940,\"PublishedFarePerPax\":6940,\"OfferedFare\":6646.91,\"CommissionEarned\":301.79,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-15.88,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3674494478_1BLRDELUK802_28842537360335\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"CommisionPass\":295.7542,\"intTotalGST\":43.7,\"apiMarkup\":0,\"IntCommission\":6.04,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":242.77,\"GSTOnMarkUp\":43.7,\"CommEarned\":6.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1387.67,\"BaseFareCal\":6690.61,\"BaseFare\":5700,\"CommissionEarned\":301.79,\"TDS\":-15.88,\"MF\":15,\"YQ\":0,\"AGST\":294,\"MFT\":2.7,\"OT\":767,\"MU\":138.97,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":43.7,\"apiMarkup\":0,\"IntCommission\":6.04,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":242.77,\"GSTOnMarkUp\":43.7,\"CommEarned\":6.04,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"09J\"},\"Segments\":[{\"originAirportName\":\"Bengaluru Intl Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Bengaluru\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-12T21:25\",\"SegFlightNumber\":\"UK-802\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"U\",\"originAirportCode\":\"BLR\",\"originDepTime\":\"2023-05-12T18:45\",\"TripIndicator\":\"\",\"Baggage\":\"20 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":160,\"GroundTime\":0,\"NoOfSeatAvailable\":5,\"strDepartureDtTime\":\"18:45\",\"strArrivalDtTime\":\"21:25\",\"FlightDuration\":\"2h 40m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 3\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-04-18 13:23:56'),(770,'be00d-9cb7e-f6341-32f8b','{\"FlightBookingData\":[{\"FlightNumber\":\"AI-673\",\"keyIndex\":67,\"SegFlightNumberArr\":\"AI-673\",\"AirlineName\":\"Air india\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-3711458250_61BOMPATAI673_18023249250820\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"11:15\",\"ArrivalTime\":\"13:20\",\"TravelDate\":\"2023-04-20T11:15\",\"LocalFromTime\":\"2023-04-20 11:15\",\"FromUTCTime\":\"2023-04-20T11:15\",\"LocalToTime\":\"2023-04-20 13:20\",\"ToUTCTime\":\"2023-04-20T13:20\",\"IsDirect\":0,\"FareClass\":\"K\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":125,\"DepartureDateTxt\":\"Thu, 20 Apr\",\"ArrivalDateTxt\":\"Thu, 20 Apr\",\"FlightDuration\":\"2h 5m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":11500,\"PublishedFareTxt\":\"11,500\",\"ApiResultIndex\":\"21-10-15-2-3711458250_61BOMPATAI673_18023249250820\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"be00d-9cb7e-f6341-32f8b\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":10230,\"Tax\":1287.53,\"YQTax\":0,\"OtherCharges\":354,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":520,\"CarrierMiscFee\":170,\"MUFee\":225.83,\"intPublishedFare\":11517.53,\"PublishedFare\":11500,\"PublishedFarePerPax\":11500,\"OfferedFare\":11123.02,\"CommissionEarned\":168.68,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-8.88,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-3711458250_61BOMPATAI673_18023249250820\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"CommisionPass\":165.3064,\"intTotalGST\":56.95,\"apiMarkup\":0,\"IntCommission\":3.37,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":1,\"FixedMarkUp\":316.38,\"GSTOnMarkUp\":56.95,\"CommEarned\":3.37,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1287.53,\"BaseFareCal\":11179.97,\"BaseFare\":10230,\"CommissionEarned\":168.68,\"TDS\":-8.88,\"MF\":15,\"YQ\":0,\"AGST\":520,\"MFT\":2.7,\"OT\":354,\"MU\":225.83,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":56.95,\"apiMarkup\":0,\"IntCommission\":3.37,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":316.38,\"GSTOnMarkUp\":56.95,\"CommEarned\":3.37,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25 Kilograms\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00Y\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2023-04-20T13:20\",\"SegFlightNumber\":\"AI-673\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"K\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-20T11:15\",\"TripIndicator\":\"\",\"Baggage\":\"25 Kilograms\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":true,\"Duration\":125,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"11:15\",\"strArrivalDtTime\":\"13:20\",\"FlightDuration\":\"2h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"$$hashKey\":\"06L\"}],\"FilterPrice\":\"10001-15000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"10:00-15:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-04-19 12:19:20'),(771,'840f5-78131-7db23-17584','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6444\",\"keyIndex\":5,\"SegFlightNumberArr\":\"6E-6444 +1\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-6869312156_2IXBCCU6E6444CCUPAT6E114_16551592599048\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"14:20\",\"ArrivalTime\":\"19:15\",\"TravelDate\":\"2023-06-09T14:20\",\"LocalFromTime\":\"2023-06-09 14:20\",\"FromUTCTime\":\"2023-06-09T14:20\",\"LocalToTime\":\"2023-06-09 19:15\",\"ToUTCTime\":\"2023-06-09T19:15\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Kolkata\",\"GroundTime\":160,\"LAYOVERDuration\":\"2h 40m\",\"FlyingMinutes\":295,\"DepartureDateTxt\":\"Fri, 09 Jun\",\"ArrivalDateTxt\":\"Fri, 09 Jun\",\"FlightDuration\":\"4h 55m\",\"SourcePlaceSysId\":\"2012\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"IXB\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":2,\"CurrencyType\":\"1\",\"PublishedFare\":23189,\"PublishedFareTxt\":\"23,189\",\"ApiResultIndex\":\"5-6869312156_2IXBCCU6E6444CCUPAT6E114_16551592598848\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"840f5-78131-7db23-17584\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":21666,\"Tax\":1577.14,\"YQTax\":0,\"OtherCharges\":1086,\"Discount\":0,\"ServiceFee\":30,\"ManagementFeeTax\":5.4,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":455.74,\"intPublishedFare\":23243.14,\"PublishedFare\":23189,\"PublishedFarePerPax\":11595,\"OfferedFare\":22581.58,\"CommissionEarned\":205.82,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-10.84,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-6869312156_2IXBCCU6E6444CCUPAT6E114_16551592599048\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"CommisionPass\":201.7036,\"intTotalGST\":92.02,\"apiMarkup\":0,\"IntCommission\":4.12,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":6,\"FixedMarkUp\":511.22,\"GSTOnMarkUp\":92.02,\"CommEarned\":4.12,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"2\",\"TaxIN\":1577.14,\"BaseFareCal\":22673.6,\"BaseFare\":21666,\"CommissionEarned\":205.82,\"TDS\":-10.84,\"MF\":30,\"YQ\":0,\"AGST\":0,\"MFT\":5.4,\"OT\":1086,\"MU\":455.74,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":92.02,\"apiMarkup\":0,\"IntCommission\":4.12,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":511.22,\"GSTOnMarkUp\":92.02,\"CommEarned\":4.12,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"015\"},\"Segments\":[{\"originAirportName\":\"Bagdogra Arpt\",\"destinationAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"originCityName\":\"Bagdogra\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kolkata\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"CCU\",\"destinationArrTime\":\"2023-06-09T15:20\",\"SegFlightNumber\":\"6E-6444\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"IXB\",\"originDepTime\":\"2023-06-09T14:20\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":160,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"14:20\",\"strArrivalDtTime\":\"15:20\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":\"2h 40m\",\"LAYOVERCity\":\"Kolkata\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Netaji Subhas Chandra Bose Intl\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Kolkata\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2023-06-09T19:15\",\"SegFlightNumber\":\"6E-114\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"CCU\",\"originDepTime\":\"2023-06-09T18:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":75,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"18:00\",\"strArrivalDtTime\":\"19:15\",\"FlightDuration\":\"1h 15m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"25001-30000\",\"FilterDepartureDtTime\":\"10:00-15:00\",\"FilterArrivalDtTime\":\"15:00-20:00\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-04-20 13:06:03'),(775,'8125e-f2ed6-81244-2d927','{\"BookingData\":[{\"bookingId\":\"BKR100161795462\",\"bookingId_TJ\":\"TJ100161795462\",\"FlightNumber\":\"UK-561\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"11:45\",\"ArrivalTime\":\"13:35\",\"TravelDate\":\"2023-04-30T11:45\",\"LocalFromTime\":\"2023-04-30 11:45\",\"FromUTCTime\":\"2023-04-30T11:45\",\"LocalToTime\":\"2023-04-30 13:35\",\"ToUTCTime\":\"2023-04-30T13:35\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Sun, 30 Apr\",\"ArrivalDateTxt\":\"Sun, 30 Apr\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5359.79,\"PublishedFareTxt\":\"5,360\",\"ApiResultIndex\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"FareRuleDetails\":{\"fareRule\":{\"BOM-JAI\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3675,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation permitted 04 Hrs before scheduled departure __nls__ Within 04-26 hrs INR 3,675\\/-__nls__Before 26 hrs INR 3,150\\/-\",\"fcs\":{\"CCFT\":9,\"ACF\":3675,\"ACFT\":183.75,\"CCF\":50}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3150,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 04 Hrs before scheduled departure__nls__Within 04-26 hrs Rs 3,150 + Fare Difference__nls__Before 26 hrs Rs 2,625 + Fare Difference\",\"fcs\":{\"ARF\":3150,\"CRF\":50,\"ARFT\":157.5,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":879.79,\"YQTax\":0,\"OtherCharges\":354,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":233,\"CarrierMiscFee\":170,\"MUFee\":105.09,\"intPublishedFare\":5359.79,\"PublishedFare\":5246.87,\"OfferedFare\":4988.97,\"CommissionEarned\":265.73,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-13.99,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-4294920419_0BOMJAIUK561_6226536215171\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":38.53,\"apiMarkup\":0,\"IntCommission\":5.31,\"CommisionPass\":260.41540000000003,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":214.06,\"GSTOnMarkUp\":38.53,\"CommEarned\":5.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":879.79,\"BaseFareCal\":5027.5,\"BaseFare\":4480,\"CommissionEarned\":265.73,\"TDS\":-13.99,\"MF\":15,\"YQ\":0,\"AGST\":233,\"MFT\":2.7,\"OT\":354,\"MU\":105.09,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":38.53,\"apiMarkup\":0,\"IntCommission\":5.31,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":214.06,\"GSTOnMarkUp\":38.53,\"CommEarned\":5.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":265.73,\"IntCommissionValInPercentage\":2,\"IntCommission\":5.31,\"IntAgencyFixMarkUp\":214.06,\"IntTaxOnAgencyFixMarkUp\":38.53,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":38.53,\"PublishFare\":5246.87,\"CostToCustomer\":5246.87,\"BaseFareCal\":5027.5,\"intCommisionEarnedForAgency\":219.37,\"CostToCompany\":5027.5,\"intOfferedFare\":4988.97,\"intPublishFare\":5359.79,\"TripjackMarkup\":105.09,\"TripjackCommission\":265.73,\"TripjackTDS\":\"13.99\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":260.41540000000003,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"903\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-04-30T13:35\",\"SegFlightNumber\":\"UK-561\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-30T11:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:45\",\"strArrivalDtTime\":\"13:35\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"8125e-f2ed6-81244-2d927\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-21T13:08:06.798\",\"strTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-04-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR100161795462\",\"bookingId_TJ\":\"TJ100161795462\",\"FlightNumber\":\"UK-561\",\"AirlineName\":\"Vistara\",\"AirlineCode\":\"UK\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"strTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"AirlineSysId\":\"539\",\"DepartureTime\":\"11:45\",\"ArrivalTime\":\"13:35\",\"TravelDate\":\"2023-04-30T11:45\",\"LocalFromTime\":\"2023-04-30 11:45\",\"FromUTCTime\":\"2023-04-30T11:45\",\"LocalToTime\":\"2023-04-30 13:35\",\"ToUTCTime\":\"2023-04-30T13:35\",\"IsDirect\":0,\"FareClass\":\"Q\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Sun, 30 Apr\",\"ArrivalDateTxt\":\"Sun, 30 Apr\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":18676,\"DestPlaceSysId\":12995,\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"JAI\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5359.79,\"ApiResultIndex\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\",\"SearchFlightTraceId\":\"8125e-f2ed6-81244-2d927\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-04-21T13:08:06.798\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4480,\"Tax\":879.79,\"YQTax\":0,\"OtherCharges\":354,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":233,\"CarrierMiscFee\":170,\"MUFee\":105.09,\"intPublishedFare\":5359.79,\"PublishedFare\":5246.87,\"OfferedFare\":4988.97,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":214.06,\"GSTOnMarkUp\":38.53,\"CommEarned\":5.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":879.79,\"BaseFareCal\":5027.5,\"BaseFare\":4480,\"CommissionEarned\":265.73,\"TDS\":-13.99,\"MF\":15,\"YQ\":0,\"AGST\":233,\"MFT\":2.7,\"OT\":354,\"MU\":105.09,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":214.06,\"GSTOnMarkUp\":38.53,\"CommEarned\":5.31,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"903\",\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-04-30T13:35\",\"SegFlightNumber\":\"UK-561\",\"AirlineCode\":\"UK\",\"AirlineName\":\"Vistara\",\"FareClass\":\"Q\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-04-30T11:45\",\"TripIndicator\":\"\",\"Baggage\":\"15KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"11:45\",\"strArrivalDtTime\":\"13:35\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/UK.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-4294920419_1BOMJAIUK561_28148179045122\",\"localFromDateTime\":\"2023-04-30 11:45\",\"localToDateTime\":\"2023-04-30 13:35\",\"strSourceAirportCode\":\"BOM\",\"strDestinationAirportCode\":\"JAI\",\"intMemberCount\":1,\"intSourceCityId\":18676,\"intDestinationCityId\":12995,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Mumbai\",\"mytrip_city_to\":\"Jaipur\",\"source_city\":\"BOM\",\"ContSysId_1\":\"101\",\"destination_city\":\"JAI\",\"ContSysId\":\"101\",\"source\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destination\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"departure_date\":\"30\\/04\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"to_mytrip_city\":\" IN - Sanganeer Arpt JAI\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"BOM\",\"destinationCityAirportCode\":\"JAI\",\"from\":\"BOM\",\"to\":\"JAI\",\"sourceCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"destinationCityText\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"sourceCityId\":18676,\"destinationCityId\":12995,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"30\\/04\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-04-30\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"8125e-f2ed6-81244-2d927\",\"PreferredAirline\":null,\"from_city_\":\"1__BOM-JAI\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Mumbai&mytrip_city_to=Jaipur&source_city=BOM&ContSysId_1=101&destination_city=JAI&ContSysId=101&source=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&destination=Jaipur%2C+IN+-+Sanganeer+Arpt+JAI%2C+India&departure_date=30%2F04%2F2023&return_date=&from_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&to_mytrip_city=+IN+-+Sanganeer+Arpt+JAI&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri@svezz.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-04-21-13-07-38\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"68\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"669516\",\"TPSysId\":\"669517\",\"VersionId\":[\"195082\"],\"CustomerSysId\":\"378843\",\"TrxId\":\"55046\",\"FareBreakdownid\":[\"375867\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"185\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"68\",\"CustomerMemSysId\":[\"68\"],\"flight_booking_id\":[\"128\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"128\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5246.87},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"378843\",\"TPSysId\":\"669517\",\"MasterTPSysId\":\"669516\",\"ProposalID\":\"669517\\/V1\",\"InvoiceDate\":\"2023-04-21\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-04-21\",\"PaymentDate\":\"2023-04-21\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":5185.84,\"InvoiceStatus\":true,\"TotalSGST\":30.515,\"TotalCGST\":30.515,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5246.87,\"TotalDueAmount\":0,\"InvoiceValue\":5246.87,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"BOM-JAI-Vistara UK-561\",\"ItemQty\":1,\"ItemRates\":4846.78,\"Total\":4846.78,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5246.87,\"MarkupType\":\"\",\"Markup\":339.06,\"TotalMarkup\":339.06,\"SubTotal\":5185.84,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":61.03,\"SGST\":30.515,\"CGST\":30.515,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-04-21 13:08:20'),(776,'5afc5-a1c24-083bc-313fc','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-5236\",\"keyIndex\":266,\"SegFlightNumberArr\":\"6E-5236 +1\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-3671121890_18BOMJAI6E5236JAIDEL6E2405_10665162543471\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"15:05\",\"ArrivalTime\":\"22:55\",\"TravelDate\":\"2023-05-17T15:05\",\"LocalFromTime\":\"2023-05-17 15:05\",\"FromUTCTime\":\"2023-05-17T15:05\",\"LocalToTime\":\"2023-05-17 22:55\",\"ToUTCTime\":\"2023-05-17T22:55\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"Jaipur\",\"GroundTime\":310,\"LAYOVERDuration\":\"5h 10m\",\"FlyingMinutes\":470,\"DepartureDateTxt\":\"Wed, 17 May\",\"ArrivalDateTxt\":\"Wed, 17 May\",\"FlightDuration\":\"7h 50m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"7701\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"DEL\",\"StopCount\":\"1 Stop(s)\",\"Stops\":1,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5254,\"PublishedFareTxt\":\"5,253\",\"ApiResultIndex\":\"5-3671121890_18BOMJAI6E5236JAIDEL6E2405_10665162543327\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"5afc5-a1c24-083bc-313fc\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4300,\"Tax\":845.59,\"YQTax\":0,\"OtherCharges\":727,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":100.89,\"intPublishedFare\":5145.59,\"PublishedFare\":5254,\"PublishedFarePerPax\":5254,\"OfferedFare\":5003.85,\"CommissionEarned\":40.85,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.15,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-3671121890_18BOMJAI6E5236JAIDEL6E2405_10665162543471\",\"IsGSTRequired\":false,\"fareIdentifier\":\"Retail Fare\",\"fareremarks\":\"Cancellation 3600 onwards+ SC:200, Reissue 2500 onwards+ Fare Difference+ 200 SC\",\"FareClass\":\"Economy\",\"CommisionPass\":40.033,\"intTotalGST\":37.89,\"apiMarkup\":0,\"IntCommission\":0.82,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":210.5,\"GSTOnMarkUp\":37.89,\"CommEarned\":0.82,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":845.59,\"BaseFareCal\":5041.74,\"BaseFare\":4300,\"CommissionEarned\":40.85,\"TDS\":-2.15,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":727,\"MU\":100.89,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":37.89,\"apiMarkup\":0,\"IntCommission\":0.82,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":210.5,\"GSTOnMarkUp\":37.89,\"CommEarned\":0.82,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"01T\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Sanganeer Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Jaipur\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"JAI\",\"destinationArrTime\":\"2023-05-17T16:45\",\"SegFlightNumber\":\"6E-5236\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-05-17T15:05\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":100,\"GroundTime\":310,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"15:05\",\"strArrivalDtTime\":\"16:45\",\"FlightDuration\":\"1h 40m\",\"LAYOVERDuration\":\"5h 10m\",\"LAYOVERCity\":\"Jaipur\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"},{\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Delhi Indira Gandhi Intl\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Delhi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"DEL\",\"destinationArrTime\":\"2023-05-17T22:55\",\"SegFlightNumber\":\"6E-2405\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-17T21:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":60,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"21:55\",\"strArrivalDtTime\":\"22:55\",\"FlightDuration\":\"1h 0m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-04-22 00:04:34'),(777,'13ad3-5fa49-4bb7a-fb1de','{\"FlightBookingData\":[{\"FlightNumber\":\"6E-6418\",\"keyIndex\":2,\"SegFlightNumberArr\":\"6E-6418\",\"AirlineName\":\"Indigo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsCabinBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-8259087708_0BOMPAT6E6418_13065654472644\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"17:55\",\"ArrivalTime\":\"20:15\",\"TravelDate\":\"2023-05-25T17:55\",\"LocalFromTime\":\"2023-05-25 17:55\",\"FromUTCTime\":\"2023-05-25T17:55\",\"LocalToTime\":\"2023-05-25 20:15\",\"ToUTCTime\":\"2023-05-25T20:15\",\"IsDirect\":0,\"FareClass\":\"M\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":\"0h 0m\",\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Thu, 25 May\",\"ArrivalDateTxt\":\"Thu, 25 May\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":\"18676\",\"DestPlaceSysId\":\"20918\",\"SourceAirportCode\":\"BOM\",\"DestAirportCode\":\"PAT\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":9,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5410,\"PublishedFareTxt\":\"5,410\",\"ApiResultIndex\":\"5-8259087708_0BOMPAT6E6418_13065654472644\",\"JourneyType\":1,\"TripType\":1,\"ICSourceSysId\":7,\"SearchFlightTraceId\":\"13ad3-5fa49-4bb7a-fb1de\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4596,\"Tax\":985.13,\"YQTax\":0,\"OtherCharges\":858,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":0,\"CarrierMiscFee\":0,\"MUFee\":109.43,\"intPublishedFare\":5581.13,\"PublishedFare\":5410,\"PublishedFarePerPax\":5410,\"OfferedFare\":5297.05,\"CommissionEarned\":174.65,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-9.19,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-8259087708_0BOMPAT6E6418_13065654472644\",\"IsGSTRequired\":false,\"fareIdentifier\":\"CORP CONNECT\",\"fareremarks\":\"\",\"FareClass\":\"Economy\",\"CommisionPass\":171.157,\"intTotalGST\":16.69,\"apiMarkup\":0,\"IntCommission\":3.49,\"apiTaxOnMarkup\":0,\"NoOfSeatAvailable\":9,\"FixedMarkUp\":92.74,\"GSTOnMarkUp\":16.69,\"CommEarned\":3.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":0,\"AddiTaxOnMarkup\":0,\"IsBaggage\":true,\"IsCabinBaggage\":true,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":985.13,\"BaseFareCal\":5313.74,\"BaseFare\":4596,\"CommissionEarned\":174.65,\"TDS\":-9.19,\"MF\":15,\"YQ\":0,\"AGST\":0,\"MFT\":2.7,\"OT\":858,\"MU\":109.43,\"YR\":0,\"AddiTaxOnMarkup\":0,\"AddiMarkup\":0,\"intTotalGST\":16.69,\"apiMarkup\":0,\"IntCommission\":3.49,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":92.74,\"GSTOnMarkUp\":16.69,\"CommEarned\":3.49,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"$$hashKey\":\"00I\"},\"Segments\":[{\"originAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"destinationAirportName\":\"Jai Prakash Narayan Arpt\",\"originCityName\":\"Mumbai\",\"originCountryName\":\"India\",\"destinationCityName\":\"Patna\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"PAT\",\"destinationArrTime\":\"2023-05-25T20:15\",\"SegFlightNumber\":\"6E-6418\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"M\",\"originAirportCode\":\"BOM\",\"originDepTime\":\"2023-05-25T17:55\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"IsBaggage\":true,\"IsCabinBaggage\":true,\"CabinBaggage\":\"7 Kg\",\"IsMealIncludes\":false,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":9,\"strDepartureDtTime\":\"17:55\",\"strArrivalDtTime\":\"20:15\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 2\",\"ArrTerminal\":\"\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"FilterPrice\":\"5001-10000\",\"FilterDepartureDtTime\":\"15:00-20:00\",\"FilterArrivalDtTime\":\"20:00-23:59\",\"CombineTripInfo\":[]}],\"FlightBookingDataInbound\":null}','2023-05-06 12:03:35'),(781,'4d600-05ae5-ffda4-59d8e','{\"BookingData\":[{\"bookingId\":\"BKR101663669010\",\"bookingId_TJ\":\"TJ101663669010\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2023-05-16T17:00\",\"LocalFromTime\":\"2023-05-16 17:00\",\"FromUTCTime\":\"2023-05-16T17:00\",\"LocalToTime\":\"2023-05-16 18:50\",\"ToUTCTime\":\"2023-05-16T18:50\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 16 May\",\"ArrivalDateTxt\":\"Tue, 16 May\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5118.05,\"PublishedFareTxt\":\"5,118\",\"ApiResultIndex\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"FareRuleDetails\":{\"fareRule\":{\"JAI-BOM\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3500,\"additionalFee\":50,\"policyInfo\":\"__nls__Cancellation in respect of the booking made under Family fare shall only be permissible if minimum of four (04) passengers are retained in the booking.\",\"fcs\":{\"ACF\":3500,\"CCF\":50,\"CCFT\":9,\"ACFT\":175}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":3250,\"additionalFee\":50,\"fcs\":{\"CRF\":50,\"ARFT\":162.5,\"ARF\":3250,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4020,\"Tax\":1098.05,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":204,\"CarrierMiscFee\":0,\"MUFee\":100.35,\"intPublishedFare\":5118.05,\"PublishedFare\":5228.12,\"OfferedFare\":4979.51,\"CommissionEarned\":38.19,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.01,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"22-16-5511458113_0JAIBOMI5679_684871371971\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":37.81,\"apiMarkup\":0,\"IntCommission\":0.76,\"CommisionPass\":37.426199999999994,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":210.04,\"GSTOnMarkUp\":37.81,\"CommEarned\":0.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1098.05,\"BaseFareCal\":5017.32,\"BaseFare\":4020,\"CommissionEarned\":38.19,\"TDS\":-2.01,\"MF\":15,\"YQ\":0,\"AGST\":204,\"MFT\":2.7,\"OT\":776,\"MU\":100.35,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":37.81,\"apiMarkup\":0,\"IntCommission\":0.76,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":210.04,\"GSTOnMarkUp\":37.81,\"CommEarned\":0.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":38.19,\"IntCommissionValInPercentage\":2,\"IntCommission\":0.76,\"IntAgencyFixMarkUp\":210.04,\"IntTaxOnAgencyFixMarkUp\":37.81,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":37.81,\"PublishFare\":5228.12,\"CostToCustomer\":5228.12,\"BaseFareCal\":5017.32,\"intCommisionEarnedForAgency\":210.81,\"CostToCompany\":5017.32,\"intOfferedFare\":4979.51,\"intPublishFare\":5118.05,\"TripjackMarkup\":100.35,\"TripjackCommission\":38.19,\"TripjackTDS\":\"2.01\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":37.426199999999994,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"432\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-05-16T18:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-16T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"IB08\",\"Price\":1600,\"amount\":1600,\"Weight\":\"8Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PBAB\",\"Price\":2250,\"amount\":2250,\"Weight\":\"+ 5 Kg\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"IB15\",\"Price\":3000,\"amount\":3000,\"Weight\":\"15Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PBAC\",\"Price\":4500,\"amount\":4500,\"Weight\":\"+ 10 Kg\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"IB30\",\"Price\":6000,\"amount\":6000,\"Weight\":\"30Kg International Connecting Baggage\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PBAD\",\"Price\":6750,\"amount\":6750,\"Weight\":\"+ 15 Kg\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PBAF\",\"Price\":11250,\"amount\":11250,\"Weight\":\"+ 25 Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"SDAI\",\"Price\":300,\"amount\":300,\"Description\":\"SH\\u00d4NDESH TIRAMIS\\u00d9\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"RPCB\",\"Price\":350,\"amount\":350,\"Description\":\"HERB ROAST VEGETABLE ROLL\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"JMCB\",\"Price\":350,\"amount\":350,\"Description\":\"CHICKEN JUNGLEE SANDWICH\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"FTCB\",\"Price\":350,\"amount\":350,\"Description\":\"SEASONAL FRESH FRUIT PLATTER\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"XCCB\",\"Price\":600,\"amount\":600,\"Description\":\"SPINACH & FETA STUFFED CHICKEN BREAST\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"SICB\",\"Price\":600,\"amount\":600,\"Description\":\"MINI IDILIS, UPMA & ALOO BONDA\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"RICB\",\"Price\":600,\"amount\":600,\"Description\":\"VEGETABLE MANCHURIAN FRIED RICE\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"PTCB\",\"Price\":600,\"amount\":600,\"Description\":\"PALAK PANEER & RICE WITH TANDOORI ALOO\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"KACB\",\"Price\":600,\"amount\":600,\"Description\":\"VEGAN MOILEE CURRY WITH COCONUT RICE\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"GACB\",\"Price\":600,\"amount\":600,\"Description\":\"HERB GRILLED FISH FILLET\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"COCB\",\"Price\":600,\"amount\":600,\"Description\":\"CHEDDAR & CHIVES OMELETTE\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"CJCB\",\"Price\":600,\"amount\":600,\"Description\":\"AWADHI CHICKEN TIKKA BIRYANI\"},{\"Currency\":\"INR\",\"key\":\"432\",\"Code\":\"AMCB\",\"Price\":600,\"amount\":600,\"Description\":\"MATAR PANEER BHURJI WITH ALOO PARATHA\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"4d600-05ae5-ffda4-59d8e\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-13T09:29:42.471\",\"strTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-05-16 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR101663669010\",\"bookingId_TJ\":\"TJ101663669010\",\"FlightNumber\":\"I5-679\",\"AirlineName\":\"AirAsia India\",\"AirlineCode\":\"I5\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"strTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"AirlineSysId\":\"75\",\"DepartureTime\":\"17:00\",\"ArrivalTime\":\"18:50\",\"TravelDate\":\"2023-05-16T17:00\",\"LocalFromTime\":\"2023-05-16 17:00\",\"FromUTCTime\":\"2023-05-16T17:00\",\"LocalToTime\":\"2023-05-16 18:50\",\"ToUTCTime\":\"2023-05-16T18:50\",\"IsDirect\":0,\"FareClass\":\"EC\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":110,\"DepartureDateTxt\":\"Tue, 16 May\",\"ArrivalDateTxt\":\"Tue, 16 May\",\"FlightDuration\":\"1h 50m\",\"SourcePlaceSysId\":12995,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"JAI\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":1,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":5118.05,\"ApiResultIndex\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\",\"SearchFlightTraceId\":\"4d600-05ae5-ffda4-59d8e\",\"ICSourceSysId\":7,\"estimetedTime\":14,\"estimetedDateTime\":\"2023-05-13T09:29:42.471\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":4020,\"Tax\":1098.05,\"YQTax\":0,\"OtherCharges\":776,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":204,\"CarrierMiscFee\":0,\"MUFee\":100.35,\"intPublishedFare\":5118.05,\"PublishedFare\":5228.12,\"OfferedFare\":4979.51,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":210.04,\"GSTOnMarkUp\":37.81,\"CommEarned\":0.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1098.05,\"BaseFareCal\":5017.32,\"BaseFare\":4020,\"CommissionEarned\":38.19,\"TDS\":-2.01,\"MF\":15,\"YQ\":0,\"AGST\":204,\"MFT\":2.7,\"OT\":776,\"MU\":100.35,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":210.04,\"GSTOnMarkUp\":37.81,\"CommEarned\":0.76,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"432\",\"originAirportName\":\"Sanganeer Arpt\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Jaipur\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-05-16T18:50\",\"SegFlightNumber\":\"I5-679\",\"AirlineCode\":\"I5\",\"AirlineName\":\"AirAsia India\",\"FareClass\":\"EC\",\"originAirportCode\":\"JAI\",\"originDepTime\":\"2023-05-16T17:00\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":110,\"GroundTime\":0,\"NoOfSeatAvailable\":1,\"strDepartureDtTime\":\"17:00\",\"strArrivalDtTime\":\"18:50\",\"FlightDuration\":\"1h 50m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/I5.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"22-16-5511458113_0JAIBOMI5679_15066297012722\",\"localFromDateTime\":\"2023-05-16 17:00\",\"localToDateTime\":\"2023-05-16 18:50\",\"strSourceAirportCode\":\"JAI\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":12995,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Jaipur\",\"mytrip_city_to\":\"Mumbai\",\"source_city\":\"JAI\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"departure_date\":\"16\\/05\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Sanganeer Arpt JAI\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"DirectFlight\":\"1\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"JAI\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"JAI\",\"to\":\"BOM\",\"sourceCityText\":\"Jaipur, IN - Sanganeer Arpt JAI, India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"sourceCityId\":12995,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"16\\/05\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-05-16\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"4d600-05ae5-ffda4-59d8e\",\"PreferredAirline\":null,\"from_city_\":\"1__JAI-BOM\"},\"FlightSearchUrl\":\"route=1&mytrip_city_from=Jaipur&mytrip_city_to=Mumbai&source_city=JAI&ContSysId_1=101&destination_city=BOM&ContSysId=101&source=Jaipur%2C+IN+-+Sanganeer+Arpt+JAI%2C+India&destination=Mumbai%2C+IN+-+Chhatrapati+Shivaji+BOM%2C+India&departure_date=16%2F05%2F2023&return_date=&from_mytrip_city=+IN+-+Sanganeer+Arpt+JAI&to_mytrip_city=+IN+-+Chhatrapati+Shivaji+BOM&DirectFlight=1&adults=1&childs=0&infants=0&class=2\",\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"ajaykhatri8786@gmail.com\",\"Salutation\":\"1\",\"Relation\":0,\"Contacts\":\"9829015180\",\"FirstName\":\"Ajay\",\"LastName\":\"Khatri\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-05-13-09-28-57\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"69\",\"isgstapply\":0,\"countryCodeISO\":\"IN\",\"gstnnumber\":\"\",\"companyname\":\"\",\"gstemail\":\"\",\"gstphone\":\"\",\"gstaddress\":\"\",\"gststate\":\"\"}],\"ResponseFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"695218\",\"TPSysId\":\"695219\",\"VersionId\":[\"204050\"],\"CustomerSysId\":\"193691\",\"TrxId\":\"56988\",\"FareBreakdownid\":[\"377147\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"SelectedMealSessionNew\":null,\"SelectedBaggSessionNew\":null,\"SelectedBaggSessionNewInb\":null,\"SelectedMealSessionNewInb\":null,\"flight_booking_customer_id\":[[\"186\"]],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"69\",\"CustomerMemSysId\":[\"69\"],\"flight_booking_id\":[\"129\"]},\"selectedSeatSession\":null,\"CurrencyId\":\"1\",\"flight_booking_id_Arr\":[\"129\"],\"_sessiondata\":null,\"CencelattionData\":[{\"AgencySysId\":\"12577\",\"IsCancellationProtection\":0,\"IsDepositBalance\":0,\"CPPercentVal\":6}],\"CancellationProtectionData\":{\"IsCancellationProtection\":\"0\",\"CancellationProtectionPrice\":0,\"finalPackageCostWithMarkupnTax\":5228.12},\"Invoicedata\":{\"AgentSysId\":0,\"CustomerSysId\":\"193691\",\"TPSysId\":\"695219\",\"MasterTPSysId\":\"695218\",\"ProposalID\":\"695219\\/V1\",\"InvoiceDate\":\"2023-05-13\",\"isDisplayMarkup\":true,\"PaymentDueDate\":\"2023-05-13\",\"PaymentDate\":\"2023-05-13\",\"ClientGST\":false,\"ClientGSTNumber\":\"\",\"Currency\":\"1\",\"TotalInvoiceValue\":5167.8099999999995,\"InvoiceStatus\":true,\"TotalSGST\":30.155,\"TotalCGST\":30.155,\"TotalIGST\":0,\"SumdiscountItem\":0,\"OtherDiscount\":0,\"otherDiscountVal\":0,\"TotalAdvance\":5228.12,\"TotalDueAmount\":0,\"InvoiceValue\":5228.12,\"notes\":\"Flight Ticket\",\"termsandcondition\":\"\",\"client_state\":\"\",\"Advance\":0,\"PaymentType\":4,\"paymentNote\":\"Online\",\"misxItems_name\":[{\"AgencySysId\":\"12577\",\"AgentSysId\":\"0\",\"MisxItems_name\":\"Flight\",\"Description\":\"JAI-BOM-AirAsia India I5-679\",\"ItemQty\":1,\"ItemRates\":4832.7699999999995,\"Total\":4832.7699999999995,\"DiscountType\":0,\"Discount\":1,\"TotalDiscount\":0,\"TotalAmount\":5228.12,\"MarkupType\":\"\",\"Markup\":335.03999999999996,\"TotalMarkup\":335.03999999999996,\"SubTotal\":5167.8099999999995,\"ServiceFeeTotal\":0,\"GSTPercentage\":\"18\",\"TotalGST\":60.31,\"SGST\":30.155,\"CGST\":30.155,\"IGST\":0,\"ItemsSACCode\":\"\"}]},\"validateCoupon\":null,\"validateData\":null,\"FlightBookingTicketArr\":[],\"apiFlightBooking\":[]}','2023-05-13 09:29:40'),(785,'1375e-3ad5d-14710-ec78a','{\"FlightBookingData\":[{\"bookingId\":\"BKR102565263653\",\"bookingId_TJ\":\"TJ102565263653\",\"FlightNumber\":\"AI-665\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:20\",\"TravelDate\":\"2023-06-04T08:00\",\"LocalFromTime\":\"2023-06-04 08:00\",\"FromUTCTime\":\"2023-06-04T08:00\",\"LocalToTime\":\"2023-06-04 10:20\",\"ToUTCTime\":\"2023-06-04T10:20\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 04 Jun\",\"ArrivalDateTxt\":\"Sun, 04 Jun\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":16265.63,\"PublishedFareTxt\":\"16,266\",\"ApiResultIndex\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-BOM\":{\"fr\":{\"CANCELLATION\":{\"DEFAULT\":{\"amount\":3000,\"additionalFee\":50,\"fcs\":{\"ACF\":3000,\"CCFT\":9,\"ACFT\":150,\"CCF\":50}}},\"DATECHANGE\":{\"DEFAULT\":{\"amount\":1000,\"additionalFee\":50,\"policyInfo\":\"__nls__Changes permitted 03 Hrs before scheduled departure__nls__ Within 03-72 hrs Rs 1,000 + Fare Difference if any __nls__ Before 72 hrs NIL + Fare Difference if any\",\"fcs\":{\"CRF\":50,\"ARFT\":50,\"ARF\":1000,\"CRFT\":9}}}}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14630,\"Tax\":1635.63,\"YQTax\":0,\"OtherCharges\":389,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":740,\"CarrierMiscFee\":170,\"MUFee\":318.93,\"intPublishedFare\":16265.63,\"PublishedFare\":16103.66,\"OfferedFare\":15630.91,\"CommissionEarned\":315.79,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-16.62,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"21-10-15-2-7014919502_0DELBOMAI665_12103328259692\",\"IsGSTRequired\":false,\"fareIdentifier\":\"PUBLISHED\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":71.15,\"apiMarkup\":0,\"IntCommission\":6.32,\"CommisionPass\":309.4742,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":395.28,\"GSTOnMarkUp\":71.15,\"CommEarned\":6.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1635.63,\"BaseFareCal\":15702.06,\"BaseFare\":14630,\"CommissionEarned\":315.79,\"TDS\":-16.62,\"MF\":15,\"YQ\":0,\"AGST\":740,\"MFT\":2.7,\"OT\":389,\"MU\":318.93,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":71.15,\"apiMarkup\":0,\"IntCommission\":6.32,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":395.28,\"GSTOnMarkUp\":71.15,\"CommEarned\":6.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":315.79,\"IntCommissionValInPercentage\":2,\"IntCommission\":6.32,\"IntAgencyFixMarkUp\":395.28,\"IntTaxOnAgencyFixMarkUp\":71.15,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":71.15,\"PublishFare\":16103.66,\"CostToCustomer\":16103.66,\"BaseFareCal\":15702.06,\"intCommisionEarnedForAgency\":401.6,\"CostToCompany\":15702.06,\"intOfferedFare\":15630.91,\"intPublishFare\":16265.63,\"TripjackMarkup\":318.93,\"TripjackCommission\":315.79,\"TripjackTDS\":\"16.62\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":309.4742,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"144\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-04T10:20\",\"SegFlightNumber\":\"AI-665\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"H\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-04T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}],\"Baggage\":[],\"Meal\":[],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"1375e-3ad5d-14710-ec78a\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-06-03T10:46:00.641\",\"strTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-04 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR102565263653\",\"bookingId_TJ\":\"TJ102565263653\",\"FlightNumber\":\"AI-665\",\"AirlineName\":\"Air India\",\"AirlineCode\":\"AI\",\"AirInvenSysId\":0,\"IsLCC\":false,\"IsMealIncludes\":true,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"strTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"AirlineSysId\":\"42\",\"DepartureTime\":\"08:00\",\"ArrivalTime\":\"10:20\",\"TravelDate\":\"2023-06-04T08:00\",\"LocalFromTime\":\"2023-06-04 08:00\",\"FromUTCTime\":\"2023-06-04T08:00\",\"LocalToTime\":\"2023-06-04 10:20\",\"ToUTCTime\":\"2023-06-04T10:20\",\"IsDirect\":0,\"FareClass\":\"H\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":140,\"DepartureDateTxt\":\"Sun, 04 Jun\",\"ArrivalDateTxt\":\"Sun, 04 Jun\",\"FlightDuration\":\"2h 20m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":18676,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"BOM\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":null,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":16265.63,\"ApiResultIndex\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\",\"SearchFlightTraceId\":\"1375e-3ad5d-14710-ec78a\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-06-03T10:46:00.641\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":14630,\"Tax\":1635.63,\"YQTax\":0,\"OtherCharges\":389,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":740,\"CarrierMiscFee\":170,\"MUFee\":318.93,\"intPublishedFare\":16265.63,\"PublishedFare\":16103.66,\"OfferedFare\":15630.91,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":395.28,\"GSTOnMarkUp\":71.15,\"CommEarned\":6.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":1635.63,\"BaseFareCal\":15702.06,\"BaseFare\":14630,\"CommissionEarned\":315.79,\"TDS\":-16.62,\"MF\":15,\"YQ\":0,\"AGST\":740,\"MFT\":2.7,\"OT\":389,\"MU\":318.93,\"YR\":170,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":395.28,\"GSTOnMarkUp\":71.15,\"CommEarned\":6.32,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"144\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Chhatrapati Shivaji Maharaj International Airport\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Mumbai\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"BOM\",\"destinationArrTime\":\"2023-06-04T10:20\",\"SegFlightNumber\":\"AI-665\",\"AirlineCode\":\"AI\",\"AirlineName\":\"Air India\",\"FareClass\":\"H\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-04T08:00\",\"TripIndicator\":\"\",\"Baggage\":\"25KG\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":true,\"Duration\":140,\"GroundTime\":0,\"NoOfSeatAvailable\":null,\"strDepartureDtTime\":\"08:00\",\"strArrivalDtTime\":\"10:20\",\"FlightDuration\":\"2h 20m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 3\",\"ArrTerminal\":\"Terminal 2\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/AI.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"21-10-15-2-7014919502_140DELBOMAI665_1295397135117\",\"localFromDateTime\":\"2023-06-04 08:00\",\"localToDateTime\":\"2023-06-04 10:20\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"BOM\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":18676,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"flight_booking_id_Arr\":[\"130\"],\"CustomerMemberSysIds\":{\"CustomerSysId\":\"70\",\"CustomerMemSysId\":[\"70\"],\"flight_booking_id\":[\"130\"]},\"CustomerSession\":[{\"AgencySysId\":\"12577\",\"EmailId\":\"bansi.gohil47@gmail.com\",\"Salutation\":\"3\",\"Relation\":0,\"Contacts\":\"08980257320\",\"FirstName\":\"BANSI\",\"LastName\":\"GOHEL\",\"Password\":\"\",\"IsPswExpire\":0,\"CreatedByUserSysId\":\"12577\",\"DOB\":null,\"Address\":\"\",\"CityTitle\":0,\"CitySysId\":0,\"paxType\":\"1\",\"StateOrZoneSysId\":0,\"CountrySysId\":0,\"countryCode\":\"91\",\"RegisterDate\":\"2023-06-03-10-45-06\",\"IsApproved\":0,\"IsActive\":1,\"IsMarkForDel\":\"0\",\"CustomerSysId\":\"70\",\"isgstapply\":0,\"countryCodeISO\":\"IN\"}],\"CustomerMembersSessionArr\":[],\"CustomerSysId\":\"70\",\"CustomerMemSysId\":[\"70\"],\"flight_booking_customer\":[[\"187\"]],\"SearchTraceId\":null,\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Mumbai\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"BOM\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"departure_date\":\"04\\/06\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Chhatrapati Shivaji BOM\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"BOM\",\"from\":\"DEL\",\"to\":\"BOM\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Mumbai, IN - Chhatrapati Shivaji BOM, India\",\"sourceCityId\":7701,\"destinationCityId\":18676,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"04\\/06\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-06-04\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"1375e-3ad5d-14710-ec78a\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-BOM\"},\"genrateFlightQuery\":{\"status\":true,\"arrIds\":{\"MasterTPSysId\":\"720481\",\"TPSysId\":\"720482\",\"VersionId\":[\"213534\"],\"CustomerSysId\":\"411891\",\"TrxId\":\"59254\",\"FareBreakdownid\":[\"378650\"]},\"redirect\":false,\"message\":\"Query Send Successfully.\"},\"sessionData\":{\"CustomerSysId\":\"70\",\"CustomerMemSysId\":[\"70\"],\"flight_booking_id\":[\"130\"]},\"validateCoupon\":null,\"validateData\":null,\"apiData\":{\"AgencySysId\":\"12577\",\"Salutation\":\"3\",\"EmailId\":\"bansi.gohil47@gmail.com\",\"FirstName\":\"BANSI\",\"LastName\":\"GOHEL\",\"CountryCode\":\"91\",\"MobileNo\":\"08980257320\",\"Relation\":9,\"B2B\":false,\"memberDetailArray\":\"[]\"},\"apiDataMember\":[],\"post\":{\"countryCode\":\"91\",\"leadMobile\":\"08980257320\",\"leadEmail\":\"bansi.gohil47@gmail.com\",\"paxType-1\":\"1\",\"familyNumber\":\"1\",\"relation-1\":\"0\",\"CustomerSysId-1\":\"0\",\"salution-1\":\"3\",\"passenger-firstname-1\":\"BANSI\",\"passenger-lastname-1\":\"GOHEL\",\"dateofbirth-1\":\"\",\"PassportNationality-1\":\"IN\",\"passportno-1\":\"\",\"passporIssue-1\":\"\",\"passportnoexpiry-1\":\"\",\"passenger-city-name-1\":\"\",\"passenger-address-1\":\"\",\"passenger-city-1\":\"\",\"passenger-country-1\":\"\",\"gstnnumber\":\"\",\"companyname\":\"\",\"accepttandc\":\"0\",\"gstaddress\":\"\",\"gstemail\":\"\",\"gststate\":\"\",\"gstphone\":\"\",\"traceId\":\"1375e-3ad5d-14710-ec78a\",\"countryCodeISO\":\"IN\"}}','2023-06-03 10:45:21'),(787,'6bf81-d0a4c-6df89-05b64','{\"BookingData\":[{\"bookingId\":\"BKR102566699095\",\"bookingId_TJ\":\"TJ102566699095\",\"FlightNumber\":\"6E-315\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1239736449_2DELCOK6E315_7091138279427\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2023-06-30T05:40\",\"LocalFromTime\":\"2023-06-30 05:40\",\"FromUTCTime\":\"2023-06-30T05:40\",\"LocalToTime\":\"2023-06-30 08:45\",\"ToUTCTime\":\"2023-06-30T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 30 Jun\",\"ArrivalDateTxt\":\"Fri, 30 Jun\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14275,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6173.75,\"PublishedFareTxt\":\"6,174\",\"ApiResultIndex\":\"5-1239736449_2DELCOK6E315_7091138279427\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"FareRuleDetails\":{\"fareRule\":{\"DEL-COK\":{\"fr\":[],\"tfr\":{\"NO_SHOW\":[{\"policyInfo\":\"If Cancelled within 5 hrs of scheduled departure only statutory taxes will be Refunded.\",\"st\":\"0\",\"et\":\"5\"}],\"DATECHANGE\":[{\"amount\":3250,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference if any\",\"fcs\":{\"ARFT\":162.5,\"ARF\":3250,\"CRF\":50,\"CRFT\":9},\"st\":\"5\",\"et\":\"74\"},{\"amount\":2750,\"additionalFee\":50,\"policyInfo\":\"+ Fare Difference if any\",\"fcs\":{\"ARFT\":137.5,\"ARF\":2750,\"CRF\":50,\"CRFT\":9},\"st\":\"74\",\"et\":\"8760\"}],\"CANCELLATION\":[{\"amount\":3500,\"additionalFee\":50,\"fcs\":{\"ACFT\":175,\"ACF\":3500,\"CCF\":50,\"CCFT\":9},\"st\":\"5\",\"et\":\"74\"},{\"amount\":3000,\"additionalFee\":50,\"policyInfo\":\"\",\"fcs\":{\"ACFT\":150,\"ACF\":3000,\"CCF\":50,\"CCFT\":9},\"st\":\"74\",\"et\":\"8760\"}],\"SEAT_CHARGEABLE\":[{\"policyInfo\":\"Paid Seat\",\"st\":\"0\",\"et\":\"8760\"}]}}},\"status\":{\"success\":true,\"httpStatus\":200}},\"FairRules\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5278,\"Tax\":895.75,\"YQTax\":0,\"OtherCharges\":488,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":269,\"CarrierMiscFee\":0,\"MUFee\":121.05,\"intPublishedFare\":6173.75,\"PublishedFare\":6272.11,\"OfferedFare\":6002.56,\"CommissionEarned\":50.14,\"PLBEarned\":0,\"IncentiveEarned\":0,\"TdsOnPLB\":-2.64,\"TdsOnIncentive\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"Refundable\":1,\"IsRefundableTxt\":\"Refundable\",\"PriceID\":\"5-1239736449_0DELCOK6E315_89913423112635\",\"IsGSTRequired\":false,\"fareIdentifier\":\"TACTICAL\",\"FareClass\":\"ECONOMY\",\"intTotalGST\":40.97,\"apiMarkup\":0,\"IntCommission\":1,\"CommisionPass\":49.1372,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":227.58,\"GSTOnMarkUp\":40.97,\"CommEarned\":1,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":\"125.00\",\"AddiTaxOnMarkup\":22.5,\"newFare\":0,\"oldFare\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":895.75,\"BaseFareCal\":6043.53,\"BaseFare\":5278,\"CommissionEarned\":50.14,\"TDS\":-2.64,\"MF\":15,\"YQ\":0,\"AGST\":269,\"MFT\":2.7,\"OT\":488,\"MU\":121.05,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"intTotalGST\":40.97,\"apiMarkup\":0,\"IntCommission\":1,\"apiTaxOnMarkup\":0,\"FixedMarkUp\":227.58,\"GSTOnMarkUp\":40.97,\"CommEarned\":1,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0,\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\"}],\"CancelCharge\":0,\"arrMarkUps\":{\"apiMarkup\":0,\"apiTaxOnMarkup\":0,\"IntNetCommission\":50.14,\"IntCommissionValInPercentage\":2,\"IntCommission\":1,\"IntAgencyFixMarkUp\":227.58,\"IntTaxOnAgencyFixMarkUp\":40.97,\"intGTXMarkUp\":0,\"intSTaxOnGTXMarkUp\":0,\"intTotalGST\":40.97,\"PublishFare\":6272.11,\"CostToCustomer\":6272.11,\"BaseFareCal\":6043.53,\"intCommisionEarnedForAgency\":228.59,\"CostToCompany\":6043.53,\"intOfferedFare\":6002.56,\"intPublishFare\":6173.75,\"TripjackMarkup\":121.05,\"TripjackCommission\":50.14,\"TripjackTDS\":\"2.64\",\"AddiMarkup\":\"125.00\",\"CommisionPass\":49.1372,\"AddiTaxOnMarkup\":22.5,\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1},\"IntAdddimarkup\":125},\"TaxSettingDetail\":{\"TaxName\":\"On Markup\",\"TaxPercentage\":18,\"TaxType\":2,\"Tax\":1}},\"Segments\":[{\"segmentid\":\"858\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-06-30T08:45\",\"SegFlightNumber\":\"6E-315\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-30T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}],\"Baggage\":[{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"IXBA\",\"Price\":800,\"amount\":800,\"Weight\":\"8 Kg International Excess Baggage For Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"XBPE\",\"Price\":1350,\"amount\":1350,\"Weight\":\"3Kg\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"IXBB\",\"Price\":1500,\"amount\":1500,\"Weight\":\"15 Kg International Excess Baggage For Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"XBPA\",\"Price\":2250,\"amount\":2250,\"Weight\":\"5Kg\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"IXBC\",\"Price\":3000,\"amount\":3000,\"Weight\":\"30 Kg International Excess Baggage For Connecting Flights\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"XBPB\",\"Price\":4500,\"amount\":4500,\"Weight\":\"10Kg\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"XBPC\",\"Price\":6750,\"amount\":6750,\"Weight\":\"15Kg\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"XBPJ\",\"Price\":9000,\"amount\":9000,\"Weight\":\"20Kg\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"XBPD\",\"Price\":13500,\"amount\":13500,\"Weight\":\"30Kg\"}],\"Meal\":[{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"CCWT\",\"Price\":250,\"amount\":250,\"Description\":\"Unibic Chocolate Chips Cookies-75\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"SAKD\",\"Price\":300,\"amount\":300,\"Description\":\"Sabudana Khichdi\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"CPML\",\"Price\":300,\"amount\":300,\"Description\":\"Complimentary Meal\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"CNWT\",\"Price\":300,\"amount\":300,\"Description\":\"CASHEW (SALTED) 50 GMS\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"UPMA\",\"Price\":350,\"amount\":350,\"Description\":\"RAVA UPMA Combo\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"POHA\",\"Price\":350,\"amount\":350,\"Description\":\"POHA Combo\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"MUYO\",\"Price\":400,\"amount\":400,\"Description\":\"Muesli with yogurt\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"PBMR\",\"Price\":450,\"amount\":450,\"Description\":\"Paneer Butter masala\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"TCSW\",\"Price\":500,\"amount\":500,\"Description\":\"Tomato Cucumber Cheese Lettuce Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"PTSW\",\"Price\":500,\"amount\":500,\"Description\":\"Paneer Tikka Sandwich Combo\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"CHVM\",\"Price\":500,\"amount\":500,\"Description\":\"KIDDIE DELIGHT -Veg\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"VGTR\",\"Price\":550,\"amount\":550,\"Description\":\"Veg Trio Sandwich\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"NLVG\",\"Price\":550,\"amount\":550,\"Description\":\"Non Lactose meal \\/ 2 Dips with Baked Pita\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"CHNM\",\"Price\":550,\"amount\":550,\"Description\":\"KIDDIE DELIGHT  Non -Veg\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"VLML\",\"Price\":600,\"amount\":600,\"Description\":\"Veg Lactose Meal \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"NVTR\",\"Price\":600,\"amount\":600,\"Description\":\"Non veg trio sandwich\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"LCVG\",\"Price\":600,\"amount\":600,\"Description\":\"Low Calorie Veg \\/Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"GFNV\",\"Price\":600,\"amount\":600,\"Description\":\"Gluten free \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"DBVG\",\"Price\":600,\"amount\":600,\"Description\":\"Diabetic Veg Meal \\/ Paneer Bhatti\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"DBNV\",\"Price\":600,\"amount\":600,\"Description\":\"Diabitic N.Veg \\/ Chicken Supreme Salad\"},{\"Currency\":\"INR\",\"key\":\"858\",\"Code\":\"CJSW\",\"Price\":600,\"amount\":600,\"Description\":\"Chicken Junglee Sandwich Combo\"}],\"isGSTMandatory\":false,\"SearchFlightTraceId\":\"6bf81-d0a4c-6df89-05b64\",\"ICSourceSysId\":7,\"isDobAdult\":false,\"isDobChild\":false,\"isDobInfant\":true,\"isSeatAppli\":true,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-06-23T13:22:51.562\",\"strTraceId\":\"5-1239736449_2DELCOK6E315_7091138279427\",\"arrCommonInsVariables\":{\"strTraceId\":\"\",\"localFromDateTime\":\"2023-06-30 12:00\",\"localToDateTime\":\"1970-01-01 05:30\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14275,\"JourneyType\":2,\"TripType\":\"1\",\"interNationalSearch\":\"\"},\"FilterPrice\":\"\",\"InternationalData\":{\"bookingId\":\"BKR102566699095\",\"bookingId_TJ\":\"TJ102566699095\",\"FlightNumber\":\"6E-315\",\"AirlineName\":\"IndiGo\",\"AirlineCode\":\"6E\",\"AirInvenSysId\":0,\"IsLCC\":true,\"IsMealIncludes\":false,\"IsBagIncludes\":true,\"IsRefundable\":1,\"IsRefundableTxt\":\"Refundable\",\"apiTraceId\":\"5-1239736449_2DELCOK6E315_7091138279427\",\"strTraceId\":\"5-1239736449_2DELCOK6E315_7091138279427\",\"AirlineSysId\":\"267\",\"DepartureTime\":\"05:40\",\"ArrivalTime\":\"08:45\",\"TravelDate\":\"2023-06-30T05:40\",\"LocalFromTime\":\"2023-06-30 05:40\",\"FromUTCTime\":\"2023-06-30T05:40\",\"LocalToTime\":\"2023-06-30 08:45\",\"ToUTCTime\":\"2023-06-30T08:45\",\"IsDirect\":0,\"FareClass\":\"T\",\"LAYOVERCity\":\"\",\"GroundTime\":0,\"LAYOVERDuration\":null,\"FlyingMinutes\":185,\"DepartureDateTxt\":\"Fri, 30 Jun\",\"ArrivalDateTxt\":\"Fri, 30 Jun\",\"FlightDuration\":\"3h 5m\",\"SourcePlaceSysId\":7701,\"DestPlaceSysId\":14275,\"SourceAirportCode\":\"DEL\",\"DestAirportCode\":\"COK\",\"StopCount\":\"Non-stop\",\"Stops\":0,\"NoOfSeatAvailable\":6,\"TotalFlightMembers\":1,\"CurrencyType\":\"1\",\"PublishedFare\":6173.75,\"ApiResultIndex\":\"5-1239736449_2DELCOK6E315_7091138279427\",\"JourneyType\":1,\"TripType\":\"1\",\"IsInternational\":\"\",\"logo\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\",\"SearchFlightTraceId\":\"6bf81-d0a4c-6df89-05b64\",\"ICSourceSysId\":7,\"estimetedTime\":13,\"estimetedDateTime\":\"2023-06-23T13:22:51.562\",\"Fare\":{\"Currency\":\"INR\",\"CurrencyRate\":1,\"currencySysId\":\"1\",\"BaseFare\":5278,\"Tax\":895.75,\"YQTax\":0,\"OtherCharges\":488,\"Discount\":0,\"ServiceFee\":15,\"ManagementFeeTax\":2.7,\"AirlineGSTComponent\":269,\"CarrierMiscFee\":0,\"MUFee\":121.05,\"intPublishedFare\":6173.75,\"PublishedFare\":6272.11,\"OfferedFare\":6002.56,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"FixedMarkUp\":227.58,\"GSTOnMarkUp\":40.97,\"CommEarned\":1,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AddiMarkup\":125,\"AddiTaxOnMarkup\":22.5,\"FareBreakdown\":[{\"Currency\":\"INR\",\"PassengerType\":1,\"PassengerCount\":\"1\",\"TaxIN\":895.75,\"BaseFareCal\":6043.53,\"BaseFare\":5278,\"CommissionEarned\":50.14,\"TDS\":-2.64,\"MF\":15,\"YQ\":0,\"AGST\":269,\"MFT\":2.7,\"OT\":488,\"MU\":121.05,\"YR\":0,\"AddiTaxOnMarkup\":22.5,\"AddiMarkup\":125,\"FixedMarkUp\":227.58,\"GSTOnMarkUp\":40.97,\"CommEarned\":1,\"GSTonComm\":0,\"intGTXMarkUp\":0,\"GTXMarkUpGST\":0,\"AdditionalTxnFeeOfrd\":0,\"AdditionalTxnFeePub\":0,\"PGCharge\":0}]},\"Segments\":[[{\"segmentid\":\"858\",\"originAirportName\":\"Delhi Indira Gandhi Intl\",\"destinationAirportName\":\"Cochin Internation Arpt\",\"originCityName\":\"Delhi\",\"originCountryName\":\"India\",\"destinationCityName\":\"Kochi\",\"destinationCountryName\":\"India\",\"destinationAirportCode\":\"COK\",\"destinationArrTime\":\"2023-06-30T08:45\",\"SegFlightNumber\":\"6E-315\",\"AirlineCode\":\"6E\",\"AirlineName\":\"IndiGo\",\"FareClass\":\"T\",\"originAirportCode\":\"DEL\",\"originDepTime\":\"2023-06-30T05:40\",\"TripIndicator\":\"\",\"Baggage\":\"15 Kg (01 Piece only)\",\"CabinBaggage\":\"7 Kg\",\"IsBaggage\":true,\"IsMealIncludes\":false,\"Duration\":185,\"GroundTime\":0,\"NoOfSeatAvailable\":6,\"strDepartureDtTime\":\"05:40\",\"strArrivalDtTime\":\"08:45\",\"FlightDuration\":\"3h 5m\",\"LAYOVERDuration\":null,\"LAYOVERCity\":\"\",\"DepTerminal\":\"Terminal 1\",\"ArrTerminal\":\"Terminal 1\",\"filePath\":\"https:\\/\\/www.svezz.com\\/public\\/upload\\/AirlineLogo\\/6E.gif\"}]],\"0\":{\"arrCommonInsVariables\":{\"strTraceId\":\"5-1239736449_2DELCOK6E315_7091138279427\",\"localFromDateTime\":\"2023-06-30 05:40\",\"localToDateTime\":\"2023-06-30 08:45\",\"strSourceAirportCode\":\"DEL\",\"strDestinationAirportCode\":\"COK\",\"intMemberCount\":1,\"intSourceCityId\":7701,\"intDestinationCityId\":14275,\"JourneyType\":2,\"TripType\":1,\"interNationalSearch\":\"\"}}}}],\"sessionFlightSearchParams\":{\"module\":\"default\",\"controller\":\"flight\",\"action\":\"flightsearchdata\",\"route\":\"1\",\"mytrip_city_from\":\"Delhi\",\"mytrip_city_to\":\"Kochi\",\"source_city\":\"DEL\",\"ContSysId_1\":\"101\",\"destination_city\":\"COK\",\"ContSysId\":\"101\",\"source\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destination\":\"Kochi, IN - Cochin Internation Arpt COK, India\",\"departure_date\":\"30\\/06\\/2023\",\"return_date\":\"\",\"from_mytrip_city\":\" IN - Delhi Indira Gandhi Intl DEL\",\"to_mytrip_city\":\" IN - Cochin Internation Arpt COK\",\"adults\":\"1\",\"childs\":\"0\",\"infants\":\"0\",\"class\":\"2\",\"interNationalSearch\":false,\"sourceCityAirportCode\":\"DEL\",\"destinationCityAirportCode\":\"COK\",\"from\":\"DEL\",\"to\":\"COK\",\"sourceCityText\":\"Delhi, IN - Delhi Indira Gandhi Intl DEL, India\",\"destinationCityText\":\"Kochi, IN - Cochin Internation Arpt COK, India\",\"sourceCityId\":7701,\"destinationCityId\":14275,\"intCountryCode\":\"IN\",\"flight_class\":\"2\",\"child\":\"0\",\"infant\":\"0\",\"departure_dates\":\"30\\/06\\/2023\",\"return_dates\":\"\",\"strDepatureDate\":\"2023-06-30\",\"strReturnDate\":null,\"SearchFlightTraceId\":\"6bf81-d0a4c-6df89-05b64\",\"PreferredAirline\":null,\"from_city_\":\"1__DEL-COK\"}}','2023-06-23 13:21:32');
/*!40000 ALTER TABLE `tbl_temp_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_testimonials`
--

DROP TABLE IF EXISTS `tbl_testimonials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_testimonials` (
  `id` int NOT NULL AUTO_INCREMENT,
  `AgencySysId` int NOT NULL,
  `name` varchar(16) NOT NULL,
  `message` text NOT NULL,
  `Image` varchar(100) NOT NULL,
  `status` enum('1','0') NOT NULL DEFAULT '1',
  `IsFeatured` int NOT NULL,
  `created_at` datetime NOT NULL,
  `star_rating` varchar(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_testimonials`
--

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

--
-- Table structure for table `tbl_token`
--

DROP TABLE IF EXISTS `tbl_token`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_token` (
  `id` int NOT NULL AUTO_INCREMENT,
  `token` varchar(200) NOT NULL,
  `AgencySysid` int NOT NULL,
  `AgencyId` int NOT NULL,
  `MemberId` int NOT NULL,
  `authresponse` varchar(500) DEFAULT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_token`
--

LOCK TABLES `tbl_token` WRITE;
/*!40000 ALTER TABLE `tbl_token` DISABLE KEYS */;
INSERT INTO `tbl_token` VALUES (1,'1ea61748-b77d-4c3f-9cf3-02581ee9d16a',12728,9216,10342,'{\"Status\":1,\"TokenId\":\"1ea61748-b77d-4c3f-9cf3-02581ee9d16a\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 7\\/6\\/2022 4:29:14 PM #@ IPAddress: 115.114.12.58\",\"isPrimaryAgent\":false}}','2022-07-18 17:56:34'),(2,'b3ac910d-687c-4818-9ec5-6e87d53deebe',16498,9216,10342,'{\"Status\":1,\"TokenId\":\"b3ac910d-687c-4818-9ec5-6e87d53deebe\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 8\\/25\\/2022 10:02:48 AM #@ IPAddress: 223.233.67.183\",\"isPrimaryAgent\":false}}','2022-08-26 18:12:11'),(3,'30fe0a52-b558-47aa-81c7-e722fa7f7f28',13985,9216,10342,'{\"Status\":1,\"TokenId\":\"30fe0a52-b558-47aa-81c7-e722fa7f7f28\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 8\\/25\\/2022 10:02:48 AM #@ IPAddress: 223.233.67.183\",\"isPrimaryAgent\":false}}','2022-08-26 19:52:51'),(4,'c105d4a3-ecee-41da-9383-97d6e7857cb2',13985,9216,10342,'{\"Status\":1,\"TokenId\":\"c105d4a3-ecee-41da-9383-97d6e7857cb2\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 8\\/29\\/2022 12:36:44 PM #@ IPAddress: 180.151.10.154\",\"isPrimaryAgent\":false}}','2022-08-29 14:11:21'),(5,'92f85e14-59bc-4c7d-a652-bf4cdb05d2d1',16498,9216,10342,'{\"Status\":1,\"TokenId\":\"92f85e14-59bc-4c7d-a652-bf4cdb05d2d1\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 8\\/31\\/2022 6:31:05 PM #@ IPAddress: 223.233.69.80\",\"isPrimaryAgent\":false}}','2022-09-02 14:20:44'),(6,'e4ebce0e-bf47-44ee-b12d-6d98042ce88a',13985,9216,10342,'{\"Status\":1,\"TokenId\":\"e4ebce0e-bf47-44ee-b12d-6d98042ce88a\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 9\\/8\\/2022 10:27:49 AM #@ IPAddress: 223.233.79.226\",\"isPrimaryAgent\":false}}','2022-09-08 12:09:39'),(7,'edb5da67-4b81-4331-b0bd-ad5c5efa1ea5',19895,9216,10342,'{\"Status\":1,\"TokenId\":\"edb5da67-4b81-4331-b0bd-ad5c5efa1ea5\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 9\\/8\\/2022 10:27:49 AM #@ IPAddress: 223.233.79.226\",\"isPrimaryAgent\":false}}','2022-09-09 16:14:21'),(8,'45fe1a2d-897e-444f-9ad6-f30edec72a62',12728,9216,10342,'{\"Status\":1,\"TokenId\":\"45fe1a2d-897e-444f-9ad6-f30edec72a62\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 9\\/8\\/2022 10:27:49 AM #@ IPAddress: 223.233.79.226\",\"isPrimaryAgent\":false}}','2022-09-13 15:48:44'),(9,'829f6dc5-5db7-4dbb-8b50-1db8a5c2ec82',12577,9216,10342,'{\"Status\":1,\"TokenId\":\"829f6dc5-5db7-4dbb-8b50-1db8a5c2ec82\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 11\\/3\\/2022 5:13:53 PM #@ IPAddress: 223.233.73.187\",\"isPrimaryAgent\":false}}','2022-11-08 10:21:15'),(10,'a92c9a69-069f-4cb1-84b7-321d24838671',12577,9216,10342,'{\"Status\":1,\"TokenId\":\"a92c9a69-069f-4cb1-84b7-321d24838671\",\"Error\":{\"ErrorCode\":0,\"ErrorMessage\":\"\"},\"Member\":{\"FirstName\":\"Gaurav\",\"LastName\":\"Kumar Gupta\",\"Email\":\"apitest@test.com\",\"MemberId\":10342,\"AgencyId\":9216,\"LoginName\":\"tripshows\",\"LoginDetails\":\"Login Success at#@ 11\\/3\\/2022 5:13:53 PM #@ IPAddress: 223.233.73.187\",\"isPrimaryAgent\":false}}','2022-11-12 14:59:33');
/*!40000 ALTER TABLE `tbl_token` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tbl_token_goflysmart`
--

DROP TABLE IF EXISTS `tbl_token_goflysmart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_token_goflysmart` (
  `id` int NOT NULL AUTO_INCREMENT,
  `api_source` varchar(100) NOT NULL,
  `token` text,
  `balance` float NOT NULL DEFAULT '0',
  `expires_in` varchar(200) DEFAULT NULL,
  `login_response` text,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_token_goflysmart`
--

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

--
-- Table structure for table `tbl_train`
--

DROP TABLE IF EXISTS `tbl_train`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_train` (
  `sid` int NOT NULL AUTO_INCREMENT,
  `page_title` varchar(225) NOT NULL,
  `identifier` varchar(255) NOT NULL,
  `url` varchar(100) NOT NULL,
  `background_image` varchar(100) NOT NULL,
  `status` enum('Activate','Deactivate') NOT NULL DEFAULT 'Activate',
  `createdOn` datetime NOT NULL,
  `updatedOn` datetime NOT NULL,
  `selectedPackages` text NOT NULL,
  PRIMARY KEY (`sid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_train`
--

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

--
-- Table structure for table `tbl_travelogues`
--

DROP TABLE IF EXISTS `tbl_travelogues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tbl_travelogues` (
  `TravId` int NOT NULL AUTO_INCREMENT,
  `TravTitle` varchar(255) NOT NULL,
  `TravIdentifier` varchar(256) NOT NULL,
  `TravImage` varchar(255) NOT NULL,
  `TravBannerImage` varchar(255) DEFAULT NULL,
  `TravDestination` varchar(1000) DEFAULT NULL,
  `TravUploadedBy` varchar(255) NOT NULL,
  `TravDate` date NOT NULL,
  `TravDays` int DEFAULT NULL,
  `TravTraveller` int DEFAULT NULL,
  `TravCost` int DEFAULT NULL,
  `TravDescription` longtext NOT NULL,
  `TravDestinationId` varchar(500) DEFAULT NULL,
  `CreateDate` datetime NOT NULL,
  `UpdateDate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `TravMultiImage` text,
  `status` tinyint DEFAULT '0',
  `tags` varchar(100) DEFAULT NULL,
  `displayOnBanner` tinyint NOT NULL DEFAULT '0',
  `isMarkForDel` tinyint DEFAULT '0',
  `keyword` text,
  `description` text,
  `metatag` text,
  `selectedPackages` text,
  `category` int DEFAULT NULL,
  `BlogDescription` text NOT NULL,
  PRIMARY KEY (`TravId`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tbl_travelogues`
--

LOCK TABLES `tbl_travelogues` WRITE;
/*!40000 ALTER TABLE `tbl_travelogues` DISABLE KEYS */;
INSERT INTO `tbl_travelogues` VALUES (1,'Singapore','singapore','1654152535_blog.png','1654152535.jpg',NULL,'Komal','2022-05-04',NULL,NULL,NULL,'<p>jbkjsabkabdsakjs</p>',NULL,'2022-06-02 12:18:56','2022-06-02 12:18:56',NULL,1,'',1,1,'','','','[\"35\",\"34\",\"33\",\"32\",\"31\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":null,\"detailPackages\":[\"\"]}'),(2,'Honeymoon','honeymoon','1658132535_blog.jpg','1658132535.jpg',NULL,'Komal','2022-07-03',NULL,NULL,NULL,'<p>Test</p>',NULL,'2022-07-18 13:52:15','2022-07-18 13:52:15',NULL,1,'',1,1,'','','','[\"37\",\"36\",\"35\",\"34\",\"33\",\"32\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(3,'Tricks To Find Cheap Flights','tricks-to-find-cheap-flights','1662716335_blog.jpg','1662716335.jpg',NULL,'Ritu','2022-08-23',NULL,NULL,NULL,'<h1 dir=\"ltr\" style=\"line-height:1.295;margin-top:12pt;margin-bottom:0pt;\"><span style=\"font-size:16pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">7 Easy Tricks to Book Cheap Flight Tickets</span></h1><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Finally, the answer to the million-dollar question of how to book flight tickets cheaper is revealed.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">We as a travel company are always bombarded with questions like how to get cheap flight tickets. When should I buy one for the cheapest flight rates? Are cheap flight tickets safe? And so on. So, finally, we have decided to unravel the mystery behind this.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">After a lot of research (and of course, some inside knowledge), we have come up with these 7 easy tricks to help you find the cheapest air tickets. Let’s dig in!</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Forget About the Myths</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Before we even start our wonderful journey together, let’s get rid of some of the long-believed myths.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Although, once upon a time, they use to come in handy. But technologies changed, algorithms changed, and so did the travel search engines. So, right now, they are simply lies that will lead you astray.</span></p><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There’s nothing called CHEAP TUESDAYS for airline tickets.</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">NO evidence shows booking flight tickets in Incognito mode can reduce air ticket prices.</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You CAN NOT predict airline tickets in advance.</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The airline tickets depend on the current market status and other connecting factors. Some of them include the time of the year, festivals, major events, weather, fuel prices, etc.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">In short, forget all about the myths that you have heard till now. And start fresh!</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"2\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Start Searching Early</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">When we say early, we don’t mean years in advance. But still, start searching for flights as soon as you have dates and place finalized.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Thumb Rule: The more you wait to book the flights, the higher the price will go. So, book at the earliest.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Yet, if somehow, you have made a last-minute plan for a vacation or a trip, check our </span><a href=\"https://www.svezz.com/?click=flights\" style=\"text-decoration:none;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#0563c1;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">flight tickets</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">. We provide the cheapest option in the market when it comes to last-minute bookings.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"3\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Be Flexible with Dates/Places</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It is nothing new, but we have to say it – be flexible with dates if you are looking for cheap flight bookings.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The rates vary depending on various factors. Like festivals, time of year, a surge in searches, and many more. So, if you can, then try to check prices for the whole week before you book the tickets.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Also, tourist places see a surge in visitors during their peak season. This can cause a rise in air ticket rates. At such times, try looking for an alternative that offers better prices.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"4\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Look for Non-Surge Days</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It’s a known fact, but we still tend to forget that weekend tickets are pricey.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Many people are looking to travel during the weekends. And this causes a surge in airline ticket prices. So, the best way to book cheap tickets is to look for non-surge days.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Book for Tuesday, Wednesday, or Thursday – or any other day that suits you.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Insider Tip: Don’t wait for long weekends to travel. The place will be overcrowded and you will have less fun. Rather take a couple of leaves and visit the place for the best experience.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Also, read our blog on how to plan a budget trip to make the travel pocket-friendly. </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#ff0000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(Add the link to the blog here once it is published)</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"5\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Budget Airlines Work the Best</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are looking for domestic travel, our best bet is to befriend budget airlines.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Although, they do charge for a cup of coffee too. But isn’t paying 1K – 2K extra for luxury too much? We are sure you can go without some coffee for a 2hr journey.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">In short, if you are thinking budget, then it’s best to let go of the luxury and convenience.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"6\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Book Connecting Flights</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This tip better works for long flights, especially if you are planning for a longer vacation.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">When we say connecting flights, we do not mean the same day with 4 hours of layover. We mean to plan your vacation in a way that you can enjoy a 2-3 days layover. And then move to the final destination.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There are many flight routes where this works wonders. However, make sure that you do the homework before playing this tricky game.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"7\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">How About Redeeming the Miles</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This isn’t for everyone, but anyone out there with a credit card and travel points should definitely think about this.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It is better to redeem the miles for booking flights at no extra expense at all. Not sure if your credit card offers this feature? It’s time to talk to the company if you are a regular traveler.</span></p><p><span style=\"background-color: transparent; color: rgb(31, 56, 99); font-family: Calibri, sans-serif; font-size: 12pt; white-space: pre-wrap;\">Bonus Tip: Join Our Premium Account for Cheap Flight Tickets</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">SVEZZ has different sets of prices for our loyal customers. So, if you are a regular flyer, reach out </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#ff0000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">(link this to the premium account in the future) </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">to us for this special feature.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You can always find the best prices in the market irrespective of when you book. Just make sure that you book before the seats run out.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">Final Takeaway</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Yes. It is possible to book cheap flight tickets. It is safe when you buy these tickets. And finally, you can get the cheapest air tickets on our website.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Don’t trust me? Well, compare and see for yourself. And once you are done, do not forget to book at the earliest to reserve the tickets before the seats run out.</span></p><p></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Till next time, Stay Safe and Keep Traveling!</span></p><div><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></div>',NULL,'2022-08-23 13:14:11','2022-08-23 13:14:11',NULL,1,'',1,1,'','We have compiled a series of tips to help you book the cheapest flight tickets for your travel. Take a look at these tips to make the tour budget-friendly.','Easy Tips to Book Cheap Flight Tickets','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(4,'SVEZZ – Your New Buddy for All Future Tours and Travel Plan','svezz-–-your-new-buddy-for-all-future-tours-and-travel-plan','1662716190_blog.jpg','1662716190.jpg',NULL,'Ritu','2022-08-27',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:italic;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">‘Traveling – it leaves you speechless, then turns you into a storyteller’</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A famous quote by a famous explorer explains exactly what travel is all about. A beautiful journey that leads to a gorgeous destination. But that’s only possible when you plan a perfect trip. And that’s where SVEZZ – the new-age travel agency comes into the picture.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">We are full of enthusiasm, spunk, and attractive travel offers. Let it be the cheapest air ticket, best hotel, or complete travel package, we have everything in our armor.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, let’s ignore this chit-chat and dive straight into the juicy part of what we have special to offer you guys.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">Cheapest Air Ticket in Market</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">When we say cheapest, it means you can compare all you want over the Internet, and we will still be the only one offering the best air ticket booking prices for that flight route.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">That’s not all, we also have different categories of air ticket booking categories that can make the price cheaper for you. For example, if you are going to carry only one cabin bag, then why pay extra for check-in baggage?</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Our rule is, just pay for the services you are going to need. And so, we have different categories while booking flight tickets.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Planning to book a flight ticket? </span><a href=\"https://www.svezz.com/?click=flights\" style=\"text-decoration:none;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#0563c1;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Check the lowest fares here</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> before comparing them with others.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">Best Hotel Options (In Every Range)</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The next feature, though common, comes very handy when you plan your overall trip. For example, if you are looking for a budget tour, then definitely you would want to have access to some budget-friendly good options.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; font-size: 11pt; font-family: Calibri, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Otherwise, you can also take a </span><a href=\"https://www.svezz.com/?click=hotels\"><span style=\"font-size: 11pt; font-family: Calibri, sans-serif; color: rgb(5, 99, 193); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline; white-space: pre-wrap;\">look at luxurious resorts and hotels</span></a><span style=\"background-color: transparent; font-size: 11pt; font-family: Calibri, sans-serif; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"> for your stay. And use the money that you saved on flight tickets here.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">You can also take a look at our guideline which has a lot to say about booking a place in a particular neighborhood for attractive deals and an amazing travel experience.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-size: 13pt; font-family: inherit; white-space: pre-wrap;\">Nationwide Tourism Packages</span><br></p><div><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><span id=\"docs-internal-guid-ce6678cf-7fff-30eb-0290-257f0eee6438\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;\">When it comes to travel and tourism, we have got something for everyone. We have themed tourist places. In short, it doesn’t matter whether you belong to the backpackers’ club, explorer, or simply a tourist enthusiast. We have got the perfect travel destinations in India for you.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;\">Some of the options we have are night-stays, weekend trips, romantic getaways, and even extended vacations. Want to know more about our domestic packages? </span><a href=\"https://www.svezz.com/tour-destination/domestic-tour-packages.html\"><span style=\"font-size: 11pt; color: rgb(5, 99, 193); background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; text-decoration-line: underline; text-decoration-skip-ink: none; vertical-align: baseline;\">Check here</span></a><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;\"> to begin your search.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-size: 13pt;\">Some Off-The-Chart International Holiday Packages</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Looking for international holidays? We are the best travel agency in town to plan it out for you. We don’t only cover the popular tourist destinations, but we also have some off-the-road tourism plans for the travel freak guys.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;\"><span id=\"docs-internal-guid-dfc65133-7fff-7d09-b5c0-bf82a8678131\"></span></span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">While browsing </span><a href=\"https://www.svezz.com/tour-destination/international-tour-packages.html\" style=\"text-decoration:none;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#0563c1;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">international tourism packages</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, do not forget to check guidelines as well as travel restrictions for that specific location on our website.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-size: 13pt;\">Our Own Travel Tips, Planning, Preparation, And Many More</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The last but our very favorite feature we have to offer you is the full-of-life blogs section. In this section, you will be able to explore everything related to tourism and travel.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Let it be a checklist, destinations, themes, best places to visit, or anything else related to travel, we have those all covered here for you.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Lastly, once again we welcome you to this world of ours. If you are wondering what you have to do to join our SVEZZ family, the answer is to subscribe. And we will let you know all the latest gupshup, travel tips, and the latest discounts running.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><span id=\"docs-internal-guid-28137a09-7fff-c260-78ac-d2415b8cd1da\"></span></span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Till next time, Stay Safe and Keep Traveling!</span></p><div><span style=\"font-size: 11pt; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline;\"><br></span></div></span></span></div>',NULL,'2022-08-27 17:48:44','2022-08-27 17:48:44',NULL,1,'',1,1,'','SVEZZ is your new travel buddy that offers the best offers on tours and travel. We provide the cheapest tickets, the best hotel prices, and perfect holiday packages.','A New Travel Partner In The Market','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(5,'3 Must Visit Lakshadweep Islands for Romantic Holidays','3-must-visit-lakshadweep-islands-for-romantic-holidays','1661836668_blog.webp','1661836668.webp',NULL,'Ritu','2022-08-30',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Known for its serenity and pristine nature, Lakshadweep is a safe place for couples looking for some quiet and quality time together.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The untouched beauty of this place is what attracts tourists to this place. And not to forget the raw beauty of nature and the different landscapes you can explore here. This place has something to offer everyone. Whether you are a power couple who loves some treks or a laid back couple who prefers time sightseeing, this place has everything.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are looking for a quiet romantic holiday or a honeymoon in Lakshadweep, you would be definitely looking for something unique and special. That’s why we have compiled a list of three islands that you must include in your plan for memorable holidays.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Let’s dig in!</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Agatti Island</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are looking for some modern amenities and luxury holidays, Agatti island is the place for you. This is the only place where you will find modern-day amenities and some crowd.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It is also one of the easiest places to reach. As your flight will directly land in this city. And this is also the reason why most of the Lakshadweep honeymoon packages include Agatti in their itinerary.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It is the best place to give a boost to your adrenaline with activities like snorkeling. You also will be able to witness the rich marine life with glass-bottomed boat life.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">What’s more? This place gives you the space as well as the security to stroll around in beautiful lagoons to create some wonderful moments together.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Accommodation Options –</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This island has a variety of accommodation options for you. Right from home stays to luxurious resorts, you can find everything here. Check the most affordable hotels in Lakshadweep before making your plans for romantic getaways.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"2\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bangaram Island</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The next on our list is the island that boasts of a variety of coral reefs. Just an hour-long boat ride from the main lands of Agatti, you will be able to reach this place. Or else, you can also opt for a 10-minute helicopter ride. In both cases, you will be able to soak in the mesmerizing view of the Lakshadweep islands.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The colorful and exotic coral reefs make this place a perfect place for scuba diving adventures. Plus, the waters are very calm here making it a great option to witness the marine life around the area.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The best way to have a hassle-free scuba diving experience is to include it in your Lakshadweep holiday package.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Accommodation Options –</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This is a relatively calm and peaceful place with less crowd around. It gives you a very serene vibe to unwind after adrenaline-filled activities. Plus, this also offers you the perfect time to spend some healthy time with your partner.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">In Bangaram Islands, you can find beach cottages options as well as resorts nearby for a complete honeymoon package.</span></p><ol style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\" start=\"3\"><li dir=\"ltr\" style=\"list-style-type:decimal;font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kavaratti Island</span></h2></li></ol><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The specialty of these islands is the endless lagoons with coconut groves. This is the place if you want to explore nature trails along with the sea experience.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Kavaratti is the most developed island and also the capital of this union territory. So, you can easily come across many water sports options including jet skiing, parasailing, and many more.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This place is also home to make sightseeing options like the marine aquarium, Urja Mosque, and many more.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Accommodation Options –</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Being the most developed place, you have many options to stay while you are here. Right from beach resorts to home stays cocooned in nature, you can find it all.</span></p><p><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">These three islands are your must-include for a romantic getaway holiday. If you want a better planned holiday, check out our Lakshadweep packages to get a custom memorable holiday for you.</span><br></p><p></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:10.5pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Till next time, Stay Safe and Keep Traveling!</span></p><div><span style=\"font-size:10.5pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></div>',NULL,'2022-08-30 10:47:48','2022-08-30 10:47:48',NULL,1,'',1,1,'','Are you planning a romantic holiday in Lakshadweep Islands? Don’t forget to add these 3 islands to make the trip cozy and memorable for you and your partner.','3 Must Visit Lakshadweep Islands for Your Next Romantic Trip','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(6,'5 Useful Tips To Pack Like A Pro For Next Holidays','5-useful-tips-to-pack-like-a-pro-for-next-holidays','1662715856_blog.jpg','1662715856.jpg',NULL,'Ritu','2022-09-06',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Planning for a vacation is the most exciting thing in our tedious life. But packing for one feels equally dreadful. Just the thought of packing and deciding ‘what to carry’ and ‘what not to’ gives a headache. And even after careful packing, one definitely ends up missing more than one essential.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">To make this task a little easier and make you a pro, we have some tips up our sleeves for you. So, follow these small rules, and you’ll be thankful that you stumbled upon this blog once upon a time.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Let’s dig in!</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">1. Start With a Holidays Checklist</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Making a list beforehand gives you ample time to think, decide, and revisit the list again. So, your first step should be to make a general holiday checklist.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Add all of the essentials that you need – even for a weekend trip. This will ensure that next time, you don’t miss your facewash, sunglasses, or the funky hat you got for the holidays.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">2.Make A Packing List</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Now, you may wonder what’s the difference between a holiday checklist and a packing list. Well, this is each vacation plan specific.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Where the above one was in general, this one would be more specific.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">For example, going to the snowy Himalayas, you need to add warm wear, cold creams, and your boots. Whereas, if you are planning for the sandy, then you will need your swimsuit, sunscreen, and some flip-flops.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">3.Visualize &amp; Coordinate</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Next comes your clothes. The best way to arrange these is to have a handy itinerary handy. Once you know what you are going to do and when you can visualize your holidays.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Now, imagine what you would like to wear every single day. And pack accordingly. For example, if you are planning to go for a clubbing night, make sure you pack from dress to heels. The same goes for the guys, you will need your dress pants and dressy shoes handy for the night.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">4.Packing Tricks</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Some packing tricks for storing more items in less space.</span></p><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\">&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#1f3863;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Keep Earphones &amp; Cables in A Case to Avoid Tangling</span></h3><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">We usually end up stuffing these electronic cables and devices in our backpacks. The result? Everything gets tangled up. Solution? Pack them in a case.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you don’t have a case handy, use your sunglasses case as a substitute. The small case fits anywhere and can be quickly retrieved when needed.</span></p><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\">&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#1f3863;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Use Pill Container for Packing Accessories</span></h3><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">It is nearly impossible to carry your heavy, antique jewelry box on your vacation. So, the alternative is to carry your jewelry in the pill container.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The small sections make it easy to store all those glittery earrings and bracelets. And still, keep them separate without messing up.</span></p><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\">&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:12pt;font-family:Calibri,sans-serif;color:#1f3863;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Roll Clothes Rather Than Folding Them</span></h3><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Another trick is to roll the clothes instead of folding them. It takes less space in your bag and stays wrinkled free too. This is true, especially with your t-shirts and light pants.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">5.Carry Medicines &amp; Prescriptions Together in Cabin Bag</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The last tip is to carry any medicines and their prescriptions together in your cabin bag. This will help when you travel by air or at any checking point.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This tip also helps you keep the medicines handy in case you need them at any point.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></p><p><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">When are you planning your next trip? Don’t forget to check these international destinations where you can go without much Visa preparation.</span><br></p>',NULL,'2022-09-06 18:41:02','2022-09-06 18:41:02',NULL,1,'',1,1,'','Tired of missing out on essentials while packing for a vacation? Here are 5 tips that will help you to pack for your next vacation like a pro. We walk you through the entire process to help you with holiday packing.','5 Useful Tips to Pack for Next Holidays','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(7,'7 International Destinations for A Quick Last-Minute Holiday Plan','7-international-destinations-for-a-quick-last-minute-holiday-plan','1662715660_blog.jpg','1662715660.jpg',NULL,'Ritu','2022-09-06',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Whenever we make a last-minute plan, we always end up choosing domestic destinations. It is mostly because people aren’t aware of international destinations that don’t need months of preparation. That’s why we have come up with a list of the perfect international destinations for all your last-minute holiday plans. </span><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">So, let’s dig in!</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">1.Thailand</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">One of the famous and everyone’s favorite countries is surprisingly easily accessible to Indians. With pristine beaches, mouth-watering food, and fascinating nightlife, this place is a perfect hub for bachelors.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">But recently, Thailand is also gaining its admirers in couples. With Phuket and Pattaya just beside the main lands and included in the same package, this country has become a go-to honeymoon destination for newlyweds too.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Places To Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Chiang Mai, Bangkok, Phuket, Railay Beach, Phang Nga, and Similan Islands Marine National Park.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things To Do: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sightseeing, Nightlife, Swimming, Massages, and Shopping</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa Condition: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa on Arrival available for 60 days</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">November to April</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">2.Nepal</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Favored by the excellence of mountains, the Himalayan neighbor of India is yet another Visa-free option for Indians. Nepal is ideal for all adventure junkies. So, if your vacation rhymes with trekking and bungee jumping, then this place is for you. This country is also a center for religious trips for Hindus who keep on completing their Char Dham Yatra.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Places To Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Mount Everest, Bhaktapur, Kathmandu, Pokhara, and Nagarkot.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things To Do: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sightseeing, high climbing, trekking, and sanctuary touring.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa Condition: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Not Required</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">September to November</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">3.Bhutan</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">One of the best options is our neighbor country, Bhutan. Crowned as one of the happiest nations on the planet, you can visit this place to get some joyful vibes too. The country is famous for its natural life and vegetation. So, if you are a fan of mountains, greenery, forests, and nature, then this is the place for you.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Places To Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Paro, Dochula Pass, Thimphu, Chomolhari&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things To Do: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sightseeing, trekking, and sanctuary touring.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa Condition: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Not Required</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">October to December</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">4.Seychelles</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">With white sandy beaches, various landscapes, and topaz water, Seychelles is a country right out of the postcard. The tranquility you find here is none to others, especially with the country being still under the covers. The only condition for visiting this country is to book a two-way ticket, and the country will welcome you with open arms.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Places To Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Anse Lazio, Anse Intendance, Baie Lazare, La Digue Island, Curieuse Island Day Trip, and Seychelles National Botanical Gardens.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things To Do: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sightseeing, Island Hoping, Hiking Trails, Rock Climbing, and Scuba Diving and Snorkeling.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa Condition: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Not required</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">April to May or October to November</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">5.Hong Kong</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A mix of urban communities, Hong Kong is the perfect long weekend destination for travelers. Indians have started flocking this tourist destination quite often in recent years – thanks to its Visa on Entry policy. The only catch is to make a prior registration to assure your Visa on arrival.&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Places To Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Disney Land, Lantau Island, Victoria Pinnacle, Sea Park, Victoria Harbor, and Pinnacle Cable car.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things To Do: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sightseeing, Disney World, Shopping, Experience Sports, and Climbing.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa Condition: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa on entry available for 14 days</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">October to December</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">6.Mauritius</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A country with beautiful shorelines and different ethnicities, Mauritius is the perfect place to find a blend of Dutch, French, and English settlements.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The white sandy shorelines and impeccable coral reefs are none other in the world. And especially within reach distance from India, Mauritius is a great place to explore without much crowd as in Maldives or Bali.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Places To Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Mauritius Professional Flowerbed, Île aux Cerfs Island, Dark Stream Crevasses National Park, and Rodrigues Island.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things To Do: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Swimming, Shoreline Life, Remote Ocean Plunging, Trekking, and Angling.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa Condition: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa on entry available for 60 days</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">May to December</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">7.Macau</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Considered as Las Vegas of Asia, you can definitely plan a quick bachelor party in Macau. It is a piece of the Chinese Sovereign that offers rich flavors of excursion. The place is nicely cocooned between coastlines on different sides and gambling clubs. So, if you feel you are lucky enough, go and try your luck here.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Places To Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The Venetian, Senado Square, Macau Tower, Remains of St. Paul, Macau Exhibition Hall, and A-Mama Sanctuary</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Things To Do: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Sightseeing, Shopping, Experience Sports, UNESCO World Legacy destinations, and Gambling clubs.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa Condition: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Visa on entry available for 30 days</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Best Time to Visit: </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">September to December</span></p><p><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\"><br></span></p><p><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">Which is your favorite among these? And let us know where you are planning to go first to explore the foreign lands.</span><br></p><p></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:10.5pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Till next time, Stay Safe and Keep Traveling!</span></p><div><span style=\"font-size:10.5pt;font-family:Calibri,sans-serif;color:#000000;background-color:#ffffff;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></div>',NULL,'2022-09-06 18:49:56','2022-09-06 18:49:56',NULL,1,'',1,1,'','Looking to plan a foreign trip at the last minute but worried that you wouldn’t get Visa on time? Check these countries to plan your international holidays without prior visa arrangements.','7 International Destinations for Quick Holidays','',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}'),(8,'Top 7 Things You Must Do While Visiting the Rann of Kutch','top-7-things-you-must-do-while-visiting-the-rann-of-kutch','1663307459_blog.jpg','1663307459.jpg',NULL,'Ritu','2022-09-16',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">Rann of Kutch is a region in India, located at the border between Gujarat and Rajasthan states, where the desert meets the sea. The area has a rich cultural heritage and offers visitors a chance to experience the local lifestyle.</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, the next time you plan to visit this western part of India, do not forget to try out these 7 things in the Rann of Kutch.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Let’s dig in!</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">1. Explore the Ancient Salt Mines</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The salt mines of Bhimber, located about 40 km from Bhuj, are a great place to explore and get a feel for how people have lived in the area for centuries.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The entire stretch of Rann of Kutch is a gigantic white salt desert. Witness the magnificence of this place and explore the beauty you will get nowhere else to see.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">2. Visit the Beautiful Desert City of Bhuj</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Located at the edge of the Thar Desert, Bhuj is a small town in the state of Gujarat, India. It is known for its old fort and narrow streets lined with shops selling local produce.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Although you will have to travel a bit, the journey is worth the experience.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">3. Go trekking&nbsp;</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Trekking is the best way to experience nature\'s beauty. Rann of Kutch is famous for being the only flooded grassland zone in the Indomalayan realm.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">This area has deserts, seas, mangroves, grasslands, and everything in between to explore. And the best way to do that is by trekking.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">4. Go Sightseeing</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">There are many Hindu temples in the region. The temple towns of Mahuva and Mandviwala are particularly famous.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You can visit the famous fort of Bhujia. Built by the Rao Godji, this fort is famous for its event of Nag Panchami.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You can also learn the history of the place at the Kutch Museum at Bhuj. Or simply spend your day in the open spaces of Prag and Aina Mahal at Bhuj.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">5. Watch the sunset over the Arabian Sea</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The view of the sun setting over the Arabian Sea is breathtaking. Head to the beachside and watch the sun dip below the horizon.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">6. Enjoy the camel rides</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Camel riding is a popular activity among tourists who visit the region. You can take a ride around the desert and get a feel for how locals live.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Camel rides are offered in many places throughout the region. You can experience it anywhere irrespective of the place you stay in.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">7. Shop till you drop</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you love shopping, then you\'ll have no trouble finding what you need in the markets. From clothes to spices, you\'ll find anything here.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Bhuj is famous for its bazaars, where you\'ll find everything from gems to clothes. So, complete your trip with some souvenirs, love, special moments, and a lot of memories.</span></p><p><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\"><br></span></p><p><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">These are some things you shouldn’t miss when you are in the Rann of Kutch. And if you still have some time on your hand, then stroll along the wide shorelines of the beaches. These pristine beaches have a different vibe to them.</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">When are you planning your trip to the Rann of Kutch? Book the family holiday packages at the earliest to enjoy this wonderful cozy season in the Rann of Kutch.</span></p><div><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"><br></span></div>',NULL,'2022-09-16 11:21:00','2022-09-16 11:21:00',NULL,1,'',1,1,'','Usually associated with deserts and festivals, there’s more to Rann of Kutch. So, next time you plan to visit this western part of India, do not forget to try out these 7 things in Rann of Kutch.','Top 7 Things You Must Do While Visiting the Rann of Kutch','[\"64\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":null,\"detailPackages\":[\"\"]}'),(9,'Top 7 Things You Should Not Miss When in Dubai','top-7-things-you-should-not-miss-when-in-dubai','1663308149_blog.jpg','1663308149.jpg',NULL,'Ritu','2022-09-16',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">Dubai is known for its luxury shopping malls, beautiful beaches, and amazing nightlife. What else can you expect from this cosmopolitan city?</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dubai has become a global tourist destination over the last decade. The city has grown into a major economic hub and a leading tourism destination.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dubai offers a variety of attractions, such as museums, historical sites, nature reserves, and cultural events. There are also plenty of things to see and do during the day or at night.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, here we have compiled a list of the top 7 things you should not miss when you are in the city.</span></p><h2 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\"><span style=\"font-size:13pt;font-family:Calibri,sans-serif;color:#2f5496;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">1. Visit Burj Khalifa</span></h2><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">The tallest building in the world, Burj Khalifa, stands 828 meters tall. It is located in Downtown Dubai, United Arab Emirates. Its height makes it the centerpiece of any skyline.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">2. Enjoy A Walk on the Mall of The World</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Mall of the World is an open-air retail complex in Dubai, UAE. It is currently the largest mall in the world and was designed to resemble an ancient Indian trading city.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">3. Shop at Gold Souk Market</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Gold Souk is known for its gold jewelry items and goods. You can find pieces of jewelry, necklaces, bracelets, earrings, rings, and other accessories.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">While doing this, make sure that you read our custom policies to bring gold jewelry back to the country beforehand. This will avoid any last-minute legal complications.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">4. Explore Creek</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Dubai Creek is the longest creek in the world and takes about 40 minutes to drive along the length of it. Take a boat ride around the creek or take a kayak out onto it.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">5. Go Golfing at Desert Safari Golf Club</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Desert safari golf club is a great place to go golfing at. It’s only 30 minutes away from Dubai city center. And if you are visiting one of your friends or relative, then this is a perfect bonding time to spend your holiday.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">6. Have A Scuba Dive or Snorkel Off Palm Jumeirah</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Palm Jumeirah is a man-made island in Dubai, UAE. You can either scuba dive or snorkel off the coast of it. But make sure that you get reservations before you plan to visit. This will reserve your spot, and you can enjoy it to the fullest.</span></p><p><span style=\"background-color: transparent; color: rgb(47, 84, 150); font-family: Calibri, sans-serif; font-size: 13pt; white-space: pre-wrap;\">7. Hire A Horse and Ride Around Old Dubai</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Old Dubai is where people lived before modern skyscrapers. There are still many old buildings dating back to the 19th century.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">So, lastly, make sure that you learn some more about the culture and ethnicity of the place before you finally leave for your country.</span></p><p><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">Still, feeling overwhelmed with all the activities and options for Dubai? The best way to deal with this is to book a Dubai tourism package. You can also custom-make the Dubai holidays packages from India. This way you can visit all the major attractions while also making sure that you do not miss out on any of the above-mentioned activities.</span><br></p>',NULL,'2022-09-16 11:32:30','2022-09-16 11:32:30',NULL,1,'',1,1,'',' Dubai is well-known for plenty of things like skyscrapers and amazing nightlife. So, which are the things that you shouldn’t miss when you are in Dubai? Here’s a list for you. ','Top 7 Things to Do in Dubai','[\"16\",\"7\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":null,\"detailPackages\":[\"\"]}'),(10,'Safari Essentials To Know Before You Plan a Wildlife Trip','safari-essentials-to-know-before-you-plan-a-wildlife-trip','1663308950_blog.jpg','1663308950.jpg',NULL,'Ritu','2022-09-16',NULL,NULL,NULL,'<p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"background-color: transparent; font-family: Calibri, sans-serif; font-size: 11pt; white-space: pre-wrap;\">Safari is a different and quite exhilarating experience when compared to the other tours. And that’s what makes it special.</span><br></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">But it also means that you need to do some special preparation for the tour. So, here, we have compiled a simple checklist for you to go to your first ever wildlife safari.</span></p><h2 dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size: 18pt; font-family: &quot;Times New Roman&quot;; background-color: transparent; font-weight: 700; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><font color=\"#3984c6\">Planning For Wildlife Safari</font></span></h2><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are planning for the famous </span><a href=\"https://www.svezz.com/detail/tour-package-for-tadoba/tadoba-wildlife-stay-2n-3d-63-3-40681-1-0.html\" style=\"text-decoration:none;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#0563c1;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Tadoba safari</span></a><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> or any domestic wildlife stays, you’ll have to plan at least 60 days in advance. And in the case of foreign safaris, you will need a minimum of 120 days of planning.</span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Similarly, smaller groups can be easily squeezed into the ongoing tour packages. Whereas, for large group travel packages, it is better to get a custom quote for a complete wildlife experience.</span></p><h2 dir=\"ltr\" style=\"line-height:1.2;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size: 18pt; font-family: &quot;Times New Roman&quot;; background-color: transparent; font-weight: 700; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><font color=\"#3984c6\">How Much Time Do You Need to Get a Complete Wildlife Experience?</font></span></h2><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Our recommendation as a tourist guide is a minimum of 2 days. Normally, people think that one day of a safari tour is more than enough. But that isn’t true. You may miss out on most of the wildlife as camping and settling itself takes most of your time. And you won’t be able to enjoy the wildlife and nature as you expected.</span></p><p><span style=\"background-color: transparent; font-family: &quot;Times New Roman&quot;; font-size: 18pt; font-weight: 700; white-space: pre-wrap;\"><font color=\"#3984c6\">An All-In-One Checklist for All Types of Safaris</font></span><br></p><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\"><span style=\"font-size: 12pt; font-family: Calibri, sans-serif; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><font color=\"#6badde\">Clothing/Apparels for Wildlife Safari</font></span></h3><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Wear T-Shirts or </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">light cotton clothes</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> along with jackets if any in earthen shades.</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Carry </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">hats/caps</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> as per the season.</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">A </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">light scarf</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> is recommended to carry to cover from the dust.</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">And to finish the look, wear a comfortable pair of </span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">walking shoes</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">.</span></p></li></ul><h3 dir=\"ltr\" style=\"line-height:1.295;margin-top:2pt;margin-bottom:0pt;\"><span style=\"font-size: 12pt; font-family: Calibri, sans-serif; background-color: transparent; font-weight: 400; font-style: normal; font-variant: normal; text-decoration: none; vertical-align: baseline; white-space: pre-wrap;\"><font color=\"#6badde\">Other Items to Carry on A Safari</font></span></h3><ul style=\"margin-top:0;margin-bottom:0;padding-inline-start:48px;\"><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Carry a good camera or a smartphone to click pictures and capture memories. </span></p><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">If you are carrying a dSLR</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:700;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\"> camera</span><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">, then don’t forget your additional lenses, battery, and memory cards.</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:0pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">You can get a pair of binoculars or two to view faraway scenarios.</span></p></li><li dir=\"ltr\" style=\"list-style-type:disc;font-size:11pt;font-family:\'Noto Sans Symbols\',sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;\" aria-level=\"1\"><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\" role=\"presentation\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">And finally, don’t forget your SOS medicines for an emergency. Also, if you can, carry your personal first-aid kit.</span></p></li></ul><p dir=\"ltr\" style=\"line-height:1.295;margin-top:0pt;margin-bottom:8pt;\"><span style=\"font-size:11pt;font-family:Calibri,sans-serif;color:#000000;background-color:transparent;font-weight:400;font-style:normal;font-variant:normal;text-decoration:none;vertical-align:baseline;white-space:pre;white-space:pre-wrap;\">Now, to finish it off, make sure that you book a good wildlife safari tour package to get a complete experience. Also, do not forget to check our article on the top 10 tips to follow on a wildlife safari. This will complete your preparation and make you ready for the safari experience.</span></p><p><br></p>',NULL,'2022-09-16 11:45:51','2022-09-16 11:45:51',NULL,1,'',1,1,'','Are you planning for a wildlife safari? We have combined an essential checklist before you even step out for the safari tour package. Take a look at these before you finalize your dates.','Safari Essentials in India You Should Know About','[\"69\",\"63\",\"62\",\"61\"]',1,'{\"blogdetailTitle\":[\"\"],\"BlogDescription\":[\"\"],\"images\":[\"\"],\"detailPackages\":[\"\"]}');
/*!40000 ALTER TABLE `tbl_travelogues` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-04-16 10:34:02

Youez - 2016 - github.com/yon3zu
LinuXploit